.kso-sticky.sticked .header {
    background-color: #fff;
}

.kso-sticky.sticked .header .main-menu>ul>li>a {
    /*	color: #111;*/
}

.header {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    transition: all .3s ease;
    border-bottom: 0px solid rgba(255, 255, 255, .1);
    z-index: 10;
}

.header .logo img {
    vertical-align: middle;
}

.header .main-menu .head {
    display: none;
}

.header .main-menu>ul>li {
    display: inline-block;
}

.header .main-menu .dropdown {
    position: relative;
}

.header .main-menu a {
    display: block;
    color: var(--active-color);
}

.header .main-menu>ul>li>a {
    padding-right: 1rem;
    padding-left: 1rem;
    transition: all .3s ease;
}

.gnb-nav li a.active span {
    font-weight: 700;
    border-bottom: 2px solid var(--active-color);
    /*	color: rgb(var(--main-rgb));*/
}

.header .main-menu i {
    position: absolute;
    top: calc(50% - 5px);
    pointer-events: none;
    user-select: none;
    font-size: 12px;
    color: #333;
}

.header .main-menu.open i {
    color: #fff;
}

.header .main-menu>ul>li>i {
    right: .5rem;
    color: #fff;
}

.header .main-menu .sub-menu {
    position: absolute;
    top: 110%;
    left: 0;
    min-width: 200px;
    padding: 15px 0;
    background-color: #fff;
    box-shadow: 0 3px 5px rgba(0, 0, 0, .1);
    transition: all .3s ease;
    visibility: hidden;
    opacity: 0;
    z-index: 1;
}

.header .main-menu .sub-menu-right {
    left: 100%;
    top: 0;
}

/*.header .main-menu .gnb-nav > li:last-child ul,
.header .main-menu .sub-menu-left {
	left: auto;
	right: 100%;
	top: 0;
}*/
.header .main-menu li:hover>.sub-menu {
    top: 100%;
    visibility: visible;
    opacity: 1;
}

.header .main-menu .sub-menu li .sub-menu {
    top: 100%;
}

.header .main-menu .sub-menu li a {
    color: #333;
}

.header .main-menu.open .sub-menu li a {
    color: #fff;
}

.header .main-menu .sub-menu li:hover .sub-menu {
    top: 0;
}

.header .main-menu .sub-menu a {
    padding: 6px 24px;
}

.header .main-menu .sub-menu .dropdwon>a {
    padding-right: 34px;
}

.header .main-menu .sub-menu i {
    right: 24px;
    transform: rotate(-90deg);
}

.header .main-menu .menu-overlay {
    visibility: hidden;
}


.header .open-menu-btn {
    display: none;
}

.header-right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-left: auto;
}

.header-right .icon-btn {
    padding: 8px 15px;
    font-size: 1rem;
    color: #fff;
    border: none;
    border-radius: 30px;
}

.header-right .dropdown.no-arrow .dropdown-toggle::after {
    display: none;
}

.header-right .dropdown-menu {
    min-width: 260px;
}

.header-right .dropdown-item {
    display: flex;
    align-items: center;
    padding: 8px 18px;
    font-size: 14px;
}
.header-right .dropdown-item.active, 
.header-right .dropdown-item:active {
    color: var(--bs-dropdown-link-hover-color);
    background-color: var(--bs-dropdown-link-hover-bg);
}
.header-right .topbar-login {
    padding: .282rem .738rem;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: -.03rem;
    color: #fff;
    background-color: var(--active-color);
    border-radius: 4px;
}

.header-right .badge {
    padding: .30rem .5rem;
    border-radius: 3px;
}

.header-right .login li a>i {
    width: 24px;
}

@media(min-width: 992px) {
    .header .main-menu>ul>li>a>span {
        display: block;
        padding: 24px 0;
    }

    .header-right {
        min-width: 100px;
    }
}

@media(min-width: 1200px) {
    .header .main-menu>ul>li>a>span {
        padding: 28px 0;
    }

    .kso-sticky.sticked .header .main-menu>ul>li>a {
        /*		padding: 24px 1.5rem;*/
    }
}


@media(max-width: 991px) {
    .header .main-menu {
        position: fixed;
        left: 0;
        top: 0;
        padding: 12px 0 30px;
        width: 320px;
        height: 100%;
        background-color: #ffffff;
        overflow-y: auto;
        transform: translateX(-110%);
        transition: all .3s ease;
        z-index: 1;
    }

    .header .main-menu.open {
        transform: translateX(0);
        box-shadow: 10px 0 5px 10px rgba(0, 0, 0, .01);
    }

    .header .mobile-overlay {
        visibility: hidden;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        opacity: 0;
        transition: all .3s ease-in-out;
        z-index: -1;
    }

    .header .mobile-overlay.show {
        visibility: visible;
        opacity: 1;
    }

    .header .main-menu .head {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        margin-bottom: 25px;
    }

    .header .main-menu .close-menu-btn {
        position: relative;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        margin-left: 1rem;
        width: 40px;
        height: 35px;
        background-color: transparent;
        border: none;
        cursor: pointer;
    }

    .header .main-menu .close-menu-btn:before,
    .header .main-menu .close-menu-btn:after {
        content: '';
        position: absolute;
        width: 60%;
        height: 2px;
        background-color: #111111;
    }

    .header .main-menu .close-menu-btn:before {
        transform: rotate(45deg);
    }

    .header .main-menu .close-menu-btn:after {
        transform: rotate(-45deg);
    }

    .header .main-menu>ul>li {
        display: block;
    }

    .header .main-menu>ul>li:not(:last-child) {
        margin-right: 0;
    }

    .header .main-menu>ul>li>a {
        padding: 12px 25px;
        font-size: 1.25rem;
    }

    .kso-sticky.sticked .header .main-menu>ul>li>a {
        /*		color: #fff;*/
    }

    .header .main-menu>ul>.dropdown>a {
        padding-right: 34px;
    }

    .header .main-menu i {
        height: 34px;
        width: 34px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        pointer-events: auto;
        cursor: pointer;
        top: 7px;
    }

    .header .main-menu .dropdown.active>i {
        transform: rotate(180deg);
    }

    .header .main-menu .sub-menu {
        display: none;
        position: static;
        opacity: 1;
        transform: none;
        visibility: visible;
        padding: 0;
        transition: none;
        box-shadow: none;
        width: 100%;
        background-color: rgba(255, 255, 255, .1);
    }

    .header .main-menu .dropdown.active>.sub-menu {
        display: block;
        padding: 10px 0;
    }


    .header .main-menu .sub-menu li:last-child {
        border: none;
    }

    .header .main-menu .sub-menu a {
        padding: 10px 25px 10px 35px;
    }

    .header .main-menu .sub-menu .sub-menu a {
        padding-left: 45px;
    }

    .header .main-menu .sub-menu span {
        background-image: none;
    }

    .header .main-menu .sub-menu i {
        transform: none;
        right: 0;
    }

    .header .open-menu-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 0;
        margin: 0;
        width: 50px;
        height: 60px;
        position: relative;
        background-color: transparent;
        border: none;
        cursor: pointer;
    }

    .header .open-menu-btn .line {
        position: absolute;
        width: 20px;
        height: 2px;
        background-color: rgba(0, 0, 0, 1);
    }

    .header .open-menu-btn .line-1 {
        transform: translateY(-6px);
    }

    .header .open-menu-btn .line-3 {
        transform: translateY(6px);
    }

    .header-right .icon-btn {
        padding: 0 15px;
        font-size: .9rem;
    }
}