@font-face {
    font-family: Raleway;
    font-display: swap;
    src: url(../fonts/Raleway-Black.woff2) format("woff2"), url(../fonts/Raleway-Black.woff) format("woff");
    font-weight: 900;
    font-style: normal
}

@font-face {
    font-family: Raleway;
    font-display: swap;
    src: url(../fonts/Raleway-Bold.woff2) format("woff2"), url(../fonts/Raleway-Bold.woff) format("woff");
    font-weight: 700;
    font-style: normal
}

@font-face {
    font-family: Raleway;
    font-display: swap;
    src: url(../fonts/Raleway-Regular.woff2) format("woff2"), url(../fonts/Raleway-Regular.woff) format("woff");
    font-weight: 400;
    font-style: normal
}

@font-face {
    font-family: Raleway;
    font-display: swap;
    src: url(../fonts/Raleway-Medium.woff2) format("woff2"), url(../fonts/Raleway-Medium.woff) format("woff");
    font-weight: 500;
    font-style: normal
}

@font-face {
    font-family: Raleway;
    font-display: swap;
    src: url(../fonts/Raleway-SemiBold.woff2) format("woff2"), url(../fonts/Raleway-SemiBold.woff) format("woff");
    font-weight: 600;
    font-style: normal
}

* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box
}

html {
    font-size: 20px;
    scroll-behavior: smooth
}

body {
    font-size: 1rem;
    line-height: 1.3;
    color: #475566;
    font-weight: 700;
    font-family: Raleway;
    font-variant-numeric: lining-nums proportional-nums;
    letter-spacing: -.24px
}

.container {
    max-width: 1268px;
    padding: 0 14px;
    width: 100%;
    margin: 0 auto
}

img {
    max-width: 100%
}

a {
    text-decoration: none;
    -webkit-transition: all .25s linear;
    transition: all .25s linear
}

.icon::before {
    content: "";
    mask: var(--icon) center center/contain no-repeat;
    -webkit-mask: var(--icon) center center/contain no-repeat;
    width: 18px;
    height: 12px;
    display: block;
    -webkit-transition: .25s;
    transition: .25s;
    background: #fff
}

.text-green {
    color: #66cc71
}

.size-50 {
    font-size: 50px;
    line-height: 1.05
}

.size-44 {
    font-size: 50px;
    line-height: 1
}

.size-26 {
    font-size: 26px
}

.size-22 {
    font-size: 22px
}

.size-20 {
    font-size: 20px
}

.size-18 {
    font-size: 18px
}

.size-16 {
    font-size: 16px
}

.size-14 {
    font-size: 14px
}

.size-12 {
    font-size: 12px
}

.line-h-1-1 {
    line-height: 1.1
}

.text-uppercase {
    text-transform: uppercase
}

.fw-700 {
    font-weight: 700
}

.fw-600 {
    font-weight: 600
}

.fw-500 {
    font-weight: 500
}

.fw-400 {
    font-weight: 400
}

.mb-50 {
    margin-bottom: 50px
}

.mb-40 {
    margin-bottom: 40px
}

.mb-30 {
    margin-bottom: 30px
}

.mb-20 {
    margin-bottom: 20px
}

.mb-14 {
    margin-bottom: 14px
}

.mb-10 {
    margin-bottom: 10px
}

.mb-4 {
    margin-bottom: 4px
}

.link-green {
    color: #66cc71;
    border-bottom: 1px solid
}

.link-green:hover {
    border-bottom: 1px solid transparent
}

.link-white {
    color: #fff;
    border-bottom: 1px solid
}

.link-white:hover {
    border-bottom: 1px solid transparent
}

.text-center {
    text-align: center
}

.button {
    outline: 0;
    border: none;
    border-radius: 100px;
    background: linear-gradient(108deg, #92e093 8.86%, #66cc72 51.98%), linear-gradient(108deg, #98eb99 8.86%, #6bd677 51.98%);
    -webkit-box-shadow: 0 -2px 0 0 rgba(255, 255, 255, .25) inset;
    box-shadow: 0 -2px 0 0 rgba(255, 255, 255, .25) inset;
    height: 64px;
    font-family: inherit;
    font-size: 14px;
    width: 100%;
    text-transform: uppercase;
    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;
    font-weight: 500;
    color: #fff;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse
}

.button:before {
    margin-left: 8px
}

.button_white {
    color: #475566;
    background: rgba(255, 255, 255, .9);
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    width: inherit;
    padding: 0 40px
}

.button_white:before {
    background: #66cc71
}

body::after {
    content: "";
    background-color: rgba(0, 0, 0, .5);
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    -webkit-transition: opacity .8s ease 0s;
    transition: opacity .8s ease 0s;
    pointer-events: none;
    z-index: 149
}

body.popup-show::after {
    opacity: 1
}

.popup {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    padding: 30px 10px;
    -webkit-transition: visibility .8s ease 0s;
    transition: visibility .8s ease 0s;
    visibility: hidden;
    pointer-events: none
}

.popup_show {
    z-index: 150;
    visibility: visible;
    overflow: auto;
    pointer-events: auto
}

.popup_show .popup__content {
    visibility: visible;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1)
}

.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;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    min-height: 100%;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    width: 100%;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    align-items: center
}

.popup__content {
    visibility: hidden;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    -webkit-transition: -webkit-transform .3s ease 0s;
    transition: -webkit-transform .3s ease 0s;
    transition: transform .3s ease 0s;
    transition: transform .3s ease 0s, -webkit-transform .3s ease 0s;
    background-color: #fff;
    width: 100%;
    position: relative;
    max-width: 640px;
    border-radius: 36px;
    padding: 60px 30px 60px
}

.lock .popup__content {
    visibility: visible
}

.popup__close {
    position: absolute;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    top: 20px;
    right: 20px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background: 0 0;
    border: none;
    -webkit-transition: all .25s linear;
    transition: all .25s linear;
    cursor: pointer;
    outline: 0
}

.popup__close:before {
    background: #475566
}

.popup__close:hover:before {
    background: #66cc71
}

.line-modal {
    margin: 10px 0;
    background: rgba(71, 85, 102, .1);
    width: 100%;
    height: 1px
}

.section-start {
    background: linear-gradient(279deg, #dcfadc 100%, #d9f1fc 0, #edfcef 69.9%), #ebfdec;
    height: 970px;
    position: relative;
    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;
    width: 100%;
    overflow: hidden
}

.no-webp .section-start:before {
    background-image: url(../img/bg.png)
}

.section-start:before {
    content: "";
    bottom: 0;
    background-position: center;
    width: 100%;
    height: 222px;
    position: absolute;
    z-index: 1
}

.start-top {
    position: absolute;
    top: 40px;
    width: 100%;
    max-width: 1268px;
    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
}

.start-info__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-left: 40px
}

.start-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.start-info__icon {
    border-radius: 32px;
    background: #66cc71;
    width: 44px;
    height: 44px;
    margin-right: 10px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    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
}

.start-info__icon:before {
    width: 24px;
    height: 24px
}

.start-container {
    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
}

.start-woman {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: absolute
}

.start-woman img {
    max-width: inherit
}

.start-content {
    position: relative;
    z-index: 1;
    width: 100%
}

.top-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.top-info__date {
    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;
    border-radius: 20px;
    background: linear-gradient(108deg, #92e093 8.86%, #66cc72 51.98%), linear-gradient(276deg, #49b86e 0, #5ccc81 100%);
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
    width: 96px;
    height: 86px;
    color: #fff;
    text-align: center;
    margin-right: 30px
}

.top-info__day {
    font-weight: 600
}

.start-event {
    border-radius: 24px;
    border: 1px solid #fff;
    background: linear-gradient(108deg, rgba(255, 255, 255, .03) 32.71%, #fff 100%);
    -webkit-box-shadow: 0 15px 30px 0 rgba(107, 214, 119, .3);
    box-shadow: 0 15px 30px 0 rgba(107, 214, 119, .3);
    padding: 20px 30px;
    width: 480px
}

.healthy-items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-top: 30px
}

.healthy-item {
    margin-top: 30px;
    border-radius: 36px;
    -ms-flex-preferred-size: calc(50% - 15px);
    flex-basis: calc(50% - 15px);
    padding: 50px 30px 30px
}

.healthy-title {
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(71, 85, 102, .1)
}

.healthy-text {
    font-weight: 600
}

.healthy-item_one {
    background: linear-gradient(283deg, #e8f6fc 0, #edfcef 100%), linear-gradient(180deg, #fff 12.76%, #f7faf7 100%)
}

.healthy-item_two {
    background: linear-gradient(112deg, #ebffe8 0, #fff5c5 100%)
}

.healthy-item_three {
    background: linear-gradient(112deg, #ebffe8 0, #ffd9d0 100%), linear-gradient(112deg, #ebffe8 0, #fff5c5 100%)
}

.healthy-item_four {
    background: linear-gradient(283deg, #cbf0fd 0, #ffe3f1 100%), linear-gradient(283deg, #e8f6fc 0, #edfcef 100%), linear-gradient(180deg, #fff 12.76%, #f7faf7 100%)
}

.section-healthy {
    margin-top: 60px
}

.section-topic {
    margin-top: 160px
}

.section-topic .container {
    position: relative
}

.section-topic .container:before {
    content: "";
    background-image: url(../img/pic-topic.svg);
    width: 18px;
    height: 18px;
    background-size: cover;
    position: absolute;
    top: -60px;
    left: 140px
}

.topic-items {
    max-width: 860px;
    margin: 0 auto
}

.topic-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 30px 0;
    border-bottom: 1px solid rgba(71, 85, 102, .1)
}

.topic-item:last-child {
    border-bottom: none
}

.topic-item__number {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    -ms-flex-preferred-size: 110px;
    flex-basis: 110px;
    margin-right: 20px;
    font-weight: 900;
    color: #66cc71;
    font-size: 80px
}

.topic-item__pic {
    -ms-flex-preferred-size: 66px;
    flex-basis: 66px;
    margin-left: 20px;
    -ms-flex-negative: 0;
    flex-shrink: 0
}

.topic-item__title {
    width: 100%
}

.medicine-container {
    position: relative;
    border-radius: 36px;
    background: linear-gradient(269deg, #dcfadc 98.4%, #d9f1fc 1.6%, #edfcef 69.26%), linear-gradient(180deg, rgba(255, 255, 255, .7) 12.76%, #f7faf7 100%);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    padding: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.medicine-pic {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-preferred-size: 306px;
    flex-basis: 306px;
    -ms-flex-negative: 0;
    flex-shrink: 0
}

.medicine-pic img {
    position: absolute;
    bottom: -30px;
    left: -30px
}

.medicine-pic_mobile {
    display: none
}

.medicine-content {
    letter-spacing: -.4px
}

.medical-event {
    -ms-flex-preferred-size: 255px;
    flex-basis: 255px;
    margin-left: 40px;
    letter-spacing: -.35px;
    -ms-flex-negative: 0;
    flex-shrink: 0
}

.section-medicine {
    margin-top: 120px
}

.section-teacher {
    margin-top: 23px;
    background: linear-gradient(332deg, rgba(217, 241, 252, .5) 17.27%, rgba(220, 250, 220, 0) 75.99%);
    height: 862px;
    width: 100%;
    overflow: hidden;
    position: relative
}

.no-webp .section-teacher:before {
    background-image: url(../img/bg.png)
}

.section-teacher:before {
    content: "";
    bottom: 0;
    background-position: center;
    width: 100%;
    height: 222px;
    position: absolute;
    z-index: 1;
    left: 0;
    -webkit-transform: scale(-1, 1);
    -ms-transform: scale(-1, 1);
    transform: scale(-1, 1)
}

.section-teacher .container {
    position: relative
}

.teacher-woman {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: absolute;
    top: 0;
    left: -100px
}

.teacher-woman img {
    max-width: inherit
}

.teacher-content {
    padding-top: 190px;
    padding-left: 632px
}

.teacher-mobile {
    display: none
}

.organization-items {
    max-width: 777px;
    width: 100%;
    margin: 30px auto 0
}

.section-organization {
    margin-top: 80px
}

.organization-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-top: 20px
}

.organization-item:last-child .organization-item__title {
    border-bottom: none
}

.organization-item:last-child {
    border-bottom: none
}

.organization-item__number {
    -ms-flex-preferred-size: 279px;
    flex-basis: 279px;
    margin-right: 30px;
    color: #66cc71;
    text-align: right;
    font-weight: 900;
    letter-spacing: -1.6px;
    line-height: 1;
    font-size: 80px
}

.organization-item__title {
    -ms-flex-preferred-size: calc(100% - 309px);
    flex-basis: calc(100% - 309px);
    border-bottom: 1px solid rgba(71, 85, 102, .1);
    min-height: 100px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-bottom: 20px
}

.callback-container {
    border-radius: 30px;
    background: linear-gradient(116deg, #60bf6b 41.27%, #98eb99 102.46%), linear-gradient(308deg, #dcfadc 100%, #d9f1fc 0, #edfcef 69.9%), #2a53a6;
    padding: 60px 54px;
    color: #fff
}

.form-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: start;
    align-items: center;
    gap: 10px;
}

.form-item {
    -ms-flex-preferred-size: calc(33.3% - 5px);
    flex-basis: calc(33.3% - 5px)
}

.input {
    width: 100%;
    padding: 0 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 60px;
    border-radius: 40px;
    background: rgba(255, 255, 255, .2);
    outline: 0;
    border: none;
    font-weight: 600;
    font-family: inherit;
    font-size: 14px;
    color: #fff
}

.input::-webkit-input-placeholder {
    color: #fff
}

.input::-moz-placeholder {
    color: #fff
}

.input:-ms-input-placeholder {
    color: #fff
}

.input::-ms-input-placeholder {
    color: #fff
}

.input::placeholder {
    color: #fff
}

.input:focus, .input:hover {
    background: rgba(255, 255, 255, .3)
}

.section-callback {
    margin-top: 100px
}

.form-final {
    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
}

.form-final .size-14 {
    font-weight: 600
}

.callback-medicine {
    border-radius: 36px;
    border: 1px solid rgba(255, 255, 255, .12);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    max-width: 840px;
    margin: 0 auto;
    padding: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.callback-medicine__pic {
    -ms-flex-preferred-size: 175px;
    flex-basis: 175px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    margin-right: 24px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative
}

.callback-medicine__pic img {
    max-width: inherit;
    position: absolute;
    left: -30px;
    bottom: -30px
}

.callback-medicine__pic-mobile {
    display: none
}

.swiper {
    overflow: hidden
}

.swiper-wrapper {
    width: 100%;
    height: 100%;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative
}

.swiper-vertical .swiper-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
}

.swiper-autoheight .swiper-wrapper {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start
}

.swiper-initialized .swiper-slide {
    -ms-flex-negative: 0;
    flex-shrink: 0
}

.swiper-android .swiper-slide, .swiper-android .swiper-wrapper {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
}

.swiper-button-lock {
    display: none !important
}

@media (max-width: 1350px) {
    .start-top {
        width: calc(100% - 40px)
    }
}

@media (max-width: 1200px) {
    .teacher-content {
        padding-left: 520px;
        padding-top: 150px
    }
}

@media (max-width: 991px) {
    html {
        font-size: 14px
    }

    .size-50 {
        font-size: 26px
    }

    .size-44 {
        font-size: 30px
    }

    .size-26 {
        font-size: 16px
    }

    .size-22 {
        font-size: 14px
    }

    .size-20 {
        font-size: 16px;
        letter-spacing: -.32px
    }

    .size-18 {
        font-size: 12px
    }

    .size-16 {
        font-size: 12px
    }

    .size-14 {
        font-size: 12px
    }

    .size-12 {
        font-size: 6px
    }

    .mb-40 {
        margin-bottom: 20px
    }

    .mb-30 {
        margin-bottom: 14px
    }

    .button {
        height: 54px;
        font-size: 12px;
        line-height: 1
    }

    .popup__content {
        padding: 54px 14px 30px
    }

    .popup__content .size-26 {
        font-size: 26px;
        line-height: 1.1
    }

    .line-modal {
        margin: 20px 0
    }

    .section-start:before {
        display: none
    }

    .section-start {
        padding: 104px 0 40px;
        height: auto
    }

    .start-info {
        display: none
    }

    .start-woman {
        display: none
    }

    .section-start-content {
        display: none
    }

    .top-info {
        margin-bottom: 10px
    }

    .start-logo {
        width: 96px
    }

    .top-info__date {
        width: 51px;
        margin-right: 16px;
        height: 57px
    }

    .top-info__time {
        margin-bottom: 4px
    }

    .start-event {
        max-width: 100%;
        padding: 20px 14px;
        text-align: center
    }

    .healthy-items {
        margin-top: 20px
    }

    .healthy-item {
        -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
        margin-top: 10px;
        padding: 14px
    }

    .healthy-title {
        padding-bottom: 10px;
        margin-bottom: 10px
    }

    .section-healthy {
        margin-top: 40px
    }

    .section-topic {
        margin-top: 40px
    }

    .topic-item {
        padding: 14px 0
    }

    .topic-item__number {
        -ms-flex-preferred-size: 60px;
        flex-basis: 60px;
        margin-right: 10px;
        font-size: 40px;
        letter-spacing: -.8px
    }

    .topic-item__pic {
        -ms-flex-preferred-size: 32px;
        flex-basis: 32px;
        margin-left: 10px
    }

    .topic-item__title {
        font-size: 14px
    }

    .medicine-container {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        padding: 84px 14px 20px
    }

    .medicine-pic {
        display: none
    }

    .medicine-pic_mobile {
        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;
        -ms-flex-preferred-size: auto;
        flex-basis: auto
    }

    .medicine-pic_mobile img {
        left: 50%;
        margin-left: -129px;
        position: absolute
    }

    .medicine-content {
        text-align: center
    }

    .medical-event {
        margin-left: 0;
        -ms-flex-preferred-size: auto;
        flex-basis: auto;
        margin-top: 20px
    }

    .section-teacher:before {
        display: none
    }

    .section-teacher {
        height: auto;
        background: 0 0
    }

    .teacher-woman {
        display: none
    }

    .teacher-content {
        padding-left: 0;
        padding-top: 0;
        text-align: center;
        margin-top: 20px
    }

    .teacher-mobile {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        margin: 0 -14px
    }

    .teacher-mobile img {
        max-width: inherit;
        width: 100%
    }

    .organization-items {
        margin-top: 6px
    }

    .section-organization {
        margin-top: 40px
    }

    .organization-item {
        padding: 14px 0;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        border-bottom: 1px solid rgba(71, 85, 102, .1);
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center
    }

    .organization-item__number {
        -ms-flex-preferred-size: auto;
        flex-basis: auto;
        font-size: 44px;
        margin-right: 0;
        margin-bottom: 4px
    }

    .organization-item__title {
        -ms-flex-preferred-size: auto;
        flex-basis: auto;
        padding-bottom: 0;
        min-height: auto;
        width: 100%;
        border-bottom: none;
        text-align: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center
    }

    .callback-container {
        padding: 40px 14px
    }

    .form-flex {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        margin-bottom: 10px
    }

    .form-item {
        margin-bottom: 10px
    }

    .input {
        height: 44px;
        padding: 0 20px
    }

    .section-callback {
        margin-top: 26px
    }

    .form-final {
        text-align: center
    }

    .callback-medicine {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        text-align: center;
        padding: 84px 14px 20px;
        margin-top: 145px
    }

    .callback-medicine__pic {
        display: none;
        -ms-flex-preferred-size: auto;
        flex-basis: auto
    }

    .callback-medicine__pic-mobile {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: end;
        -ms-flex-align: end;
        align-items: flex-end;
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end;
        -ms-flex-preferred-size: auto;
        flex-basis: auto;
        position: relative
    }

    .callback-medicine__pic-mobile picture {
        left: 50%;
        margin-left: -129px;
        position: absolute;
        margin-bottom: -40px
    }
}

.webp .section-start:before {
    background-image: url(../img/bg.webp)
}

.webp .section-teacher:before {
    background-image: url(../img/bg.webp)
}

.check-element{
    display: flex;
    position: relative;
    input{
        &:checked{
            & + label{
                .check-main{
                    border: 1px solid white;
                    &:before{
                        opacity: 1;
                    }
                }
            }
        }
        &.error {
            & + label {
                .check-main {
                    border: 1px solid red;
                }
            }
        }
    }
    label{
        display: flex;
        align-items: flex-start;
        text-align: left;
        cursor: pointer;
        position: relative;
        pointer-events: auto;
        margin: 0 !important;
        a{
            color: white;
        }
    }
}

.check-main{
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    border: 1px solid #E4E5E4;
    margin-right: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    &:before{
        opacity: 0;
        background: white;
    }
}

.input-absolute{
    position: absolute;
    top: 0;
    left: 0;
    pointer-events: none;
    opacity: 0;
    z-index: -1;
}

.form-box{
    margin-bottom: 20px;
}

.excursion-main-button{
    margin-top: 30px !important;
}