header{
    position: fixed;
    /* top: 0;
    left: 0; */
    /* height: 70px; */
    width: 100%;
    background-color: var(--background-color);
    /* z-index: 100; */
    overflow: hidden;
    padding: 10px 0;
    transition: 0.5s all ease-in-out;
    z-index: 9;
}


header.fixed {
  position: fixed;
  top: 0;
  left: 0;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}


nav .nav-bar{
    position: relative;
    height: 100%;
    /* max-width: 1000px; */
    width: 100%;
    background-color: var(--background-color);
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

nav .nav-bar .sidebarOpen{
    color: var(--black-color);
    font-size: 25px;
    padding: 5px;
    cursor: pointer;
    display: none;
}

nav .nav-bar .logo a{
    font-size: 25px;
    font-weight: 500;
    color: var(--black-color);
    text-decoration: none;
}

nav .nav-bar .logo a img{
    height: 50px;
}

.menu .logo-toggle{
    display: none;
}

.nav-bar .nav-links{
    display: flex;
    align-items: center;
}

.nav-bar .nav-links li{
    margin: 0 5px;
    list-style: none;
}

.nav-links li a{
    position: relative;
    font-size: 14px;
    color: var(--black-color);
    text-decoration: none;
    padding: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 300;
}

.nav-links li a.nav-link-item.active::after{
    content: "";
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 1.5px;
    background: var(--orange-color);
}

.nav-links li:hover a::before{
    opacity: 1;
}


@media (max-width: 1130px) {
    nav .nav-bar .sidebarOpen{
        display: block;
        font-size: 36px;
    }

    nav .nav-bar{
        justify-content: space-between;
        flex-direction: row-reverse;
    }

    .menu{
        position: fixed;
        height: 100%;
        width: 320px;
        left: -100%;
        top: 0;
        padding: 20px;
        background-color: var(--peri-color);
        z-index: 100;
        transition: all 0.4s ease;
        /* border-right: 1px solid var(--sage-color); */
    }

    nav.active .menu{
        left: -0%;
        /* padding: 0; */
    }

    nav.active .nav-bar .navLogo a{
        opacity: 0;
        transition: all 0.3s ease;
    }
    .menu .logo-toggle{
        display: block;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 10px
    }

    .logo-toggle .siderbarClose{
        color: var(--background-color);
        font-size: 36px;
        cursor: pointer;
    }

    .nav-bar .nav-links{
        flex-direction: column;
        padding-top: 30px;
        width: 100%;
    }
    .nav-bar .nav-links li{
        width: 100%;
    }

    .nav-links li a{
        display: block;
        margin-top: 20px;
        color: var(--background-color);
        /* width: 100%; */
        text-align: center;
    }
    .nav-links li a.active::after{
        background-color: var(--orange-color) !important;
    }
}


.offcanvas__overlay {
    position: fixed;
    height: 100%;
    width: 100%;
    background: #151515;
    z-index: 9;
    top: 0;
    opacity: 0;
    visibility: hidden;
    right: 0;
    transition: 0.5s all ease-in-out;
}


.offcanvas__overlay.active {
    opacity: 0.8;
    visibility: visible;
}


.terms_con section{
    padding: 0 !important;
}

@media(min-width:992px){
    .offcanvas__overlay{
        display: none;
    }
}