.study-formats {
    background: #efefef;
    padding: 56px 0 40px;
    overflow: hidden;
}

.study-formats__head {
    margin-bottom: 32px;
    text-align: left;
}


.study-formats__head .main_title {
    margin-bottom: 8px;
    text-align: left!important;
}

.study-formats__head p {
    margin: 0;
    font-size: 16px;
    line-height: 1.3;
    color: #171717;
}

.study-formats__slider {
    overflow: visible;
}

.study-formats__slider .swiper-slide {
    width: 638px; /* один слайд = фото + текст */
    height: auto;
}

.study-format-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: stretch;
}

.study-formats__slider {
    overflow: visible!important;
}

.study-format-card__image,
.study-format-card__content {
    border-radius: 18px;
    overflow: hidden;
}

.study-format-card__image {
    background: #ddd;
    height: 640px;
}

.study-format-card__image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

/* можно подправить фокус конкретных фото */
.study-format-card__image img {
    object-position: center center;
}

.study-format-card__content {
    background: #fff;
    padding: 48px 32px 28px;
    display: flex;
    flex-direction: column;
    min-height: 500px;
}

.study-format-card__number {
    font-size: 22px;
    line-height: 1;
    color: #171717;
    margin-bottom: 18px;
}

.study-format-card__line {
    width: 44px;
    height: 2px;
    background: #e53935;
    margin-bottom: 18px;
}

.study-format-card__title {
    margin: 0 0 28px;
    font-size: 36px;
    line-height: 1;
    font-weight: 500;
    color: #171717;
}

.study-format-card__text {
    margin-top: auto;
}

.study-format-card__text p {
    margin: 0 0 16px;
    font-size: 14px;
    line-height: 1.5;
    color: #171717;
}

.study-format-card__text p:last-child {
    margin-bottom: 0;
}

.study-format-card__route {
    margin-top: auto;
    height: 44px;
    /*background: #dadada;*/
    border-radius: 999px;
    padding: 0 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.study-format-card__route img {
    width: 100%;
}

.study-format-card__route-icon {
    width: 22px;
    height: 22px;
    flex: 0 0 22px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.study-format-card__route-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.study-format-card__route-line {
    flex: 1;
    border-top: 2px dashed #fff;
}

.study-format-card__list {
    margin: auto 0 0;
    padding: 0;
    list-style: none;
}

.study-format-card__list li {
    position: relative;
    padding-left: 26px;
    margin-bottom: 12px;
    font-size: 14px;
    line-height: 1.4;
    color: #171717;
}

.study-format-card__list li:last-child {
    margin-bottom: 0;
}

.study-format-card__list li::before {
    content: url("../img/formats/arr.svg");
    position: absolute;
    left: 0;
    top: 0;

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

.study-formats__controls,
.study-formats__pagination {
    display: none;
}

/* ---------- mobile ---------- */
@media (max-width: 768px) {
    .study-formats {
        padding: 12px 0 28px;
        margin: 50px 0;
    }

    .study-formats .container {
        padding-left: 15px;
        padding-right: 15px;
    }

    .study-formats__head {
        padding: 0 10px;
        margin-bottom: 20px;
    }

    .study-formats__head .main_title {
        margin-bottom: 8px;
        font-size: 24px;
        line-height: 1.05;
    }

    .study-formats__head p {
        max-width: 250px;
        font-size: 16px;
        line-height: 1.2;
    }

    .study-formats__slider {
        padding: 0 10px 90px;
    }

    .study-formats__slider .swiper-slide {
        width: calc(100vw - 20px);
    }

    .study-format-card {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .study-format-card__image {
        height: 190px;
        border-radius: 12px;
    }

    .study-format-card__image img {
        object-fit: cover;
        object-position: center center;
    }

    .study-format-card__content {
        min-height: auto;
        padding: 0 20px;
        background: transparent;
        border-radius: 0;
    }

    .study-format-card__number {
        font-size: 14px;
        margin-bottom: 12px;
    }

    .study-format-card__line {
        width: 40px;
        margin-bottom: 16px;
    }

    .study-format-card__title {
        margin-bottom: 14px;
        font-size: 16px;
        line-height: 1.1;
    }

    .study-format-card__text {
        margin-top: 0;
    }

    .study-format-card__text p {
        margin-bottom: 6px;
        font-size: 14px;
        line-height: 1.35;
    }

    .study-formats {
        /*overflow: visible;*/
        padding-bottom: 100px;
    }

    .study-format-card__route,
    .study-format-card__list {
        display: none;
    }

    .study-formats__controls {
        display: flex;
        justify-content: center;
        gap: 12px;
        position: absolute;
        left: 0;
        right: 0;
        bottom: -90px;
        z-index: 3;
    }

    .study-formats__nav {
        width: 58px;
        height: 58px;
        border: none;
        border-radius: 50%;
        background: #fff;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .study-formats__nav span {
        font-size: 24px;
        line-height: 1;
        color: #171717;
    }

    .study-formats__pagination {
        display: block;
        position: absolute;
        left: 50% !important;
        transform: translateX(-50%);
        bottom: 6px !important;
        width: 40px !important;
        height: 5px;
        background: #fff;
        border-radius: 999px;
        overflow: hidden;
    }

    .study-formats__pagination .swiper-pagination-progressbar-fill {
        background: #171717;
        border-radius: 999px;
    }
}

/*result*/

.learning-result {
    background: #efefef;
    padding: 42px 0 68px;
    overflow: hidden;
    width: 97%;
    margin: 0 auto;
}

.learning-result .container {
    position: relative;
}
.learning-result__head {
    margin-bottom: 36px;
    text-align: center;
}

.learning-result__head .main_title {
    margin-bottom: 12px;
}

.learning-result__head p {
    margin: 0;
    color: #171717;
    font-size: 20px;
    line-height: 1.25;
    font-weight: 500;
}

.learning-result__desktop {
    position: relative;
}

.learning-result__media {
    height: 780px;
    border-radius: 22px;
    overflow: hidden;
}

.learning-result__media img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center center;
}

.learning-result__cards {
    position: absolute;
    left: 0px;
    right: 100px;
    bottom: -50px;
    width: 100%;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    align-items: end;
}

.result-card {
    min-height: 214px;
    padding: 28px 30px 26px;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.08);
}

.result-card h3 {
    margin: 0 0 24px;
    color: #171717;
    font-size: 18px;
    line-height: 1.15;
    font-weight: 600;
}

.result-card__list {
    display: grid;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.result-card__list li {
    position: relative;
    min-height: 22px;
    padding-left: 34px;
    color: #171717;
    font-size: 15px;
    line-height: 1.25;
}

.result-card__list li::before {
    content: url("../img/result/arr.svg");
    position: absolute;
    left: 0;
    top: -1px;

    line-height: 1;
}

.result-card__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.result-card__tags span {
    min-height: 26px;
    padding: 5px 12px;
    border-radius: 999px;
    background: #ececec;
    color: #171717;
    font-size: 14px;
    line-height: 1.1;
    display: inline-flex;
    align-items: center;
}

.result-card--chart {
    min-height: 340px;
}

.result-card--chart h3 {
    margin-bottom: 22px;
    font-size: 19px;
    line-height: 1.2;
    white-space: nowrap;
}

.result-card__chart-wrap {
    display: grid;
    gap: 20px;
}

.result-card__chart {
    width: 132px;
    height: 132px;
    margin: 0 auto;
}

.result-card__chart img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
}

.result-card__legend {
    display: grid;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.result-card__legend-item {
    position: relative;
    min-height: 22px;
    padding-left: 30px;
    color: #171717;
    font-size: 12px;
    line-height: 1.15;
}

.result-card__legend-item::before {
    content: url("../img/result/1.svg");
    position: absolute;
    left: 0;
    top: -2px;

}

.result-card__legend-item--business::before {
    content: url("../img/result/1.svg");
}

.result-card__legend-item--media::before {
    content: url("../img/result/2.svg");
}

.result-card__legend-item--it::before {
    content: url("../img/result/3.svg");
}

.result-card__legend-item--engineering::before {
    content: url("../img/result/4.svg");
}

.learning-result__mobile {
    display: none;
}

/* адаптация десктопа */
@media (max-width: 1200px) {
    .learning-result__media {
        height: 640px;
    }

    .learning-result__cards {
        left: 40px;
        right: 40px;
        gap: 16px;
    }

    .result-card {
        padding: 22px 20px;
    }

    .result-card h3 {
        font-size: 17px;
    }
}

/* mobile */
@media (max-width: 768px) {


    .learning-result {
        width: 100%;
    }
    .learning-result {
        padding: 10px 0 26px;
    }

    .learning-result .container {
        padding-left: 12px;
        padding-right: 12px;
    }

    .learning-result__head {

        text-align: left;
        width: 93%;
        margin: 19px auto;
    }

    .learning-result__head .main_title {
        margin-bottom: 8px;
        font-size: 24px;
        line-height: 1.05;
        letter-spacing: -0.03em;
        text-align: left!important;
    }

    .learning-result__head p {
        font-size: 16px;
        line-height: 1.25;
        font-weight: 500;
    }



    .learning-result__desktop {
        display: none;
    }

    .learning-result__mobile {
        display: block;
    }

    .learning-result__mobile-cards {
        display: grid;
        gap: 20px;
    }

    .result-card {
        min-height: auto;
        padding: 30px;
        border-radius: 12px;
        box-shadow: 0 8px 18px rgba(0, 0, 0, 0.07);
    }

    .result-card h3 {
        margin-bottom: 20px;
        font-size: 18px;
        line-height: 1.15;
    }

    .result-card__list {
        gap: 8px;
    }

    .result-card__list li {
        min-height: 20px;
        padding-left: 30px;
        font-size: 14px;
        line-height: 1.25;
    }

    .result-card__list li::before {
        width: 18px;
        height: 18px;
        font-size: 10px;
    }

    .result-card__tags {
        gap: 8px 6px;
    }

    .result-card__tags span {
        min-height: 22px;
        padding: 4px 9px;
        font-size: 12px;
    }

    .result-card--chart {
        min-height: auto;
    }

    .result-card--chart h3 {
        margin-bottom: 18px;
        font-size: 16px;
    }

    .result-card__chart-wrap {
        grid-template-columns: 112px 1fr;
        gap: 18px;
        align-items: center;
    }

    .result-card__chart {
        width: 112px;
        height: 112px;
        margin: 0;
    }

    .result-card__legend {
        gap: 5px;
    }

    .result-card__legend-item {
        min-height: 17px;
        padding-left: 28px;
        font-size: 9px;
        line-height: 1.05;
    }

    .result-card__legend-item::before {
        top: -1px;
        width: 17px;
        height: 17px;
        font-size: 9px;
    }

    .learning-result__mobile-image {
        height: 234px;
        margin-top: 24px;
        border-radius: 12px;
        overflow: hidden;
    }

    .learning-result__mobile-image img {
        width: 100%;
        height: 100%;
        display: block;
        object-fit: cover;
        object-position: center center;
    }

    .learning-result__day {
        margin-top: 18px;
    }

    .learning-result__day h3 {
        margin: 0 0 10px;
        color: #171717;
        font-size: 24px;
        line-height: 1.05;
        font-weight: 700;
        letter-spacing: -0.03em;
    }

    .learning-result__day p {
        margin: 0 0 14px;
        color: #171717;
        font-size: 16px;
        line-height: 1.25;
        font-weight: 600;
    }

    .learning-result__day small {
        display: block;
        color: #171717;
        font-size: 8px;
        line-height: 1.3;
    }
}

.school-day {
    background: #efefef;
    padding: 26px 0 52px;
    overflow: hidden;
}

.school-day__head {
    margin-bottom: 52px;
}

.school-day__head .main_title {
    max-width: 760px;
    margin-bottom: 22px;
    text-align: left!important;
}

.school-day__head p {
    max-width: 1260px;
    margin: 0 0 24px;
    color: #171717;
    font-size: 20px;
    line-height: 1.15;
    font-weight: 500;
}

.school-day__head small {
    display: block;
    color: #171717;
    font-size: 13px;
    line-height: 1.35;
}

.school-day__content {
    display: grid;
    grid-template-columns: minmax(0, 812px) minmax(360px, 1fr);
    gap: 22px;
    align-items: stretch;
}

.school-day__cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px 24px;
}

.school-schedule {
    border-radius: 26px;
    background: #fff;
    padding: 28px 18px 20px;
}

.school-schedule__head {
    width: 100%;
    margin: 0 0 18px;
    padding: 0;
    border: 0;
    background: transparent;
    color: #171717;
    font-family: inherit;
    text-align: center;
    cursor: default;
    display: block;
}

.school-schedule__head span {
    display: block;
    color: #171717;
    font-size: 24px;
    line-height: 1.05;
    font-weight: 600;
}

.school-schedule__head small {
    display: block;
    color: #171717;
    font-size: 16px;
    line-height: 1;
    font-weight: 700;
}

.school-schedule__head i {
    display: none;
}

.school-schedule__body {
    display: grid;
    gap: 6px;
}

.school-schedule__row {
    display: grid;
    grid-template-columns: 132px 1fr;
    gap: 6px;
}

.school-schedule__time,
.school-schedule__text {
    min-height: 44px;
    border-radius: 8px;
    display: flex;
    align-items: center;
}

.school-schedule__time {
    padding: 8px 10px;
    background: #ffe0e0;
    color: #e30613;
    font-size: 16px;
    line-height: 1.05;
    font-weight: 700;
    white-space: nowrap;
}

.school-schedule__text {
    padding: 8px 14px;
    background: #ebebeb;
    color: #171717;
    font-size: 14px;
    line-height: 1.1;
    font-weight: 400;
    letter-spacing: -0.14px;
}

.school-day__image {
    min-height: 100%;
    border-radius: 14px;
    overflow: hidden;
}

.school-day__image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center center;
}

/* Desktop адаптация */
@media (max-width: 1280px) {
    .school-day__content {
        grid-template-columns: minmax(0, 760px) minmax(320px, 1fr);
    }

    .school-schedule__row {
        grid-template-columns: 122px 1fr;
    }

    .school-schedule__time {
        font-size: 15px;
    }

    .school-schedule__text {
        font-size: 14px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .school-day {
        padding: 12px 0 30px;
    }

    .school-day .container {
        padding-left: 28px;
        padding-right: 16px;
    }

    .school-day__head {
        margin-bottom: 24px;
    }

    .school-day__head .main_title {
        margin-bottom: 12px;
        font-size: 28px;
        line-height: 1;
        letter-spacing: -0.04em;
    }

    .school-day__head p {
        margin-bottom: 14px;
        font-size: 16px;
        line-height: 1.15;
        font-weight: 600;
    }

    .school-day__head small {
        font-size: 12px;
        line-height: 1.25;
    }

    .school-day__content {
        display: block;
    }

    .school-day__cards {
        display: grid;
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .school-schedule {
        padding: 0;
        border-radius: 20px;
        overflow: hidden;
    }

    .school-schedule__head {
        min-height: 92px;
        margin: 0;
        padding: 22px 54px 22px 35px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
        text-align: left;
        cursor: pointer;
    }

    .school-schedule__head span {
        font-size: 24px;
        line-height: 1;
    }

    .school-schedule__head small {
        margin-top: 2px;
        font-size: 14px;
        line-height: 1;
    }

    .school-schedule__head i {
        position: relative;
        display: block;
        width: 12px;
        height: 12px;
        flex: 0 0 12px;
        border-right: 2px solid #b6b6b6;
        border-bottom: 2px solid #b6b6b6;
        transform: rotate(45deg);
        transition: transform 0.25s ease;
    }

    .school-schedule.active .school-schedule__head i {
        transform: rotate(225deg);
    }

    .school-schedule__body {
        display: none;
        padding: 0 17px 18px;
        gap: 5px;
    }

    .school-schedule.active .school-schedule__body {
        display: grid;
    }

    .school-schedule.active .school-schedule__head {
        min-height: auto;
        padding-bottom: 22px;
    }

    .school-schedule.active .school-schedule__head span {
        font-size: 26px;
    }

    .school-schedule__row {
        grid-template-columns: 119px 1fr;
        gap: 5px;
    }

    .school-schedule__time,
    .school-schedule__text {
        min-height: 53px;
        border-radius: 8px;
    }

    .school-schedule__time {
        padding: 8px 9px;
        font-size: 16px;
        line-height: 1.05;
    }

    .school-schedule__text {
        padding: 8px 10px;
        font-size: 13px;
        line-height: 1.05;
    }

    .school-day__image {
        height: 244px;
        margin-top: 18px;
        border-radius: 10px;
    }

    .school-day__image img {
        object-fit: cover;
        object-position: center center;
    }
}

@media (max-width: 374px) {
    .school-day .container {
        padding-left: 14px;
        padding-right: 14px;
    }

    .school-schedule__head {
        padding-left: 26px;
        padding-right: 38px;
    }

    .school-schedule__row {
        grid-template-columns: 112px 1fr;
    }

    .school-schedule__time {
        font-size: 14px;
    }

    .school-schedule__text {
        font-size: 12px;
    }
}

.accreditation {
    background: #fff;
    padding: 48px 0;
}

.accreditation__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-top: 20px;
}

.accreditation-card {
    height: fit-content;
    padding: 20px 7px;
    border-radius: 32px;
    background: #eeeeee;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.accreditation-card__icon {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.accreditation-card__icon img {
    max-width: 74px;
    max-height: 72px;
    display: block;
    object-fit: contain;
}

.accreditation-card p {
    max-width: 250px;
    margin: 0;
    color: #171717;
    font-size: 10px;
    line-height: 1.15;
    font-weight: 400;
    text-align: center;
}

/* tablet */
@media (max-width: 1024px) {
    .accreditation__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* mobile */
@media (max-width: 768px) {
    .accreditation {
        padding: 32px 0;
    }

    .accreditation__grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .accreditation-card {
        min-height: 170px;
        padding: 24px 18px 22px;
        border-radius: 24px;
    }

    .accreditation-card__icon {
        height: 58px;
        margin-bottom: 20px;
    }

    .accreditation-card__icon img {
        max-width: 62px;
        max-height: 58px;
    }

    .accreditation-card p {
        max-width: 280px;
        font-size: 17px;
        line-height: 1.15;
    }
}


.hero-benefits {
    display: none;
    grid-template-columns: repeat(2, max-content);
    gap: 34px 68px;
    align-items: center;
}

.hero-benefits__item {
    display: flex;
    align-items: center;
    gap: 24px;
}

.hero-benefits__item:nth-child(3) {
    grid-column: 1 / -1;
    justify-self: center;
}

.hero-benefits__icon {
    width: 30px;
    height: 30px;
    flex: 0 0 66px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-benefits__icon img {
    max-width: 100%;
    max-height: 100%;
    display: block;
    object-fit: contain;
}

.hero-benefits__text {
    color: #fff;
    font-size: 11px;
    line-height: 1.1;
    font-weight: 400;
}
.hero-benefits__text br {
    display: none;
}

/* mobile */

@media (max-width: 768px) {
    .hero-benefits {
        display: grid;
    }
    .hero-benefits {
        max-width: 100%;
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }

    .hero-benefits__item {
        gap: 12px;
    }

    .hero-benefits__item:nth-child(3) {
        grid-column: 1 / -1;
        justify-self: center;
    }

    .hero-benefits__icon {
        width: 30px;
        height: 30px;
        flex-basis: 42px;
    }

    .hero-benefits__text {
        font-size: 11px;
        line-height: 1.1;
    }
}