.contact-us {
    background: #000;
    padding: 48px 0;
}

.contact-us__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-us__box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-us__map {
    border-radius: 8px;
}

.contact-us__title {
    margin: 0;
    letter-spacing: -.025em;
    font-family: 'Alverata', sans-serif;
    font-weight: 300;
    line-height: 1.4;
    font-size: 32px;
    color: #fff;
    text-align: center;
    margin-bottom: 50px;
}

.contact-us__form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.contact-us__field {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.contact-us__field-label {
    font-family: 'Alverata', sans-serif;
    font-weight: 300;
    line-height: 1.4;
    font-size: 16px;
    color: #fff;
    margin-bottom: 10px;
}

.contact-us__field-input {
    padding: 8px;
    outline: none;
    border-radius: 6px;
    border: 1px solid #f2f0ee;
}

.contact-us__submit {
    padding: 10px;
    width: 200px;
    border-radius: 6px;
    border: 1px solid #f2f0ee;
    cursor: pointer;
    margin-top: 10px;

    &:hover {
        opacity: 0.7;
    }
}

@media screen and (max-width: 769px) {
    .contact-us__box {
        grid-template-columns: 1fr;
        grid-template-rows: 200px max-content;
        gap: 50px;
    }

    .contact-us__submit {
        width: 100%;
    }
}