/*Header css*/

html,
body {
    margin: 0;
    padding: 0;
    background-image: url("../images/head-bg.png");
    /* Replace with your image URL */
    background-repeat: no-repeat;
    background-position: top center;
    background-size: 100% auto;
    background-color: rgb(238, 255, 242);
}

header {
    margin: 48px 0;
}

a {
    text-decoration: none;
}

nav {
    font-family: "Figtree", sans-serif;
}

.navbar-nav {
    margin-left: 50px;
}

.navbar-nav li a.nav-link {
    font-size: 16px;
    color: #424242;
    font-weight: 400;
    padding: 5px 10px;
    border-radius: 8px;
    margin: 0px 10px;
}

.navbar-nav li a.nav-link.active {
    background-color: #EFA145;
    padding: 5px 10px;
    color: #fff !important;
}

.navbar-nav li a.nav-link:hover {
    background-color: #EFA145;
    color: #fff !important;
}

.navbar-nav li a.nav-link.active img,
.navbar-nav li a.nav-link:hover img {
    filter: contrast(4.5) brightness(64.5);
}

.login a {
    color: #efa145;
    font-weight: 700;
}

.login a:hover {
    color: #424242;
}

.btn.orange_btn {
    background-color: #EFA145 !important;
    padding: 10px 20px;
    color: #fff !important;
    font-weight: 700;
}

.btn.orange_btn:hover {
    background-color: #424242;
    color: #fff;
}

.navbar button.navbar-toggler,
.navbar button.navbar-toggler span {
    padding: 0;
    border: 0;
}

.navbar button.navbar-toggler:focus {
    outline: 0;
    box-shadow: unset;
}

.mobile-logo {
    display: none;
}

.custom-logo-link {
    display: block;
}



.offerings-drop {
    width: 670px;
    height: auto;
    border-radius: 12px;
    padding: 32px;
    position: absolute;
    top: 75px;
    right: 60px;
}

.sub-menu-box {
    padding: 15px;
    width: 292px;
    align-items: center;
}

.sub-menu-box:hover {
    background: #082F25;
    border-radius: 12px;

    .sun-menu-content-box {

        .sub-title,
        p {
            color: #fff;
        }
    }
}

.sub-menu-icon-box {
    width: 44px;
    height: 44px;
    border-radius: 9.82px;
    padding: 8px;
    background: #3BCE5B;
    margin-right: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sun-menu-content-box {
    .sub-title {
        font-weight: 500;
        font-size: 20px;
        color: #202532;
    }

    p {
        font-size: 14px;
        color: #03140F99;
        font-family: Figtree;
        font-weight: 400;
        margin: 0;
    }
}

ul.custom-nav {
    padding-right: 50px;
}


/*Media Query*/
@media only screen and (min-width:993px) {

    .desktop_none,
    .phone_logo {
        display: none;
    }
}

@media only screen and (max-width:992px) {
    .desktop_logo {
        display: none;
    }

    .navbar-toggler img {
        width: 40px;
    }

    div#navbarSupportedContent {
        background-color: #fff;
        padding: 40px 20px;
        border-radius: 12px;
        margin-top: 20px;
    }

    .navbar-nav {
        margin-left: 0px;
    }

    /* .d-flex.right-btns-menu {
        display: unset !important;
        margin-left: 170px !important;
    } */

    .login a {

        margin: 20px 20px;
        display: inline-block;
    }
}

.dropdown-toggle::after {
    display: none;
}


@media only screen and (max-width: 767px) {

    .mobile-logo {
        display: flex;
        justify-content: space-between;
        width: 100%;
        align-items: center;
    }

    .custom-logo-link {
        display: none;
    }


    .desktop_none {
        button.btn.orange_btn {
            background-color: transparent;
            border: 1px solid #082F25;
            color: #082F25;
            padding: 8px 12px;
            font-size: 14px;
            font-weight: 600;
            margin-right: 10px;
        }
    }

}


/*Header css end*/