/* hamburger */

.hamburger {
    position: relative;
    border: none;
    background: transparent;
    padding: 0;
    cursor: pointer;
    display: none;
    color: #902731;
}

@media (max-width: 992px) {
    .hamburger {
        display: block;
    }
}

.hamburger::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 0;
    height: 0;
    background-color: #672f90;
    z-index: 900;
    transform: translate3d(0, 0, 0) scale(1);
    will-change: width, height, transform;
    transition:
        transform 0.45s cubic-bezier(0.04, -0.1, 0.29, 0.98),
        width 0.45s cubic-bezier(0.04, -0.1, 0.29, 0.98),
        height 0.45s cubic-bezier(0.04, -0.1, 0.29, 0.98);
    z-index: 0;
}

/* .hamburger.is-active .hamburger-inner {
    opacity: 0;
} */

.hamburger.is-active .hamburger-inner::before {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}

.hamburger.is-active .hamburger-inner::after {
    top: 50%;
    transform: translateY(-50%) rotate(135deg);
}

.hamburger-box {
    position: relative;
    width: 22px;
    height: 16px;
    margin: 0 auto;
    z-index: 950;
}

.hamburger-inner {
    position: absolute;
    width: 22px;
    height: 2px;
    background: #0c0c0c;
    border-radius: 999px;
    left: 0;
    transition: 0.18s ease;
}

.hamburger-inner::before,
.hamburger-inner::after {
    content: "";
    position: absolute;
    width: 22px;
    height: 2px;
    background: #0c0c0c;
    border-radius: 999px;
    left: 0;
    transition: 0.18s ease;
}

.hamburger-inner::before {
    top: -8px;
}

.hamburger-inner::after {
    top: 8px;
}

/* mobile nav shell */

.mobile-nav {
    position: fixed;
    inset: 0;
    z-index: 99999;
    pointer-events: none;
}

.mobile-nav__panel {
    position: fixed;
    inset: 0;
    /* padding: 20px 0 30px 0; */
    display: flex;
    flex-direction: column;
    color: #ffffff;
    /* @white */
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
    height: 100vh;
    overflow: auto;
    transition:
        opacity 0.2s ease-out,
        transform 0.2s ease-out;
}

.mobile-nav__upper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 15px;
}

.mobile-nav__close {
    border: none;
    background: transparent;
    color: #ffffff;
    font-size: 1.4em;
    cursor: pointer;
    padding-right: 10px;
}

/* .mobile-nav__logo {
    padding: 20px;
} */

.mobile-nav__nav {
    padding: 0 15px;
    margin-top: 10px;
}

.mobile-nav__list-3.accordian {
    display: none;
}

.mobile-nav__item-1:last-child {
    border-bottom: none;
}

.mobile-nav__item-1,
.mobile-nav__item-2,
.mobile-nav__single {
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

.mobile-nav__item-2,
.mobile-nav__single {
    &:last-child {
        border-bottom: none;
    }
}

.mobile-nav__icon {
    border-left: 1px solid rgba(255, 255, 255, 0.25);
    padding: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mobile-nav__item-3 {
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

.mobile-nav__btn-1,
.mobile-nav__btn-2 {
    background: transparent;
    border: none;
    color: #fff;
}

.mobile-nav__group-1,
.mobile-nav__group-2 {
    display: grid;
    grid-template-columns: 1fr 50px;
}

.mobile-nav__group-2:last-child {
    border-bottom: none;
}

.mobile-nav__link-1 {
    font-size: 1.2em;
    text-align: left;
    padding: 15px 0 15px 10px;
    display: block;
    color: #fff;
    width: 100%;
}

.mobile-nav__link-2 {
    padding: 15px 0 15px 10px;
    color: #fff;
}

.mobile-nav__link-3 {
    font-size: 0.9em;
    text-align: left;
    padding: 15px 0 15px 10px;
    display: block;
    color: #fff;
}

.mobile-nav__list-2 {
    padding-left: 15px;
}

.mobile-nav__list-2--single {
    padding-right: 15px;
}

.mobile-nav__list-3 {
    padding-left: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.25);
}

.mobile-nav__list-3 li:last-child {
    border-bottom: none;
}

.mobile-nav__single {
    padding: 15px 0;
}

.mobile-nav__single a {
    color: #fff;
}


.accordian {
    display: none;
}

.mobile-nav__item-1.mm-active .mobile-nav__group-1 {
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    background: #59267e;
}

.mobile-nav__item-1.mm-active .mobile-nav__group-1 i {
    transform: rotate(180deg);
}

.mobile-nav__item-2.mm-active .mobile-nav__group-2 {
    background: #461e63;
}

.mobile-nav__item-2.mm-active .mobile-nav__group-2 i {
    transform: rotate(180deg);
}

/* language selector */

.mobile-lang {
    position: relative;
    cursor: pointer;
}

.mobile-lang__selected {
    display: flex;
    align-items: center;
    font-size: 0.8em;
    color: #fff;
    padding: 0 5px;
}

.mobile-lang__flag {
    margin-right: 4px;
    width: 20px;
    height: 20px;
}

.mobile-lang__icon {
    margin-left: 7px;
}

.mobile-lang__options {
    z-index: 1000;
    top: 25px;
    position: absolute;
    background: #fff;
    width: 100%;
}

.mobile-lang__option a {
    font-size: 0.8em;
    display: flex;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.25);
    padding: 5px;
    cursor: pointer;
    background-color: #4b1f6c;
    color: #ccc;
}

.mobile-lang__option a:hover {
    color: #fff;
}

.mobile-lang__option .mobile-lang__flag {
    height: 20px;
    width: 20px;
    margin-right: 5px;
}

/* body flags */

body.menu-open {
    overflow: hidden;
}

body.menu-open .mobile-nav {
    pointer-events: auto;
}

body.menu-open .hamburger::before {
    width: 200vmax;
    height: 200vmax;
    transform: translate3d(-50%, -50%, 0) scale(1);
    transition-duration: 0.9s;
}

body.panel-visible .mobile-nav__panel {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

body.menu-open .speed-kit-dynamic {
    display: none;
}

body.menu-open .hamburger-box {
    display: none;
}

.language {
    justify-content: space-between;
}

.mobile-search--mob {
    margin-top: 10px;
    padding: 0 15px;
    margin-bottom: 30px;
}

.mobile-search--mob .mobile-search__bar {
    grid-template-columns: 1fr 37px;
}