@font-face {
    font-family: 'Inter';
    src: url(../fonts/Inter-SemiBold.woff) format('woff');
    font-style: normal;
    font-weight: 600;
}
@font-face {
    font-family: 'Inter';
    src: url(../fonts/Inter-SemiBold.woff2) format('woff2');
    font-style: normal;
    font-weight: 600;
}
@font-face {
    font-family: 'Inter';
    src: url(../fonts/Inter-Bold.woff) format('woff');
    font-style: normal;
    font-weight: bold;
}
@font-face {
    font-family: 'Inter';
    src: url(../fonts/Inter-Bold.woff2) format('woff2');
    font-style: normal;
    font-weight: bold;
}
@font-face {
    font-family: 'AmapolaModern';
    src: url(../fonts/AmapolaModern.woff) format('woff');
    font-style: normal;
    font-weight: normal;
}
@font-face {
    font-family: 'AmapolaModern';
    src: url(../fonts/AmapolaModern.woff2) format('woff2');
    font-style: normal;
    font-weight: normal;
}
@font-face {
    font-family: 'DXAngelusMediaval';
    src: url(../fonts/DXAngelusMediaval.woff) format('woff');
    font-style: normal;
    font-weight: 400;
}
@font-face {
    font-family: 'DXAngelusMediaval';
    src: url(../fonts/DXAngelusMediaval.woff2) format('woff2');
    font-style: normal;
    font-weight: 400;
}


* {
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: "Inter", sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 1.6;
    color: #5f5f5f;
    background-color: #e7e3e5;
    margin: 0;
    padding: 0;
    text-rendering: optimizeSpeed;
}
.body-wrapper {
    overflow: clip;
    margin: 0;
}
a {
    text-decoration: none;
    transition: all .2s ease;
    color: #33363f;
}
img, picture {
    max-width: 100%;
    display: block;
}
header {
    margin-top: 10px;
    width: 100%;
    display: flex;
    min-width: 0;
    justify-content: center;
    align-items: center;
    position: fixed;
    z-index: 1000;
    top: 0;
}
.header__container {
    width: 100%;
    min-width: 0;
    padding: 10px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    line-height: 1;
    font-family: "AmapolaModern";
    text-transform: uppercase;
    font-weight: 400;
    transition: all .3s ease;
    max-width: calc(100dvw - 86px - 86px);
}
.header__container.header--scroll {
    /* background: rgba(255, 185, 238, 0.3);  */
    background: rgba(231, 227, 229, 0.85);
    backdrop-filter: blur(8px);
    border-radius: 269px;
    max-width: calc(100dvw - 86px - 86px);
    padding: 10px;
}
.header__first {
    display: flex;
    min-width: 0;
    align-items: center;
    gap: 60px;
}
.header__logo:hover {
    transform: scale(1.078);
    transform-origin: center center;
}
.nav__list {
    display: flex;
    min-width: 0;
    gap: 55px;
    align-items: center;
    margin: 0;
    padding: 0;
    list-style: none;
}
.nav__list-el {
    margin: 0;
    padding: 0;
    position: relative;
}
.nav__list-item:hover {
    color: #000;
}
.header__second {
    display: flex;
    align-items: center;
    min-width: 0;
}
.servers__list, .server {
    display: flex;
    align-items: center;
    min-width: 0;
}
.server img {
    transition: all .2s ease;
}
.server:hover > img {
    transform: scale(1.2);
    filter: brightness(90%);
}
.server:hover .server__info-name {
    color: #000;
}
.server:hover .online {
    filter: brightness(70%);
}
.servers__list {
    gap: 52px;
}
.server {
    gap: 12px;
}
.server__info-name {
    font-size: 20px;
}
.online {
    margin-top: 5px;
    font-family: "Inter";
    font-size: 11px;
    font-weight: bold;
    color: #5f5f5f;
}
.servers__list.small {
    display: none;
}
@media(max-width: 2000px) {
    .servers__list {
        display: none;
    }
    .servers__list.small {
        display: block;
        position: relative;
    }
    .servers__list-trigger {
        cursor: pointer;
        text-transform: uppercase;
        position: relative;
        padding-right: 16px;
        color: #33363f;
    }
    .servers__list-trigger::after {
        content: "";
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 9px;
        height: 6px;
        background: url(../img/lang-arrow.png) center no-repeat;
        background-size: contain;
        transition: all .3s ease-in-out;
    }
    .servers__list-container {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        top: 100%;
        margin-top: 15px;
        display: flex;
        gap: 25px;
        padding: 10px 20px;
        background: rgba(231, 227, 229, 0.7);
        border-radius: 12px;
        flex-wrap: wrap;
        visibility: hidden;
        opacity: 0;
        transition: all .3s ease-in-out;
    }
    .servers__list.small .servers__list-container {
        flex-direction: row;
        flex-wrap: nowrap;
    }
    .servers__list:hover .servers__list-container {
        opacity: 1;
        visibility: visible;
    }
    .servers__list:hover .servers__list-trigger::after {
        transform: translateY(-50%) scale(1, -1);
    }
    .server {
        width: max-content;
    }
}
.swap-lang-wrap {
    display: flex;
    min-width: 0;
    align-items: center;
    gap: 7px;
    cursor: pointer;
    padding-left: 46px;
    padding-right: 26px;
    position: relative;
}
.swap-lang {
    position: relative;
    z-index: 5;
}
.swap-lang-item {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}
.lang-item-flag {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    box-shadow: inset 0 0 0 1px #f3f3f3;
    border: 2px solid #9eb4b4;
    overflow: hidden;
}
.lang-item-flag img {
    padding: 1px;
}
.lang-item-name {
    transition: all .2s ease;
}
.lang-list .swap-lang-item:hover .lang-item-name {
    color: #000;
}
.lang-list .lang-item-flag {
    transition: all .2s ease-in-out;
}
.lang-list .swap-lang-item:hover .lang-item-flag {
    transform: scale(1.08);
}
.lang-list {
    position: absolute;
    top: 0%;
    opacity: 0;
    visibility: hidden;
    display: flex;
    flex-direction: column;
    justify-items: center;
    align-items: center;
    gap: 7px;
    transition: all .3s ease-in-out;
    z-index: 0;
    background: rgba(231, 227, 229, 0.7);
    border-radius: 16px;
    padding: 10px 5px;
    margin: -10px -5px;
    padding-top: 47px;
    margin-right: -18px;
    padding-right: 18px;

}
.swap-lang-wrap:hover .lang-list {
    opacity: 1;
    visibility: visible;
}
.swap-lang-arrow {
    background: url(../img/lang-arrow.png) center no-repeat;
    background-size: contain;
    width: 9px;
    height: 6px;
    transition: all .3s ease-in-out;
    z-index: 1;
}
.swap-lang-wrap:hover .swap-lang-arrow {
    transform: scale(1, -1);
}
.btn {
    display: flex;
    min-width: 0;
    justify-content: center;
    align-items: center;
    height: 55px;
    aspect-ratio: 240/55;
    font-weight: 500;
    font-size: 14px;
    line-height: 1;
    padding: 10px 20px;
    border-radius: 12px;
    background: url(../img/btn.png) center no-repeat;
    background-size: contain;
}
.btn span {
    background: linear-gradient(to top, #d5cfbf, #f4f0e7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; 
    text-shadow: 0 0 8px rgba(1, 32, 33, 0.52);
}
.btn:hover, .button:hover {
    filter: brightness(110%);
}

section {
    display: flex;
    min-width: 0;
    justify-content: center;
    position: relative;
    padding: 0 20px;
    padding-top: 130px;
    padding-bottom: 150px;
}
section::after {
    content: "";
    width: 100%;
    height: 18px;
    position: absolute;
    top: 2px;
    left: 0;
    z-index: 2;
    background-image: url(../img/sections/line.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: auto 100%;
    pointer-events: none;
}
section.light::after {
    background-image: url(../img/sections/line_light.png);
}
section:first-child {
    padding-top: 86px;
}
section:first-child::after {
    display: none;
}
.container {
    display: flex;
    min-width: 0;
    width: 100%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}


/* WELCOME */
section.welcome {
    background: url(../img/sections/welcome__bg.jpg) top no-repeat;
    background-size: cover;
    height: 100dvh;
    padding-top: 186px;
    min-height: 900px;
}
section.welcome .container {
    max-width: inherit;
    padding: 0;
    padding-left: 35%;
}
@media(max-width: 2150px) {
    section.welcome .container {
        transform-origin: center;
        transform: scale(0.85);
        padding-left: 45%
    }
}
@media(max-width: 2000px) {
    section.welcome .container {
        transform-origin: center;
        transform: scale(0.7);
        padding-left: 45%
    }
}
.logo {
  display: block;
  animation: breatheGlow 4.5s ease-in-out infinite;
}
@keyframes breatheGlow {
    0% {
        transform: scale(1);
        filter:
        drop-shadow(0 0 18px rgba(255, 131, 197, 0.65))
        drop-shadow(0 0 36px rgba(255, 210, 235, 0.55));
    }
    50% {
        transform: scale(1.025);
        filter:
        drop-shadow(0 0 42px rgb(255, 106, 183))
        drop-shadow(0 0 80px rgba(255, 255, 255, 1));
    }
    100% {
        transform: scale(1);
        filter:
        drop-shadow(0 0 18px rgba(255, 131, 197, 0.65))
        drop-shadow(0 0 36px rgba(255, 210, 235, 0.55));
    }
}
.section-subtitle {
    font-family: "AmapolaModern";
    font-size: 38px;
    line-height: 1;
    color: #e11247;
    text-transform: uppercase;
    font-weight: 400;
}
.section-title {
    font-family: "AmapolaModern";
    font-size: 54px;
    font-weight: 400;
    color: #33363f;
    text-transform: uppercase;
    text-wrap-style: balance;
}
.section-heading {
    display: flex;
    min-width: 0;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.section-desc {
    color: #5f5f5f;
    max-width: 660px;
}
section.light .section-title {
    background: linear-gradient(to top, #d5b57e, #ffe7c3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 12px rgba(40, 40, 40, 0.15);
}
section.light .section-desc {
    color: #ebebeb;
}
.button {
    display: flex;
    min-width: 0;
    justify-content: center;
    align-items: center;
    font-family: "AmapolaModern";
    font-weight: 400;
    line-height: 1;
    text-transform: uppercase;
    background-size: contain;
    flex-shrink: 0;
    background: url(../img/button.png) center no-repeat;
    background-size: contain;
    height: 94px;
    aspect-ratio: 411/94;
    font-size: 20px;
    padding: 10px 30px;
}
.button_big {
    background: url(../img/button_big.png) center no-repeat;
    background-size: contain;
    height: 115px;
    aspect-ratio: 498/115;
    font-size: 25px;
    margin: 60px 0;
}
.button span {
    background: linear-gradient(to top, #ddcea6, #fef6e1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; 
    text-shadow: 0 0 8px rgba(1, 32, 33, 0.2);
    padding-top: 3.5px;
}
.donators {
    background: url(../img/donators__bg.png) top no-repeat;
    background-size: contain;
    display: flex;
    min-width: 0;
    flex-direction: column;
    justify-content: center;
    max-width: 540px;
    aspect-ratio: 540/250;
    width: 100%;
    padding: 26px 19px;
    padding-bottom: 38px;
    border-radius: 13px;
    gap: 4px;
    position: relative;
}
.donators__row, .dontators__row-block {
    display: flex;
    min-width: 0;
    justify-content: center;
    align-items: center;
}
.donators__row {
    font-weight: bold;
    color: #33363f;
    font-size: 15px;
    line-height: 1;
    text-transform: uppercase;
    justify-content: space-between;
    width: 100%;
    padding: 9px;
    padding-right: 20px;
    background: url(../img/donators__row.png) center no-repeat;
    background-size: contain;
}
.dontators__row-block {
    gap: 20px;
}
.donators__row-proffesion {
    display: block;
    max-width: 175px;
    width: 100%;
    text-align: left;
    overflow: hidden;
}
.donators__row-num {
    font-size: 22px;
    color: #e11247;
    font-family: "DXAngelusMediaval";
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    min-width: 0;
    justify-content: center;
    align-items: center;
    background: url(../img/donators__row-num.png) center no-repeat;
    background-size: contain;
    position: relative;
}
.donators__title {
    font-family: "DXAngelusMediaval";
    display: flex;
    min-width: 0;
    max-width: 276px;
    width: 100%;
    justify-content: center;
    align-items: center;
    font-size: 13px;
    color: #fff;
    text-transform: uppercase;
    line-height: 1;
    font-weight: 400;
    background: url(../img/donators__title.png) center no-repeat;
    background-size: contain;
    aspect-ratio: 276/66;
    position: absolute;
    top: 89%;
    transform: translateX(-50%);
    left: 50%;
}
.donators__title span {
    margin-bottom: 10px;
}


/* FEATURES */
section.features {
    background: url(../img/sections/features__bg.jpg) top no-repeat;
    background-size: cover;
}
.features-swiper-wrap {
    width: 100%;
    max-width: 88dvw;
    overflow: hidden;
    padding-top: 60px;
}
.features-swiper {
    width: 100%;
    max-width: 88dvw;
}
.features-swiper .swiper-wrapper {
    display: flex !important;
    flex-direction: row !important;
    align-items: center;
}
.features-swiper .swiper-slide {
    flex-shrink: 0 !important;
    height: auto;
}
.feature-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all .4s ease;
    opacity: 0.35;
    transform: scale(0.73);
    opacity: 1;
}
.features-swiper .swiper-slide-active {
    transform: scale(1);
    z-index: 2;
}
.feature-card {
    position: relative;
    aspect-ratio: 909/460;
    width: 100%;
    border-radius: 32px;
    box-shadow: inset 0 0 0 2px #cbd7dc,
                inset 0 0 0 6px rgba(0, 0, 0, 0.3);
    transition: all .5s ease;
}
.feature-img {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: -2;
    border-radius: 32px;
    overflow: hidden;
}
.feature-img img {
    width: 100%;
}
.swiper-slide .feature-img::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            to top,
            rgba(255, 255, 255, 0.9) 0%,
            rgba(255, 255, 255, 0.5) 50%,
            rgba(255, 255, 255, 0) 70%
        ),
        url("../img/features/active-effect.png");

    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
    opacity: 0;
    border-radius: 32px;
    box-shadow: inset 0 0 0 2px #b09749;
    transition: all .5s ease;
}
.feature-img-border {
    position: absolute;
    width: 102%;
    top: -3%;
    left: -1%;
    aspect-ratio: 920/484;
    border-radius: 32px;
    border: 1px solid #ffddd0;
    opacity: 0;
    transition: all .5s ease;
}
.border-dot {
    position: absolute;
    z-index: 5;
    pointer-events: none;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}
.border-dot.top {
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 52px;
    height: 9px;
    background-image: url("../img/features/border-top.png");
}
.border-dot.bottom {
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 50%);
    width: 52px;
    height: 9px;
    background-image: url("../img/features/border-bottom.png");
}
.border-dot.left {
    left: 0;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 4px;
    height: 4px;
    background-image: url("../img/features/border-left.png");
}
.border-dot.right {
    right: 0;
    top: 50%;
    transform: translate(50%, -50%);
    width: 4px;
    height: 4px;
    background-image: url("../img/features/border-right.png");
}
.swiper-slide-active .feature-img-border,
.swiper-slide-active .feature-img::after {
    opacity: 1;
}
.swiper-slide-active .feature-card {
    box-shadow: unset;
}
.feature-text {
    position: absolute;
    width: 100%;
    bottom: 0;
    transition: all .5s ease;
    opacity: 0;
    pointer-events: none;
}
.swiper-slide-active .feature-text {
    bottom: 14%;
    opacity: 1;
}
.feature-title {
    font-family: "AmapolaModern";
    font-size: 32px;
    color: #33363f;
    text-transform: uppercase;
    line-height: 1.2;
    padding-bottom: 20px;
    max-width: 90%;
    width: 100%;
    margin: 0 auto;
    font-weight: 400;
}
.feature-desc {
    max-width: 80%;
    width: 100%;
    margin: 0 auto;
}
@media(max-width: 2000px) {
    .feature-title {
        font-size: 24px;
    }
    .feature-desc {
        font-size: 14px;
    }
}
.feature-swiper-nav {
    padding-top: 45px;
    padding-bottom: 10px;
    display: flex;
    min-width: 0;
    justify-content: center;
    align-items: center;
    background: url(../img/features/bullets-bg.png) center no-repeat;
}
.swiper-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 45px;
    height: 110px;
    padding: 10px;
}
.swiper-pagination-bullet {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 0;
    flex-shrink: 0;
    width: 92px;
    height: 92px;
    border-radius: 50%;
    background: url(../img/features/bullet-bg.png) center no-repeat;
    background-size: cover;
    filter: drop-shadow(0 0 4px #5f5f5f);
    box-shadow: 0 0 0 9px #5f5f5f73;
    cursor: pointer;
    transition: all .2s ease;
}
.swiper-pagination-bullet::after {
    position: absolute;
    content: "";
    width: 119%;
    height: 119%;
    border-radius: 50%;
    top: -9.5%;
    left: -9.5%;
    background: url(../img/features/bullet-border.png) center no-repeat;
    background-size: contain;
}
.swiper-pagination-bullet-active {
    background: url(../img/features/bullet-bg_active.png) center no-repeat;
    width: 110px;
    height: 110px;
}
.swiper-pagination-bullet img {
    filter: drop-shadow(0 0 6px #ffffff4b) drop-shadow(0 0 4px #8e1c9c);
    transition: all .2s ease;
}
.swiper-pagination-bullet-active img {
    filter: drop-shadow(0 0 6px #0000004b) drop-shadow(0 0 4px #c3852c);
    transform: scale(1.2);
}
.swiper-button-prev svg, .swiper-button-next svg {
    display: none;
}
.swiper-button-prev, .swiper-button-next {
    width: 75px;
    height: 41px;
    aspect-ratio: 75/41;
    display: block;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    cursor: pointer;
    filter: drop-shadow(0 0 7px #353535ad);
    transition: all .2s ease;
}
.swiper-button-prev:hover, .swiper-button-next:hover {
    filter: drop-shadow(0 0 7px #353535) brightness(120%);
}
.swiper-button-next {
    background-image: url(../img/features/button-next.png);
    margin-left: 1em;
}
.swiper-button-prev {
    background-image: url(../img/features/button-prev.png);
    margin-right: 1em;
}
.swiper-button-disabled {
    opacity: 0.5;
}


/* RATING */
section.rating {
    background: url(../img/sections/rating__bg.jpg) top no-repeat;
    background-size: cover;
}
section.rating .container {
    max-width: 1400px;
    width: 100%;
}
.rating__table-wrap {
    width: 100%;;
}
.rating__table {
    min-width: 0;
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    padding-top: 64px;
    flex-direction: column;
    line-height: 1;
    gap: 12px;
}
.tr {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    min-width: 0;
    width: 100%;
    padding: 14px 20px;
    border-radius: 38px;
    background: url(../img/rating/default.png) center no-repeat;
    background-size: contain;
    filter: drop-shadow(0 5px 5px rgba(107, 107, 107, 0.5));
}
.tr.green {
    background-image: url(../img/rating/green.png);
}
.tr.violet {
    background-image: url(../img/rating/violet.png);
}
.tr.pink {
    background-image: url(../img/rating/pink.png);
}
.tr.th {
    padding: 16px 20px;
    text-transform: uppercase;
    font-weight: 800;
    color: #33363f;
    background: none;
    box-shadow: unset;
}
.tr.th .td {
    font-size: 16px;
}
.tr .td:first-child {
    max-width: 228px;
    width: 100%;
    text-transform: uppercase;
}
.green .td, .violet .td, .pink .td {
    font-size: 17px;
    color: #e3e3e3;
    font-weight: bold;
}
.green .td {
    text-shadow: 0 0 10px rgba(255, 230, 152, 0.6);
}
.td {
    font-size: 17px;
    color: #533c3c;
    font-weight: bold;
    text-align: left;
}
.place {
    padding: 14px 26px;
    font-size: 16px;
    font-family: "DXAngelusMediaval";
    color: #62340e;
    font-weight: 400;
    width: max-content;
    border-radius: 24px;
    background: url(../img/rating/default_small.png) center no-repeat;
    background-size: cover;
    text-align: center;
}
.place span {
    font-size: 20px;
}
.green .place, .violet .place, .pink .place {
    color: #ffc098;
}
.green .place {
    background-image: url(../img/rating/green_small.png);
}
.violet .place {
    background-image: url(../img/rating/violet_small.png);
}
.pink .place {
    background-image: url(../img/rating/pink_small.png);
}
.king {
    display: flex;
    min-width: 0;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
}
.tr .td:nth-child(2) {
    max-width: 230px;
    width: 100%;
    margin-right: 90px;
}
.tr .td:nth-child(3) {
    max-width: 145px;
    width: 100%;
    margin-right: 160px;
}
.tr .td:nth-child(4) {
    max-width: 105px;
    width: 100%;
    margin-right: 140px;
}


/* SCHEDULE */
section.schedule {
    background: url(../img/sections/schedule_bg.jpg) top no-repeat;
    background-size: cover;
}
section.schedule .container {
    max-width: 1420px;
    width: 100%;
}
.schedule__map {
    width: 100%;
    display: flex;
    min-width: 0;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.stages {
    display: flex;
    min-width: 0;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    padding-top: 90px;
}
.stage {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 0;
    cursor: pointer;
    text-transform: uppercase;
    max-width: 250px;
    position: relative;
}
.stage-icon {
    display: flex;
    min-width: 0;
    justify-content: center;
    align-items: center;
    width: 88px;
    height: 88px;
    border-radius: 50%;
    background: url(../img/schedule/icon-border.png) center no-repeat;
    background-size: cover;
    filter: drop-shadow(0 0 20px rgb(0, 0, 1));
}
.stage-icon img {
    filter: drop-shadow(0 0 8px rgb(170, 165, 113));
}
.stage-name {
    padding-top: 16px;
    font-family: "AmapolaModern";
    font-size: 16px;
    color: #fbcb82;
    font-weight: 400;
}
.stage-date {
    color: #f7f7f7;
    font-size: 14px;
    font-weight: bold;
}
.stage:not(:last-child)::after {
    position: absolute;
    content: "";
    top: 20%;
    left: 83%;
    max-width: 177px;
    height: 16px;
    display: flex;
    background: url(../img/schedule/arrow.png) right no-repeat;
    width: 12vw;
    pointer-events: none;
    cursor: default;
}
.stages-info {
    margin-top: 100px;
    display: flex;
    min-width: 0;
    justify-content: center;
    align-items: center;
    position: relative;
    max-height: 340px;
    max-width: 1420px;
    height: 100%;
    width: 100%;
    background: url(../img/schedule/desc_bg.png) center no-repeat;
    background-size: cover;
    padding: 20px;
    overflow: hidden;
    aspect-ratio: 1420/340;
}
.stage-info {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.stage-info-date {
    color: #ebebeb;
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
}
.stage-info-name {
    font-family: "AmapolaModern";
    font-weight: 400;
    font-size: 32px;
    background: linear-gradient(to top, #dec18e, #fee7c2);
    background-clip: border-box;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    padding-top: 10px;
}
.stage-info-desc {
    color: #ebebeb;
    font-size: 18px;
    max-width: 630px;
    padding-top: 14px;
}
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0px);
    }
}
.stage.is-active .stage-icon {
    filter: brightness(140%) drop-shadow(0 0 20px #fff);
}
.stage-info {
    display: none;
}
.stage-info.is-active {
    display: flex;
    animation: fadeIn 0.4s ease forwards;
}


/* PRIZE */
section.prize {
    background: url(../img/sections/prize__bg.jpg) top no-repeat;
    background-size: cover;
}
section.prize .container {
    width: max-content;
    padding-right: 18%;
}
@media(max-width: 1920px) {
    section.prize .container {
        padding-right: 25%;
    }
}
section.prize .section-desc {
    max-width: 530px;
    padding-top: 20px;
}
.prize-block {
    display: flex;
    min-width: 0;
    justify-content: center;
    align-items: center;
    max-width: 510px;
    max-height: 122px;
    width: 100%;
    height: 100%;
    aspect-ratio: 510/122;
    background: url(../img/prize.png) center no-repeat;
    background-size: contain;
    margin-top: 50px;
    margin-bottom: 60px;
}
.prize-amount {
    font-family: "AmapolaModern";
    font-weight: 400;
    font-size: 38px;
    text-transform: uppercase;
    background: linear-gradient(to top, #4b4a2d 0%, #655923 50%, #4b4a2d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.prize-amount span {
    font-size: 46px;
}


section.socials {
    background: url(../img/sections/socials__bg.jpg) top no-repeat;
    background-size: cover;
}
.links {
    display: flex;
    min-width: 0;
    justify-content: center;
    align-items: center;
    padding-top: 75px;
    gap: 220px;
}
.link {
    display: flex;
    min-width: 0;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.link-icon {
    width: 130px;
    height: 130px;
    padding: 10px;
    border-radius: 50%;
    background: url(../img/social-border.png) center no-repeat;
    background-size: contain;
    margin-bottom: 25px;
}
.link-name {
    font-family: "AmapolaModern";
    font-weight: 400;
    font-size: 24px;
    text-transform: uppercase;
    color: #fbcb82;
    line-height: 1;
    margin-bottom: 14px;
}
.link-desc {
    font-size: 12px;
    text-transform: uppercase;
    line-height: 1;
    color: #ebebeb;
}
.link-icon:hover {
    filter: brightness(110%);
}


/* VOTING */
section.voting {
    background: url(../img/sections/voting__bg.jpg) top no-repeat;
    background-size: cover;
    padding-top: 100px;
    padding-bottom: 80px;
}
section.voting .container {
    width: max-content;
    padding-left: 22%;
}
@media(max-width: 1920px) {
    section.voting .container {
        padding-left: 30%;
    }
}
section.voting .section-desc {
    max-width: 530px;
    padding-top: 20px;
}
.items {
    padding-top: 26px;
    display: flex;
    min-width: 0;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding-bottom: 36px;
}
.item {
    width: 99px;
    height: 99px;
    background: url(../img/item-bg.png) center no-repeat;
    background-size: contain;
    display: flex;
    min-width: 0;
    justify-content: center;
    align-items: center;
    position: relative;
}
.item-image {
    width: 30px;
    height: 30px;
    filter: drop-shadow(0 0 7px rgba(255, 85, 85, 1));
}
.item-tooltip {
    visibility: hidden;
    opacity: 0;
    width: max-content;
    background: #100f0c;
    border-radius: 6px;
    position: absolute;
    bottom: 110%;
    left: 50%;
    transform: translateX(-50%);
    font-size: 13px;
    min-width: 174px;
    max-width: 260px;
    z-index: 10;
    text-align: left;
    transition: all .2s;
    color: #d3d3d3;
}
.tooltip-title {
    display: flex;
    width: 100%;
    padding: 9px 10px;
    justify-content: ce;
    align-items: center;
    gap: 12px;
    box-shadow: inset 0 0 0 1px #444035;
    display: flex;
    gap: 6px;
    align-items: center;
}
.tooltip-title {
    font-size: 12px;
    color: #ebebeb;
}
.tooltip-title span {
    font-size: 12px;
    color: #b59f7c;
}
.tooltip-desc {
    font-size: 11px;
    padding: 13px 10px;
    box-shadow: inset 0 0 0 1px #444035;
    margin-top: -1px;
    width: 100%;
    line-height: 1.2;
}
.item:hover .item-tooltip {
    visibility: visible;
    opacity: 1;
}

/* FOOTER */
footer {
    position: relative;
    background: url(../img/sections/footer__bg.jpg) top no-repeat;
    background-size: cover;
}
footer::after {
    content: "";
    width: 100%;
    height: 7px;
    position: absolute;
    top: 3px;
    left: 0;
    z-index: 2;
    background-image: url(../img/sections/line-footer.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: auto 100%;
    pointer-events: none;
}
.footer__container {
    margin: 0 auto;
    padding: 106px 20px;
    padding-top: 116px;
    display: flex;
    min-width: 0;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    text-align: left;
    text-transform: uppercase;
    line-height: 1;
}
.footer-main {
    display: flex;
    min-width: 0;
    flex-direction: column;
}
.footer__logo {
    margin-bottom: 30px;
    max-width: max-content;
}
.footer__logo:hover {
    filter: brightness(110%)
}
.footer__copyright {
    color: #fbcb82;
    font-size: 13px;
    margin-bottom: 15px;
}
.footer-socials {
    display: flex;
    min-width: 0;
    gap: 28px;
}
.socials-link {
    font-weight: bold;
    font-size: 11px;
    color: #ebebeb;
}
.socials-link:hover {
    color: #fff;
}
.watermark {
    margin-top: 30px;
    display: flex;
    min-width: 0;
    align-items: center;
    gap: 9px;
    font-size: 12px;
    cursor: pointer;
    max-width: max-content;
}
.watermark-logo {
    transition: all 1s ease;
}
.watermark-developed {
    color: #f3efe9;
    text-transform: none;
    margin-bottom: 3px;
}
.watermark-studio {
    font-weight: bold;
    color: #fbcb82;
}
.watermark:hover {
    filter: brightness(115%);
}
.watermark:hover .watermark-logo {
    transform: rotate(720deg);
}
.footer-cols {
    display: flex;
    gap: 140px;
    align-items: center;
    min-width: 0;
}
.footer-col {
    display: flex;
    min-width: 0;
    flex-direction: column;
    gap: 26px;
}
.footer-col-name {
    margin-bottom: 10px;
    font-family: "AmapolaModern";
    font-weight: 400;
    font-size: 24px;
    color: #fbcb82;
}
.footer-col-link {
    font-size: 13px;
    color: #ebebeb;
    max-width: max-content;
}
.footer-col-link:hover {
    color: #fff;
}


/* ADAPTIVE */
.burger {
    position: relative;
    width: 40px;
    height: 40px;
    border: none;
    display: none;
    z-index: 1002;
    background-color: transparent;
    cursor: pointer;
}
.burger span {
    position: absolute;
    width: 24px;
    height: 2px;
    background-color: #33363f;
    left: 8px;
    transition: transform .5s;
    will-change: transform;
}
.burger span:nth-child(1) {
    transform: translateY(-10px);
} 
.burger span:nth-child(3) {
    transform: translateY(10px);
} 
.burger.active span:nth-child(1) {
    transform: translateY(0) rotate(45deg);
} 
.burger.active span:nth-child(3) {
    transform: translateY(0) rotate(-45deg);
}
.burger.active span:nth-child(2) {
    display: none;
} 
.menu {
    display: none;
    visibility: hidden;
    z-index: 1001;
    min-height: 100vh;
}
.menu__list {
    display: flex;
    align-items: center;
    list-style-type: none;
    padding: 0;
    margin: 0;
}

@media(max-width:1700px) {
    .header__container, .header__container.header--scroll {
        max-width: 1400px;
        width: calc(100dvw - 20px - 20px);
    }
    .header__first {
        gap: 30px;
    }
    .nav__list {
        gap: 25px;
    }
    .swap-lang-wrap {
        padding-left: 23px;
        padding-right: 13px;
    }
}
@media(max-width:1400px) {
    body {
        font-size: 12px;
    }
    header {
        margin-top: 6.5px;
    }
    .header__container, .header__container.header--scroll {
        max-width: 910px;
        width: calc(100dvw - 12px - 12px);
    }
    .header__container {
        font-size: 10px;
        padding: 6.5px 0;
    }
    .header__first {
        gap: 19.5px;
    }
    .header__logo {
        width: 55px;
        height: 42px;
        display: flex;
        min-width: 0;
        justify-content: center;
        align-items: center;
    }
    .nav__list {
        gap: 16px;
    }
    .servers__list-trigger {
        padding-right: 10px;
    }
    .servers__list-trigger::after {
        width: 6px;
        height: 4px;
    }
    .servers__list-container {
        gap: 16px;
        margin-top: 10px;
        padding: 6.5px 13px;
    }
    .server {
        gap: 7px;
    }
    .server img {
        width: 26px;
        height: 26px;
    }
    .server__info-name {
        font-size: 13px;
    }
    .online {
        margin-top: 3px;
        font-size: 9px;
    }
    .swap-lang-wrap {
        padding-left: 15px;
        padding-right: 8px;
        gap: 4px;
    }
    .swap-lang-item {
        gap: 5px;
    }
    .lang-item-flag {
        width: 19.5px;
        height: 19.5px;
    }
    .lang-item-flag img {
        padding: 0;
    }
    .swap-lang-arrow {
        width: 6px;
        height: 4px;
    }
    .lang-list {
        gap: 4.5px;
        border-radius: 10px;
        padding: 6.5px 3.25px;
        margin: -6.5px -3.25px;
        padding-top: 30px;
        margin-right: -12px;
        padding-right: 12px;
    }
    .btn {
        font-size: 9px;
        padding: 6.5px 13px;
        height: 35.75px;
    }
    .header__container.header--scroll {
        padding: 6.5px;
        border-radius: 174px;
    }

    section {
        padding: 0 12px;
        padding-top: 84px;
        padding-bottom: 97px;
    }
    section::after {
        height: 12px;
    }
    section.welcome {
        padding-top: 120px;
        min-height: 585px;
    }
    section:first-child {
        padding-top: 55px;
    }
    section.welcome .container {
        /* transform: scale(0.455);
        transform: scale(0.5); */
    }
    section.welcome .section-title, section.welcome .section-subtitle {
        text-wrap: nowrap;
    }
    .logo {
        width: 450px;
        height: 230px;
    }
    .button_big {
        margin: 39px 0;
        font-size: 16px;
        height: 75px;
    }
    .donators {
        max-width: 350px;
        gap: 3px;
        padding: 17px 12px;
        padding-bottom: 24px;
        border-radius: 8px;
    }
    .donators__row {
        font-size: 9.75px;
        padding: 6px;
        padding-right: 13px;
    }
    .dontators__row-block {
        gap: 13px;
    }
    .donators__row-num {
        font-size: 14px;
        width: 26px;
        height: 26px;
    }
    .donators__row-proffesion {
        max-width: 113px;
    }
    .donators__title {
        max-width: 180px;
        font-size: 9px;
    }
    .donators__title span {
        margin-bottom: 6.5px;
    }

    .section-subtitle {
        font-size: 25px;
    }
    .section-title {
        font-size: 35px;
    }
    .section-desc {
        max-width: 430px;
    }
    .features-swiper-wrap {
        padding-top: 39px;
    }
    .feature-card, .feature-img, .swiper-slide .feature-img::after, .feature-img-border  {
        border-radius: 20px;
    }
    .border-dot.top, .border-dot.bottom {
        width: 33.8px;
        height: 5.8;
    }
    .border-dot.right, .border-dot.left {
        width: 2.6px;
        height: 2.6px;
    }
    .feature-title {
        font-size: 15.6px;
        padding-bottom: 13px;
    }
    .feature-desc {
        font-size: 10px;
    }
    .feature-swiper-nav {
        padding-top: 29.25px;
        padding-bottom: 6.5px;
        width: max-content;
        margin: 0 auto;
        background-size: 65% 65%;
    }
    .swiper-button-prev, .swiper-button-next {
        width: 48.75px;
        height: 26.65px;
    }
    .swiper-pagination {
        gap: 29.25px;
        height: 71.5px;
        padding: 6.5px;
    }
    .swiper-pagination-bullet {
        width: 59.8px;
        height: 59.8px;
        filter: drop-shadow(0 0 2.65px #5f5f5f);
        box-shadow: 0 0 0 5.85px #5f5f5f73;
    }
    .swiper-pagination-bullet-active {
        width: 71.5px;
        height: 71.5px;
    }

    section.rating .container {
        max-width: 910px;
    }
    .rating__table {
        padding-top: 40px;
        gap: 8px;
    }
    .tr {
        padding: 9px 13px;
        border-radius: 24px;
    }
    .tr.th {
        padding: 10.4px 13px;
    }
    .td {
        font-size: 11px;
    }
    .tr.th .td {
        font-size: 11px;
    }
    .tr .td:first-child {
        max-width: 148px;
    }
    .green .td, .violet .td, .pink .td {
        font-size: 11px;
    }
    .green .td {
        text-shadow: 0 0 6.5px rgba(255, 230, 152, 0.6);
    }
    .place {
        padding: 9px 17px;
        font-size: 10.4px;
        border-radius: 15.6px;
    }
    .place span {
        font-size: 13px;
    }
    .tr .td:nth-child(2) {
        max-width: 149.5px;
        margin-right: 58.5px;
    }
    .king {
        gap: 6.5px;
    }
    .king img {
        width: 17.5px;
        height: 14.3px;
    }
    .tr .td:nth-child(3) {
        max-width: 94.25px;
        margin-right: 104px;
    }
    .tr .td:nth-child(4) {
        max-width: 68.5px;
        margin-right: 91px;
    }

    section.schedule .container {
        max-width: 923px;
    }
    .stages {
        padding-top: 58.5px;
    }
    .stage {
        max-width: 162.5px;
    }
    .stage-icon {
        width: 57px;
        height: 57px;
        filter: drop-shadow(0 0 13px rgb(0, 0, 1));
    }
    .stage-icon img {
        filter: drop-shadow(0 0 5px rgb(170, 165, 113));
        scale: 0.65;
    }
    .stage-name {
        font-size: 10px;
        padding-top: 10px;
    }
    .stage-date {
        font-size: 9px;
    }
    .stage:not(:last-child)::after {
        max-width: 115px;
        height: 10px;
        left: 85%;
    }
    .stages-info {
        margin-top: 65px;
        padding: 13px;
    }
    .stage-info-date {
        font-size: 12px;
    }
    .stage-info-name {
        font-size: 20px;
        padding-top: 6.5px;
    }
    .stage-info-desc {
        font-size: 12px;
        padding-top: 9px;
        max-width: 410px;
    }

    section.prize .section-desc {
        max-width: 345px;
        padding-top: 13px;
    }
    .prize-block {
        max-width: 331.5px;
        margin-top: 32.5px;
        margin-bottom: 39px;
    }
    .prize-amount {
        font-size: 24px;
    }
    .prize-amount span {
        font-size: 30px;
    }
    .button {
        font-size: 13px;
        padding: 6.5px 19.5px;
        height: 61px;
    }
    .button span {
        padding-top: 2.275px;
        text-shadow: 0 0 5.2px rgba(1, 32, 33, 0.2);
    }

    .links {
        padding-top: 48px;
        gap: 142px;
    }
    .link-icon {
        width: 84px;
        height: 84px;
        padding: 6.5px;
        margin-bottom: 16.25px;
    }
    .link-name {
        font-size: 15px;
        margin-bottom: 9px;
    }
    .link-desc {
        font-size: 8px;
    }

    section.voting {
        padding-top: 65px;
        padding-bottom: 52px;
    }
    section.voting .section-desc {
        max-width: 345px;
        padding-top: 13px;
    }
    .items {
        padding-top: 17px;
        padding-bottom: 23px;
        gap: 6.5px;
    }
    .item {
        width: 65px;
        height: 65px;
    }
    .item-image {
        width: 19.5px;
        height: 19.5px;
        filter: drop-shadow(0 0 4.55px rgba(255, 85, 85, 1));
    }
    .item-tooltip {
        border-radius: 4px;
        font-size: 8.5px;
        min-width: 113px;
        max-width: 169px;
    }
    .tooltip-title {
        font-size: 8.5px;
        padding: 5.85px 6.5px;
        gap: 4px;
    }
    .tooltip-title span {
        font-size: 8.5px;
    }
    .tooltip-desc {
        font-size: 7.5px;
        padding: 8.5px 6.5px;
    }

    footer::after {
        height: 4.55px;
        top: 2px;
    }
    .footer__container {
        padding: 70px 13px;
        padding-top: 76.5px;
        max-width: 910px;
    }
    .footer__logo {
        margin-bottom: 19.5px;
        width: 136.5px;
    }
    .footer__copyright {
        font-size: 8.5px;
        margin-bottom: 10px;
    }
    .footer-socials {
        gap: 18px;
    }
    .socials-link {
        font-size: 7px;
    }
    .watermark {
        margin-top: 19.5px;
        gap: 5.85px;
        font-size: 7.8px;
    }
    .watermark-logo {
        width: 24px;
    }
    .watermark-developed {
        margin-bottom: 2px;
    }
    .footer-cols {
        gap: 90px;
    }
    .footer-col {
        gap: 17px;
    }
    .footer-col-name {
        margin-bottom: 6.5px;
        font-size: 15px;
    }
    .footer-col-link {
        font-size: 8.5px;
    }

}

@media(max-width: 900px) {
    header {
        margin-top: 0;
    }
    .header__container, .header__container.header--scroll {
        width: 100%;
        background: rgba(231, 227, 229, 0.7);
        backdrop-filter: blur(8px);
        border-radius: 0 0 20px 20px;
    }
    .header__logo {
        z-index: 1002;
    }
    .header__nav, .servers__list.small, .header__container .btn {
        display: none;
    }
    .burger {
        display: block;
        position: relative;
    }
    .menu__list {
        display: flex;
        flex-direction: column;
        gap: 0px;
        width: 100%;
        text-align: center;
        justify-content: center;
    }
    .menu__list li {
        text-align: center;
        font-size: 14px;
        width: 100%;
        margin-left: 25px;
    }
    .menu {
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        max-width: 100%;
        height: 100%;

        padding: 60px 0;
        transform: translateY(-100%);
        transition: all .5s;
        display: block;
    }
    .menu.active {
        transform: translateY(0);
        visibility: visible;
        background-color: rgba(231, 227, 229, 0.95);
    }
    .menu__item a {
        color: #141414;
        font-size: 14px;
        width: calc(100% - 25px);
        height: 100%;
        display: flex;
        padding: 15px 0;
        border-top: 1px solid #14141415;
    }
    .menu__list .menu__item:last-child {
        border-top: none;
        border-bottom: 1px solid #14141415;
    }
    .no-scroll {
        overflow: hidden;
    }
    .header__scroll {
        top: 10px;
    }
    .header__scroll .menu {
        top: -10px;
        padding: 70px 0;
    }
    .menu__item-special {
        padding-top: 20px;
        display: flex;
        min-width: 0;
        justify-content: center;
        align-items: center;
    }
    .menu__item-special .servers__list-container {
        opacity: 1;
        visibility: visible;
        position: relative;
        transform: translateX(0%);
        left: 0;
        background: rgba(255, 244, 249, 0.83);
    }
    .menu__item-special .btn {
        display: flex;
        height: 55px;
        font-size: 14px;
    }

    section:first-child {
        padding-top: 61.5px;
    }
    section.welcome {
        background-position-x: 75%;
    }
    section.welcome .container {
        padding-left: 0;
        transform: unset;
    }
    .logo {
        width: 315px;
        height: 160px;
        margin-bottom: 20px;
    }
    @keyframes breatheGlow {
        0% {
            filter:
            drop-shadow(0 0 18px rgba(255, 113, 189, 0.65))
            drop-shadow(0 0 36px rgba(255, 210, 235, 0.55));
        }
        50% {
            filter:
            drop-shadow(0 0 42px rgb(255, 81, 171))
            drop-shadow(0 0 80px rgba(255, 255, 255, 1));
        }
        100% {
            filter:
            drop-shadow(0 0 18px rgba(255, 113, 189, 0.65))
            drop-shadow(0 0 36px rgba(255, 210, 235, 0.55));
        }
    }
    .section-subtitle {
        font-size: 14px;
    }
    .section-title {
        font-size: 20px;
    }

    .feature-card {
        transform: scale(0.9);
    }
    .swiper-button-prev, .swiper-button-next {
        width: 24.375px;
        height: 13.325px;
    }
    .swiper-pagination {
        gap: 14.5px;
        height: 35.75px;
        padding: 3.25px;
    }
    .swiper-pagination-bullet {
        width: 29.9px;
        height: 29.9px;
        filter: drop-shadow(0 0 2.32px #5f5f5f);
        box-shadow: 0 0 0 2.825px #5f5f5f73;
    }
    .swiper-pagination-bullet-active {
        width: 35.75px;
        height: 35.75px;
    }
    .swiper-pagination-bullet img {
        transform: scale(0.5)
    }

    .rating__table-wrap {
        display: flex;
        justify-content: center;
        width: 100%;
        overflow: scroll;
    }
    .rating__table {
        padding-top: 28px;
        gap: 5.6px;
        width: 637px;
    }
    .tr {
        padding: 6.3px 9.1px;
        border-radius: 16.8px;
    }
    .tr.th {
        padding: 12.88px 9.1px;
    }
    .td {
        font-size: 7.7px;
    }
    .tr.th .td {
        font-size: 7.7px;
    }
    .tr .td:first-child {
        max-width: 103.6px;
    }
    .green .td, .violet .td, .pink .td {
        font-size: 7.7px;
    }
    .green .td {
        text-shadow: 0 0 4.55px rgba(255, 230, 152, 0.6);
    }
    .place {
        padding: 6.3px 11.9px;
        font-size: 7.28px;
        border-radius: 10.92px;
    }
    .place span {
        font-size: 9.1px;
    }
    .tr .td:nth-child(2) {
        max-width: 104.3px;
        margin-right: 40.95px;
    }
    .king {
        gap: 4.55px;
    }
    .king img {
        width: 12.25px;
        height: 10.01px;
    }
    .tr .td:nth-child(3) {
        max-width: 65.98px;
        margin-right: 72.8px;
    }
    .tr .td:nth-child(4) {
        max-width: 47.95px;
        margin-right: 63.7px;
    }

    .stages {
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        gap: 10px 15px;
    }
    .stage:not(:last-child)::after {
        display: none;
    }

    .stages-info {
        aspect-ratio: unset;
        background-size: 100% 100%;
        padding: 30px 15px;
    }

    section.prize .container {
        padding-right: unset;
    }
    
    .links {
        gap: 40px;
    }
    .link-icon {
        width: 70px;
        height: 70px;
    }
    .link-name {
        font-size: 12px;
        margin-bottom: 5px;
    }

    section.voting {
        background-position-x: 70%;
    }
    section.voting .container {
        padding-left: 0;
    }
    .items {
        flex-wrap: wrap;
    }
    .item-tooltip {
        width: fit-content;
    }

    .footer__container {
        padding: 45px 12px;
    }    
}

@media(max-width: 660px) {
    .rating__table-wrap {
        display: block;
    }
}

@media(max-width: 700px) {
    .stage {
        flex: 0 0 30%;
    }
}
@media(max-width: 550px) {
    .stage {
        flex: 0 0 37%;
    }
}

@media(max-width: 550px) {
    .stage {
        flex: 0 0 37%;
    }
}

@media(max-width: 415px) {
    .items {
        max-width: 250px;
    }
}

@media(max-width: 780px) {
    .footer__container {
        flex-direction: column;
        gap: 30px;
    }
    .footer-main {
        align-items: center;
    }
    .footer-cols {
        flex-direction: column;
        gap: 35px;
    }
    .footer-col {
        align-items: center;
    }
}


/* SCROLL REVEAL — ОБЩАЯ АНИМАЦИЯ */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity .8s cubic-bezier(.2, .65, .25, 1),
                transform .8s cubic-bezier(.2, .65, .25, 1);
    will-change: opacity, transform;
}

.reveal_visible {
    opacity: 1;
    transform: translateY(0);
}

/* СТУПЕНЧАТАЯ АНИМАЦИЯ ДЛЯ СПИСКОВ */
.reveal_stagger > * {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity .7s cubic-bezier(.2, .65, .25, 1),
                transform .7s cubic-bezier(.2, .65, .25, 1);
}

.reveal_stagger_visible > * {
    opacity: 1;
    transform: translateY(0);
}

/* Индивидуальные задержки */
.reveal_stagger > *:nth-child(1)  { transition-delay: .00s; }
.reveal_stagger > *:nth-child(2)  { transition-delay: .12s; }
.reveal_stagger > *:nth-child(3)  { transition-delay: .24s; }
.reveal_stagger > *:nth-child(4)  { transition-delay: .36s; }
.reveal_stagger > *:nth-child(5)  { transition-delay: .48s; }
.reveal_stagger > *:nth-child(6)  { transition-delay: .60s; }
.reveal_stagger > *:nth-child(7)  { transition-delay: .72s; }
.reveal_stagger > *:nth-child(8)  { transition-delay: .84s; }
.reveal_stagger > *:nth-child(9)  { transition-delay: .96s; }
.reveal_stagger > *:nth-child(10) { transition-delay: 1.08s; }
.reveal_stagger > *:nth-child(11) { transition-delay: 1.20s; }
.reveal_stagger > *:nth-child(12) { transition-delay: 1.32s; }
.reveal_stagger > *:nth-child(13) { transition-delay: 1.44s; }
.reveal_stagger > *:nth-child(14) { transition-delay: 1.56s; }
.reveal_stagger > *:nth-child(15) { transition-delay: 1.68s; }
.reveal_stagger > *:nth-child(16) { transition-delay: 1.80s; }
.reveal_stagger > *:nth-child(17) { transition-delay: 1.92s; }
.reveal_stagger > *:nth-child(18) { transition-delay: 2.04s; }
.reveal_stagger > *:nth-child(19) { transition-delay: 2.16s; }
.reveal_stagger > *:nth-child(20) { transition-delay: 2.28s; }

@media (max-width: 800px) {
    .project-card:nth-child(odd):last-child {
       display: none;
    }
}
@media (min-width: 801px) {
    .project-card:nth-child(3n - 1):last-child,
    .project-card:nth-child(3n - 2):nth-last-child(2),
    .project-card:nth-child(3n - 2):last-child {
       display: none;
    }
}