@font-face {
    font-family: 'bahijjannabold';
    src: url('../fonts/bahijjanna/bahijjannabold/bahijjannabold.eot');
    src: url('../fonts/bahijjanna/bahijjannabold/bahijjannabold.eot?#iefix') format('embedded-opentype'),
    url('../fonts/bahijjanna/bahijjannabold/bahijjannabold.woff2') format('woff2'),
    url('../fonts/bahijjanna/bahijjannabold/bahijjannabold.woff') format('woff'),
    url('../fonts/bahijjanna/bahijjannabold/bahijjannabold.ttf') format('truetype'),
    url('../fonts/bahijjanna/bahijjannabold/bahijjannabold.svg#bahijjannabold') format('svg');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'bahijjannaregular';
    src: url('../fonts/bahijjanna/bahijjannaregular/bahijjannaregular.eot');
    src: url('../fonts/bahijjanna/bahijjannaregular/bahijjannaregular.eot?#iefix') format('embedded-opentype'),
    url('../fonts/bahijjanna/bahijjannaregular/bahijjannaregular.woff2') format('woff2'),
    url('../fonts/bahijjanna/bahijjannaregular/bahijjannaregular.woff') format('woff'),
    url('../fonts/bahijjanna/bahijjannaregular/bahijjannaregular.ttf') format('truetype'),
    url('../fonts/bahijjanna/bahijjannaregular/bahijjannaregular.svg#bahijjannaregular') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/******************************/
* {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
}

.wrap {
    overflow: hidden;
}
html[dir="rtl"] body {
    direction: rtl;
    text-align: right;
}

html[dir="ltr"] body {
    direction: ltr;
    text-align: left;
}
body {
    font-family: 'bahijjannaregular';
    font-size: 16px;
    
    color: #000;
}

h1, h2, h3, h4, h5, h6 {
    margin-top: 0;
    font-weight: bold;
}

button,
li,
a {
    transition: all 0.5s ease-in-out;
}

a {
    display: inline-block;
}

a,
a:focus,
a:hover {
    text-decoration: none;
}

ul, ol {
    margin-bottom: 0;
}

button:focus {
    outline: 0;
}

li,
input[type=submit],
a {
    transition: all 0.5s linear;
}

img, iframe, video {
    max-width: 100%;
}

ul {
    list-style: none;
    padding: 0;
}

ul li {
}

.sec-tit {
    color: #0c2e56;
    margin-bottom: 25px;
}

.form-control:focus {
    border-color: #0c2e56;
    box-shadow: 0 0 0 0.2rem rgba(12, 46, 86, .25);
}

/******************************/
.head-top {
    padding: 25px 0;
    background-image: linear-gradient(90deg, #0c2e56 70%, #fff 30%);
}

.menu-logo {
    height: 100px;
}

.menu-logo img {
    max-height: 100%;
}

.head-iconItem {
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    color: #fff;
    border: 1px solid #fff;
    margin-inline-end: 10px;
    transition: all 0.5s ease-in-out;
}

.lang {
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    color: #fff;
    background-color: #ccb892;
    font-weight: bold;
    transition: all 0.5s ease-in-out;
}

.lang:hover {
    color: #fff;
    background-color: #1075b0;
}


@media (min-width: 992px) {

}

@media (max-width: 992px) {

}

/******************************/
@media (min-width: 992px) {
    .menu-wrap {
        background-color: #ccb892;
    }

    .head-icons .open-search {
        display: none;
    }

    .main-nav {
        display: flex;
        /*align-items: center;*/
        justify-content: space-between;
    }

    .nav-list {
        display: flex;
        flex-wrap: wrap;
        margin-bottom: 0;
        position: relative;
    }

    .nav-list > .menu-item {
        position: relative;
    }

    .nav-list > .menu-item:not(:last-of-type) {
        margin-inline-end: 5px;
    }

    .nav-list > .menu-item > a {
        display: flex;
        color: #000;
        padding: 20px 15px;
        transition: all 0.5s ease-in-out;
    }

    .nav-list > .menu-item-has-children > a:after {
        display: inline-block;
        content: "\f078";
        font-family: "Font Awesome 6 Free";
        font-weight: 900;
        margin-inline-start: 5px;
        color: #fff;
        transition: all .5s ease-in-out;
    }

    .nav-list .menu-item:hover > a,
    .nav-list > .menu-item.active a {
        color: #0c2e56;
    }

    .nav-list > .menu-item-has-children:hover a:after {
        transform: rotateX(-180deg);
        color: #0c2e56;
    }

    html[dir="rtl"].sub-menu {
        left: 0;
    }

    html[dir="ltr"].sub-menu {
        right: 0;
    }

    .nav-list .sub-menu {
        position: absolute;
        top: 100%;
        z-index: 4;
        min-width: 250px;
        background-color: #0c2e56;
        padding: 20px 0;
        opacity: 0;
        visibility: hidden;
        transform-origin: 0 0 0;
        transform: scaleY(0);
        box-shadow: 0 3px 6px rgba(0, 0, 0, .1);
        transition: all 0.6s ease;
    }

    .nav-list .sub-menu li {
        position: relative;
        padding: 0 20px;
    }

    .nav-list .sub-menu li:not(:last-of-type) a {
        margin-bottom: 10px;
    }

    .nav-list .sub-menu li a {
        display: block;
        width: 100%;
        position: relative;
        color: #fff !important;
        padding-bottom: 10px;
        border-bottom: 1px solid #fff;
        transition: all 0.5s ease-in-out;
    }

    html[dir="rtl"] .nav-list .sub-menu > li.menu-item-has-children > a:after {
        left: 0;
        content: "\f30a";
    }

    html[dir="ltr"] .nav-list .sub-menu > li.menu-item-has-children > a:after {
        right: 0;
        content: "\f30b";
    }

    .nav-list .sub-menu > li.menu-item-has-children > a:after {
        font-family: "Font Awesome 6 Free";
        font-weight: 900;
        color: #fff;
        position: absolute;
        transition: all 0.5s ease-in-out;
    }

    .nav-list .sub-menu li a:hover {
        color: #000;
        border-bottom: 1px solid #ccb892;
    }

    .nav-list .sub-menu > li.menu-item-has-children:hover > a:after {
        color: #ccb892;
    }

    .menu-item-has-children:hover > .sub-menu {
        opacity: 1;
        visibility: visible;
        top: 100%;
        transform: scaleY(1);
    }

    html[dir="rtl"] .sub-menu .menu-item-has-children .sub-menu {
        right: 100%;
    }

    html[dir="ltr"] .sub-menu .menu-item-has-children .sub-menu {
        left: 100%;
    }

    .nav-list .sub-menu .menu-item-has-children .sub-menu {
        top: 0 !important;
    }

    html[dir="rtl"] .sub-menu .menu-item-has-children:hover > .sub-menu {
        right: 100%;
    }

    html[dir="ltr"] .sub-menu .menu-item-has-children:hover > .sub-menu {
        left: 100%;
    }

    .nav-btn,
    .mobile-nav-list,
    .dd-trigger {
        display: none;
    }
}

@media (max-width: 992px) {
    .menu-wrap,
    .nav-list {
        display: none;
    }

    .dd-trigger {
        display: inline-block;
    }

    .main-nav {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
    }

    .menu-icons a:not(:last-of-type) {
        margin-inline-end: 10px;
    }

    .menu-icons a {
    }

    .nav-btn {
        color: #fff;
        background-color: #d4ae71;
        width: 40px;
        height: 40px;
        border-radius: 10px;
        display: flex;
        justify-content: center;
        align-items: center;
        transition: all 0.5s ease-in-out;
    }

    .nav-btn:hover,
    .nav-btn:focus {
        color: #096483;
        background-color: #70c3c7;
    }

    html[dir="ltr"] .mobile-nav-list {
        left: 0;
        transform: translateX(-100%);
    }

    html[dir="rtl"] .mobile-nav-list {
        transform: translateX(100%);
        right: 0;
    }

    .mobile-nav-list {
        width: 300px;
        height: 100%;
        padding: 15px;
        background-color: #fff;
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        z-index: 6;
        box-shadow: 0 0 5px rgba(0, 0, 0, .2);
        overflow-y: scroll;
        transition: all .5s linear;
    }

    .mobile-nav-list .menu-item {
        position: relative;
        border-bottom: 1px solid #d4ae71;
    }

    .mobile-nav-list .menu-item:not(:last-of-type) a {
    }

    .mobile-nav-list .menu-item a {
        display: block;
        color: #000;
        padding: 15px;
    }

    .mobile-nav-list .menu-item.menu-item-has-children > a {
        width: calc(100% - 34px);
        display: inline-block;
    }

    .mobile-nav-list .menu-item a:hover,
    .mobile-nav-list .menu-item.active a {
        color: #000;
    }

    .mobile-nav-list .menu-item.menu-item-has-children i {
        color: #d4ae71;
        width: 30px;
        height: 30px;
        line-height: 30px;
        border-inline-start: 1px solid #d4ae71;
        text-align: center;
        transform-origin: center;
        transition: all .3s linear;
    }

    .mobile-nav-list .menu-item i.open {
        color: #0e3340;
    }

    .sub-menu {
        list-style: none;
    }

    .sub-menu.open {
    }

    .sub-menu li {
    }

    .mobile-nav-list .sub-menu a {
        padding: 15px 25px;
        background-color: #0c2e56;
    }

    .sub-menu .sub-menu a {
    }

    .trans-none {
        transform: none !important;
    }

    html[dir="ltr"] .nav-overlay {
        right: 0;
        transform: translateX(100%);
    }

    html[dir="rtl"] .nav-overlay {
        left: 0;
        transform: translateX(-100%);
    }

    .nav-overlay {
        display: block;
        position: fixed;
        top: 0;
        z-index: 5;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, .4);
        transition: all .5s ease-in-out;
    }
}

/******************************/
.open-search {
    cursor: pointer;
    color: #fff;
    width: 50px;
    height: 100%;
    background-color: #0c2e56;
}

#search-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: all 0.3s ease-in-out;
    transform: translate(0px, 0px) scale(0.7, 0.7);
    opacity: 0;
    visibility: hidden;
    z-index: 999999;
}

#search-header.open {
    background: rgba(0, 0, 0, 0.8);
    transform: translate(0px, 0px) scale(1, 1);
    opacity: 1;
    visibility: visible;
}

#search-header .search-form {
    background: rgba(0, 0, 0, 0);
    position: absolute;
    top: 50%;
    width: 100%;
    margin: 0 auto;
    padding-left: 30px;
    padding-right: 30px;
    text-align: center;
}

#search-header input[type="search"] {
    font-size: 44px;
    color: #fff;
    font-weight: 300;
    outline: none;
    width: 70%;
    height: 90px;
    line-height: normal;
    border-bottom: 1px solid #5f5f5f;
    background-color: rgba(0, 0, 0, 0);
}

#search-header .search-submit {
    z-index: 10;
    border: none !important;
}

#search-header .search-submit,
.search-icon {
    background: none;
    border: none;
    height: 70px;
    width: 70px;
    position: absolute;
    top: 20px;
}

.search-icon:before {
    font-family: 'Font Awesome 5 Brands';
    content: "\f3eb";
    display: inline-block;
    width: 70px;
    height: 70px;
    font-size: 24px;
    padding-top: 20px;
    color: #fff;
}

#search-header .close {
    background: none;
    border: none;
    position: fixed;
    top: 45px;
    right: 45px;
    opacity: 1;
    cursor: pointer;
    color: #fff;
    text-align: center;
    transition: all 0.2s ease-out;
}

#search-header .close:hover {
    opacity: 0.8;
}

#search-header .close i {
    display: none;
}

#search-header .close:after {
    font-family: 'Font Awesome 5 Free';
    content: "\f057";
    display: inline-block;
    font-size: 16px;
    color: #fff;
    text-align: center;
    line-height: 29px;
    left: 0;
}

#search-header button.close {
    border: 2px solid #fff;
    height: 37px;
    width: 37px;
    border-radius: 200em;
}

/******************************/
.breadcrumb-area {
    padding: 15px 0;
    color: #fff;
    background-color: #0c2e56;
}

.breadcrumb-area a {
    color: #fff;
}

.content {
    padding: 75px 0;
}

/******************************/
.pro-item {
    margin-bottom: 35px;
}

.pro-item-thumb {
    height: 180px;
}

.pro-item-thumb a {
    display: block;
    width: 100%;
    height: 100%;
}

.pro-item-thumb img {
    max-height: 100%;
}

.pro-item-tit a {
    color: #0c2e56;
}

/******************************/
footer {
    position: relative;
    z-index: 1;
    color: #fff;
    background-image: url("../images/bg-foot.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

footer:before {
    content: '';
    background-color: rgba(12, 46, 86, .9);
    position: absolute;
    width: 100%;
    height: 100%;
    inset: 0;
    z-index: -1;
}

.foot-main {
    padding: 50px 0;
    border-bottom: 1px solid #fff;
}

.map iframe {
    display: block;
    width: 100%;
    height: 250px;
}

.foot-widget-tit {
    color: #d4ae71;
    margin-bottom: 30px;
}

.foot-contact-item:not(:last-of-type) {
    margin-bottom: 30px;
}

.foot-contact-item-icon {
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    color: #fff;
    border: 1px solid #fff;
    margin-inline-end: 10px;
}

.foot-contact-item-data {
    -ms-flex: 0 0 calc(100% - 50px);
    flex: 0 0 calc(100% - 50px);
    max-width: calc(100% - 50px);
}

.foot-contact-item-data-tit {
    color: #d4ae71;
    margin-bottom: 10px;
}

.foot-contact-item-data-info {
    color: #fff;
}

.foot-list li:not(:last-of-type) {
    margin-bottom: 30px;
}

.foot-list li a {
    color: #fff;
}

.foot-copyright {
    padding: 25px 0;
}

.foot-copyright a {
    color: #d4ae71;
}

/******************************/
.pro-data-top{
    margin-bottom: 100px;
}
#big {
    margin-bottom: 25px;
}

#big .item {
    height: 460px;
    display: flex;
    justify-content: center;
    align-items: center;
}

#big img {
    max-height: 100%;
    object-fit: contain;
}

#thumbs .owl-stage-outer {
    /*display: flex;*/
    /*justify-content: center;*/
}

#thumbs .item {
    cursor: pointer;
}

#thumbs img {
    width: 85px;
    height: 69px;
}

.pro-data {
    padding: 50px 30px;
    color: #fff;
    background-color: #556475;
}
.pro-data-tit{
    font-size: 26px;
    margin-bottom: 15px;
}
.pro-data-price{
    color: #d4ae71;
    font-size: 18px;
    margin-bottom: 60px;
}
.pro-data-details{
    margin-bottom: 60px;
}
.pro-data-details-item:not(:last-of-type){
    margin-bottom: 20px;
}
.pro-data-details-item strong{
    color: #d4ae71;
    font-weight: bold;
}
.pro-actions a{
    position: relative;
    z-index: 1;
    color: #000;
    background-color: #ccb892;
    padding: 10px 45px;
    font-weight: bold;
    margin-inline-end: 10px;
    transition: all 0.5s ease-in-out;
}
.pro-actions a:hover {
    color: #fff;
}
html[dir="rtl"] .pro-actions a:before{
   right: 0; 
}
html[dir="ltr"] .pro-actions a:before{
   left: 0; 
}
.pro-actions a:before{
    content: '';
    position: absolute;
    z-index: -1;
    
    top:0;
    bottom: 0;
    width: 10px;
    background-color: #0c2e56;
    transition: all 0.5s ease-in-out;
}

.pro-actions a:hover:before{
    width: 100%;
}
.pro-actions a img{
    height: 20px;
    margin-inline-end: 5px;
}

.pro-extraEditor{
    margin-bottom: 80px;
}
.pro-media-popup{
    width: 80px;
    height: 80px;
    line-height: 80px;
    text-align: center;
    border-radius: 100%;
    font-size: 30px;
    color: #ccb892;
    background-color: #0c2e56;
}
/******************************/
/******************************/
/******************************/
/******************************/
