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



/* --- ОБЩИЕ СТИЛИ --- */
body {
    margin: 0;
    min-width: 375px;
}

h1, h2, h3, h4, h5, h6 {
    margin: 0;
}

p {
    font-size: 18px;
    font-family: "Golos Text", sans-serif;
    font-weight: 300;
    line-height: 130%;
}

span {
    margin: 0px;
}

a {
    font-size: 16px;
    font-family: "Golos Text", sans-serif;
    font-weight: 300;
    line-height: 130%;
    text-decoration: none;
    text-align: center;
}

td {
    font-size: 20px;
    font-family: "Golos Text", sans-serif;
    font-weight: 500;
    line-height: 120%;
    color: #313131
}

.container {
    width: 100%;
    max-width: 1333px;
    margin-inline: auto;
    box-sizing: border-box;
    padding: 0 55.5px
}

.red__text {
    color: #F54932;
    font-weight: 700;
    line-height: 130%;
}

.button {
    display: grid;
    place-items: center;
    width: 263px;
    max-width: 100%;
    height: 72px;
    border-radius: 40px;
    box-sizing: border-box;
    padding: 0 50px;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.button--primary {
    background-color: #1F1F1F;
    color: #fff;
}

@media (hover: hover) {
    .button--primary:hover {
        background-color: #FBCE51;
        color: #1F1F1F;
    }
}

.button--primary:active {
    background-color: #FBCE51;
    color: #1F1F1F;
}

.button--secondary {
    border: 2px solid #1F1F1F;
    color: #1F1F1F;
}

@media (hover: hover) {
    .button--secondary:hover {
        background-color: #1F1F1F;
        color: #fff;
    }
}

.button--secondary:active {
    background-color: #1F1F1F;
    color: #fff;
}

@keyframes hero-circle-rotate {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}
/* --- ОБЩИЕ СТИЛИ --- */



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



/* --- Карусель --- */
.carusel__container {
    overflow: hidden;
    touch-action: pan-y pinch-zoom;
}

.carusel__wrapper {
    display: flex;
}

.carusel__slide {
    flex: 0 0 100%;
    min-width: 0;
}

.carusel__controls {
    display: flex;
    align-items: center;
    gap: 14px;
}

.carusel__control {
    position: relative;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background-color: #313131;
    cursor: pointer;
}

.carusel__control:disabled {
    cursor: not-allowed;
}

.carusel__control--prev:disabled,
.carusel__control--next:disabled {
    background-color: #D6D6D6;
}

.carusel__control::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 12px;
    height: 12px;
    border-top: 2px solid #FFFFFF;
    border-right: 2px solid #FFFFFF;
    transform-origin: center;
}

.carusel__control--prev::before {
    transform: translate(-35%, -50%) rotate(-135deg);
}

.carusel__control--next::before {
    transform: translate(-65%, -50%) rotate(45deg);
}

.carusel__counter {
    display: inline-block;
    width: 100%;
    max-width: 35px;
    font-family: "Golos Text", sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #313131;
    white-space: nowrap;
}
/* --- Карусель --- */



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



/* --- MAIN / ПЕРВЫЙ ЭКРАН --- */
.main {
    display: flex;
    position: relative;
    isolation: isolate;
    margin: 0;
    height: 700px;
    background-color: #E9DED4;
    overflow: hidden;
    overflow-x: clip;
}

.main::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("images/mask.png");
    background-repeat: repeat;
    mix-blend-mode: color-burn;
    pointer-events: none;
    z-index: 1;
}

.main .container {
    position: relative;
}

.main__wallpaper {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.main__wallpaper-circle {
    position: absolute;
    top: -102px;
    left: 50%;
    transform: translateX(calc(-50% + 322px));
    width: 777px;
    height: 777px;
}

.main__wallpaper-circle::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    transform: rotate(0deg);
    background-image: url("images/circle.png");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    animation: hero-circle-rotate 80s linear infinite reverse;
}

.main__wallpaper-city {
    position: absolute;
    left: 50%;
    bottom: -50.8px;
    width: 1648px;
    height: 586px;
    transform: translateX(calc(-50%));
}

.main__wallpaper-city::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: url("images/wallpaper_city_desktop.png");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}

.main__logo,
.main__content {
    position: relative;
    z-index: 2;
}

.logo {
    display: inline-block;
    margin-top: 26px;
}

.main__content {
    display: flex;
    margin-top: 58px;
}

.main__content-title {
    max-width: 542px;
}

.main__title {
    font-size: 60px;
    font-family: "Merriweather", serif;
    font-weight: 400;
    text-transform: uppercase;
    margin: 0;
    line-height: 110%;
    color: #313131;
}

.main__title-line {
    display: block;
}

.main__title-line--left {
    text-align: left;
}

.main__title-line--center {
    text-align: center;
}

.main__title-line--right {
    text-align: right;
}

.main__content-paragraph p {
    margin-top: 24px;
    text-align: center;
}

.main__content-buttons {
    display: flex;
    gap: 16px;
    margin-top: 39px;
    flex-wrap: wrap;
    text-align: center;
}
/* --- MAIN / ПЕРВЫЙ ЭКРАН --- */



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



/* --- Бегущая строка --- */
.runingline {
    margin: 0;
    padding: 18px 0;
    display: block;
    background-color: #F54932;
    color: #fff;
    overflow: hidden;
    z-index: 999;
}

.runingline__track {
    display: inline-flex;
    animation: marquee 30s linear infinite;
}

.runingline:hover .runingline__track {
    animation-play-state: paused;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.runingline__group {
    display: inline-flex;
    align-items: center;
    font-family: "Merriweather", serif;
    text-transform: uppercase;
    white-space: nowrap;
}

.runingline__group span {
    display: inline-block;
    font-size: 22px;
    line-height: 110%;
}

.runingline__dot {
    width: 6px;
    height: 6px;
    border-radius: 100%;
    background-color: #fff;
    margin: 0 12px;
}
/* --- Бегущая строка --- */



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



/* --- Экран "ЛЕКЦИЯ "Плодотворная дебютная идея"" --- */
.lecture .container {
    display: flex;
    gap: 64px;
    margin-top: 80px;
}

.lecture__text {
    display: inline-block;
    max-width: 764px;
    line-height: 130%;
}

.lecture__title {
    font-size: 36px;
    font-family: "Merriweather", serif;
    font-weight: 400;
    line-height: 137%;
    text-transform: uppercase;
    color: #313131;
    margin: 26px 0 27px;
}

.lecture__img,
.lecture_bender__img {
    position: relative;
    display: inline-block;
}

.lecture__img {
    height: 100%;
}

.lecture__img img {
    display: block;
    border-radius: 50%;
}

.lecture__img::after,
.lecture_bender__img::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("images/mask.png");
    background-repeat: repeat;
    mix-blend-mode: color-burn;
    pointer-events: none;
}

.lecture__img::after {
    border-radius: 50%;
    -webkit-mask-image: url("images/players.png");
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    -webkit-mask-position: center;
    mask-image: url("images/players.png");
    mask-repeat: no-repeat;
    mask-size: contain;
    mask-position: center;
}
/* --- Экран "ЛЕКЦИЯ "Плодотворная дебютная идея"" --- */



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



/* --- Экран "ЛЕКЦИЯ "О. Бендера"" --- */
.lecture_bender .container {
    display: flex;
    margin-top: 64px;
}

.lecture_bender__img {
    margin-left: -27px;
    margin-top: -27px;
    height: 100%;
}

.lecture_bender__img img {
    display: block;
}

.lecture_bender__img::after {
    -webkit-mask-image: url("images/player.png");
    -webkit-mask-mode: alpha;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: 100% 100%;
    -webkit-mask-position: 0 0;
    mask-image: url("images/player.png");
    mask-mode: alpha;
    mask-repeat: no-repeat;
    mask-size: 100% 100%;
    mask-position: 0 0;
}

.lecture_bender__text {
    margin-left: 16px;
}

.lecture_bender__title {
    font-size: 36px;
    font-family: "Merriweather", serif;
    font-weight: 400;
    text-transform: uppercase;
    color: #313131;
    line-height: 137%;
    margin: 0;
}

.lecture_bender__table {
    width: 100%;
    border-collapse: collapse;
    margin-top:44px;
}

.lecture_bender__table td {
    padding: 15px 0;
}

.lecture_bender__table td:first-child {
    width: 306px;
    font-weight: 400;
}

.lecture_bender__table td:last-child {
    padding-left: 16px;
}

.lecture_bender__table td + td {
    position: relative;
}

.lecture_bender__table td + td::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: #D0D0D0;
}

.lecture_bender__table tr:first-child td + td::before {
    top: 16px;
}

.lecture_bender__table tr:last-child td + td::before {
    bottom: 16px;
}

.lecture_bender__table tr + tr td {
    border-top: 2px solid #D0D0D0;
}

.lecture_bender__table-label {
    margin-left: 0;
}

.lecture_bender__table td span {
    position: relative;
    display: inline-block;
    margin-right: 7px;
}

.lecture_bender__table td span::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 14px;
    height: 2px;
    background-color: #F54932;
    transform: translateY(-50%);
}

.lecture_bender__text p {
    font-size: 20px;
    margin-top: 32px;
    color: #3057A2;
}

/* --- Экран "ЛЕКЦИЯ "О. Бендера"" --- */



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



/* --- Экран "ЭТАПЫ ПРЕОБРАЖЕНИЯ" --- */
.stages {
    position: relative;
    width: 100%;
    margin-top: 180px;
    overflow: hidden;
}

.stages__plane {
    position: absolute;
    right: -61px;
    bottom: -2px;
    width: 401px;
    height: 235px;
    background-image: url("images/plane.png");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    pointer-events: none;
}

.stages__inner {
    position: relative;
}

.stages__header {
    position: relative;
}


.stages__title {
    margin: 0;
    font-family: "Merriweather", serif;
    font-size: 54px;
    font-weight: 400;
    line-height: 120%;
    text-transform: uppercase;
}

.stages__title-line {
    display: block;
}

.stages__subtitle {
    position: absolute;
    top: 72px;
    left: 301px;
    max-width: 280px;
    font-size: 20px;
    font-weight: 400;
    line-height: 120%;
    color: #3057A2;
    margin: 0;
}

.stages__list {
    list-style: none;
    padding: 0;
    margin: 54px 0 0;
    width: 100%;
    gap: 20px;
}

.stages__item-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 20px;
    width: 100%;
    height: 100%;
}

.stages__item {
    margin: 0;
}

.stages__subitem {
    position: relative;
    margin: 0;
    flex: 1 1 0;
    padding: 20px 24px;
    padding-left: 72px;
    background-color: #E9DED4;
    background-image: url("images/mask.png");
    background-repeat: repeat;
    background-size: 220px auto;
    background-blend-mode: color-burn;
    color: #313131;
}

.stages__item-number {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Golos Text", sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 1;
}

.stages__item-text {
    margin: 0;
    font-family: "Golos Text", sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 120%;
    color: #313131;
}
/* --- Экран "ЭТАПЫ ПРЕОБРАЖЕНИЯ" --- */



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



/* --- Экран "УЧАСТНИКИ" --- */
.player {
    width: 100%;
    margin-top: 200px;
    margin-bottom: 138px;
}

.player__inner {
    width: calc(100% - 40px);
    max-width: 1222px;
    margin: 0 auto;
}

.player__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.player__title {
    font-family: "Merriweather", serif;
    font-size: 54px;
    font-weight: 400;
    text-transform: uppercase;
    color: #313131;
    line-height: 120%;
}

.player__controls {
    flex: 0 0 auto;
    transform: translateY(-2px);
}

.player__viewport {
    margin-top: 60px;
    width: 100%;
    max-width: 1222px;
}

.player__list {
    gap: 20px;
}

.player__item {
    flex: 0 0 calc((100% - 40px) / 3);
    max-width: calc((100% - 40px) / 3);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.player__avatar {
    display: block;
    width: 100%;
    max-width: 320px;
    aspect-ratio: 1;
    object-fit: cover;
}

.player__name {
    margin: 30px 0 0;
    font-family: "Golos Text", sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: #313131;
    line-height: 120%;
    text-transform: none;
}

.player__role {
    margin: 6px 0 0;
    font-family: "Golos Text", sans-serif;
    font-size: 20px;
    font-weight: 400;
    color: #313131;
    line-height: 120%;
}

.player__more {
    width: 113px;
    height: 35px;
    margin-top: 20px;
    padding: 0;
    border: 1px solid #3057A2;
    border-radius: 9999px;
    box-sizing: border-box;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: "Golos Text", sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 120%;
    color: #3057A2;
    text-decoration: none;
    text-align: center;
    transition: background-color 0.25s ease, color 0.25s ease;
}

.player__more:hover {
    background-color: #3057A2;
    color: #FFFFFF;
}

/* --- Экран "УЧАСТНИКИ" --- */



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



/* --- FOOTER --- */
.footer {
    margin: 0;
    height: 150px;
    background-color: #E9DED4;
}

.footer p {
    margin: 0;
    padding-top: 38px;
    font-size: 16px;
    color: #313131;
    width: 100%;
    max-width: 1222px;
    margin-inline: auto;
    box-sizing: border-box;
}

/* --- FOOTER --- */



/* ---------------------------------------------------------------------------------- */
/* --------------------------------АДАПТАЦИЯ ЭКРАНОВ--------------------------------- */
/* ---------------------------------------------------------------------------------- */




@media (max-width: 1280px) {
    /* --- ОБЩИЕ СТИЛИ --- */
    .button {
        width: 100%;
    }
    /* --- ОБЩИЕ СТИЛИ --- */



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



    /* --- MAIN / ПЕРВЫЙ ЭКРАН --- */
    .main__title {
        font-size: 48px;
    }

    .main__wallpaper-circle {
        width: 647px;
        height: 647px;
    }

    .main__wallpaper-city {
        width: 1373px;
        height: 488px;
    }
    /* --- MAIN / ПЕРВЫЙ ЭКРАН --- */



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

    .lecture__title,
    .lecture_bender__title {
        font-size: 32px;
    }

    .lecture_bender__table td {
        width: 50%;
    }

    .stages__plane {
        width: 297px;
        height: 174px;
    }

    .stages__item-text {
        font-size: 18px;
    }
}

@media (max-width: 1023px) {
    /* --- ОБЩИЕ СТИЛИ --- */
    .container {
        padding: 0 30px
    }

    .button {
        height: 60px;
    }

    .button--secondary {
        background-color: rgba(255, 255, 255, 0.8);
        border: none
    }
    /* --- ОБЩИЕ СТИЛИ --- */



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



    /* --- MAIN / ПЕРВЫЙ ЭКРАН --- */
    .main__wallpaper-circle {
        top: 0;
        width: 576px;
        height: 576px;
    }

    .main__wallpaper-city {
        width: 1221px;
        height: 434px;
    }

    .main__content-title {
        max-width: 400px;
    }

    .main__title {
        font-size: 36px;
    }

    .main__content-paragraph p {
        text-align: left;
    }

    .main__content-buttons {
        margin-top: 32px;
    }
    /* --- MAIN / ПЕРВЫЙ ЭКРАН --- */



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



    /* --- Экран "ЛЕКЦИЯ "Плодотворная дебютная идея"" --- */
    .lecture .container {
        position: relative;
        justify-content: center;
        margin-top: 48px;
    }

    .lecture__title span {
        display: inline-block;
        margin-top: 261px;
    }

    .lecture__text {
        max-width: unset;
    }

    .lecture__img {
        position: absolute;
        top: 50%;
        max-height: 212px;
        transform: translateY(-50%);
    }

    .lecture__img img {
        width: 335px;
        max-width: 100%;
    }
    /* --- Экран "ЛЕКЦИЯ "Плодотворная дебютная идея"" --- */



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



    /* --- Экран "ЛЕКЦИЯ "О. Бендера"" --- */
    .lecture_bender .container {
        flex-direction: column;
        align-items: flex-start;
        margin-top: 34px;
    }

    .lecture_bender__img {
        margin-top: 0;
        margin-left: calc(50% - 50vw);
        width: 100vw;
    }

    .lecture_bender__img img {
        width: min(374px, 100vw);
        height: auto;
        margin-right: auto;
        margin-left: auto;
    }

    .lecture_bender__img::after {
        -webkit-mask-size: contain;
        -webkit-mask-position: center;
        mask-size: contain;
        mask-position: center;
    }

    .lecture_bender__text {
        margin: 0;
    }

    .lecture_bender__table tr {
        display: block;
    }

    .lecture_bender__table td {
        display: block;
        width: 100%;
        padding: 0;
    }

    .lecture_bender__table td:first-child {
        margin-bottom: 10px;
    }

    .lecture_bender__table td:last-child {
        padding-left: 0;
    }

    .lecture_bender__table td + td::before {
        display: none;
    }

    .lecture_bender__table tr + tr td {
        border-top: 0;
    }

    .lecture_bender__table tr + tr {
        border-top: 2px solid #D0D0D0;
        margin-top: 16px;
        padding-top: 16px;
    }

    .lecture_bender__table tr:nth-child(4) td:first-child {
        white-space: nowrap;
    }

    .lecture_bender__table tr:nth-child(4) {
        display: flex;
        align-items: baseline;
        gap: 12px;
    }

    .lecture_bender__table tr:nth-child(4) td {
        width: auto;
    }

    .lecture_bender__table tr:nth-child(4) td:first-child {
        margin-bottom: 0;
    }

    .lecture_bender__table tr:nth-child(4) td:last-child {
        white-space: nowrap;
        margin-left: 8px;
    }
    /* --- Экран "ЛЕКЦИЯ "О. Бендера"" --- */



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



    /* --- Экран "УЧАСТНИКИ" --- */
    .player__item {
        flex: 0 0 calc((100% - 20px) / 2);
        max-width: calc((100% - 20px) / 2);
    }
    /* --- Экран "УЧАСТНИКИ" --- */
}

@media (min-width: 768px) and (max-width: 1023px) {
    /* --- Экран "ЭТАПЫ ПРЕОБРАЖЕНИЯ" --- */
    .stages__list {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: repeat(5, auto);
    }

    .stages__item:nth-child(5) .stages__subitem {
        padding-right: 220px;
    }
    /* --- Экран "ЭТАПЫ ПРЕОБРАЖЕНИЯ" --- */
}

@media (max-width: 767px) {
    /* --- ОБЩИЕ СТИЛИ --- */
    body {
        font-optical-sizing: none;
        font-variation-settings: "opsz" 16;
    }

    .lecture__title,
    .lecture_bender__title {
        font-size: 28px;
        margin: 0;
    }

    .container {
        padding: 0 20px
    }

    .logo {
        margin-top:18px;
        margin-left: 0;
        width: 213px;
    }

    .button {
        height: 47px;
        padding: 10px;
    }
    /* --- ОБЩИЕ СТИЛИ --- */



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



    /* --- Карусель --- */
    .carusel__controls {
        margin: 40px auto 0;
        width: 100%;
    }

    .carusel__control {
        width: 36px;
        height: 36px;
    }

    .carusel__control::before {
        left: calc(50% + 0px);
        width: 9px;
        height: 9px;
    }

    .carusel__dots {
        display: flex;
        align-items: center;
        gap: 6px;
    }

    .carusel__dot {
        width: 10px;
        height: 10px;
        border: 0;
        border-radius: 100%;
        padding: 0;
        background-color: #D9D9D9;
    }

    .carusel__dot--active {
        background-color: #313131;
    }
    /* --- Карусель --- */



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



    /* --- MAIN / ПЕРВЫЙ ЭКРАН --- */
    .main {
        height: 774px;
    }

    .main__wallpaper-city {
        width: 1181px;
        height: 410px;
        bottom: -20px;
    }

    .main__wallpaper-circle {
        top: 384px;
        width: 349px;
        height: 349px;
        transform: translateX(calc(-50% - 5px));
    }

    .main__wallpaper-city::after {
        background-image: url("images/wallpaper_city_mobile.png");
    }

    .main__content {
        margin-top: 38px;
        justify-content: center;
    }

    .main__content-buttons {
        margin-top: 30px;
    }
    /* --- MAIN / ПЕРВЫЙ ЭКРАН --- */



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



    /* --- Бегущая строка --- */
    .runingline {
        padding: 10px 0;
    }

    .runingline__track {
        font-size: 16px;
    }

    .runingline__group span {
        font-size: 16px;
    }



    .lecture_bender__text {
        margin-top: 24px;
    }

    .lecture_bender__title {
        line-height: 135%;
    }

    .lecture_bender__text p {
        font-size: 18px;
        margin-top: 42px;
        line-height: 120%;
    }
    /* --- Бегущая строка --- */



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




    /* --- Экран "ЭТАПЫ ПРЕОБРАЖЕНИЯ" --- */
    .stages {
        margin-top: 102px;
    }

    .stages__header {
        display: block;
    }

    .stages__title {
        font-size: 36px;
        line-height: 110%;
        max-width: 335px;
    }

    .stages__subtitle {
        position: static;
        max-width: 335px;
        font-size: 18px;
        line-height: 120%;
        margin-top: 12px;
        margin-left: 0;
    }

    .stages__list {
        margin: 0;
    }

    .stages__plane {
        width: 335px;
        height: 182px;
        inset: 0;
        top: 196px;
        left: 50%;
        margin: 0;
        background-image: url("images/plane_mobile.png");
        transform: translateX(-50%);
        pointer-events: none;
    }

    .stages .carusel__container {
        margin-top: 148px;
    }

    .stages .carusel__wrapper {
        gap: 40px;
    }

    .stages .carusel__slide {
        box-sizing: border-box;
        min-height: 300px;
        padding: 62px 20px 34px;
        background-color: #E9DED4;
        background-image: url("images/mask.png");
        background-repeat: repeat;
        background-size: 220px auto;
        background-blend-mode: color-burn;
    }

    .stages .carusel__slide .stages__subitem {
        padding: 0 0 0 52px;
        background: none;
    }

    .stages .carusel__slide .stages__subitem + .stages__subitem {
        margin-top: 30px;
    }

    .stages .carusel__slide .stages__item-number {
        top: 0;
        left: 0;
    }

    .stages .carusel__slide .stages__item-text {
        font-weight: 500;
    }

    .stages__item-list {
        display: block;
    }

    .stages__item:nth-child(5) .stages__subitem {
        padding: 0 0 0 52px;
    }

    .stages .carusel__controls {
        position: relative;
        left: 50%;
        transform: translateX(-50%);
        justify-content: center;
        gap: 16px;
        margin-top: 28px;
    }
    /* --- Экран "ЭТАПЫ ПРЕОБРАЖЕНИЯ" --- */



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



    /* --- Экран "УЧАСТНИКИ" --- */
    .player {
        margin-top: 120px;
        height: 546px;
    }

    .player__inner {
        display: flex;
        flex-direction: column;
    }

    .player__header {
        display: contents;
    }

    .player__title {
        font-size: 36px;
        line-height: 110%;
        order: 1;
    }

    .player__controls {
        order: 3;
        margin-top: 40px;
        justify-content: center;
        transform: none;
        gap: 12px;
    }

    .player__viewport {
        order: 2;
        margin-top: 40px;
        max-width: 100%;
        transform: none;
    }

    .player .carusel__container {
        display: flex;
        justify-content: center;
    }

    .player__list {
        gap: 0;
        width: 100%;
    }

    .player__item {
        flex: 0 0 100%;
        width: 100%;
        max-width: unset;
        justify-content: center;
    }

    .player__avatar {
        width: 244px;
        height: 244px;
    }

    .player__name {
        margin-top: 30px;
    }

    .player__role {
        margin-top: 8px;
    }

    .player__more {
        margin-top: 19px;
    }
    /* --- Экран "УЧАСТНИКИ" --- */



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



    /* --- FOOTER --- */
    .footer {
        height: 215px;
        padding-top: 4px;
    }

    .footer p {
        line-height: 120%;
    }
    /* --- FOOTER --- */

}

@media (min-width: 1024px) {
    /* --- Экран "ЭТАПЫ ПРЕОБРАЖЕНИЯ" --- */
    .stages__list {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        grid-template-rows: minmax(112px, auto) minmax(112px, auto) minmax(136px, auto);
    }

    .stages__item:nth-child(1) {
        grid-column: 1 / 3;
        grid-row: 1;
    }

    .stages__item:nth-child(2) {
        grid-column: 3;
        grid-row: 1 / span 2;
    }

    .stages__item:nth-child(3) {
        grid-column: 1 / 3;
        grid-row: 2;
    }

    .stages__item:nth-child(4) {
        grid-column: 1;
        grid-row: 3;
    }

    .stages__item:nth-child(5) {
        grid-column: 2 / span 2;
        grid-row: 3;
    }

    .stages__item:nth-child(5) .stages__subitem {
        padding-right: 290px;
    }
    /* --- Экран "ЭТАПЫ ПРЕОБРАЖЕНИЯ" --- */
}

@media (min-width: 768px) {
    /* --- Экран "ЭТАПЫ ПРЕОБРАЖЕНИЯ" --- */
    .stages .carusel__controls {
        display: none;
    }
    /* --- Экран "ЭТАПЫ ПРЕОБРАЖЕНИЯ" --- */
}
