.contacts {
    padding: 170px 150px;
    display: flex;
    /*justify-content: space-between;*/
    gap: 50px;
}
.contacts .footer__title, .contacts .footer__contact {
    color: #04133C;
}
.contacts .footer__title {
    font-weight: 600;
}
.contacts .footer__contact:hover {
    color: var(--sand);
}
.contacts .footer__contact path, .contacts .footer__icons path {
    fill: #04133C;
}
.contacts .footer__contact:hover path, .contacts .footer__icons a:hover path {
    fill: var(--sand);
}

.contact-form {
    display: flex;
    flex-direction: column;
    font-family: Raleway;
    line-height: 1.3;
    color: #04133C;
}
.contact-form h6 {
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 10px;
    text-transform: uppercase;
}
.contact-form label {
    font-weight: 400;
    font-size: 16px;
}
.contact-form label span {
    color: red;
    margin-left: 4px;
}
.contact-form input {
    width: 300px;
    height: 40px;
    background: white;
    border-radius: 7px;
    border: 1px solid #C7C3BC;
    padding: 0 8px;
    font-family: Raleway;
    margin-bottom: 8px;
}
.contact-form textarea {
    width: 300px;
    height: 80px;
    background: white;
    border-radius: 7px;
    border: 1px solid #C7C3BC;
    padding: 0 8px;
    font-family: Raleway;
    margin-bottom: 8px;
    resize: vertical;
}
.contact-form button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    background: #04133c;
    color: white;
    border-radius: 50px;
    border: none;
    width: 300px;
    height: 60px;
    font-family: Raleway;
    font-size: 18px;
    font-weight: 500;
    transition: all .3s;
    cursor: pointer;
    margin-bottom: 20px;
}

@media screen and (max-width: 769px) {
    .contacts {
        padding: 65px 20px;
        flex-direction: column;
    }
    .contacts .footer__contacts {
        margin: 0;
    }
    .contacts iframe {
        width: 100%;
    }
}