.body{
    width: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
}

.main{
    max-width: var(--max-width);
    display: flex;
    align-items: center;
    flex-direction: column;
    width: 100%;
    min-height: 60vh;
}


.title{
    font-family: Noto Sans, sans-serif;
    font-weight: 300;
    font-size: 26px;
    margin: 15px 20px;
}
.sub-title{
    font-family: Noto Sans;
    font-weight: 200;
    font-size: 22px;
}
.main-p{
    font-family: system-ui;
    font-weight: 400;
    width: 40%;
    font-size: 14px;
    margin: 5px 20px;
}



.contacts-container, .contacts-container-q{
    width: 70%;
    border: solid 1.5px rgb(150, 150, 150);
    padding: 8px 12px;
    margin-top: 20px;
}
.contacts-container-q{
    border-top: none;
    margin: 0 0 20px 0;
}
.contacts-block{
    font-family: system-ui;
    display: flex;
    align-items: center;
    margin: 14px;
    font-size: 16px;
}
.contacts-label{
    font-size: 14px;
    margin-right: 10px;
}

.total-send-block{
    margin: 14px 0;
    padding: 6px 0;
}
.total-send-title{
    font-size: 20px;
    font-weight: 300;
    color: rgb(43, 43, 43);
}

.total-block{
    box-sizing: border-box;
    display: flex;
    width: 100%;
    justify-content: space-between;
    margin: 18px 0;
    padding: 0 16px;
}
.total-input{
    border: none;
    outline: none;
    font-size: 14px;
    font-family: "Noto Sans", sans-serif;
    width: 80%;
    padding: 4px;
    border-bottom: solid 1.5px rgb(114, 114, 114);
    margin-bottom: 8px;
}
.total-comment-block{
    width: calc(100% - 32px);
    margin: 8px 16px;
}
.total-comment-label{
    font-size: 14px;
    font-family: "Noto Sans", sans-serif;
    margin: 4px 8px;
    color: rgb(114, 114, 114);
}
.total-comment{
    border: solid 1px rgb(150, 150, 150);
    border-radius: none;
    outline: none;
    width: 80%;
    height: 120px;
    max-width: 100%;
    max-height: 260px;
}
.total-wrong-data{
    color: red;
    margin: 0 0 4px 20px;
    font-size: 12px;
}
.total-send-button{
    width: calc(100% - 32px);
    color: white;
    background-color: black;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    outline: none;
    border: none;
    font-size: 16px;
    font-weight: 500;
    padding: 8px 0;
    cursor: pointer;
    transition: .3s;
    border: solid 2px rgb(26, 26, 26);
    margin: 8px 16px 6px 16px;
}
.total-send-button:hover{
    background-color: white;
    color: black;
}



.banner-img{
    width: 80%;
    margin: 30px 0;
}