.maps{
    margin: 0 auto;
    max-width: 1200px;
}
.contacts{
    
    margin: 20px auto;
    max-width: 1200px;
}
.contacts ul{
    display: flex;
    flex-direction: column;
    gap: 15px;
    list-style: none;
}
.feedback{
    margin: 0 auto;
    max-width: 1200px;
}
.feedback form{
width: 100%;
display: flex;
flex-direction: column;
}
#name_user, #tel_user{
width: 300px;
margin-bottom: 10px;
}
#text_user{
    min-height: 200px;
    height: max-content;
}
.feedback_submit{
    margin-top: 20px;
    padding: 10px;
    width: 300px;
    background: orange;
    font-size: 24px;
    font-family: 'boozy';
    border-radius: 10px;
}
.feedback_submit:hover{
background: #ffb52e;
}
.successful{
    position: fixed;
    left: 0;
    top: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    background: green;
    color: #fff;
    font-size: 24px;
    font-family: 'boozy';
}
.error{
    position: fixed;
    left: 0;
    top: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    background: red;
    color: #fff;
    font-size: 24px;
    font-family: 'boozy';
}
.complited_btn{
    margin: 10px;
    padding: 10px;
    width: 300px;
    background: orange;
    font-size: 24px;
    font-family: 'boozy';
    border-radius: 10px;
    cursor: pointer;
}