/*Обнуление*/
*{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: "Roboto", serif;
    position: absolute;
    background: #FBF0E5;
    /*background: #f9fbfd;*/
}
body, html {
    overflow-x: hidden;
}
.wrapper{
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
main{
    flex: 1;
}
.header__container{
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    padding: 30px 40px;
    margin-top: 30px;
    margin-bottom: 30px;
    background-color: #7e4614;
    border-radius: 20px;
    align-items: center;
}
.header__logo h1{
    font-size: 32px;
    font-weight: 800;
    color: #FFFFFF;
}
.header__navigation{
    width: 780px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: transform 0.3s ease-in-out;
}
.burger {
    display: none;
    font-size: 30px;
    color: white;
    cursor: pointer;
}
.header__navigation a{
    color: #FFF;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}
.header__button{
    background: none;
    border: 2px solid white;
    border-radius: 15px;
    padding: 10px 15px;
    transition: 0.2s;
}
.header__button:hover{
    background: #FFFFFF;
    color: #7e4614;
    transition: 0.2s;
}
/*--------------------*/
.container {
    max-width: 900px;
    margin: 50px auto;
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.container h1, h2 {
    color: #7e4614;
    font-size: 32px;
    margin-bottom: 20px;
}

.container p, ul {
    line-height: 1.6;
    font-size: 21px;
    margin-bottom: 30px;
}

.container ul {
    padding-left: 20px;
}

.container li {
    margin-bottom: 10px;
}
/*--------------------*/
.footer {
    background: white;
    color: black;
    padding: 50px 0 0 0;
    margin-top: 70px;
}
.footer__container {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
}
.footer__container a{
    color: #337ab7;
}
.footer__links{
    display: flex;
    flex-direction: column;
}
.footer__pages{
    display: flex;
    flex-direction: column;
}
.footer__logotext h1{
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 20px;
}
.footer__logotext p{
    font-size: 21px;
    max-width: 300px;
}
.footer__links a,.footer__pages a{
    font-size: 21px;
    margin-bottom: 15px;
}
.footer__contact p{
    font-size: 21px;
    max-width: 300px;
}
.footer-text{
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    padding: 10px 0;
    background-color: #FBF0E5;
}


@media (max-width: 768px) {
    .burger {
        display: block;
    }
    .header__container{
        display: flex;
        justify-content: space-between;
        padding: 30px;
    }
    .header__navigation{
        position: absolute;
        top: 100px;
        right: 0;
        background: rgb(126, 70, 20);
        width: 200px;
        height: auto;
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
        transform: translateX(100%);
        box-shadow: -4px 4px 10px rgba(0, 0, 0, 0.5);
    }
    .header__navigation .header__button2{
        display: block;
    }
    .header__button{
        display: none;
    }
    .header__navigation a{
        margin: 10px 0;
        font-size: 20px;
    }
    .header__navigation.active{
        transform: translateX(0);
    }
    #active{
        color: white;
    }
    .header__logo1{
        display: block;
        font-size: 32px;
        color: white;
        font-weight: 600;
    }
    .steps__main{
        gap: 0;
    }
}
@media(max-width: 690px) {
    .footer__container{
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .footer-text{
        text-align: center;
    }
}


