.contact {
    display: flex;
    flex-direction: column;

    max-width: 1920px;
    padding: 150px 250px;
    margin: 0 auto;

    background-color: var(--black);
}

.contact hr {
    border-color: var(--white);
}

.contact .title {
    color: var(--white);
}

.contact .subtitle {
    font-size: 14px;
    font-weight: 300;
    font-style: oblique;
    color: var(--white);

    margin-bottom: 35px;
}

.contact .contact-container {
    display: flex;
    flex-direction: column;

    padding: 50px;

    background-color: var(--blue);
    border-radius: 10px;
}

.contact .contact-container form {
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 15px;
}

.contact .contact-container form textarea {
    height: 250px;
}

.contact .contact-container form .group-btn {
    align-self: flex-end;
    margin-top: 20px;
}

@media only screen and (max-width: 1700px) {
    .contact {
        padding: 150px;
    }
}

@media only screen and (max-width: 1050px) {
    .contact {
        padding: 150px 100px;
    }
}

@media only screen and (max-width: 768px) {
    .contact {
        align-items: center;
        padding: 100px 30px;
    }

    .contact .contact-container hr {
        align-self: center;
    }

    .contact .contact-container .title,
    .contact .contact-container .subtitle {
        text-align: center;
    }

    .contact .contact-container form .group-btn {
        align-self: center;
    }
}