.submenu {
    position: fixed;
    top: 95px;
    background: #FFF;
    border-radius: 10px;
    border: 1px solid #FFF;
    box-shadow: 12px 12px 25px 0px #00000008;
    padding: 14px 13px;
    z-index: 100;
    opacity: 0;
    pointer-events: none;
}
.submenu::before {
    content: '';
    top: -10px;
    height: 10px;
    right: 0;
    left: 0;
    width: 100%;
    position: absolute;
}
.submenu__row {
    display: flex;
    align-items: stretch;
}
.submenu__column:first-child {
    padding-right: 36px;
}
.submenu__column:first-child:last-child {
    padding-right: 0;
}
.submenu--has-message {
    top: 144px;
}
.submenu--has-message.submenu--fixed {
    top: 104px;
}
.submenu.open {
    opacity: 1;
    pointer-events: all;
}
.submenu__list {
    display: flex;
    flex-direction: column;
    gap: 7px;
}
.submenu__item a {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 10px 15px 10px 27px;
    border: 1px solid transparent;
    color: #171B2B;
    position: relative;
    border-radius: 12px;
    width: 336px;
}
.submenu__item a::before {
    content: '';
    position: absolute;
    display: block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    left: 15px;
    top: 18px;
}
.submenu__item a.active, .submenu__item a:hover {
    border-color: #A3A7C7;
}
.submenu__item a:hover {
    background-color: #F7F8FD;
}
.submenu__item a b {
    font-weight: 500;
    line-height: 1.4;
}
.submenu__item a span {
    color: #5B5D7280;
    line-height: 1.3;
    font-size: 12px;
}
.submenu__item--point-blue a::before {
    background-color: #064CEA;
}
.submenu__item--point-gray-dark a::before {
    background-color: #5B5D72;
}
.submenu__item--point-red a::before {
    background-color: #FF3B30;
}
.submenu__item--point-gray-lite a::before {
    background-color: #A3A7C7;
}
.submenu__item[data-submenu-lvl2-selector] a::after {
    content: '';
    display: block;
    position: absolute;
    width: 9px;
    height: 9px;
    background-image: url(../img/icons/angle-right.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    top: 0;
    bottom: 0;
    right: 16px;
    margin: auto;
}
.submenu__lvl2 {
    display: none;
    height: 100%;
    min-height: 350px;
}
.submenu__lvl2.open {
    display: block;
    padding-left: 12px;
    border-left: 1px solid #DDE1FF;
}
.submenu__lvl2 a {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 10px 15px 10px 27px;
    border: 1px solid transparent;
    color: #171B2B;
    position: relative;
    border-radius: 12px;
    width: 300px;
}
.submenu__lvl2 a:hover {
    border-color: #A3A7C7;
}
.submenu__lvl2 a b {
    font-weight: 500;
    line-height: 1.4;
}
.submenu__lvl2 a span {
    color: #5B5D7280;
    line-height: 1.3;
    font-size: 12px;
}
.submenu__inner {
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.submenu--dark {
    background: #1E2440;
    border: 1px solid #3C4466;
    color: #FFF;
}
.submenu--dark .submenu__item a {
    color: #FFF;
}
.submenu--dark .submenu__item a.active, .submenu--dark .submenu__item a:hover {
    border-color: #fafafa;
}
.submenu--dark .submenu__item a:hover {
    background-color: #272F51;
}
.submenu--dark .submenu__item a span {
    color: #fafafa;
}
.submenu--dark .submenu[data-submenu-lvl2-selector] a::after {
    background-image: url(../img/icons/angle-right.svg);
}
.submenu--dark .submenu__lvl2.open {
    border-left: 1px solid #272F51;
}
.submenu--dark .submenu__lvl2 a {
    color: #fff;
}
.submenu--dark .submenu__lvl2 a:hover {
    border-color: #fafafa;
}
.submenu--dark .submenu__lvl2 a span {
    color: #fafafa;
}


/*HEADER*/
.header {
    position: absolute;
    z-index: 100;
    top: 60px;
    left: 0;
    right: 0;
}
.header--fixed {
    position: fixed;
    top: 20px;
}
.header__inner {
    display: flex;
    padding: 15px;
    align-items: center;
    justify-content: space-between;
    background: #F7F8FD;
    border-radius: 10px;
    border: 1px solid #FFF;
    box-shadow: 12px 12px 25px 0px #00000008;
}
.header__logo img {
    width: 170px;
}
.header__login {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 5px;
}
.header .container {
    transition: all 0.3s ease;
}
.header.menu-is-open .container {
    padding-left: 0;
    padding-right: 0;
}
.header--dark .header__inner {
    background: #1E2440;
    border: 1px solid #3C4466;
}
.header--dark .button--outline {
    border-color: #FFF !important;
    color: #FFF !important;
}
.header--dark .button--primary {
    background-color: #fff !important;
    border-color: #FFF !important;
    color: #000 !important;
}
@media screen and (min-width: 993px) {
    .header__mobile {
        display: none;
    }
    .header__login .button {
        min-width: 140px;
    }
}
@media screen and (max-width: 993px) {
    .header__navigation, .header__right {
        display: none;
    }
    .header__inner {
        border-radius: 12px;
    }
    .header__login .button {
        border-radius: 8px;
    }
}



/*WRAPPER*/
.wrapper {
    width: 100%;
    max-width: 1295px;
    padding: 0.1px 50px;
    margin: auto;
    position: relative;
}
.wrapper--overflow-hidden {
    overflow: hidden;
}

@media screen and (max-width: 1200px) {
    .wrapper {
        padding: 0.1px 10px;
    }
}

/*HEADER NAVIGATION*/
.header-navigation > ul {
    display: flex;
    align-items: center;
    gap: 34px;
    list-style: none;
    padding-left: 0;
    flex-direction: row;
}
.header-navigation > ul > li {
    display: flex;
    gap: 4px;
    align-items: center;
    position: relative;
}
.header-navigation > ul > li > a {
    font-size: 14px;
    color: #171B2B;
    text-decoration: none;
    line-height: 1.2;
    display: flex;
    align-items: center;
    gap: 4px;
    justify-content: center;
    padding: 10px 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
}
.header-navigation > ul > li > a:hover {
    background-color: #fff;
}
.header-navigation > ul > li > a[data-child-selector] {
    padding: 7px 16px;
}
.header-navigation > ul > li > a[data-child-selector]::after {
    content: '';
    display: block;
    position: relative;
    width: 24px;
    height: 24px;
    background-image: url(../img/icons/angle-bottom.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}
.header-navigation--dark > ul > li > a {
    color: #FFF;
}
.header-navigation--dark > ul > li > a[data-child-selector]::after {
    background-image: url(../img/icons/angle-bottom-white.svg);
}
.header-navigation--dark > ul > li > a:hover {
    background-color: #FFF;
    color: #000;
}
.header-navigation--dark > ul > li > a:hover[data-child-selector]::after {
    background-image: url(../img/icons/angle-bottom.svg);
}
@media screen and (max-width: 1231px) {
    .header-navigation > ul {
        gap: 5px;
    }
}



/*MOBILE MENU*/
.mobile-menu {
    opacity: 0;
    pointer-events: none;
    z-index: 90;
    background-color: #fff;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    transition: all 0.3s ease;
    position: fixed;
    padding-top: 140px;
    max-height: 100vh;
    overflow-y: auto;
    overflow-x: hidden;
}
.mobile-menu__inner {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 24px;
    height: 100%;
}
.mobile-menu.active {
    opacity: 1;
    pointer-events: all;
}
.mobile-menu__navigation nav .menu-item-has-children>ul.sub-menu {
    transition: max-height 0.2s ease;
    max-height: 0;
    height: auto;
}
.mobile-menu__navigation nav .menu-item-has-children.active>ul.sub-menu {
    max-height: 800px;
    height: auto;
    transition: max-height 0.8s ease;
}
.header__mobile .button--login svg {
    fill: #ffffff;
}
.top-section-dark .breadcrumbs li:not(:last-child):after {
    color: rgb(163 167 199)!important;
}
.top-section-dark .breadcrumbs li {
    display: inline-flex;
}

.top-section-dark .breadcrumbs a span {
    color: #5b5d72;
}

.mobile-menu__navigation nav > ul ul {
    height: 0;
    overflow: hidden;
    margin: 0;
    list-style: none;
    padding-left: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.mobile-menu__navigation nav > ul ul > li:first-child {
    margin-top: 17px;
}
.mobile-menu__navigation nav > ul ul > li:last-child {
    margin-bottom: 17px;
}
.mobile-menu__navigation nav > ul ul a {
    border: 1px solid #a3a7c7;
    border-radius: 12px;
    color: #171b2b;
    gap: 2px;
    padding: 10px 15px 10px 27px;
    position: relative;
    width: 100%;
    border-color: #a3a7c7;
    background-color: #f7f8fd;
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.mobile-menu__navigation nav > ul ul a b {
    font-weight: 500;
    font-size: 14px;
    line-height: 1.4;
    color: #171B2B;
}
.mobile-menu__navigation nav > ul ul a span {
    color: #5B5D7280;
    font-weight: 400;
    font-size: 12px;
    line-height: 1.3;
}
.mobile-menu__navigation nav > ul ul a::after {
    transform: rotate(-90deg);
}
.mobile-menu__navigation nav > ul ul a::before {
    content: '';
    position: absolute;
    display: block;
    top: 17px;
    left: 15px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    pointer-events: none;
}
.mobile-menu__navigation nav > ul li.active > a::after {
    transform: rotate(180deg);
}
.mobile-menu__navigation nav > ul li li.active > a::after {
    transform: rotate(0deg);
}
.mobile-menu__navigation nav > ul > li > a {
    color: var(--cb);
    text-decoration: none;
    padding-top: 16px;
    padding-bottom: 16px;
    padding-right: 16px;
    font-size: 14px;
    display: block;
    position: relative;
    border-bottom: 1px solid #DEE0EF;
}
.mobile-menu__navigation nav > ul > li > a.mobile-menu__link--has-child::before {
    width: 12px;
    height: 12px;
    background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 6L8 11L13 6' stroke='%23A3A7C7' stroke-linecap='square' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
    transition: all 0.3s ease;
}
.mobile-menu__navigation nav > ul > li ul ul li a {
    border: 0;
    background-color: transparent;
    padding-right: 0;
}
.mobile-menu__navigation nav > ul > li ul ul li a::before {
    display: none;
}
.mobile-menu__link {
    color: var(--cb);
    text-decoration: none;
    padding-top: 15px;
    padding-bottom: 15px;
    display: block;
    position: relative;
    border-bottom: 1px solid #dedede;
}
.mobile-menu__link--has-child::after {
    content: '';
    width: 40px;
    height: 40px;
    background-image: url(../img/icons/angle-bottom.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 30px;
    position: absolute;
    display: block;
    top: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    transition: all 0.3s ease;
}
.mobile-menu__footer {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.mobile-menu__social-networks ul {
    display: flex;
    gap: 5px;
    align-items: center;
}
.mobile-menu__social-networks ul a {
    width: 50px;
    height: 50px;
    border: 1px solid rgba(48, 48, 48, 0.1);
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.mobile-menu__social-networks ul a img {
    width: 20px;
}
.mobile-menu__buttons {
    display: flex;
}
.mobile-menu__buttons > div {
    flex: 0 0 50%;
    max-width: 50%;
}
.mobile-menu__buttons > div .button {
    width: 100%;
}
.mobile-menu__buttons > div:first-child {
    padding-right: 2.5px;
}
.mobile-menu__buttons > div:last-child {
    padding-left: 2.5px;
}


/*BUTTON*/
.button {
    border: 0.5px solid transparent;
    background-color: #fff;
    padding: 15px 33px 13px;
    font-size: 14px;
    border-radius: 8px;
    position: relative;
    text-decoration: none;
    color: #000;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    font-weight: 500;
    transition: all 0.3s ease;
}
.button img {
    transition: all 0.3s ease;
}
.button:hover {
    text-decoration: none;
    opacity: 0.7;
}
.button:hover img {
    transform: translateX(0.2777777778rem);
}
.button--outline {
    background-color: transparent !important;
    border-color: #A3A7C7 !important;
    color: #000 !important;
    text-decoration: none !important;
}
.button--primary {
    background-color: #171B2B !important;
    color: #FFF !important;
    border-color: #171B2B !important;
    text-decoration: none !important;
}
.button--login {
    background-color: var(--c7);
    border-radius: 4px;
    width: 44px;
    height: 44px;
    justify-content: center;
    align-items: center;
    color: var(--c1);
    display: flex;
    padding: 0;
}
.button--login:focus {
    background-color: var(--c7);
}
.button--login svg {
    width: 17px;
    height: 16px;
    fill: currentColor;
}
.button--hamburger {
    background-color: var(--c7);
    border-radius: 4px;
    width: 44px;
    height: 44px;
    padding: 0;
    position: relative;
}
.button--hamburger::before, .button--hamburger::after {
    content: '';
    position: absolute;
    display: block;
    left: 0;
    right: 0;
    margin: auto;
    width: 18px;
    height: 1px;
    background-color: var(--c1);
    transition: all 0.3s ease;
}
.button--hamburger::before {
    bottom: calc(50% + 1.5px);
}
.button--hamburger::after {
    top: calc(50% + 1.5px);
}
.button--hamburger.active {
    background-color: var(--c7);
}
.button--hamburger.active::before {
    transform: rotate(45deg);
    bottom: calc(50% - .5px);
}
.button--hamburger.active::after {
    transform: rotate(-45deg);
    top: calc(50% - .5px);
}
.button--go {
    font-size: 16px;
    padding: 14px 38px 14px 21px;
    border-radius: 8px;
    background-color: #EEEFF7 !important;
    color: #000 !important;
    text-decoration: none !important;
}
.button--go::before {
    content: '';
    position: absolute;
    display: block;
    top: 2px;
    bottom: 0;
    right: 21px;
    margin: auto;
    width: 12px;
    height: 12px;
    background-image: url("data:image/svg+xml,%3Csvg width='10' height='10' viewBox='0 0 10 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0.499884 4.99999L8.85724 4.99999M5.64287 1.14275L9.04554 4.54541C9.29659 4.79647 9.29659 5.20352 9.04554 5.45457L5.64287 8.85724' stroke='%23171B2B' stroke-linecap='round'/%3E%3C/svg%3E%0A");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    transition: all 0.3s ease;
}
.button--go:hover::before {
    transform: translateX(0.2777777778rem);
}
.button--orange {
    display: inline-flex;
    position: relative;
    justify-content: center;
    align-items: center;
    padding: 5px;
    background-color: transparent;
    border-radius: 15px;
}
.button--orange::before {
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 15px;
    z-index: 10;
    background-color: rgba(255, 255, 255, 0.5);
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}
.button--orange:not(.button--no-animation)::before {
    animation: buttonPulse 1.5s infinite normal linear;
}
.button--orange div {
    background: #FF5630;
    color: #FFF;
    padding: 15px 30px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
    border-radius: 10px;
    position: relative;
    z-index: 20;
}
.button--orange span {
    line-height: 1;
}
.button--orange img {
    max-width: 16px;
}
.button--blue {
    position: relative;
    border-radius: 15px;
    padding: 5px;
}
.button--blue::before {
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 15px;
    z-index: 10;
    background-color: rgba(6, 76, 234, 0.2);
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}
.button--blue:not(.button--no-animation)::before {
    animation: buttonPulse 1.5s infinite normal linear;
}
.button--blue div {
    background: #064CEA;
    color: #FFF;
    padding: 17px 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
    position: relative;
    border-radius: 10px;
    z-index: 20;
}
.button--blue span {
    line-height: 1;
}
.button--blue img, .button--blue svg {
    max-width: 16px;
}
.button--blue-lite {
    background: #DDE1FF;
    color: #000;
    padding: 17px 30px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
    position: relative;
    border-radius: 10px;
    z-index: 20;
}
.button--blue-lite span {
    line-height: 1;
}
.button--blue-lite img, .button--blue-lite svg {
    max-width: 16px;
}
.button--white {
    background: #FFF;
    color: #000;
    padding: 14px 30px 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
    position: relative;
    border-radius: 10px;
}
.button--white span {
    line-height: 1;
}
.button--white span, .button--white img {
    position: relative;
    z-index: 10;
}
.button--white::before {
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 15px;
    z-index: 10;
    background-color: rgba(255, 255, 255, 0.5);
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}
.button--white:not(.button--no-animation)::before {
    animation: buttonPulse 1.5s infinite normal linear;
}
.button--white img {
    max-width: 16px;
}
.button--black {
    background: #1B2034;
    color: #FFF;
    padding: 17px 28px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
    position: relative;
    border-radius: 12px;
}
.button--black svg {
    max-width: 16px;
}
.button--dark {
    background: rgba(255, 255, 255, 0.17);
    color: #FFF;
    padding: 17px 28px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
    position: relative;
    border-radius: 12px;
}
.button--dark svg {
    max-width: 16px;
}
.button--light {
    background: #F6F7FA;
    color: #0F1323;
    padding: 17px 28px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
    position: relative;
    border-radius: 12px;
    width: 230px;
}
.button--light svg {
    max-width: 16px;
}
@keyframes buttonPulse {
    0% {
        transform: scale(0.9, 0.9);
        opacity: 1;
    }
    100% {
        transform: scale(1.15, 1.3);
        opacity: 0;
    }
}
@keyframes buttonPulse2 {
    0% {
        transform: scale(0.9, 0.9);
        opacity: 1;
    }
    100% {
        transform: scale(1.15, 1.45);
        opacity: 0;
    }
}
@keyframes buttonPulse3 {
    0% {
        transform: scale(0.9, 0.9);
        opacity: 1;
    }
    100% {
        transform: scale(1.15, 1.4);
        opacity: 0;
    }
}

