@font-face {
    font-family: "Montserrat";
    src: url("../fonts/montserrat/Montserrat-Black.woff2");
    font-weight: 900;
    font-style: normal;
}
@font-face {
    font-family: "Montserrat";
    src: url("../fonts/montserrat/Montserrat-ExtraBold.woff2");
    font-weight: 800;
    font-style: normal;
}
@font-face {
    font-family: "Montserrat";
    src: url("../fonts/montserrat/Montserrat-Bold.woff2");
    font-weight: 700;
    font-style: normal;
}
@font-face {
    font-family: "Montserrat";
    src: url("../fonts/montserrat/Montserrat-SemiBold.woff2");
    font-weight: 600;
    font-style: normal;
}
@font-face {
    font-family: "Montserrat";
    src: url("../fonts/montserrat/Montserrat-Medium.woff2");
    font-weight: 500;
    font-style: normal;
}

*{
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

html{
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    color: #000;
}

a {
    text-decoration: none;
    cursor: pointer;
}

li {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

button {
    cursor: pointer;
    color: inherit;
}

h5,
h4,
h3,
h2,
h1,
p,
a {
    color: inherit;
    padding: 0;
    margin: 0;
    line-height: inherit;
    font-size: inherit;
    font-weight: inherit;
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 2rem;
}

h4 {
    font-size: 1.75rem;
}

button,
input,
optgroup,
select,
textarea {
    font-family: inherit;
    font-size: 100%;
    line-height: 1.15;
    margin: 0;
    color: inherit;
}

input:focus {
    outline: none;
}

.container{
    max-width: 1920px;
    margin: 0 auto;
    width: 100%;
}

body{
    background-color: #fce017;
    overflow-x: hidden;
}

body.is-win{
    background-color: #fbdb16;
}

body.is-safari-desk{
    background-color: #fce017;
}

body.overflow{
    overflow: hidden;
}

@media screen and (max-width: 991px){
    body.overflow{
        overflow: auto;
    }
}

@media screen and (max-width: 2040px) {
    .container{
        padding: 0 60px;
    }
}

@media screen and (max-width: 1200px) {
    .container{
        padding: 0 40px;
    }
}

@media screen and (max-width: 991px) {
    .container{
        padding: 0 20px;
    }
}

.header{
    padding: 20px 0;
    display: flex;
}

.header__content{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header__logo{
    display: flex;
    max-width: 230px;
}

@media screen and (max-width:576px){
    .header__logo{
        max-width: 150px;
    }
}

.header__logo img{
    width: 100%;
    object-fit: cover;
}

.header__lang{
    position: relative;
}

.header__lang--current{
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 6px 8px;
    border-radius: 20px;
    background-color: #000;
    cursor: pointer;
    transition: all .2s;
    transition-delay: .1s;
    user-select: none;
}

.header__lang--current img {
    min-width: 24px;
}

.header__lang.active .header__lang--current{
    border-radius: 20px 20px 0 0 ;
    transition-delay: 0s;
}

.header__lang--current span {
    transform-origin: center;
    transition: all .2s;
    display: flex;
}

.header__lang.active .header__lang--current span{
    rotate: 180deg;
}

.header__lang--dropdown{
    border-radius: 0;
    background-color: #000;
    position: absolute;
    top: 35px;
    left: 0;
    right: 0;
    width: 100%;
    border-radius: 0 0 20px 20px;
    transform: scaleY(0);
    transform-origin: top;
    transition: all .2s;
}

.header__lang.active .header__lang--dropdown{
    transform: scaleY(1);
    transition-delay: .05s;
}

.header__lang--options{
    padding: 3px 8px;
    width: 100%;
    cursor: pointer;
}

.intro{
    min-height: calc(100vh - 100px);
    width: 100%;
    padding:50px 0 150px 0;
    position: relative;
    margin-bottom: 80px;
    display: flex;
    align-items: center;
}

@media screen and (max-width:991px){
    .intro{
        display: flex;
        flex-direction: column;
        padding: 50px 0;
        margin-bottom: 20px;
    }
}

@media screen and (max-width:576px){
    .intro{
        padding: 10px 0 20px 0;
    }
}

.intro__loader{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.intro .container{
    max-width: 1300px;
}

.intro__content{
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    max-width: 530px;
}

@media screen and (max-width:991px){
    .intro__content{
        margin: 0 auto;
        margin-top: 30px;
        align-items: center;
    }
}

@media screen and (max-width:576px){
    .intro__content{
        margin-top: 20px;
    }
}

.intro__title {
    display: none;
    max-width: 480px;
    opacity: 0;
    font-size: 50px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 15px;
    color: #000;
    text-transform: uppercase;
    animation: fadeIn 0.8s;
    animation-fill-mode: forwards;
    animation-iteration-count: 1;
}

.intro__subtitle{
    display: none;
    opacity: 0;
    font-size: 18px;
    line-height: 1.4;
    color: #000;
    margin-bottom: 30px;
    animation: fadeIn 0.7s;
    animation-delay: .8s;
    animation-fill-mode: forwards;
    animation-iteration-count: 1;
}

.intro__actions {
    display: none;
    gap: 20px;
    opacity: 0;
    animation: fadeIn 0.7s;
    animation-delay: 1.5s;
    animation-fill-mode: forwards;
    animation-iteration-count: 1;
}

.intro__title.animate{
    display: flex;
}

.intro__subtitle.animate{
    display: flex;   
}

.intro__actions.animate{
    display: flex;
}

@media screen and (max-width: 991px){
    .intro__title{
        display: flex;
        transform: translateY(0);
        opacity: 1;
        animation: none;
        text-align: center;
    }
    
    .intro__subtitle{
        display: flex;  
        transform: translateY(0);
        opacity: 1; 
        animation: none;
        text-align: center;
        margin-bottom: 0;
    }
    
    .intro__actions{
        display: flex;
        transform: translateY(0);
        opacity: 1;
        animation: none;
        margin: 0 auto 40px auto;
        display: flex;
        align-items: center;
        order: -1;
    }
}


@media screen and (max-width:768px){
    .intro__title{
        font-size: 42px;
    }

    .intro__actions{
        flex-direction: column;
    }
}

@media screen and (max-width:576px){
    .intro__title{
        font-size: 30px;
        margin-bottom: 10px;
    }

    .intro__subtitle{
        font-size: 16px;
    }

    .intro__actions{
        gap: 10px;
    }
}

.download-link{
    border-radius: 10px;
    background-color: #000;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 60px;
    transition: all .5s;
}

.download-link.hidden{
    display: none;
}

.download-link:hover{
    scale: 1.03;
}

@media screen and (max-width:576px){
    .download-link{
        padding: 10px 26px;
    }
}

@media screen and (max-width:440px){
    .download-link{
        min-width: calc(100vw - 40px);
    }
}

.intro__video--desktop{
    top: -100px;
    width: 100%;
    min-height: 100vh;
    object-fit: cover;
    left: 0;
    position: absolute;
    z-index: -1;
    height: 100vh;
    min-height: 700px;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -webkit-appearance: none; 
}

.intro__video--mobile-parent{
    display: none;
    order: -1;
    width: 100%;
    position: relative;
}

.intro__video--mobile-parent::before{
    content: "";
    position: absolute;
    background-color: transparent;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
}

.intro__video--mobile{
    width: 100%;
    object-fit: cover;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -webkit-appearance: none; 
}



@media screen and (max-width:991px) {
    .intro__video--desktop{
        display: none;
    }

    .intro__video--mobile-parent{
        display: block;
    }
}

@keyframes fadeIn {
    0% {
        transform: translateY(70px);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

/* SECTION SLIDES */
.slides{
    margin-bottom: 180px;
    overflow: hidden ;
}

.slides__list{
    display: flex;
    align-items: center;
    gap: 30px;
    animation: moveSlideshow 12s linear infinite;
    transform: translateX(0);
}

.slides__list:hover{
    animation-play-state: paused;
}

.slides__item{
    min-width: calc(100vw / 4);
    width: calc(100vw / 4);
    height: calc(100vw / 4 + 15px);
    position: relative;
    border-radius: 35px;
    overflow: hidden;
    transform: translate3d(0, 0, 0);
    cursor: default;
}

@media screen and (max-width:1200px){
    .slides{
        margin-bottom: 100px;
    }

    .slides__item{
        min-width: calc(100vw / 3);
        width: calc(100vw / 3);
        height: calc(100vw / 3 + 15px);
    }
}

@media screen and (max-width:768px){
    .slides{
        margin-bottom: 60px;
    }

    .slides__list{
        gap: 20px;
    }

    .slides__item{
        min-width: calc(100vw / 2);
        width: calc(100vw / 2);
        height: calc(100vw / 2 + 15px);
    }
}

@media screen and (max-width:440px){
    .slides__item{
        min-width: calc(100vw / 1.4);
        width: calc(100vw / 1.4);
        height: calc(100vw / 1.4);
    }
}

.slides__item::after{
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100%);
}

.slides__item--icon{
    position: absolute;
    left: 30px;
    top: 30px;
    z-index: 3;
}

.slides__item--img {
    width: 100%;
    height: 100%;
}

.slides__item--img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slides__item--text{
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    color: #fff;
    font-size: 28px;
    font-weight: 600;
    z-index: 3;
}

@media screen and (max-width:768px){
    .slides__item--icon{
        left: 20px;
        top: 20px;
        right: 20px;
        max-width: 45px;
    }

    .slides__item--text{
        font-size: 24px;
        bottom: 20px;
        left: 20px;
        right: 20px;
    }
}

@media screen and (max-width:576px){
    .slides__item--text{
        font-size: 22px;
    }
}


@keyframes moveSlideshow {
    100%{
        transform: translateX(calc((-100vw / 4) * 5 - (5 * 30px)))
    }
}

@media screen and (max-width:1200px){
    @keyframes moveSlideshow {
        100%{
            transform: translateX(calc((-100vw / 3) * 5 - (5 * 30px)))
        }
    }
}

@media screen and (max-width:768px){
    @keyframes moveSlideshow {
        100%{
            transform: translateX(calc((-100vw / 2) * 5 - (5 * 20px)))
        }
    }
}

@media screen and (max-width:440px){
    @keyframes moveSlideshow {
        100%{
            transform: translateX(calc((-100vw / 1.4) * 5 - (5 * 20px)))
        }
    }
}

/* FOOTER */
.footer{
    padding: 40px 0;
    background-color: #222222;
}

.footer__logo-mob{
    display: none;
}

.footer__links{
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 30px;
}

.footer__actions{
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer__social{
    display: flex;
    align-items: center;
    gap: 30px;
}

.footer__social a svg path {
    transition: all .2s;
}

.footer__social a:hover svg path {
    fill: #999900;
}

.footer__privacy{
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.footer__rules{
    display: flex;
    gap: 30px;
}

.footer__rules > a{
    color: #fff;
    font-weight: 500;
    transition: all .1s;
    font-size: 12px;
}

.footer__copyright{
    font-size: 12px;
    font-weight: 500;
    color: #909090;
}

@media screen and (max-width:991px){
    .footer__links{
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-bottom: 20px;
    }
}

@media screen and (max-width:768px){
    .footer__privacy{
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
}

@media screen and (max-width:576px){
    .footer__logo{
        display: none;
    }

    .footer__logo-mob{
        display: block;
    }

    .footer__actions{
        flex-direction: column;
        gap: 10px;
    }

    .footer__rules{
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
}

/* LOADER */
.loader {
    width: 50px;
    padding: 8px;
    aspect-ratio: 1;
    border-radius: 50%;
    background: #fff;
    --_m: conic-gradient(#0000 10%,#000), linear-gradient(#000 0 0) content-box;
    -webkit-mask: var(--_m);
            mask: var(--_m);
    -webkit-mask-composite: source-out;
            mask-composite: subtract;
    animation: l3 1s infinite linear;
}


.loader.hide{
    display: none;
}

@media screen and (max-width:1200px){
    .loader{
        display: none;
    }
}

@keyframes l3 {to{transform: rotate(1turn)}}