@font-face {
    font-family: 'Inter';
    src: url(../fonts/Inter-Medium.otf) format('truetype');
    font-style: normal;
    font-weight: 500;
}
@font-face {
    font-family: 'Inter';
    src: url(../fonts/Inter-SemiBold.otf) format('truetype');
    font-style: normal;
    font-weight: 600;
}
@font-face {
    font-family: 'Inter';
    src: url(../fonts/Inter-Bold.otf) format('truetype');
    font-style: normal;
    font-weight: bold;
}
@font-face {
    font-family: 'Inter';
    src: url(../fonts/Inter-ExtraBold.otf) format('truetype');
    font-style: normal;
    font-weight: 800;
}
@font-face {
    font-family: 'AlbertusBold';
    src: url(../fonts/AlbertusBold.woff2) format('woff2'),
         url(../fonts/AlbertusBold.woff) format('woff');
    font-style: normal;
    font-weight: normal;
}
@font-face {
    font-family: 'BebasNeueCyrillic';
    src: url(../fonts/bebasneuecyrillic.ttf) format('truetype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}
* {
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: "Inter", sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.6;
    color: #fff;
    background-color: #031533;
    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 {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    z-index: 1001;
}
.header__container {
    height: 88px;
    padding: 16px 66px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    background: #030303; 
    font-size: 16px;
    font-weight: 600;
    font-size: 15px;
    line-height: 1;
}
.header__left {
    display: flex;
    gap: 55px;
    align-items: center;
}
.logo {
    transition: all .2s ease-in-out;
}
.logo:hover {
    
    transform: scale(1.12);
}
.nav-el {
    text-align: center;
}
.nav-el:hover {
    color: #fcb207;
}
.header__right {
    display: flex;
    align-items: center;
    gap: 34px;
}
.header__right .nav-el {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
}
.header__right .nav-el {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    color: #fff;
    transition: color .2s ease-in-out;
}
.nav-el svg {
    fill: currentColor;
    transition: fill .2s ease-in-out;
    width: 24px;
    height: 18px;
}
.nav-el:hover {
    color: #fcb207;
}
.header__right-btn {
    width: 260px;
    height: 56px;
    border-radius: 28px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 20px;
    background: linear-gradient(to right, #f3c200, #ff9600);;
    background-size: cover;
    font-family: "AlbertusBold", sans-serif;
    font-size: 18px;
    text-transform: uppercase;
    color: #18140a;
    transition: all .2s ease-in-out;
    will-change: transform, scale;
    font-weight: 400;
}
.header__right-btn:hover {
    filter: brightness(1.2);
    transform: scale(1.02) rotate(2deg);
}
.swap-lang-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}
.swap-lang {
    position: relative;
}
.swap-lang-item {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 9px;
}
.swap-lang-item:hover {
    filter: brightness(2);
}
.lang-list {
    position: absolute;
    top: 100%;
    opacity: 0;
    visibility: hidden;
    display: flex;
    flex-direction: column;
    justify-items: center;
    align-items: center;
    gap: 0px;
    transition: all .3s ease-in-out;
    z-index: 3;
    background: #000;
    border-radius: 12px;
    padding-left: 10px;
    margin-left: -10px;
    padding-right: 10px;
    margin-right: -10px;
    padding-bottom: 5px;
    margin-bottom: -5px;
}
.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: 8px;
    height: 5px;
    transition: all .3s ease-in-out;
}
.swap-lang-wrap:hover .swap-lang-arrow {
    transform: scale(1, -1);
}
section {
    display: flex;
    justify-content: center;
    position: relative;
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
}
section::after {
    content: "";
    width: 100%;
    height: 52px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    transform: translateY(-40%);
    background: url(../img/sections/section-divider.png) center center no-repeat;
    background-size: auto 100%;
    pointer-events: none;
}
.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* WELCOME */
section.welcome {
    background-image: url(../img/sections/welcome-bg.jpg);
    position: relative;
    overflow: hidden;
}
section.welcome::after {
    display: none;
}
.welcome__bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}
section.welcome > *:not(.welcome__bg-video) {
    z-index: 1;
}
section.welcome .container {
    padding-top: 276px;
    padding-bottom: 245px;
    text-align: center;
}
.welcome__subtitle {
    font-family: "AlbertusBold", sans-serif;
    font-size: 18px;
    color: #e8daa7;
    text-transform: uppercase;
    padding-bottom: 16px;
}
.welcome__title {
    font-family: "AlbertusBold", sans-serif;
    font-size: 54px;
    text-transform: uppercase;
    /* filter: drop-shadow(0 0 10px rgba(0, 0, 0, 1)); */
    line-height: 1.2;
    background: linear-gradient(to top, #fcb207, #ffeb45);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    max-width: 1028px;
}
.welcome__text-wtimer {
    width: auto;
    /* height: 44px; */
    /* display: flex; */
    justify-content: center;
    align-items: center;
    background: linear-gradient(to top, #9f2fce, #7505a4);
    clip-path: polygon(2% 0%, 100% 0%, 98% 100%, 0% 100%);
    background-size: cover;
    margin-top: 30px;
    margin-bottom: 52px;
    text-transform: uppercase;
    font-variant-numeric: tabular-nums;
    padding: 10px 20px;
}
.welcome__text-wtimer a {
    text-decoration: underline;
}
.welcome__text-wtimer a:hover {
    color: #3cff00;
}
.yellow-btn-large {
    width: 402px;
    height: 80px;
    border-radius: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 20px;
    background: url(../img/btn-yellow-large.png) center no-repeat;
    background-size: cover;
    font-family: "AlbertusBold", sans-serif;
    font-size: 26px;
    text-transform: uppercase;
    color: #18140a;
    transition: all .2s ease-in-out;
    will-change: transform;
}
.yellow-btn-large:hover {
    filter: brightness(120%);
    transform: scale(1.02);
}
.welcome__gift {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 174px;
    height: 168px;
    background: url(../img/gift-bg.png) center no-repeat;
    background-size: contain;
    filter: drop-shadow(0 11px 13px #000618);
    position: fixed;
    right: 2.5%;
    top: 15%;
    transition: all .2s ease-in-out;
}
section.welcome .welcome__gift {
    z-index: 3;

}
.welcome__gift-title {
    font-family: "AlbertusBold", sans-serif;
    font-size: 19px;
    color: #ffd86f;
    text-transform: uppercase;
    line-height: 1.3;
    text-align: center;
}
.welcome__gift-subtitle {
    font-weight: 600;
    font-size: 14px;
    color: #b578ba;
    padding-top: 6px;
}
.welcome__gift img {
    position: absolute;
    top: -12%;
    right: 0;
    transition: all .2s ease-in-out;
}
.welcome__gift:hover{
    filter: drop-shadow(0 11px 13px #30012c) brightness(120%);
}
.welcome__gift:hover img {
    filter: drop-shadow(0 0 5px #a5c3de57);
}

/* FEATURES */
section.features {
    background-image: url(../img/sections/features-bg.jpg);
}
section.features .container {
    padding-top: 112px;
    padding-bottom: 131px;
}
.features__header-block {
    width: 1072px;
    height: 131px;
    background: url(../img/content-header_bg.png) center no-repeat;
    background-size: contain;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.title {
    font-family: "AlbertusBold", sans-serif;
    font-size: 54px;
    line-height: 1.2;
    background: linear-gradient(to top, #fcb207, #ffeb45);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    text-transform: uppercase;
}
.subtitle {
    font-family: "AlbertusBold", sans-serif;
    font-size: 16px;
    color: #e8daa7;
    text-transform: uppercase;
}
.slider {
    padding-top: 36px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 72px;
    width: 100%;
    max-width: 1072px;
    min-height: 464px;
}
.slider .slick-slide {
    opacity: 0;
    transition: opacity .7s ease-in-out, transform .7s ease-in-out;
    transform: scale(0.98);
}
.slider .slick-active {
    opacity: 1;
    transform: scale(1);
}
.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: 54px;
    height: 93px;
    aspect-ratio: 1/1;
    display: block;
    filter: drop-shadow(0 0 12px rgba(255, 144, 0, 1));
}
.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.4;
}
.slider .slick-list {
    width: 100%;
    z-index: 1;
}
.slider .slick-list {
    overflow: visible;
}
.slider .slick-track {
    display: flex;
    align-items: stretch;
}
.slider-item {
    height: auto;
    transform: scale(0.9);
    opacity: 0.5;
    transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
}
.slider-item.slick-active {
    transform: scale(1);
    opacity: 1;
}
.slider-item-content {
    min-height: 464px;
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    border-radius: 16px;
}
.slider-item-bg {
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 1;
    border-radius: 16px;
    overflow: hidden;
}
.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;
}
.slider-item-bg img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    z-index: 1;
    border-radius: 16px;
}
.slider-item-info {
    position: relative;
    z-index: 2;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    gap: 30px;
    z-index: 4;
    width: 100%;
}
.slider-header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0;
    font-family: "AlbertusBold", sans-serif;
    text-transform: uppercase;
    text-align: center;
    /* padding-bottom: 34px; */
    position: relative;
    background: linear-gradient(to right, rgba(120, 0, 0, 0), rgba(120, 0, 0, 0.85), rgba(120, 0, 0, 0));
    padding: 10px 0;
    text-align: center;
    color: #ffc300;
    position: relative;
    overflow: hidden;
    width: 100%;
}

/*
.slider-header::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    width: 400px;
    height: 2px;
    background-image: repeating-linear-gradient(
        to right,
        #1e3706 0,
        #1e3706 9px,
        transparent 9px,
        transparent 14px
    );
}
*/

.slider-header-title {
    font-size: 26px;
    color: #fff;
    padding-bottom: 5px;
}
.slider-header-subtitle {
    font-size: 15px;
    color: #e8daa7;
}
.slider-header-subtitle:not(:last-child) {
    padding-bottom: 4px;
}
.slider-desc {
    font-family: "Inter", sans-serif;
    font-size: 16px;
    color: #e8daa7;
    font-weight: 500;
    text-align: center;
    width: 542px;
}
.slider-btn {
    width: 238px;
    height: 56px;
    border-radius: 28px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 20px;
    background: linear-gradient(to right, #f3c200, #ff9600);
    background-size: cover;
    font-family: "AlbertusBold", sans-serif;
    font-size: 18px;
    text-transform: uppercase;
    color: #18140a;
    transition: all .2s ease-in-out;
    will-change: transform;
    margin-top: 10px;
}
.slider-btn:hover {
    filter: brightness(1.2);
    transform: scale(1.02);
}

/* SHOWCASE */
section.showcase {
    background-image: url(../img/sections/showcase-bg.jpg);
    padding: 164px 0;
}
section.showcase .container {
    gap: 145px;
    max-width: 1200px;
}
.showcase__content-first {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 130px;
    padding-bottom: 145px;
    position: relative;
}
.showcase__content-first::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -16px;
    width: 1350px;
    height: 32px;
    background: url(../img/content-divider.png) center no-repeat;
    background-size: contain;
}
.first__global {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 28px;
}
.first__global-title {
    font-size: 44px;
}
.first__global-subtitle {
    font-size: 18px;
    padding-bottom: 8px;
}
.first__global-countries {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.first__global-btn {
    margin-top: 8px;
    width: 312px;
    height: 64px;
    border-radius: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 20px;
    background: #5662f6;
    font-family: "AlbertusBold", sans-serif;
    font-size: 20px;
    text-transform: uppercase;
    color: #f5f5f5;
    transition: all .3s ease-in-out;
    will-change: transform;  
}
.first__global-btn:hover {
    filter: brightness(1.2);
}
.first__discord-widget iframe {
    border-radius: 12px;
}
.showcase__content-second {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.second__subtitle {
    padding-top: 4px;
}
.second__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px 30px;
    padding-top: 60px;
}
.grid-item {
    max-width: 560px;
    /* display: flex; */
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
}
.grid-item-img {
    border-radius: 10px;
}
.grid-item-title {
    padding-top: 20px;
    font-family: "AlbertusBold", sans-serif;
    font-size: 24px;
    color: #fff;
    text-transform: uppercase;
    margin-left: 10px;
}
.grid-item-desc {
    font-size: 15px;
    color: #e8daa7;
    margin-left: 10px;
    line-height: 1.7;
}


/* KITS */
section.kits {
    background-image: url(../img/sections/kits-bg.jpg);
    padding-top: 114px;
    padding-bottom: 170px;
}
section.kits .container {
    gap: 145px;
}
.kits__starterpack, .kits__content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.kits__header-block {
    width: 1072px;
    height: 131px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: url(../img/content-header_bg-2.png) center no-repeat;
    background-size: contain;
}
.kits__kits {
    padding-top: 36px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 17px;
    flex-wrap: wrap;
    padding-bottom: 145px;
    position: relative;
}
.kits__kits::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -16px;
    width: 1350px;
    height: 32px;
    background: url(../img/content-divider-2.png) center no-repeat;
    background-size: contain;
}
.kit {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    background: #0e2900;
    border-radius: 12px;
    padding-top: 40px;
    padding-bottom: 26px;
    min-height: 688px;
}
.kit:last-child {
    background: #002924;
}
.kit_top, .kit_bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.kit_bottom {
    gap: 12px;
}
.kit-icon {
    position: relative;
    display: block;
    z-index: 1;
    margin-bottom: 23px;
}
.kit-icon img {
    filter: drop-shadow(0 5px 2px #151515);
}
.kit:last-child .kit-icon img {
    filter: drop-shadow(0 5px 2px #151515) drop-shadow(0 0 25px rgba(0, 108, 131, 0.7));
}
.kit-discount {
    position: absolute;
    width: 50px;
    height: 50px;
    background: url(../img/kits/kit-discount.png) center no-repeat;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: -1;
    top: -26%;
    right: -40%;
}
.kit-discount span {
    font-family: "BebasNeueCyrillic";
    font-size: 18px;
    color: #d8d8d8;
    transform: rotate(5deg);
}
.kit-name {
    width: 100%;
    height: 68px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-transform: uppercase;
    line-height: 1;
    gap: 9px;
    background: linear-gradient(to bottom, rgba(116, 97, 46, 0.15), rgba(129, 97, 12, 0.15));
    background-size: cover;
}
.kit-name-title {
    font-family: "AlbertusBold", sans-serif;
    font-size: 22px;
    color: #ffc12a;
}
.kit-name-grade {
    font-weight: bold;
    color: #d8d8d8;
}
.kit-desc {
    line-height: 1;
    padding-top: 26px;
    padding-bottom: 16px;
    font-size: 12px;
    color: #8ca583;
}
.kit:last-child .kit-desc {
    color: #7da59a;
}
.kit-items {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 8px;
    background: url(../img/kits/kit-items_bg.png) top no-repeat;
    background-size: cover;
    padding: 22px;
    border-radius: 12px;
    margin: 0 20px;
}
.kit:last-child .kit-items {
    background: url(../img/kits/kit-items_bg-last.png) top no-repeat;
    background-size: cover;
}
.kit-item {
    position: relative;
}
.tooltip {
    visibility: hidden;
    opacity: 0;
    width: max-content;
    background: #100f0c;
    color: #fff;
    border-radius: 6px;
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    transition: opacity 0.2s ease-in-out;
    font-size: 13px;
    min-width: 174px;
    max-width: 260px;
    z-index: 9999;
}
.kit-item:hover .tooltip {
    visibility: visible;
    opacity: 1;
}
.tooltip-header {
    display: flex;
    width: 100%;
    padding: 9px 10px;
    justify-content: flex-start;
    align-items: center;
    gap: 12px;
    box-shadow: inset 0 0 0 1px #444035;
}
.tooltip-header_title {
    font-family: Arial;
    font-size: 13px;
    color: #fff;
}
.tooltip-header_title span {
    font-family: "Intro";
    font-size: 12px;
    color: #b59f7c;
}
.tooltip-desc {
    font-family: Arial;
    font-size: 11px;
    color: #a6b1c1;
    padding: 13px 10px;
    box-shadow: inset 0 0 0 1px #444035;
    margin-top: -1px;
    width: 100%;
    line-height: 1.2;
}
.kit-buy {
    width: 212px;
    height: 56px;
    border-radius: 28px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 20px;
    background: linear-gradient(to right, #5edf00, #2ab200);
    background-size: cover;
    font-weight: 800;
    text-transform: uppercase;
    color: #18140a;
    transition: all .2s ease-in-out;
    will-change: transform;
}
.kit-buy:hover {
    filter: drop-shadow(0 0 10px #66ff0036) brightness(1.2);
}
.kit-fullprice {
    font-size: 12px;
    line-height: 1;
    color: #8ca583;
}
.kit:last-child .kit-fullprice {
    color: #7da59a;
}
.kits__title {
    text-align: center;
    padding-bottom: 43px;
}
.kits__button {
    margin-bottom: 40px;
}
.kits__discord {
    color: #e8daa7;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    position: relative;
}
.kits__discord::after {
    position: absolute;
    content: "";
    width: 100%;
    bottom: -3px;
    height: 1px;
    background: rgba(232, 218, 167, 0.6);
    box-shadow: 0 -1px rgba(232, 218, 167, 0.2), 0 1px rgba(232, 218, 167, 0.3);
    transition: all .2s ease-in-out;
}
.kits__discord svg {
    fill: currentColor;
    transition: fill .2s ease-in-out;
    width: 24px;
    height: 18px;
}
.kits__discord:hover {
    color: #fcb207;
}
.kits__discord:hover::after {
    background: rgba(252, 178, 7, 0.6);
}

/* FOOTER */
footer {
    background: #05040a;
    border-top: 2px solid #453618;
}
.footer__container {
    padding: 70px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    color: #858585;
    line-height: 1;
    gap: 35px;
}
.footer__logo {
    width: 60px;
    height: 60px;
    will-change: transform;
}
.footer__logo img {
    width: 100%;
}
.footer__logo:hover {
    transform: scale(1.1);
}
.footer__links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
}
.footer-link {
    color: #858585;
    font-weight: 600;
    font-size: 15px;
}
.footer-link:hover {
    filter: brightness(200%);
}
.footer__socials {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 38px;
}
.socials-link:nth-child(1) {
    width: 30px;
    height: 30px;
}
.socials-link:nth-child(2) {
    width: 30px;
    height: 30px;
}
.socials-link:nth-child(3) {
    width: 30px;
    height: 30px;
}
.socials-link svg {
    fill: currentColor;
    transition: all .2s ease-in-out;
    color: #9eabb0;
}
.socials-link:hover svg {
    filter: brightness(200%);
}
.footer__watermark {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    color: #858585;
}
.footer__watermark-text {
    font-weight: 600;
    font-size: 10px;
    text-transform: uppercase;
    line-height: 1.5;
}
.footer__watermark svg {
    fill: currentColor;
    transition: all .2s ease-in-out;
}
.footer__watermark:hover {
    filter: brightness(200%);
}

.reveal-on-scroll {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.first__global.reveal-on-scroll {
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.first__discord-widget.reveal-on-scroll {
    transition: opacity 0.8s ease-out 0.5s, transform 0.8s ease-out 0.5s;
}
.grid-item:first-child.reveal-on-scroll {
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.grid-item:nth-child(2).reveal-on-scroll {
    transition: opacity 0.8s ease-out 0.4s, transform 0.8s ease-out 0.4s;
}
.grid-item:nth-child(3).reveal-on-scroll {
    transition: opacity 0.8s ease-out 0.8s, transform 0.8s ease-out 0.8s;
}
.grid-item:nth-child(4).reveal-on-scroll {
    transition: opacity 0.8s ease-out 1.2s, transform 0.8s ease-out 1.2s;
}
.kit.reveal-on-scroll {
    transform: translateY(-50px);
}
.kit:first-child.reveal-on-scroll {
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.kit:nth-child(2).reveal-on-scroll {
    transition: opacity 0.8s ease-out 0.4s, transform 0.8s ease-out 0.4s;
}
.kit:nth-child(3).reveal-on-scroll {
    transition: opacity 0.8s ease-out 0.8s, transform 0.8s ease-out 0.8s;
}
.kit:nth-child(4).reveal-on-scroll {
    transition: opacity 0.8s ease-out 1.2s, transform 0.8s ease-out 1.2s;
}
.reveal-on-scroll.active {
    opacity: 1;
    transform: translateY(0);
    transform: translateX(0);
}

/* 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: #fcb207;
    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: 1420px) {
    .welcome__gift {
        width: 150px;
        height: 144px;
    }
    .welcome__gift img {
        width: 64px;
    }
    .welcome__gift-title {
        font-size: 16px;
    }
    .welcome__gift-subtitle {
        padding-top: 5px;
        font-size: 12px;
    }
}
@media(max-width: 1350px) {
    body {
        font-size: 13px;
    }
    section::after {
        height: 42px;
    }

    .header__container {
        height: 73px;
        padding: 13px 55px;
        font-size: 12.5px;
    }
    .header__left {
        gap: 45px;
    }
    .logo {
        width: 42px;
    }
    .nav-el {
        font-size: 12.5px;
    }
    .header__right {
        gap: 28px;
    }
    .header__right .nav-el {
        gap: 7px;
    }
    .nav-el svg {
        width: 20px;
        height: 15px;
    }
    .header__right-btn {
        width: 198px;
        height: 46px;
        padding: 8px 16px;
        font-size: 15px;
    }
    .swap-lang-item {
        gap: 7.5px;
    }
    .lang-item-flag {
        width: 26px;
    }

    section.welcome .container {
        padding-top: 230px;
        padding-bottom: 204px;
    }
    .welcome__subtitle {
        font-size: 15px;
        padding-bottom: 13px;
    }
    .welcome__title {
        font-size: 45px;
    }
    .welcome__text-wtimer {
        margin-top: 25px;
        margin-bottom: 43px;
    }
    .yellow-btn-large {
        width: 335px;
        height: 66px;
        padding: 8px 16px;
        font-size: 22px;
    }
    .welcome__gift {
        width: 125px;
        height: 120px;
    }
    .welcome__gift-title {
        font-size: 13px;
    }
    .welcome__gift-subtitle {
        font-size: 10px;
        padding-top: 4px;
    }
    .welcome__gift img {
        width: 53px;
    }

    section.features .container {
        padding-top: 92px;
        padding-bottom: 110px;
    }
    .features__header-block {
        width: 894px;
        height: 109px;
    }
    .title {
        font-size: 45px;
    }
    .subtitle {
        font-size: 13px;
    }
    .slider {
        max-width: 800px;
        min-height: 346px;
        column-gap: 44px
    }
    .slider-item-content {
        min-height: 346px;
    }
    .slider-item-info {
        gap: 25px;
    }
    .slider-header {
        padding-bottom: 28px;
    }
    .slider-header-title {
        font-size: 21px;
        padding-bottom: 12px;
    }
    .slider-header-subtitle {
        font-size: 12px;
    }
    .slider-header-subtitle:not(:last-child) {
        padding-bottom: 3px;
    }
    .slider-desc {
        font-size: 13px;
    }
    .slider-btn {
        width: 196px;
        height: 46px;
        padding: 8px 16px;
        font-size: 15px;
        margin-top: 8px;
    }
    .slider .slick-arrow::after {
        width: 45px;
        height: 77px;
    }

    section.showcase {
        padding: 136px 0;
    }
    section.showcase .container {
        gap: 120px;
    }
    .showcase__content-first::after {
        width: 1125px;
        height: 26px;
    }
    .showcase__content-first {
        gap: 108px;
        padding-bottom: 120px;
    }
    .first__global {
        gap: 23px;
    }
    .first__global-title {
        font-size: 36px;
    }
    .first__global-subtitle {
        font-size: 15px;
        padding-bottom: 6px;
    }
    .first__global-countries {
        gap: 16px;
    }
    .country {
        width: 63px;
        height: 41px;
    }
    .first__global-btn {
        font-size: 16px;
        margin-top: 6px;
        width: 260px;
        height: 53px;
        padding: 8px 16px;
    }
    .first__discord-widget iframe {
        width: 412px;
        height: 468px;
    }
    .second__grid {
        gap: 42px 25px;
        padding-top: 50px;
    }
    .grid-item {
        max-width: 466px;
        gap: 6px;
    }
    .grid-item-title {
        padding-top: 16px;
        font-size: 20px;
        margin-left: 8px;
    }
    .grid-item-desc {
        font-size: 12.5px;
        margin-left: 8px;
    }

    section.kits {
       padding-top: 95px;
       padding-bottom: 142px; 
    }
    section.kits .container {
        gap: 120px;
    }
    .kits__header-block {
        width: 894px;
        height: 109px;
    }
    .kits__kits {
        padding-top: 30px;
        gap: 14px;
        padding-bottom: 120px;
    }
    .kit {
        padding-top: 33px;
        padding-bottom: 21px;
        min-height: 573px;
    }
    .kit-icon {
        margin-bottom: 19px;
    }
    .kit-icon img {
        width: 75px;
        height: 70px;
    }
    .kit-discount {
        width: 41px;
        height: 41px;
    }
    .kit-discount span {
        font-size: 15px;
    }
    .kit-name {
        gap: 7px;
        height: 56px;
    }
    .kit-name-title {
        font-size: 18px;
    }
    .kit-desc {
        padding-top: 21px;
        padding-bottom: 13px;
        font-size: 10px;
    }
    .kit-items {
        gap: 6px;
        padding: 18px;
        margin: 0 16px;
    }
    .kit-item img {
        width: 26px;
    }
    .tooltip {
        bottom: 33px;
        min-width: 145px;
        max-width: 216px;
    }
    .tooltip-header {
        padding: 7.5px 8px;
        gap: 10px;
    }
    .tooltip-header_title {
        font-size: 10px;
    }
    .tooltip-desc {
        padding: 10px 8px;
        font-size: 9px;
    }
    .kit_bottom {
        gap: 10px;
    }
    .kit-buy {
        width: 176px;
        height: 46px;
        padding: 8px 16px;
    }
    .kit-fullprice {
        font-size: 10px;
    }
    .kits__button {
        margin-bottom: 33px;
    }
    .kits__discord {
        gap: 10px;
    }
    .kits__discord svg {
        width: 20px;
        height: 15px;
    }

    .footer__container {
        padding: 58px;
        gap: 29px;
    }
    .footer__logo {
        width: 50px;
        height: 50px;
    }
    .footer__links {
        gap: 25px;
    }
    .footer-link {
        font-size: 12.5px;
    }
    .footer__socials {
        gap: 32px;
    }
    .socials-link:nth-child(1) {
        width: 25px;
        height: 25px;
    }
    .socials-link:nth-child(2) {
        width: 25px;
        height: 25px;
    }
    .socials-link:nth-child(3) {
        width: 25px;
        height: 25px;
    }
    .footer__watermark {
        gap: 10px;
    }
    .footer__watermark svg {
        width: 42px;
        height: 23px;
    }
    .footer__watermark-text {
        font-size: 8px;
    }
}
@media(max-width: 1000px) {
    .nav-el, .header__right .nav-el, .header__right-btn {
        display: none;
    }
    .header__container {
        padding: 5px 10px;
        height: 100%;
    }
    .logo {
        width: 35px;
        z-index: 1002;
    }
    .header__right {
        gap: 10px;
    }
    .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: 12px;
        width: 100%;
        border: 1px solid #ffb3001c
    }
    .menu__item-special li {
        border: none;
    }
    .menu {
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        max-width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.95);
        padding: 70px 0;
        transform: translateX(100%);
        transition: all .5s;
        display: block;
    }
    .menu.active {
        transform: translateX(0);
        visibility: visible;
    }
    .menu__item a {
        font-family: serif;
        color: #dfdfdf;
        font-weight: bold;
        font-size: 12px;
        font-family: "Inter", sans-serif;
        width: 100%;
        height: 100%;
        display: flex;
        padding: 20px;
    }
    .no-scroll {
        overflow: hidden;
    }
    .menu__item-special {
        display: flex;
        gap: 20px;
        align-items: center;
        justify-content: center;
        padding-top: 20px;
        width: 100%;
    }
    .menu__item-special .menu__item {
        max-width: 180px;
    }
    .menu__item a.menu__item-social {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 10px;
        background: #5662f6;
        max-width: 150px;
        height: 37px;
        border-radius: 28px;
        font-size: 20px;
        padding: 5px 10px;
    }
    .menu__item-social svg {
        width: 30px;
        height: 23px;
        fill: currentColor;
    }
    .menu__item a.menu__item-btn {
        display: flex;
        justify-content: center;
        align-items: center;
        max-width: 180px;
        height: 44px;
        background: linear-gradient(to right, #f3c200, #ff9600);;
        border-radius: 28px;
        padding: 5px 10px;
    }
    .menu__item a.menu__item-btn {
        font-size: 20px;
        text-transform: uppercase;
        font-family: "AlbertusBold";
        font-weight: normal;
        color: #18140a;
        padding: 5px 10px;;
    }
    .menu-discord {
        display: flex;
        justify-content: flex-start;
        align-items: center;
        gap: 10px;
    }
    .menu-discord svg {
        fill: currentColor;
        width: 24px;
        height: 18px;
    }

    body {
        font-size: 10px;
    }

    section.welcome .container {
        padding: 120px 5px;
        padding-top: 170px;
    }
    .welcome__subtitle {
        font-size: 9px;
        margin-bottom: 15px;
        padding-bottom: 0;
    }
    .welcome__title {
        max-width: 344px;
        font-size: 18px;
    }
    .welcome__text-wtimer {
        margin-top: 16px;
        margin-bottom: 30px;
    }
    .yellow-btn-large {
        width: 250px;
        height: 49px;
        font-size: 20px;
    }
    .welcome__gift {
        width: 62.5px;
        height: 60px;
        top: 10%;
    }
    .welcome__gift-title {
        font-size: 7px;
    }
    .welcome__gift-subtitle {
        font-size: 6px;
        padding-top: 2px;
    }
    .welcome__gift img {
        width: 25px;
    }

    .features__header-block {
        height: 65px;
    }
    .title {
        font-size: 30px;
    }
    .subtitle {
        font-size: 9px;
    }
    .slider {
        max-width: 500px;
    }
    .slider-item-content {
        padding: 10px;
    }
    .slider-item-info {
        gap: 10px;
    }
    .slider-header {
        padding-bottom: 10px;
    }
    .slider-header-title {
        font-size: 12px;
        padding-bottom: 5px;
    }
    .slider-header-subtitle {
        font-size: 9px;
    }
    .slider-header::after {
        width: 250px;
    }
    .slider-desc {
        font-size: 9px;
        width: 100%;
    }
    .slider-btn {
        width: 140px;
        height: 35px;
        padding: 8px 16px;
        font-size: 12px;
        margin-top: 4px;
    }
    .slider-item-content, .slider {
        min-height: 230px;
    }
    .slider {
        column-gap: 10px;
    }
    .slider .slick-arrow::after {
        width: 15px;
        height: 25.5px;
    }

    section.showcase {
        padding: 100px 0;
    }
    .showcase__content-first, .showcase__content-second {
        flex-direction: column;
        gap: 50px;
    }
    .first__global {
        align-items: center;
        text-align: center;
    }
    .first__global-title {
        font-size: 26px;
    }
    .first__global-subtitle {
        text-align: center;
    }
    .first__global {
        gap: 15px;
    }
    .first__global-countries {
        justify-content: center;
    }
    .first__global-btn {
        font-size: 14px;
        width: 210px;
        height: 45px;
    }
    .first__discord-widget iframe {
        width: 320px;
        height: 378px;
    }
    .showcase__content-first {
        padding-bottom: 50px;
    }
    .showcase__content-first::after {
        background-size: cover;
        width: 100%;
        height: 20px;
    }
    section.showcase .container {
        gap: 50px;
    }
    .showcase__content-second {
        gap: 0;
    }
    .second__title {
        font-size: 26px;
    }
    .second__grid {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }
    .grid-item {
        max-width: 350px;
        text-align: center;
        align-items: center;
        gap: 3px;
    }
    .grid-item-title {
        padding-top: 5px;
        font-size: 14px;
        margin-left: 0;
    }
    .grid-item-desc {
        font-size: 10px;
    }

    section.kits {
        padding: 100px 0;
    }
    section.kits .container {
        gap: 50px;
    }
    .kits__header-block {
        height: 65px;
    }
    .kits__kits {
        max-width: 100vw;
        padding-bottom: 50px;
        padding: 5px;
    }
    .kits__kits::after {
        background-size: cover;
        width: 320px;
        height: 20px;
    }
    .kits__title {
        font-size: 19px;
        padding-bottom: 35px;
    }
    .kits__button {
        margin-bottom: 22px;
    }
}
@media(max-width: 600px) {
    .slider {
        max-width: 300px;
    }
    .slider-item-content {
        padding: 10px;
    }
    .slider-item-info {
        gap: 10px;
    }
    .slider-header {
        padding-bottom: 10px;
    }
    .slider-header-title {
        font-size: 12px;
        padding-bottom: 5px;
    }
    .slider-header-subtitle {
        font-size: 9px;
    }
    .slider-header::after {
        width: 250px;
    }
    .slider-desc {
        font-size: 9px;
        width: 100%;
    }
    .slider-btn {
        width: 140px;
        height: 35px;
        padding: 8px 16px;
        font-size: 12px;
        margin-top: 4px;
    }
    .slider-item-content, .slider {
        min-height: 230px;
    }
    .slider {
        column-gap: 10px;
    }
    .slider .slick-arrow::after {
        width: 15px;
        height: 25.5px;
    }
}