*{
    margin: 0;
    padding: 0;
    font-family: Poppins-Light;
}

:root{
    --primary-color: #fff;
    --second-color: #001389;
    --text-color: #000;
    --link-color: #b7b7b7;
}
.dark-theme{
    --primary-color: #1e1e1e;
    --second-color: #2d2d30;
    --text-color: #d8d8d8;
    --link-color: #fff;
}
    
    


@font-face {
    font-family: Poppins-Light; 
    src: url(../fonts/Poppins-Light.ttf);
}

a{
    text-decoration: none;
   
}

body{
    height:100%;
    background: var(--primary-color);
    display: flex;
    flex-direction: column;
}

/* header{
    margin-bottom: 50px;
    display: flex;
    justify-content: center;
    padding: 40px 0;
    background: #fff;
    box-shadow: 0px 8px 8px 1px rgba(34, 60, 80, 0.2);
} */

header {
    position: relative;
    height: 118px;
    box-sizing: border-box;
    margin-bottom: 50;
    border-radius: 0;
    display: flex;
    justify-content: space-between;
    padding: 19px 0;
    flex-direction: row;
    align-items: center;
    background: var(--second-color);
}



.burger{
    display: none;
    cursor: pointer;
    position: relative;
    width: 40px;
    height: 20px;
}

header .toggle{
    display: none;
    width: 70px;
    height: 30px;
    padding: 5px;
    background: #9DB2BF;
    position: absolute;
    right: 30px;
    top:38px;
    cursor: pointer;
    border-radius: 30px;
    transition: .3s;
}

.toggle-btn{
    position: relative;
    width: 30px;
    height: 30px;
    background: var(--second-color);
    border-radius: 50%;
    transition: .3s;
    left: 0;
}

header .toggle.active-toggle{
    background: var(--primary-color);
}

.active-toggle .toggle-btn{
    left: 40px;
}

.toggle-btn img{
    width: 70%;
    padding:15%;
}

footer{
    margin-top: auto;
    background: var(--second-color);
    display: flex;
    /* justify-content: space-around; */
    padding: 40px 30px 30px 30px;
}

.footer_text{
    font-size: 12pt;
    font-family: Poppins-light;
    color: var(--link-color)!important;
    text-align:center;
}

.footer_text_link{
    color:  var(--link-color);
}

.footer_arena_link {
    color:  var(--link-color);
}


.to-the-top-span{
    font-size: 14pt;
    font-family: Roboto;
}


.to-the-top-link{
    color: var(--link-color);
    cursor: pointer;
    text-align: center;
}


.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin-bottom: 80px;
}

.description{
    width: 100%;
    max-width: 950px;
    font-size: 20px;
    line-height: 30px;
    padding: 0 15px;
    font-family: Poppins-Light;
    outline: none;
    color: var(--text-color);
}

.span.event__inf {
    max-width: 320px !important;
}

.description_agreement_about_contacts{
    margin:10;
}

.spinload {
    display: flex;
    width: 35px;
    height: 35px;
    margin-top: 45px;
    margin: 45px auto auto;
    border: 3px solid #ffffff;
    border-top: 3px solid #2968b5;
    border-radius: 50%;
    animation-duration: 1.5s;
    animation: spin 1.5s ease-in-out infinite;
}

@keyframes spin{
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@media screen and (max-width: 1000px){
    footer{
        flex-direction: column-reverse;
    }
    .to-the-top-link{
        margin: 10px 0;
    }
    header{
        border-radius: 0;
        width: 100%;
        padding: 20px 0;
        margin: 0 0 30px;
        z-index: 100;
        flex-direction: row-reverse;
    }
    .wrapper__inputs{
        margin: 0 10px 30px;
    }
    .burger{
        display: block;
        margin-right: 20;
    }
    .toggle{
        display: none;
    }
    .logo__link{
        max-width: 150px;
        width: 50%;
        display: flex;
        align-items: center;
    }
    .logo{
        width: 100%;
    }
}

@media screen and (max-width: 430px){
    header{ 
        margin: 0;
        height: 60;
    }
}
        
