.header {
    top: 0;
    left: 0;
    right: 0;
    z-index: 40;
    position: absolute;
    background: transparent;
    transition: .3s;
}

.header--fixed {
    position: fixed;
    background: #fff;
}

.header--fixed .header__logo {
    fill: #040E31;
}

.header--fixed .hamburger span, .header--fixed .hamburger:after, .header--fixed .hamburger:before {
    background: #040E31;
}

.header__body {
    height: 50px;
    position: relative;
    display: flex;
    align-items: center;
}

@media (min-width: 1280px) {
    .header__body {
        height: 4.375rem;
    }
}

@media (min-width: 1280px) {
    .header__body--with_line {
        height: 4.0625rem;
    }
}

.header__logo {
    fill: #fff;
    display: block;
    width: 2.5rem;
    flex-shrink: 0;
}

.header__logo--edu {
    width: auto;
}

.header__logo--second {
    width: 75px;
    margin-left: 15px;
}

.header__content {
    z-index: 700;
    position: relative;
    margin-left: 1rem;
    padding-left: 1rem;
    display: flex;
    align-items: center;
}

.header__content:before {
    left: 0;
    top: calc(50% - 12px);
    content: '';
    width: 1px;
    height: 24px;
    display: block;
    position: absolute;
    background: rgba(255, 255, 255, 0.2);
}

.header__mmco {
    width: 2.5rem;
    display: block;
}

.header__hamburger {
    right: 0;
    top: calc(50% - 12px);
    font-size: 0;
    line-height: 0;
    position: absolute;
}

.header__lng {
    margin-right: 2.25rem;
}

.header__group {
    display: flex;
    align-items: center;
}

.header--blur {
    background: transparent;
    backdrop-filter: blur(32px);
}

.header--black .header__logo {
    fill: #040E31;
}

.header--black .hamburger span, .header--black .hamburger:after, .header--black .hamburger:before {
    background-color: #040E31;
}

.header--black .header-nav__link {
    color: #040E31;
}

.header--black .header-nav__link__subListIcon {
    fill: #040E31;
}

.header--dark.header--fixed {
    background: #242425;
}

.header--white {
    background: #fff;
}

.header--white .header-nav__link {
    color: #040E31;
}

.header--white .header-nav__link__subListIcon {
    fill: #040E31;
}

@media (min-width: 1280px) {
    .header .container {
        max-width: 90rem;
    }
    .header__hamburger {
        display: none;
    }
    .header__content {
        margin: 0;
        padding: 0;
        display: flex;
        flex-direction: row-reverse;
    }
    .header__content:before {
        display: none;
    }
    .header__lng {
        margin-right: 0;
        margin-left: 1.875rem;
    }
    .header--black .header-nav__link {
        color: #040E31;
    }
    .header--black .header-nav__link:hover {
        color: #040E31;
    }
    .header--fixed .header-nav__link {
        color: #040E31;
    }
    .header--fixed .header-nav__link:hover {
        color: #040E31;
    }
    .header--fixed .btn-blur {
        background: #358CFF;
    }
    .header--fixed .btn-white {
        color: #040E31;
        background: transparent;
    }
    .header--blur {
        backdrop-filter: blur(16px);
    }
}

@media (min-width: 1600px) {
    .header .container {
        padding-right: 3rem;
        padding-left: 3rem;
    }
    .header__mmco {
        width: 3rem;
        height: 3rem;
    }
}

.header-sticky {
    left: 0;
    top: 0;
    position: absolute;
}

.lng {
    z-index: 600;
    position: relative;
}

.lng__button {
    margin: 0;
    padding: 0;
    border: none;
    outline: none;
    height: 2.25rem;
    font-weight: 450;
    font-size: 0.875rem;
    line-height: 1.25rem;
    background: transparent;
    text-transform: uppercase;
    color: #fff;
    stroke: #fff;
    display: flex;
    align-items: center;
}

.lng__button span {
    top: 0.125rem;
    position: relative;
    margin-right: 0.125rem;
    display: inline-block;
}

.lng__button i {
    height: 1rem;
    display: inline-block;
    flex-shrink: 0;
}

.lng__dropdown {
    color: #fff;
    min-width: 100%;
    font-size: 0.875rem;
    line-height: 1.25rem;
    background: #6090CF;
}

.lng__link {
    color: #fff;
    display: block;
    padding: 0.375rem 0.5rem 0.25rem 0.5rem;
    text-decoration: none;
    text-transform: uppercase;
}

.hamburger {
    margin: 0;
    padding: 0;
    width: 24px;
    height: 24px;
    font-size: 0;
    line-height: 0;
    border: none;
    outline: none;
    display: block;
    cursor: pointer;
    position: relative;
    background: transparent;
}

.hamburger span, .hamburger:after, .hamburger:before {
    width: 24px;
    height: 2px;
    content: '';
    top: calc(50% - 1px);
    left: calc(50% - 12px);
    display: inline-block;
    position: absolute;
    transition-property: transform;
    transition-duration: .15s;
    transition-timing-function: ease;
    background-color: #fff;
}

.hamburger:after {
    transform: translateY(-7px);
}

.hamburger:before {
    transform: translateY(7px);
}

.fixed-buttons {
    z-index: 400;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
}

.fixed-buttons__item {
    margin: 0 0.25rem;
}

@media (min-width: 1280px) {
    .fixed-buttons {
        display: none;
    }
}

@media (min-width: 1280px) {
    .header--v2 .header-nav__buttons {
        margin-left: auto;
        margin-left: 0;
    }
}

@media (min-width: 1280px) {
    .header--v2 .header-nav__button {
        margin: 0;
    }
}

@media (max-width: 980px) {
    .header--v2 .header__btn {
        background-color: #fff;
    }
}

.header-nav {
    left: 0;
    right: 0;
    bottom: 0;
    top: 50px;
    z-index: 450;
    position: fixed;
    height: calc(100vh - 50px);
    overflow-y: auto;
    padding: 20px;
    padding-bottom: 58px;
    background: #F4F5F6;
    opacity: 0;
    visibility: hidden;
    transition: .3s;
    color: #111;
}

@media (min-width: 768px) {
    .header-nav {
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

@media (min-width: 1280px) {
    .header-nav {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        bottom: auto;
        height: auto;
        opacity: 1;
        overflow: visible;
        padding: 0 0 0 40px;
        visibility: visible;
        display: block;
        background: transparent;
        flex-grow: 1;
        color: #fff;
    }
}

.header-nav__wrap {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

@media (min-width: 576px) {
    .header-nav__wrap {
        width: 728px;
    }
}

@media (min-width: 768px) {
    .header-nav__wrap {
        width: 920px;
    }
}

@media (min-width: 1280px) {
    .header-nav__wrap {
        width: auto;
        height: auto;
        flex-grow: 1;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}
@media (max-width: 1279px) {
    .header-nav__wrap {
        justify-content: flex-start !important;
    }
}
.header-nav__title {
    margin-bottom: 20px;
    font-weight: 600;
    font-size: 24px;
    line-height: 122%;
}

@media (min-width: 1280px) {
    .header-nav__title {
        display: none;
    }
}

.header-nav__menu {
    width: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
    font-weight: 400;
    font-size: 16px;
    line-height: 145%;
}

@media (min-width: 1280px) {
    .header-nav__menu {
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

@media (min-width: 1280px) {
    .header-nav__item {
        position: relative;
        margin-right: 20px;
    }
    .header-nav__item:last-child {
        margin-right: 0;
    }
}

@media (min-width: 1280px) {
    .header-nav__item--lk {
        display: none;
    }
}

.header-nav__link {
    height: 50px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 10px;
    padding-left: 15px;
    padding-right: 15px;
    border-radius: 10px;
    background-color: #fff;
    white-space: nowrap;
    text-decoration: none;
    color: inherit;
    font-family: suisse_intl, Arial, sans-serif;
}

@media (min-width: 1280px) {
    .header-nav__link {
        height: auto;
        display: flex;
        align-items: center;
        margin: 0;
        padding: 0;
        background: transparent;
    }
}

.header-nav__link:hover {
    text-decoration: none;
}

@media (min-width: 1280px) {
    .header-nav__link:hover {
        color: #fff;
        text-decoration: underline;
    }
}

.header-nav__link__avatar {
    width: 35px;
    height: 35px;
    margin-right: 5px;
    border-radius: 100%;
    overflow: hidden;
}

.header-nav__link__avatar img {
    display: block;
    width: 100%;
}

.header-nav__link__icon {
    margin-left: auto;
}

@media (min-width: 1280px) {
    .header-nav__link__icon {
        display: none;
    }
}

.header-nav__link__subListIcon {
    display: none;
}

@media (min-width: 1280px) {
    .header-nav__link__subListIcon {
        display: block;
        margin-left: 5px;
    }
}

.header-nav__buttons {
    display: none;
}

@media (min-width: 1280px) {
    .header-nav__buttons {
        display: flex;
        margin-left: 3.25rem;
        padding-top: 0;
    }
}

.header-nav__button {
    margin-bottom: 0.5rem;
}

@media (min-width: 576px) {
    .header-nav__button {
        margin: 0 0.25rem;
    }
}

.header-nav__button .btn {
    font-size: 16px;
    padding-left: 16px;
    padding-right: 16px;
}

.header-nav__mobButtons {
    width: 100%;
    margin-top: 0;
}

@media (min-width: 1280px) {
    .header-nav__mobButtons {
        display: none;
    }
}

.header-nav__btnSingIn {
    width: 100%;
}

.header-nav__btnLogOut {
    width: 100%;
    height: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: 15px;
    padding-right: 15px;
    border-radius: 10px;
    background-color: #fff;
    white-space: nowrap;
    text-decoration: none;
    color: inherit;
}

.header-nav__btnLogOut:hover {
    color: inherit;
    text-decoration: none;
}

.header-nav__item__subList {
    list-style: none;
    margin: 0;
    padding: 0;
}

@media (min-width: 1280px) {
    .header-nav__item__subList {
        opacity: 0;
        visibility: hidden;
        position: absolute;
        right: 0;
        padding: 16px;
        padding-top: 41px;
        color: #111;
        transition: opacity 0.8s ease;
    }
    .header-nav__item__subList::before {
        content: '';
        position: absolute;
        top: 25px;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: calc(100% - 25px);
        border-radius: 12px;
        background: #fff;
        box-shadow: 0px 0px 14px rgba(0, 0, 0, 0.15);
    }
    .header-nav__item__subList .header-nav__item {
        margin-right: 0;
    }
    .header-nav__item__subList .header-nav__link {
        width: 100%;
        height: 41px;
        display: flex;
        align-items: center;
        padding: 0 16px;
        border-radius: 8px;
        font-size: 18px;
    }
    .header-nav__item__subList .header-nav__link:hover {
        background: #F4F5F6;
        color: #111;
        text-decoration: none;
    }
}

.header-nav__item:hover .header-nav__item__subList {
    opacity: 1;
    visibility: visible;
}

.nav-open {
    overflow: hidden;
}

.nav-open .header-nav {
    opacity: 1;
    visibility: visible;
    transition: .3s;
}

.nav-open .hamburger span {
    opacity: 0;
}

.nav-open .hamburger:after {
    transform: translateY(0) rotate(45deg);
}

.nav-open .hamburger:before {
    transform: translateY(0) rotate(-45deg);
}

@media (min-width: 1280px) {
    .nav-open .header {
        background-color: transparent;
    }
    .nav-open .header--black .header__logo {
        fill: #040E31;
    }
}

.header_line {
    position: absolute;
    left: 0;
    top: 50px;
    z-index: 20 !important;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-height: 65px;
    padding: 5px 15px;
    transition: all .3s;
    background-color: #040E31;
    color: #fff;
}

@media (min-width: 992px) {
    .header_line {
        display: flex;
    }
}

@media (min-width: 1280px) {
    .header_line {
        top: 65px;
    }
}

@media (max-width: 640px) {
    .header_line--mobBotFixed {
        position: fixed;
        z-index: 50 !important;
        top: auto;
        bottom: 0;
        border-radius: 20px 20px 0px 0px;
        padding-left: 11px;
        padding-right: 11px;
        padding-top: 10px !important;
    }
}

.header_line--fixed {
    position: fixed;
}

.header_line a.bg_link {
    display: none;
}

.header_line--runningLine {
    padding: 0 !important;
}

.header_line--item {
    margin-left: 25px;
    position: relative;
    display: flex;
    align-items: center;
}

@media (max-width: 680px) {
    .header_line--item--mobHide {
        display: none;
    }
}

.header_line--item--desctHide {
    display: none;
}

@media (max-width: 680px) {
    .header_line--item--desctHide {
        display: block;
        width: 100%;
        margin-left: 0;
        padding-top: 18px;
        padding-bottom: 14px;
    }
}

.header_line--item .div {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.header_line--item:first-child {
    margin-left: 0;
}

.header_line--item a {
    display: block;
    padding: 9px 20px 5px;
    min-height: 40px;
}

.header_line--item .ring {
    display: inline-block;
    transition: all 5s;
    -webkit-animation: din-don 3s infinite;
    animation: din-don 3s infinite;
    position: relative;
    margin-right: 10px;
    height: 22px;
}

.header_line--item .ring:after {
    display: block;
    transition: all 5s;
    -webkit-animation: din-don-alert 3s infinite;
    animation: din-don-alert 3s infinite;
    position: absolute;
    top: 100%;
    left: calc(50% - 2.5px);
    content: "";
    width: 5px;
    border-radius: 40%;
    border-bottom: 2px solid #ffc83d;
    opacity: 0;
}

.header_line--item.with_dot:before {
    content: "\2022";
    position: absolute;
    left: -15px;
    top: 0;
    color: #fff;
}

@media (max-width: 768px) {
    .header_line {
        padding-top: 15px;
    }
    .header_line--item:first-of-type {
        margin-left: 0;
    }
    .header_line--item {
        font-size: 13px;
    }
}

@media (max-width: 938px) {
    .header_line a.bg_link {
        display: block;
    }
    .header_line--item.link_btn {
        display: none;
    }
}

.header_line__btn--mobBotFixed {
    display: none;
}

@media (max-width: 680px) {
    .header_line__btn--mobBotFixed {
        display: flex !important;
        align-items: center;
        width: 293px;
        height: 50px;
        margin-left: auto;
        margin-right: auto;
    }
}

.headerRunningLine {
    width: 100%;
    display: block;
    padding: 15px;
    background-color: #040E31;
}

@media (min-width: 992px) {
    .headerRunningLine {
        padding-top: 16px;
        padding-bottom: 17px;
    }
}

.headerRunningLine__item {
    display: flex;
    align-items: center;
}

.headerRunningLine__item__status {
    position: relative;
    z-index: 5;
    width: 15px;
    height: 15px;
    margin-right: 10px;
    border-radius: 50%;
    background: #F53527;
}

@media (min-width: 992px) {
    .headerRunningLine__item__status {
        width: auto;
        height: auto;
        display: flex;
        align-items: center;
        margin-right: 15px;
        padding-top: 6px;
        padding-left: 8px;
        padding-right: 12px;
        padding-bottom: 6px;
        border-radius: 24px;
        color: #fff;
        font-weight: 500;
        font-size: 14px;
        line-height: 140%;
        letter-spacing: 0.05em;
        text-transform: uppercase;
    }
}

.headerRunningLine__item__status:before, .headerRunningLine__item__status:after {
    content: '';
}

.headerRunningLine__item__status:before {
    display: none;
}

@media (min-width: 992px) {
    .headerRunningLine__item__status:before {
        display: inline-block;
        width: 8px;
        height: 8px;
        margin-right: 6px;
        border-radius: 50%;
        background-color: #fff;
    }
}

.headerRunningLine__item__status:after {
    position: absolute;
    z-index: -1;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    background-color: rgba(245, 53, 39, 0.4);
    animation: animationPulse 2s linear infinite;
}

.headerRunningLine__item__status span {
    display: none;
}

@media (min-width: 992px) {
    .headerRunningLine__item__status span {
        display: block;
    }
}

.headerRunningLine__item__text {
    flex: 1;
    font-weight: 500;
    font-size: 14px;
    line-height: 110%;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    color: #fff;
}

@media (min-width: 992px) {
    .headerRunningLine__item__text {
        font-size: 20px;
    }
}

.headerRunningLine__item__btn {
    margin-left: 15px;
    font-weight: 450;
    min-height: 35px;
}

@media (min-width: 992px) {
    .headerRunningLine__item__btn {
        min-height: 40px;
        margin-left: 20px;
        padding-left: 16px;
        padding-right: 16px;
    }
}

@media (max-width: 1279px) {
    .hide_in_mobile {
        display: none;
    }
}

/* buttons */
.btn {
    border: none;
    outline: none;
    cursor: pointer;
    min-height: 3.125rem;
    font-weight: 500;
    font-size: 1rem;
    line-height: 1.5rem;
    padding: 0.5rem 2.25rem;
    user-select: none;
    text-align: center;
    white-space: nowrap;
    position: relative;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    vertical-align: middle;
    border-radius: 0.5rem;
}

.btn.w100-345 {
    width: 100%;
}

@media (min-width: 768px) {
    .btn.w100-345 {
        width: 345px;
    }
}

.btn.hSmall {
    min-height: 3rem;
}

.btn span {
    position: relative;
    display: inline-block;
}

.btn i {
    font-size: 0;
    line-height: 0;
    display: inline-block;
    height: 1.5rem;
}

.btn b {
    font-size: 0;
    line-height: 0;
    display: inline-block;
    height: 1.125rem;
    margin-right: 0.375rem;
}

.btn span + i {
    margin-left: 0.625rem;
}

.btn i + span {
    margin-left: 0.625rem;
}

.btn:focus, .btn.focus {
    outline: 0;
}

@media (min-width: 1280px) {
    .btn {
        font-size: 1.125rem;
        line-height: 1.625rem;
        min-height: 4rem;
        border-radius: 0.625rem;
    }
}

.btn-white {
    fill: #040E31;
    color: #358CFF;
    background: #fff;
}

.btn-white--andBlueBdr {
    border: 2px solid #358CFF;
    border-radius: 10px;
}

.btn-white:hover {
    fill: #358CFF;
    color: #358CFF;
    background: #E6ECF2;
    text-decoration: none;
    transition: .3s;
}

.btn-white:active {
    background: #fff;
}

.btn-gray {
    fill: #000;
    color: #000;
    background: #F4F5F6;
}

.btn-gray:hover {
    fill: #000;
    color: #000;
    background: #e1e1e1;
    text-decoration: none;
    transition: .3s;
}

.btn-gray:active {
    fill: #000;
    color: #000;
    background: #F4F5F6;
}

.btn-blue {
    fill: #fff;
    color: #fff;
    background: #006DFF;
    backdrop-filter: blur(5px);
    transition: 0.3s all;
}

.btn-blue:hover {
    fill: #fff;
    color: #fff;
    background: #358CFF;
}

.btn-blue:active {
    background: #006DFF;
}

.btn-tg {
    background: #50A1DC;
    backdrop-filter: blur(5px);
}

.btn-blur {
    fill: #fff;
    color: #fff;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
}

.btn-blur:hover {
    fill: #fff;
    color: #fff;
    background: rgba(255, 255, 255, 0.25);
}

.btn-blur:active {
    background: rgba(255, 255, 255, 0.15);
}

.btn-tg {
    fill: #fff;
    color: #fff;
    background: #50A1DC;
    padding: 0.25rem 1.5rem;
}

.btn-tg i {
    height: 2rem;
}

.btn-tg span + i {
    margin-left: 0.25rem;
}

.btn-tg i + span {
    margin-left: 0.25rem;
}

.btn-tg:hover {
    fill: #fff;
    color: #fff;
    background: #2a9dea;
}

.btn-tg:active {
    fill: #fff;
    color: #fff;
    background: #50A1DC;
}

.btn-sm {
    min-height: 2.5rem;
    border-radius: 0.5rem;
    padding: 0.25rem 1.25rem;
}

.btn-md {
    min-height: 3rem;
    border-radius: 0.625rem;
    padding: 0.25rem 1.75rem;
    flex-shrink: 0;
}

.btn-md.btn-icon {
    width: 2.8125rem;
}

@media (min-width: 1280px) {
    .btn-md {
        min-height: 3rem;
        font-size: 1rem;
        line-height: 1.5rem;
    }
    .btn-md.btn-icon {
        width: 2.8125rem;
    }
}

.btn-lg {
    min-height: 2.8125rem;
    border-radius: 0.625rem;
    padding: 0.25rem 1.75rem;
    flex-shrink: 0;
}

.btn-lg.btn-icon {
    width: 2.8125rem;
}

@media (min-width: 1280px) {
    .btn-lg {
        min-height: 3.4375rem;
    }
    .btn-lg.btn-icon {
        width: 4.0625rem;
    }
}

@media (min-width: 1280px) {
    .btn-18 {
        font-size: 1.125rem;
    }
}

.btn-icon {
    padding: 0;
    width: 3.125rem;
}

@media (min-width: 1280px) {
    .btn-icon {
        width: 4rem;
    }
}

.btn-nav {
    border: none;
    outline: none;
    stroke: #040E31;
    font-size: 0;
    line-height: 0;
    width: 40px;
    height: 40px;
    cursor: pointer;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0px 4px 27px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .3s;
}

@media (min-width: 768px) {
    .btn-nav {
        width: 48px;
        height: 48px;
    }
}

.btn-nav:hover {
    stroke: #358CFF;
    box-shadow: 0px 4px 27px rgba(0, 0, 0, 0.25);
}

.btn-nav:active {
    stroke: #040E31;
    box-shadow: 0px 4px 27px rgba(0, 0, 0, 0.05);
}

.btn-nav i {
    font-size: 0;
    line-height: 0;
    flex-shrink: 0;
    height: 1.5rem;
    display: inline-block;
}

.btn-nav--gray {
    background: #EDF1F5;
}

.btn-nav--blur {
    stroke: #fff;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(50px);
}

.btn-nav--blur:hover {
    stroke: #fff;
}

.btn-nav--blur:active {
    stroke: #fff;
}

.btn-nav.swiper-button-disabled {
    cursor: default;
    stroke: #ccc;
    opacity: 0.5;
}

.btn-nav.swiper-button-disabled:hover {
    box-shadow: 0px 4px 27px rgba(0, 0, 0, 0.05);
}

@media (min-width: 768px) {
    .btn-nav {
        width: 3.75rem;
        height: 3.75rem;
    }
}

.btn-favorite {
    fill: none;
}

.btn-favorite__border {
    fill: #fff;
}

.btn-favorite.added .btn-favorite__bg {
    fill: #fff;
}

.btn-favorite:hover {
    fill: none;
}

.btn-light {
    fill: #fff;
    color: #fff;
    background: #6090CF;
}

.btn-light:hover {
    fill: #fff;
    color: #fff;
    background: #358CFF;
    transition: .3s;
}

.btn-light:active {
    background: #6090CF;
}

.btn-inverse {
    fill: #fff;
    color: #fff;
    background: #358CFF;
}

.btn-inverse:hover {
    fill: #fff;
    color: #fff;
    background: #0064ff;
    transition: .3s;
}

.btn-inverse:active {
    background: #E6ECF2;
}

@media (min-width: 1280px) {
    .btn-inverse {
        fill: #358CFF;
        color: #358CFF;
        background: #fff;
    }
    .btn-inverse:hover {
        fill: #358CFF;
        color: #358CFF;
        background: #E6ECF2;
    }
    .btn-inverse:active {
        background: #E6ECF2;
    }
}

.btn-blue-inverse {
    fill: #fff;
    color: #fff;
    background: #358CFF;
}

.btn-blue-inverse:hover {
    fill: #fff;
    color: #fff;
    background: #6090CF;
}

.btn-blue-inverse:active {
    background: #358CFF;
}

@media (min-width: 1280px) {
    .btn-blue-inverse {
        fill: #fff;
        color: #fff;
        background: #6090CF;
    }
    .btn-blue-inverse:hover {
        fill: #fff;
        color: #fff;
        background: #0064ff;
        transition: .3s;
    }
    .btn-blue-inverse:active {
        background: #6090CF;
    }
}

.btn-link {
    margin: 0;
    padding: 0;
    color: rgba(4, 14, 49, 0.5);
    stroke: rgba(4, 14, 49, 0.5);
    border: none;
    outline: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    background: transparent;
    text-decoration: none;
    transition: .3s;
}

.btn-link i {
    font-size: 0;
    line-height: 0;
    top: -2px;
    position: relative;
    display: inline-block;
    height: 1.5rem;
    margin-right: 0.5rem;
}

.btn-link span {
    position: relative;
    display: inline-block;
}

.btn-link:hover {
    color: #040E31;
    stroke: #040E31;
    text-decoration: none;
    transition: .3s;
}

.btn-link--black {
    color: #040E31;
    stroke: #040E31;
    font-weight: 600;
    text-decoration: underline;
}

.btn-share {
    padding: 0;
    width: 4rem;
}

.btn-share span {
    display: none;
}

@media (min-width: 768px) {
    .btn-share {
        width: auto;
        padding: 0.25rem 1.75rem;
    }
    .btn-share span {
        display: inline-block;
    }
}

.btn-add {
    border: 1px dashed rgba(0, 0, 0, 0.15);
    background: transparent;
    color: #040E31;
}

.btn-transparent {
    background: transparent;
    color: #111;
}

.btn-orange {
    background: #FA7A0A;
    color: #fff;
}

.btn-purpText {
    background: transparent;
}

.btn-purpText span {
    background: linear-gradient(271deg, #406FFF 0%, #836DFF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.btn-purpBd {
    border: 2px solid #836DFF;
}

.btn-purpGrad {
    background: linear-gradient(271deg, #406FFF 0%, #836DFF 100%);
    color: #fff;
}

.btn-purpGrad:hover {
    color: #fff;
}

.btn-md {
    min-height: 48px;
    padding: 12px 20px;
}

.header--fixed {
    background-color: #fff !important;
}

.eduEvent__badge {
    width: auto;
    white-space: nowrap;
}

@media (min-width: 1360px) {
    .header .container, .footer .container {
        padding: 0 !important;
    }
}
.nav-open .topPlank {
    display: none;
}
@media (min-width: 768px) {
    .topPlank .topPlank__btn {
        background-color: #fff;
        height: auto;
        min-height: auto;
    }
}
@media (max-width: 1279px) {
    .topPlank .topPlank__btn {
        display: none;
    }
    .footer__primary {
        flex-wrap: wrap;
    }
    .footer__nav.footer-nav, .footer__social.footer-social {
        flex: 0 1 100%;
    }
}
.footer--links {
    display: flex;
}

.header-nav__link__subListIcon {
    transition: 0.3s all;
}
.header--fixed .header-nav__link__subListIcon {
    fill: #000 !important;
}
.header-nav__link.hide_in_mobile:hover .header-nav__link__subListIcon {
    transform: rotate(180deg);
}

.headerRunningLine .btn {
    min-height: 40px !important;
}

.enter-link-leader {
    padding: 4px 10px;
    font-size: 14px !important;
}
.enter-link-leader img {
    width: 70px;
    margin-left: 5px;
}

.enter-link-leader {
    border-radius: 100px !important;
    padding: 10px 20px !important;
    min-height: auto;
    height: auto !important;
    font-weight: 400 !important;
    color: #000 !important;
}
@media (max-width: 968px) {
	.nav-open .header-nav {
		top: 50px !important;
	}
	.nav-open .hamburger:before, .nav-open .hamburger:after {background: #111 !important;}
	.nav-open .header--v2 {padding-bottom: 0;background: #fff !important;}
	.nav-open .header--v2 .header__logo {fill: #111 !important}
	.nav-open .header--v2, .nav-open .header--v2 * {box-sizing: border-box;}
	.nav-open .header__nav {padding-bottom: 0;max-height: calc(100vh - 40px);}
	.nav-open .bott-btn{margin-top: 10px;}
	.header-nav__link, .header-nav__link:hover {color: #111 !important}
	header.header, header.header * {box-sizing: border-box}
	.header-nav__wrap {height: calc(100% - 70px)}
}
