@import url('https://fonts.googleapis.com/css2?family=Teko:wght@300..700&display=swap');

@font-face{
    font-family: "Wattauchimma"; 
    src: url("fonts/Wattauchimma.ttf") format("truetype"); 
    font-style: normal; 
    font-weight: normal; 
}

body, html {
    margin: 0;
    padding: 0;
    font-family: Wattauchimma;
    text-transform: uppercase;
    color: #fff;
}

li{
    list-style-type: none;
}

a{
    text-decoration: none;
}
p{
    margin: 0;
}


.container{
    max-width: 800px;
    margin: 0 auto;
}

.main-section{
    width: 100%;
    height: 100vh;
    background-image: url('img/back.webp') ;
    background-size: cover ;
    background-position: bottom;
    position: relative;
    overflow: hidden;
}

.main__wrapper{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.main__logo{
    height: 180px;
    width: 100%;
    display: flex;
    justify-content: center;
    margin: 10vh 0 0 0;
    z-index: 10;
}
.main__logo img {
    height: 100%;
    width: auto;
    /* filter: drop-shadow( 1mm -6mm 15px rgb(223, 152, 0)); */

    /* animation: 3s linear 1s infinite alternate shadow; */
}



.light {
    position: absolute;
   
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background-color: #fff;
    filter: blur(3em);
    animation: 30s linear 1s infinite alternate light-move;
    z-index: 2;
    
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
   
}
.yellow-light {
    position: absolute;
   
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background-color: #ffff00;
    filter: blur(4em);
    animation: 40s ease-in 1s infinite alternate yellow-light-move;
    z-index: 2;
    
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
}


@keyframes yellow-light-move{
    0% {
        bottom: -30%;
        right: -30%;
    }
    50%{
        bottom: 50%;
        right: 50%;
    }
    75%{
        right: 30%;
        bottom: 75%;
    }
    100%{
        bottom: 100%;
        right: 100%;
    }
}

@keyframes light-move{
    0% {
        top: 0%;
        left: 10px;
    }
    50%{
        top: 50%;
        left: 100%;
    }
    100%{
        top: 100%;
        left: 0%;
    }
}



@keyframes shadow {
    from{
        filter: drop-shadow( 1mm -6mm 15px rgb(223, 152, 0));
    }
    to{
        filter: drop-shadow( 1mm -6mm 30px rgb(223, 152, 0));
    }
}

.main__menu{
    margin: 0 0 10vh 5vw;
    display: flex;
    flex-direction: column;
    max-width: 400px;
    align-items: start;
}

.main__menu button{
    cursor: pointer;
    background: none;
    border: none;
    margin: 0 0 10px 0;
}


.main__menu button:last-child{
    margin: 0;
}

.main__menu__button{
    height: 46px;
    width: 140px;
    align-items: flex-start;
    background-image: url('img/button.png');
    background-repeat: no-repeat;
    background-size: contain;
    color: #fff;
    font-family: Wattauchimma;
    font-size: 18px;
    text-transform: uppercase;

    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}



.main__menu__button:last-child{
    margin: 0;
}
.main__menu__button a{
    font-size: 18px; 
}


textarea{
    box-sizing: border-box;
}
input{
    box-sizing: border-box;

}
.pop-up__place{
    display: none;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    align-items: center;
    justify-content: center;
    z-index: 12;
}
.pop-up{
    position: absolute;
    top:50%;
    left:50%;
    transform:translate(-50%, -50%);
    width: 400px;
    background-color: #391303;
    z-index: 10;
    border: 1px solid #808080;
    border-radius: 24px;
}

.pop-up__wrapper{
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 12;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.pop-up__close{
    position: absolute;
    top: -7px;
    right: -7px;
    cursor: pointer;
}

.play-pop-up__download__elems{
    width: 200px;
    
}

.pop-up__title{
    font-size: 30px;
    color: #fff;
    font-family: Wattauchimma;
    margin: 40px 0 40px 0;
}

.pop-up__content{
    margin: 0 30px 80px 30px;
    overflow: auto;
    height: 200px;
    font-size: 18px;
    line-height: 25px;
}
.pop-up__content__download{
    margin: 0 30px 80px 30px;
    height: 200px;
    font-size: 18px;
    line-height: 25px;
}

.pop-up__content::-webkit-scrollbar {
    width: 12px; /* Ширина скроллбара */
}


.pop-up__content::-webkit-scrollbar-thumb {
    background-color: #a11f30; /* Цвет бегунка */
    border-radius: 10px; /* Скругление углов бегунка */
}



.downloads{
    display: block;
    width: 100%;
    height: auto;
    margin: 0 0 20px 0;
}

.downloads:last-child{
    margin: 0 0 80px 0;
}

.downloads img{
    width: 100%;
    height: auto;
}

.input-elem{
    position: relative;
    width: 100%;
    margin: 0 0 20px 0;
}

.input-label{
    position: absolute;
    background-color: #391303;
    top: -8px;
    left: 10px;
}

.input-text{
    background-color: transparent;
    border: 2px solid #a11f30;
    width: 100%;
    height: 40px;
    color: #fff;
    font-size: 18px;
}

.form-wrapper{
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: center;
}

.pop-up__content-input{
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 30px 80px 30px;
    font-size: 18px;
    width: 300px;
}




.submit-input{
    width: 140px;
    height: auto;
    position: relative;
    margin: 20px 0 0 0;
    cursor: pointer;
}

.submit-input input{
    cursor: pointer;
}

.submit-input img{
    width: 100%;
    height: auto;
}

.submit-input input{
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: transparent;
    border: none;
    color: #fff;
    font-family: Wattauchimma;
    font-size: 22px;
    width: 100%;
    height: 100%;
}

.pop-up__contact{
    display: flex;
    margin: 10px 0 0 0;
    font-family:  sans-serif;
    text-transform: none;
}

.pop-up__contact a{
    color: #F9C69A;
}

#message{
    height: 80px;
    overflow: auto;
    resize: none;
    padding: 5px;
}

.error-valid{
    animation:  error 1s ease-in;
}

@keyframes error {
    0%{
        transform: translateX(-2px);
    }
    25%{
        transform: translateX(2px);
    }
    50%{
        transform: translateX(-2px);
    }
    75%{
        transform: translateX(2px);
    }
    100%{
        transform: translateX(0);
    }
}



@media(min-width: 768px){

    .pop-up{
        width: 600px;
    }

    .pop-up__content{
        height: 50vh;
    }
    

    .main__logo{
        height: 220px;
        margin: 10px 0 0 0;
    }
   
    .main__menu{
        margin: 0 0 15vh 10vw;
        
    }
    .main__menu a{
        width: 160px;
    }
    
    .main__menu__button{
        height: 55px;
        width: 160px;
        font-size: 22px;
    }

    
   
}

@media(max-width: 400px){
    .pop-up{
        max-width: 300px;
    }

    .pop-up__content-input{
        max-width: 250px;
    }
}

@media(min-width: 1024px){
    .main-section{
        background-image: url('img/back_w.webp');
    }
    

    .main__logo{
        height: 220px;
        margin: 10px 0 0 0;
    }
   
    .main__menu{
        margin: 0 0 10vh 10vw;
        
    }
    .main__menu a{
        width: 160px;
    }
    
   
}


@media(min-width: 1200px){
    .main-section{
        background-image: url('img/back_w.webp');
    }
    .main__logo{
        height: 240px;
        margin: 0;
    }

    .pop-up{
        width: 1000px;
    }

    .pop-up__content{
        height: 60vh;
    }

    .pop-up__content-input{
        width: 80%;
    }
}


.warning{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.content__text{
    font-size: 15px;
}

.content__text a{
    color: #F9C69A;
}
.content__text li {
    list-style: disc;
}