/* header start */


#site-header.scrolled {
    background-color: #fff;
}

#site-header.hide {
    top: 0;
    transition: top 0.4s ease;
}

.default-header {
    display: block;
    width: 100%;
    position: fixed;
    top: 0;
    min-height: 70px;
    background-color: transparent;
    transition: background-color 0.3s ease, top 0.4s ease;
    z-index: 100;
    padding: 10px 0;
}
@media (min-width:992px) {
    #site-header {
        padding-top: 70px;
         transition: background-color 0.3s ease, top 0.4s ease;
    }

    #site-header.hide,
    #site-header.scrolled {
        padding-top: 10px;
         transition: background-color 0.3s ease, top 0.4s ease;
    }
}

.default-header .logo {
    width: 80px;
    height: 70px;
}
.default-header .logo .logo-img{
    width: clamp(3.75rem, 2.1875rem + 5vw, 5rem);
}
.default-header .nav-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.default-header ul {
    margin: 0;
}

.default-header .header-item {
    display: flex;
    align-items: center;
}


.default-header .item-right a {
    text-decoration: none;
    font-size: 16px;
    color: #555555;
    display: inline-block;
    margin-left: 10px;
    transition: color 0.3s ease;
}

.default-header .menu>ul>li {
    display: inline-block;
    /* line-height: 50px; */
    padding-inline: 10px;
}
.default-header .menu>ul>li:last-child{
    padding-right: 0;
}
.default-header .menu>ul>li>.navbar-link {
    font-size: clamp(1rem, 0.8727rem + 0.4073vw, 1.125rem);
    font-weight: 600;
    color: #1A1A1A;
    position: relative;
    text-transform: capitalize;
    text-decoration: none;
    transition: color 0.3s ease;
}
.default-header .menu>ul>li>.navbar-link:hover{
    color: #E86AA7 !important;
    transition: color 0.3s ease;
}


.mobile-menu-head,
.mobile-menu-trigger {
    display: none;
}
@media(max-width: 1200px) and (min-width: 992px){
    .default-header .menu>ul>li>.navbar-link {
    font-size: clamp(1rem, 0.8727rem + -0.5927vw, 1.125rem);
    }
}
/*responsive*/
@media(max-width: 991px) {
    .default-header .item-right a:hover,
    .default-header .menu>ul>li:hover>a {
        color: #000000;
    }

    .default-header .mobile-menu-trigger {
        display: flex;
        height: 30px;
        width: 30px;
        /* margin-left: 15px; */
        cursor: pointer;
        align-items: center;
        justify-content: center;
    }

    .default-header .mobile-menu-trigger span {
        position: relative;
        display: block;
        height: 2px;
        width: 24px;
        background-color: #000000;
    }

    .default-header .mobile-menu-trigger span:before,
    .default-header .mobile-menu-trigger span:after {
        content: '';
        position: absolute;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: #000000;
    }

    .default-header .mobile-menu-trigger span:before {
        top: -6px;
    }

    .default-header .mobile-menu-trigger span:after {
        top: 6px;
    }


    .default-header .menu {
        position: fixed;
        width: 320px;
        background-color: #ffffff;
        left: 0;
        top: 0;
        height: 100%;
        overflow: hidden;
        transform: translate(-100%);
        transition: all 0.5s ease;
        z-index: 1099;
    }

    .default-header .menu.active {
        transform: translate(0%);
    }

    .default-header .menu>ul>li {
        line-height: 1;
        margin: 0;
        display: block;
    }

    .default-header .menu>ul>li>.navbar-link {
        font-size:1rem;
        line-height: 50px;
        height: 50px;
        padding: 0 50px 0 15px;
        display: block;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        color: #000002;
    }   

    .default-header .menu .mobile-menu-head {
        display: flex;
        height: 50px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        justify-content: space-between;
        align-items: center;
        position: relative;
        z-index: 501;
        position: sticky;
        background-color: #ffffff;
        top: 0;
    }

    .default-header .menu .mobile-menu-head .go-back {
        height: 50px;
        width: 50px;
        border-right: 1px solid rgba(0, 0, 0, 0.1);
        cursor: pointer;
        line-height: 50px;
        text-align: center;
        color: #000000;
        font-size: 16px;
        /* display: none; */
    }

    .default-header .menu .mobile-menu-head .go-back svg {
        width: 12px;
        height: 12px;
        transform: rotate(-270deg);
    }

    .default-header .menu .mobile-menu-head.active .go-back {
        display: block;
    }

    .default-header .menu .mobile-menu-head .current-menu-title {
        font-size: 15px;
        font-weight: 500;
        color: #000000;
    }

    .default-header .menu .mobile-menu-head .mobile-menu-close {
        height: 50px;
        width: 50px;
        border-left: 1px solid rgba(0, 0, 0, 0.1);
        cursor: pointer;
        line-height: 48px;
        text-align: center;
        color: #000000;
        font-size: 25px;
    }

    .default-header .menu .menu-main {
        height: 100%;
        overflow-x: hidden;
        overflow-y: auto;
        margin-top: unset;
        padding-left: 0px !important;
    }
  
}