@font-face {
    font-family: 'museo sans cyr';
    src: url('../fonts/museosanscyrl-100.woff2') format('woff2'),
        url('../fonts/museosanscyrl-100.woff') format('woff');
    font-style: normal;
    font-weight: 100;
    font-display: swap;
}

@font-face {
    font-family: 'museo sans cyr';
    src: url('../fonts/museosanscyrl-300.woff2') format('woff2'),
        url('../fonts/museosanscyrl-300.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'museo sans cyr';
    src: url('../fonts/museosanscyrl-500.woff2') format('woff2'),
        url('../fonts/museosanscyrl-500.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'museo sans cyr';
    src: url('../fonts/museosanscyrl-700.woff2') format('woff2'),
        url('../fonts/museosanscyrl-700.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'museo sans cyr';
    src: url('../fonts/museosanscyrl-900.woff2') format('woff2'),
        url('../fonts/museosanscyrl-900.woff') format('woff');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

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

:focus,
:active {
    outline: none;
}

a:focus,
a:active {
    outline: none;
}

nav,
footer,
header,
aside {
    display: block;
}

html,
body {
    width: 100%;
    font-size: 16px;
    font-family: 'museo sans cyr';
    font-weight: 500;
    line-height: 18px;
    color: #252525;
}

input,
button,
textarea {
    font-family: inherit;
}

input::-ms-clear {
    display: none;
}

button {
    cursor: pointer;
    border: 0;
    outline: none;
}

button::-moz-focus-inner {
    padding: 0;
    border: 0;
}

a {
    text-decoration: none;
    color: inherit;
}

a:visited {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

ul,
li {
    list-style: none;
}

img {
    vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-size: inherit;
}

sup {
    color: inherit;
}

/* ----- */

.container {
    max-width: 1300px;
    padding: 0 20px;
    width: 100%;
    margin: 0 auto;
}

/* HEADER */
.header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background-color: rgb(255, 255, 255);
    padding: 20px 0;

    transition: transform 0.3s ease;
}

.header.hide {
    transform: translateY(-100%);
}

.header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header .list {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    gap: 35px;
}

.header .list a {
    transition: color 0.2s ease;
}

.header .list a:hover {
    color: #1455FE;
}

/* !--INTRO--! */

.intro {
    padding: 65px 0;
}

.intro-wrapper {
    background-color: black;
    border-radius: 25px;
    padding: 70px 50px;

    max-height: 550px;
    height: 100%;
    width: 100%;

    position: relative;

    color: white;

    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;

    gap: 20px;
}

.intro .lamp {
    position: absolute;
    top: 10px;
    right: 477px;
    z-index: 1;
    object-fit: none;
}

.intro .light {
    position: absolute;
    bottom: 4px;
    right: 0;
    z-index: 0;
    object-fit: none;
    transform: scale(1.08);
}

.intro .info-wrapper {
    position: relative;
    z-index: 2;
}

.intro .toogle {
    width: 250px;
    height: 40px;

    background: rgba(242, 242, 244, 0.4);
    border-radius: 100px;

    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 8px 20px 8px 8px;
}

.intro .toogle .student {
    background-color: white;
    color: black;
    padding: 8px 22px;
    border-radius: 100px;
}

.intro .toogle .parent a {
    transition: color 0.2s ease;
    cursor: pointer;
}

.intro .toogle .parent a:hover {
    color: #D0FF03;
}

.intro .info-text {
    margin-top: 100px;

    font-weight: 700;
    font-size: 48px;
    line-height: 58px;

    max-width: 360px;
    width: 100%;
}

.intro .form-wrapper {
    position: relative;
    z-index: 1;

    background-color: white;
    border-radius: 25px;
    border: black 2px solid;
    color: black;

    padding: 20px 30px;

    max-width: 350px;
    width: 100%;

    margin-top: 54px;
}

.intro .form-wrapper .title {
    font-weight: 700;
    font-size: 22px;
    line-height: 28px;
    margin-bottom: 10px;
}

.intro .form-wrapper .form {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.intro .form-wrapper .form .form__label {
    width: 100%;
    display: block;
}

.intro .form .input {
    width: 100%;
    box-sizing: border-box;
    background-color: #F2F2F4;
    border-radius: 5px;
    border: none;
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    padding: 15px 11px;
}

.intro .form .input::placeholder {
    color: #000000;
    opacity: 1;
}

.intro .form .btn {
    margin-top: 10px;
    width: 100%;
    padding: 10px 70px;
    border-radius: 100px;
    background-color: #D0FF03;

    transition: 0.5s ease;
    cursor: pointer;

    font-weight: 700;
    font-size: 18px;
    line-height: 24px;
}

.intro .form .btn:hover {
    background-color: black;
    color: white;
}

.intro .form .politican {
    font-weight: 300;
    font-size: 12px;
    line-height: 14px;
}

.intro .form .politican a {
    text-decoration: underline;

}

.formMessage__error {
    display: none;
    font-size: 30px;
    text-align: center;
    line-height: 29px;
}

/* CARDS */

.cards {
    padding: 65px 0;
}

.cards .cards-wrapper {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cards .cards-wrapper .title{
    font-weight: 900;
    font-size: 48px;
    line-height: 58px;
	margin-bottom: 40px;
}

.cards .first-row,
.cards .second-row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.cards .first-row .card {
    padding: 20px;
    width: 100%;
    min-height: 265px;
    height: auto;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.9s;
    perspective: 1000px;
    cursor: pointer;
}

.cards .first-row .card .side {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    backface-visibility: hidden;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.cards .first-row .card .back {
    transform: rotateY(180deg);
}

.cards .first-row .card:hover {
    transform: rotateY(180deg);
}

.cards .first-card .front,
.cards .second-card .front,
.cards .fourth-card .front {
    border-radius: 25px;
    border: #000000 2px solid;
    background-color: white;
}

.cards .first-card .back {
    border-radius: 25px;
    background-color: #1455FE;
}

.cards .second-card .back {
    border-radius: 25px;
    background-color: #DDDEE2;
    border: #000000 2px solid;
}

.cards .first-row .blue-card .front {
    border-radius: 25px;
    background-color: #1455FE;
    border: none;
}

.cards .first-row .blue-card .back {
    border-radius: 25px;
    background-color: #ffffff;
    border: #000000 2px solid;
    color: #000000;
}

.cards .first-row .fourth-card .back {
    border-radius: 25px;
    background-color: #DCB9FB;
    border: #000000 2px solid;
}

.cards .first-row .card .information {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;

    gap: 10px;
}

.cards .first-row .card .info {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;

    gap: 10px;
}

.cards .first-row .card .order {
    border-radius: 100px;
    border: #000000 2px solid;

    padding: 10px;
    text-align: center;
}

.cards .first-row .blue-card .front .order,
.cards .first-card .back .order {
    border: #ffffff 2px solid;
    color: #ffffff;
}

.cards .first-row .second-card .back .order,
.cards .first-row .fourth-card .back .order {
    background-color: white;
}


.cards .first-row .blue-card .back .order {
    border: #000000 2px solid;
}

.cards .first-row .card .fear {
    border-radius: 100px;
    background-color: #D0FF03;

    padding: 10px;
    text-align: center;
}

.cards .first-row .second-card .back .fear {
    border-radius: 100px;
    background-color: #1455FE;
    color: #ffffff;
    padding: 10px;
}

.cards .first-row .fourth-card .back .fear {
    background-color: white;
    border: #000000 2px solid;
}

.cards .first-row .card .arrow {
    border-radius: 100px;
    background-color: #D0FF03;

    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cards .first-row .second-card .back .arrow {
    background-color: #1455FE;
}

.cards .first-row .fourth-card .back .arrow {
    background-color: white;
}

.cards .first-row .card .title {
    font-weight: 500;
    font-size: 28px;
    line-height: 34px;

    flex-grow: 1;
    display: flex;
    align-items: center;
}

.cards .first-row .blue-card .front .title,
.cards .first-card .back .title {
    color: #ffffff;
}

/* SUBJECTS */

.subjects {
    padding: 65px 0;
}

.subjects .info {
    display: flex;
    justify-content: space-between;
    align-items: center;

    margin-bottom: 40px;
}

.subjects .title {
    font-weight: 900;
    font-size: 48px;
    line-height: 58px;
}

/* toogle */

.checkbox-green {
    display: inline-block;
    height: 45px;
    line-height: 40px;
    position: relative;
    vertical-align: middle;
    user-select: none;
}

.checkbox-green .checkbox-green-switch {
    display: inline-block;
    height: 45px;
    width: 156px;
    box-sizing: border-box;
    position: relative;
    background: #DDDEE2;
    border-radius: 100px;
    transition: background-color 0.3s cubic-bezier(0, 1, 0.5, 1);
}

.checkbox-green .checkbox-green-switch:before {
    content: attr(data-label-on);
    display: inline-block;
    box-sizing: border-box;
    width: 78px;
    /* Половина от общей ширины */
    padding: 10px 20px;
    position: absolute;
    top: 0;
    left: 78px;
    /* Смещаем вправо на свою же ширину */
    text-transform: uppercase;
    text-align: center;
    color: #676767;
    line-height: 25px;
}

.checkbox-green .checkbox-green-switch:after {
    content: attr(data-label-off);
    display: inline-block;
    box-sizing: border-box;
    width: 78px;
    height: 39px;
    border-radius: 100px;
    position: absolute;
    top: 3px;
    left: 3px;
    z-index: 5;
    text-transform: uppercase;
    text-align: center;
    background: white;
    color: #000000;
    line-height: 39px;
    transition: transform 0.3s cubic-bezier(0, 1, 0.5, 1);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.checkbox-green input[type="checkbox"] {
    display: block;
    width: 0;
    height: 0;
    position: absolute;
    z-index: -1;
    opacity: 0;
}

.checkbox-green input[type="checkbox"]:checked+.checkbox-green-switch {
    background-color: #D0FF03
}

.checkbox-green input[type="checkbox"]:checked+.checkbox-green-switch:before {
    content: attr(data-label-off);
    left: 0;
}

.checkbox-green input[type="checkbox"]:checked+.checkbox-green-switch:after {
    content: attr(data-label-on);
    color: #000000;
    transform: translateX(75px);
    /* Смещаем ровно на ширину */
}

/* Hover */
.checkbox-green input[type="checkbox"]:not(:disabled)+.checkbox-green-switch:hover {
    cursor: pointer;
}

.checkbox-green input[type="checkbox"]:not(:disabled)+.checkbox-green-switch:hover:after {
    box-shadow: 0 3px 3px rgba(0, 0, 0, 0.4);
}

/* Disabled */
.checkbox-green input[type=checkbox]:disabled+.checkbox-green-switch {
    opacity: 0.6;
    filter: grayscale(50%);
}

/* Focus */
.checkbox-green.focused .checkbox-green-switch:after {
    box-shadow: inset 0px 0px 4px #D0FF03;
}

/* -------- */

.cards-container-1,
.cards-container-2 {
    transition: opacity 0.3s ease, transform 0.3s ease;
    opacity: 0;
    height: 0;
    overflow: hidden;
    transform: translateY(10px);
}

.cards-container-1.active,
.cards-container-2.active {
    opacity: 1;
    height: auto;
    transform: translateY(0);
}

.subjects .cards-wrapper {
    position: relative;
    overflow: hidden;
}

.subjects .cards-container-1,
.subjects .cards-container-2 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.subjects .cards-container-1.active,
.subjects .cards-container-2.active {
    opacity: 1;
    pointer-events: auto;
    position: relative;
}

.subjects .swiper {
    width: 100%;
    padding: 15px;
}

.subjects .swiper-slide {
    background-color: #DDDEE2;
    border: #000000 2px solid;
    border-radius: 25px;

    min-height: 380px;
    height: 100%;

    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;

    position: relative;

    transition: transform 0.2s;
}

.subjects .cards-container-2 .swiper-slide {
    background-color: #DCB9FB;
}

.subjects .swiper-slide:hover {
    transform: scale(1.05);
}

.subjects .swiper-slide .title {
    font-weight: 700;
    font-size: 28px;
    line-height: 34px;
}

.subjects .swiper-slide .fav {
    position: absolute;
    top: 0;
    left: 0;
}

.subjects .swiper-slide .fav-1 {
    position: absolute;
    bottom: 0;
    right: 0;
}

/* form */

.form-container {
    padding: 65px 0;
    background-color: #000000;
}

.form-container .form-wrapper {
    background-color: white;
    border-radius: 25px;

    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;

    padding: 30px 50px;

    gap: 20px;
}

.form-container .title {
    font-weight: 700;
    font-size: 40px;
    line-height: 48px;

    max-width: 710px;
    width: 100%;
}

.form-container .btn {
    margin-top: 10px;
    padding: 10px 70px;
    border-radius: 100px;
    background-color: #D0FF03;

    transition: 0.5s ease;
    cursor: pointer;

    font-weight: 700;
    font-size: 18px;
    line-height: 24px;

    text-align: center;
}

.form-container .btn:hover {
    background-color: black;
    color: white;
}

/* teachers */

.teachers {
    padding: 65px 0px;
    overflow: hidden;
}

.teachers-wrapper {
    background-color: #1455FE;
    border-radius: 25px;
    padding: 35px 20px;

    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 25px;

    width: 100%;
    /* Явно указываем ширину */
    box-sizing: border-box;
    /* Учитываем padding в общей ширине */
}

.teachers .first-column {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;

    width: 100%;
}

.teachers .first-column .title {
    font-weight: 900;
    font-size: 48px;
    line-height: 58px;
    color: white;

    margin-bottom: 30px;
}


/* checkbox */

.teachers .checkbox {
    position: relative;
    width: fit-content;
    min-width: 300px;
    border-radius: 100px;
    background-color: var(--checkbox-bg, white);
    transition: background-color 0.3s ease;
}

.teachers .checkbox-label {
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 15px 20px;
    cursor: pointer;
    gap: 10px;

    font-weight: 500;
    font-size: 22px;
    line-height: 30px;
}

.checkbox-input:checked+.checkbox {
    --checkbox-bg: #D0FF03;
}

.checkbox-input {
    appearance: none;
    -webkit-appearance: none;
    position: relative;
    width: 30px;
    height: 30px;
    background: #ffffff;
    box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
    border-radius: 50%;
    border: 2px solid #BCBEB4;
    transition: all 0.3s ease;
    cursor: pointer;
    flex-shrink: 0;
}

.checkbox-input::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    background-color: #000000;
    border-radius: 50%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' height='16' viewBox='0 0 24 24' width='16' fill='%23ffffff'%3E%3Cpath d='M0 0h24v24H0z' fill='none'/%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    transition: all 0.3s ease;
}

.checkbox-input:checked {
    background-color: #000000;
    border-color: #000000;
}

.checkbox-input:checked::after {
    width: 30px;
    height: 30px;
    background-size: 16px;
}

.checkbox-wrapper {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.first-checkbox-row,
.second-checkbox-row {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.teachers .second-column {
    background-color: white;
    border-radius: 25px;

    max-width: 500px;
    width: 100%;

    height: 550px;

    padding: 15px 25px;

    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.teacher-wrapper-info {

    transition: opacity 0.3s ease;

    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.teacher-img img {
    width: 100%;
    height: 100%;

    max-height: 220px;
    max-width: 430px;

    display: block;
    max-width: 100%;
    object-fit: contain;
    overflow: hidden;
}


.teacher-description {
    background-color: #ffffff;
    border-radius: 25px;

    border: #000000 2px solid;

    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: left;

    gap: 20px;

    padding: 25px 15px;

}

.teacher-fio {
    font-weight: 900;
    font-size: 24px;
    line-height: 29px;
}

.teacher-text {
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
}

.teachers .btn {
    margin-top: 10px;
    width: 100%;
    padding: 10px 70px;
    border-radius: 100px;
    background-color: #D0FF03;

    transition: 0.5s ease;
    cursor: pointer;

    font-weight: 700;
    font-size: 18px;
    line-height: 24px;

    text-align: center;
}

.teachers .btn:hover {
    background-color: #000000;
    color: white;
}

/* choice */

.choice {
    padding: 65px 0px;
}

.choice .title {
    font-weight: 900;
    font-size: 48px;
    line-height: 58px;

    text-align: center;

    margin-bottom: 40px;
}

.choice .choice-cards {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
    gap: 15px;
    min-height: 364px;
    overflow: hidden;
    flex-wrap: wrap;
}

.choice .card {
    max-width: 410px;
    width: 100%;
    min-height: 364px;
    border-radius: 25px;

    position: relative;
}

.choice .card.grey {
    background-color: #DDDEE2;
    padding: 10px;
}

.choice .card.green {
    background-color: #D0FF03;
    padding: 10px;
}

.choice .card.blue {
    background-color: #1455FE;
}

.choice .grey .btn-card,
.choice .green .btn-card {
    padding: 5px 10px;
    border-radius: 100px;
    background-color: #1455FE;

    text-align: center;

    position: absolute;
    left: 220px;
    top: 25px;

    font-weight: 300;
    font-size: 20px;
    line-height: 24px;
    text-align: center;

    color: #FFFFFF;

    transform: rotate(8.06deg);
}

.choice .green .btn-card {
    background-color: #000000;
    left: 236px;
}

.choice .blue .btn-card {
    padding: 5px 10px;
    border-radius: 100px;
    background-color: #ffffff;

    text-align: center;

    position: absolute;
    left: 15px;
    top: 20px;

    font-weight: 500;
    font-size: 20px;
    line-height: 24px;
    text-align: center;

    color: #000000;

    cursor: pointer;
}

.choice .blue .btn-card:hover {
    background-color: #000000;
    color: #ffffff;
}

.choice .card img {
    width: 100%;
    height: 100%;

    display: block;
    max-width: 100%;
    object-fit: fill;
    overflow: hidden;
}

/* second-form */

.second-form {
    padding: 65px 0;
    background-color: #DCB9FB;
}

.second-form-wrapper {
    background-color: white;
    border: #000000 2px solid;
    border-radius: 25px;

    padding: 45px;
}

.second-form-wrapper .title {
    font-weight: 700;
    font-size: 48px;
    line-height: 58px;

    max-width: 720px;
    width: 100%;

    margin-bottom: 30px;
}

.second-form-wrapper .subtitle {
    font-weight: 500;
    font-size: 32px;
    line-height: 38px;

    max-width: 645px;
    width: 100%;

    margin-bottom: 25px;
}

.second-form .form {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 15px;

    margin-bottom: 15px;
}

.second-form .form .form__label {
    display: block;
    max-width: 300px;
    width: 100%;
}

.second-form .input {
    background-color: #F2F2F4;
    border-radius: 5px;
    border: #000000 2px solid;
    padding: 15px;

    width: 100%;

}

.second-form .form .input::placeholder {
    color: #000000;
    opacity: 1;

    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
}


.second-form .form .btn {
    width: 100%;
    padding: 10px 40px;
    border-radius: 100px;
    background-color: #D0FF03;

    transition: 0.5s ease;
    cursor: pointer;

    font-weight: 700;
    font-size: 18px;
    line-height: 24px;
}

.second-form .form .btn:hover {
    background-color: black;
    color: white;
}


.second-form .form .blue {
    background-color: black;
	color: white;
}

.second-form .form .btn:hover {
    background-color: #1455FE;
    color: white;
}


.second-form .politican a {
    text-decoration: underline;
}

/* reviews */

.reviews {
    padding: 65px 0px;
}

.reviews .title {
    font-weight: 900;
    font-size: 48px;
    line-height: 58px;

    text-align: center;
    margin-bottom: 40px;
}

.reviews .swiper-slide {
    background-color: #DDDEE2;
    border-radius: 25px;

    width: 400px !important;

    min-height: 400px;
    height: 100%;

    padding: 20px;
}

.reviews .video-review {
    background-color: transparent;
    border-radius: 50%;
    padding: 0px;
}


.reviews .video-slide {
    width: 400px !important;
    height: 400px;
    border-radius: 50%;
    overflow: hidden;
    padding: 0;
    margin: 0;

    position: relative;

}

.reviews .video-slide .video {
    width: 100%;
    height: 100%;

    position: relative;
    z-index: 1;
}

.reviews .video-slide video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sound-btn {
    position: absolute;
    bottom: 45px;
    right: 85px;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    cursor: pointer;
    z-index: 10;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sound-icon {
    width: 16px;
    height: 16px;
    pointer-events: none;
    /* Чтобы клики проходили сквозь иконку к кнопке */
}

.reviews .fav-row {
    position: absolute;
    bottom: 0;
    left: 0;

    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 5px;

    z-index: 2;
}

.reviews .fav {
    background-color: #DDDEE2;
    border-radius: 100px;

    padding: 5px 7px;

    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 5px;

    height: 42px;
}

.reviews .fav span {
    font-weight: 700;
    font-size: 13px;
    line-height: 16px;
}

.reviews .first-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 15px;
}

.reviews .name {
    font-weight: 700;
    font-size: 25px;
    line-height: 30px;
}

.reviews .review {
    font-weight: 500;
    font-size: 20px;
    line-height: 24px;

    margin-top: 20px;
}

.reviews .image img {
    width: 80px;
    height: 80px;

    border-radius: 100px;

    object-fit: contain;
    overflow: hidden;
}

/* news */

.news {
    padding: 65px 0px;
}

.news .title {
    text-align: center;
    font-weight: 900;
    font-size: 48px;
    line-height: 58px;

    margin-bottom: 40px;
}

.news .swiper-slide {
    min-height: 445px;
    height: 100%;
}

.news .swiper-slide .img-news img {
    width: 100%;
    height: 100%;

    max-height: 300px;
    max-width: 380px;

    display: block;
    max-width: 100%;
    object-fit: cover;
    overflow: hidden;

    border-radius: 25px;
}

.news .swiper-slide .title {

    font-weight: 700;
    font-size: 24px;
    line-height: 29px;

    padding: 25px 20px;

    text-align: left;
}

/* footer */

.footer {
    position: relative;
    overflow: hidden;
    padding: 30px 0;
}

.footer .title {
    text-align: center;

    font-weight: 900;
    font-size: 128px;
    line-height: 154px;

    margin-bottom: 40px;

}

.footer .info {
    margin-bottom: 40px;
}

.footer .info-list {
    display: flex;
    flex-direction: column;
    align-items: left;
    gap: 10px;

    max-width: 230px;
    width: 100%;
}

.footer .info-block {
    display: flex;
    flex-direction: row;
    align-items: left;
    gap: 40px;
    flex-wrap: wrap;
}

.footer .info-block-wrapper {
    display: flex;
    flex-direction: row;
    align-items: left;
    gap: 40px;
    justify-content: space-between;
}

.footer .info-list-item,
.footer .info-block a,
.footer .info-bottom a {
    font-weight: 700;
    font-size: 16px;
    line-height: 19px;

    transition: color 0.2s ease;
}

.footer .info-block a:hover,
.footer .info-bottom a:hover {
    color: #1455FE;
}

.footer .social {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 5px;
}

.footer .social img {
    height: 30px;
    width: 30px;
}

.footer .info-bottom {
    border-top: #D9D9D9 1px solid;
    padding: 20px 0;

    display: flex;
    flex-direction: row;
    align-items: left;
    gap: 130px;
}

/* all_pages */
/* sticky-header */

.sticky-header {
    position: sticky;
    top: 80px;
    /* Высота основного header */
    left: 0;
    width: 100%;
    z-index: 998;
    /* Меньше, чем у основного header */
    transition: transform 0.4s ease;

    transform: translateY(0);

    transition: top 0.3s ease;
}

.header.hide+main .sticky-header {
    top: 0;
    /* Когда основной header скрыт, sticky-header поднимается наверх */
}

.sticky-header-wrapper {
    background-color: #D9D9D9;
    border: #000000 2px solid;
    border-radius: 0 0 25px 25px;
}

.dropdown-container {
    display: flex;
    gap: 20px;
    margin: 20px;

    font-weight: 700;
    font-size: 16px;
    line-height: 19px;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-btn {
    background-color: #ffffff;
    color: #333;
    padding: 10px 20px;
    font-size: 16px;
    border: 1px solid #000000;
    border-radius: 4px;
    cursor: pointer;
    min-width: 180px;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;

    font-weight: 700;
    font-size: 16px;
    line-height: 19px;
}

.dropdown-btn::after {
    content: "";
    display: inline-block;
    width: 20px;
    height: 10px;
    margin-left: 10px;
    background-image: url('../img/arrow_1.svg');
    background-repeat: no-repeat;
    background-size: contain;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 100%;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
    border-radius: 4px;
    overflow: hidden;
}

.dropdown-content a {
    color: #333;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    transition: background-color 0.3s;
}

.dropdown-content a:hover {
    background-color: #e9ecef;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown:hover .dropdown-btn {
    background-color: #e9ecef;
}

.dropdown-content.show {
    display: block;
}

.reset-btn {
    background-color: #ffffff;
    color: #333;
    padding: 10px 20px;
    font-size: 16px;
    border: 1px solid #000000;
    border-radius: 4px;
    cursor: pointer;
    min-width: 180px;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;

    transition: 0.5s ease;

    font-weight: 700;
    font-size: 16px;
    line-height: 19px;
}

.reset-btn:hover {
    background-color: #000000;
    color: #ffffff;
}


/* Модальное окно фильтров для мобильных */


.mobile-filters-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mobile-filters-content {
    background-color: white;
    width: 100%;
    max-height: 90vh;
    border-radius: 15px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.mobile-filters-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.mobile-filters-header h3 {
    font-size: 20px;
    font-weight: 700;
}

.close-mobile-filters {
    background: none;
    border: none;
    cursor: pointer;
}

.close-mobile-filters img {
    width: 30px;
    height: 30px;
}


.mobile-filters-body {
    flex-grow: 1;
    margin-bottom: 20px;
}

.mobile-filter-group {
    margin-bottom: 25px;
}

.mobile-filter-group h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
}

.mobile-filter-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.mobile-filter-option {
    padding: 8px 12px;
    background-color: #f0f0f0;
    border: 1px solid #ddd;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s;
}

.mobile-filter-option:hover {
    background-color: #e0e0e0;
}

.mobile-filter-option.active {
    background-color: #007bff;
    color: white;
    border-color: #007bff;
}

.mobile-filters-footer {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.mobile-reset-filters,
.mobile-apply-filters {
    padding: 10px 15px;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    flex: 1;
}

.mobile-reset-filters {
    background-color: #f8f9fa;
    border: 1px solid #ddd;
}

.mobile-apply-filters {
    background-color: #007bff;
    color: white;
    border: none;
}


@media (min-width: 768px) {
    .mobile-filters-modal {
        display: none !important;
    }
}



/* banner-all-pages */
.banner-all-pages {
    padding: 65px 0px;
}

.banner-all-pages-wrapper {
    background-color: #000000;
    border-radius: 25px;

    padding: 25px 40px;

    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
}

.banner-all-pages .info-block {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    gap: 40px;

    max-width: 300px;
    width: 100%;
}

.banner-all-pages .info-block .title {
    font-weight: 700;
    font-size: 32px;
    line-height: 38px;

    color: white;
}

.banner-all-pages .info-block .btn {
    width: 100%;
    padding: 10px 40px;
    border-radius: 100px;
    background-color: #D0FF03;

    transition: 0.5s ease;
    cursor: pointer;

    font-weight: 700;
    font-size: 18px;
    line-height: 24px;

    text-align: center;
}

.banner-all-pages .info-block .btn:hover {
    background-color: #1455FE;
    color: white;
}

.banner-all-pages .banner-cards {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
    gap: 15px;
}

.banner-all-pages .banner-first-card {
    position: relative;

    padding: 25px 20px;
    height: 200px;
    width: 210px;

    background: linear-gradient(45deg, transparent 14px, rgb(208, 255, 3) 0px);
}

.banner-all-pages .banner-first-card::after {
    content: "";
    position: absolute;
    bottom: 0px;
    left: 0px;
    width: 20px;
    height: 20px;
    background: linear-gradient(45deg, transparent 50%, rgb(68, 83, 1) 0px);
}

.banner-all-pages .banner-second-card {
    position: relative;

    padding: 25px 20px;
    height: 200px;
    width: 210px;

    background: linear-gradient(45deg, transparent 14px, rgb(255, 255, 255) 0px);
}

.banner-all-pages .banner-second-card::after {
    content: "";
    position: absolute;
    bottom: 0px;
    left: 0px;
    width: 20px;
    height: 20px;
    background: linear-gradient(45deg, transparent 50%, rgb(153, 153, 153) 0px);
}

.banner-all-pages .banner-third-card {
    position: relative;

    transform: rotate(3deg);

    padding: 25px 20px;
    height: 200px;
    width: 210px;

    color: white;

    background: linear-gradient(45deg, transparent 14px, rgb(20, 85, 254) 0px);
}

.banner-all-pages .banner-third-card::after {
    content: "";
    position: absolute;
    bottom: 0px;
    left: 0px;
    width: 20px;
    height: 20px;
    background: linear-gradient(45deg, transparent 50%, rgb(8, 41, 126) 0px);
}

.banner-all-pages .banner-cards .title {
    font-weight: 700;
    font-size: 20px;
    line-height: 24px;

    margin-bottom: 8px;
}

.banner-all-pages .banner-cards .subtitle {
    font-weight: 300;
    font-size: 16px;
    line-height: 19px;
}

/* programs */
.programs {
    padding: 65px 0;
}

.programs-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    gap: 35px;
}

.programs-wrapper {
    background-color: white;
    border-radius: 25px;

    -webkit-box-shadow: 14px 10px 45px rgba(0, 0, 0, 0.25);
    box-shadow: 14px 10px 45px rgba(0, 0, 0, 0.25);

    padding: 30px 40px;

    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-direction: row;
    gap: 20px;

    min-height: 250px;
	height: 100%;
}

.programs-wrapper .img-container{
    align-self: center;
}


.programs-wrapper .img-container img {
    height: 250px;
    width: 250px;

    display: block;
    object-fit: contain;
    overflow: hidden;
}

.programs-wrapper .info {
    display: flex;
    align-items: left;
    flex-direction: column;
    gap: 20px;
}

.programs-wrapper .filter-btn {
    display: flex;
    align-items: center;
    flex-direction: row;
    gap: 15px;

}

.programs-wrapper .filter-btn .btn {
    padding: 5px 15px;
    border-radius: 100px;
    background-color: #D9D9D9;

    font-weight: 700;
    font-size: 16px;
    line-height: 19px;

    text-align: center;
}

.programs-wrapper .filter-btn .blue {
    background-color: rgba(20, 85, 254, 0.3);
}

.programs-wrapper .info .title {
    font-weight: 700;
    font-size: 32px;
    line-height: 38px;
}


.programs-wrapper .info .subtitle {

    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
	

}

.programs-wrapper .programs-wrapper-btn {
    width: 180px;
    padding: 10px 20px;
    border-radius: 100px;
    background-color: #D0FF03;

    transition: 0.5s ease;
    cursor: pointer;

    font-weight: 700;
    font-size: 18px;
    line-height: 24px;

    text-align: center;
}

.programs-wrapper .programs-wrapper-btn:hover {
    background-color: black;
    color: white;
}

/* Стили для фильтров */
.dropdown-btn {
    transition: all 0.3s ease;
}

.dropdown-btn.active {
    background-color: #e9ecef;
    border-color: #1455FE;
}

.dropdown-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.dropdown-content.show {
    max-height: 540px;
}

/* Анимация карточек */
.programs-wrapper {
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.programs-wrapper.hidden {
    opacity: 0;
    transform: translateY(20px);
    height: 0;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

/* Сообщение "Ничего не найдено" */
#no-results {
    text-align: center;
    padding: 40px;
    grid-column: 1 / -1;
}

#no-results h3 {
    color: #333;
    margin-bottom: 10px;
}

#no-results p {
    color: #666;
}

.info-mob {
    align-self: flex-end;

    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: space-between;

}


/* form  all-pages*/

.all-pages-btn {
    background-color: #1455FE !important;
    color: white !important;
    width: unset !important;
}

.all-pages-btn:hover {
    background-color: #000000 !important;
}

.all-pages .second-form-wrapper {
    position: relative;
}

.all-pages .second-form-wrapper form {
    position: relative;
    z-index: 2;
}

.all-pages .second-form-wrapper .img-container {
    position: absolute;
    top: 20px;
    right: 5px;
    z-index: 0;
}

.all-pages .form__label {
    max-width: 230px !important;
}


/* PROGRAM */

.program .intro .filter-btn {
    display: flex;
    align-items: center;
    flex-direction: row;
    gap: 10px;
    flex-wrap: wrap;
}

.program .intro .info-wrapper {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    justify-content: space-between;

    gap: 170px;

}

.program .intro .info-text {
    margin-top: 0px;
    font-weight: 700;
    font-size: 48px;
    line-height: 58px;
    /* max-width: unset; */
    width: 100%;
}

.program .intro .filter-btn .btn {
    padding: 10px 20px;
    border-radius: 100px;

    font-weight: 700;
    font-size: 20px;
    line-height: 24px;

    cursor: pointer;
    transition: 0.5s ease;

    text-align: center;
}

.program .intro .filter-btn .blue {
    background-color: #1455FE;
    color: white;
}

.program .intro .filter-btn .blue:hover {
    background-color: rgba(20, 85, 254, 0.5);
}

.program .intro .filter-btn .green {
    background-color: #D0FF03;
    color: black;
}

.program .intro .filter-btn .green:hover {
    background-color: rgba(208, 255, 3, 0.5);
}

.program .intro .filter-btn .white {
    background-color: #ffffff;
    color: black;
}

.program .intro .filter-btn .white:hover {
    background-color: rgba(255, 255, 255, 0.5);
}

.program .intro .filter-btn .purple {
    background-color: #DCB9FB;
    color: black;
}

.program .intro .filter-btn .purple:hover {
    background-color: rgba(220, 185, 251, 0.5);
}

/* teacher-info */

.program .teachers-wrapper {
    gap: 20px;
}

.program .teachers .first-column .title {
    margin-bottom: 10px;
}

.program .teachers .first-column {
    gap: 20px;
}

.program .teachers .teacher-description {
    width: 100%;
    margin: 0 auto;
}

.program .teacher-fio {
    font-weight: 900;
    font-size: 30px;
    line-height: 32px;
}

.program .teacher-text {
    font-weight: 500;
    font-size: 20px;
    line-height: 22px;
}

.program .teachers .teacher-wrapper-info {
    min-height: unset;
}

.program .teachers .teacher-description-numbers {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    gap: 40px;
    width: 100%;
}

.program .teachers .teacher-description .column {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.program .teacher-numbers {
    text-align: center;

    font-size: 20px;
    line-height: 24px;
    font-weight: 700;
}

.program .teacher-numbers span {
    font-size: 48px;
    line-height: 50px;
}

.program .teachers .btn {
    margin-top: 0px;
}

.program .teachers .second-column {
    background-color: white;
    border-radius: 25px;

    max-width: 500px;
    width: 100%;

    /* max-height: 500px; */
    /* height: auto; */
	
	height: 365px; 

    padding: 25px;

    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.program .swiper-teacher-course-tamplate-container{
	width: 100%;
}

.program .teacher-img img {
    width: 100%;
    height: 100%;
    max-height: 420px;
    max-width: 350px;
    display: block;
    object-fit: contain;
    overflow: hidden;
}

.program .swiper-teacher-course-tamplate-container .swiper {
    position: relative;
    padding-bottom: 35px;
}

.program .swiper-teacher-course-tamplate-container .swiper-pagination-bullet-active{
    background-color: white; 
}

.program .swiper-teacher-course-tamplate-container .swiper-slide-container{
	display: flex;
    flex-direction: row;
    justify-content: space-between;
	
	gap: 20px;
}

.program .teacher-description-container{
	display: flex;
    flex-direction: column;
    /* justify-content: space-between; */
    align-items: center;
	
	gap: 10px;
	
	width: 70%;
}

/* watch */

.watch {
    padding: 65px 0px;
}

.watch-wrapper {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
}

.watch .info-block {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 70px;
}

.watch .info-block .title {
    font-weight: 700;
    font-size: 48px;
    line-height: 58px;
}

.watch .info-block .subtitle {
    font-weight: 700;
    font-size: 48px;
    line-height: 58px;

}

.watch .watch-container {
    max-width: 550px;
    width: 100%;
    min-height: 325px;
    height: 100%;
    border-radius: 25px;
    background-color: #D9D9D9;
    border: #000000 1px solid;

    padding: 20px 25px;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    position: relative;
    z-index: 2;
}

.watch .watch-container .watch-card-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 15px;

    position: relative;
    z-index: 2;
}

.watch .watch-container .title {
    font-weight: 700;
    font-size: 24px;
    line-height: 29px;
    position: relative;
    z-index: 2;
}

.watch .watch-container .watch-card {
    padding: 15px 5px;
    border: #000000 1px solid;
    border-radius: 4px;
    background-color: white;

    width: 100px;
    height: 100px;

    font-weight: 700;
    font-size: 20px;
    line-height: 24px;

    text-align: center;
}

.watch .watch-container .watch-card .number {
    font-weight: 700;
    font-size: 32px;
    line-height: 38px;
}

.watch .watch-container img {
    width: 100%;
    height: 100%;
    max-height: 325px;
    max-width: 550px;
    display: block;
    object-fit: contain;
    overflow: hidden;

    position: absolute;
    z-index: 0;

    top: 0;
    left: 0;
}

.watch .subtitle {
    position: relative;
    display: inline-block;
}

.watch .info-circle {
    position: absolute;
    top: -10px;
    right: -25px;
    width: 20px;
    height: 20px;
    background-color: #4a90e2;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.watch .info-circle:hover {
    background-color: #357ab8;
    transform: scale(1.1);
}

.watch .info-tooltip {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 250px;
    background-color: #1455FE;
    color: white;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 10;
    margin-bottom: 10px;
}

.watch .info-tooltip p {
    margin: 0 0 10px 0;
    font-size: 14px;
    line-height: 1.4;
}

.watch .info-tooltip p:last-child {
    margin-bottom: 0;
}

.watch .info-circle:hover .info-tooltip,
.watch .info-circle.active .info-tooltip {
    opacity: 1;
    visibility: visible;
}

/* score-table */

.score-table {
    padding: 65px 0;
}

.score-table .title {
    font-weight: 700;
    font-size: 48px;
    line-height: 58px;

    margin-bottom: 40px;
}

.table-container {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.table-container table {
    border-radius: 25px;
    border-spacing: 0;
    text-align: center;
    overflow: hidden;
    width: 100%;
    max-width: 450px;
    background: #D9D9D9;
}

.last-table {
    align-self: flex-start;
}

.table-container td {
    border-style: solid;
    border-width: 0 1px 1px 0;
    border-color: white;

    padding: 10px 10px;
    text-align: center;

    font-weight: 300;
    font-size: 32px;
    line-height: 36px;


}

.table-container .bold-cell {
    font-weight: 700;
}

.purple-bg {
    background: #DCB9FB;
}


.table-container tr:last-child td:first-child {
    border-radius: 0 0 0 10px;
}

.table-container tr:last-child td:last-child {
    border-radius: 0 0 10px 0;
}

.table-container tr td:last-child {
    border-right: none;
}

/* criteria */
.text {
    padding: 65px 0;
}

.text-wrapper {
    font-weight: 500;
    font-size: 22px;
    line-height: 26px;
}

.text-wrapper .title {
    font-weight: 700;
    font-size: 48px;
    line-height: 58px;
	
	margin-bottom: 40px;
}

.text-wrapper h2,
h3 {
    margin: 25px 0;
    font-weight: 700;
    font-size: 32px;
    line-height: 38px;
}

.text-wrapper p {
    margin-bottom: 15px;
}

.text-wrapper ul li {
    list-style: disc !important;
    list-style-position: inside !important;
    margin-bottom: 15px;
}

.text-wrapper blockquote{
    margin-bottom: 15px;
    padding: 20px;
    border-left: 4px solid #1455FE;
    background-color: rgba(20, 85, 254, 0.2);
}

.table-scroll-wrapper {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch; /* Для плавной прокрутки на iOS */
    margin-bottom: 20px;
    border-radius: 25px;
  }

.criteria table {
            border-radius: 25px;
			border-spacing: 0;
			text-align: left;
			overflow: hidden;
			width: 100%;
			/* background: #F2F2F4; */
			

        }
        
.criteria th, td {
            padding: 12px 15px;
            border-style: solid;
			border-width: 0 1px 1px 1px;
			border-color: #F2F2F4;
        }
        
.criteria th {
            background-color: #1455FE;
            color: white;
            font-weight: bold;
        }
		
.criteria .section-title {
            background-color: #1455FE;
            color: white;
			font-weight: bold;
			text-align: center;
        }

/* faq */
.faq {
    padding: 65px 0px;
}

.faq-wrapper .title {
    font-weight: 700;
    font-size: 48px;
    line-height: 58px;
    margin-bottom: 40px;
}

.faq-container-wrapper {
    border-bottom: #DDDEE2 solid 2px;
}

.question-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding: 20px 0;
    transition: background-color 0.2s ease;
}

.question {
    font-weight: 500;
    font-size: 32px;
    line-height: 38px;
    padding-right: 15px;
    flex-grow: 1;
}

.answer {
    overflow: hidden;
    transition:
        max-height 0.2s cubic-bezier(0.4, 0, 0.2, 1),
        padding 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    max-height: 0;
	
	font-size: 22px;
    line-height: 26px;
}

.answer.active {
    max-height: 500px;
    padding-bottom: 20px;
}

.answer-content {
    font-weight: 500;
    font-size: 22px;
    line-height: 36px;
    padding: 0 20px;
    opacity: 0;
    transform: translateY(-10px);
    transition:
        opacity 0.1s ease 0.1s,
        transform 0.1s ease 0.1s;
}

.answer.active .answer-content {
    opacity: 1;
    transform: translateY(0);
}

.answer p {
    margin-bottom: 15px;
}

.answer ul li{
	list-style: disc !important;
    list-style-position: inside !important;
    margin-bottom: 15px;
}

.toggle-btn {
    background: none;
    border: none;
    font-size: 40px;
    cursor: pointer;
    transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0 15px;
    color: #333;
    flex-shrink: 0;
}

.toggle-btn.active {
    transform: rotate(45deg);
    color: #000;
}

/* banner-mob */

.banner-all-pages-wrapper-mob {
    width: 100%;
}

.banner-all-pages-wrapper-mob .swiper {
    width: 100%;
}

.banner-all-pages-wrapper-mob .swiper-slide {
    width: 210px !important;
}


.info-block-mob {
    position: relative;
    padding: 25px 20px;
    height: 200px;
    width: 210px;

    border-radius: 25px;

    color: white;

    background-color: rgb(0, 0, 0);

    display: flex;
    justify-content: space-between;
    flex-direction: column;
}

.banner-all-pages-wrapper-mob .title {
    font-weight: 700;
    font-size: 20px;
    line-height: 24px;
    margin-bottom: 8px;
}

.banner-all-pages-wrapper-mob .subtitle {
    font-weight: 300;
    font-size: 16px;
    line-height: 19px;
}

.banner-all-pages-wrapper-mob .btn {
    width: 100%;
    padding: 10px 10px;
    border-radius: 100px;
    background-color: #D0FF03;
    transition: 0.5s ease;
    cursor: pointer;
    font-weight: 700;
    font-size: 16px;
    line-height: 29px;
    text-align: center;

    color: #000;
}

/* parent */

.parent .intro .info-text {
    font-size: 44px;
    line-height: 50px;
}

/* БЛОГ */

.blog {
    padding: 20px 0 65px 0;
    min-height: 100vh;
}

/* .blog .breadcrumbs{
	z-index: 3;
	position: relative;
} */

.breadcrumbs {
    transition: color 0.2s ease;
}

.breadcrumbs:hover {
    color: #1455FE;
}

.blog .blog-wrapper {
    padding: 65px 0 0 0;
}

.blog h1 {
    font-weight: 900;
    font-size: 48px;
    line-height: 58px;
    margin-bottom: 40px;

}

.blog .card-wrapper {
    display: flex;
    flex-direction: row;
    gap: 20px;
    flex-wrap: wrap;
}

.blog .card-wrapper .card {
    background-color: #DCB9FB;
    width: 49%;
    border-radius: 25px;

    display: flex;
    flex-direction: row;

}

.blog .card-wrapper .card .card-image {
    max-width: 300px;
    height: 300px;

    width: 100%;
    /* height: 100%; */

    border-radius: 25px;

    overflow: hidden;
}

.blog .card-wrapper .card .card-image img {
    width: 100%;
    height: 100%;
    border-radius: 25px;
    object-fit: cover;
    display: block;
}

.blog .card-wrapper .card-content {
    padding: 30px 20px;

    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.blog .card-wrapper .card-content .date {
    font-weight: 500;
    margin-bottom: 20px;
}

.blog .card-wrapper .card-content .title {
    font-weight: 700;
    font-size: 22px;
    line-height: 26px;
    max-width: 300px;
    width: 100%;
}

.blog .card-wrapper .card-content .btn {
    background-color: black;
    color: white;
    font-size: 16px;
    font-weight: 500;
    padding: 10px 15px;
    border-radius: 15px;
    border: none;
    transition: 0.2s ease;
    cursor: pointer;
}

.blog .card-wrapper .card-content .btn:hover {
    background-color: white;
    color: black;
}

.blog .card-wrapper .card-content .btn:hover .arrow {
    fill: black;
}

/*СТРАНИЦА БЛОГА */

.blog-page .container {
    max-width: 1000px;
}

.blog-page {
    min-height: 100vh;
    padding: 20px 0 65px 0;
}

.blog-page-container {
    margin-bottom: 40px;
}

.blog-page .blog-page-wrapper {
    padding: 65px 0 0 0;
}

.blog-page-wrapper .title h1 {
    font-weight: 900;
    font-size: 48px;
    line-height: 58px;
    margin-bottom: 40px;
}

.blog-page-wrapper .sub-info {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.blog-page-wrapper .date-wrapper {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 5px;
}

.blog-page-wrapper .date-wrapper span {
    font-size: 20px;
    line-height: 24px;
}

.blog-page-content {
    margin-bottom: 65px;
}

.blog-page-content .text-content-image img {
    width: 100%;
    height: 100%;
    display: block;
    max-width: 100%;
    max-height: 500px;
    margin: 0 auto 60px;
    border-radius: 25px;
    object-fit: cover;
    overflow: hidden;
}

.blog-page-content .text-content {
    font-weight: 500;
    font-size: 18px;
    line-height: 25px;
}

.blog-page-content .text-content h2 {
    margin: 20px 0;
    font-size: 25px;
    line-height: 34px;
    font-weight: 700;
}

.blog-page-content .text-content p {
    margin-bottom: 10px;
}

.blog-page-content .text-content a {
    margin-bottom: 10px;
    color: #1455FE;
}

.blog-page-content .text-content ul li {
    list-style: disc !important;
    list-style-position: inside !important;
    margin-bottom: 10px;
}

.blog-page-content .content img {
    display: block;
    margin-left: auto;
    margin-right: auto;

    border-radius: 25px;
    object-fit: cover;
}

.text-content blockquote {
    margin-bottom: 10px;
    font-size: 18px;
    line-height: 26px;
    padding: 20px;
    border-left: 4px solid #1455FE;
    background-color: rgba(20, 85, 254, 0.2);
}

.blog-page-gallery {
    display: flex;
    flex-direction: column;
}

.blog-page-gallery .gallery-discription {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.blog-page-gallery .gallery-discription .title {
    font-size: 51px;
    font-weight: 900;
    line-height: 65px;
}

.blog-page-gallery .btn {
    background-color: #D0FF03;
    color: black;
    font-size: 18px;
    font-weight: 500;
    padding: 15px 20px;
    border-radius: 50px;
    border: none;
    transition:  0.2s ease;
    cursor: pointer;
}

.blog-page-gallery .btn:hover {
    background-color: rgb(0, 0, 0);
    color: white;
}

.blog-page .swiper {
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden;
    list-style: none;
    padding: 0;
    z-index: 1;
    max-width: 1300px;
    width: 100%;
}

.blog-page .swiper-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: flex;
}

.blog-page .card-wrapper .card {
    background-color: #DCB9FB;
    border-radius: 25px;
    display: flex;
    flex-direction: row;
}

.blog-page .card-wrapper .card .card-image {
    max-width: 200px;
    /* height: 300px; */

    width: 100%;
    /* height: 100%; */

    border-radius: 25px;

    overflow: hidden;
}

.blog-page .card-wrapper .card .card-image img {
    width: 100%;
    height: 100%;
    border-radius: 25px;
    object-fit: cover;
}

.blog-page .card-content {
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.blog-page .card-wrapper .card-content .date {
    font-weight: 500;
    margin-bottom: 20px;
}

.blog-page .card-wrapper .card-content .title {
    font-weight: 700;
    font-size: 20px;
    line-height: 24px;
    margin-bottom: 40px;

    max-width: 300px;
    width: 100%;
}

.blog-page .card-wrapper .card-content .btn {
    background-color: black;
    color: white;
    font-size: 16px;
    font-weight: 500;
    padding: 10px 15px;
    border-radius: 15px;
    border: none;
    transition: 0.2s ease;
    cursor: pointer;
}

.blog-page .card-wrapper .card-content .btn:hover {
    background-color: white;
    color: black;
}

.blog-page .card-wrapper .card-content .btn:hover .arrow {
    fill: black;
}

.blog-page .gallery {
    position: relative;
}


.blog-page .blog-navigation {
    position: static;
    left: 0;
    top: 100%;
    margin-top: 10px;
    display: flex;
    gap: 10px;
}


.blog-page .swiper-button {
    background-color: #D0FF03;
    border-radius: 50%;
    width: 30px;
    height: 30px;

    display: flex;
    align-items: center;
    justify-content: center;

    cursor: pointer;
    z-index: 3;
    position: static;
}

/* Формы в блоге */

.consultation__wrapper_second, .consultation__wrapper {
    border: 1px solid black;
    border-radius: 25px;
    flex-direction: row;
    align-items: flex-start;
    padding: 1.5rem 1.875rem;
    background: #DCB9FB;
    margin-top: 25px;
    margin-bottom: 35px;
	color: black;
}

.consultation__wrapper_second .titler, .consultation__wrapper .titler {
    font-size: 36px;
    line-height: 40px;
}

.consultation__wrapper .mark {
    padding: 0 4px;
    background-color: #D0FF03;
}

.consultation__wrapper_second .leadformerror,
.consultation__wrapper .leadformerror{
    float: left;
    width: 100%;
    padding-top: 10px;
    margin-bottom: 10px;
    height: 30px;
}

.m-form__inner {
    flex: none;
    display: flex;
    width: 100%;
    flex-direction: row;
	gap: 10px;
}

.consultation__wrapper_second .subtitle, .consultation__wrapper .subtitle{
    font-size: 24px;
    line-height: 28px;
    margin-top: 20px;
}

.consultation__wrapper_second .input, .consultation__wrapper .input {
    width: 100%;
    box-sizing: border-box;
    background-color: white;
    border-radius: 5px;
    border: none;
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    padding: 15px 11px;
}

.consultation__wrapper_second .btn, .consultation__wrapper .btn {
    padding: 10px 50px;
    border-radius: 100px;
    background-color: #D0FF03;
    transition: 0.5s ease;
    cursor: pointer;
    font-weight: 700;
    font-size: 18px;
    line-height: 24px;
}

.consultation__wrapper_second .btn{
	background: black;
	color: white;
}

.consultation__wrapper_second .btn:hover{
	background: white;
	color:black;
}
 
.consultation__wrapper .btn:hover{
	background: black;
	color:white;
}

.consultation__wrapper_second .btn:hover{
	background: #D0FF03;
	color:black;
}



.consultation__wrapper_second .consultation__policy, .consultation__wrapper .consultation__policy {
    margin-top: 10px;
}

.consultation__wrapper_second label.checkbox__text, .consultation__wrapper label.checkbox__text {
    font-weight: 300;
    font-size: 20px;
}

.consultation__wrapper .consultation__policy-link, .consultation__wrapper_second .consultation__policy-link{
    text-decoration: underline !important;
	color: black !important;
}

.consultation__wrapper_second {
    background: #DDDEE2;
}

.consultation__wrapper_second .mark{
    padding: 0 4px;
    background-color: black;
    color: #fff;
}

.form-preloader {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    z-index: 99;
    border-radius: 15px;
  }
  
  .spinner {
    border: 8px solid rgba(0, 0, 0, 0.2);
    border-top: 8px solid #D0FF03;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
  }
  
  /* Анимация вращения */
  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }
  
  .formMessage__success {
    display: none;
  }
  .form-success .formMessage__success {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 99;
    border-radius: 15px;
    padding: 30px;
  }
  
  .formMessage__success-title {
    font-size: 30px;
    text-align: center;
    line-height: 29px;
    color: #000;
  }
  .formMessage__success-subtitle {
    font-size: 20px;
    text-align: center;
    line-height: 25px;
    text-align: center;
    margin-top: 24px;
    color: #F56B3C;
  }
  
  .form-error .formMessage__success {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 99;
    border-radius: 15px;
    padding: 30px;
	color: white;
  }
  
  .leadformerror{
	  color: white;
  }
  
  .formMessage__error {
    display: none;
    font-size: 30px;
    text-align: center;
    line-height: 29px;
  }
  
  /* thankyou */

.thankyou{
	min-height: 75vh;
	padding: 20px 0 65px 0;
}

.thankyou .text-content .title {
    font-size: 48px;
    font-weight: 700;
    line-height: 52px;
	margin-bottom: 40px;
}

.thankyou .text-content {
	padding: 65px 0 0 0;
    font-weight: 500;
    font-size: 18px;
    line-height: 22px;
	text-align: center;
	
	display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.thankyou .text-content p {
    margin-bottom: 40px;
}

.thankyou .btn {
    background-color: #D0FF03;
    color: black;
    font-size: 20px;
    font-weight: 500;
    padding: 15px 20px;
    border-radius: 15px;
    border: none;
    transition: background-color 0.2s ease;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 15px;
	
	max-width: 300px;
	width: 100%;
}

.thankyou .btn span{
	color: black;
}

.thankyou .btn:hover{
	background-color: white;
}

/* ПОЛИТИКА КОНФИДЕНЦИАЛЬНОСТИ */

.policy{
	min-height: 100vh;
	padding: 20px 0 65px 0;
}

.policy .text-content h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 52px;
	margin-bottom: 40px;
}

.policy .text-content {
	padding: 65px 0 0 0;
    font-weight: 500;
    font-size: 18px;
    line-height: 22px;
}

.policy .text-content h2 {
    margin: 20px 0;
    font-size: 25px;
    line-height: 34px;
    font-weight: 700;
}

.policy .text-content p {
    margin-bottom: 10px;
}

.policy .text-content a {
    margin-bottom: 10px;
	color:#1455FE;
}

.policy .text-content ul li {
    list-style: disc !important;
    list-style-position: inside !important;
    margin-bottom: 10px;
}

/* Обработка файлов cookies */

.cookies{
	min-height: 100vh;
	padding: 20px 0 65px 0;
}

.cookies .text-content h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 52px;
	margin-bottom: 40px;
}

.cookies .text-content {
	padding: 65px 0 0 0;
    font-weight: 500;
    font-size: 18px;
    line-height: 22px;
}

.cookies .text-content h2 {
    margin: 20px 0;
    font-size: 25px;
    line-height: 34px;
    font-weight: 700;
}

.cookies .text-content p {
    margin-bottom: 10px;
}

.cookies .text-content a {
    margin-bottom: 10px;
	color:#1455FE;
}

.cookies .text-content ul li {
    list-style: disc !important;
    list-style-position: inside !important;
    margin-bottom: 10px;
}


/* MODAL */

.modal{
	border-radius: 25px;
    max-width: 600px;
}

.modal-wrapper .title{
	font-weight: 700;
    font-size: 48px;
    line-height: 52px;
}

.modal-wrapper .subtitle{
	font-weight: 500;
    font-size: 25px;
    line-height: 34px;
}

.modal .form{
	background-color: transparent;
	
	border-radius: 25px;
	
	display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
	
	margin-top: 20px;
}

.modal .form .form__label {
    color: rgba(0, 0, 0, 0.66);
    width: 100%;
}

.modal .form .input {
    width: 100%;
    box-sizing: border-box;
    background-color: #F2F2F4;
    border-radius: 5px;
    border: none;
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    padding: 15px 11px;
}

.modal .form .politican {
    font-weight: 300;
    font-size: 18px;
    line-height: 22px;
    text-align: left;
}

.modal .form .politican a {
    text-decoration: underline !important;
}

.modal .form .btn {
    background-color: #D0FF03;
    color: black;
    font-size: 18px;
    font-weight: 500;
    padding: 15px 20px;
    border-radius: 50px;
    border: none;
    transition: 0.2s ease;
    cursor: pointer;
    text-align: center;
    width: 100%;
}

.modal .form .btn:hover {
    background-color: black;
	color: white;
}

.teachers .teacher-wrapper-info .swiper {
  position: relative;
  padding-bottom: 35px; /* Место для пагинации */
}

.teachers .teacher-wrapper-info .swiper-pagination {
  position: absolute;
  bottom: 10px !important; /* Отступ от низа */
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 8px;
  z-index: 10;
}

.teachers .teacher-wrapper-info {
  min-height: 500px; /* Фиксированная высота */
  position: relative;
}

.teachers .teacher-wrapper-info .swiper {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.teachers .teacher-wrapper-info .swiper-wrapper {
  flex: 1; /* Занимает все доступное пространство */
}

.teachers .teacher-wrapper-info .swiper-slide {
  display: flex;
  flex-direction: column;
  height: auto !important; /* Отменяем фиксированную высоту от Swiper */
}
.teachers .teacher-wrapper-info .teacher-description {
  /* flex: 1; */
  display: flex;
  flex-direction: column;
}

.teachers .teacher-wrapper-info .swiper-slide .btn {
  margin-top: auto; /* Прижимаем к низу */
}

/* кнопка вотсап */

.whatsapp-button {
    position: fixed;
    right: 13px;
    bottom: 5px;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background: #D0FF03;
    border-radius: 50%;
    width: 65px;
    height: 65px;
    color: #fff;
    text-align: center;
    line-height: 53px;
    font-size: 35px;
    z-index: 9999999999;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    cursor: pointer;
  }
  
  .whatsapp-button a {
    color: #fff;
  }
  
  .whatsapp-button img {
    width: 39px;
    margin-top: 13px;
  }
  
  .whatsapp-button::before,
  .whatsapp-button::after {
    content: " ";
    display: block;
    position: absolute;
    border: 50%;
    border: 1px solid #D0FF03;
    /*Ñ†Ð²ÐµÑ‚ Ð°Ð½Ð¸Ð¼Ð¸Ñ€Ð¾Ð²Ð°Ð½Ð½Ñ‹Ñ… Ð²Ð¾Ð»Ð½ Ð¾Ñ‚ ÐºÐ½Ð¾Ð¿ÐºÐ¸*/
    left: -20px;
    right: -20px;
    top: -20px;
    bottom: -20px;
    border-radius: 50%;
    -webkit-animation: animate 1.5s linear infinite;
    animation: animate 1.5s linear infinite;
    opacity: 0;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
  }
  
  .whatsapp-button::after {
    -webkit-animation-delay: 0.5s;
    animation-delay: 0.5s;
  }

  @-webkit-keyframes animate {
    0% {
      -webkit-transform: scale(0.5);
      transform: scale(0.5);
      opacity: 0;
    }
  
    50% {
      opacity: 1;
    }
  
    100% {
      -webkit-transform: scale(1.2);
      transform: scale(1.2);
      opacity: 0;
    }
  }
  
  @keyframes animate {
    0% {
      -webkit-transform: scale(0.5);
      transform: scale(0.5);
      opacity: 0;
    }
  
    50% {
      opacity: 1;
    }
  
    100% {
      -webkit-transform: scale(1.2);
      transform: scale(1.2);
      opacity: 0;
    }
  }


/* cookies */

.cookie-consent {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background: white;
  border-radius: 25px;
  border: 1px solid black;
  padding: 20px;
  border-radius: 10px;
  max-width: 320px;
  width: calc(100% - 40px);
  text-align: left;
  z-index: 9999;
  display: none;
}

.cookie-consent p {
 margin: 0 0 10px;
  font-size: 14px;
  line-height: 1.4;
}

.cookie-consent a {
  text-decoration:underline;
}

.cookie-consent button {
  background: #D0FF03;
  color: black;
  border: none;
  padding: 10px 20px;
  font-size: 14px;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.5s ease;
}

.cookie-consent button:hover {
  background-color: black;
  color: white;
}




@media (max-width: 1100px) {

    .intro .light,
    .intro .lamp {
        display: none;
    }

    .form-container .btn {
        padding: 20px;
    }

    .checkbox-wrapper {
        display: none;
    }

    .teachers .swiper {
        display: block !important;
        width: 100%;

    }

    .teachers-wrapper {
        flex-direction: column;
    }

    .teachers .checkbox {
        min-width: unset;
    }

    .teachers .first-column {
        align-items: flex-start;
    }

    .teachers .second-column {
        max-width: unset;
    }

    .second-form .form {
        flex-direction: column;
    }

    .second-form .form .form__label {
        max-width: unset;
    }

    .watch-wrapper {
        flex-direction: column;
        gap: 40px;
    }

    .watch .info-block {
        gap: 40px;
        align-items: flex-start;
    }

    .program .intro .info-wrapper {
        gap: 20px;
    }

    .all-pages .second-form-wrapper .img-container {
        display: none;
    }

    .all-pages .form__label {
        max-width: unset !important;
    }

    .banner-all-pages-wrapper {
        display: none;
    }

    .banner-all-pages-wrapper-mob {
        display: block !important;
    }

    .banner-all-pages .banner-third-card {
        transform: rotate(0deg);
    }

    .banner-all-pages .banner-second-card {
        background: linear-gradient(45deg, transparent 14px, rgb(220, 185, 251) 0px);
    }

    .blog .card-wrapper .card {
        width: 100%;
    }

    .blog .card-wrapper .card-content .title {
        max-width: 100%;
        width: 100%;
    }

    .blog-page-wrapper .title h1,
    .blog-page-gallery .gallery-discription .title {
        font-size: 28px;
        line-height: 32px;
    }

    .blog-page .card-wrapper .card {
        flex-direction: column;
    }

    .blog-page .card-wrapper .card .card-image {
        width: 100%;
        max-width: unset;
        height: 250px;
        min-height: unset;
    }

    .blog-page .card-wrapper .card-content .title {
        max-width: 100%;
        width: 100%;

        min-height: 80px;
    }

}

@media (max-width: 992px) {

    /* шапка */


    .header-wrapper .nav {
        display: none;
    }

    .header-wrapper .nav-mob {
        position: absolute;
        top: 80px;
        left: 0;

        display: flex;
        justify-content: space-between;
        align-items: center;
        text-align: center;
        gap: 30px;
        flex-direction: column;

        width: 100%;

        background-color: #ffffff;
        border-radius: 0 0 20px 20px;

        border: #000000 solid 1px;
        padding: 35px 20px;
    }
	
	/* .header-wrapper .nav-mob { */
			/* position: absolute; */
			/* top: 80px; */
			/* left: 0; */
			/* display: flex; */
			/* justify-content: space-between; */
			/* align-items: center; */
			/* text-align: center; */
			/* gap: 30px; */
			/* flex-direction: column; */
			/* width: 100%; */
			/* background-color: #ffffff; */
			/* border-radius: 0 0 20px 20px; */
			/* border: #000000 solid 1px; */
			/* padding: 35px 20px; */
			/* height: calc(100vh - 80px); /* исправлено */ */
			/* box-sizing: border-box; /* добавлено */ */
			/* overflow-y: auto; /* на случай, если контент не поместится */ */
		/* } */

    .header-wrapper .nav-mob a {
        color: #000000;
        font-weight: 500;
        transition: color 0.2s ease;
        font-size: 22px;
        line-height: 28px;
    }

    .header .nav-mob a:hover {
        color: #1455FE;
    }

    .header-wrapper-mob {
        display: block !important;
    }

    .burger {
        padding: 0;
        border: 0;
        background-color: transparent;
        height: 30px;
        width: 30px;
        cursor: pointer;

        display: flex;
        justify-content: center;
        flex-direction: column;
    }

    .burger-line {
        position: relative;
        width: 100%;
        height: 4px;
        background-color: rgb(0, 0, 0);
        border-radius: 3px;

        transition: 0.3s;
    }

    .burger-line:nth-child(1) {
        top: 4px;
        transform: translateY(-10px);
    }

    .burger-line:nth-child(3) {
        bottom: 4px;
        transform: translateY(10px);
    }

    .burger.open .burger-line:nth-child(1) {
        transform: rotate(45deg);
    }

    .burger.open .burger-line:nth-child(3) {
        transform: rotate(-45deg);
    }

    .burger.open .burger-line:nth-child(2) {
        opacity: 0;
    }
	
	.program .swiper-teacher-course-tamplate-container .swiper-slide-container {
		flex-direction: column;
		align-items: center;
	}
	
	.program .teacher-description-container{
		width: 100%;
	}
}

@media (max-width: 900px) {
    .intro-wrapper {
        padding: 25px;
    }

    .intro .form-wrapper .title {
        font-size: 20px;
        line-height: 24px;
    }

    .intro .info-text,
    .parent .intro .info-text,
    .second-form-wrapper .title {
        font-size: 40px;
        line-height: 44px;
        max-width: none;

    }

    .second-form-wrapper .title {
        margin-bottom: 20px;
    }

    .second-form-wrapper .subtitle {
        font-size: 28px;
        line-height: 30px;
        margin-bottom: 20px;
    }

    .intro .form-wrapper {
        margin-top: 0px;
    }

    .intro .form .btn {
        padding: 10px 20px;
    }

    .cards .first-row,
    .cards .second-row {
        flex-direction: column;
    }

    .form-container .title {
        font-size: 30px;
        line-height: 34px;
    }

    .programs-wrapper {
        gap: 5px;
    }

    .img-container {
        display: none;
    }
	
	.watch-container .img-container {
        display: block;
    }

    .img-container-mob {
        display: block !important;
        width: 100%;
        text-align: center;
        margin-bottom: 15px;
    }
	
	.img-container-mob img{
            max-height: 200px;
			max-width: 200px;
			display: block;
			object-fit: contain;
			overflow: hidden;
    }

    .info-mob {
        width: 100%;
        margin-top: 15px;
    }

    .programs-wrapper-btn {
        width: 100%;
    }
}

@media (max-width: 767px) {
    .intro-wrapper {
        flex-direction: column;
        max-height: none;
    }

    .intro .form-wrapper {
        max-width: none;
    }

    .intro .info-text {
        margin-top: 30px;
    }

    .subjects .info {
        flex-direction: column;
        gap: 20px;
        align-items: start;
    }

    .form-container .form-wrapper {
        padding: 25px;
    }

    .teachers .first-column .title {
        font-size: 36px;
        line-height: 40px;
    }

    .teachers .checkbox-label {
        font-size: 18px;
        line-height: 22px;
    }

    .second-form-wrapper {
        padding: 25px;
    }

    .footer .title {
        font-size: 78px;
        line-height: 82px;
    }

    .programs-wrapper {
        flex-direction: column;
        padding: 25px;
    }

    .img-container-mob {
        display: none !important;
    }

    .programs-wrapper .programs-wrapper-btn {
        width: 100%;
    }

    /* dropdown */

    .dropdown-container {
        display: none;
    }

    .dropdown-container-mob {
        display: flex !important;
        padding: 10px;
        align-items: center;
        justify-content: end;
        gap: 10px;
    }

    .dropdown-container-mob button {
        background-color: transparent;
        display: flex;
        align-items: center;
        justify-content: end;
        gap: 10px;
    }

    .dropdown-container-mob img {
        width: 25px;
        height: 25px;
    }

    .blog .card-wrapper .card {
        flex-direction: column;
    }

    .blog .card-wrapper .card .card-image {
        width: 100%;
        max-width: unset;
        height: 250px;
        min-height: unset;
    }


    .blog .card-wrapper .card-content .title {
        margin-bottom: 40px;
    }
	
	.m-form__inner {
        flex-direction: column;
    }
	
	.consultation__wrapper_second .titler, .consultation__wrapper .titler {
		font-size: 28px;
		line-height: 32px;
	}
	
	.consultation__wrapper_second label.checkbox__text, .consultation__wrapper label.checkbox__text {
		line-height: 20px;
		font-size: 16px;
	}
	
	.consultation__wrapper_second .subtitle, .consultation__wrapper .subtitle {
		font-size: 20px;
		line-height: 24px;
		margin-top: 20px;
	}
	
	.consultation__wrapper_second, .consultation__wrapper{
		padding:25px;
	}

}

@media (max-width: 550px) {
	
	.cookies .text-content,
	.policy .text-content,
	.thankyou .text-content,
	.blog-page .blog-page-wrapper,
	.blog .blog-wrapper,
	.faq,
	.text,
	.score-table,
	.watch,
	.programs,
	.banner-all-pages,
	.news,
	.reviews,
	.second-form,
	.choice,
	.teachers,
	.form-container,
	.subjects,
	.cards,
	.intro{
		padding: 40px 0;
	}

    .intro .info-text,
    .parent .intro .info-text,
    .second-form-wrapper .title {
        font-size: 32px;
        line-height: 36px;
    }

    .second-form-wrapper .subtitle {
        font-size: 22px;
        line-height: 26px;
    }

    .form-container .title {
        font-size: 22px;
        line-height: 26px;
    }

    .form-container .btn,
    .teachers .btn {
        padding: 10px;
        font-size: 16px;
        line-height: 20px;
    }

    .footer .info-list {
        max-width: 150px;
    }

    .program .intro .info-text {
        font-size: 32px;
        line-height: 36px;
    }

    .program .intro .filter-btn .btn,
    .banner-all-pages-wrapper-mob .btn,
    .programs-wrapper .programs-wrapper-btn {
        font-size: 16px;
        line-height: 20px;
    }

    .watch .info-block .title,
    .watch .info-block .subtitle {
        font-size: 32px;
        line-height: 36px;
    }

    .watch .watch-container .watch-card .number,
    .programs-wrapper .info .title {
        font-size: 22px;
        line-height: 26px;
    }

    .watch .watch-container .watch-card {
        padding: 10px 5px;
        width: 85px;
        height: 65px;
        font-size: 18px;
        line-height: 20px;
    }

    .watch .watch-container .watch-card-container {
        gap: 7px;
    }

    .watch .watch-container {
        padding: 20px 10px;
    }

    .score-table .title {
        font-size: 32px;
        line-height: 36px;
    }

    .text-wrapper .title,
    .faq-wrapper .title {
        font-size: 32px;
        line-height: 36px;
    }

    .text-wrapper h2,
    h3,
    .question {
        font-size: 24px;
        line-height: 28px;
    }

    .text-wrapper p,
    .text-wrapper .quote,
    .text-wrapper ul li {
        font-size: 18px;
        line-height: 22px;
    }

    .score-table td {
        font-size: 20px;
        line-height: 22px;
    }
	
	.criteria th, td{
		font-size: 20px;
        line-height: 22px;
	}

    .programs-wrapper .filter-btn {
        gap: 5px;
    }

    .programs-wrapper .filter-btn .btn {
        font-size: 14px;
        line-height: 18px;
    }

    .programs-wrapper .info .subtitle {
        font-size: 16px;
        line-height: 20px;
    }

    .programs-wrapper .filter-btn {
        align-items: flex-start;
        flex-direction: column;
    }
	
	.footer .title {
        font-size: 60px;
        line-height: 62px;
    }
	
	.modal-wrapper .title {
			font-size: 32px;
			line-height: 36px;
		}
		
		.modal-wrapper .subtitle {
			font-size: 20px;
			line-height: 24px;
		}
		
		.modal .form .politican {
			font-size: 16px;
			line-height: 22px;
		}
		
		.answer {
			font-size: 18px;
			line-height: 22px;
		}
		
		.lamp-mob{
			display: block !important;
			position: absolute;
			top: 127px;
			right: -7px;
			z-index: 1;
			object-fit: none;
		}
		
		.parent .lamp-mob {
			top: 200px;
		}
		
		.light-mob{
			display: block !important;
			position: absolute;
			top: 225px;
			right: -218px;
			z-index: 0;
			object-fit: none;
			transform: scale(1.09);
		}
		
		.intro .info-text{
				margin-bottom: 100px;
			}
		
		.parent .intro .info-text {
			margin-bottom: 130px;
		}
		
		.program .intro .info-text {
			margin-bottom: 25px;
		}
}

@media (max-width: 480px) {
    .cards .first-row .card .title {
        font-size: 20px;
        line-height: 24px;
    }

    .cards .first-row .card .fear,
    .cards .first-row .card .order {
        font-size: 16px;
        line-height: 20px;
    }

    .teachers .first-column .title {
        font-size: 30px;
        line-height: 32px;
        margin-bottom: 20px;
    }

    .teachers .checkbox-label {
        font-size: 16px;
        line-height: 20px;
    }

    .teachers .checkbox-label {
        padding: 10px 15px;
    }

    .teacher-fio {
        font-size: 20px;
        line-height: 24px;
    }

    .teachers .second-column {
        height: 550px;
        padding: 10px 20px;
    }

    .second-form-wrapper .title {
        font-size: 26px;
        line-height: 28px;
    }

    .footer .info-bottom {
        gap: 75px;
    }

    .footer .info-block {
        column-gap: 45px;
    }

    .program .teacher-fio {
        font-size: 20px;
        line-height: 24px;
    }

    .program .teacher-text {
        font-size: 16px;
        line-height: 18px;
    }

    .program .teacher-numbers span {
        font-size: 32px;
        line-height: 36px;
    }

    .program .teacher-numbers {
        font-size: 16px;
        line-height: 18px;
    }

    .watch .watch-container img {
        top: 21px;
    }
	
	.cookie-consent {
		left: 10px;
		bottom: 10px;
		padding: 15px;
		font-size: 13px;
		width: calc(100% - 20px);
	  }

	  .cookie-consent button {
		width: 100%;
		padding: 10px;
		font-size: 14px;
	  }
	
}

@media (max-width: 460px) {
	.intro .info-text {
        margin-bottom: 150px;
    }
	
	.lamp-mob {
        top: 177px;
	}
	
	
}

@media (max-width: 450px) {
    .watch .seconds {
        display: none;
    }

    .watch .info-tooltip {
        left: -270%;
    }
	
	.footer .title {
        font-size: 48px;
        line-height: 50px;
    }
	
	.reviews .swiper-slide {
		width: 350px !important;
		min-height: 350px;
	}
	
	.reviews .video-slide {
		width: 350px !important;
		height: 350px;
	}
	
	.reviews .review {
		font-size: 16px;
		line-height: 20px;
		margin-top: 10px;
	}
	
	.parent .lamp-mob {
        top: 230px;
    }
}

@media (max-width: 400px) {
    .intro .form-wrapper {
        padding: 20px;
    }

    .intro .form-wrapper .title {
        font-size: 18px;
        line-height: 22px;
    }

    .intro .info-text,
    .parent .intro .info-text {
        font-size: 28px;
        line-height: 32px;
    }

    .intro .form .btn {
        font-size: 16px;
        line-height: 20px;
    }

    .cards .first-row .card .fear,
    .cards .first-row .card .order {
        font-size: 12px;
        line-height: 14px;
    }

    .cards .first-row .card .arrow {
        width: 30px;
        height: 30px;
    }

    .cards .arrow-svg {
        width: 10px;
        height: 10px;
    }

    .subjects .swiper-slide .fav-1 {
        right: -13px;
    }

    .subjects .title,
    .choice .title,
    .reviews .title,
    .news .title {
        font-weight: 900;
        font-size: 40px;
        line-height: 44px;
    }

    .subjects .swiper-slide .title {
        font-size: 23px;
        line-height: 25px;
    }

    .choice .grey .btn-card,
    .choice .green .btn-card {
        left: 160px;
    }

    .footer .info-block {
        gap: 25px;
    }

    .blog-page .card-wrapper .card-content .title {
        font-size: 18px;
        line-height: 22px;
    }

    .blog-page .card-wrapper .card-content .title {
        min-height: 95px;
        margin-bottom: 10px;
    }

}