@charset "UTF-8";

:root {
    --second-family: 'Montserrat', sans-serif;

    --white: #fff;
    --white2: #f4f4f4;
    --white3: #f7f7f7;
    --white4: #d6d6d6;
    --black: #000;

    --lightest-grey: #f2f2f2;
    --lightest-grey2: #e2e2e2;
    --lightest-grey3: #c3c3c3;
    --dark-grey: #2e2e2e;

    --grey: #2b2b2b;
    --grey2: #3d3d3d;
    --grey3: #525252;
    --grey4: #7e7e7e;
    --grey5: #c8c8c8;
    --grey6: #555;

    --main-yellow: #f9db00;
    --yellow: #ffc701;
    --red: #f00;
}

/* Fonts */

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-Regular.woff2') format('woff2'), url('../fonts/Montserrat-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-Medium.woff2') format('woff2'), url('../fonts/Montserrat-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-SemiBold.woff2') format('woff2'), url('../fonts/Montserrat-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-Bold.woff2') format('woff2'), url('../fonts/Montserrat-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
}

/* Defaults */

html,
body {
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    height: 100%;
}

body {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    background-color: var(--white);
}

.body_colorful {
    background-color: var(--dark-grey);
}

*,
*::before,
*::after {
    -webkit-box-sizing: inherit;
    -moz-box-sizing: inherit;
    box-sizing: inherit;
}

img {
    display: block;
    height: auto;
    max-width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

a {
    text-decoration: none;
}

ul,
ol,
h1,
h2,
h3,
h4,
h5,
h6,
p {
    list-style: none;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--second-family), Arial, Helvetica, sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: var(--grey);
    position: relative;
    width: 100%;
}

body.no-scroll {
    overflow: hidden;
}

.wrapper {
    max-width: 1440px;
    position: relative;
    overflow: hidden;
    padding: 0 50px;
    margin: 0 auto;
}

@media (max-width: 1024px) {
    .wrapper {
        padding: 0 30px;
    }
}

@media (max-width: 800px) {
    .wrapper {
        padding: 0 15px;
    }
}

@media (max-width: 425px) {
    .wrapper {
        padding: 0 15px;
    }
}

.main {
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
}

.last {
    clear: right;
    margin-right: 0 !important;
}

/* Title H1 */

.main-title {
    font-family: var(--second-family), Arial, Helvetica, sans-serif;
    font-weight: 700;
    font-size: 50px;
    color: var(--white);
    margin-bottom: 50px;
}

.main-title_dark {
    color: var(--grey);
}

@media (max-width: 1024px) {
    .main-title {
        font-size: 38px;
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .main-title {
        font-size: 30px;
    }
}

@media (max-width: 430px) {
    .main-title {
        font-size: 26px;
    }
}

/* Title H2 */

.title {
    font-weight: 700;
    font-size: 40px;
    color: var(--grey);
    margin-bottom: 60px;
}

.title_colorful {
    color: var(--white);
}

@media (max-width: 860px) {
    .title {
        font-size: 34px;
        margin-bottom: 32px;
    }
}

@media (max-width: 600px) {
    .title {
        font-size: 24px;
    }
}

/* Button */
.button {
    font-family: var(--second-family), Arial, Helvetica, sans-serif;
    font-weight: 700;
    font-size: 16px;
    display: inline-block;
    color: var(--grey);
    background-color: var(--main-yellow);
    -webkit-transition: background-color 0.3s ease;
    -moz-transition: background-color 0.3s ease;
    -o-transition: background-color 0.3s ease;
    transition: background-color 0.3s ease;
    text-align: left;
    border: none;
    outline: none;
    border-radius: 10px;
    cursor: pointer;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 18px 15px;
}

.button:hover {
    background-color: var(--yellow);
}

.button_colored {
    max-width: 278px;
    padding: 10px 15px;
    background-color: var(--lightest-grey);
}

.button-colorful {
    font-family: var(--second-family), Arial, Helvetica, sans-serif;
    font-weight: 700;
    font-size: 16px;
    border: none;
    border-radius: 10px;
    outline: none;
    cursor: pointer;
    -webkit-transition: background-color 0.3s ease;
    -moz-transition: background-color 0.3s ease;
    -o-transition: background-color 0.3s ease;
    transition: background-color 0.3s ease;
    padding: 15px;
    margin: 0;
}

@media (max-width: 768px) {
    .button-colorful {
        font-size: 14px;
    }
}

.button-colorful_dark {
    color: var(--white);
    background-color: var(--dark-grey);
}

.button-colorful_dark:hover {
    background-color: var(--grey2);
}

.button-colorful_light {
    color: var(--grey);
    background-color: var(--white);
}

.button-colorful_light:hover {
    background-color: var(--lightest-grey);
}

.button_colored.active {
    background-color: var(--main-yellow);
}

.button_colored.active:hover {
    background-color: var(--yellow);
}

.button_colored:hover {
    background-color: var(--main-yellow);
}

.margin-bottom {
    margin-bottom: 120px;
}

@media (max-width: 1024px) {
    .margin-bottom {
        margin-bottom: 100px;
    }
}

@media (max-width: 768px) {
    .margin-bottom {
        margin-bottom: 70px;
    }
}

.button-more {
    cursor: pointer;
}

/* Burger */

.burger {
    display: none;
    width: 40px;
    height: 20px;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    -ms-justify-content: space-between;
    justify-content: space-between;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

@media (max-width: 1024px) {
    .burger {
        display: -webkit-flex;
        display: -moz-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-justify-content: center;
        -moz-justify-content: center;
        -ms-justify-content: center;
        justify-content: center;
        -webkit-align-items: center;
        -moz-align-items: center;
        -ms-align-items: center;
        align-items: center;
        gap: 4px;
        width: 44px;
        height: 44px;
        background-color: var(--black);
        border-radius: 50%;
        position: relative;
        z-index: 99999;
        order: 2;
    }

    .burger span {
        display: block;
        height: 2px;
        width: 20px;
        background-color: var(--white);
        border-radius: 2px;
        -webkit-transition: 0.3s;
        -moz-transition: 0.3s;
        -o-transition: 0.3s;
        transition: 0.3s;
    }

    .burger.open {
        background-color: var(--white);
    }

    .burger.open span:nth-child(1) {
        background-color: var(--black);
        -webkit-transform: translateY(2px) rotate(45deg);
        -moz-transform: translateY(2px) rotate(45deg);
        -ms-transform: translateY(2px) rotate(45deg);
        transform: translateY(2px) rotate(45deg);
    }

    .burger.open span:nth-child(2) {
        opacity: 0;
    }

    .burger.open span:nth-child(3) {
        background-color: var(--black);
        -webkit-transform: translateY(-10px) rotate(-45deg);
        -moz-transform: translateY(-10px) rotate(-45deg);
        -ms-transform: translateY(-10px) rotate(-45deg);
        transform: translateY(-10px) rotate(-45deg);
    }
}

@media (max-width: 425px) {
    .burger {
        width: 44px;
        height: 44px;
    }
}

/* Card course*/

.card-course {
    position: relative;
    -webkit-transition: -webkit-transform 0.3s ease;
    -moz-transition: -moz-transform 0.3s ease;
    -o-transition: -o-transform 0.3s ease;
    transition: transform 0.3s ease;
    min-height: 424px;
}

.card-course:hover {
    -webkit-transform: scale(1.01);
    -moz-transform: scale(1.01);
    -ms-transform: scale(1.01);
    transform: scale(1.01);
}

.card-course__content {
    height: 100%;
    display: none;
    border: 1px solid var(--lightest-grey2);
    border-radius: 30px;
    -webkit-box-shadow: -5px 5px 5px 0 var(--lightest-grey2);
    -moz-box-shadow: -5px 5px 5px 0 var(--lightest-grey2);
    box-shadow: -5px 5px 5px 0 var(--lightest-grey2);
    background-color: var(--white);
    padding: 30px 20px;
}

.card-course__content-title {
    font-size: 24px;
    font-weight: 600;
    -webkit-flex: 1;
    -moz-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

@media (max-width: 1024px) {
    .card-course__content-title {
        font-size: 20px;
    }
}

.card-course__img-wrap {
    position: absolute;
    right: 0;
    bottom: 0;
    max-width: 140px;
    height: auto;
}

@media (max-width: 475px) {
    .card-course__img-wrap {
        max-width: 110px;
    }
}

.card-course__img {
    border-bottom-right-radius: 30px;
}

.card-course__content.active {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
}

@media (max-width: 768px) {
    .card-course__content.active {
        gap: 50px;
    }
}

@media (max-width: 475px) {
    .card-course__content.active {
        gap: 30px;
    }
}

.card-course__title {
    font-weight: 600;
    font-size: 24px;
    color: var(--dark-grey);
    -webkit-flex: 1;
    -moz-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

@media (max-width: 600px) {
    .card-course__title {
        font-size: 20px;
    }
}

@media (max-width: 475px) {
    .card-course__title {
        -webkit-flex: unset;
        -moz-flex: unset;
        -ms-flex: unset;
        flex: unset;
    }
}

.card-course__block {
    -webkit-flex: 1;
    -moz-flex: 1;
    -ms-flex: 1;
    flex: 1;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    -ms-justify-content: space-between;
    justify-content: space-between;
    gap: 50px;
}

@media (max-width: 768px) {
    .card-course__block {
        gap: 30px;
    }
}

@media (max-width: 475px) {
    .card-course__block {
        -webkit-flex: unset;
        -moz-flex: unset;
        -ms-flex: unset;
        flex: unset;
    }
}

.card-course__content-description {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    gap: 20px 48px;
}

@media (max-width: 600px) {
    .card-course__content-description {
        gap: 17px;
    }
}

@media (max-width: 475px) {
    .card-course__content-description {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    }
}

.card-course__content-text {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    gap: 8px;
    font-weight: 400;
    font-size: 14px;
    color: var(--dark-grey);
}

@media (max-width: 475px) {
    .card-course__content-text:nth-child(3),
    .card-course__content-text:nth-child(4) {
        display: none;
    }
}

.card-course__icon {
    -webkit-flex-shrink: 0;
    -moz-flex-shrink: 0;
    -ms-flex-shrink: 0;
    flex-shrink: 0;
}

.card-course__button-more {
    -webkit-align-self: start;
    -moz-align-self: start;
    -ms-align-self: start;
    align-self: start;
    padding: 12px 15px;
}

.card-course__time-block {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
}

.card-course__icon-wrap {
    max-width: 22px;
    flex-shrink: 0;
}

.card-course__content_search-results {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-shadow: unset;
    -moz-box-shadow: unset;
    box-shadow: unset;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 80px;
}

@media (max-width: 600px) {
    .card-course__content_search-results {
        gap: 30px;
    }
}

.card-course_height-search {
    min-height: 250px;
}

@media (max-width: 600px) {
    .card-course_height-search {
        min-height: 200px;
    }
}

/* Through block */
.through-block {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-align-items: flex-start;
    -moz-align-items: flex-start;
    -ms-align-items: flex-start;
    align-items: flex-start;
    gap: 50px;
    border-radius: 30px;
    padding: 50px 30px;
    background-color: var(--grey);
}

@media (max-width: 600px) {
    .through-block {
        gap: 30px;
        padding: 30px 15px;
    }
}

.through-block::before {
    content: '';
    position: absolute;
    top: 52%;
    right: 40px;
    background-image: url(../img/star-form.png);
    background-size: contain;
    background-repeat: no-repeat;
    width: 196px;
    height: 190px;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 50;
}

@media (max-width: 768px) {
    .through-block::before {
        display: none;
    }
}

.through-block_colorful {
    background-color: var(--grey2);
}

.through-block__title {
    font-weight: 700;
    font-size: 40px;
    color: var(--white);
}

@media (max-width: 860px) {
    .through-block__title {
        font-size: 34px;
    }
}

@media (max-width: 600px) {
    .through-block__title {
        font-size: 24px;
    }
}

.through-block_choose::before {
    content: '';
    position: absolute;
    top: 55%;
    right: 34px;
    background-image: url(../img/black-check.png);
    background-size: contain;
    background-repeat: no-repeat;
    width: 245px;
    height: 265px;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 50;
}

@media (max-width: 768px) {
    .through-block_choose::before {
        display: block;
        width: 200px;
        height: 240px;
    }
}

@media (max-width: 600px) {
    .through-block_choose::before {
        right: 0px;
    }
}

.through-block_choose::after {
    content: '';
    position: absolute;
    top: 90%;
    right: -90px;
    background-image: url(../img/black-rhombuses.png);
    background-size: contain;
    background-repeat: no-repeat;
    width: 505px;
    height: 665px;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 10;
}

@media (max-width: 768px) {
    .through-block_choose::after {
        width: 410px;
        height: 505px;
    }
}

@media (max-width: 600px) {
    .through-block_choose::after {
        top: 72%;
        right: -110px;
    }
}

.through-block_documents {
    position: relative;
    overflow: hidden;
}

@media (max-width: 970px) {
    .through-block_documents {
        overflow: visible;
    }
}

.through-block_documents::before {
    content: '';
    position: absolute;
    top: 55%;
    right: 100px;
    background-image: url(../img/documents-img.png);
    background-size: contain;
    background-repeat: no-repeat;
    width: 217px;
    height: 244px;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 50;
}

@media (max-width: 1200px) {
    .through-block_documents::before {
        right: 20px;
    }
}

@media (max-width: 970px) {
    .through-block_documents::before {
        top: -5%;
        right: 47px;
        width: 105px;
        height: 114px;
    }
}

@media (max-width: 600px) {
    .through-block_documents::before {
        top: -3%;
        right: 24px;
        width: 79px;
        height: 88px;
    }
}

.through-block_results {
    position: relative;
    overflow: hidden;
}

.through-block_results::before {
    content: '';
    position: absolute;
    top: 55%;
    right: 34px;
    background-image: url(../img/black-check.png);
    background-size: contain;
    background-repeat: no-repeat;
    width: 245px;
    height: 265px;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 50;
}

@media (max-width: 1024px) {
    .through-block_results::before {
        top: 35%;
        right: -26px;
    }
}

.through-block_results::after {
    content: '';
    position: absolute;
    top: 90%;
    right: -90px;
    background-image: url(../img/black-rhombuses.png);
    background-size: contain;
    background-repeat: no-repeat;
    width: 505px;
    height: 665px;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 10;
}

/* Slider */

.button-step__icon {
    width: 20px;
}

.button-step__icon_rotate {
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

.buttons-slider {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    gap: 12px;
}

.button-step {
    border-radius: 80px;
    background-color: #474747;
    outline: none;
    border: none;
    padding: 14px 28px;
    cursor: pointer;
    -webkit-transition: background-color 0.3s ease;
    -moz-transition: background-color 0.3s ease;
    -o-transition: background-color 0.3s ease;
    transition: background-color 0.3s ease;
}

.button-step:hover {
    background-color: #5d5d5d;
}

.slick-track {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
}

.slick-initialized .slick-slide {
    display: block;
}

.slick-disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.header-slider {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    -ms-justify-content: space-between;
    justify-content: space-between;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 60px;
}

.prev-step,
.next-step {
    position: absolute;
    top: 50%;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
    justify-content: center;
    background: transparent;
    border: none;
    outline: none;
    cursor: pointer;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 1;
}

@media (max-width: 425px) {
    .prev-step,
    .next-step {
        width: 30px;
        height: 30px;
    }
}

.prev-step:hover circle,
.next-step:hover circle {
    fill: var(--lightest-grey);
}

.prev-step {
    left: 10px;
}

@media (max-width: 425px) {
    .prev-step {
        left: 2px;
    }
}

.next-step {
    right: 10px;
}

@media (max-width: 425px) {
    .next-step {
        right: 2px;
    }
}

/* Header */
.header {
    position: relative;
    -webkit-transition: -webkit-transform 0.3s ease-in-out, background-color 0.3s ease-in-out;
    -moz-transition: -moz-transform 0.3s ease-in-out, background-color 0.3s ease-in-out;
    -o-transition: -o-transform 0.3s ease-in-out, background-color 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out, background-color 0.3s ease-in-out;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    padding-top: 16px;
    margin-bottom: 34px;
    z-index: 10;
}

.header__wrapper {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    -ms-justify-content: space-between;
    justify-content: space-between;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 12px;
}

@media (max-width: 1024px) {
    .header__wrapper {
        height: 100vh;
        width: 100%;
        position: fixed;
        top: -100vh;
        display: -webkit-flex;
        display: -moz-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-justify-content: start;
        -moz-justify-content: start;
        -ms-justify-content: start;
        justify-content: start;
        border-bottom-left-radius: 40px;
        border-bottom-right-radius: 40px;
        background-color: var(--white);
        -webkit-transition: top 0.7s ease;
        -moz-transition: top 0.7s ease;
        -o-transition: top 0.7s ease;
        transition: top 0.7s ease;
        z-index: 1000;
        overflow-y: auto;
        padding: 0 30px;
        margin-right: 0;
    }

    .header__wrapper.active {
        top: 0;
    }
}

@media (max-width: 768px) {
    .header__wrapper {
        padding: 0 15px;
    }
}

@media (max-width: 425px) {
    .header__wrapper {
        gap: 10px;
        width: 100%;
    }
}

.header__educational-information {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    -ms-justify-content: space-between;
    justify-content: space-between;
    gap: 10px;
}

@media (max-width: 1024px) {
    .header__educational-information {
        -webkit-order: 1;
        -moz-order: 1;
        -ms-order: 1;
        order: 1;
    }
}

.header__educational-link {
    font-weight: 500;
    font-size: 12px;
    color: var(--grey3);
}

.header__educational-link_colorful {
    color: var(--white);
}

.header__visually-wrap {
    max-width: 27px;
    height: 16px;
}

@media (max-width: 1024px) {
    .header__visually-wrap {
        display: none;
    }
}

.header__visually-wrap_mobile {
    display: none;
}

@media (max-width: 1024px) {
    .header__visually-wrap_mobile {
        display: block;
        max-width: 34px;
        height: 34px;
    }
}

@media (max-width: 425px) {
    .header__visually-wrap_mobile {
        max-width: 24px;
        height: 24px;
    }
}

.header__visually {
    height: 100%;
    width: 100%;
}

.header__logo-info {
    width: 100%;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    -ms-justify-content: space-between;
    justify-content: space-between;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    align-items: center;
    gap: 10px;
}

.header__logo-info_mobile {
    display: none;
}

.header__logo-container {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    align-items: center;
    gap: 16px;
}

@media (max-width: 1024px) {
    .header__logo-container {
        display: none;
    }
}

.header__logo-wrap {
    max-width: 375px;
}

@media (max-width: 768px) {
    .header__logo-wrap {
        max-width: 250px;
    }
}

@media (max-width: 425px) {
    .header__logo-wrap {
        max-width: 218px;
    }
}

@media (max-width: 355px) {
    .header__logo-wrap {
        max-width: 180px;
    }
}

.header__logo-wrap_mobile,
.header__block-mobile,
.header__contacts {
    display: none;
}

.header__logo {
    display: block;
    width: 100%;
}

.header__tels-wrap {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    gap: 25px;
}

.header__contact-tel {
    font-size: 18px;
    color: var(--grey);
}

.header__contact-tel_colorful {
    color: var(--white);
}

@media (max-width: 1080px) {
    .header__contact-tel {
        font-size: 14px;
    }
}

.header__block {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    gap: 25px;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    align-items: center;
}

.header__search-wrap {
    max-width: 350px;
    width: 100%;
    height: 35px;
    -ms-align-self: center;
    align-self: center;
}

.header__menu-wrap {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    -ms-justify-content: space-between;
    justify-content: space-between;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    align-items: center;
}

@media (max-width: 768px) {
    .header__menu-wrap {
        padding: 10px 0;
    }
}

.header.fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10000;
    -webkit-transform: translateX(-100%);
    -moz-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
    -webkit-animation: slideDown 0.5s ease-in-out forwards;
    -moz-animation: slideDown 0.5s ease-in-out forwards;
    -ms-animation: slideDown 0.5s ease-in-out forwards;
    animation: slideDown 0.5s ease-in-out forwards;
}

.header__search-desktop {
    position: relative;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    align-items: center;
    min-height: 55px;
    width: 25px;
    -webkit-transition: width 0.3s ease;
    -moz-transition: width 0.3s ease;
    -o-transition: width 0.3s ease;
    transition: width 0.3s ease;
    overflow: hidden;
}

.header__search-desktop.active {
    width: 250px;
}

.header__search-desktop-trigger {
    width: 25px;
    height: 25px;
    min-width: 25px;
    cursor: pointer;
    z-index: 2;
    -webkit-transition: opacity 0.3s ease;
    -moz-transition: opacity 0.3s ease;
    -o-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
}

.header__search-desktop.active .header__search-desktop-trigger {
    opacity: 0;
    position: absolute;
    pointer-events: none;
}

.header__search-wrap_desktop {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    align-items: center;
    background-color: var(--lightest-grey);
    border-radius: 10px;
    opacity: 0;
    -webkit-transition: opacity 0.3s ease;
    -moz-transition: opacity 0.3s ease;
    -o-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
}

.header__search-desktop.active .header__search-wrap_desktop {
    opacity: 1;
}

.header__search-button {
    position: absolute;
    left: 5px;
    width: 33px;
    height: 26px;
    z-index: 1;
    border: none;
    cursor: pointer;
}

/* .header__search-icon {
    position: absolute;
    left: 10px;
    width: 21px;
    height: 21px;
    z-index: 1;
} */

.header__clear-icon {
    display: none;
    position: absolute;
    right: 10px;
    width: 20px;
    height: 20px;
    -webkit-box-shadow: -5px 5px 5px 0 var(--lightest-grey2);
    -moz-box-shadow: -5px 5px 5px 0 var(--lightest-grey2);
    box-shadow: -5px 5px 5px 0 var(--lightest-grey2);
    border-radius: 50%;
    cursor: pointer;
}

.header__search-input {
    font-weight: 400;
    font-size: 14px;
    line-height: 100%;
    color: var(--grey3);
    background-color: var(--lightest-grey);
    border: none;
    outline: none;
    border-radius: 10px;
    padding: 12px 15px;
    padding-left: 40px;
    width: 100%;
}

.header__mobile {
    display: none;
}

@media (max-width: 1024px) {
    .header__mobile {
        display: -webkit-flex;
        display: -moz-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-justify-content: space-between;
        -moz-justify-content: space-between;
        -ms-justify-content: space-between;
        justify-content: space-between;
        -webkit-align-items: center;
        -moz-align-items: center;
        -ms-align-items: center;
        align-items: center;
        padding: 0 30px;
    }
}

@media (max-width: 768px) {
    .header__mobile {
        padding: 0 15px;
    }
}

@-webkit-keyframes slideDown {
    from {
        -webkit-transform: translateX(-100%);
    }
    to {
        -webkit-transform: translateX(0);
    }
}

@-moz-keyframes slideDown {
    from {
        -moz-transform: translateX(-100%);
    }
    to {
        -moz-transform: translateX(0);
    }
}

@-ms-keyframes slideDown {
    from {
        -ms-transform: translateX(-100%);
    }
    to {
        -ms-transform: translateX(0);
    }
}

@keyframes slideDown {
    from {
        transform: translateX(-100%);
    }
    to {
        transform: translateX(0);
    }
}

@media (max-width: 1024px) {
    .header__search-desktop {
        display: none;
    }

    .header__block-wrap {
        display: -webkit-flex;
        display: -moz-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-align-items: center;
        -moz-align-items: center;
        -ms-align-items: center;
        align-items: center;
        gap: 16px;
    }

    .header__visually_mobile {
        width: 100%;
        height: 100%;
    }

    .header__logo-wrap_mobile {
        display: block;
    }

    .header__logo-wrap_nav {
        margin-top: 16px;
    }

    .header__block-mobile {
        display: -webkit-flex;
        display: -moz-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-justify-content: space-between;
        -moz-justify-content: space-between;
        -ms-justify-content: space-between;
        justify-content: space-between;
        gap: 70px;
        margin-top: 30px;
    }

    .header__contacts {
        display: -webkit-flex;
        display: -moz-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-flex-direction: column;
        -moz-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 15px;
        margin: 40px 0;
    }

    .header__contact {
        display: -webkit-flex;
        display: -moz-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-flex-direction: column;
        -moz-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 10px;
    }

    .header__contact-text {
        font-weight: 600;
        font-size: 14px;
        line-height: 143%;
        color: var(--dark-grey);
    }

    .header__contact-link {
        font-weight: 600;
        font-size: 16px;
        line-height: 125%;
        color: #6f6f6f;
    }

    .header__search-wrap_mobile {
        position: relative;
        display: -webkit-flex;
        display: -moz-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-align-items: center;
        -moz-align-items: center;
        -ms-align-items: center;
        align-items: center;
    }
}

/* Nav */
.nav {
    -webkit-align-content: center;
    -moz-align-content: center;
    -ms-align-content: center;
    align-content: center;
}

.nav__links-list {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    align-items: center;
    gap: 50px;
}

.nav__link {
    font-weight: 600;
    border-radius: 10px;
    color: var(--grey);
    -webkit-transition: background-color 0.3s ease;
    -moz-transition: background-color 0.3s ease;
    -o-transition: background-color 0.3s ease;
    transition: background-color 0.3s ease;
    padding: 10px 15px;
}

.nav__link:hover {
    background-color: var(--white2);
}

.nav__link_colorful {
    color: var(--white);
}

.nav__link_colorful:hover {
    color: var(--grey);
}

@media (max-width: 1200px) {
    .nav__links-list {
        gap: 15px;
    }

    .nav__link {
        padding: 14px 30px;
    }
}

@media (max-width: 1024px) {
    .nav {
        width: 100%;
    }

    .nav__links-list {
        display: -webkit-flex;
        display: -moz-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-flex-direction: column;
        -moz-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-align-items: flex-start;
        -moz-align-items: flex-start;
        -ms-align-items: flex-start;
        align-items: flex-start;
        gap: 0;
        text-align: right;
        width: 100%;
    }

    .nav__wrapper {
        width: 100%;
    }

    .nav__link {
        font-size: 16px;
        display: block;
        text-align: left;
        background-color: transparent;
        padding: 20px 0;
    }

    .nav__link_colorful,
    .header__educational-link {
        color: var(--grey);
    }
}

@media (max-width: 425px) {
    .nav {
        width: 100%;
    }

    .nav__links-list {
        width: 100%;
    }
}

/* Main */
/* Banner */

.banner__wrapper {
    background-image: url(../img/main.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 20px;
    padding: 50px 0 45px 30px;
}

@media (max-width: 1024px) {
    .banner__wrapper {
        background-position: -239px 0px;
    }
}

@media (max-width: 800px) {
    .banner__wrapper {
        background-image: url(../img/main-mobile.jpg);
        background-position: center;
        min-height: 476px;
        padding: 40px 15px 40px 15px;
    }
}

.banner__block {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    gap: 15px;
    margin-bottom: 56px;
}

.banner__title {
    max-width: 600px;
}

.banner__text {
    font-weight: 500;
    font-size: 24px;
    color: var(--white);
}

@media (max-width: 1024px) {
    .banner__text {
        font-size: 22px;
    }
}

@media (max-width: 430px) {
    .banner__text {
        font-size: 18px;
    }
}

.banner__buttons {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    gap: 10px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    max-width: 318px;
}

.banner__buttons_mobile {
    display: none;
}

@media (max-width: 800px) {
    .banner__buttons {
        display: none;
    }

    .banner__buttons_mobile {
        display: -webkit-flex;
        display: -moz-flex;
        display: -ms-flexbox;
        display: flex;
        max-width: 100%;
        margin-top: 50px;
    }
}

.banner__button_text {
    display: block;
}

@media (max-width: 1024px) {
    .banner__icon {
        width: 15px;
        height: 30px;
    }
}

/* About */

.about {
    border-radius: 30px;
}

.about__wrapper {
    padding-bottom: 120px;
}

@media (max-width: 1024px) {
    .about__wrapper {
        padding-bottom: 100px;
    }
}

@media (max-width: 768px) {
    .about__wrapper {
        padding-bottom: 70px;
    }
}

.about__container {
    border: 1px solid var(--lightest-grey2);
    -webkit-box-shadow: -5px 5px 5px 0 var(--lightest-grey2);
    -moz-box-shadow: -5px 5px 5px 0 var(--lightest-grey2);
    box-shadow: -5px 5px 5px 0 var(--lightest-grey2);
    border-radius: 30px;
    padding: 50px 30px;
}

@media (max-width: 600px) {
    .about__container {
        padding: 30px 15px;
    }
}

.about__content {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    -ms-justify-content: space-between;
    justify-content: space-between;
    gap: 50px;
}

@media (max-width: 1260px) {
    .about__content {
        gap: 20px;
    }
}

@media (max-width: 1024px) {
    .about__content {
        gap: 10px;
    }
}

@media (max-width: 860px) {
    .about__content {
        -webkit-flex-direction: column;
        -moz-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}

.about__blocks {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

@media (max-width: 1024px) {
    .about__blocks {
        gap: 10px;
    }
}

.about__block {
    max-width: 270px;
    max-height: 202px;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 15px;
    border-radius: 20px;
    padding: 50px 20px;
}

@media (max-width: 860px) {
    .about__block {
        max-width: 100%;
    }
}

@media (max-width: 600px) {
    .about__block {
        padding: 20px 15px;
    }
}

@media (max-width: 375px) {
    .about__block {
        gap: 5px;
    }
}

.about__block:first-child,
.about__block:last-child {
    background-color: var(--lightest-grey);
}

.about__count {
    font-weight: 700;
    font-size: 36px;
    color: var(--black);
}

@media (max-width: 968px) {
    .about__count {
        font-size: 28px;
    }
}

@media (max-width: 425px) {
    .about__count {
        font-size: 22px;
    }
}

.about__text {
    font-weight: 400;
    font-size: 18px;
    color: var(--black);
}

@media (max-width: 425px) {
    .about__text {
        font-size: 14px;
    }
}

.about__gallery {
    width: 100%;
    position: relative;
    max-width: 675px;
    height: 419px;
}

@media (max-width: 1200px) {
    .about__gallery {
        max-width: 480px;
    }
}

@media (max-width: 940px) {
    .about__gallery {
        max-width: 410px;
    }
}

@media (max-width: 860px) {
    .about__gallery {
        -webkit-order: -1;
        -moz-order: -1;
        -ms-order: -1;
        order: -1;
        max-width: 100%;
    }
}

@media (max-width: 425px) {
    .about__gallery {
        height: 242px;
    }
}

.about__slider {
    max-width: 675px;
    height: 100%;
    border-radius: 20px;
}

@media (max-width: 860px) {
    .about__slider {
        max-width: 100%;
    }
}

.about__slider-item {
    border-radius: 20px;
}

.about__slider-img {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    -o-object-fit: cover;
    object-fit: cover;
}

.about__prev-step,
.about__next-step {
    width: 50px;
    height: 50px;
}

/* Programms */

@media (max-width: 475px) {
    .programms__content-container {
        min-height: unset;
    }
}

.programms__buttons {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 11px;
    margin-bottom: 50px;
}

.programms__select {
    display: none;
    position: relative;
    width: 100%;
}

@media (max-width: 768px) {
    .programms__buttons {
        display: none;
    }

    .programms__select {
        display: -webkit-flex;
        display: -moz-flex;
        display: -ms-flexbox;
        display: flex;
    }
}

.programms__select-element {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    font-size: 18px;
    width: 100%;
    background-color: var(--lightest-grey);
    border: none;
    outline: none;
    border-radius: 10px;
    padding: 20px 40px 20px 15px;
    font-size: 16px;
    position: relative;
    z-index: 2;
}

.programms__arrow {
    position: absolute;
    top: 50%;
    right: 15px;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    pointer-events: none;
    z-index: 9999;
}

.programms__arrow-icon {
    width: 14px;
    height: 14px;
    -webkit-transition: -webkit-transform 0.3s ease;
    -moz-transition: -moz-transform 0.3s ease;
    -o-transition: -o-transform 0.3s ease;
    transition: transform 0.3s ease;
}

.programms__select.open .programms__arrow-icon {
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

.programms__content-grid {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: repeat(3, 1fr);
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding-bottom: 10px;
    margin-top: 20px;
}

@media (max-width: 1200px) {
    .programms__content-grid {
        -ms-grid-columns: repeat(2, 1fr);
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 800px) {
    .programms__content-grid {
        -ms-grid-columns: repeat(1, 1fr);
        grid-template-columns: repeat(1, 1fr);
    }
}

.programms__button-block.disabled {
    display: none;
}

.programms__button-block {
    text-align: center;
    margin-top: 50px;
}

@media (max-width: 768px) {
    .programms__button-block {
        margin-top: 40px;
    }
}

.programms__show-more {
    -ms-flex-item-align: center;
    align-self: center;
}

/* Dropdown */

@media (max-width: 768px) {
    .dropdown__button {
        font-family: var(--second-family), Arial, Helvetica, sans-serif;
        position: relative;
        display: block;
        width: 100%;
        text-align: left;
        height: 59px;
        border-radius: 10px;
        border: none;
        outline: none;
        color: var(--black);
        background-color: var(--lightest-grey);
        font-weight: 500;
        font-size: 16px;
        padding: 12px 15px;
        cursor: pointer;
    }

    .dropdown__button::after {
        content: '';
        position: absolute;
        top: 50%;
        right: 15px;
        -webkit-transform: translateY(-50%);
        -moz-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
    }

    .dropdown__list {
        display: none;
        position: absolute;
        left: 0;
        top: 64px;
        margin: 0;
        padding: 0;
        list-style-type: none;
        background-color: var(--white);
        border-radius: 10px;
        overflow: hidden;
        width: 100%;
        z-index: 1;
    }

    .dropdown__list--visible {
        display: -webkit-flex;
        display: -moz-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-flex-direction: column;
        -moz-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        border: 1px solid rgba(43, 43, 43, 0.3);
    }

    .dropdown__list-item {
        margin: 0;
        padding: 0;
        background-color: var(--white);
        border-bottom: 0px;
        cursor: pointer;
    }

    .dropdown__input-hidden {
        display: none;
    }

    .programms__button {
        width: 100%;
        display: -webkit-flex;
        display: -moz-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-flex-direction: column;
        -moz-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        font-weight: 600;
        font-size: 18px;
        text-align: left;
        color: var(--grey);
        background-color: var(--white);
        border: none;
        outline: none;
        cursor: pointer;
        padding: 12px 15px;
    }
}

/* Choose */

.choose__container {
    position: relative;
    overflow: hidden;
}

@media (max-width: 600px) {
    .choose__container {
        min-height: 358px;
        -webkit-justify-content: space-between;
        -moz-justify-content: space-between;
        -ms-justify-content: space-between;
        justify-content: space-between;
        padding: 30px 15px;
    }
}

.choose__text {
    font-weight: 600;
    font-size: 30px;
    color: var(--white);
}

@media (max-width: 600px) {
    .choose__text {
        font-size: 22px;
    }
}

.choose__text-wrap {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    z-index: 9999;
}

.choose__button {
    -ms-flex-item-align: start;
    align-self: start;
    z-index: 9999;
}

@media (max-width: 600px) {
    .choose__button {
        -ms-flex-item-align: stretch;
        align-self: stretch;
        text-align: center;
    }
}

/* Questions */

.questions__title {
    padding-bottom: 30px;
}

.questions__item {
    display: block;
    list-style: none;
    background-color: var(--white3);
    overflow: hidden;
}

.questions__question {
    font-weight: 600;
    font-size: 24px;
}

@media (max-width: 768px) {
    .questions__question {
        font-size: 18px;
    }
}

.questions__text {
    font-size: 18px;
}

@media (max-width: 768px) {
    .questions__text {
        font-size: 16px;
    }
}

.questions__text_position {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 10px;
}

.questions__arrow {
    font-weight: 700;
    font-size: 1.25rem;
}

.questions__arrow:hover rect {
    fill: var(--lightest-grey2);
}

.questions__arrow:hover path {
    fill: var(--dark-grey);
}

.questions__arrow.active rect {
    fill: var(--lightest-grey2);
}

.questions__arrow.active path {
    fill: var(--dark-grey);
}

.questions__arrow.active:hover rect {
    fill: var(--dark-grey);
}

.questions__arrow.active:hover path {
    fill: var(--lightest-grey2);
}

.questions__arrow.active path:last-child {
    display: block;
    d: path('M14.3664 24.3632L32.3663 24.3632C32.9186 24.3632 33.3663 23.9155 33.3663 23.3632C33.3663 22.811 32.9186 22.3632 32.3663 22.3632L14.3664 22.3632C13.8141 22.3633 13.3664 22.811 13.3664 23.3632C13.3663 23.9155 13.8141 24.3633 14.3664 24.3632Z');
}

.questions__button-block {
    text-align: right;
    margin-top: 50px;
}

@media (max-width: 768px) {
    .questions__button-block {
        margin-top: 30px;
    }
}

.questions__button {
    -ms-flex-item-align: end;
    align-self: flex-end;
}

/* Acco */

.acco__list {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 1px;
}

.acco__expand {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    -ms-justify-content: space-between;
    justify-content: space-between;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    align-items: center;
    padding: 30px;
    text-decoration: none;
    cursor: pointer;
}

@media (max-width: 768px) {
    .acco__expand {
        padding: 20px 15px;
    }
}

.acco__answer {
    display: none;
    padding: 30px;
    line-height: 22px;
}

@media (max-width: 768px) {
    .acco__answer {
        padding: 20px 15px;
    }
}

.acco__item:first-child {
    -webkit-border-top-left-radius: 30px;
    -moz-border-radius-topleft: 30px;
    border-top-left-radius: 30px;
    -webkit-border-top-right-radius: 30px;
    -moz-border-radius-topright: 30px;
    border-top-right-radius: 30px;
}

.acco__item:last-child {
    -webkit-border-bottom-left-radius: 30px;
    -moz-border-radius-bottomleft: 30px;
    border-bottom-left-radius: 30px;
    -webkit-border-bottom-right-radius: 30px;
    -moz-border-radius-bottomright: 30px;
    border-bottom-right-radius: 30px;
}

/* Form */
.form {
    position: relative;
    -webkit-align-content: center;
    -ms-flex-line-pack: center;
    align-content: center;
    height: 100%;
}

.form__items {
    position: relative;
    width: 100%;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    z-index: 9999;
}

@media (max-width: 768px) {
    .form__items {
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-align-items: unset;
        -ms-flex-align: unset;
        align-items: unset;
    }
}

.form__item {
    position: relative;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    max-width: 330px;
    width: 100%;
    height: auto;
}

@media (max-width: 768px) {
    .form__item {
        max-width: 100%;
    }
}

.form__item_text.last {
    margin-bottom: 0;
}

.error_csrf_token.error {
    margin-bottom: 20px;
}

.form__input {
    width: 100%;
    font-family: var(--second-family), Arial, Helvetica, sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: var(--grey3);
    background-color: var(--white);
    border: 1px solid transparent;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    outline: none;
    padding: 20px;
}

.form__input:focus::placeholder {
    opacity: 0;
}

.form__more {
    position: relative;
    z-index: 999;
}

.form__footer {
    position: relative;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    padding-left: 10px;
}

.form__footer-checkbox {
    position: absolute;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    left: 0;
    top: -4px;
    width: 24px;
    height: 24px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    border: 1px solid var(--white);
    background: transparent;
    cursor: pointer;
}

.form__footer-checkbox input {
    display: none;
}

.form__footer-checkbox-icon:before {
    display: none;
    content: url('../img/icons/check.png');
    -webkit-transform: scale(0.5);
    -ms-transform: scale(0.5);
    transform: scale(0.5);
    -webkit-transform-origin: 0 0;
    -ms-transform-origin: 0 0;
    transform-origin: 0 0;
    width: 12px;
    height: 12px;
}

input:checked + .form__footer-checkbox-icon:before {
    display: block;
}

.form__footer-text {
    font-family: var(--second-family), Arial, Helvetica, sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: var(--white);
    margin-left: 30px;
}

.form__policy {
    font-weight: 700;
    text-decoration: underline;
    -webkit-text-decoration-skip: none;
    text-decoration-skip-ink: none;
    color: var(--white);
}

.form__group {
    margin-bottom: 20px;
}

.form__button {
    width: 100%;
    text-align: center;
}

.form__input_error {
    border: 1px solid var(--red);
}

.form__error-tooltip {
    display: none;
    position: absolute;
    bottom: -25px;
    right: 0;
    -webkit-box-shadow: -5px 5px 5px 0 var(--white4);
    box-shadow: -5px 5px 5px 0 var(--white4);
    background-color: var(--red);
    color: var(--white);
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    padding: 10px;
    font-size: 12px;
    z-index: 10;
}

/* Footer */

.footer {
    background-color: var(--dark-grey);
}

.footer__wrapper {
    background-color: var(--dark-grey);
    padding-top: 105px;
    padding-bottom: 100px;
}

@media (max-width: 768px) {
    .footer__wrapper {
        padding-top: 50px;
    }
}

.footer__logo-wrap {
    display: inline-block;
    max-width: 375px;
    height: 100%;
    margin-bottom: 100px;
}

@media (max-width: 768px) {
    .footer__logo-wrap {
        margin-bottom: 50px;
    }
}

.footer__logo {
    width: 100%;
}

.footer__content-wrap {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 100px;
}

@media (max-width: 930px) {
    .footer__content-wrap {
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {
    .footer__content-wrap {
        margin-bottom: 70px;
    }
}

@media (max-width: 425px) {
    .footer__content-wrap {
        margin-bottom: 50px;
    }
}

.footer__blocks {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 126px;
}

@media (max-width: 1200px) {
    .footer__blocks {
        gap: 50px;
    }
}

@media (max-width: 630px) {
    .footer__blocks {
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}

.footer__block {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
}

.footer__block-title {
    font-weight: 700;
    font-size: 24px;
    color: var(--white);
    margin-bottom: 50px;
}

@media (max-width: 768px) {
    .footer__block-title {
        margin-bottom: 40px;
    }
}

.footer__wrap {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 10px;
}

.footer__wrap:not(:last-child) {
    margin-bottom: 50px;
}

@media (max-width: 768px) {
    .footer__wrap:not(:last-child) {
        margin-bottom: 35px;
    }
}

.footer__text {
    font-weight: 600;
    font-size: 20px;
    color: var(--white);
}

@media (max-width: 768px) {
    .footer__text {
        font-size: 18px;
    }
}

.footer__contact-link {
    font-weight: 500;
    font-size: 20px;
    color: var(--grey4);
    -webkit-transition: color 0.3s ease;
    -moz-transition: color 0.3s ease;
    -o-transition: color 0.3s ease;
    transition: color 0.3s ease;
}

@media (max-width: 768px) {
    .footer__contact-link {
        font-size: 16px;
    }
}

.footer__contact-link:hover {
    color: var(--grey5);
}

.footer__nav-link,
.footer__link {
    font-family: inherit;
    font-weight: 500;
    font-size: 18px;
    color: var(--white);
    -webkit-transition: color 0.3s ease;
    -moz-transition: color 0.3s ease;
    -o-transition: color 0.3s ease;
    transition: color 0.3s ease;
}

.footer__link {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    background: transparent;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: left;
    border: none;
    outline: none;
    cursor: pointer;
}

.footer__nav-link:hover,
.footer__link:hover {
    color: var(--grey5);
}

.footer__nav-block,
.footer__directions {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 30px;
}

@media (max-width: 768px) {
    .footer__nav-block,
    .footer__directions {
        gap: 15px;
    }
}

.footer__block-links {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 40px;
    max-width: 230px;
}

@media (max-width: 768px) {
    .footer__block-links {
        margin-top: 50px;
    }
}

.footer__link-info {
    font-weight: 500;
    font-size: 20px;
    color: var(--grey4);
    -webkit-transition: color 0.3s ease;
    -moz-transition: color 0.3s ease;
    -o-transition: color 0.3s ease;
    transition: color 0.3s ease;
}

@media (max-width: 768px) {
    .footer__link-info {
        font-size: 18px;
    }
}

.footer__link-info:hover {
    color: var(--white);
}

.footer__bottom-block {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-align-items: flex-end;
    -ms-flex-align: end;
    align-items: flex-end;
    gap: 20px;
}

@media (max-width: 600px) {
    .footer__bottom-block {
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-align-items: flex-start;
        -ms-flex-align: start;
        align-items: flex-start;
    }
}

.footer__socials {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    gap: 30px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
    background-color: var(--grey2);
    padding: 30px;
}

.footer__link-icon:hover {
    opacity: 0.7;
}

.footer__privacy {
    font-weight: 500;
    font-size: 16px;
    color: var(--white);
}

/* Popup */
.popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    z-index: 9999;
}

.popup__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.popup__inner {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
}

.popup__content {
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    z-index: 20;
    background-color: var(--white);
    max-width: 800px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    padding: 40px 30px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .popup__content {
        padding: 30px 15px;
    }
}

.popup__title {
    font-weight: 700;
    font-size: 32px;
    line-height: 181%;
    color: var(--black);
}

@media (max-width: 768px) {
    .popup__title {
        font-size: 26px;
    }
}

@media (max-width: 400px) {
    .popup__title {
        padding-right: 40px;
        line-height: normal;
    }
}

@media (max-width: 375px) {
    .popup__title {
        font-size: 18px;
        margin-bottom: 14px;
    }
}

.popup__top-text {
    font-size: 18px;
    color: var(--black);
    margin-bottom: 30px;
}

@media (max-width: 768px) {
    .popup__top-text {
        font-size: 16px;
    }
}

@media (max-width: 375px) {
    .popup__top-text {
        font-size: 14px;
        margin-bottom: 14px;
    }
}

.popup__close {
    position: absolute;
    top: 12px;
    right: 20px;
    width: 40px;
    height: 40px;
    color: var(--black);
    background-color: var(--main-yellow);
    font-size: 24px;
    cursor: pointer;
    z-index: 3;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    line-height: 1;
    -webkit-transition: background-color 0.3s ease;
    -moz-transition: background-color 0.3s ease;
    -o-transition: background-color 0.3s ease;
    transition: background-color 0.3s ease;
    border: none;
    outline: none;
    padding: 0;
}

.popup__close:hover {
    background-color: var(--yellow);
}

.popup__items {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 30px;
}

@media (max-width: 375px) {
    .popup__items {
        margin-bottom: 14px;
    }
}

.popup__item {
    max-width: 100%;
}

.popup__input {
    outline: none;
    background-color: #ebebeb;
}

@media (max-width: 375px) {
    .popup__input {
        padding: 14px;
    }
}

.popup__button {
    width: 100%;
    text-align: center;
}

@media (max-width: 375px) {
    .popup__button {
        font-size: 14px;
        padding: 14px;
    }
}

.popup__checkbox {
    top: 0;
    border: 1px solid var(--white);
    background-color: var(--grey2);
}

.popup__text {
    font-size: 12px;
    color: var(--grey);
}

.popup__policy {
    color: var(--grey);
    font-weight: 700;
    text-decoration: underline;
    -webkit-text-decoration-skip: none;
    text-decoration-skip-ink: none;
}

.popup__no-scroll {
    overflow: hidden;
    width: 100%;
}

/* Gallery popup */

.popup-gallery {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
}

.popup-gallery__content {
    position: relative;
    max-width: 900px;
    width: 100%;
    height: auto;
    background-color: var(--white);
    margin: auto;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    overflow: hidden;
    -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.4);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.4);
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 30px;
    z-index: 9999;
}

.popup-gallery__close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 30px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1002;
    color: #333;
}

.popup-gallery__slider {
    height: 100%;
}

.popup-gallery__slider .slick-slide img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.popup-gallery__prev,
.popup-gallery__next {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 1002;
    color: var(--white);
    background-color: rgba(0, 0, 0, 0.4);
    font-size: 30px;
    width: 50px;
    height: 50px;
    border: none;
    cursor: pointer;
}

.popup-gallery__prev {
    left: 10px;
}

.popup-gallery__next {
    right: 10px;
}

@media (max-width: 768px) {
    .popup-gallery__button {
        width: 47px;
        height: 47px;
    }
}

@media (max-width: 425px) {
    .popup-gallery__button {
        width: 30px;
        height: 30px;
    }
}

/* Thank page */

.service-page {
    min-height: 610px;
    height: 100%;
    margin-top: 60px;
}

.service-page__logo-wrap {
    max-width: 375px;
}

@media (max-width: 768px) {
    .service-page__logo-wrap {
        max-width: 250px;
    }
}

@media (max-width: 425px) {
    .service-page__logo-wrap {
        max-width: 218px;
    }
}

@media (max-width: 355px) {
    .service-page__logo-wrap {
        max-width: 180px;
    }
}

.service-page_not-found {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.service-page__wrapper {
    position: unset;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 90px;
    height: 100%;
}

.service-page__wrapper_not-found {
    width: 100%;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 20px;
    height: auto;
}

@media (max-width: 768px) {
    .service-page__wrapper_not-found {
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}

.service-page__bg {
    position: relative;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 80px;
    height: 100%;
}

@media (max-width: 768px) {
    .service-page__bg {
        gap: 20px;
    }
}

.service-page__bg_not-found {
    max-width: 900px;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    align-self: center;
}

.service-page__title {
    font-family: var(--second-family), Arial, Helvetica, sans-serif;
    font-weight: 500;
    font-size: 100px;
    color: var(--grey);
}

@media (max-width: 768px) {
    .service-page__title {
        font-size: 26px;
    }
}

.service-page__text-wrap {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 15px;
}

.service-page__socials {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
}

.service-page__text {
    font-weight: 400;
    font-size: 36px;
    color: var(--grey);
}

.service-page__text_weight {
    font-weight: 600;
}

.service-page__header {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 20px;
}

@media (max-width: 1024px) {
    .service-page__header {
        top: 0;
        height: auto;
    }
}

.service-page__img-wrap {
    max-width: 753px;
    width: 100%;
    position: absolute;
    right: 0;
    bottom: 0;
}

@media (max-width: 1024px) {
    .service-page__img-wrap {
        display: none;
    }

    .service-page__img-wrap_not-found {
        display: block;
    }
}

.service-page__img-wrap_not-found {
    max-width: 500px;
    position: unset;
}

.service-page__block-wrap::after {
    content: '';
    position: absolute;
    bottom: -70%;
    right: -50px;
    background-image: url(../img/thank-page.png);
    background-size: contain;
    background-repeat: no-repeat;
    width: 983px;
    height: 719px;
    z-index: 10;
}

@media (max-width: 1200px) {
    .service-page__block-wrap::after {
        display: none;
    }
}

.service-page__block-wrap {
    position: relative;
}

/* Course page */
/* Breadcrumbs */
.breadcrumbs__link {
    font-family: inherit;
    font-weight: 500;
    font-size: 14px;
    color: var(--lightest-grey3);
}

@media (max-width: 425px) {
    .breadcrumbs__link {
        font-size: 12px;
    }
}

.breadcrumbs__icon {
    margin-right: 2px;
}

/* Course banner*/

.course-banner__wrapper {
    position: relative;
    padding-bottom: 120px;
    overflow: hidden;
}

@media (max-width: 1024px) {
    .course-banner__wrapper {
        padding-bottom: 100px;
    }
}

@media (max-width: 768px) {
    .course-banner__wrapper {
        padding-bottom: 70px;
    }
}

.course-banner__content {
    padding-top: 55px;
}

.course-banner__top-block {
    margin-bottom: 50px;
}

.course-banner__block {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    gap: 15px;
    margin-bottom: 50px;
}

@media (max-width: 768px) {
    .course-banner__block {
        margin-bottom: 300px;
    }
}

@media (max-width: 425px) {
    .course-banner__block {
        margin-bottom: 276px;
    }
}

@media (max-width: 320px) {
    .course-banner__block {
        margin-bottom: 236px;
    }
}

.course-banner__icon {
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.course-banner__title {
    margin-bottom: 146px;
}

@media (max-width: 1024px) {
    .course-banner__title {
        margin-bottom: 100px;
    }
}

@media (max-width: 768px) {
    .course-banner__title {
        margin-bottom: 50px;
    }
}

.course-banner__text {
    max-width: 630px;
    font-weight: 500;
    font-size: 24px;
    color: var(--white);
}

@media (max-width: 1024px) {
    .course-banner__text {
        font-size: 22px;
    }
}

@media (max-width: 768px) {
    .course-banner__text {
        font-size: 18px;
        max-width: 100%;
    }
}

@media (max-width: 320px) {
    .course-banner__text {
        font-size: 16px;
    }
}

.course-banner__bottom-block {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    gap: 10px;
}

.course-banner__bottom-block_mobile {
    display: none;
}

@media (max-width: 768px) {
    .course-banner__bottom-block_desktop {
        display: none;
    }

    .course-banner__bottom-block_mobile {
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 10px;
    }
}

.course-banner__item {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 30px;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    border-radius: 25px;
    backdrop-filter: blur(15px);
    background-color: rgba(61, 61, 61, 0.5);
    padding: 20px 30px;
}

@media (max-width: 1024px) {
    .course-banner__item {
        gap: 15px;
        padding: 20px;
    }
}

.course-banner__item-title {
    font-weight: 500;
    font-size: 16px;
    color: var(--white);
}

@media (max-width: 768px) {
    .course-banner__item-title {
        font-size: 14px;
    }
}

.course-banner__item-description {
    font-weight: 700;
    font-size: 20px;
    color: var(--white);
}

@media (max-width: 768px) {
    .course-banner__item-description {
        font-size: 16px;
    }
}

.course-banner__img-wrap {
    position: absolute;
    max-width: 868px;
    height: auto;
    right: -8%;
    bottom: 13%;
    z-index: -1;
}

@media (max-width: 1024px) {
    .course-banner__img-wrap {
        max-width: 550px;
        right: -6%;
        bottom: 24%;
    }
}

@media (max-width: 768px) {
    .course-banner__img-wrap {
        max-width: 392px;
        right: 20%;
        bottom: 46%;
    }
}

@media (max-width: 600px) {
    .course-banner__img-wrap {
        max-width: 302px;
        right: 24%;
        bottom: 54%;
    }
}

@media (max-width: 425px) {
    .course-banner__img-wrap {
        right: 11%;
    }
}

@media (max-width: 375px) {
    .course-banner__img-wrap {
        right: 8%;
        bottom: 52%;
    }
}

@media (max-width: 320px) {
    .course-banner__img-wrap {
        max-width: 252px;
        right: 8%;
        bottom: 54%;
    }
}

@media (max-width: 600px) {
    .course-banner__button {
        width: 100%;
        text-align: center;
    }
}

/* Tabs */

.tab-button {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-weight: 600;
    background-color: var(--lightest-grey);
}

.tab-button.active {
    color: var(--white);
    background-color: var(--dark-grey);
}

.tab-button:hover:not(.active) {
    color: var(--grey);
    background-color: #ededed;
}

.tab-button:active {
    color: var(--white);
    background-color: var(--dark-grey);
}

.tab__panel {
    display: none;
}

.tab__panel.active {
    display: block;
    height: 100%;
}

/* Future */
.future__tab-header {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

.future__tab-button {
    font-weight: 700;
    font-size: 20px;
    color: var(--white);
    -webkit-border-radius: 20px 20px 0 0;
    -moz-border-radius: 20px 20px 0 0;
    border-radius: 20px 20px 0 0;
    padding: 20px 30px;
}

@media (max-width: 768px) {
    .future__tab-button {
        font-size: 18px;
        padding: 15px;
    }
}

.future__tab-button {
    cursor: pointer;
    border: none;
    outline: none;
    background-color: transparent;
}

.future__tab-button.active {
    background-color: var(--grey2);
}

.future__tab-panel {
    background-color: var(--grey2);
    -webkit-border-radius: 0 30px 30px 30px;
    -moz-border-radius: 0 30px 30px 30px;
    border-radius: 0 30px 30px 30px;
    padding: 50px 30px;
}

@media (max-width: 1024px) {
    .future__tab-panel {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .future__tab-panel {
        padding: 15px;
    }
}

@media (max-width: 400px) {
    .future__tab-panel {
        -webkit-border-radius: 0 0 30px 30px;
        -moz-border-radius: 0 0 30px 30px;
        border-radius: 0 0 30px 30px;
    }
}

.future__top-block {
    margin-bottom: 50px;
}

@media (max-width: 768px) {
    .future__top-block {
        margin-bottom: 30px;
    }
}

.future__block-title {
    font-weight: 700;
    font-size: 22px;
    color: var(--white);
    margin-bottom: 30px;
}

.future__list {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 14px;
}

@media (max-width: 1200px) {
    .future__list {
        width: 100%;
        gap: 10px;
    }
}

.future__instruments {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: repeat(6, 1fr);
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
}

@media (max-width: 1200px) {
    .future__instruments {
        -ms-grid-columns: repeat(3, 1fr);
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 600px) {
    .future__instruments {
        -ms-grid-columns: repeat(2, 1fr);
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 425px) {
    .future__instruments {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    }
}

.future__item {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 15px;
    color: var(--white);
    background-color: var(--dark-grey);
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    border-radius: 15px;
    padding: 15px 20px;
}

@media (max-width: 1200px) {
    .future__item {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .future__item {
        padding: 15px;
    }
}

.future__icon {
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.future__item_size {
    padding: 10px;
}

.future__icon-wrap {
    max-width: 40px;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.future__item-description {
    font-weight: 400;
    font-size: 18px;
}

@media (max-width: 768px) {
    .future__item-description {
        font-weight: 300;
        font-size: 16px;
    }
}

.future__item-description_size {
    font-weight: 500;
    font-size: 16px;
}

.future__content-block {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 30px;
    max-width: 1050px;
}

@media (max-width: 768px) {
    .future__content-block {
        -webkit-align-items: flex-start;
        -ms-flex-align: start;
        align-items: flex-start;
        gap: 15px;
    }
}

.future__img-wrap {
    max-width: 66px;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.future__content-description {
    font-weight: 500;
    font-size: 18px;
    line-height: 129%;
    color: var(--white);
}

@media (max-width: 768px) {
    .future__content-description {
        font-weight: 400;
        font-size: 16px;
    }
}

.future__bottom-blocks {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 150px;
}

@media (max-width: 1200px) {
    .future__bottom-blocks {
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        gap: 130px;
    }
}

@media (max-width: 768px) {
    .future__bottom-blocks {
        gap: 30px;
    }
}

@media (max-width: 1200px) {
    .future__professions {
        width: 100%;
    }
}

.future__salary {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

@media (max-width: 1200px) {
    .future__salary {
        width: 100%;
    }
}

.future__steps {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: flex-end;
    -ms-flex-align: end;
    align-items: flex-end;
    gap: 10px;
}

@media (max-width: 768px) {
    .future__steps {
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}

.future__step {
    width: 100%;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 50px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
    background-color: var(--dark-grey);
    padding: 20px;
}

.future__step_first {
    position: relative;
}

.future__step_first::before {
    content: '';
    position: absolute;
    top: -21%;
    right: 10px;
    background-image: url(../img/icons/long-arrow.png);
    background-size: contain;
    background-repeat: no-repeat;
    width: 190px;
    height: 51px;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 50;
}

.future__step_second {
    gap: 120px;
    position: relative;
}

.future__step_second::before {
    content: '';
    position: absolute;
    top: -16%;
    right: 5px;
    background-image: url(../img/icons/long-arrow-2.png);
    background-size: contain;
    background-repeat: no-repeat;
    width: 190px;
    height: 80px;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 50;
}

@media (max-width: 1200px) {
    .future__step_first::before {
        top: -28%;
        width: 280px;
        height: 61px;
    }

    .future__step_second::before {
        top: -12%;
        right: 18px;
        width: 250px;
        height: 130px;
    }
}

@media (max-width: 1024px) {
    .future__step_first::before,
    .future__step_second::before {
        display: none;
    }
}

.future__step_second {
    gap: 120px;
}

.future__step_third {
    gap: 190px;
}

@media (max-width: 768px) {
    .future__step {
        gap: 30px;
    }
}

.future__step-header {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 65px;
}

@media (max-width: 1200px) {
    .future__step-header {
        gap: 20px;
    }
}

@media (max-width: 1200px) {
    .future__step-header {
        gap: 7px;
    }
}

.future__level {
    font-weight: 500;
    font-size: 15px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
    background-color: var(--white);
    padding: 5px 10px;
}

@media (max-width: 1200px) {
    .future__level {
        font-size: 14px;
        padding: 5px 4px;
    }
}

@media (max-width: 1200px) {
    .future__level {
        padding: 8px 16px;
    }
}

.future__years {
    font-weight: 500;
    font-size: 14px;
    color: #aeaeae;
}

.future__count {
    font-weight: 600;
    font-size: 30px;
    color: var(--white);
}

@media (max-width: 1200px) {
    .future__count {
        font-size: 24px;
    }
}

/* Course programm */
.course-programm__item {
    color: var(--white);
    background-color: var(--grey2);
}

.course-programm__header {
    font-weight: 700;
    font-size: 24px;
    color: var(--white);
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 30px;
}

@media (max-width: 768px) {
    .course-programm__header {
        font-size: 18px;
    }
}

.course-programm__expand {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 10px;
}

.course-programm__count-block {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    gap: 10px;
}

.course-programm__count {
    font-weight: 600;
    font-size: 14px;
    color: #cacaca;
}

@media (max-width: 768px) {
    .course-programm__count {
        font-size: 12px;
    }
}

.course-programm__list-steps {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 5px;
}

.course-programm__item-step {
    font-size: 18px;
    line-height: 144%;
}

.course-programm__item-step::before {
    content: '';
    display: inline-block;
    width: 3px;
    height: 3px;
    background-color: var(--white);
    margin: 0 10px;
    vertical-align: middle;
}

.course-programm__icon rect {
    fill: var(--white);
}

.course-programm__icon:hover rect {
    fill: var(--lightest-grey2);
}

.course-programm__arrow.active rect {
    fill: var(--dark-grey);
}

.course-programm__arrow.active:hover rect {
    fill: var(--lightest-grey2);
}

.course-programm__arrow.active path {
    fill: var(--white);
}

.course-programm__arrow.active:hover path {
    fill: var(--grey);
}

.course-programm__icon path {
    fill: var(--grey);
}

.course-programm__arrow.active path:last-child {
    display: block;
    d: path('M14.3664 24.3632L32.3663 24.3632C32.9186 24.3632 33.3663 23.9155 33.3663 23.3632C33.3663 22.811 32.9186 22.3632 32.3663 22.3632L14.3664 22.3632C13.8141 22.3633 13.3664 22.811 13.3664 23.3632C13.3663 23.9155 13.8141 24.3633 14.3664 24.3632Z');
}

/* Formats */

@media (max-width: 768px) {
    .formats__wrapper {
        padding: 0;
    }
}

.formats__blocks {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 22px;
    margin-bottom: 30px;
}

@media (max-width: 1024px) {
    .formats__blocks {
        overflow: hidden;
        display: block;
        height: 695px;
    }
}

@media (max-width: 768px) {
    .formats__blocks {
        height: 550px;
    }
}

@media (max-width: 600px) {
    .formats__blocks {
        height: 620px;
    }
}

.formats__block {
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 30px;
    background-color: var(--white);
    padding: 30px;
}

@media (max-width: 1024px) {
    .formats__block {
        margin: 0 6px;
    }

    .formats__block:first-child {
        margin-left: 0;
    }

    .formats__block:last-child {
        margin-right: 0;
    }
}

@media (max-width: 768px) {
    .formats__block {
        padding: 20px 15px;
    }
}

@media (max-width: 768px) {
    .formats__title {
        padding: 0 15px;
    }
}

.formats__slick-wrap {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 20px;
    height: 100%;
}

.formats__block_colorful {
    background-color: var(--main-yellow);
}

.formats__content-wrap {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 24px;
}

@media (max-width: 768px) {
    .formats__content-wrap {
        gap: 20px;
    }
}

.formats__block-header {
    width: 100%;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 10px;
}

.formats__level {
    font-weight: 700;
    font-size: 28px;
    text-align: center;
    color: var(--grey);
}

@media (max-width: 768px) {
    .formats__level {
        font-size: 22px;
    }
}

.formats__form {
    font-weight: 700;
    font-size: 14px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    padding: 8px 12px;
    color: var(--grey);
    background-color: var(--lightest-grey);
}

@media (max-width: 768px) {
    .formats__form {
        font-size: 12px;
    }
}

.formats__installment-plan {
    position: relative;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 2px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    border-radius: 15px;
    background-color: var(--main-yellow);
    padding: 20px;
}

@media (max-width: 768px) {
    .formats__installment-plan {
        padding: 15px;
    }
}

.formats__installment-plan::after {
    content: '';
    position: absolute;
    top: -16px;
    right: -14px;
    background-image: url(../img/formats-img.png);
    background-size: contain;
    background-repeat: no-repeat;
    width: 59px;
    height: 64px;
    z-index: 1;
}

@media (max-width: 768px) {
    .formats__installment-plan::after {
        width: 44px;
        height: 48px;
    }
}

.formats__installment-plan_colorful {
    color: var(--white);
    background-color: var(--grey);
}

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

@media (max-width: 768px) {
    .formats__text {
        font-size: 14px;
    }
}

.formats__text_weight {
    font-weight: 700;
}

.formats__text_size {
    font-size: 24px;
}

@media (max-width: 768px) {
    .formats__text_size {
        font-size: 18px;
    }
}

.formats__pay {
    width: 100%;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 10px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    border-radius: 15px;
    background-color: var(--lightest-grey);
    padding: 10px 20px;
}

@media (max-width: 768px) {
    .formats__pay {
        max-width: 300px;
        padding: 10px 15px;
    }
}

.formats__pay_colorful {
    background-color: #ffe840;
}

.formats__prices {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 10px;
    color: var(--black);
}

.formats__price-block {
    font-weight: 500;
}

.formats__price {
    font-size: 18px;
}

@media (max-width: 768px) {
    .formats__price {
        font-size: 16px;
    }
}

.formats__period {
    font-size: 14px;
}

.formats__price-discount {
    font-size: 14px;
    text-decoration: line-through;
    color: #939393;
}

.formats__price-discount_colorful {
    color: #515151;
}

.formats__percent {
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    align-self: center;
    font-weight: 600;
    font-size: 16px;
    color: var(--black);
    background-color: var(--main-yellow);
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    border-radius: 12px;
    padding: 8px 10px;
}

@media (max-width: 768px) {
    .formats__percent {
        font-size: 12px;
    }
}

.formats__percent_colorful {
    color: var(--white);
    background-color: var(--grey);
}

.formats__list-steps {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 10px;
}

@media (max-width: 768px) {
    .formats__list-steps {
        gap: 8px;
    }
}

.formats__item {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    font-weight: 500;
    font-size: 14px;
    color: var(--black);
}

@media (max-width: 768px) {
    .formats__item {
        font-weight: 400;
        font-size: 12px;
    }
}

.formats__item::before {
    content: '';
    display: inline-block;
    width: 15px;
    height: 15px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    background-color: var(--main-yellow);
    vertical-align: baseline;
    margin: 0 10px;
}

@media (max-width: 768px) {
    .formats__item::before {
        width: 12px;
        height: 12px;
    }
}

.formats__item_colorful::before {
    background-color: var(--grey);
}

.formats__help {
    position: relative;
    background-color: var(--lightest-grey);
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    border-radius: 15px;
    padding: 20px 15px;
}

@media (max-width: 768px) {
    .formats__help {
        padding: 10px 15px;
    }
}

.formats__help::after {
    content: '';
    position: absolute;
    top: -28px;
    right: -6px;
    background-image: url(../img/formats-help-img.png);
    background-size: contain;
    background-repeat: no-repeat;
    width: 45px;
    height: 54px;
    z-index: 1;
}

@media (max-width: 768px) {
    .formats__help::after {
        top: -34px;
        right: -11px;
    }
}

@media (max-width: 425px) {
    .formats__help::after {
        top: -24px;
        right: 0;
    }
}

@media (max-width: 320px) {
    .formats__help::after {
        top: -33px;
        right: -10px;
    }
}

.formats__help-text {
    font-weight: 500;
    font-size: 14px;
    color: var(--black);
}

@media (max-width: 768px) {
    .formats__help-text {
        font-size: 12px;
    }
}

.formats__button {
    width: 100%;
    text-align: center;
}

.formats__footnotes {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 8px;
    font-size: 14px;
    color: var(--grey5);
}

@media (max-width: 768px) {
    .formats__footnotes {
        padding: 0 15px;
    }
}

/* Documents */
.documents__title_mobile {
    display: none;
}

@media (max-width: 970px) {
    .documents__title_desktop {
        display: none;
    }

    .documents__title_mobile {
        display: block;
        color: var(--white);
        margin-bottom: 30px;
    }
}

@media (max-width: 520px) {
    .documents__title_mobile {
        padding-right: 150px;
    }
}

.documents__text {
    font-weight: 500;
    font-size: 18px;
    color: var(--white);
    max-width: 670px;
}

/* Education */

.education__steps {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: repeat(5, 1fr);
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
}

@media (max-width: 1200px) {
    .education__steps {
        -ms-grid-columns: repeat(3, 1fr);
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .education__steps {
        -ms-grid-columns: repeat(2, 1fr);
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .education__steps {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    }
}

.education__img-wrap {
    min-width: 82px;
    max-width: 151px;
    max-height: 123px;
}

@media (max-width: 600px) {
    .education__img-wrap {
        min-width: auto;
        max-width: 52px;
        width: 100%;
        max-height: 52px;
    }
}

.education__img {
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
}

.education__text-wrap {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 30px;
}

@media (max-width: 600px) {
    .education__text-wrap {
        gap: 15px;
    }
}

.education__step {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 30px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
    padding: 30px 20px;
    color: var(--white);
    background-color: var(--grey2);
}

@media (max-width: 600px) {
    .education__step {
        -webkit-flex-direction: row;
        -ms-flex-direction: row;
        flex-direction: row;
        gap: 15px;
    }
}

@media (max-width: 375px) {
    .education__step {
        padding: 20px;
    }
}

.education__step-title {
    font-weight: 600;
    font-size: 18px;
}

.education__step-text {
    font-weight: 300;
}

.education__video-block {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    gap: 104px;
    max-height: 507px;
}

@media (max-width: 1024px) {
    .education__video-block {
        gap: 34px;
    }
}

@media (max-width: 768px) {
    .education__video-block {
        -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
        gap: 30px;
        max-height: 100%;
    }
}

.education__video-block:nth-child(even) {
    -webkit-flex-direction: row-reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
}

@media (max-width: 768px) {
    .education__video-block:nth-child(even) {
        -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
    }
}

.education__video-block:not(:last-child) {
    margin-bottom: 50px;
}

@media (max-width: 768px) {
    .education__video-block:not(:last-child) {
        margin-bottom: 70px;
    }
}

.education__content {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;
    color: var(--white);
    max-width: 336px;
}

@media (max-width: 768px) {
    .education__content {
        max-width: 100%;
    }
}

.education__video-title {
    font-weight: 700;
    font-size: 26px;
}

@media (max-width: 768px) {
    .education__video-title {
        font-size: 18px;
    }
}

.education__video {
    max-width: 900px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 30px;
    background-color: var(--grey2);
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.education__video video {
    width: 100%;
}

.education__video-text {
    font-weight: 500;
    font-size: 18px;
    color: #afafaf;
}

@media (max-width: 768px) {
    .education__video-text {
        font-size: 16px;
    }
}

/* Speakers */

.speakers__title {
    margin-bottom: 0;
}

.speakers__blocks {
    overflow: hidden;
}

.speakers__block {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 10px;
    color: var(--white);
    max-width: 340px;
}

@media (max-width: 768px) {
    .speakers__block {
        max-width: 290px;
    }
}

.speakers__block {
    margin: 0 10px;
}

.speakers__block:first-child {
    margin-left: 0;
}

.speakers__block:last-child {
    margin-right: 0;
}

.speakers__img-wrap {
    max-width: 320px;
    -webkit-border-radius: 27px;
    -moz-border-radius: 27px;
    border-radius: 27px;
}

@media (max-width: 768px) {
    .speakers__img-wrap {
        max-width: 290px;
    }
}

.speakers__img {
    -webkit-border-radius: 27px;
    -moz-border-radius: 27px;
    border-radius: 27px;
}

.speakers__description-list {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    font-weight: 300;
}

.speakers__content {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 30px;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    border-radius: 25px;
    background-color: var(--grey2);
    max-width: 320px;
    height: 430px;
    padding: 30px;
}

@media (max-width: 768px) {
    .speakers__content {
        max-width: 290px;
        padding: 30px 15px;
    }
}

.speakers__content-description {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 30px;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.speakers__name {
    font-weight: 600;
    font-size: 20px;
}

@media (max-width: 768px) {
    .speakers__name {
        font-size: 18px;
    }
}

.speakers__description-item {
    position: relative;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    font-weight: 300;
    padding-left: 15px;
}

@media (max-width: 768px) {
    .speakers__description-item {
        font-size: 14px;
    }
}

.speakers__description-item::before {
    position: absolute;
    content: '';
    display: inline-block;
    width: 3px;
    height: 3px;
    background-color: var(--white);
    top: 9px;
    left: -12px;
    vertical-align: baseline;
    margin: 0 10px;
}

.speakers__text-weight {
    font-weight: 500;
}

@media (max-width: 768px) {
    .speakers__buttons {
        display: none;
    }
}

.speakers__button {
    padding: 10px 15px;
}

/* Interests course */
.interest-course__title {
    margin-bottom: 0;
}

.interest-course__slider {
    height: 424px;
    overflow: hidden;
}

.interest-course__content-container {
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    min-height: 424px;
    width: 100%;
    height: 100%;
    background-color: var(--beige);
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 30px;
    -webkit-box-shadow: 1px 1px 11px 0px rgba(0, 0, 0, 0.5);
    -moz-box-shadow: 1px 1px 11px 0px rgba(0, 0, 0, 0.5);
    box-shadow: 1px 1px 11px 0px rgba(0, 0, 0, 0.5);
}

@media (max-width: 768px) {
    .interest-course__content-container {
        max-width: 100%;
    }
}

.interest-course__content-container:hover {
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
}

.interest-course__slide-wrap {
    height: 100%;
}

.interest-course__content {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-shadow: unset;
    -moz-box-shadow: unset;
    box-shadow: unset;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 80px;
}

.interest-course__content-container {
    margin: 0 6px;
}

.interest-course__content-container:first-child {
    margin-left: 0;
}

.interest-course__content-container:last-child {
    margin-right: 0;
}

@media (max-width: 768px) {
    .interest-course__buttons {
        display: none;
    }
}

/* Education org */

.edu-organization__main-title,
.edu-organization__title {
    margin-bottom: 70px;
}

@media (max-width: 768px) {
    .edu-organization__main-title,
    .edu-organization__title {
        margin-bottom: 30px;
    }
}

.edu-organization__tab-header {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 70px;
}

.edu-organization__button {
    padding: 20px 25px;
}

@media (max-width: 1024px) {
    .edu-organization__button {
        padding: 10px 15px;
    }
}

.table-block {
    width: 100%;
    overflow-x: auto;
    margin-bottom: 70px;
}

@media (max-width: 768px) {
    .table-block {
        margin-bottom: 30px;
    }
}

.table-title {
    font-family: var(--second-family), Arial, Helvetica, sans-serif;
    font-weight: 300;
    font-size: 32px;
    line-height: 141%;
    color: var(--grey);
    margin-bottom: 40px;
}

@media (max-width: 768px) {
    .table-title {
        font-size: 22px;
        margin-bottom: 20px;
    }
}

@media (max-width: 425px) {
    .table-title {
        font-size: 18px;
    }
}

.table {
    min-width: 900px;
    width: 100%;
    font-family: var(--second-family), Arial, Helvetica, sans-serif;
    text-align: left;
    border-collapse: collapse;
}

.table__title-head {
    font-weight: 700;
    line-height: 125%;
    color: var(--grey6);
    border-bottom: 1.5px solid var(--grey6);
    padding: 11px 13px;
}

@media (max-width: 768px) {
    .table__title-head {
        padding: 7px 10px;
    }
}

.table__table-text {
    font-weight: 300;
    border-bottom: 1.5px solid #bababa;
    padding: 12px 6px;
}

.table__text-wrap {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
}

/* Privacy policy */

.privacy-policy__wrapper {
    margin-bottom: 70px;
}

.privacy-policy__points {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 70px;
}

@media (max-width: 768px) {
    .privacy-policy__points {
        gap: 30px;
    }
}

.privacy-policy__text {
    font-weight: 300;
    font-size: 14px;
    color: var(--black);
}

.privacy-policy__point-wrap {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 50px;
}

@media (max-width: 768px) {
    .privacy-policy__point-wrap {
        gap: 16px;
    }
}

.privacy-policy__point-title {
    font-weight: 700;
    font-size: 18px;
    color: var(--grey);
}

.privacy-policy__description-wrap {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;
}

.privacy-policy__point-subtitle {
    font-weight: 600;
    font-size: 14px;
    color: var(--black);
}

.privacy-policy__item {
    position: relative;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    padding-left: 10px;
}

.privacy-policy__item::before {
    content: '';
    display: inline-block;
    width: 3px;
    height: 3px;
    background-color: var(--black);
    top: 7px;
    left: 0px;
    position: absolute;
}

/* Contacts */
.contacts__content-wrap {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 20px;
}

@media (max-width: 768px) {
    .contacts__content-wrap {
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}

.contacts__address-wrap {
    max-width: 712px;
}

@media (max-width: 1024px) {
    .contacts__address-wrap {
        max-width: 500px;
    }
}

@media (max-width: 768px) {
    .contacts__address-wrap {
        max-width: 100%;
    }
}

.contacts__title {
    margin-bottom: 120px;
}

@media (max-width: 1024px) {
    .contacts__title {
        margin-bottom: 100px;
    }
}

@media (max-width: 768px) {
    .contacts__title {
        margin-bottom: 50px;
    }
}

@media (max-width: 425px) {
    .contacts__title {
        margin-bottom: 26px;
    }
}

.contacts__address-title {
    font-weight: 600;
    font-size: 40px;
    color: var(--black);
    margin-bottom: 50px;
}

@media (max-width: 1024px) {
    .contacts__address-title {
        font-size: 34px;
    }
}

@media (max-width: 768px) {
    .contacts__address-title {
        font-size: 26px;
        margin-bottom: 30px;
    }
}

@media (max-width: 425px) {
    .contacts__address-title {
        font-size: 20px;
        margin-bottom: 16px;
    }
}

.contacts__addresses-block {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 50px;
}

@media (max-width: 1024px) {
    .contacts__addresses-block {
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .contacts__addresses-block {
        margin-bottom: 16px;
    }
}

.contacts__address {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;
}

@media (max-width: 768px) {
    .contacts__address {
        gap: 10px;
    }
}

.contacts__subtitle {
    font-weight: 700;
    font-size: 18px;
}

@media (max-width: 425px) {
    .contacts__subtitle {
        font-size: 16px;
    }
}

.contacts__place-map {
    max-height: 453px;
    height: 100%;
    max-width: 712px;
    margin-bottom: 50px;
}

@media (max-width: 1024px) {
    .contacts__place-map {
        max-height: 396px;
        margin-bottom: 30px;
    }
}

.contacts__map,
.contacts__map iframe {
    width: 100%;
    height: 100%;
}

@media (max-width: 1024px) {
    .contacts__map iframe {
        height: 400px;
    }
}

@media (max-width: 600px) {
    .contacts__map iframe {
        height: 280px;
    }
}

.contacts__text {
    font-size: 18px;
}

@media (max-width: 768px) {
    .contacts__text {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .contacts__text {
        font-size: 14px;
    }
}

.contacts__text_weight {
    font-weight: 700;
}

.contacts__text_link {
    color: inherit;
}

.contacts__note {
    font-size: 16px;
    color: #777;
}

@media (max-width: 768px) {
    .contacts__note {
        font-size: 14px;
    }
}

@media (max-width: 425px) {
    .contacts__note {
        font-size: 14px;
    }
}

.contacts__connection {
    max-width: 426px;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 142px;
}

@media (max-width: 1024px) {
    .contacts__connection {
        gap: 82px;
    }
}

@media (max-width: 768px) {
    .contacts__connection {
        max-width: 100%;
        -webkit-flex-direction: row;
        -ms-flex-direction: row;
        flex-direction: row;
        gap: 20px;
    }
}

@media (max-width: 600px) {
    .contacts__connection {
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}

.contacts__connection-block {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;
}

@media (max-width: 768px) {
    .contacts__connection-block {
        gap: 10px;
    }
}

@media (max-width: 600px) {
    .contacts__connection-block:first-child {
        max-width: 400px;
        width: 100%;
    }
}

@media (max-width: 600px) {
    .contacts__connection-block:first-child {
        max-width: 100%;
        gap: 40px;
    }

    .contacts__connection-block {
        -webkit-flex-direction: row;
        -ms-flex-direction: row;
        flex-direction: row;
    }
}

@media (max-width: 425px) {
    .contacts__connection-block:first-child {
        gap: 0;
    }
}

@media (max-width: 375px) {
    .contacts__connection-block {
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .contacts__connection-block:first-child {
        gap: 10px;
    }
}

.contacts__block-wrap {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;
}

@media (max-width: 768px) {
    .contacts__block-wrap {
        gap: 10px;
    }
}

.connection__help-block {
    margin-bottom: 0;
}

@media (max-width: 425px) {
    .connection__form-wrapper {
        gap: 20px;
        padding: 20px;
    }
}

@media (max-width: 768px) {
    .connection__form-title {
        font-size: 28px;
    }
}

@media (max-width: 425px) {
    .connection__form-title {
        font-size: 20px;
    }
}

.connection__form-wrapper::before {
    display: none;
}

.connection__form-items {
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-bottom: 0;
}

.connection__form-text {
    max-width: 100%;
}

.connection__form-button {
    width: 100%;
}

@media (max-width: 425px) {
    .connection__footer-text {
        font-size: 12px;
    }
}

@media (max-width: 425px) {
    .connection__input,
    .connection__button {
        padding: 15px;
    }
}

/* Search results page */
.search-results__header-wrap {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 50px;
}

@media (max-width: 1024px) {
    .search-results__header-wrap {
        margin-bottom: 30px;
    }
}

@media (max-width: 600px) {
    .search-results__header-wrap {
        margin-bottom: 15px;
    }
}

@media (max-width: 1024px) {
    .search-results__button {
        padding: 10px 12px;
    }
}

.search-results__main-title {
    margin-bottom: 0;
}

@media (max-width: 600px) {
    .search-results__main-title {
        font-size: 18px;
    }
}

.search-results__results-list {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: repeat(3, 1fr);
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

@media (max-width: 1024px) {
    .search-results__results-list {
        -ms-grid-columns: repeat(2, 1fr);
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .search-results__results-list {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    }
}

.search-results__content-description,
.search-results__img-wrap {
    display: none;
}

.search-results__block {
    -webkit-flex: unset;
    -ms-flex: unset;
    flex: unset;
}

@media (max-width: 600px) {
    .search-results__title {
        font-size: 18px;
        margin-bottom: 15px;
    }
}

@media (max-width: 600px) {
    .search-results__content-title {
        font-size: 16px;
    }
}
