body.is-show-menu {
    overflow: hidden;
}

.site-header {
    position: absolute;
    z-index: 99;
    left: 0;
    right: 0;
    color: #fff;
    font-family: var(--e-global-typography-text-font-family), Sans-serif;
    /*flex-direction: column;*/
    padding: 0;
    overflow: auto;
    max-height: 100vh;
    border-radius: 24px;
}

.site-header.is-active {
    background: rgba(20, 19, 84, 0.08);
    backdrop-filter: blur(144px);
}

@media (min-width: 992px) {
    .home .site-header {
        left: 24px;
        right: 24px;
    }
}

@media (min-width: 1200px) {
    .site-header {
        overflow: unset;
    }

    .site-header.is-active {
        background: unset;
    }
}

.site-header .container {
    width: 100%;
}

@media (min-width: 1200px) {
    .site-header .container {
        margin: 0 auto;
        padding: 0 24px;
    }
}

@media (min-width: 1400px) {
    .site-header .container {
        width: 1328px;
    }
}

.site-header__top {
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    padding: 13px 0;
}

@media (min-width: 1200px) {
    .site-header__top {
        border-top: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.16);
    }
}

.site-header__top__wrap {
    display: flex;
    align-items: center;
    flex-direction: column;
}

@media (min-width: 1200px) {
    .site-header__top__wrap {
        flex-direction: row;
        justify-content: space-between;
    }
}

.site-header__top__privacy {
    font-weight: 500;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    font-size: 10px;
    margin-bottom: 0;
    text-align: center;
}

@media (min-width: 1200px) {
    .site-header__top__privacy {
        text-align: left;
    }
}

.site-header .container a, .site-header .container a:hover {
    color: inherit;
}

.site-header .site-branding {
    display: none;
}

@media (min-width: 1200px) {
    .site-header .site-branding {
        display: block;
    }
}

.site-header .social {
    list-style: none;
    padding: 0;
    display: flex;
    align-items: center;
}

.site-header .social li a {
    display: flex;
    line-height: 1;
    align-items: center;
}

.site-header .social li:not(:last-child) {
    margin-right: 24px;
}

.site-header .header-inner {
    max-width: unset;
    flex-direction: column;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.5s cubic-bezier(0, 1, 0, 1);
    padding: 0;
}

.site-header .header-inner.is-active {
    min-height: calc(100dvh - 96px);
    max-height: 9999px;
    transition: max-height 1s ease-in-out;
}

@media (min-width: 1200px) {
    .site-header .header-inner {
        min-height: unset !important;
        max-height: unset;
        flex-direction: column-reverse;
        overflow: visible !important;
    }
}

.site-header .header-inner__wrap {
    display: flex;
    flex-direction: column;
}

@media (min-width: 1200px) {
    .site-header .header-inner__wrap {
        padding: 32px 0;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 24px;
    }

    .site-header .header-inner__wrap > * {
        /*flex: 1 0 0;*/
    }

    .site-header .header-inner__wrap .header-inner__center {
        /*flex-basis: 28%;*/
    }
}

.site-header .site-title a {
    font-weight: 700;
    font-size: 32px;
    display: inline-flex;
    align-items: center;
    gap: 16px;
    color: inherit;
}

.site-header .main-menu {
    list-style: none;
    position: relative;
    padding: 0;
}

@media (min-width: 1200px) {
    .site-header .main-menu {
        padding: 5px 8px;
        display: flex;
        align-items: center;
        border: 1px solid rgba(255, 255, 255, 0.2);
        box-shadow: 0 4px 24px 0 #00000029;
        background: linear-gradient(0deg, rgba(127, 253, 241, 0.12) 0%, rgba(127, 253, 241, 0) 100%);
        border-radius: 999px;
        position: static;
    }
}

.site-header .main-menu > li {
    display: block;
    padding: 12px 32px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.24);
}

@media (min-width: 1200px) {
    .site-header .main-menu > li {
        display: inline-block;
        padding: 0;
        border-bottom: 0;
    }
}

.site-header .main-menu li:hover .menu-item__sub__wrap {
    opacity: 1;
    visibility: visible;
}

.site-header .main-menu a:hover {
    color: inherit;
}

.site-header .main-menu > li > a {
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
}

@media (min-width: 1200px) {
    .site-header .main-menu > li > a {
        padding: 2px 16px;
    }
}

.site-header .main-menu > li > a button {
    margin-left: auto;
    padding-right: 0;
    padding-left: 0;
}

.site-header .menu-item__sub {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.5s cubic-bezier(0, 1, 0, 1);
    padding: 0;
}

.site-header .menu-item__sub.is-active {
    /*height: calc(100dvh - 96px);*/
    max-height: 9999px;
    transition: max-height 1s ease-in-out;
}

@media (min-width: 1200px) {
    .site-header .menu-item__sub {
        position: absolute;
        width: 1280px;
        max-width: calc(100vw - 48px);
        left: 50%;
        transform: translateX(-50%);
        padding-top: 32px;
        max-height: unset;
        visibility: hidden;
    }

    .site-header .menu-item__sub .container {
        width: calc(100vw - 48px);
    }

    .site-header .menu-item__sub__wrap {
        transition: all 0.3s ease-in-out;
        display: flex;
        flex-wrap: wrap;
        opacity: 0;
        visibility: hidden;
        border-radius: 24px;
        border: 1px solid rgba(255, 255, 255, 0.2);
        padding: 40px;
        backdrop-filter: blur(144px);
        box-shadow: 0 32px 80px 0 rgba(20, 19, 84, 0.12);
    }
}

.site-header .sub-menu {
    flex: 1 0 0;
}

.site-header .sub-menu__title {
    display: none;
}

@media (min-width: 1200px) {
    .site-header .sub-menu__title {
        letter-spacing: -0.01em;
        display: block;
        font-weight: 800;
        margin-bottom: 40px;
    }
}


.site-header .sub-menu ul {
    padding: 0;
}

.site-header .sub-menu ul li {
    display: block;
    margin-bottom: 12px;
}

.site-header .sub-menu ul li a {
    padding: 10px 0;
    display: block;
}

@media (min-width: 1200px) {
    .site-header .sub-menu ul li a {
        padding: 4px 0;
    }
}

.site-header .menu-right {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    column-gap: 24px;
    row-gap: 8px;
}

@media (min-width: 1200px) {
    .site-header .menu-right {
        justify-content: flex-end;
    }
}

.site-header .menu-right li {
    display: block;
}

.site-header .menu-right li a {
    font-weight: 800;
    padding: 10px 0;
    display: block;
    font-size: 14px;
}

.site-header button {
    outline: none;
    border: unset;
    background-color: unset;
}

.site-header--mobile {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px;
    width: 100%;
}

@media (min-width: 1200px) {
    .site-header--mobile {
        display: none;
    }
}

.site-header--mobile .btn-toggle {
    padding: 0;
}

.site-header--mobile .btn-toggle:hover {
    background-color: unset;
}

.site-header--mobile .btn-toggle span {
    width: 18px;
    height: 2px;
    border-radius: 5px;
    background-color: #fff;
    display: block;
    transition: all 0.3s ease-in-out;
}

.site-header--mobile .btn-toggle span + span {
    margin-top: 4px;
}

.site-header--mobile .btn-toggle.is-active span:nth-child(1) {
    transform: rotateZ(-45deg) translate(-1px, -1px);
    transform-origin: top right;
}

.site-header--mobile .btn-toggle.is-active span:nth-child(2) {
    opacity: 0;
    visibility: hidden;
}

.site-header--mobile .btn-toggle.is-active span:nth-child(3) {
    transform-origin: bottom right;
    transform: rotateZ(45deg) translate(-1px, 1px);
}


/*-------------------------------FOOTER------------------------------------------*/
.site-footer {
    /*background:*/
    /*radial-gradient(77.45% 58.15% at 50% 50%, #010066 0%, #100425 100%),*/
    /*radial-gradient(75.7% 65.28% at 52.74% 65.28%, rgba(2, 0, 163, 0.5) 0%, rgba(16, 4, 37, 0.25) 100%),*/
    /*radial-gradient(67.44% 83.06% at 50% -16.65%, #3E3CFF 0%, #180636 100%);*/
    color: #fff;
    position: relative;
    margin: 0;
    background: radial-gradient(73.76% 71.43% at 10.64% 3.55%, #312FBA 0%, #180636 100%) /* warning: gradient uses a rotation that is not supported by CSS and may not behave as expected */;
    border-radius: 32px 32px 0 0;
    overflow: hidden;
    background-color: transparent;
    padding: 64px 0 0;
}

@media (min-width: 1200px) {
    .site-footer {
        margin: 0 24px 24px;
        padding: 120px 0 0;
        background-image: radial-gradient(at bottom center, #312FBA 0%, #180636 60%);
        background: unset;
        border-radius: 24px;
    }
}

.site-footer .border-top-img {
    position: absolute;
    right: 0;
    top: 0;
}

.site-footer .footer-inner {
    max-width: unset;
}

.site-footer .container {
    width: 100%;
    position: relative;
    padding: 0 24px;
}

@media (min-width: 1200px) {
    .site-footer .container {
        max-width: 1232px;
        margin: 0 auto;
    }
}

.site-footer a {
    font-size: 12px;
}

.site-footer .footer-inner a, .site-footer .footer-inner a:hover {
    color: inherit;
}

.site-footer .site-branding a {
    font-size: 32px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.site-footer .bg {
    display: none;
}

@media (min-width: 1200px) {
    .site-footer .bg {
        display: block;
        position: absolute;
        width: 100%;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        pointer-events: none;
        z-index: -1;
        border-radius: 24px;
        /*height: 100%;*/
        object-fit: cover;
        object-position: right;
    }
}

/*.site-footer .bg img {*/
/*    position: absolute;*/
/*    width: 100%;*/
/*    height: 100%;*/
/*    top: 0;*/
/*    !*object-fit: cover;*!*/
/*    !*object-position: top;*!*/
/*}*/

.site-footer .site-footer__menu {
    padding: 32px 8px;
}

@media (min-width: 1200px) {
    .site-footer .site-footer__menu {
        display: flex;
    }
}

.site-footer .footer-menu {
    flex: 1 0 auto;
}

.site-footer .footer-menu:not(:last-child) {
    margin-bottom: 40px;
}

@media (min-width: 1200px) {
    .site-footer .footer-menu {
        margin-bottom: 92px;
    }
}

.site-footer .footer-menu__title {
    font-weight: 800;
    font-size: 16px;
}

.site-footer .footer-menu ul {
    list-style: none;
    padding: 0;
}

.site-footer .footer-menu ul li {
    font-size: 12px;
}

.site-footer .site-footer__top {
    display: flex;
    align-items: center;
    justify-content: center;
    /*padding: 64px 24px 0;*/
    flex-direction: column;
    gap: 16px;
}

@media (min-width: 1200px) {
    .site-footer .site-footer__top {
        padding: 0;
        margin-bottom: 64px;
        justify-content: space-between;
        flex-direction: row;
    }
}

.site-footer .site-footer__bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 52px 0;

    gap: 24px;
}

@media (min-width: 1200px) {
    .site-footer .site-footer__bottom {
        flex-direction: row;
        justify-content: space-between;
        position: absolute;
        bottom: 24px;
        left: 24px;
        right: 24px;
    }
}

.site-footer .site-footer__bottom p {
    margin-bottom: 0;
}

.site-footer .site-footer__bottom__links {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 24px;
    text-align: center;
}

@media (min-width: 1200px) {
    .site-footer .site-footer__bottom__links {
        flex-direction: row;
        justify-content: space-between;
    }
}

.site-footer .site-footer__bottom__links a {
    font-weight: 700;
}

.site-footer .site-footer__icon {
    text-align: center;
    margin: 0;
}

.site-footer .site-footer__icon img {
    display: block;
    margin: 0 auto;
    max-width: 100%;
}

.site-footer .social {
    list-style: none;
    display: flex;
    gap: 24px;
    padding: 0;
}

.site-footer .copyright {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.32em;
    font-weight: 500;
}
