@import url("https://fonts.googleapis.com/css2?family=Barlow:wght@200;300;400;500;600;700;800&display=swap");
body {
    font-family: "Barlow", sans-serif !important;
    font-weight: 500 !important;
    font-size: 18px !important;
}

.header-info-left ul li {
    color: rgb(175, 144, 57) !important;
    display: inline-block;
    margin-right: 15px;
    font-size: 14px;
    border-right: 1px solid #e0d4b0;
    padding: 13px 15px 12px 0;
    font-size: 16px;
    font-weight: 500;
}

.header-info-left ul li:last-child {
    margin-right: 0px;
    padding-right: 0;
    border-right: 0;
}

.header-info-left ul li i {
    margin-right: 12px;
    color: rgb(175, 144, 57) !important;
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .header-info-left ul li {
        margin-right: 10px;
        font-size: 13px;
    }
}

.header-info-right .header-social li {
    display: inline-block;
}

.header-info-right .header-social li a {
    color: #e0d4b0;
    font-size: 16px;
    padding-left: 19px;
}

.header-info-right .header-social li a i {
    -webkit-transition: all 0.4s ease-out 0s;
    -moz-transition: all 0.4s ease-out 0s;
    -ms-transition: all 0.4s ease-out 0s;
    -o-transition: all 0.4s ease-out 0s;
    transition: all 0.4s ease-out 0s;
    transform: rotateY(0deg);
    -webkit-transform: rotateY(0deg);
    -moz-transform: rotateY(0deg);
    -ms-transform: rotateY(0deg);
    -o-transform: rotateY(0deg);
}

.header-info-right .header-social li a:hover i {
    color: rgb(175, 144, 57) !important;
    transform: rotateY(180deg);
}

.navbar-custom .nav-item:hover .nav-link {
    color: rgb(175, 144, 57) !important;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}

.navbar-custom ul > li a {
    font-family: "Barlow", sans-serif !important;
    font-weight: 500 !important;
    font-size: 18px !important;
}

.active {
    color: rgb(175, 144, 57) !important;
}

.navbar-custom .nav-item .dropdown-menu .dropdown-item {
    color: rgba(0, 0, 0, 0.55);
    font-family: "Barlow", sans-serif !important;
    font-weight: 500 !important;
    font-size: 18px !important;
}

.navbar-custom .nav-item .dropdown-menu .dropdown-item:hover {
    color: rgb(175, 144, 57) !important;
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}
/* ============ desktop view ============ */

@media all and (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: none;
    }
    .navbar .nav-item:hover .nav-link {
        color: rgb(58, 54, 54);
    }
    .navbar .nav-item:hover .dropdown-menu {
        display: block;
    }
    .navbar .nav-item .dropdown-menu {
        margin-top: 0;
    }
}

body.offcanvas-active {
    overflow: hidden;
}

.offcanvas-header {
    display: none;
}

.screen-darken {
    height: 100%;
    width: 0%;
    z-index: 30;
    position: fixed;
    top: 0;
    right: 0;
    opacity: 0;
    visibility: hidden;
    background-color: rgba(34, 34, 34, 0.6);
    transition: opacity 0.2s linear, visibility 0.2s, width 2s ease-in;
}

.screen-darken.active {
    z-index: 10;
    transition: opacity 0.3s ease, width 0s;
    opacity: 1;
    width: 100%;
    visibility: visible;
}

/* ============ mobile view ============ */
@media all and (max-width: 991px) {
    .offcanvas-header {
        display: block;
    }

    .mobile-offcanvas {
        visibility: hidden;
        transform: translateX(-100%);
        border-radius: 0;
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        height: 100%;
        width: 80%;
        z-index: 1200;
        overflow-y: scroll;
        overflow-x: hidden;
        transition: visibility 0.3s ease-in-out, transform 0.3s ease-in-out;
    }

    .mobile-offcanvas.show {
        visibility: visible;
        transform: translateX(0);
    }
    .mobile-offcanvas .container,
    .mobile-offcanvas .container-fluid {
        display: block;
    }
}
/* ============ mobile view .end// ============ */
