.contact__map-img {
    width: 100%;
}

.contact__form-section {
    display: flex;
    flex-direction: row;
    padding-top: 72px;
    padding-bottom: 72px;
}

.contact__form-intro {
    flex: 1 1 0;
    width: 100%;
}

.contact__form-wrapper {
    flex: 1 1 0;
    width: 100%;
}

.contact__phone-group {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    font-size: 20px;
}


.contact__phone-number {
    color: var(--purple-600);
}

.contact__form-intro {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact__label {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 2px;
    font-size: 20px;
    font-weight: 500;
    color: var(--purple-600);
}

.contact__form-row {
    display: flex;
    flex-direction: row;
    gap: 16px;
}

.contact__form input, .contact__form textarea, .contact__form select {
    width: 100%;
}

@media screen and (max-width: 1280px) {
    .contact__form-section {
        padding-top: 32px;
        padding-bottom: 32px;
        flex-direction: column;
        gap: 24px;
    }
}