/*=========== Header start ==========*/
.selected a{
    position: relative;
    
}
.selected{
    color: #5D3D21 !important;
    font-weight: 800 !important;
}
.header-section {
    background-color: var(--primry-color);
}

.b-header {
    width: 90%;
    margin: auto;
}

/* .header-bottom {
    position: fixed;
    top: 0;
    background-color: #ffebd6;
    z-index: 9999;
    box-shadow: 1px 0px 10px rgb(0 0 0 / 10%);
} */

.nav-link {
    display: block;
    padding: 0rem 0rem;
}

.logo img {
    width: 70px;
}

nav {
    max-width: 1250px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex !important;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin: auto;
    text-align: center;
    padding: 15px 0px;
    text-align: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    z-index: 111;
    top: 0;
}

.navbar {
    padding: 0;
}

ul {
    margin-bottom: 0;
}

.navbar {
    text-align: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

.nav-menu li {
    list-style: none;
    padding-right: 15px;
}


.nav-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0 auto;
    align-items: center;
    -ms-flex-pack: distribute;
}

a.nav-link {
    color: #271B1C;
    text-decoration: none;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    font-family: 'Afacad-Regular';
    font-size: 18px;
}

a.nav-link:hover {
    color: var(--main-color);
}

.hamburger {
    display: none;
    padding-right: 20px;
}

.bar,
.fa-times {
    width: 20px;
    height: 3px;
    display: block;
    color: #000;
    padding: 0;
    margin: 6px;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    background-color: #fff;
}

.bar:nth-child(1) {
    width: 200%;
}

.bar:nth-child(2) {
    width: 200%;
}

.bar:nth-child(3) {
    width: 200%;
}

@media (max-width: 992px) {

    .b-header {
        width: 100%;
        margin: auto;
    }

    nav {
        padding: 0px 0px;
    }

    .logo {
        padding: 8px 20px;
    }

    .header-bottom {
        top: 0;
        position: fixed;
        z-index: 9999;
    }

    .logo {
        padding: 10px 0px;
        z-index: 123;
    }

    .selected:after {
        display: none;
    }

    .hamburger {
        display: block;
    }

    .active .bar:nth-child(2) {
        opacity: 0;
    }

    .active .bar:nth-child(1) {
        -webkit-transform: translateY(8px) rotate(-315deg);
        transform: translateY(8px) rotate(-315deg);
        width: 250%;
        background-color: #fff;
    }

    .active .bar:nth-child(3) {
        -webkit-transform: translateY(-10px) rotate(-45deg);
        transform: translateY(-10px) rotate(-45deg);
        width: 250%;
        background-color: #fff;
        margin-top: -10px;
    }

    .nav-menu {
        width: 100%;
        height: 100%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: center;
        align-items: center;
        position: fixed;
        top: 0px;
        right: -100%;
        -webkit-transition: 0.5s;
        transition: 0.5s;
        margin: 0 auto;
        background-color: #5FB8E1;
    }

    .nav-menu li:first-child {
        padding-top: 80px;
    }


    .nav-menu li {
        padding: 20px 0;
        text-transform: uppercase;
    }

    a.nav-link {
        margin: -8px 0;
        color: #fff;
        z-index: 1;
        font-size: 28px;
        text-align: left;
        padding-left: 30px;
        font-weight: 600;
    }




}

/*@media (max-width: 992px)*/


.top-section {
    padding-top: 200px;
}

@media screen and (max-width: 480px) {
    a.nav-link {
        padding: 0px 0;
        /*    padding-left: 20px;*/
        font-size: 23px;
        font-weight: 600;
        text-align: left;
    }
}

/*=========== // Header End ==========*/