/*Обнуление*/
*{padding:0;margin:0;border:0;}
*,*:before,*:after{-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box;}
:focus,:active{outline:none;}
a:focus,a:active{outline:none;}
nav,footer,header,aside{display:block;}
html,body{height:100%;width:100%;font-size:100%;line-height:1;font-size:14px;-ms-text-size-adjust:100%;-moz-text-size-adjust:100%;-webkit-text-size-adjust:100%;}
input,button,textarea{font-family:inherit;}
/*input::-ms-clear{display:none;}*/
button{cursor:pointer;}
button::-moz-focus-inner{padding:0;border:0;}
a,a:visited{text-decoration:none;}
a:hover{text-decoration:none;}
/*ul li{list-style:none;}*/
img{vertical-align:top;}
h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight:inherit;}
/*--------------------*/
body{
    font-family: "Montserrat", serif;
    position: absolute;
    padding: 0 25px 0 25px;
}
body, html {
    /*overflow-x: hidden;*/
}
.wrapper{
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
main{
    flex: 1;
}
.header__container{
    max-width: 1392px;
    margin: 0 auto;
    padding: 16px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 96px;

}
.header__burger h1{
    color: #000;
    font-size: 31px;
    font-style: normal;
    font-weight: 500;
    line-height: 48px;
    margin-left: 70px;
}
.header__logo{
    display: flex;
    align-items: center;
}
.header__logo p{
    font-size: 31px;
}
.header__burger {
    display: flex;
    align-items: center;
}

.burger {
    font-size: 30px;
    color: white;
    cursor: pointer;
    margin-right: 40px;
    background: #ecbf0a;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    position: fixed;
    z-index: 1000;
}

.header__navigation {
    position: fixed;
    top: 70px;
    left: 64px;
    background: #ecbf0a;
    width: 400px;
    height: auto;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    visibility: hidden;
    opacity: 0;
    box-shadow: -4px 4px 10px #f2d413;
    transition: opacity 0.2s ease-in-out, visibility 0s 0.3s;
    display: flex;
    border-radius: 32px;
    z-index: 1000;

}
#language-toggle{
    width: 100px;
    height: 50px;
    border-radius: 10px;
    background: yellow;
    color: black;
    border: 2px solid yellow;
    transition: 0.2s;
    font-size: 21px;
    font-weight: 500;
    margin-right: 40px;
}
#language-toggle:hover{
    border: 2px solid yellow;
    transition: 0.2s;
    background: none;
}
.header__navigation a {
    width: 100%;
    color: #FFFFFF;
    padding-bottom: 25px;
    padding-top: 25px;
    border-bottom: 1px solid white;
}

.header__navigation a {
    font-size: 20px;
    transition: 0.2s;
}

.header__navigation span {
    margin-left: 30px;
}

.header__navigation a:hover {
    margin-left: 20px;
    transition: 0.2s;
}


.header__navigation.active {
    visibility: visible;
    opacity: 1;
    transition: opacity 0.2s ease-in-out, visibility 0s 0s;
    position: fixed;
    z-index: 1000;
}

#burger-icon {
    font-size: 30px;
    color: white;
}

#burger-icon.active {
    font-size: 36px;
    color: white;
}
/*--------------------*/
.contact{
    max-width: 1184px;
    margin: 0 auto;
    margin-bottom: 128px;

}
.contact-form {
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    width: 350px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-form h2 {
    margin-bottom: 40px;
    color: #ecbf0a;
    text-align: center;
    font-size: 43px;
    font-style: normal;
    font-weight: 700;
    line-height: 38.4px; /* 128.536% */
}
form{
    width: 432px;
}
.email {
    color: black;
    margin-bottom: 40px;
    font-weight: 500;
}

.input-group {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

.input-group input,
textarea {
    width: 208px;
    padding: 10px;
    height: 48px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
    background: #f0f4f8;
}

.input-group input {
    flex: 1;
}

.contact-form textarea {
    width: 432px;
    height: 144px;
    resize: none;
    background: #f0f4f8;
}

.checkbox-container {
    display: flex;
    align-items: center;
    font-size: 14px;
    margin: 10px 0;
    margin-top: 40px;
}
.checkbox-container span{
    font-size: 17px;
}
.checkbox-container input {
    margin-right: 8px;

}

.highlight {
    color: #ecbf0a;
}
.contact__button{
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 40px;
}
.contact__button button{
    border-radius: 64px;
    background: #f2d413;
    display: flex;
    width: 192px;
    height: 80px;
    padding: 25px 60.77px 25px 60.97px;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    border: 2px solid #f2d413;
    transition: 0.2s;
    color: #FFF;
    font-size: 18.438px;
    font-style: normal;
    font-weight: 600;
    line-height: 30px; /* 162.712% */
}

.contact__button button:hover{
    background: none;
    border: 2px solid #f2d413;
    transition: 0.2s;
    color: black;
}

/*--------------------*/
.disclaimer__container{
    max-width: 1392px;
    margin: 0 auto;
}
.disclaimer__title{
    min-height: 96.52px;
    border-top: 1px solid grey;
    border-bottom: 1px solid grey;
    display: flex;
    align-items: center;
}
.disclaimer__title h2{
    color: #000;
    font-size: 35.2px;
    font-style: normal;
    font-weight: 500;
    line-height: 47.52px; /* 135% */
    margin-right: 15px;
}
.disclaimer__text{
    min-height: 122px;
    border-bottom: 1px solid grey;
    display: flex;
    align-items: center;
}
.disclaimer__text p{
    color: #000;
    font-size: 22.5px;
    font-style: normal;
    font-weight: 400;
    line-height: 36px; /* 160% */
}
footer{
    max-width: 1392px;
    border-bottom: 1px solid grey;
    margin: 0 auto;
    margin-bottom: 128px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    padding-bottom: 20px;
}
footer p{
    color: #000;
    font-size: 14.875px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 161.345% */
    padding: 24px 0;
}
.footer__help-info h2{
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 20px;
}
.footer__help-images img{
    width: 150px;
    margin-left: 20px;
}


@media(max-width: 670px){
    .header__navigation{
        width: 280px;
        left: 20px;
    }
    .header__navigation a{
        font-size: 14px;
        padding-bottom: 12px;
        padding-top: 12px;
    }
    .header__navigation span {
        margin-left: 15px;
    }
}
@media(max-width: 900px){
    .address{
        display: flex;
        flex-direction: column;
    }
    .address p{
        margin-bottom: 8px;
    }
}