/*Обнуление*/
*{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: "Albert Sans", serif;
    position: absolute;
    /*background-color: gainsboro;*/
}
body, html {
    overflow-x: hidden;
}
.wrapper{
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
main{
    flex: 1;
}
header{
}
.header__container{
    max-width: 1250px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    padding: 20px 20px;
    align-items: center;
    background-color: #434343;
    border-radius: 20px;
    margin-top: 20px;
    margin-bottom: 40px;
}
.header__logo h1{
    color: #FFF;
    text-align: center;
    font-family: "Laila" , serif;
    font-size: 32px;
    font-style: normal;
    font-weight: 900;
    line-height: 102.5%;
}
.header__navigation{
    width: 360px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: transform 0.3s ease-in-out;
}
.header__navigation a{
    color: #FFF;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    transition: 0.2s;
}
.header__navigation a:hover{
    color: #00A651;
    font-weight: 900;
    transition: 0.2s;
}
#active{
    color: #00A651;
    font-weight: 900;
}
.burger {
    display: none;
    font-size: 30px;
    color: white;
    cursor: pointer;
}
.header__button button{
    width: 175px;
    height: 50px;
    color: #FFF;
    text-align: center;
    font-size: 21px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    border-radius: 10px;
    background: #00A651;
    border: 3px solid #00A651;
    transition: 0.2s;
}

.header__button button:hover{
    background: none;
    border: 3px solid #00A651;
    transition: 0.2s;
    color: #00A651;
}
.header__button2{
    display: none;
}
.header__button2 button{
    width: 138px;
    height: 37px;
    color: #FFF;
    text-align: center;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    border-radius: 10px;
    background: #00A651;
    border: 3px solid #00A651;
    transition: 0.2s;
}
.header__greeting{
    max-width: 1250px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 8%;
}
.header__greeting h2{
    color: #FFF;
    text-align: center;
    font-size: 75px;
    font-style: normal;
    font-weight: 800;
    line-height: normal;
    margin-bottom: 35px;
}
.header__greeting h3{
    color: #FFF;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 40px;
    max-width: 567px;
}
.header__greeting button{
    width: 214px;
    height: 60px;
    border-radius: 10px;
    background: #00A651;
    color: #FFF;
    text-align: center;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}
/*--------------------*/
.contact-container {
    max-width: 1300px;
    width: 100%;
    text-align: center;
    margin: 0 auto;
    padding: 70px 20px;
}

.contact-container h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
}

.contact-container p {
    font-size: 21px;
    color: #333;
    margin-bottom: 40px;
}
.all{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.contact-info {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: left;
    margin: 0 auto;
    max-width: 600px;
}

.contact-info p {
    margin: 5px 0;
    font-size: 21px;
}

.contact-info a {
    color: #007bff;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

.form-container {
    background:#fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    width: 100%;
    text-align: center;
    margin: 0 auto;
}

.input-group {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

.input-group input,
textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
}

textarea {
    height: 100px;
    resize: none;
}

.checkbox-group {
    display: flex;
    align-items: center;
    font-size: 14px;
    margin: 15px 0;
}

.checkbox-group input {
    margin-right: 5px;
    height: 15px;
    width: 15px;
}

.checkbox-group a {
    color: #007bff;
    text-decoration: none;
}

.checkbox-group a:hover {
    text-decoration: underline;
}

button {
    background: black;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
    font-size: 16px;
}

button:hover {
    background: #333;
}
/*--------------------*/
footer{
    background: #fbfbfb;
}
.footer-container {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 70px 20px;
}
.footer-section {
    flex: 1;
    padding: 10px;
}
.footer-section h2 {
    color: #000;
    font-family: Laila, serif;
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: 102.5%;
    position: relative;
    top: -8px;
}
.footer-section h3 {
    color: #080809;
    font-size: 21px;
    font-style: normal;
    font-weight: 700;
    line-height: 124.5%;
    margin-bottom: 52px;
}
.footer-section ul {
    list-style: none;
    padding: 0;
    width: 230px;
}
.footer-section ul li {
    margin: 20px 0;
}
.footer-section ul li a {
    text-decoration: none;
    color: #5E6282;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}
.footer-section ul li a:hover {
    text-decoration: underline;
}
.footer-section p{
    color: #5E6282;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 124.5%;
}
.footer-bottom {
    text-align: center;
    padding: 10px;
    background: #eef1f2;
    font-size: 14px;
    margin-top: 20px;
}





@media (max-width: 768px) {
    .burger {
        display: block;
    }
    .header__container{
        display: flex;
        justify-content: space-between;
        padding: 30px;
    }
    #active{
        color: white;
    }
    .header__navigation{
        position: absolute;
        top: 80px;
        right: 0;
        background: rgb(0, 166, 81, 0.7);
        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);
    }
    .header__logo1{
        display: block;
        font-size: 32px;
        color: white;
        font-weight: 600;
    }
}



@media (max-width: 768px) {
    .burger {
        display: block;
    }
    .header__container{
        display: flex;
        justify-content: space-between;
        padding: 30px;
    }
    .header__navigation{
        position: absolute;
        top: 80px;
        right: 0;
        background: rgb(0, 166, 81, 0.7);
        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;
    }
}


@media(max-width: 975px){
    .footer-container{
        display: block;
        text-align: center;
        padding: 17px 20px;
    }
    .footer-section{
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .footer-section h3{
        margin-bottom: 0;
    }
}


@media(max-width: 900px){
    .contact-container{
        padding: 0 20px;
    }
}