@font-face {
    font-family: Geometria;
    font-weight: 300;
    src: url(/fonts/Geometria/Geometria-Light.eot?) format("eot"), url(/fonts/Geometria/Geometria-Light.woff2) format("woff2"), url(/fonts/Geometria/Geometria-Light.woff) format("woff"), url(/fonts/Geometria/Geometria-Light.ttf) format("truetype"), url(/fonts/Geometria/Geometria-Light.svg#Geometria) format("svg")
}

@font-face {
    font-family: Geometria;
    font-weight: 400;
    src: url(/fonts/Geometria/Geometria-Regular.eot?) format("eot"), url(/fonts/Geometria/Geometria-Regular.woff2) format("woff2"), url(/fonts/Geometria/Geometria-Regular.woff) format("woff"), url(/fonts/Geometria/Geometria-Regular.ttf) format("truetype"), url(/fonts/Geometria/Geometria-Regular.svg#Geometria) format("svg")
}

@font-face {
    font-family: Geometria;
    font-weight: 500;
    src: url(/fonts/Geometria/Geometria-Medium.eot?) format("eot"), url(/fonts/Geometria/Geometria-Medium.woff2) format("woff2"), url(/fonts/Geometria/Geometria-Medium.woff) format("woff"), url(/fonts/Geometria/Geometria-Medium.ttf) format("truetype"), url(/fonts/Geometria/Geometria-Medium.svg#Geometria) format("svg")
}

@font-face {
    font-family: Geometria;
    font-weight: 700;
    src: url(/fonts/Geometria/Geometria-Bold.eot?) format("eot"), url(/fonts/Geometria/Geometria-Bold.woff2) format("woff2"), url(/fonts/Geometria/Geometria-Bold.woff) format("woff"), url(/fonts/Geometria/Geometria-Bold.ttf) format("truetype"), url(/fonts/Geometria/Geometria-Bold.svg#Geometria) format("svg")
}

@font-face {
    font-family: Geometria;
    font-weight: 800;
    src: url(/fonts/Geometria/Geometria-ExtraBold.eot?) format("eot"), url(/fonts/Geometria/Geometria-ExtraBold.woff2) format("woff2"), url(/fonts/Geometria/Geometria-ExtraBold.woff) format("woff"), url(/fonts/Geometria/Geometria-ExtraBold.ttf) format("truetype"), url(/fonts/Geometria/Geometria-ExtraBold.svg#Geometria) format("svg")
}

@font-face {
    font-family: GolosText;
    font-weight: 700;
    src: url(/fonts/GolosText/GolosText-Bold.eot?) format("eot"), url(/fonts/GolosText/GolosText-Bold.woff2) format("woff2"), url(/fonts/GolosText/GolosText-Bold.woff) format("woff"), url(/fonts/GolosText/GolosText-Bold.ttf) format("truetype"), url(/fonts/GolosText/GolosText-Bold.svg#GolosText) format("svg")
}

* {
    margin: 0;
    padding: 0;
    list-style: none;
    text-decoration: none;
    -webkit-box-sizing: border-box;
    box-sizing: border-box
}

.container {
    padding-left: 20px;
    padding-right: 20px;
    margin-left: auto;
    margin-right: auto;
    max-width: 1800px;
    width: 100%
}

.container_small {
    max-width: 1652px
}

.row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: -12px
}

.col {
    width: 100%;
    padding: 12px
}

.col_2 {
    width: 16.666667%
}

.col_3 {
    width: 25%
}

.col_4 {
    width: 33.333333%
}

.col_5 {
    width: 41.666667%
}

.col_6 {
    width: 50%
}

.col_7 {
    width: 58.333333%
}

.col_8 {
    width: 66.666667%
}

.col_9 {
    width: 75%
}

.mt-32 {
    margin-top: 32px
}

.mt-48 {
    margin-top: 48px
}

.mt-110 {
    margin-top: 110px
}

.mb-111 {
    margin-bottom: 111px
}

.desktop-hide, .tablet-hide {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important
}

.desktop-lg-show, .desktop-show, .desktop-xl-show, .tablet-md-show, .tablet-show {
    display: none !important
}

.desktop-lg-hide, .desktop-xl-hide {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important
}

.popup, .tablet-md-hide {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.popup {
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    padding: 66px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, .62);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: .15s cubic-bezier(.785, .135, .15, .86) .2s;
    -o-transition: .15s cubic-bezier(.785, .135, .15, .86) .2s;
    transition: .15s cubic-bezier(.785, .135, .15, .86) .2s
}

.popup.active {
    -webkit-transition: .15s cubic-bezier(.785, .135, .15, .86);
    -o-transition: .15s cubic-bezier(.785, .135, .15, .86);
    transition: .15s cubic-bezier(.785, .135, .15, .86)
}

.popup.active, .popup.active .popup__content {
    opacity: 1;
    visibility: visible;
    overflow: auto;
}

.popup__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    overflow: auto;
    background-color: #fff;
    padding: 43px 60px;
    width: 100%;
    max-width: 560px;
    min-height: 650px;
    max-height: 100%;
    border-radius: 20px;
    position: relative;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: .3s cubic-bezier(.785, .135, .15, .86);
    -o-transition: .3s cubic-bezier(.785, .135, .15, .86);
    transition: .3s cubic-bezier(.785, .135, .15, .86)
}

.popup__content .logo {
    margin-bottom: 32px
}

.popup__content .logo:last-child {
    margin-bottom: 0
}

.popup__content .title-block {
    margin-bottom: 48px
}

.popup__content .title-block:last-child {
    margin-bottom: 0
}

.popup__content .title-block > .title {
    margin-bottom: 8px
}

.popup__content .title-block > .title:last-child {
    margin-bottom: 0
}

.popup__content .title-block > p {
    font-size: 22px;
    line-height: 136%;
    color: #333
}

.popup__content .btn-block {
    margin-bottom: 24px
}

.popup__content .btn-block:last-child {
    margin-bottom: 0
}

.popup__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    overflow-y: auto;
    overflow-x: hidden;
    padding-right: 28px;
    margin-right: -28px
}

.popup__wrapper::-webkit-scrollbar {
    width: 8px
}

.popup__wrapper::-webkit-scrollbar-track {
    background: #dcdfe7;
    border-radius: 5px
}

.popup__wrapper::-webkit-scrollbar-thumb {
    background: var(--global-color);
    border-radius: 5px
}

.popup__chose-days {
    padding-bottom: 32px;
    margin-bottom: 32px;
    border-bottom: 1px solid #dcdfe7
}

.popup__chose-days:last-child {
    margin-bottom: 0
}

.popup__stage {
    display: none
}

.popup__stage:first-child {
    display: block
}

.popup__stage_change-pass .title-block {
    margin-bottom: 32px
}

.popup__stage_change-pass .title-block:last-child {
    margin-bottom: 0
}

.popup__stage_pass-success .title-block {
    margin-bottom: 64px
}

.popup__stage_pass-success .title-block:last-child {
    margin-bottom: 0
}

.popup__stage_pass-success > p {
    text-align: center;
    font-weight: 500;
    font-size: 22px;
    line-height: 136%
}

.popup__stage_pass-success .btn-block {
    margin-top: 115px
}

.popup__stage_pass-success .btn-block:first-child {
    margin-top: 0
}

.popup__stage_new-password {
    margin-bottom: 32px
}

.popup__stage_new-password:last-child {
    margin-bottom: 0
}

.popup__stage_new-password .title-block {
    margin-bottom: 16px
}

.popup__stage_new-password .title-block:last-child {
    margin-bottom: 0
}

.popup__stage_authorization .title-block {
    margin-bottom: 24px
}

.popup__stage_authorization .title-block:last-child {
    margin-bottom: 0
}

.popup__stage_f-l-e .title-block {
    padding-bottom: 16px;
    border-bottom: 1px solid #dcdfe7;
    margin-bottom: 24px
}

.popup__stage_f-l-e .title-block:last-child {
    margin-bottom: 0
}

.popup__stage_f-l-e .title-block .title {
    margin-bottom: 24px
}

.popup__stage_f-l-e .title-block .title:last-child {
    margin-bottom: 0
}

.popup__stage_e-o-t-c .title-block {
    margin-bottom: 56px
}

.popup__stage_e-o-t-c .title-block:last-child {
    margin-bottom: 0
}

.popup__stage_e-o-t-c .popup__form-items {
    margin-bottom: 56px
}

.popup__stage_e-o-t-c .popup__form-items:last-child {
    margin-bottom: 0
}

.popup__stage_e-o-t-c .checkbox {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.popup__stage_e-o-t-c .checkbox strong {
    font-weight: 500
}

.popup__stage_e-o-t-c .checkbox p {
    margin-right: 10px
}

.popup__stage_e-o-t-c .checkbox p:last-child {
    margin-right: 0;
    font-weight: 500;
    font-size: 22px;
    color: #87ceca
}

.popup__stage_chose-days .checked-items {
    margin-bottom: 24px
}

.popup__stage_chose-days .checked-items:last-child {
    margin-bottom: 0
}

.popup__stage_chose-days .show-hide-block__item .row > .col {
    width: 33.333333% !important
}

.popup__stage_chose-days .show-hide-block__triger {
    margin-left: auto
}

.popup__stage_success p {
    font-size: 22px
}

.popup__btn-top > .row {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    margin-left: -16px;
    margin-right: -16px
}

.popup__btn-top > .row > .col {
    padding-left: 16px;
    padding-right: 16px
}

.popup__btn-top .btn {
    cursor: auto
}

.popup__btn-top-info {
    font-weight: 500;
    font-size: 22px;
    line-height: 125%;
    color: #87ceca
}

.popup__form-items {
    margin-bottom: 32px
}

.popup__form-items:last-child {
    margin-bottom: 0
}

.popup__info {
    margin-bottom: 48px;
    line-height: 125%
}

.popup__info:last-child {
    margin-bottom: 0
}

.popup__info a {
    color: #0092da
}

.popup__success-img {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100px;
    height: 100px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 32px
}

.popup__success-img:last-child {
    margin-bottom: 0
}

.popup__success-img img {
    width: 100%
}

.popup__close {
    width: 32px;
    height: 32px;
    position: absolute;
    bottom: 100%;
    left: 100%;
    margin-top: -29px;
    background: url(/img/close-icon.svg);
    background-repeat: no-repeat;
    background-position: 50%;
    background-size: 100% 100%
}

.header {
    position: relative;
    background: #fff;
    z-index: 9998
}

.header:after {
    content: "";
    position: absolute;
    left: 2px;
    right: 2px;
    bottom: 0;
    height: 1px;
    background: rgba(220, 223, 231, .5)
}

.header__content {
    height: 71px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding-right: 74px
}

.header__content, .header__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.header__wrapper {
    height: 100%
}

.header__wrapper .auth-link, .header__wrapper .profile-link {
    margin-right: 56px
}

.header__wrapper .auth-link:last-child, .header__wrapper .profile-link:last-child {
    margin-right: 0
}

.header__wrapper .language {
    margin-right: 40px
}

.header__wrapper .language:last-child {
    margin-right: 0
}

.profile-link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.profile-link i {
    background: url(/img/profile-icon.svg);
    background-repeat: no-repeat;
    background-position: 50%;
    background-size: 100% 100% !important;
    width: 39px;
    height: 39px;
    margin-right: 16px
}

.profile-link i:last-child {
    margin-right: 0
}

.profile-link span {
    color: #333;
    text-transform: capitalize
}

.auth-link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.auth-link i {
    -webkit-mask-image: url(/img/auth-icon.svg);
    mask-image: url(/img/auth-icon.svg);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-size: 100% 100% !important;
    mask-size: 100% 100% !important;
    width: 24px;
    height: 24px;
    background: #000
}

.language {
    z-index: 2;
    display: none;
}

.language, .language li {
    position: relative;
    height: 100%
}

.language li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.language li:hover .language__dropdown {
    opacity: 1;
    visibility: visible
}

.language__is-select {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.language__is-select span {
    font-size: 18px;
    color: #333
}

.language__icon {
    background-repeat: no-repeat;
    background-position: 50%;
    background-size: 100% 100% !important;
    width: 28px;
    height: 20px;
    margin-right: 10px
}

.language__icon:last-child {
    margin-right: 0
}

.language__icon_ua {
    background: url(/img/flag-ukraine-icon.svg)
}

.language__icon_en {
    background: url(/img/flag-england-icon.svg)
}

.language__icon_ru {
    background: url(/img/flag-russia-icon.svg)
}

.language__dropdown {
    position: absolute;
    top: 100%;
    left: -52px;
    background: #fff;
    border: 1px solid #aeaeb2;
    border-radius: 10px;
    width: 198px;
    padding-top: 18px;
    padding-bottom: 40px;
    margin-top: 8px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: .3s cubic-bezier(.785, .135, .15, .86);
    -o-transition: .3s cubic-bezier(.785, .135, .15, .86);
    transition: .3s cubic-bezier(.785, .135, .15, .86)
}

.language__dropdown:after, .language__dropdown:before {
    content: "";
    position: absolute
}

.language__dropdown:before {
    top: -8px;
    left: 0;
    right: 0;
    height: 8px
}

.language__dropdown:after {
    top: -10px;
    left: 57px;
    width: 17px;
    height: 12px;
    background-repeat: no-repeat;
    background-position: 50%;
    background-size: 100%;
    background: url(/img/language-arrow-icon.svg);
    z-index: 2
}

.language__dropdown-option {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 11px 33px 12px;
    background: #fff
}

.language__dropdown-option span {
    font-size: 16px;
    line-height: 100%;
    color: #878fa6;
    -webkit-transition: .3s cubic-bezier(.785, .135, .15, .86);
    -o-transition: .3s cubic-bezier(.785, .135, .15, .86);
    transition: .3s cubic-bezier(.785, .135, .15, .86)
}

.language__dropdown-option:hover {
    background: #f5f6fa
}

.language__dropdown-option:hover span {
    font-weight: 700;
    color: #333
}

.mob-triger {
    position: relative;
    width: 35px;
    height: 23px;
    overflow: hidden;
    display: none;
    -webkit-transition: border .4s cubic-bezier(.785, .135, .15, .86) .3s;
    -o-transition: border .4s cubic-bezier(.785, .135, .15, .86) .3s;
    transition: border .4s cubic-bezier(.785, .135, .15, .86) .3s
}

.mob-triger span {
    position: absolute;
    left: 0;
    right: 0;
    height: 3px;
    background: #333;
    -webkit-transition: .4s cubic-bezier(.785, .135, .15, .86);
    -o-transition: .4s cubic-bezier(.785, .135, .15, .86);
    transition: .4s cubic-bezier(.785, .135, .15, .86)
}

.mob-triger span:first-child {
    top: 0
}

.mob-triger span:nth-child(2) {
    -webkit-transition: .4s cubic-bezier(.785, .135, .15, .86);
    -o-transition: .4s cubic-bezier(.785, .135, .15, .86);
    transition: .4s cubic-bezier(.785, .135, .15, .86);
    top: 0;
    bottom: 0;
    margin: auto
}

.mob-triger span:nth-child(3) {
    bottom: 0
}

.mob-triger.active {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid #333
}

.mob-triger.active span {
    height: 1px;
    border-radius: 2px;
    top: 5px;
    bottom: 5px;
    left: 5px;
    right: 5px
}

.mob-triger.active span:first-child {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    margin: auto
}

.mob-triger.active span:nth-child(2) {
    -webkit-transform: translateX(140%);
    -ms-transform: translateX(140%);
    transform: translateX(140%)
}

.mob-triger.active span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    margin: auto
}

.mob-menu {
    padding-top: 56px;
    padding-bottom: 50px;
    position: fixed;
    top: 71px;
    right: 0;
    bottom: 0;
    left: 0;
    background: var(--global-color);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: .3s cubic-bezier(.785, .135, .15, .86) .2s;
    -o-transition: .3s cubic-bezier(.785, .135, .15, .86) .2s;
    transition: .3s cubic-bezier(.785, .135, .15, .86) .2s
}

.mob-menu > .container {
    height: 100%
}

.mob-menu__wrapper {
    height: 100%;
    overflow-y: auto;
    overflow-x: hidden
}

.mob-menu__content, .mob-menu__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
}

.mob-menu__content {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.mob-menu .main-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
    /*margin-bottom: 56px*/
}

.mob-menu .main-nav:last-child {
    margin-bottom: 0
}

.mob-menu .main-nav ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    padding-bottom: 56px;
    border-bottom: 1px solid rgba(220, 223, 231, .4)
}

.mob-menu .main-nav ul li {
    margin-right: 0;
    margin-bottom: 48px;
    text-align: center
}

.mob-menu .main-nav ul li:last-child {
    margin-bottom: 0
}

.mob-menu .main-nav ul li a, .mob-menu .main-nav ul li.current a {
    color: #fff
}

.mob-menu .language {
    height: auto;
    margin-bottom: 63px
}

.mob-menu .language:last-child {
    margin-bottom: 0
}

.mob-menu .language__dropdown {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    opacity: 1;
    visibility: visible;
    background: rgba(0, 0, 0, 0);
    border: 0
}

.mob-menu .language__dropdown:after, .mob-menu .language__dropdown:before {
    display: none
}

.mob-menu .language__dropdown > li {
    margin-bottom: 30px
}

.mob-menu .language__dropdown > li:last-child {
    margin-bottom: 0
}

.mob-menu .language__dropdown > li > a {
    background: rgba(0, 0, 0, 0)
}

.mob-menu .language__dropdown-option span {
    color: #fff
}

.mob-menu .header__wrapper {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: center;
    align-items: center;
}

.mob-menu .profile-link span {
    color: #fff
}

.mob-menu .auth-link i {
    background: #fff
}

.mob-menu.active {
    opacity: 1;
    visibility: visible
}

.title {
    font-family: GolosText;
    font-weight: 700;
    font-size: 48px;
    line-height: 120%;
    margin-bottom: 48px
}

.title:last-child {
    margin-bottom: 0
}

.title span {
    text-transform: uppercase
}

.title_small {
    font-size: 22px !important;
    margin-bottom: 16px
}

.title_small:last-child {
    margin-bottom: 0
}

.title_semi {
    font-size: 28px !important;
    margin-bottom: 32px
}

.title_semi:last-child {
    margin-bottom: 0
}

.title_md-semi {
    font-size: 36px
}

.title_md {
    font-size: 40px
}

.title_red {
    color: var(--global-color)
}

.title_red span {
    color: #333
}

.title_thin {
    font-weight: 500
}

.subtitle {
    font-size: 22px;
    line-height: 125%;
    color: rgba(135, 143, 166, .8)
}

.subtitle_small {
    font-size: 18px;
    color: #878fa6
}

.title-wrapper {
    display: inline;
    margin-bottom: 48px
}

.title-wrapper:last-child {
    margin-bottom: 0
}

.title-wrapper img {
    width: 30px;
    height: 30px;
    margin-top: 11px;
    margin-left: 10px
}

.title-block .title {
    margin-bottom: 16px
}

.title-block .title:last-child {
    margin-bottom: 0
}

button {
    outline: 0;
    border: none;
    border-radius: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none
}

.btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 100px;
    height: 48px;
    padding: 15px;
    border-width: 1px;
    border-style: solid;
    font-weight: 800;
    font-size: 14px;
    text-align: center;
    letter-spacing: .095em;
    text-transform: uppercase;
    line-height: 130%;
    -webkit-transition: .3s cubic-bezier(.785, .135, .15, .86);
    -o-transition: .3s cubic-bezier(.785, .135, .15, .86);
    transition: .3s cubic-bezier(.785, .135, .15, .86)
}

.btn__icon {
    width: 24px;
    height: 24px;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    margin-right: 8px;
    background: #fff
}

.btn__icon_telegramm {
    width: 32px;
    height: 32px;
    background: url(/img/telegramm-icon.svg);
    background-repeat: no-repeat;
    background-position: 50%;
    background-size: 100% 100%;
    margin-right: 16px
}

.btn__icon_play {
    -webkit-mask-image: url(/img/play-icon.svg);
    mask-image: url(/img/play-icon.svg)
}

.btn__icon_download {
    -webkit-mask-image: url(/img/download-icon.svg);
    mask-image: url(/img/download-icon.svg)
}

.btn__icon_mat {
    -webkit-mask-image: url(/img/training-materials-icon.svg);
    mask-image: url(/img/training-materials-icon.svg)
}

.btn_red {
    background: var(--global-color);
    border-color: var(--global-color);
    color: #fff
}

.btn_red:hover {
    background: #bf2f1e;
    border-color: #bf2f1e
}

.btn_red:active {
    background: #8f2317;
    border-color: #8f2317
}

.btn_red-tr {
    background: rgba(0, 0, 0, 0);
    border-color: var(--global-color);
    color: var(--global-color)
}

.btn_red-tr-2 {
    border-color: #ed958a
}

.btn_red-tr-2, .btn_yellow-tr-2 {
    background: rgba(0, 0, 0, 0);
    color: #333
}

.btn_yellow-tr-2 {
    border-color: #ede38a
}

.btn_white {
    background: #fff;
    border-color: #fff;
    color: var(--global-color)
}

.btn_green {
    background: #87ceca;
    border-color: #87ceca;
    color: #fff
}

.btn_green:hover {
    background: #3e9792;
    border-color: #3e9792
}

.btn_green:active {
    background: #255b58;
    border-color: #255b58
}

.btn_green-no-hover {
    background: #87ceca;
    border-color: #87ceca;
    color: #fff
}

.btn_green-tr-2 {
    color: #333
}

.btn_green-tr, .btn_green-tr-2 {
    background: rgba(0, 0, 0, 0);
    border-color: #87ceca
}

.btn_green-tr {
    color: #87ceca
}
.btn_gray{
    background: #dcdfe7!important;
}
.btn_no-border {
    border-color: transparent
}

.btn_small {
    height: 32px;
    padding: 7px 5px;
    font-weight: 500;
    font-size: 14px;
    line-height: 125%;
    letter-spacing: normal;
    text-transform: none
}

.btn-block {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    overflow: hidden
}

.btn-block > .row {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin: -6.5px -2px
}

.btn-block > .row > .col {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    padding: 6.5px 2px
}

.btn-block_full-w > .row > .col {
    width: 100%
}

.btn-block-2 {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    overflow: hidden
}

.btn-block-2 > .row {
    margin: -12px -5px;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1
}

.btn-block-2 > .row > .col {
    padding: 12px 5px
}

.select {
    display: none
}

.select-mod {
    font-weight: 500;
    font-size: 18px;
    line-height: 130%
}

.select-mod, .select-styled {
    position: relative;
    color: #878fa6
}

.select-styled {
    height: 48px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 13px 34px 12px 24px;
    cursor: pointer;
    border: 1px solid #dcdfe7;
    background: #f5f6fa;
    border-radius: 100px;
    z-index: 4;
    -webkit-transition: .3s cubic-bezier(.785, .135, .15, .86);
    -o-transition: .3s cubic-bezier(.785, .135, .15, .86);
    transition: .3s cubic-bezier(.785, .135, .15, .86)
}

.select-styled:after {
    content: "";
    width: 16px;
    height: 16px;
    -webkit-mask-image: url(/img/down-arrow.svg);
    mask-image: url(/img/down-arrow.svg);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    background: var(--global-color);
    position: absolute;
    top: 0;
    bottom: 0;
    right: 16px;
    margin: auto
}

.select-styled.active + .select-wrapper {
    opacity: 1;
    visibility: visible
}

.select-styled.chose {
    color: #333 !important
}

.select-wrapper {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    margin-top: 16px;
    z-index: 5;
    border: 1px solid #dcdfe7;
    background: #fff;
    border-radius: 20px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: .35s cubic-bezier(.785, .135, .15, .86);
    -o-transition: .35s cubic-bezier(.785, .135, .15, .86);
    transition: .35s cubic-bezier(.785, .135, .15, .86)
}

.select-options {
    padding: 24px;
    overflow-y: auto;
    max-height: 250px;
}

.select-options li {
    cursor: pointer;
    margin-bottom: 16px;
    -webkit-transition: .3s cubic-bezier(.785, .135, .15, .86);
    -o-transition: .3s cubic-bezier(.785, .135, .15, .86);
    transition: .3s cubic-bezier(.785, .135, .15, .86)
}

.select-options li:last-child {
    margin-bottom: 0
}

.select-options li:hover {
    color: #333
}

.select-options li[rel=hide] {
    display: none
}

.checkbox {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-left: 40px;
    margin-bottom: 16px
}

.checkbox:last-child {
    margin-bottom: 0
}

.checkbox input {
    display: none !important
}

.checkbox input:checked ~ .checkbox__icon:after {
    opacity: 1;
    visibility: visible
}

.checkbox__icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 24px;
    height: 24px;
    border: 1px solid #dcdfe7
}

.checkbox__icon:after {
    content: "";
    -webkit-mask-image: url(/img/checkbox-checked-icon.svg);
    mask-image: url(/img/checkbox-checked-icon.svg);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    background: var(--global-color);
    width: 20.29px;
    height: 15.67px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: .3s cubic-bezier(.785, .135, .15, .86);
    -o-transition: .3s cubic-bezier(.785, .135, .15, .86);
    transition: .3s cubic-bezier(.785, .135, .15, .86)
}

.checkbox__icon_rounded {
    border-radius: 50%
}

.checkbox__icon_rounded:after {
    width: 16.29px;
    height: 11.67px
}

.checkbox p {
    font-size: 18px;
    line-height: 130%
}

.checkbox p span {
    color: #878fa6
}

.checkbox_style-2 {
    padding: 35px 35px 35px 80px;
    position: relative
}

.checkbox_style-2 .checkbox__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    border-radius: 10px;
    border: 1px solid #dcdfe7;
    z-index: 1;
    -webkit-transition: .3s cubic-bezier(.785, .135, .15, .86);
    -o-transition: .3s cubic-bezier(.785, .135, .15, .86);
    transition: .3s cubic-bezier(.785, .135, .15, .86)
}

.checkbox_style-2 .checkbox__icon {
    left: 35px;
    z-index: 2;
    border-color: #87ceca
}

.checkbox_style-2 .checkbox__icon:after {
    width: 13.33px;
    height: 10px;
    background: #87ceca
}

.checkbox_style-2 .checkbox__icon_rounded {
    border-color: #c1c5d1;
    -webkit-transition: border-color .3s cubic-bezier(.785, .135, .15, .86);
    -o-transition: border-color .3s cubic-bezier(.785, .135, .15, .86);
    transition: border-color .3s cubic-bezier(.785, .135, .15, .86)
}

.checkbox_style-2 .checkbox__icon_rounded:after {
    width: 16px;
    height: 16px;
    -webkit-mask-image: initial;
    mask-image: none;
    border-radius: 50%
}

.checkbox_style-2 p {
    position: relative;
    z-index: 2
}

.checkbox_style-2 input {
    display: none !important
}

.checkbox_style-2 input:checked ~ .checkbox__bg {
    border-color: #87ceca
}

.checkbox_style-2 input:checked ~ .checkbox__icon_rounded {
    width: 30px;
    height: 30px;
    border: 3px solid #87ceca
}

.checkbox_mistake .checkbox__bg, .checkbox_mistake .checkbox__icon {
    border-color: var(--global-color)
}

.checkbox_mistake .checkbox__icon:after {
    -webkit-mask-image: url(/img/checkbox-mistake-icon.svg);
    mask-image: url(/img/checkbox-mistake-icon.svg);
    width: 13.33px;
    height: 10px;
    opacity: 1;
    visibility: visible;
    background: var(--global-color)
}

.checkbox_mistake .checkbox__icon_rounded {
    border: 0
}

.checkbox_mistake .checkbox__icon_rounded:after {
    width: 100%;
    height: 100%;
    -webkit-mask-image: url(/img/close-icon.svg);
    mask-image: url(/img/close-icon.svg)
}

.checkbox_success .checkbox__bg, .checkbox_success .checkbox__icon {
    border-color: #b4e66e
}

.checkbox_success .checkbox__icon:after {
    opacity: 1;
    visibility: visible;
    background: #b4e66e
}

.checkbox_success .checkbox__icon_rounded {
    border: 0;
    background: #b4e66e
}

.checkbox_success .checkbox__icon_rounded:after {
    -webkit-mask-image: url(/img/checkbox-checked-icon.svg);
    mask-image: url(/img/checkbox-checked-icon.svg);
    width: 13.33px;
    height: 10px;
    background: #fff;
    border-radius: initial
}

.change-password-type {
    position: relative;
    width: 100%
}

.change-password-type.show .change-password-type__triger:before {
    opacity: 0;
    visibility: hidden
}

.change-password-type.show .change-password-type__triger:after {
    opacity: 1;
    visibility: visible
}

.change-password-type__triger {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 20px;
    margin: auto;
    width: 20px;
    height: 20px
}

.change-password-type__triger:after, .change-password-type__triger:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat !important;
    background-position: 50% !important;
    background-size: 100% 100% !important;
    -webkit-transition: .3s cubic-bezier(.785, .135, .15, .86);
    -o-transition: .3s cubic-bezier(.785, .135, .15, .86);
    transition: .3s cubic-bezier(.785, .135, .15, .86)
}

.change-password-type__triger:before {
    background-image: url(/img/show-password-icon.svg)
}

.change-password-type__triger:after {
    background-image: url(/img/hide-password-icon.svg);
    opacity: 0;
    visibility: hidden
}

.form input, .form textarea {
    font-size: 18px;
    font-weight: 500;
    line-height: 125%;
    color: #333;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    outline: 0;
    border: 1px solid #dcdfe7;
    border-radius: 100px;
    padding-left: 24px;
    padding-right: 24px;
    background: #f5f6fa;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    -webkit-transition: .3s cubic-bezier(.785, .135, .15, .86);
    -o-transition: .3s cubic-bezier(.785, .135, .15, .86);
    transition: .3s cubic-bezier(.785, .135, .15, .86)
}

.form input:-webkit-autofill, .form textarea:-webkit-autofill {
    -webkit-text-fill-color: #333;
    -webkit-box-shadow: inset 0 0 0 50px #f5f6fa !important
}

.form input:disabled, .form textarea:disabled {
    color: #c1c5d1
}

.form input {
    height: 48px
}

.form__label {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    cursor: text
}

.form__label.require .form__label-title {
    position: relative
}

.form__label.require .form__label-title:before {
    content: "";
    position: absolute;
    top: 2px;
    left: 8px;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--global-color)
}

.form__label_error {
    position: relative
}

.form__label_error input {
    border-color: var(--global-color)
}

.form__label_error input:disabled {
    border-color: #dcdfe7
}

.form__label_error .form__label-wrapper i {
    opacity: 1;
    visibility: visible
}

.form__label_error .form__error {
    opacity: 1;
    visibility: visible;
    max-height: 9999px
}

.form__label-wrapper {
    width: 100%;
    position: relative
}

.form__label-wrapper i {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 20px;
    margin: auto;
    width: 20px;
    height: 20px;
    background: url(/img/error-icon.svg);
    background-repeat: no-repeat;
    background-position: 50%;
    background-size: 100% 100%;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: .3s cubic-bezier(.785, .135, .15, .86);
    -o-transition: .3s cubic-bezier(.785, .135, .15, .86);
    transition: .3s cubic-bezier(.785, .135, .15, .86)
}

.form__label-title {
    display: block;
    font-size: 14px;
    line-height: 130%;
    color: #878fa6;
    margin-bottom: 8px;
    text-transform: uppercase
}

.form__error, .form__label-title {
    font-weight: 700;
    font-size: 12px;
    padding-left: 20px
}

.form__error {
    color: var(--global-color);
    line-height: 125%;
    margin-top: 8px;
    opacity: 0;
    visibility: hidden;
    max-height: 0;
    overflow: hidden;
    -webkit-transition: .3s cubic-bezier(.785, .135, .15, .86);
    -o-transition: .3s cubic-bezier(.785, .135, .15, .86);
    transition: .3s cubic-bezier(.785, .135, .15, .86)
}

.form__error:first-child {
    margin-top: 0
}

.form__error_big {
    font-size: 14px;
    font-weight: 800;
    line-height: 125%;
    letter-spacing: .095em;
    text-transform: uppercase;
    margin-top: 16px
}

.form__error_big:first-child {
    margin-top: 0
}

.form__error_white {
    position: absolute;
    top: 8px;
    left: 100%;
    margin-left: 19px;
    background: #fff;
    padding: 21px 9px 21px 41px;
    border-radius: 20px;
    width: 225px;
    font-weight: 400;
    font-size: 12px;
    line-height: 125%;
    color: #333
}

.form__error_white:before {
    content: "";
    position: absolute;
    top: 28px;
    left: 9px;
    width: 24px;
    height: 1px;
    background: #333
}

.slick-slider {
    position: relative
}

.slick-slider .slick-next, .slick-slider .slick-prev, .slick-slider .slick-slide a {
    outline: 0;
    cursor: pointer
}

.slick-slider .slick-slide, .slick-slider .slick-slide > div > a, .slick-slider .slick-slide > div > div {
    outline: 0
}

.slick-slider .slick-slide img {
    display: block;
    width: 100%
}

.slick-slider .slick-wrapper {
    overflow: hidden
}

.slick-slider .slick-next, .slick-slider .slick-prev, .slick-slider .slick-track {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.slick-slider .slick-next, .slick-slider .slick-prev {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 30px;
    height: 30px;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    cursor: pointer;
    z-index: 1000
}

.slick-slider .slick-next i, .slick-slider .slick-prev i {
    width: 100%;
    height: 100%;
    -webkit-mask-image: url(/img/left-arrow.svg);
    mask-image: url(/img/left-arrow.svg);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-position: center;
    mask-position: center;
    background: #333
}

.slick-slider .slick-prev {
    left: 0
}

.slick-slider .slick-next {
    right: 0
}

.slick-slider .slick-next i {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg)
}

.slick-slider .slick-dots {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    z-index: 1000;
    margin-top: 30px
}

.slick-slider .slick-dots li {
    width: 12px;
    height: 12px;
    padding: 2px;
    margin-right: 8px;
    cursor: pointer
}

.slick-slider .slick-dots li:last-child {
    margin-right: 0
}

.slick-slider .slick-dots li:before {
    content: "";
    display: block;
    width: 100%;
    height: 100%
}

.slick-slider .slick-dots li.slick-active {
    padding: 0
}

.slick-slider .slick-dots button {
    display: none
}

.mentors {
    text-align: center;
    background: #fff;
    border-radius: 20px;
    padding-top: 110px;
    padding-bottom: 110px
}

.mentors__slider {
    padding-top: 48px;
    padding-bottom: 48px;
    border-top: 1px solid #dcdfe7;
    border-bottom: 1px solid #dcdfe7
}

.mentors .slick-list {
    margin: -24px -55px
}

.mentors .slick-slide {
    padding: 24px 55px;
    border-right: 1px solid #dcdfe7
}

.mentors .slick-slide > div {
    height: 100%
}

.mentors__item {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.mentors__img {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border-radius: 20px;
    overflow: hidden;
    width: 100%;
    max-width: 330px;
    margin-bottom: 52px
}

.mentors__img:last-child {
    margin-bottom: 0
}

.mentors__img img {
    width: 100%
}

.mentors__content ul li {
    position: relative;
    padding-left: 26px;
    margin-bottom: 24px
}

.mentors__content ul li:last-child {
    margin-bottom: 0
}

.mentors__content ul li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 10px;
    height: 10px;
    background: var(--global-color);
    border-radius: 50%
}

.mentors__info .title, .mentors__info p {
    margin-bottom: 8px;
    line-height: 125%
}

.mentors__info .title:last-child, .mentors__info p:last-child {
    margin-bottom: 0
}

.mentors__profession {
    font-weight: 700;
    color: #87ceca
}

.mentors__work-place {
    color: #878fa6
}

.mentors_one-person .mentors__items {
    max-width: 1468px;
    margin-left: auto;
    margin-right: auto
}

.mentors_one-person .mentors__items > .row > .col {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.mentors_one-person .mentors__img {
    max-width: 581px
}

.mentors_one-person .mentors__content {
    text-align: left;
    max-width: 800px;
    margin-left: auto
}

.mentors_one-person .mentors__info {
    padding: 32px 47px;
    border-radius: 20px;
    border: 1px solid #87ceca;
    margin-bottom: 32px
}

.mentors_one-person .mentors__info:last-child {
    margin-bottom: 0
}

.student-feedback {
    position: relative;
    padding-top: 80px
}

.student-feedback:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 63.36%;
    background: #87ceca;
    z-index: 1
}

.student-feedback__content {
    position: relative;
    z-index: 2
}

.student-feedback__slider, .student-feedback__title-block {
    padding-left: 86px;
    padding-right: 86px
}

.student-feedback__slider {
    position: relative;
    display: none
}

.student-feedback__slider.slick-initialized {
    display: block
}

.student-feedback__slider .slick-list {
    margin-left: -12px;
    margin-right: -12px
}

.student-feedback__slider .slick-slide {
    padding-left: 12px;
    padding-right: 12px
}

.student-feedback__slider .slick-slide > div {
    height: 100%
}

.student-feedback__title-block {
    color: #fff;
    margin-bottom: 42px
}

.student-feedback__title-block:last-child {
    margin-bottom: 0
}

.student-feedback__title-block .title {
    color: #fff;
    text-align: center;
    margin-bottom: 24px
}

.student-feedback__title-block .title:last-child {
    margin-bottom: 0
}

.student-feedback__title-block p {
    text-align: center
}

.student-feedback__head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 32px
}

.student-feedback__head:last-child {
    margin-bottom: 0
}

.student-feedback__item {
    height: 100%;
    background: #fff;
    border-radius: 20px;
    border: 1px solid #dcdfe7;
    padding: 56px 32px
}

.student-feedback__avatar {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 20px
}

.student-feedback__avatar:last-child {
    margin-right: 0
}

.student-feedback__name {
    font-weight: 700;
    line-height: 125%
}

.student-feedback__profession {
    color: #87ceca;
    line-height: 125%
}

.student-feedback .stars {
    margin-bottom: 16px
}

.student-feedback .stars:last-child {
    margin-bottom: 0
}

.student-feedback__item-content {
    margin-bottom: 16px;
    max-width: 430px
}

.student-feedback__item-content p {
    line-height: 169%
}

.student-feedback__read-more {
    font-weight: 800;
    font-size: 14px;
    line-height: 125%;
    letter-spacing: .095em;
    text-transform: uppercase;
    color: #878fa6
}

.partners {
    position: relative;
    background: #87ceca;
    padding-top: 80px;
    padding-bottom: 110px
}
.partners.mt-110{
    margin-bottom: 0;
}

.partners:before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    background: #333a4a;
    height: 37.12%;
    z-index: 1
}

.partners .title {
    color: #fff;
    text-align: center
}

.partners__slider {
    position: relative;
    z-index: 2
}

.partners .slick-list {
    margin: -16px
}

.partners .slick-slide > div {
    height: 100%;
    padding: 16px
}

.partners__img {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    border-radius: 8px;
    overflow: hidden
}

.partners__img img {
    width: 100%
}

body, html {
    overflow-x: hidden;
    overflow-y: auto;
    height: 100%
}

body {
    font-family: Geometria;
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 167%;
    color: #333;
    background: #f8f7fc;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
}

.main-content {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1
}

.logo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 60px
}

.logo img {
    width: 100%
}

.logo_md {
    width: 73px
}

.logo_big {
    width: 82px
}

.main-nav ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.main-nav ul li {
    margin-right: 80px
}

.main-nav ul li:last-child {
    margin-right: 0
}

.main-nav ul li.current a {
    font-weight: 700;
    color: #333
}

.main-nav ul li a {
    color: #878fa6
}

.content-top-nav {
    margin-bottom: 50px
}

.content-top-nav:last-child {
    margin-bottom: 0
}

.content-top-nav__triger {
    height: 48px;
    display: none;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    padding: 13px 34px 12px 24px;
    cursor: pointer;
    border: 1px solid #dcdfe7;
    background: #f5f6fa;
    border-radius: 100px;
    font-weight: 500;
    font-size: 18px;
    color: #333;
    z-index: 4;
    -webkit-transition: .3s cubic-bezier(.785, .135, .15, .86);
    -o-transition: .3s cubic-bezier(.785, .135, .15, .86);
    transition: .3s cubic-bezier(.785, .135, .15, .86)
}

.content-top-nav__triger:after {
    content: "";
    width: 16px;
    height: 16px;
    -webkit-mask-image: url(/img/down-arrow.svg);
    mask-image: url(/img/down-arrow.svg);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    background: var(--global-color);
    position: absolute;
    top: 0;
    bottom: 0;
    right: 16px;
    margin: auto
}

.content-top-nav__dropdown {
    border-bottom: 1px solid #c1c5d1
}

.content-top-nav ul {
    margin: -16px
}

.content-top-nav ul, .content-top-nav ul li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.content-top-nav ul li {
    font-size: 18px;
    font-weight: 700;
    padding: 16px;
    width: 28.6666%
}

.content-top-nav ul li:last-child {
    margin-right: 0;
    width: 14%
}

.content-top-nav ul li a {
    position: relative;
    padding-bottom: 8px;
    color: #878fa6
}

.content-top-nav ul li a:after {
    content: "";
    position: absolute;
    top: 100%;
    margin-top: -1.5px;
    left: 0;
    right: 0;
    height: 3px;
    border-radius: 10px;
    background: var(--global-color);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: .3s cubic-bezier(.785, .135, .15, .86);
    -o-transition: .3s cubic-bezier(.785, .135, .15, .86);
    transition: .3s cubic-bezier(.785, .135, .15, .86)
}

.content-top-nav ul li.current a {
    color: #333
}

.content-top-nav ul li.current a:after {
    opacity: 1;
    visibility: visible
}

.all-events__content {
    height: 100%
}

.all-events__filters-triger {
    border-radius: 100px;
    height: 48px;
    display: none;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    background: #fff;
    padding: 12px 16px 12px 23px;
    font-weight: 500;
    font-size: 18px;
    line-height: 125%;
    color: #333;
    -webkit-transition: .3s cubic-bezier(.785, .135, .15, .86);
    -o-transition: .3s cubic-bezier(.785, .135, .15, .86);
    transition: .3s cubic-bezier(.785, .135, .15, .86)
}

.all-events__filters-triger.active {
    background: rgba(0, 0, 0, 0);
    padding-left: 0;
    padding-right: 0
}

.all-events__filters-triger i {
    background: url(/img/filters-triger-icon.svg);
    background-repeat: no-repeat;
    background-position: 50%;
    background-size: 100% 100%;
    width: 24px;
    height: 24px
}

.all-events__filters {
    margin-top: -48px
}

.all-events__filters_rounded {
    margin-top: 0
}

.all-events__filters_rounded .all-events__filters-items {
    border-radius: 20px;
    padding-top: 48px;
    padding-bottom: 67px
}

.all-events__filters-items {
    border-radius: 0 0 20px 20px;
    background: #fff;
    padding: 41px 32px 45px
}

.all-events__filters-item {
    margin-bottom: 48px
}

.all-events__filters-item:last-child {
    margin-bottom: 0
}

.all-events__filters-item > .title {
    margin-bottom: 24px
}

.all-events__filters-item > .title:last-child {
    margin-bottom: 0
}

.all-events-page .top-block__img {
    max-width: 764px;
    margin-right: 0
}

.all-events-page__content {
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
}

.all-events-page-continues .top-block {
    padding-top: 95px;
    padding-bottom: 146px
}

.all-events-page-continues .top-block__content {
    padding: 0 0 0 145px
}

.all-events-page-continues .top-block__content .top-block-items {
    padding-top: 24px;
    border-top: 1px solid rgba(51, 51, 51, .1);
    max-width: 526px
}

.all-events-page-continues .top-block__content .top-block-items__item-title {
    color: #333
}

.all-events-page-continues .top-block__content .top-block__head {
    margin-bottom: 80px
}

.all-events-page-continues .top-block__content .top-block__head:last-child {
    margin-bottom: 0
}

.all-events-page-continues .rounded-block {
    max-width: 542px
}

.info-item {
    border-radius: 20px;
    overflow: hidden
}

.info-item__img {
    position: relative;
    width: 100%
}

.info-item__img img {
    display: block;
    width: 100%
}

.info-item__sticker {
    position: absolute;
    left: 0;
    top: 32px;
    background: #87ceca;
    border-radius: 0 100px 100px 0;
    padding: 7px 31px 7px 22px;
    font-weight: 800;
    font-size: 14px;
    line-height: 125%;
    letter-spacing: .095em;
    text-transform: uppercase;
    color: #fff
}

.info-item__content {
    background: #fff;
    padding: 22px 24px 32px
}

.info-item__content .title-block {
    margin-bottom: 24px
}

.info-item__content .title-block:last-child {
    margin-bottom: 0
}

.info-item__content-head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 24px
}

.info-item__content-head:last-child {
    margin-bottom: 0
}

.info-item__content-head .text-w-icon {
    margin-top: 10px
}

.info-item__content-head-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.info-item__content-head-wrapper .text-w-icon {
    margin-right: 32px
}

.info-item__content-head-wrapper .text-w-icon:last-child {
    margin-right: 0
}

.info-item__options {
    margin-bottom: 24px
}

.info-item__options:last-child {
    margin-bottom: 0
}

.info-item__options > .row {
    margin: -2px
}

.info-item__options > .row > .col {
    padding: 2px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.info-item__options .btn {
    cursor: auto;
    width: 100%
}

.info-item__reg-link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    font-weight: 700;
    font-size: 14px;
    line-height: 125%;
    color: #878fa6
}

.info-item__reg-link span {
    color: var(--global-color)
}

.info-item .btn-block .btn {
    min-width: 208px
}

.not-found-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
    height: 100%;
    margin: 158px auto auto
}

.not-found-item__icon {
    width: 100px;
    height: 100px;
    background: url(/img/not-found-icon.svg);
    background-repeat: no-repeat;
    background-position: 50%;
    background-size: 100% 100% !important;
    margin-bottom: 44px
}

.not-found-item__icon:last-child {
    margin-bottom: 0
}

.not-found-item p {
    font-size: 22px;
    line-height: 130%;
    color: #000;
    margin-bottom: 48px
}

.not-found-item p:last-child {
    margin-bottom: 0
}

.not-found-item .btn {
    width: 100%;
    max-width: 298px
}

.go-back-link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 15px;
    padding-left: 4px;
    font-weight: 700;
    font-size: 12px;
    line-height: 125%;
    text-transform: uppercase;
    color: #878fa6
}

.go-back-link:last-child {
    margin-bottom: 0
}

.go-back-link i {
    width: 16px;
    height: 14px;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    background: #878fa6;
    -webkit-mask-image: url(/img/go-back-icon.svg);
    mask-image: url(/img/go-back-icon.svg);
    margin-right: 15px
}

.go-back-link i:last-child {
    margin-right: 0
}

.go-back-link_big {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 18px;
    font-weight: 400;
    color: #333;
    text-transform: none;
    margin-bottom: 44px
}

.go-back-link_big:last-child {
    margin-bottom: 0
}

.go-back-link_big i {
    -webkit-mask-image: url(/img/left-arrow.svg);
    mask-image: url(/img/left-arrow.svg);
    background: #333;
    width: 30px;
    height: 30px
}

.go-back-link_big i:last-child {
    margin-right: 0
}

.text-w-icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 14px;
    line-height: 130%;
    font-weight: 500;
    margin-top: 1px;
    color: #333
}

.text-w-icon__icon {
    width: 16px;
    height: 16px;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    background: #333;
    margin-right: 17px
}

.text-w-icon__icon:last-child {
    margin-right: 0
}

.text-w-icon__icon_date {
    -webkit-mask-image: url(/img/calendar-icon.svg);
    mask-image: url(/img/calendar-icon.svg)
}

.text-w-icon__icon_book {
    -webkit-mask-image: url(/img/book-icon.svg);
    mask-image: url(/img/book-icon.svg)
}

.text-w-icon__icon_time {
    -webkit-mask-image: url(/img/time-icon.svg);
    mask-image: url(/img/time-icon.svg)
}

.text-w-icon__icon_map {
    -webkit-mask-image: url(/img/map-icon.svg);
    mask-image: url(/img/map-icon.svg)
}

.text-w-icon__icon_doctor {
    -webkit-mask-image: url(/img/doctor-icon.svg);
    mask-image: url(/img/doctor-icon.svg)
}

.text-w-icon__icon_check {
    -webkit-mask-image: url(/img/checked-text-icon.svg);
    mask-image: url(/img/checked-text-icon.svg)
}

.text-w-icon__icon_no-check {
    -webkit-mask-image: url(/img/no-check-icon.svg);
    mask-image: url(/img/no-check-icon.svg)
}

.text-w-icon_red {
    color: var(--global-color)
}

.text-w-icon_red .text-w-icon__icon {
    background: var(--global-color)
}

.text-w-icon_green {
    color: #87ceca
}

.text-w-icon_green .text-w-icon__icon {
    background: #87ceca
}

.text-w-icon_grey {
    color: #878fa6
}

.text-w-icon_grey .text-w-icon__icon {
    background: #878fa6
}

.add-to-wishlist {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.add-to-wishlist i {
    -webkit-mask-image: url(/img/star-icon.svg);
    mask-image: url(/img/star-icon.svg);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    background: #878fa6;
    height: 23.96px;
    width: 24px
}

.pagination {
    margin-left: auto;
    margin-right: auto;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-top: 64px
}

.pagination, .pagination__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.pagination__list {
    margin-left: 48px;
    margin-right: 48px
}

.pagination__list li {
    margin-right: 30px
}

.pagination__list li:last-child {
    margin-right: 0
}

.pagination__list li a {
    font-weight: 800;
    font-size: 18px;
    line-height: 130%;
    color: #878fa6
}

.pagination__list li.current a {
    color: var(--global-color)
}

.pagination__arrow-icon {
    display: block;
    -webkit-mask-image: url(/img/left-arrow.svg);
    mask-image: url(/img/left-arrow.svg);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    background: #878fa6;
    height: 30px;
    width: 30px
}

.pagination__arrow-icon_next {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg)
}

.contact-links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.contact-links li {
    margin-right: 40px
}

.contact-links li:last-child {
    margin-right: 0
}

.contact-links a, .contact-links p {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.contact-links a span, .contact-links p span {
    font-weight: 500;
    font-size: 16px;
    line-height: 130%;
    color: #c1c5d1;
    text-transform: uppercase
}

.contact-links__icon {
    background-repeat: no-repeat;
    background-position: 50%;
    background-size: 100% 100% !important;
    width: 16px;
    height: 16px;
    margin-right: 8px
}

.contact-links__icon:last-child {
    margin-right: 0
}

.contact-links__icon_map {
    background: url(/img/map-icon.svg)
}

.contact-links__icon_phone {
    background: url(/img/phone-icon.svg)
}

.contact-links__icon_email {
    background: url(/img/email-icon.svg)
}

.social {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.social li {
    margin-right: 16px
}

.social li:last-child {
    margin-right: 0
}

.social li a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.social__icon {
    background-repeat: no-repeat;
    background-position: 50%;
    background-size: 100% 100% !important;
    width: 32px;
    height: 32px
}

.social__icon_telegramm {
    background: url(/img/telegramm-icon.svg)
}

.social__icon_facebook {
    background: url(/img/facebook-icon.svg)
}

.social__icon_instagramm {
    background: url(/img/instagramm-icon.svg)
}

.social__icon_youtube {
    background: url(/img/youtube-icon.svg)
}

.profile .form .toast {
    margin-bottom: 48px;
    text-align: center;
    padding: 32px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.profile .form .toast:last-child {
    margin-bottom: 0
}

.profile .form .toast__content {
    max-width: 826px;
    padding-left: 32px;
    padding-right: 32px
}

.profile .form .toast__text {
    font-size: 22px;
    line-height: 136%
}

.profile__items > .row {
    margin: -28px
}

.profile__items > .row > .col {
    padding: 28px
}

.profile__item {
    background: #fff;
    border-radius: 20px;
    padding: 48px 32px
}

.profile__item_big {
    padding-left: 64px;
    padding-right: 64px
}

.profile__item_big > .title {
    margin-bottom: 48px
}

.profile__item_big > .title:last-child {
    margin-bottom: 0
}

.profile__item-wrapper {
    margin-bottom: 64px
}

.profile__item-wrapper:last-child {
    margin-bottom: 0
}

.profile__item-wrapper > .row {
    margin: -12px -50px
}

.profile__item-wrapper > .row > .col {
    padding: 12px 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end
}

.profile__btn-block, .profile__item-wrapper > .row > .col {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
}

.profile__btn-block {
    margin-top: 48px
}

.profile__btn-block:first-child {
    margin-top: 0
}

.profile__btn-block .btn {
    width: 100%;
    margin-bottom: 17px
}

.profile__btn-block .btn:last-child {
    margin-bottom: 0
}

.profile_lavels .profile__item {
    border-radius: 20px 20px 0 0;
    padding-bottom: 99px
}

.profile_lavels .faq__answer .faq__content {
    background: #f8f7fc
}

.profile_lavels .faq__answer .faq__content:before {
    content: "";
    display: block;
    width: 0;
    height: 0;
    -moz-transform: scale(.9999);
    border-color: transparent transparent transparent #f8f7fc;
    border-style: solid;
    border-width: 13px 0 13px 25px
}

.profile-cart__head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    margin-bottom: 32px
}

.profile-cart__head:last-child {
    margin-bottom: 0
}

.profile-cart__avatar {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    border: 1px solid #dcdfe7;
    overflow: hidden;
    margin-right: 44px
}

.profile-cart__avatar:last-child {
    margin-right: 0
}

.profile-cart__avatar img {
    width: 100%
}

.profile-cart__info {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    width: calc(100% - 184px)
}

.profile-cart__info, .profile-cart__info-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.profile-cart__info-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center
}

.profile-cart__info-inner .btn {
    margin-bottom: 16px;
    padding-left: 40px;
    padding-right: 40px;
    cursor: auto
}

.profile-cart__info-inner .btn:last-child {
    margin-bottom: 0
}

.profile-cart__info-inner p {
    width: 100%;
    font-weight: 700;
    font-size: 18px;
    line-height: 135%;
    color: #878fa6
}

.edit-avatar__content {
    text-align: left;
    width: 100%
}

.edit-avatar__content input {
    display: none
}

.edit-avatar__triger {
    font-weight: 700;
    font-size: 12px;
    line-height: 125%;
    text-transform: uppercase;
    color: #87ceca
}

.edit-avatar__info {
    position: relative;
    padding-bottom: 8px;
    padding-right: 25px;
    border-bottom: 1px solid rgba(220, 223, 231, .4);
    font-size: 12px;
    line-height: 125%;
    color: #878fa6;
    display: none
}

.edit-avatar__delite {
    position: absolute;
    top: 0;
    right: 0;
    width: 15px;
    height: 15px;
    background: url(/img/delite-icon.svg);
    background-repeat: no-repeat;
    background-position: 50%;
    background-size: 100% 100%
}

.auth {
    height: 100%;
    position: relative;
    background: #fff
}

.auth, .auth__items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.auth__items {
    overflow: hidden
}

.auth__items > .row {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1
}

.auth__items > .row > .col {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    height: 100%
}

.auth__img, .auth__items > .row > .col {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.auth__img {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    padding-right: 0 !important
}

.auth__img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center
}

.auth__content {
    position: relative;
    padding: 20px 0 37px;
    max-width: 440px;
    z-index: 2
}

.auth__content .logo {
    margin-bottom: 57px
}

.auth__content .logo:last-child {
    margin-bottom: 0
}

.auth__content .form__label_error input {
    border-color: #dcdfe7
}

.auth__content .form .btn-block {
    margin-top: 48px
}

.auth__content .form .btn-block:first-child {
    margin-top: 0
}

.auth__content .form .btn {
    width: 100%
}

.auth__bottom {
    margin-top: 32px
}

.auth__bottom:first-child {
    margin-top: 0
}

.auth__bottom p {
    font-size: 12px;
    line-height: 125%;
    margin-bottom: 48px
}

.auth__bottom p:last-child {
    margin-bottom: 0
}

.auth__bottom p a {
    color: #0092da;
    text-decoration: underline
}

.auth__bottom p:first-child {
    font-size: 18px;
    text-align: center
}

.auth__bottom p:first-child a {
    text-decoration: none
}

.google-block {
    margin-bottom: 39px
}

.google-block:last-child {
    margin-bottom: 0
}

.google-block p {
    font-size: 14px;
    line-height: 130%;
    color: #878fa6;
    letter-spacing: .095em;
    text-transform: uppercase;
    margin-bottom: 16px
}

.google-block p:last-child {
    margin-bottom: 0
}

.google-block__icon {
    margin-left: auto;
    margin-right: auto;
    width: 60px;
    height: 60px;
    border: 1px solid #dcdfe7;
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: 24px
}

.google-block__icon:last-child {
    margin-bottom: 0
}

.google-block__icon i {
    background-repeat: no-repeat;
    background-position: 50%;
    background-size: 100% 100% !important;
    background: url(/img/google-icon.svg);
    width: 48.3%;
    height: 48.3%
}

.google-block__ore-block {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.google-block__ore-block:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    height: 1px;
    background-color: #dcdfe7;
    margin: auto
}

.google-block__ore-block p {
    padding: 0 48px;
    background: #fff;
    position: relative;
    z-index: 2
}

.google-block_center > p {
    text-align: center;
    font-size: 22px;
    line-height: 114%;
    color: #333;
    text-transform: none
}

.show-more {
    margin-top: 66px;
    margin-left: auto;
    margin-right: auto;
    max-width: 446px
}

.show-more:first-child {
    margin-top: 0
}

.page-404 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    background: #fdf2f0
}

.page-404, .page-404 .container {
    height: 100%
}

.page-404 .container > .row {
    height: 100%;
    margin-top: 0;
    margin-bottom: 0
}

.page-404 .container > .row > .col, .page-404__content {
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
}

.page-404__content {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.page-404__content .btn {
    max-width: 334px
}

.page-404__bg {
    margin-top: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: -10px
}

.page-404__bg img {
    width: 100%
}

.stars {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.stars li {
    width: 16px;
    height: 16px;
    margin-right: 6.4px
}

.stars li:last-child {
    margin-right: 0
}

.stars li i {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    height: 100%;
    background: url(/img/star-icon-full.svg);
    background-repeat: no-repeat;
    background-position: 50%;
    background-size: 100% 100%
}

.faq {
    max-width: 1036px;
    margin-left: auto;
    margin-right: auto
}

.faq > .title {
    text-align: center
}

.faq__item {
    margin-bottom: 40px
}

.faq__item:last-child {
    margin-bottom: 0
}

.faq__answer, .faq__question {
    margin-bottom: 16px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.faq__answer:last-child, .faq__question:last-child {
    margin-bottom: 0
}

.faq__question {
    max-width: 570px
}

.faq__question .faq__avatar {
    margin-right: 16px
}

.faq__question .faq__avatar:last-child {
    margin-right: 0
}

.faq__question .faq__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    background: var(--global-color);
    color: #fff;
    font-weight: 700;
    line-height: 125%;
    margin-left: 25px;
    padding: 28px 40px 29px
}

.faq__question .faq__content:before {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 100%;
    margin: auto;
    content: "";
    display: block;
    width: 0;
    height: 0;
    -moz-transform: scale(.9999);
    border-color: transparent var(--global-color) transparent transparent;
    border-style: solid;
    border-width: 13px 25px 13px 0
}

.faq__question .faq__content i {
    width: 22px;
    height: 22px;
    background: url(/img/question-icon.svg);
    background-repeat: no-repeat;
    background-position: 50%;
    background-size: 100% 100%;
    margin-top: 2px;
    margin-right: 16px
}

.faq__question .faq__content i:last-child {
    margin-right: 0
}

.faq__question .faq__content p {
    width: calc(100% - 38px)
}

.faq__answer {
    margin-left: auto;
    max-width: 768px;
    width: 100%
}

.faq__answer .faq__avatar {
    margin-left: 16px
}

.faq__answer .faq__avatar:first-child {
    margin-left: 0
}

.faq__answer .faq__content {
    background: #fff;
    line-height: 30px;
    margin-right: 25px;
    padding: 33px 9px 32px 32px
}

.faq__answer .faq__content:before {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 100%;
    margin: auto;
    content: "";
    display: block;
    width: 0;
    height: 0;
    -moz-transform: scale(.9999);
    border-color: transparent transparent transparent #fff;
    border-style: solid;
    border-width: 13px 0 13px 25px
}

.faq__answer .faq__content a {
    font-weight: 500;
    -webkit-text-decoration-line: underline;
    text-decoration-line: underline;
    color: #333
}

.faq__avatar {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden
}

.faq__content {
    position: relative;
    width: calc(100% - 111px);
    border-radius: 12px
}

.joint-development > .row {
    margin-top: -12px;
    margin-bottom: -12px
}

.joint-development > .row > .col {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding-top: 12px;
    padding-bottom: 12px
}

.joint-development__images {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    max-width: 917px;
    margin-left: 14px;
    height: 100%
}

.joint-development__images .row {
    margin: -8px
}

.joint-development__images .row .col {
    padding: 8px
}

.joint-development__images > .row > .col:first-child {
    width: 52.412%
}

.joint-development__images > .row > .col:nth-child(2) {
    width: 47.588%
}

.joint-development__images > .row > .col > .row {
    height: calc(100% + 16px)
}

.joint-development__images > .row > .col > .row > .col {
    height: 50%
}

.joint-development__img {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
    border-radius: 10px;
    overflow: hidden
}

.joint-development__img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center
}

.joint-development__content .title {
    margin-bottom: 32px
}

.joint-development__content .title:last-child {
    margin-bottom: 0
}

.joint-development__content .counters {
    margin-bottom: 48px
}

.joint-development__content .counters:last-child {
    margin-bottom: 0
}

.joint-development__content .btn {
    max-width: 478px
}

.joint-development__text {
    line-height: 167%;
    margin-bottom: 48px;
    max-width: 568px
}

.joint-development__text:last-child {
    margin-bottom: 0
}

.top-block__pages .top-block__content .text_3 {
    margin-bottom: 48px
}

.top-block__pages .top-block__content .btn {
    max-width: 478px
}

.counters > .row > .col {
    width: 33.333333%
}

.counters__counter {
    font-weight: 700;
    font-size: 40px;
    line-height: 75%;
    color: var(--global-color);
    margin-bottom: 20px
}

.counters__counter:last-child {
    margin-bottom: 0
}

.counters__title {
    font-weight: 500;
    font-size: 22px;
    line-height: 136%;
    color: #878fa6
}

.top-block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    position: relative
}

.top-block .container {
    position: relative;
    z-index: 2
}

.top-block__items, .top-block__items > .row > .col {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
}

.top-block__content {
    padding: 49px 0;
    margin-top: auto;
    margin-bottom: auto
}

.top-block__content > p {
    line-height: 167%;
    max-width: 717px
}

.top-block__content > .btn {
    max-width: 478px
}

.top-block__head {
    margin-bottom: 48px
}

.top-block__head:last-child {
    margin-bottom: 0
}

.top-block__head .btn {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    cursor: auto;
    padding-left: 23px;
    padding-right: 23px;
    margin-bottom: 16px
}

.top-block__head .btn:last-child {
    margin-bottom: 0
}

.top-block__head .title-block > .title {
    margin-bottom: 23px
}

.top-block__head .title-block > .title:last-child {
    margin-bottom: 0
}

.top-block__head .title-block > p {
    font-size: 22px;
    line-height: 125%;
    color: #c1c5d1
}

.top-block__img {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    max-width: 854px;
    margin-left: auto;
    margin-right: auto;
    margin-top: auto;
    padding-top: 49px
}

.top-block__img img {
    width: 100%
}

.top-block .rounded-block {
    margin-top: auto;
    margin-bottom: auto
}

.top-block .checked-items, .top-block .top-block-info {
    max-width: 573px
}

.top-block__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url(/img/top-block-bg-1.svg);
    background-repeat: no-repeat;
    background-position: 50%;
    background-size: cover;
    z-index: 1
}

.top-block__bg_2 {
    background-image: url(/img/top-block-bg-2.svg)
}

.top-block__bg_3 {
    background-image: url(/img/top-block-bg-3.svg)
}

.top-block_pink {
    background: #fdf2f0
}

.top-block_white {
    background: #fff
}

.top-block_green {
    background: #e1f3f2
}

.top-block_rounded {
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px
}

.checked-items > .row > .col, .top-block-info > .row > .col {
    width: 33.333333%
}

.top-block-items {
    margin-bottom: 48px
}

.top-block-items:last-child {
    margin-bottom: 0
}

.top-block-items__item {
    padding-top: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid #dcdfe7
}

.top-block-items__item:first-child {
    padding-top: 0;
    margin-top: 0
}

.top-block-items__item:last-child {
    padding-bottom: 0;
    border-bottom: 0
}

.top-block-items__item .checked-text {
    font-size: 18px
}

.top-block-items__item-title {
    color: #878fa6;
    margin-bottom: 24px
}

.top-block-items__item-title:last-child {
    margin-bottom: 0
}

.top-block-items__wrapper > .row {
    margin: -6px -18px
}

.top-block-items__wrapper > .row > .col {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    padding: 6px 18px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.top-block-items__wrapper strong {
    color: var(--global-color)
}

.top-block-info > .row {
    margin: -8px
}

.top-block-info > .row > .col {
    padding: 8px
}

.top-block-info p {
    margin-bottom: 8px;
    line-height: 125%
}

.top-block-info p:last-child {
    margin-bottom: 0
}

.top-block-info__title {
    font-weight: 500;
    font-size: 12px;
    color: #878fa6;
    text-transform: uppercase
}

.top-block-info_sm-p li {
    margin-right: 48px
}

.top-block-info_sm-p li:last-child {
    margin-right: 0
}

.rounded-block {
    position: relative;
    border-radius: 20px;
    padding: 40px 32px;
    background: #fff;
    margin-top: 13px
}

.rounded-block__stiker {
    position: absolute;
    top: -13px;
    right: 24px;
    width: 137px;
    height: 133px;
    padding: 45px 16px 30px
}

.rounded-block__stiker:after, .rounded-block__stiker:before {
    content: "";
    position: absolute;
    top: 0;
    z-index: 1
}

.rounded-block__stiker:before {
    content: "";
    display: block;
    width: 0;
    height: 0;
    -moz-transform: scale(.9999);
    border-color: transparent transparent #60a39f;
    border-style: solid;
    border-width: 0 0 13px 20px;
    right: 100%
}

.rounded-block__stiker:after {
    right: 0;
    left: 0;
    bottom: 0;
    -webkit-mask-image: url(/img/stiker-bg.svg);
    mask-image: url(/img/stiker-bg.svg);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    background: #87ceca
}

.rounded-block__stiker_yellow:before {
    content: "";
    display: block;
    width: 0;
    height: 0;
    -moz-transform: scale(.9999);
    border-color: transparent transparent #cfa555;
    border-style: solid;
    border-width: 0 0 13px 20px;
    right: 100%
}

.rounded-block__stiker_yellow:after {
    background: #edcb8a
}

.rounded-block__stiker-content {
    position: relative;
    text-align: center;
    z-index: 2;
    white-space: nowrap;
}

.rounded-block__stiker-content .title {
    margin-bottom: 0
}

.rounded-block__stiker-content p {
    font-weight: 300
}

.rounded-block .top-block__head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 8px
}

.rounded-block .top-block__head .btn, .rounded-block .top-block__head:last-child {
    margin-bottom: 0
}

.rounded-block .top-block-items__wrapper > .row > .col {
    width: 100%
}

.show-hide-block > .title {
    text-align: center
}

.show-hide-block__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 48px 102px 48px 48px;
    border-radius: 20px;
    background: #fff;
    margin-bottom: 24px
}

.show-hide-block__item:last-child {
    margin-bottom: 0
}

.show-hide-block__triger {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
}

.show-hide-block__triger:after {
    content: "";
    position: absolute;
    left: 100%;
    top: 0;
    bottom: 0;
    margin: auto 0 auto 30px;
    width: 24px;
    height: 24px;
    -webkit-mask-image: url(/img/down-arrow.svg);
    mask-image: url(/img/down-arrow.svg);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    background: #333
}

.show-hide-block__content {
    margin-left: 48px;
    max-width: 1255px;
    border-top: 1px solid #dcdfe7;
    padding-top: 24px;
    margin-top: 24px;
    display: none
}

.show-hide-block__content ul {
    padding-left: 27px
}

.show-hide-block__content ul li {
    line-height: 167%;
    margin-bottom: 16px;
    list-style-type: disc
}

.show-hide-block__content ul li:last-child {
    margin-bottom: 0
}

.show-hide-block_no-p .show-hide-block__item {
    padding: 0;
    border-radius: 0
}

.show-hide-block_no-p .show-hide-block__triger {
    width: 24px;
    height: 24px
}

.show-hide-block_no-p .show-hide-block__triger:after {
    width: 100%;
    height: 100%
}

.show-hide-block_no-p .show-hide-block__content {
    margin-left: 0;
    border-top: none;
    padding-top: 0;
    margin-top: 27px
}

.course-steps__head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-left: 48px;
    margin-bottom: 16px
}

.course-steps__head:last-child {
    margin-bottom: 0
}

.course-steps__head li {
    font-weight: 700;
    letter-spacing: .095em;
    color: #333;
    margin-right: 60px
}

.course-steps__head li:last-child {
    margin-right: 0
}

.course-steps__content > p ,.course-steps__content > h3 {
    font-weight: 500;
    font-size: 22px;
    line-height: 125%;
    color: #878fa6
}

.checked-text {
    position: relative;
    padding-left: 32px;
    font-weight: 700;
    line-height: 125%;
    color: #333
}

.checked-text i {
    position: absolute;
    top: 0;
    left: 0;
    width: 24px;
    height: 24px;
    -webkit-mask-image: url(/img/checked-text-icon.svg);
    mask-image: url(/img/checked-text-icon.svg);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    background: var(--global-color)
}

.checked-text_red {
    color: var(--global-color);
    padding-left: 48px
}

.checked-text_green i {
    background: #87ceca
}

.checked-text_none i {
    -webkit-mask-image: url(/img/checked-text-none-icon.svg);
    mask-image: url(/img/checked-text-none-icon.svg)
}

.home-work {
    background: #333a4a;
    padding-top: 110px;
    padding-bottom: 110px;
    position: relative
}

.home-work__items {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    z-index: 2
}

.home-work__items > .row {
    margin-top: -26px;
    margin-bottom: -26px
}

.home-work__items > .row > .col {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-top: 26px;
    padding-bottom: 26px
}

.home-work__img, .home-work__items > .row > .col {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.home-work__img {
    border-radius: 20px;
    overflow: hidden;
    margin-top: auto;
    margin-bottom: auto
}

.home-work__img img {
    width: 100%
}

.home-work__content {
    color: #fff;
    margin-top: auto;
    margin-bottom: auto
}

.home-work__content > .title {
    margin-bottom: 72px
}

.home-work__content > .title:last-child {
    margin-bottom: 0
}

.home-work__content ul span {
    font-weight: 500
}

.home-work__content ul li {
    position: relative;
    line-height: 167%;
    padding-left: 40px;
    margin-bottom: 24px
}

.home-work__content ul li:last-child {
    margin-bottom: 0
}

.home-work__content ul li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 24px;
    height: 24px;
    -webkit-mask-image: url(/img/checkbox-checked-icon.svg);
    mask-image: url(/img/checkbox-checked-icon.svg);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-position: center;
    mask-position: center;
    background: #87ceca
}

.home-work__content-items > .row {
    margin: -12px
}

.home-work__content-items > .row > .col {
    padding: 12px
}

.home-work__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url(/img/home-work-bg.svg);
    background-repeat: no-repeat;
    background-position: 50%;
    background-size: cover;
    z-index: 1
}

.video-player {
    position: relative;
    padding-bottom: 56.25%
}

.video-player iframe {
    position: absolute;
    width: 100%;
    height: 100%;
    border: none
}

.mat-link {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-weight: 700;
    font-size: 22px;
    line-height: 136%;
    color: #87ceca;
    padding-left: 48px
}

.mat-link:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 24px;
    height: 24px;
    -webkit-mask-image: url(/img/training-materials-icon.svg);
    mask-image: url(/img/training-materials-icon.svg);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    background: #87ceca
}

.event-program__continue-course {
    border-radius: 20px;
    background: var(--global-color);
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 72px 48px;
    margin-bottom: 24px
}

.event-program__continue-course:last-child {
    margin-bottom: 0
}

.event-program__continue-course .title {
    color: #fff
}

.event-program__continue-course .btn {
    width: 100%;
    max-width: 478px
}

.event-program__item {
    border-radius: 20px;
    background: #fff;
    padding: 48px;
    margin-bottom: 24px;
    -webkit-transition: .3s cubic-bezier(.785, .135, .15, .86);
    -o-transition: .3s cubic-bezier(.785, .135, .15, .86);
    transition: .3s cubic-bezier(.785, .135, .15, .86)
}

.event-program__item:last-child {
    margin-bottom: 0
}

.event-program__item .course-steps__head {
    position: relative
}

.event-program__item .course-steps__head:after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 24px;
    height: 24px;
    -webkit-mask-image: url(/img/down-arrow.svg);
    mask-image: url(/img/down-arrow.svg);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    background: #333;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    display: none;
    -webkit-transition: .3s cubic-bezier(.785, .135, .15, .86);
    -o-transition: .3s cubic-bezier(.785, .135, .15, .86);
    transition: .3s cubic-bezier(.785, .135, .15, .86)
}

.event-program__item.active {
    margin-bottom: 48px
}

.event-program__item.active:last-child {
    margin-bottom: 0
}

.event-program__item.active .event-program__triger {
    background: rgba(0, 0, 0, 0);
    border-color: var(--global-color);
    color: var(--global-color)
}

.event-program__item.active .event-program__triger i {
    width: 0;
    height: 0
}

.event-program__item.active .course-steps__head:after {
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0)
}

.event-program__item.disable .btn {
    background: #c1c5d1;
    border-color: #c1c5d1
}

.event-program__item.disable-all .checked-text {
    color: #878fa6
}

.event-program__item.disable-all .checked-text i {
    background: #878fa6
}

.event-program__item.disable-all .mat-link {
    color: #878fa6
}

.event-program__item.disable-all .mat-link:before {
    background: #878fa6
}

.event-program__item-wrapper:last-child {
    margin-top: 48px
}

.event-program__item-wrapper > .row {
    margin-top: -12px;
    margin-bottom: -12px
}

.event-program__item-wrapper > .row > .col {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding-top: 12px;
    padding-bottom: 12px
}

.event-program__item-wrapper .btn {
    width: 100%;
    max-width: 260px;
    margin-left: auto
}

.event-program__item-content {
    padding-top: 48px;
    display: none
}

.event-program__item-content > .row {
    margin-top: -24px;
    margin-bottom: -24px
}

.event-program__item-content > .row > .col {
    padding-top: 24px;
    padding-bottom: 24px
}

.event-program__info {
    padding-left: 24px
}

.event-program__info .toast {
    margin-bottom: 24px
}

.event-program__info .toast:last-child {
    margin-bottom: 0
}

.event-program__info .title {
    padding-left: 26px;
    margin-bottom: 32px
}

.event-program__info .title:last-child {
    margin-bottom: 0
}

.event-program__info ul {
    padding-left: 26px
}

.event-program__info ul li {
    list-style: disc;
    margin-bottom: 24px
}

.event-program__info ul li:last-child {
    margin-bottom: 0
}

.join-event {
    border-radius: 20px;
    background: #fff;
    padding-top: 110px;
    padding-bottom: 110px
}

.join-event__items > .row {
    margin-top: -16px;
    margin-bottom: -16px
}

.join-event__items > .row > .col {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding-top: 16px;
    padding-bottom: 16px
}

.join-event__img, .join-event__items > .row > .col {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.join-event__img {
    max-width: 496px;
    margin-left: 37px
}

.join-event__img img {
    width: 100%
}

.join-event__content {
    max-width: 964px;
    margin-top: auto;
    margin-bottom: auto
}

.join-event__content > .title {
    margin-bottom: 72px
}

.join-event__content > .title:last-child {
    margin-bottom: 0
}

.join-event__content ul span {
    font-weight: 500
}

.join-event__content ul li {
    position: relative;
    line-height: 167%;
    padding-left: 40px;
    margin-bottom: 24px
}

.join-event__content ul li:last-child {
    margin-bottom: 0
}

.join-event__content ul li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 24px;
    height: 24px;
    -webkit-mask-image: url(/img/checkbox-checked-icon.svg);
    mask-image: url(/img/checkbox-checked-icon.svg);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-position: center;
    mask-position: center;
    background: var(--global-color)
}

.join-event__content-items {
    margin-bottom: 58px
}

.join-event__content-items:last-child {
    margin-bottom: 0
}

.join-event__content-items > .row {
    margin-top: -16px;
    margin-bottom: -16px
}

.join-event__content-items > .row > .col {
    padding-top: 16px;
    padding-bottom: 16px
}

.toast {
    background: #fdf2f0;
    padding: 14px 14px 12px 54px
}

.toast__content {
    max-width: 829px
}

.toast p {
    margin-bottom: 16px
}

.toast p:last-child {
    margin-bottom: 0
}

.toast em {
    font-style: normal;
    color: var(--global-color)
}

.toast b {
    font-weight: 500
}

.toast__text {
    position: relative;
    line-height: 167%;
    color: #878fa6
}

.toast__text:before {
    content: "";
    position: absolute;
    top: 0;
    right: 100%;
    margin-right: 20px;
    width: 16px;
    height: 16px;
    -webkit-mask-image: url(/img/error-icon.svg);
    mask-image: url(/img/error-icon.svg);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    background: var(--global-color)
}

.toast_rounded-4 {
    border-radius: 4px
}

.toast_rounded-20 {
    border-radius: 20px
}

.toast_worning .toast__text:before {
    background: #edcb8a
}

.toast_white {
    background: #fff;
    border-radius: 10px;
    padding: 32px 32px 32px 70px
}

.toast_white .toast__text {
    color: #333;
    font-weight: 500
}

.toast_white .toast__text:before {
    -webkit-mask-image: url(/img/question-icon.svg);
    mask-image: url(/img/question-icon.svg);
    top: 4px;
    width: 22px;
    height: 22px;
    margin-right: 16px
}

.toast_info {
    border-radius: 10px;
    padding: 8px 8px 8px 28px
}

.toast_info .toast__text {
    font-size: 14px;
    color: #333;
    line-height: 214%
}

.toast_info .toast__text:before {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    -webkit-mask-image: initial;
    mask-image: none;
    top: 9px;
    margin-right: 8px
}

.toast_no-icon {
    padding: 48px 32px;
    border-radius: 10px
}

.toast_no-icon .toast__content {
    max-width: 100%;
    font-size: 22px;
    line-height: 136%
}

.toast_success em {
    color: #b4e66e
}

.knowledge__conteiner {
    max-width: 1330px;
    margin-left: auto;
    margin-right: auto
}

.knowledge__content {
    margin-bottom: 56px
}

.knowledge__content:last-child {
    margin-bottom: 0
}

.knowledge__content > .title {
    margin-bottom: 72px
}

.knowledge__content > .title:last-child {
    margin-bottom: 0
}

.knowledge__content > .row {
    margin-top: -16px;
    margin-bottom: -16px
}

.knowledge__content > .row > .col {
    padding-top: 16px;
    padding-bottom: 16px
}

.knowledge__content ul {
    max-width: 586px
}

.knowledge__content ul span {
    font-weight: 500
}

.knowledge__content ul li {
    position: relative;
    line-height: 167%;
    padding-left: 26px;
    margin-bottom: 24px
}

.knowledge__content ul li:last-child {
    margin-bottom: 0
}

.knowledge__content ul li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 10px;
    height: 10px;
    background: var(--global-color);
    border-radius: 50%
}

.knowledge__items > .row {
    margin: -7.5px
}

.knowledge__items > .row > .col {
    padding: 7.5px
}

.knowledge__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 100%;
    padding: 40px 52px 17px;
    border-radius: 20px;
    background: #fff;
    text-align: center;
    border-width: 1px;
    border-style: solid
}

.knowledge__item p {
    color: #878fa6;
    font-weight: 500;
    line-height: 125%
}

.knowledge__item_red {
    border-color: #ed958a
}

.knowledge__item_red .knowledge__icon {
    background: var(--global-color)
}

.knowledge__item_green {
    border-color: #87ceca
}

.knowledge__item_green .knowledge__icon {
    background: #87ceca
}

.knowledge__item_yellow {
    border-color: #edcb8a
}

.knowledge__item_yellow .knowledge__icon {
    background: #edcb8a
}

.knowledge__icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    padding: 14px;
    margin-bottom: 23px
}

.knowledge__icon:last-child {
    margin-bottom: 0
}

.knowledge__icon img {
    display: block;
    width: 100%;
    height: 100%
}

.checked-items > .row {
    margin: -8px
}

.checked-items > .row > .col {
    padding: 8px
}

.checked-items_w-bg {
    border-radius: 20px;
    background: #fdf2f0;
    padding: 27px 26px 24px
}

.reg-block {
    background: #fff;
    border-radius: 20px;
    padding: 48px 48px 0 66px
}

.reg-block__items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.reg-block__items > .row {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    margin-top: -16px;
    margin-bottom: -16px
}

.reg-block__items > .row > .col {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-top: 16px;
    padding-bottom: 16px
}

.reg-block .rounded-block {
    border: 1px solid #87ceca
}

.reg-block__content {
    max-width: 504px;
    padding-bottom: 50px
}

.reg-block .btn-block {
    margin-bottom: 32px
}

.reg-block .btn-block:last-child {
    margin-bottom: 0
}

.reg-block .btn-block > .row {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    margin: -12px -8px
}

.reg-block .btn-block > .row > .col {
    padding: 12px 8px
}

.reg-block__btn-top .btn {
    cursor: auto
}

.reg-block__info {
    font-weight: 500;
    font-size: 22px;
    line-height: 125%;
    color: #87ceca;
    margin-bottom: 32px
}

.reg-block__info:last-child {
    margin-bottom: 0
}

.reg-block .checked-items {
    margin-bottom: 48px
}

.reg-block .checked-items:last-child {
    margin-bottom: 0
}

.reg-block .toast {
    margin-bottom: 32px;
    border-radius: 4px
}

.reg-block .toast:last-child {
    margin-bottom: 0
}

.reg-block .form__label {
    margin-bottom: 48px
}

.reg-block .form__label:last-child {
    margin-bottom: 0
}

.reg-block .form__label span {
    padding-left: 0
}

.reg-block__img {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    max-width: 962px;
    margin-left: auto;
    margin-top: auto
}

.reg-block__img img {
    width: 100%
}

.reg-block_1 .reg-block__content .title {
    margin-bottom: 66px
}

.reg-block_1 .reg-block__content .title:last-child {
    margin-bottom: 0
}

.reg-block_2 {
    background: rgba(0, 0, 0, 0);
    padding: 0 !important
}

.reg-block_2 > .title {
    text-align: center
}

.reg-block_2 .reg-block__items {
    max-width: 1264px;
    margin-left: auto;
    margin-right: auto
}

.reg-block_2 .reg-block__items > .row {
    margin: -58px
}

.reg-block_2 .reg-block__items > .row > .col {
    padding: 58px
}

.reg-block_2 .reg-block__content {
    max-width: none;
    padding-bottom: 0
}

.reg-block_2 .title-block {
    margin-bottom: 24px;
    padding-right: 142px
}

.reg-block_2 .title-block:last-child {
    margin-bottom: 0
}

.reg-block_2 .title-block strong {
    color: var(--global-color)
}

.reg-block_2 .title-block b {
    font-weight: 500
}

.reg-block_2 .checked-items {
    padding-top: 32px;
    border-top: 1px dashed #b3b3b3;
    margin-bottom: 32px
}

.reg-block_2 .checked-items:last-child {
    margin-bottom: 0
}

.reg-block_2 .btn-block-2 {
    padding-top: 40px;
    border-top: 1px dashed #b3b3b3
}

.reg-block_2 .btn_green-tr {
    text-decoration: underline
}

.reg-block_2 .title a{
    text-decoration: underline;
    color: #333;
}

.join-the-telegram {
    position: relative;
    background: #333a4a;
    padding-top: 80px;
    padding-bottom: 80px
}

.join-the-telegram__items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.join-the-telegram__items-wrapper {
    position: relative;
    max-width: 659px
}

.join-the-telegram__content {
    position: relative;
    background: #fff;
    padding: 32px;
    border-radius: 20px;
    border: 1px solid #87ceca;
    text-align: center;
    z-index: 2
}

.join-the-telegram__content p {
    margin-bottom: 16px;
    color: #878fa6;
    line-height: 167%
}

.join-the-telegram__content p:first-child {
    color: #000
}

.join-the-telegram__content p:last-child {
    margin-bottom: 0
}

.join-the-telegram__content .btn {
    max-width: 446px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 16px
}

.join-the-telegram__content .btn:first-child {
    margin-top: 0
}

.join-the-telegram__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url(/img/join-the-telegramm-bg.svg);
    background-repeat: no-repeat !important;
    background-position: 50% !important;
    background-size: cover;
    z-index: 1
}

.join-the-telegram__bg_2 {
    width: 234px;
    height: 152px;
    left: 100%;
    right: auto;
    top: 122px;
    bottom: auto;
    margin-left: 25.4%;
    background: url(/img/join-the-telegramm-bg-2.svg);
    background-size: 100% 100%
}

.certificate__items > .row {
    margin-top: -32px;
    margin-bottom: -32px
}

.certificate__items > .row > .col {
    padding-top: 32px;
    padding-bottom: 32px
}

.certificate__item {
    padding-left: 47px;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.certificate__item .toast {
    margin-top: 32px;
    border-radius: 4px
}

.certificate__item .toast:first-child {
    margin-top: 0
}

.certificate__item .btn {
    margin-top: 48px;
    max-width: 478px
}

.certificate__item .btn:first-child {
    margin-top: 0
}

.certificate__item_green {
    background: #e1f3f2;
    border-radius: 10px;
    border-left: 7px solid var(--global-color);
    padding: 24px 58px 52px 52px
}

.certificate__item-head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 16px
}

.certificate__item-head:last-child {
    margin-bottom: 0
}

.certificate__item-head .title {
    margin-top: 35px
}

.certificate__item-head .logo {
    width: 119px
}

.certificate__confirmation {
    margin-bottom: 46px
}

.certificate__confirmation:last-child {
    margin-bottom: 0
}

.certificate__confirmation strong {
    font-size: 22px;
    text-transform: uppercase
}

.certificate .title-block {
    margin-bottom: 69px
}

.certificate .title-block:last-child {
    margin-bottom: 0
}

.certificate .title-block .title {
    margin-bottom: 8px
}

.certificate .title-block .title:last-child {
    margin-bottom: 0
}

.certificate__date {
    font-weight: 700;
    color: var(--global-color);
    margin-bottom: 36px
}

.certificate__date:last-child {
    margin-bottom: 0
}

.certificate .top-block-items {
    border-top: 1px solid rgba(51, 51, 51, .1);
    padding-top: 18px
}

.certificate .top-block-info {
    max-width: 439px
}

.portfolio__items {
    margin-bottom: 48px
}

.portfolio__items:last-child {
    margin-bottom: 0
}

.portfolio__item {
    position: relative;
    padding: 48px 88px 48px 32px;
    border-radius: 20px;
    margin-bottom: 24px;
    background: #fff
}

.portfolio__item:last-child {
    margin-bottom: 0
}

.portfolio__item > .row > .col:first-child {
    width: 374px
}

.portfolio__item .row {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: -16px
}

.portfolio__item .row .col {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    padding: 16px
}

.portfolio__item_head {
    padding-top: 56px;
    padding-bottom: 56px;
    padding-right: 32px
}

.portfolio__item_head > .row > .col:first-child {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content
}

.portfolio .title-block p {
    color: #878fa6
}

.portfolio > .container > .btn {
    max-width: 446px;
    margin-left: auto;
    margin-right: auto
}

.portfolio__download {
    font-weight: 700;
    color: var(--global-color);
    letter-spacing: .095em;
    text-transform: uppercase
}

.portfolio__delite {
    width: 32px;
    height: 32px;
    position: absolute;
    top: 69px;
    right: 32px;
    background: url(/img/delete-icon.svg);
    background-repeat: no-repeat;
    background-position: 50%;
    background-size: 100% 100%
}

.portfolio__date-time > .row {
    margin-top: -8px !important;
    margin-bottom: -8px !important
}

.portfolio__date-time > .row > .col {
    padding-top: 8px !important;
    padding-bottom: 8px !important
}

.portfolio__date-time p strong {
    font-weight: 500;
    color: var(--global-color)
}

.portfolio__date-time .text-w-icon {
    position: relative;
    max-width: 271px;
    padding-left: 28px
}

.portfolio__date-time .text-w-icon__icon {
    width: 20px;
    height: 20px;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    margin: auto
}

.portfolio__info > .row > .col span {
    font-weight: 500;
    color: var(--global-color)
}

.portfolio__info > .row > .col:last-child span {
    color: #87ceca
}

.portfolio__edit {
    width: 310px
}

.portfolio .form__label-title {
    padding-left: 0;
    margin-bottom: 0;
    margin-right: 48px;
    font-size: 22px;
    color: var(--global-color);
    text-transform: none
}

.portfolio .select-label {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.portfolio .select-mod {
    width: 361px
}

.profile-lavel {
    font-family: GolosText;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(193, 197, 209, .5)
}

.profile-lavel > .title {
    margin-bottom: 62px
}

.profile-lavel__items {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 16px
}

.profile-lavel__items:last-child {
    margin-bottom: 0
}

.profile-lavel__items:before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    height: 10px;
    background: #f5f6fa;
    border-radius: 20px;
    z-index: 1
}

.profile-lavel__item {
    position: relative;
    width: 50%;
    margin-right: -17.5px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.profile-lavel__item:nth-child(2) {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content
}

.profile-lavel__item:last-child {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end
}

.profile-lavel__item:last-child .profile-lavel__line ul {
    left: auto;
    right: 0
}

.profile-lavel__item.active .profile-lavel__elipse {
    background: #87ceca
}

.profile-lavel__elipse {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 12px;
    position: relative;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: var(--global-color);
    z-index: 3
}

.profile-lavel__elipse span {
    display: none
}

.profile-lavel__line {
    position: relative;
    height: 10px;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    background: #87ceca;
    border-radius: 20px;
    z-index: 2
}

.profile-lavel__line ul {
    position: absolute;
    bottom: 21px;
    left: 100%;
    margin-left: -24px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.profile-lavel__line ul li {
    margin-right: 5px;
    font-weight: 700;
    color: #87ceca;
    white-space: nowrap
}

.profile-lavel__line ul li:after {
    content: "/";
    color: #c1c5d1;
    margin-left: 5px
}

.profile-lavel__line ul li:last-child {
    color: var(--global-color)
}

.profile-lavel__line ul li:last-child:after {
    display: none
}

.profile-lavel__line ul li:last-child {
    margin-right: 0
}

.profile-lavel__content > .row {
    margin-top: -12px;
    margin-bottom: -12px
}

.profile-lavel__content > .row > .col {
    padding-top: 12px;
    padding-bottom: 12px
}

.profile-lavel__content > .row > .col:nth-child(2) {
    text-align: center
}

.profile-lavel__content > .row > .col:last-child {
    text-align: right
}

.profile-lavel__content > .row > .col p {
    font-weight: 700;
    color: #878fa6;
    line-height: 125%
}

.testing__items {
    max-width: 1162px
}
.testing__items .checkbox p {
    white-space: normal;
}
.testing__item {
    margin-bottom: 64px
}

.testing__item:last-child {
    margin-bottom: 0
}

.testing .checkbox {
    height: 100%
}

.testing .btn-block > .row {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    margin: -4.5px -24.5px
}

.testing .btn-block > .row > .col {
    padding: 4.5px 24.5px
}

.testing .btn_red {
    width: 476px
}

.my-courses__item {
    position: relative;
    border-radius: 20px;
    background: #fff;
    max-width: 1261px;
    overflow: hidden
}

.my-courses__item_green {
    background: #e1f3f2
}

.my-courses__item-content {
    padding: 64px 72px 174px
}

.my-courses__item-content .rounded-block {
    max-width: 777px
}

.my-courses__continue-course {
    position: relative;
    background: var(--global-color);
    padding: 32px 72px;
    z-index: 2
}

.my-courses__continue-course .title-wrapper img {
    margin-top: 0;
    margin-bottom: -9px
}

.my-courses__continue-course .title {
    color: #fff
}

.my-courses__item-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url(/img/my-courses-bg.svg);
    background-repeat: no-repeat;
    background-position: 50%;
    background-size: cover;
    border-radius: inherit;
    z-index: 1
}

.my-courses__item-content {
    position: relative;
    z-index: 2
}

.my-courses__item-content .title-block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-bottom: 48px
}

.my-courses__item-content .title-block:last-child {
    margin-bottom: 0
}

.my-courses__item-content .title-block .title {
    margin-bottom: 24px
}

.my-courses__item-content .title-block .title:last-child {
    margin-bottom: 0
}

.my-courses__item-content .title-block p ,.my-courses__item-content .title-block h2 {
    color: #878fa6
}

.my-courses__item-content .title-block ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: -12px -47.5px
}

.my-courses__item-content .title-block ul li {
    padding: 12px 47.5px
}

.my-courses__item-content .title-block ul li:last-child {
    margin-right: 0
}

.my-courses__item-content > ul {
    padding-left: 26px;
    margin-bottom: 40px
}

.my-courses__item-content > ul:last-child {
    margin-bottom: 0
}

.my-courses__item-content > ul li {
    list-style: disc;
    margin-bottom: 8px
}

.my-courses__item-content > ul li:last-child {
    margin-bottom: 0
}

.my-courses__item-content .rounded-block {
    padding: 48px 199px 48px 48px
}

.my-courses .btn-block {
    margin-bottom: 40px
}

.my-courses .btn-block:last-child {
    margin-bottom: 0
}

.my-courses .btn-block > .row {
    margin-top: -12px;
    margin-bottom: -12px
}

.my-courses .btn-block > .row > .col {
    padding-top: 12px;
    padding-bottom: 12px
}

.my-courses .btn-block .btn {
    padding-left: 54px;
    padding-right: 54px
}

.my-courses .mat-link {
    -webkit-text-decoration-line: underline;
    text-decoration-line: underline
}

.my-courses .mat-link:before {
    -webkit-mask-image: url(/img/download-icon.svg);
    mask-image: url(/img/download-icon.svg)
}

.my-courses-lessons {
    padding: 64px 32px;
    border-radius: 20px;
    background: #fff
}

.my-courses-lessons__item {
    margin-bottom: 48px
}

.my-courses-lessons__item:last-child {
    margin-bottom: 0
}

.my-courses-lessons__link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    background: #f5f6fa;
    border: 1px solid #878fa6;
    padding-left: 24px;
    padding-right: 24px;
    text-transform: none;
    margin-bottom: 16px
}

.my-courses-lessons__link:last-child {
    margin-bottom: 0
}

.my-courses-lessons__link .text-w-icon {
    width: 100px
}

.my-courses-lessons__link .text-w-icon__icon {
    margin-right: 8px
}

.my-courses-lessons__link .text-w-icon__icon:last-child {
    margin-right: 0
}

.my-courses-lessons__link_success {
    border-color: #87ceca
}

.my-courses-lessons__link_success .my-courses-lessons__link-title {
    color: #87ceca
}

.my-courses-lessons__link_available {
    border-color: #dcdfe7
}

.my-courses-lessons__link_available .my-courses-lessons__link-title {
    color: #878fa6
}

.my-courses-lessons__link_not-available {
    border-color: #dcdfe7
}

.my-courses-lessons__link_not-available .my-courses-lessons__link-title {
    color: #c1c5d1
}

.my-courses-lessons__link-title {
    color: #333;
    font-weight: 500
}

.my-courses-lessons_2 .my-courses-lessons__link .text-w-icon {
    color: #333;
    width: 130px
}

.my-courses-lessons_2 .my-courses-lessons__link .text-w-icon__icon {
    background: #333
}

.my-courses-lessons_2 .my-courses-lessons__link_success .text-w-icon {
    color: #87ceca
}

.my-courses-lessons_2 .my-courses-lessons__link_success .text-w-icon__icon {
    background: #87ceca
}

.my-courses-lessons_2 .my-courses-lessons__link_available .text-w-icon {
    color: #878fa6
}

.my-courses-lessons_2 .my-courses-lessons__link_available .text-w-icon__icon {
    background: #878fa6
}

.my-courses-lessons_2 .my-courses-lessons__link_not-available .text-w-icon {
    color: #c1c5d1
}

.my-courses-lessons_2 .my-courses-lessons__link_not-available .text-w-icon__icon {
    background: #c1c5d1
}

.contacts > .title {
    text-align: center
}

.contacts__items > .row {
    margin-top: -24px;
    margin-bottom: -24px
}

.contacts__items > .row > .col {
    padding-top: 24px;
    padding-bottom: 24px
}

.contacts__content {
    max-width: 903px
}

.contacts__content .contact-links {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-bottom: 48px;
    width: 100%
}

.contacts__content .contact-links:last-child {
    margin-bottom: 0
}

.contacts__content .contact-links > .row > .col_5 {
    width: 36%
}

.contacts__content .contact-links > .row > .col_3 {
    width: 29%
}

.contacts__content .contact-links > .row > .col_4 {
    width: 35%
}

.contacts__content .contact-links a, .contacts__content .contact-links p {
    margin-bottom: 16px
}

.contacts__content .contact-links a:last-child, .contacts__content .contact-links p:last-child {
    margin-bottom: 0
}

.contacts__content .toast {
    padding: 32px 32px 32px 64px
}

.contacts__content .toast__content {
    max-width: none;
    font-size: 16px;
    line-height: 187%
}

.contacts__info {
    padding: 32px 48px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 20px;
    border-width: 1px;
    border-style: solid;
    height: 100%
}

.contacts__info_red {
    border-color: #ed958a
}

.contacts__info_green {
    border-color: #87ceca
}

.contacts__info_yellow {
    border-color: #edcb8a
}

.contacts__info-title {
    font-weight: 500;
    color: #333;
    line-height: 125%;
    font-size: 16px
}

.contacts__map {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border-radius: 20px;
    height: 100%;
    min-height: 450px;
    overflow: hidden
}

.contacts__map iframe {
    width: 100%;
    border: 0
}

.footer {
    background: #333a4a;
    color: #c1c5d1
}

.footer .row .col {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.footer .row .col:first-child {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start
}

.footer .logo {
    width: 80px
}

.footer__top {
    padding-top: 56px;
    padding-bottom: 33px;
    border-bottom: 1px solid rgba(135, 143, 166, .4)
}

.footer .main-nav {
    width: 100%
}

.footer .main-nav ul {
    width: 100%;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.footer .main-nav ul li {
    text-transform: uppercase
}

.footer .main-nav ul li a, .footer .main-nav ul li.current a {
    color: #fff;
    font-weight: 500
}

.footer__info-links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    text-align: right
}

.footer__info-links li {
    font-weight: 500;
    font-size: 12px;
    line-height: 125%;
    margin-bottom: 16px;
    text-transform: uppercase
}

.footer__info-links li:last-child {
    margin-bottom: 0
}

.footer__info-links li a {
    color: #c1c5d1
}

.footer__bottom {
    padding-top: 32px;
    padding-bottom: 56px
}

.footer__cards, .footer__info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.footer__cards {
    margin-right: 31px
}

.footer__cards:last-child {
    margin-right: 0
}

.footer__cards li {
    margin-right: 16px
}

.footer__cards li:last-child {
    margin-right: 0
}

.footer__cards li a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.footer__cards-icon {
    background-repeat: no-repeat;
    background-position: 50%;
    background-size: 100% 100% !important;
    width: 60px;
    height: 42px
}

.footer__cards-icon_mastercard {
    background: url(/img/master-card-icon.svg)
}

.footer__cards-icon_visa {
    background: url(/img/visa-icon.svg)
}

.footer__copiright {
    font-weight: 500;
    font-size: 14px;
    line-height: 130%;
    text-transform: uppercase
}

@media (max-width: 1680px) {
    .portfolio__item {
        padding-right: 32px
    }

    .portfolio__item > .row > .col:first-child {
        width: 100%
    }

    .portfolio__item_head > .row > .col:first-child {
        width: -webkit-fit-content;
        width: -moz-fit-content;
        width: fit-content
    }

    .portfolio .title-block {
        padding-right: 64px
    }
}

@media (max-width: 1440px) {
    .container {
        max-width: 1320px
    }

    .row {
        margin: -10px
    }

    .col {
        padding: 10px
    }

    .desktop-xl-show {
        display: -webkit-box !important;
        display: -ms-flexbox !important;
        display: flex !important
    }

    .desktop-xl-hide {
        display: none !important
    }

    .header__content {
        padding-right: 0
    }

    .header__wrapper .auth-link, .header__wrapper .profile-link {
        margin-right: 40px
    }

    .header__wrapper .auth-link:last-child, .header__wrapper .profile-link:last-child {
        margin-right: 0;
        align-items: center;
        justify-content: center;
    }

    .header__wrapper .language {
        margin-right: 30px
    }

    .header__wrapper .language:last-child {
        margin-right: 0
    }

    .header .main-nav li {
        margin-right: 44px
    }

    .header .main-nav li:last-child {
        margin-right: 0
    }

    .title {
        font-size: 40px
    }

    .mentors .slick-list {
        margin: -24px -32px
    }

    .mentors .slick-slide {
        padding: 24px 32px
    }

    .student-feedback__slider, .student-feedback__title-block {
        padding-left: 62px;
        padding-right: 62px
    }

    .student-feedback__slider .slick-list {
        margin-left: -10px;
        margin-right: -10px
    }

    .student-feedback__slider .slick-slide {
        padding-left: 10px;
        padding-right: 10px
    }

    .student-feedback__item {
        padding: 48px 24px
    }

    .partners .slick-list {
        margin: -10px
    }

    .partners .slick-slide > div {
        padding: 10px
    }

    .all-events__items > .row {
        margin: -26.5px
    }

    .all-events__items > .row > .col {
        padding: 26.5px
    }

    .all-events__items > .row > .col_9 {
        width: 70.6%
    }

    .all-events__items > .row > .col_3 {
        width: 29.4%
    }

    .all-events__content > .row {
        margin: -20px
    }

    .all-events__content > .row > .col {
        width: 50%;
        padding: 20px
    }

    .all-events-page-continues .top-block__content {
        padding-left: 0
    }

    .profile__items > .row {
        margin: -8.5px
    }

    .profile__items > .row > .col {
        padding: 8.5px
    }

    .profile__item_big {
        padding-left: 48px;
        padding-right: 44px
    }

    .profile__item-wrapper > .row {
        margin: -12px -10px
    }

    .profile__item-wrapper > .row > .col {
        padding: 12px 10px
    }

    .auth__items > .row > .col {
        width: 50%
    }

    .joint-development__images {
        margin-left: 0
    }

    .event-program__info {
        padding-left: 0
    }

    .reg-block__items > .row > .col_5 {
        width: 60%;
    }

    .reg-block__items > .row > .col_7 {
        width: 38.333333%
    }

    .reg-block__content {
        max-width: 800px
    }

    .reg-block_2 .reg-block__items > .row {
        margin: -24px -20px
    }

    .reg-block_2 .reg-block__items > .row > .col {
        padding: 24px 20px
    }

    .join-the-telegram__bg_2 {
        margin-left: 10%
    }

    .my-courses__items > .row > .col_9 {
        width: 70.6%
    }

    .my-courses__items > .row > .col_3 {
        width: 29.4%
    }

    .my-courses__item-content .rounded-block .checked-items {
        margin-right: -199px
    }

    .contacts__content .contact-links > .row > .col_3, .contacts__content .contact-links > .row > .col_5 {
        width: 50%
    }

    .contacts__content .contact-links > .row > .col_4, .footer .logo {
        width: 100%
    }

    .footer__top .row .col_3 {
        width: calc(33.33333% - 100px);
        -webkit-box-align: end;
        -ms-flex-align: end;
        align-items: flex-end
    }

    .footer__top .row .col_3:first-child {
        width: 100px
    }

    .footer__top .row .col_6 {
        width: 66.666667%
    }

    .footer .main-nav ul li {
        font-size: 16px
    }

    .footer__info-links {
        margin-bottom: 24px
    }

    .footer__info-links:last-child {
        margin-bottom: 0
    }

    .footer__bottom > .container > .row {
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between
    }

    .footer__bottom > .container > .row > .col {
        width: -webkit-fit-content;
        width: -moz-fit-content;
        width: fit-content
    }

    .footer .contact-links li {
        margin-right: 32px
    }

    .footer .contact-links li:last-child {
        margin-right: 0
    }

    .footer__cards {
        margin-right: 8px
    }

    .footer__cards:last-child {
        margin-right: 0
    }

    .footer__cards li {
        margin-right: 8px
    }

    .footer__cards li:last-child {
        margin-right: 0
    }
}

@media (max-width: 1366px) {
    .container {
        max-width: 1160px
    }

    .desktop-lg-show {
        display: -webkit-box !important;
        display: -ms-flexbox !important;
        display: flex !important
    }

    .desktop-lg-hide {
        display: none !important
    }

    .all-events__items > .row {
        margin: -10px
    }

    .all-events__items > .row > .col {
        padding: 10px
    }

    .all-events__items > .row > .col_9 {
        width: 66.666667%
    }

    .all-events__items > .row > .col_3 {
        width: 33.333333%
    }

    .all-events__content > .row {
        margin: -10px
    }

    .all-events__content > .row > .col {
        padding: 10px
    }

    .info-item__options > .row {
        margin: -6.5px -10px
    }

    .info-item__options > .row > .col {
        width: 50%;
        padding: 6.5px 10px
    }

    .info-item .btn-block > .row > .col {
        width: 100%
    }

    .not-found-item {
        margin-top: 120px
    }

    .profile__item {
        padding: 62px 24px 20px
    }

    .profile__item_big {
        padding: 48px 32px 133px
    }

    .profile__item-wrapper {
        margin-bottom: 0
    }

    .profile-cart__avatar {
        width: 120px;
        height: 120px;
        margin-right: 40px
    }

    .profile-cart__avatar:last-child {
        margin-right: 0
    }

    .profile-cart__info {
        width: calc(100% - 160px)
    }

    .profile-cart__info-inner .btn {
        padding-left: 38px;
        padding-right: 38px
    }

    .counters > .row > .col, .home-work__items > .row > .col {
        width: 50%
    }

    .event-program__item-content > .row > .col, .home-work__content-items > .row > .col {
        width: 100%
    }

    .join-event__items > .row > .col {
        width: 50%
    }

    .join-event__content > .title {
        margin-bottom: 48px
    }

    .join-event__content > .title:last-child {
        margin-bottom: 0
    }

    .join-event__content-items > .row > .col {
        width: 100%
    }

    .my-courses__items > .row > .col_9 {
        width: 66.666667%
    }

    .my-courses__items > .row > .col_3 {
        width: 33.333333%
    }

    .my-courses__item-content {
        padding: 80px 32px
    }

    .my-courses__continue-course {
        padding-left: 32px;
        padding-right: 32px
    }

    .my-courses__item-content .rounded-block {
        padding: 48px 180px 48px 32px
    }

    .my-courses__item-content .rounded-block .checked-items {
        margin-right: -180px
    }
}

@media (max-width: 1200px) {
    .desktop-hide {
        display: none !important
    }

    .desktop-show {
        display: -webkit-box !important;
        display: -ms-flexbox !important;
        display: flex !important
    }

    .select-styled {
        padding-left: 16px
    }

    .form input, .form textarea {
        padding-left: 16px;
        padding-right: 16px
    }

    .all-events__filters-items {
        padding-left: 24px;
        padding-right: 24px
    }

    .not-found-item {
        margin-top: 100px
    }

    .profile-cart__avatar {
        margin-right: 20px;
        width: 110px;
        height: 110px
    }

    .profile-cart__info {
        width: calc(100% - 130px)
    }

    .profile-cart__info-inner .btn {
        padding-left: 28px;
        padding-right: 28px
    }

    .reg-block_2 .reg-block__items > .row {
        margin-left: -10px;
        margin-right: -10px
    }

    .reg-block_2 .reg-block__items > .row > .col {
        padding-left: 10px;
        padding-right: 10px
    }

    .join-the-telegram__bg_2 {
        top: 0;
        margin-left: 0;
        left: auto;
        right: 0;
        width: 109px;
        height: 71px;
        margin-top: -59px
    }

    .portfolio__item_head > .row > .col:first-child {
        width: 100%
    }

    .portfolio__item_head > .row > .col {
        width: 100%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center
    }

    .portfolio__download {
        text-align: center
    }

    .my-courses-lessons {
        padding-left: 24px;
        padding-right: 24px
    }

    .footer .main-nav ul li {
        margin-right: 60px
    }

    .footer .main-nav ul li:last-child {
        margin-right: 0
    }
}

@media (max-width: 992px) {


    .header__wrapper a.profile-link{

        color: #fff;
    }
    .user_level{
        display: none;
    }
    .reg-block__items > .row > .col_7 {
        width: 100%;
    }
    .reg-block__items > .row > .col_5 {
        width: 100%;
    }
    .row {
        margin: -8px
    }

    .col {
        padding: 8px
    }

    .col_4, .col_5, .col_6, .col_7, .col_8 {
        width: 100%
    }

    .mt-110 {
        margin-top: 100px
    }

    .mb-111 {
        margin-bottom: 100px
    }

    .tablet-hide {
        display: none !important
    }

    .tablet-show {
        display: -webkit-box !important;
        display: -ms-flexbox !important;
        display: flex !important
    }

    .header {
        border: 1px solid #e0e0e0
    }

    .header__content .main-nav, .header__wrapper {
        display: none
    }

    .mob-triger {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex
    }

    .form__error_white {
        position: relative;
        top: auto;
        left: auto;
        padding: 0;
        width: auto;
        border-radius: 0;
        margin-left: 0
    }

    .form__error_white:before {
        display: none
    }

    .mentors {
        padding-top: 100px;
        padding-bottom: 100px;
        border-radius: 0
    }

    .mentors__img {
        margin-bottom: 32px
    }

    .mentors__img:last-child {
        margin-bottom: 0
    }

    .mentors_one-person .title {
        text-align: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center
    }

    .mentors_one-person .mentors__content {
        max-width: none
    }

    .mentors_one-person .mentors__info {
        text-align: center;
        border: 0;
        border-bottom: 1px solid #dcdfe7;
        border-radius: 0;
        padding-top: 16px
    }

    .student-feedback__slider .slick-list {
        margin-left: -8px;
        margin-right: -8px
    }

    .student-feedback__slider .slick-slide {
        padding-left: 8px;
        padding-right: 8px
    }

    .partners .slick-list {
        margin: -8px
    }

    .partners .slick-slide > div {
        padding: 8px
    }

    .content-top-nav {
        margin-bottom: 40px
    }

    .content-top-nav:last-child {
        margin-bottom: 0
    }

    .content-top-nav__triger {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex
    }

    .content-top-nav__dropdown {
        display: none;
        border-radius: 20px;
        background: #fff;
        margin-top: -35px;
        padding: 59px 24px 24px;
        border-bottom: 0
    }

    .content-top-nav ul {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        margin: -12px
    }

    .content-top-nav ul li {
        width: 100% !important;
        padding: 12px
    }

    .content-top-nav ul li a {
        padding-bottom: 0
    }

    .content-top-nav ul li.current {
        display: none
    }

    .all-events__items > .row {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse
    }

    .all-events__items > .row > .col {
        width: 100%
    }

    .all-events__content > .row {
        margin: -8px
    }

    .all-events__content > .row > .col {
        padding: 8px
    }

    .all-events__filters-triger {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex
    }

    .all-events__filters {
        margin-top: 0
    }

    .all-events__filters-items {
        margin-top: 10px;
        border-radius: 20px;
        display: none
    }

    .all-events__filters-items:first-child {
        margin-top: 0
    }

    .all-events-page__content {
        padding-top: 0;
        padding-bottom: 80px
    }

    .all-events-page-continues .top-block {
        padding-top: 60px;
        padding-bottom: 80px
    }

    .all-events-page-continues .top-block__items > .row {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        margin-top: -24px;
        margin-bottom: -24px
    }

    .all-events-page-continues .top-block__items > .row > .col {
        padding-top: 24px;
        padding-bottom: 24px
    }

    .not-found-item {
        margin-top: 56px
    }

    .go-back-link_big {
        margin-bottom: 44px
    }

    .profile .form .toast__text {
        font-size: 20px
    }

    .profile__item-wrapper > .row > .col {
        width: 50%
    }

    .profile__btn-block {
        max-width: 440px;
        margin-left: auto;
        margin-right: auto
    }

    .profile_lavels .profile__item {
        border-radius: 0;
        background: rgba(0, 0, 0, 0);
        padding: 0 0 99px
    }

    .profile_lavels .faq__answer .faq__content {
        background: #fff
    }

    .profile_lavels .faq__answer .faq__content:before {
        content: "";
        display: block;
        width: 0;
        height: 0;
        -moz-transform: scale(.9999);
        border-color: transparent transparent transparent #fff;
        border-style: solid;
        border-width: 13px 0 13px 25px
    }

    .profile-cart {
        text-align: center
    }

    .profile-cart__head {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center
    }

    .profile-cart__avatar {
        width: 120px;
        height: 120px;
        margin-right: 0;
        margin-bottom: 40px
    }

    .profile-cart__avatar:last-child {
        margin-bottom: 0
    }

    .profile-cart__info {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center
    }

    .auth__items {
        overflow: initial
    }

    .auth__items > .row > .col {
        width: 100%
    }

    .auth__img {
        display: none !important
    }

    .auth__content {
        max-width: 75%
    }

    .show-more {
        margin-top: 32px
    }

    .show-more:first-child {
        margin-top: 0
    }

    .counters > .row > .col {
        width: 33.333333%
    }

    .top-block__items > .row {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse
    }

    .top-block__content {
        padding-top: 33px;
        padding-bottom: 59px
    }

    .top-block__content > .title {
        margin-bottom: 32px
    }

    .top-block__content > .title:last-child {
        margin-bottom: 0
    }

    .top-block_rounded {
        border-radius: 0
    }

    .rounded-block__stiker-content .title {
        font-size: 26px !important
    }

    .rounded-block__stiker-content p {
        font-size: 16px
    }

    .show-hide-block__item {
        padding-left: 32px;
        padding-right: 32px
    }

    .show-hide-block__triger:after {
        margin: 0;
        left: auto;
        right: 0;
        top: 0;
        bottom: auto;
        -webkit-transform: rotate(-90deg);
        -ms-transform: rotate(-90deg);
        transform: rotate(-90deg)
    }

    .show-hide-block__content {
        margin-left: 0
    }

    .course-steps__head {
        padding-left: 0;
        padding-right: 44px
    }

    .course-steps__head li {
        margin-right: 30px
    }

    .course-steps__head li:last-child {
        margin-right: 0
    }

    .home-work {
        padding-top: 100px;
        padding-bottom: 100px
    }

    .home-work__items > .row {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse
    }

    .home-work__items > .row > .col {
        width: 100%
    }

    .home-work__content > .title {
        margin-bottom: 48px
    }

    .home-work__content > .title:last-child {
        margin-bottom: 0
    }

    .mat-link {
        font-size: 20px
    }

    .event-program__continue-course, .event-program__item {
        padding: 48px 32px
    }

    .event-program__item .course-steps__head:after {
        display: block
    }

    .event-program__item-wrapper:last-child {
        margin-top: 32px
    }

    .event-program__item-wrapper .btn {
        margin-left: 0;
        max-width: 430px
    }

    .join-event {
        padding-top: 80px;
        padding-bottom: 80px
    }

    .join-event__items > .row > .col {
        width: 100%
    }

    .join-event__img {
        margin-left: auto;
        margin-right: auto
    }

    .toast_no-icon .toast__content {
        font-size: 20px
    }

    .knowledge__content > .title {
        margin-bottom: 48px
    }

    .knowledge__content > .title:last-child {
        margin-bottom: 0
    }

    .knowledge__content > .row > .col {
        width: 50%
    }

    .knowledge__items > .row > .col {
        width: 33.333333%
    }

    .knowledge__item {
        padding: 30px 10px
    }

    .reg-block {
        padding: 100px 32px
    }

    .reg-block__items > .row {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
    }

    .reg-block__items > .row > .col_7 {
        display: block
    }

    .reg-block__content {
        padding-bottom: 0
    }

    .reg-block .btn_green-tr {
        padding: 0;
        height: auto
    }

    .reg-block_1 .reg-block__content .title {
        margin-bottom: 32px
    }

    .reg-block_1 .reg-block__content .title:last-child {
        margin-bottom: 0
    }

    .certificate__items > .row {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse
    }

    .certificate__item {
        padding-left: 37px
    }

    .certificate__item .btn {
        margin-top: 32px
    }

    .certificate__item .btn:first-child {
        margin-top: 0
    }

    .certificate__item_green {
        padding: 24px 32px 48px
    }

    .certificate__item-head .title {
        margin-top: 24px
    }

    .certificate__item-head .logo {
        width: 90px
    }

    .certificate__confirmation {
        margin-bottom: 32px
    }

    .certificate__confirmation:last-child {
        margin-bottom: 0
    }

    .certificate .title-block {
        margin-bottom: 48px
    }

    .certificate .title-block:last-child {
        margin-bottom: 0
    }

    .certificate__date {
        margin-bottom: 24px
    }

    .certificate__date:last-child {
        margin-bottom: 0
    }

    .portfolio__items {
        margin-bottom: 32px
    }

    .portfolio__items:first-child {
        margin-bottom: 0
    }

    .portfolio__delite {
        top: 48px
    }

    .profile-lavel {
        padding: 32px 20px;
        border-radius: 20px;
        background: #fff;
        border-bottom: 0
    }

    .profile-lavel__items {
        margin-bottom: 32px
    }

    .profile-lavel__items:last-child {
        margin-bottom: 0
    }

    .profile-lavel__elipse span {
        display: block
    }

    .profile-lavel__content > .row > .col {
        text-align: left !important
    }

    .profile-lavel__content > .row > .col > .title {
        margin-bottom: 8px
    }

    .profile-lavel__content > .row > .col > .title:last-child {
        margin-bottom: 0
    }

    .testing__item {
        margin-bottom: 60px
    }

    .testing__item:last-child {
        margin-bottom: 0
    }

    .testing .btn-block > .row > .col {
        width: 100%;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center
    }

    .testing .btn {
        width: 100%;
        max-width: 476px
    }

    .my-courses__items > .row {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse
    }

    .my-courses__items > .row > .col {
        width: 100%
    }

    .my-courses__item-content .title-block {
        margin-bottom: 38px
    }

    .my-courses__item-content .title-block:last-child {
        margin-bottom: 0
    }

    .my-courses__item-content .rounded-block {
        padding: 153px 32px 48px
    }

    .my-courses__item-content .rounded-block .checked-items {
        margin-right: 0
    }

    .my-courses .btn-block > .row > .col {
        width: 100%
    }

    .my-courses .btn-block .btn {
        max-width: 430px
    }

    .footer__top {
        border-bottom: 0;
        padding-top: 48px;
        padding-bottom: 32px
    }

    .footer__top .row .col {
        width: 100%;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start
    }

    .footer .main-nav ul {
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start
    }

    .footer__info-links {
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start
    }

    .footer__bottom {
        padding-top: 0;
        padding-bottom: 32px
    }

    .footer__bottom > .container > .row {
        margin: -16px
    }

    .footer__bottom > .container > .row > .col {
        padding: 16px;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start
    }

    .footer__bottom > .container > .row > .col:first-child {
        -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
        order: 3
    }

    .footer__bottom > .container > .row > .col:nth-child(2) {
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1;
        width: 100%
    }

    .footer__bottom > .container > .row > .col:nth-child(3) {
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2
    }

    .footer__bottom > .container > .row > .col:nth-child(4) {
        -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
        order: 4;
        width: 100%
    }

    .footer .contact-links {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        border-top: 1px solid rgba(135, 143, 166, .4);
        border-bottom: 1px solid rgba(135, 143, 166, .4);
        padding-top: 32px;
        padding-bottom: 32px;
        width: 100%
    }

    .footer .contact-links li {
        margin-right: 0;
        margin-bottom: 24px
    }

    .footer .contact-links li:last-child {
        margin-bottom: 0
    }
}

@media (max-width: 768px) {
    .tablet-md-show {
        display: -webkit-box !important;
        display: -ms-flexbox !important;
        display: flex !important
    }

    .tablet-md-hide {
        display: none !important
    }

    .title_small {
        margin-bottom: 8px
    }

    .title_small:last-child {
        margin-bottom: 0
    }

    .title-block .title {
        margin-bottom: 8px
    }

    .title-block .title:last-child {
        margin-bottom: 0
    }

    .partners {
        padding-bottom: 80px
    }

    .partners:before {
        display: none
    }

    .partners .slick-slide > div {
        height: auto
    }

    .all-events-page-continues .top-block__content .top-block__head {
        margin-bottom: 32px
    }

    .all-events-page-continues .top-block__content .top-block__head:last-child {
        margin-bottom: 0
    }

    .info-item__content {
        padding: 24px 16px
    }

    .info-item__content-head {
        margin-bottom: 16px
    }

    .info-item__content-head:last-child {
        margin-bottom: 0
    }

    .info-item__options {
        margin-bottom: 16px
    }

    .info-item__options:last-child {
        margin-bottom: 0
    }

    .info-item__options > .row {
        margin: -4px
    }

    .info-item__options > .row > .col {
        padding: 4px
    }

    .text-w-icon__icon {
        margin-right: 8px
    }

    .text-w-icon__icon:last-child {
        margin-right: 0
    }

    .auth__content {
        max-width: 80%
    }

    .faq__answer .faq__avatar {
        margin-top: auto;
        margin-bottom: auto
    }

    .top-block__head {
        margin-bottom: 32px
    }

    .top-block__head:last-child {
        margin-bottom: 0
    }

    .top-block__head .title-block > .title {
        margin-bottom: 8px
    }

    .top-block__head .title-block > .title:last-child {
        margin-bottom: 0
    }

    .course-steps__head {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }

    .course-steps__head li {
        margin-right: 0
    }

    .knowledge__content > .row > .col {
        width: 100%
    }

    .portfolio .form__label-title {
        margin-right: 0;
        margin-bottom: 32px
    }

    .portfolio .select-label {
        width: 100%;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start
    }

    .portfolio .select-mod {
        width: 100%
    }

    .footer .main-nav ul {
        display: block;
        -webkit-columns: 2;
        -moz-columns: 2;
        column-count: 2
    }

    .footer .main-nav ul li {
        margin-bottom: 32px;
        margin-right: 0
    }
}

@media (max-width: 640px) {
    .profile__item-wrapper > .row > .col {
        width: 100%
    }

    .certificate__item {
        padding-left: 0
    }

    .certificate__item_green {
        padding: 24px 16px 48px
    }

    .my-courses__item-content .rounded-block .checked-items > .row > .col {
        width: 100%
    }
}

@media (max-width: 576px) {
    .container {
        padding-left: 16px;
        padding-right: 16px
    }

    .mt-48 {
        margin-top: 16px
    }

    .mt-110 {
        margin-top: 80px
    }

    .mb-111 {
        margin-bottom: 80px
    }

    .popup {
        padding: 0
    }

    .popup__content {
        max-width: none;
        height: 100%;
        padding: 80px 16px 30px;
        border-radius: 0
    }

    .popup__close {
        margin-top: 0;
        top: 32px;
        bottom: auto;
        left: 16px;
        -webkit-mask-repeat: no-repeat;
        mask-repeat: no-repeat;
        -webkit-mask-position: center;
        mask-position: center;
        -webkit-mask-size: 100% 100%;
        mask-size: 100% 100%;
        /*background: #333;*/
        /*-webkit-mask-image: url(/img/left-arrow.svg);*/
        /*mask-image: url(/img/left-arrow.svg);*/
        width: 30px;
        height: 30px
    }

    .title {
        font-size: 30px
    }

    .btn-block-2 > .row {
        margin: -8px
    }

    .btn-block-2 > .row > .col {
        padding: 8px
    }

    .checkbox_style-2 {
        padding: 32px 16px 32px 56px
    }

    .checkbox_style-2 .checkbox__icon {
        left: 16px
    }

    .slick-slider .slick-next, .slick-slider .slick-prev {
        top: 100%;
        bottom: auto;
        margin-top: 8px;
        width: 24px;
        height: 24px
    }

    .slick-slider .slick-next i, .slick-slider .slick-prev i {
        background: #fff
    }

    .mentors {
        padding-top: 80px;
        padding-bottom: 80px;
        margin-bottom: -80px
    }

    .mentors__img {
        margin-bottom: 24px
    }

    .mentors__content ul li {
        margin-bottom: 16px
    }

    .mentors__content ul li:last-child {
        margin-bottom: 0
    }

    .mentors_one-person .mentors__img {
        max-width: 330px
    }

    .mentors_one-person .mentors__info {
        padding-top: 0;
        padding-bottom: 24px
    }

    .student-feedback {
        padding-bottom: 80px
    }

    .student-feedback:before {
        margin-left: -16px;
        margin-right: -16px;
        height: 100%
    }

    .student-feedback__slider, .student-feedback__title-block {
        padding-left: 0;
        padding-right: 0
    }

    body {
        font-size: 16px
    }

    .content-top-nav {
        margin-bottom: 32px
    }

    .all-events__content > .row > .col {
        width: 100%
    }

    .all-events__filters-items {
        padding: 24px 16px 32px
    }

    .all-events__filters-item {
        margin-bottom: 24px
    }

    .all-events__filters-item:last-child {
        margin-bottom: 0
    }

    .all-events__filters-item > .title {
        margin-bottom: 16px;
        font-size: 18px !important
    }

    .all-events__filters-item > .title:last-child {
        margin-bottom: 0
    }

    .all-events-page-continues .top-block {
        padding-top: 49px;
        padding-bottom: 60px
    }

    .not-found-item__icon {
        margin-bottom: 24px
    }

    .not-found-item__icon:last-child {
        margin-bottom: 0
    }

    .not-found-item .btn {
        max-width: none
    }

    .go-back-link span {
        display: none
    }

    .go-back-link_big {
        margin-bottom: 8px
    }

    .pagination {
        margin-top: 24px;
        width: 100%;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between
    }

    .pagination__list {
        margin-left: 16px;
        margin-right: 16px
    }

    .profile .form .toast__text {
        font-size: 14px;
        line-height: 214%
    }

    .profile__item {
        padding: 24px 16px
    }

    .profile__item_big {
        padding-bottom: 39px
    }

    .profile_lavels .profile__item {
        padding-bottom: 80px
    }

    .profile_lavels .faq__answer .faq__content:before {
        content: "";
        display: block;
        width: 0;
        height: 0;
        -moz-transform: scale(.9999);
        border-color: transparent transparent transparent #fff;
        border-style: solid;
        border-width: 13px 0 13px 14px
    }

    .profile-cart {
        text-align: left
    }

    .profile-cart__head {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start
    }

    .profile-cart__avatar {
        width: 100px;
        height: 100px;
        margin-bottom: 0;
        margin-right: 20px
    }

    .profile-cart__avatar:last-child {
        margin-right: 0
    }

    .profile-cart__info {
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end
    }

    .auth__content {
        max-width: 100%
    }

    .show-more {
        margin-top: 24px
    }

    .faq__item {
        margin-bottom: 24px
    }

    .faq__item:last-child {
        margin-bottom: 0
    }

    .faq__question .faq__avatar {
        margin-right: 8px
    }

    .faq__question .faq__avatar:last-child {
        margin-right: 0
    }

    .faq__question .faq__content {
        padding: 20px 16px 20px 18px;
        margin-left: 14px
    }

    .faq__question .faq__content:before {
        content: "";
        display: block;
        width: 0;
        height: 0;
        -moz-transform: scale(.9999);
        border-color: transparent var(--global-color) transparent transparent;
        border-style: solid;
        border-width: 13px 14px 13px 0
    }

    .faq__answer .faq__avatar {
        margin-left: 8px
    }

    .faq__answer .faq__avatar:first-child {
        margin-left: 0
    }

    .faq__answer .faq__content {
        padding: 24px 13px 24px 16px;
        margin-right: 14px
    }

    .faq__answer .faq__content:before {
        content: "";
        display: block;
        width: 0;
        height: 0;
        -moz-transform: scale(.9999);
        border-color: transparent transparent transparent #fff;
        border-style: solid;
        border-width: 13px 0 13px 14px
    }

    .faq__content {
        width: calc(100% - 78px)
    }

    .joint-development__images .row {
        margin: -3px
    }

    .joint-development__images .row .col {
        padding: 3px
    }

    .joint-development__images > .row > .col > .row {
        height: calc(100% + 6px)
    }

    .joint-development__img {
        border-radius: 5px
    }

    .joint-development__content .title {
        margin-bottom: 24px
    }

    .joint-development__content .title:last-child {
        margin-bottom: 0
    }

    .joint-development__content .btn {
        max-width: 100%
    }

    .joint-development__text {
        margin-bottom: 32px
    }

    .joint-development__text:last-child {
        margin-bottom: 0
    }

    .counters > .row {
        margin: -16px
    }

    .counters > .row > .col {
        width: 100%;
        text-align: center;
        padding: 16px
    }

    .top-block__content > .title {
        margin-bottom: 24px
    }

    .top-block .checked-items > .row > .col {
        width: 50%
    }

    .rounded-block {
        padding: 48px 16px
    }

    .rounded-block__stiker {
        padding: 30px 14px;
        width: 112px;
        height: 109px;
        right: 16px
    }

    .rounded-block__stiker-content .title {
        font-size: 24px !important
    }

    .rounded-block__stiker-content p {
        font-size: 14px
    }

    .show-hide-block__item {
        padding-left: 16px;
        padding-right: 16px;
        margin-bottom: 16px
    }

    .show-hide-block__item:last-child {
        margin-bottom: 0
    }

    .show-hide-block__content {
        padding-top: 16px;
        margin-top: 16px
    }

    .course-steps__head {
        padding-right: 32px
    }

    .course-steps__content > p ,.course-steps__content > h3{
        font-size: 18px;
        line-height: 167%
    }

    .checked-text_red {
        padding-left: 40px
    }

    .home-work {
        padding-top: 80px;
        padding-bottom: 80px
    }

    .home-work__items > .row {
        margin-top: -16px;
        margin-bottom: -16px
    }

    .home-work__items > .row > .col {
        padding-top: 16px;
        padding-bottom: 16px
    }

    .home-work__content > .title {
        margin-bottom: 24px
    }

    .home-work__content-items > .row {
        margin-top: -8px;
        margin-bottom: -8px
    }

    .home-work__content-items > .row > .col {
        padding-top: 8px;
        padding-bottom: 8px
    }

    .mat-link {
        font-size: 18px
    }

    .event-program__continue-course {
        padding: 48px 16px
    }

    .event-program__item {
        padding: 48px 16px;
        margin-bottom: 16px
    }

    .event-program__item:last-child {
        margin-bottom: 0
    }

    .event-program__item.active {
        margin-bottom: 16px
    }

    .event-program__item.active:last-child {
        margin-bottom: 0
    }

    .event-program__item .video-player {
        margin-left: -16px;
        margin-right: -16px
    }

    .event-program__item-wrapper:last-child {
        margin-top: 24px
    }

    .event-program__item-wrapper .btn {
        max-width: none
    }

    .event-program__info .title {
        margin-bottom: 24px
    }

    .event-program__info .title:last-child {
        margin-bottom: 0
    }

    .event-program__info ul li {
        margin-bottom: 16px
    }

    .event-program__info ul li:last-child {
        margin-bottom: 0
    }

    .join-event {
        padding-top: 48px;
        padding-bottom: 0;
        border-radius: 0
    }

    .join-event__items > .row {
        margin-top: -12px;
        margin-bottom: -12px
    }

    .join-event__items > .row > .col {
        padding-top: 12px;
        padding-bottom: 12px
    }

    .join-event__content > .title {
        margin-bottom: 24px
    }

    .join-event__content-items {
        margin-bottom: 48px
    }

    .join-event__content-items:last-child {
        margin-bottom: 0
    }

    .join-event__content-items > .row {
        margin-top: -8px;
        margin-bottom: -8px
    }

    .join-event__content-items > .row > .col {
        padding-top: 8px;
        padding-bottom: 8px
    }

    .join-event .toast {
        margin-left: -16px;
        margin-right: -16px;
        padding-right: 16px;
        padding-top: 48px;
        padding-bottom: 48px
    }

    .toast_white {
        padding: 17px 16px 17px 54px
    }

    .toast_white .toast__text:before {
        top: 0;
        bottom: 0;
        margin-top: auto;
        margin-bottom: auto
    }

    .toast_no-icon {
        padding: 48px 16px
    }

    .toast_no-icon .toast__content {
        font-size: 18px
    }

    .knowledge__content {
        margin-bottom: 48px
    }

    .knowledge__content:last-child {
        margin-bottom: 0
    }

    .knowledge__content > .title {
        margin-bottom: 24px
    }

    .knowledge__content > .row {
        margin-top: -8px;
        margin-bottom: -8px
    }

    .knowledge__content > .row > .col {
        padding-top: 8px;
        padding-bottom: 8px
    }

    .knowledge__items > .row > .col {
        width: 100%
    }

    .reg-block {
        padding: 80px 16px
    }

    .reg-block__items > .row {
        margin-top: -12px;
        margin-bottom: -12px
    }

    .reg-block__items > .row > .col {
        padding-top: 12px;
        padding-bottom: 12px
    }

    .reg-block .btn-block {
        margin-bottom: 16px
    }

    .reg-block .btn-block:last-child {
        margin-bottom: 0
    }

    .reg-block .btn-block > .row {
        margin: -8px
    }

    .reg-block .btn-block > .row > .col {
        padding: 8px
    }

    .reg-block__info {
        padding-top: 24px;
        margin-bottom: 16px
    }

    .reg-block__info:last-child {
        margin-bottom: 0
    }

    .reg-block .checked-items {
        margin-bottom: 24px
    }

    .reg-block .checked-items:last-child {
        margin-bottom: 0
    }

    .reg-block .toast {
        margin-bottom: 24px
    }

    .reg-block .toast:last-child {
        margin-bottom: 0
    }

    .reg-block .form__label {
        margin-bottom: 24px
    }

    .reg-block .form__label:last-child {
        margin-bottom: 0
    }

    .reg-block_1 {
        margin-left: -16px;
        margin-right: -16px;
        border-radius: 0;
        margin-bottom: -80px
    }

    .reg-block_2 .title-block {
        padding-right: 80px
    }

    .reg-block_2 .checked-items {
        padding-top: 24px;
        margin-bottom: 24px
    }

    .reg-block_2 .checked-items:last-child {
        margin-bottom: 0
    }

    .reg-block_2 .btn-block-2 {
        padding-top: 24px
    }

    .join-the-telegram__content {
        padding: 48px 16px
    }

    .certificate__items > .row {
        margin-top: -24px;
        margin-bottom: -24px
    }

    .certificate__items > .row > .col {
        padding-top: 24px;
        padding-bottom: 24px
    }

    .certificate__item > .title {
        margin-bottom: 32px
    }

    .certificate__item .btn {
        margin-top: 24px
    }

    .certificate__item-head .logo {
        width: 80px
    }

    .certificate__confirmation {
        margin-bottom: 16px
    }

    .certificate__confirmation strong {
        font-size: 20px
    }

    .certificate .title-block {
        margin-bottom: 24px
    }

    .certificate__date {
        margin-bottom: 16px
    }

    .portfolio__items {
        margin-bottom: 24px
    }

    .portfolio__item {
        margin-bottom: 16px;
        padding: 32px 16px
    }

    .portfolio__item:last-child {
        margin-bottom: 0
    }

    .portfolio__item > .row > .col:last-child, .portfolio__item > .row > .col:nth-child(3) {
        width: 100%
    }

    .portfolio__item .row {
        margin: -12px
    }

    .portfolio__item .row .col {
        padding: 12px
    }

    .portfolio__item_head {
        margin-bottom: 24px
    }

    .portfolio__item_head:last-child {
        margin-bottom: 0
    }

    .portfolio__delite {
        top: 29px;
        right: 16px
    }

    .portfolio__info > .row {
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between
    }

    .portfolio__edit {
        width: 100%
    }

    .profile-lavel {
        padding: 32px 16px
    }

    .profile-lavel__item {
        margin-right: -10px
    }

    .profile-lavel__elipse {
        width: 20px;
        height: 20px
    }

    .profile-lavel__line ul {
        bottom: 16px;
        margin-left: -12px
    }

    .profile-lavel__line ul li {
        font-size: 14px
    }

    .profile-lavel__content > .row > .col > .title {
        font-size: 18px !important
    }

    .profile-lavel__content > .row > .col p {
        font-size: 16px
    }

    .testing__item {
        margin-bottom: 48px
    }

    .testing__item > .row {
        margin: -4px
    }

    .testing__item > .row > .col {
        padding: 4px
    }

    .my-courses__item-content {
        padding: 48px 16px
    }

    .my-courses__continue-course {
        padding-left: 16px;
        padding-right: 16px
    }

    .my-courses__item-content .title-block {
        margin-bottom: 24px
    }

    .my-courses__item-content > ul {
        margin-bottom: 32px
    }

    .my-courses__item-content > ul:last-child {
        margin-bottom: 0
    }

    .my-courses__item-content .rounded-block {
        padding: 114px 16px 48px
    }

    .my-courses .btn-block .btn {
        max-width: none
    }

    .my-courses-lessons {
        padding: 64px 16px
    }

    .contacts__content .contact-links > .row > .col {
        width: 100% !important
    }

    .contacts__content .toast {
        margin-left: -16px;
        margin-right: -16px;
        padding-right: 16px;
        padding-top: 48px;
        padding-bottom: 48px
    }

    .footer__bottom > .container > .row > .col {
        width: 100%
    }
}

@media (max-width: 480px) {
    .footer .social, .footer__info {
        width: 100%;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between
    }
}

@media (max-width: 360px) {
    .course-steps__head li {
        letter-spacing: normal
    }
}
