@font-face {
    font-family: 'Intro';
    src: url(../fonts/Intro-Regular.ttf) format('truetype');
    font-style: normal;
    font-weight: normal;
}
@font-face {
    font-family: 'Intro';
    src: url(../fonts/Intro-Bold.ttf) format('truetype');
    font-style: normal;
    font-weight: bold;
}
@font-face {
    font-family: 'AmapolaModern';
    src: url(../fonts/AmapolaModern.ttf) format('truetype');
    font-style: normal;
    font-weight: normal;
}
@font-face {
    font-family: 'AlbertusBold';
    src: url(../fonts/Albertus-Bold.ttf) format('truetype');
    font-style: normal;
    font-weight: normal;
}
* {
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: "Intro", sans-serif;
    font-weight: normal;
    font-size: 17px;
    line-height: 1.2;
    color: #fff;
    background-color: #2a190d;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin: 0;
    text-rendering: optimizeSpeed;
}
.body-wrapper {
    overflow: hidden;
    margin: 0;
}
a {
    text-decoration: none;
    transition: all .2s ease-out;
    color: #fff;
}
img {
    max-width: 100%;
    display: block;
}
header {
    position: fixed;
    width: 100%;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 36px;
    padding-top: 10px;
    z-index: 3;
}
.header__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 84px;
    background: rgba(0, 0, 0, 0.7); 
    border-radius: 39px;
    font-size: 18px;
    padding: 10px 54px;
    font-weight: bold;
    font-size: 15px;
    line-height: 1;
    text-transform: uppercase;
}
.header__left {
    display: flex;
    gap: 50px;
    align-items: center;
}
.nav-el {
    padding: 10px 0;
    text-align: center;
}
.nav-el.active {
    color: #ffe775;
}
.nav-el:not(.active):hover {
    color: #ffebbb;
}
.header__right {
    display: flex;
    align-items: center;
    gap: 50px;
}
.languages {
    display: flex;
    gap: 14px;
}
.language-item {
    opacity: 0.5;
}
.language-item.active {
    opacity: 1;
}
.language-item:hover {
    opacity: 1;
}
.account {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 205px;
    height: 50px;
    background: url(../img/header-btn.png) center no-repeat;
    background-size: contain;
    font-size: 14px;
}
.account:hover {
    filter: brightness(120%);
}
section {
    display: flex;
    justify-content: center;
    position: relative;
}
section::after {
    content: "";
    width: 100%;
    height: 31px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    transform: translateY(-50%);
    background: url(../img/line.png) center center no-repeat;
    background-size: auto 100%;
    pointer-events: none;
}
.container {
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* WELCOME */
section.welcome {
    background: url(../img/sections/welcome-bg.jpg) center no-repeat;
    background-size: cover;
    background-position-y: 40px;
    margin-top: -94px;
    padding-top: 94px;
}
section.welcome::after {
    display: none;
}
section.welcome .container {
    padding-top: 420px;
    padding-bottom: 114px;
    text-align: center;
    gap: 40px;
}
.welcome__title {
    font-family: "AmapolaModern";
    font-size: 32px;
    color: #ffe083;
    text-transform: uppercase;
    line-height: 50px;
    text-shadow: 0 0 27px rgba(0, 0, 0, 0.78);
}
.subtitle {
    max-width: 680px;
    font-size: 18px;
}
.welcome__subtitle {
    line-height: 30px;
}
.welcome__btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 358px;
    height: 98px;
    background: url(../img/welcome-btn.png) center no-repeat;
    background-size: contain;
    font-weight: bold;
    font-size: 23px;
    color: #fffde1;
    text-transform: uppercase;
}
.welcome__btn:hover {
    filter: brightness(120%);
}

/* FEATURES */
section.features {
    background: url(../img/sections/features-bg.jpg) center no-repeat;
    background-size: cover;
}
section.features .container {
    padding-top: 140px;
    padding-bottom: 160px;
}
.title {
    font-family: "AmapolaModern";
    color: #ffefbe;
    font-size: 36px;
    text-transform: uppercase;
    text-shadow: 0 0 13px rgba(255, 134, 15, 0.69);
    line-height: 1;
}
.title {
    padding-top: 20px;
}
.features__list {
    padding-top: 46px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 46px;
}
.features__list-item {
    display: flex;
    gap: 15px;
    flex-direction: column;
    width: 312px;
    height: 402px;
    justify-content: flex-end;
    padding: 35px;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 1;
    border-radius: 12px;

}
.features__list-item::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.89) 50%, rgba(255, 255, 255, 0) 100%),
                linear-gradient(to top, rgba(177, 54, 1, 0.8) 0%, rgba(255, 255, 255, 0) 70%);
    opacity: 0.89;
    z-index: -1;
    border-radius: 12px;
    transition: all .3s ease-in-out;
}
.features__list-item::after {
    content: "";
    position: absolute;
    width: 326px;
    height: 451px;
    bottom: -23px;
    left: -7px;
    z-index: 2;
    background: url(../img/feature-border.png) center no-repeat;
    background-size: contain;
    border-radius: 12px;
    transition: all .3s ease-in-out;
    overflow: hidden;
}
.feature-img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -2;
    overflow: hidden;
    border-radius: 12px;
}
.feature-img img {
    transition: all .35s ease-in-out;
    object-fit: cover;
}
.feature-name {
    font-family: "AmapolaModern";
    font-size: 15px;
    line-height: 26px;
    text-transform: uppercase;
    z-index: 3;
}
.feature-desc {
    color: #b5b5b5;
    font-size: 15px;
    line-height: 25px;
    z-index: 3;
}
.features__list-item:hover::before {
    opacity: 0.85;
    filter: brightness(140%);
}
.features__list-item:hover::after {
    filter: brightness(140%);
}
.features__list-item:hover .feature-img img {
    transform: scale(1.2);
}

/* RACE */
section.race {
    background: url(../img/sections/race-bg.jpg) center no-repeat;
    background-size: cover;
}
section.race .container {
    padding-top: 140px;
    padding-bottom: 163px;
}
.race__list {
    padding-top: 55px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 54px;
}
.race__list-item {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 426px;
    height: 586px;
    border: 12px;
    gap: 30px;
    padding: 50px;
}
.race-name {
    font-family: "AmapolaModern";
    font-size: 28px;
    text-transform: uppercase;
    line-height: 1;
    z-index: 3;
}
.race-desc {
    color: #b5b5b5;
    line-height: 28px;
    z-index: 3;
}
.race__list-item:nth-child(1) {
    background: url(../img/race-1-bg.png) center no-repeat;
    background-size: cover;
}
.race__list-item:nth-child(2) {
    background: url(../img/race-2-bg.png) center no-repeat;
    background-size: cover;
}
.race__list-item:nth-child(3) {
    background: url(../img/race-3-bg.png) center no-repeat;
    background-size: cover;
}
.race__list-item::after {
    content: "";
    position: absolute;
    width: 440px;
    height: 622px;
    bottom: -15px;
    left: -7px;
    z-index: 2;
    background: url(../img/race-1-border.png) center no-repeat;
    background-size: contain;
    border-radius: 12px;
}
.race__list-item:nth-child(2)::after {
    background: url(../img/race-2-border.png) center no-repeat;
    background-size: contain;
}
.race__list-item:nth-child(3)::after {
    background: url(../img/race-3-border.png) center no-repeat;
    background-size: contain;
}

/* DOWNLOAD */
section.download {
    background: url(../img/sections/download-bg.jpg) center no-repeat;
    background-size: cover;
}
section.download .container {
    padding-top: 140px;
    padding-bottom: 160px;
    width: 100%;
}
.download__steps {
    padding-top: 122px;
    display: flex;
    flex-direction: column;
    width: 100%;
    justify-content: center;
    align-items: center;
    gap: 60px;
}
.step {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-width: 1386px;
    width: 100%;
    min-height: 323px;
    padding-top: 76px;
    padding-bottom: 56px;
    background: url(../img/step-1-bg.png)center no-repeat;
    background-size: cover;
    border-radius: 12px;
    z-index: 1;
}
.second {
    background: url(../img/step-2-bg.png)center no-repeat;
    background-size: cover;
    min-height: 769px;
}
.third {
    background: url(../img/step-3-bg.png)center no-repeat;
    background-size: cover;
    min-height: 268px;
}
.first::after {
    content: "";
    position: absolute;
    width: 1400px;
    height: 353px;
    top: -15px;
    left: -7px;
    z-index: 2;
    background: url(../img/step-1-border.png) center no-repeat;
    background-size: contain;
    border-radius: 12px;
    z-index: -1;
}
.second::after {
    content: "";
    position: absolute;
    width: 1400px;
    height: 799px;
    top: -15px;
    left: -7px;
    z-index: 2;
    background: url(../img/step-2-border.png) center no-repeat;
    background-size: contain;
    border-radius: 12px;
    z-index: -1;
}
.third::after {
    content: "";
    position: absolute;
    width: 1400px;
    height: 298px;
    top: -15px;
    left: -7px;
    z-index: 2;
    background: url(../img/step-3-border.png) center no-repeat;
    background-size: contain;
    border-radius: 12px;
    z-index: -1;
}
.second {
    background: url(../img/step-2-bg.png)center no-repeat;
    background-size: cover;
}
.third {
    background: url(../img/step-3-bg.png)center no-repeat;
    background-size: cover;
}
.step-title {
    font-family: "AmapolaModern";
    font-size: 30px;
    line-height: 1;
    text-transform: uppercase;
    padding-bottom: 16px;
}
.step-subtitle {
    font-size: 15px;
    color: #b5b5b5;
    line-height: 1;
    padding-bottom: 27px;
}
.step-btn {
    margin-bottom: 24px;
}
.step-icon {
    position: absolute;
    top: -111px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}
.yel-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    font-size: 16px;
    line-height: 1;
    max-width: 298px;
    width: 100%;
    min-height: 65px;
    background: url(../img/yellow-btn.png) center no-repeat;
    background-size: cover;
    text-transform: uppercase;
}
.yel-btn:hover {
    filter: brightness(120%);
}
.step-subbtn {
    font-size: 15px;
    color: #b5b5b5;
    text-decoration: underline;
    text-underline-offset: 3px;
}
.step-subbtn:hover {
    filter: brightness(120%);
}
.step-download {
    position: relative;
    max-width: 752px;
    width: 100%;
    min-height: 264px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 12px;
    background: #000;
}
.step-download.d-1 {
    margin-bottom: 27px;
}
.step-download::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 14px;
    padding: 3px;
    background: linear-gradient(to bottom, #2e2315 0%, #483b27 100%);
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
    pointer-events: none;
}
.step-download_title {
    font-family: "AmapolaModern";
    font-size: 22px;
    text-transform: uppercase;
    line-height: 1;
}
.step-download_subtitle {
    font-size: 15px;
    line-height: 1;
    color: #b5b5b5;
    padding-bottom: 12px;
}
.step-download_options {
    display: grid;
    grid-template-columns: auto auto auto;
    grid-template-rows: auto auto;
    justify-content: center;
    align-items: center;
    gap: 16px;
}
.option {
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    line-height: 1;
    border-radius: 12px;
    background: url(../img/download-btn.png) center no-repeat;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 210px;
    height: 46px;
}
.option:hover {
    filter: brightness(130%);
}
.step-socials {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
}
.step-socials-item {
    width: 240px;
    height: 52px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 12px;
    background: url(../img/step-social-btn.png) center no-repeat;
    background-size: cover;
    font-weight: bold;
    font-size: 16px;
    text-transform: uppercase;
}
.step-socials-item:hover {
    filter:  brightness(120%);
}

/* GIFTS */
section.gifts {
    background: url(../img/sections/gifts-bg.jpg) center no-repeat;
    background-size: cover;
}
section.gifts .container {
    padding-top: 140px;
    padding-bottom: 150px;
    width: 100%;
    min-width: 0;
    max-width: 1240px;
}
.slider {
    padding-top: 65px;
    padding-bottom: 150px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 66px;
}
.slider .slick-arrow {
    font-size: 0;
    line-height: 0;
    background: none;
    outline: none;
    border: none;
    margin: 0;
    padding: 0;
    cursor: pointer;
    position: relative;
    z-index: 2;
    transition: opacity 0.3s ease-in-out;
}
.slider .slick-arrow:after {
    content: "";
    width: 82px;
    aspect-ratio: 1/1;
    display: block;
}
.slider .slick-arrow.slick-prev::after {
    background: url(../img/slider-arrow-left.png);
    background-size: 100% 100%;
}
.slider .slick-arrow.slick-next::after {
    background: url(../img/slider-arrow-right.png);
    background-size: 100% 100%;
}
.slider .slick-arrow.slick-disabled {
    opacity: 0.3;
}
.slider .slick-list {
    width: 100%;
    z-index: 1;
}
.slider--arrow .slick-list {
    width: calc(100% - 164px - 40px);
}
.gifts__slider {
    width: 100%;
    min-height: 413px;
}
.gifts__slider .slick-list {
    overflow: visible;
}
.gifts__slider .slick-track {
    display: flex;
    align-items: stretch;
}
.gifts__slider-item {
    height: auto;
    transform: scale(0.9);
    opacity: 0.5;
    transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
}
.gifts__slider-item.slick-active {
    transform: scale(1);
    opacity: 1;
}
.gifts__slider-item-content {
    min-height: 413px;
    position: relative;
    z-index: 1;
}
.gifts__slider-item-bg {
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 1;
    border-radius: 16px;
    overflow: hidden;
}
.gifts__slider-item-content::before {
    content: "";
    position: absolute;
    width: calc(100% + 12px);
    height: calc(100% + 22px);
    background: url(../img/slider-background.png) center no-repeat;
    background-size: contain;
    z-index: 3;
    top: -8px;
    left: -5px;
}
.gifts__slider-item-bg img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    z-index: 1;
    border-radius: 16px;
}
.gifts__slider-item-info {
    position: relative;
    z-index: 2;
    padding: 40px;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
    padding-top: 80px;
    z-index: 4;

}
.gifts__slider-title {
    font-family: "AmapolaModern";
    font-size: 30px;
    line-height: 1.2em;
    font-weight: 700;
    text-transform: uppercase;
}
.gifts__slider-desc {
    font-size: 17px;
    line-height: 30px;
    color: #b5b5b5;
    max-width: 780px;
    text-align: center;
}
.gifts__slider-item-info p {
    font-size: 20px;
    line-height: 1.5em;
}
.gifts__slider-item-info p:not(:first-child) {
    margin-top: 5px;
}
.gifts__slider-item-button {
    width: 100%;
    max-width: 280px;
    margin-top: 20px;
}


/* socials */
.socials {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.socials__list {
    padding-top: 68px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 52px;
    flex-wrap: wrap;
}
.socials-item {
    position: relative;
    width: 312px;
    height: 402px;
    border-radius: 12px;
    background: #000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px 10px;
    gap: 33px;
    z-index: 1;
}
.socials-item::before {
    content: "";
    width: 326px;
    height: 452px;
    position: absolute;
    background: url(../img/socials-border.png) center no-repeat;
    background-size: contain;
    top: -29px;
    left: -7px;
    z-index: -1;
}
.socials-name {
    font-family: "AmapolaModern";
    font-size: 26px;
    text-transform: uppercase;
    line-height: 1;
}
.socials-btn {
    max-width: 210px;
    width: 100%;
    min-height: 56px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-transform: uppercase;
    border-radius: 12px;
    background: url(../img/social-btn.png) center no-repeat;
    background-size: cover;
}
.socials-btn:hover {
    filter: brightness(150%);
}

/* FOOTER */
footer {
    background: url(../img/sections/footer-bg.jpg) center no-repeat;
    background-size: cover;
    position: relative;
}
footer::after {
    content: "";
    width: 100%;
    height: 10px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    transform: translateY(-50%);
    background: url(../img/line-footer.jpg) center center no-repeat;
    background-size: auto 100%;
    pointer-events: none;
}
.footer__container {
    padding: 66px 260px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #8c8c7c;
    line-height: 1;
}
.footer__left {
    font-size: 13px;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: last baseline;
}
.copyright {
    padding-top: 22px;
    padding-bottom: 16px;
}
.terms {
    display: flex;
    gap: 25px;
    justify-content: center;
    align-items: center;
}
.agreement {
    color: #8c8c7c;
    text-decoration: underline;
    text-underline-offset: 2px;
    text-decoration-skip-ink: none;
}
.agreement:hover {
    filter: brightness(140%);
}
.watermark {
    display: flex;
    margin-top: 32px;
}
.watermark:hover {
    filter: brightness(150%);
}
.footer__right {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    font-weight: bold;
    text-transform: uppercase;
    gap: 120px;
}
.footer__class {
    display: flex;
    flex-direction: column;
    justify-content: start;
    gap: 27px;
}
.footer__class-name {
    font-family: "AlbertusBold";
    font-size: 18px;
    color: #fff;
    padding-bottom: 7px;
}
.footer__class-item {
    color: #8c8c7c;
}
.footer__class-item:hover {
    filter: brightness(140%);
}

/* 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: #ffe083;
    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: 1560px) {
    .header__left, .header__right {
        gap: 30px;
    }
    .slider .slick-arrow::after {
        width: 60px;
    }
    .footer__container {
        padding: 66px 66px;
    }
}

@media(max-width: 1420px) {
    section {
        padding: 120px 20px;
    }
    section .container {
        padding: 0;
    }
    .languages {
        gap: 12px;
    }
    .nav-el, .account {
        display: none;
    }
    .burger {
        display: block;
        position: relative;
    }
    .menu__list {
        display: flex;
        flex-direction: column;
        gap: 20px;
        width: 100%;
        text-align: center;
        justify-content: center;
    }
    .menu__list li {
        padding: 4px 0;
        text-transform: uppercase;
        text-align: center;
        font-size: 16px;
    }
    .menu {
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        max-width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.9);
        padding: 100px 50px;
        transform: translateX(100%);
        transition: all .5s;
        display: block;
    }
    .menu.active {
        transform: translateX(0);
        visibility: visible;
    }
    .menu__item a {
        font-family: serif;
        color: #ffe083;
        font-weight: bold;
        font-size: 20px;
        font-family: "AmapolaModern";
    }
    .no-scroll {
        overflow: hidden;
    }

    
    section.welcome .container, section.features .container, section.race .container, section.download .container, section.gifts .container {
        padding: 0;
    }
    section.welcome .container {
        padding-top: 244px;
    }
    .welcome__title {
        text-shadow: 0 0 27px rgb(0, 0, 0);
    }
    .welcome__title, .title {
        font-size: 30px;   
    }
    .subtitle {
        font-size: 16px;
    }

    .features__list {
        display: grid;
        grid-template-columns: auto auto;
    }
    
    .race__list {
        flex-wrap: wrap;
    }
    .race__list-item {
        width: 360px;
        height: 495px;
    }
    .race__list-item::after {
        width: 371px;
        height: 525px;
        bottom: -12px;
        left: -6px;
    }
    .race-img {
        width: 200px;
    }
    .race-name {
        font-size: 20px;
    }
    .race-desc {
        font-size: 15px;
        line-height: 25px;
    }
    
    .download__steps {

    }
    .step {
        padding-left: 30px;
        padding-right: 30px;
        border: 3px solid rgb(219, 186, 145);
    }
    .step::after {
        display: none;
        width: 100%;
        background-size: cover;
        background-repeat: round;
        left: 0;
    }
    .step-title {
        font-size: 25px;
    }
    .step-subtitle, .step-download_subtitle {
        font-size: 13px;
    }
    .step-download_title {
        font-size: 20px;
    }
    .step-download_subtitle {
        font-size: 13px;
    }
    .step-subbtn {
        font-size: 13px;
    }
    .step-socials-item {
        width: 200px;
    }

    /* section.gifts .container {
        max-width: 800px;
    } */
    .slider {
        column-gap: 0px;
    }
    .gifts__slider {
        min-height: 360px;
        padding-left: 30px;
        padding-right: 30px;
    }
    .gifts__slider-item {
        min-height: 360px;
    }
    .gifts__slider-item-content {
        min-height: 360px;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .gifts__slider-item-content::before {
        background-size: cover;
        background-repeat: round;
    }
    .gifts__slider-item-info {
        padding-top: 60px;
        gap: 20px;
    }
    .gifts__slider-title {
        font-size: 25px;
    }
    .gifts__slider-desc {
        font-size: 15px;
    }
    .slider .slick-arrow::after {
        width: 40px; 
    }

    .footer__container {
        flex-direction: column;
        gap: 66px;
    }
    .footer__left {
        align-items: center;
    }   
}

@media(max-width: 800px) {
    header {
        padding: 0;
    }
    .header__container {
        padding: 0 10px;
        border-radius: 0;
    }
    .language-item {
        width: 30px;
    }

    section {
        padding: 66px 10px;
    }
    section::after {
        height: 20px;
    }
    section.welcome .container {
        padding-top: 200px;
    }
    .welcome__title, .title {
        font-size: 25px;
        line-height: 32px;
        text-align: center;
    }
    .welcome__title {
        text-shadow: 0 0 27px rgb(0, 0, 0);
    }
    .welcome__btn {
        width: 300px;
        font-size: 18px;
    }
    .subtitle {
        font-size: 14px;
        text-align: center;
    }

    .features__list {
        display: flex;
        flex-wrap: wrap;
        gap: 30px;
    }
    .features__list-item {
        width: 280px;
        height: 360px;
        padding: 20px 10px;
        border: 2px solid rgb(115 115 108);
    }
    .features__list-item::after {
        display: none;
    }
    
    .race__list {
        gap: 30px;
        padding-top: 40px;
    }
    .race__list-item {
        width: 280px;
        height: 400px;
        border-radius: 18px;
        padding: 20px 10px;
        gap: 20px;
        border: 2px solid rgb(191 166 128);
    }
    .race__list-item::after {
        display: none;
    }
    .race-name {
        font-size: 16px;
    }
    .race-desc {
        font-size: 13px;
        line-height: 24px;
    }
    .race-img {
        width: 170px;
    }
    
    .download__steps {
        gap: 30px;
        padding-top: 80px;
    }
    .step {
        text-align: center;
        padding: 40px 10px;
        padding-top: 60px;
        border: 3px solid rgb(219, 186, 145);
        min-height: 250px;
    }
    .step-icon {
        pointer-events: none;
        width: 100px;
        top: -76px;
    }
    .step-title {
        font-size: 18px;
    }
    .step-subtitle {
        font-size: 11px;
    }
    .yel-btn {
        font-size: 13px;
        max-width: 250px;
        min-height: 55px;
        background-size: contain;
    }
    .step-download {
        padding: 20px 10px;
    }
    .step-download_title {
        font-size: 16px;
    }
    .step-download_subtitle {
        font-size: 11px;
        padding-bottom: 5px;
    }
    .step-download_options {
        grid-template-columns: auto auto;
        grid-template-rows: auto auto auto;
    }
    .option {
        width: 136px;
        font-size: 14px;
    }
    .step-socials {
        flex-wrap: wrap;
        /* gap: 20px; */
    }
    .step-socials-item {
        width: 160px;
        font-size: 14px;
    }

    .gifts__slider {
        min-height: 280px;
        padding: 30px 20px;
        padding-bottom: 60px;
    }
    .gifts__slider-item {
        min-height: 280px;
    }
    .gifts__slider-item-content {
        min-height: 280px;
    }
    .gifts__slider-item-content::before {
        background-size: cover;
        background-repeat: round;
    }
    .gifts__slider-item-info {
        height: 100%;
        padding: 20px;
        padding-top: 23px;
        gap: 20px;
        text-align: center;
    }
    .gifts__slider-title {
        font-size: 18px;
    }
    .gifts__slider-desc {
        font-size: 13px;
        line-height: 23px;
    }
    .slider .slick-arrow::after {
        width: 30px;
    }
    .gifts__slider-item-content::before {
        display: none;
    }
    .gifts__slider-item-content {
        border: 2px solid rgb(219, 186, 145);
        border-radius: 12px;
    }
    .socials__list {
        padding-top: 40px;
        gap: 30px;
    }
    .socials-item {
        width: 220px;
        height: auto;
        gap: 25px;
        border: 1px solid rgb(113 113 110);
    }
    .socials-item::before {
        display: none;
    }
    .social-img {
        width: 100px;
    }
    .socials-name {
        font-size: 20px;
    }
    .socials-btn {
        max-width: 160px;
        font-size: 14px;
        background-size: contain;
    }

    .footer__container {
        padding: 33px 10px;
    }
    .copyright {
        padding-top: 12px;
        padding-bottom: 12px;
        font-size: 11px;
    }
    .terms {
        flex-wrap: wrap;
        gap: 10px;
    }
    .agreement {
        font-size: 11px;
    }
    .watermark {
        margin-top: 20px;
    }
    .footer__right {
        justify-content: center;
        gap: 30px 60px;
        flex-wrap: wrap;
        padding-left: 30px;
        padding-right: 30px;
        flex-wrap: wrap;
    }
    .footer__class {
        gap: 17px;
        align-items: center;
    }
    .footer__class-name {
        font-size: 14px;
    }
    .footer__class-item {
        font-size: 11px;
    }
}

@media(min-width:1921px) {
    section.welcome {
        background: url(../img/sections/welcome-bg_wide.jpg) center no-repeat;
        background-position-y: 40px;
        background-size: cover;
    }
}

section.privacy {
    padding-top: 200px;
    background: url(../img/sections/download-bg.jpg) center no-repeat;
    background-size: cover;
    line-height: 1.2;
    color: #b5b5b5;
}
section.privacy a {
    filter: brightness(140%);
    text-decoration: underline;
}
section.privacy .container {
    text-align: left;
    align-items: inherit;
    padding: 90px;
    padding-top: 0;
}
section.privacy::after {
    content: none;
}
.privacy__title {
    font-family: "AmapolaModern";
    color: #ffefbe;
    font-size: 36px;
    text-transform: uppercase;
    text-shadow: 0 0 13px rgba(255, 134, 15, 0.69);
    line-height: 1.4;
    padding-bottom: 60px;
    text-align: center;
}
.wp-block-heading {
    color: #ffe083;
    font-size: 26px;
    line-height: 1;
    text-transform: uppercase;
    margin: 10px 0;
    margin-top: 30px;
    line-height: 1.2;
}
section.privacy .container p {
    margin: 7px 0;
}
section.privacy .container .wp-block-heading:not(:first-child) {
  padding-top: 10px;
}
@media(max-width: 800px) {
    section.privacy {
        padding-left: 10px;
        padding-right: 10px;
        padding-top: 124px;
        padding-bottom: 0;
    }
    .privacy__title {
        font-size: 22px;
        padding-bottom: 0;
    }
    .wp-block-heading {
        font-size: 18px;
    }
    section.privacy .container p, section.privacy .container li {
        font-size: 14px;
    }
}