.contact-form {
    color: white;
    background: var(--dark-blue);
}

.contact-form--container {
    padding: 24px 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

@media screen and (min-width: 992px) {
    .contact-form--container {
        padding: 80px 0;
        flex-direction: row;
        align-items: center;
        gap: clamp(24px, 9.44vw, 136px);
    }
}

.contact-form--content {
    width: 100%;
    text-align: center;
}

@media screen and (min-width: 992px) {
    .contact-form--content {
        max-width: 490px;
        text-align: left;
    }
}

.contact-form--content h3 {
    margin-bottom: 16px;
    text-wrap: balance;
}

.contact-form--content strong {
    font-weight: 700;
}

.contact-form--content p+p {
    margin-top: 16px;
}

.contact-form--content p {
    line-height: 160%;
    text-wrap: balance;
}

.contact-form--form {
    flex: 1;
}

.contact-form--form label {
    display: inline-block;
    font-size: 0.75rem !important;
    font-style: italic;
    font-weight: 400 !important;
    line-height: 160%;
    margin-bottom: 8px;
}

.contact-form--form input[type=email],
.contact-form--form input[type=text],
.contact-form--form select,
.contact-form--form textarea {
    width: 100%;
    border-radius: 5px;
    border: 1px solid white;
    padding: 5px 12px;
    font-size: 0.75rem;
    font-weight: 400;
    line-height: 160%;
}

.contact-form--form input[type=email]::placeholder,
.contact-form--form input[type=text]::placeholder,
.contact-form--form select::placeholder,
.contact-form--form textarea::placeholder {
    width: 100%;
    border-radius: 5px;
    border: 1px solid white;
    padding: 5px 12px;
    font-size: 0.75rem;
    font-weight: 400;
    line-height: 160%;
    opacity: 60%;
}

.contact-form--form .gfield_required_asterisk {
    font-size: 0.75rem !important;
    font-weight: 400;
    line-height: 160%;
    color: white !important;
}

.contact-form--form .gfield {
    margin-bottom: 24px;
}

.contact-form--form .ginput_container_select {
    position: relative;
}

.contact-form--form .ginput_container_select::after {
    content: "";
    pointer-events: none;
    width: 16px;
    height: 16px;
    background: white;
    -webkit-mask: url("../images/chevron-down.svg") no-repeat center;
    mask: url("../images/chevron-down.svg") no-repeat center;
    -webkit-mask-size: contain;
    mask-size: contain;
    position: absolute;
    right: 12px;
    top: calc(50% - 8px);
    opacity: 0.6;
}

.contact-form--form input[type=submit] {
    border-radius: 100px;
    padding: 10px 16px;
    background: white;
    color: var(--dark-blue);
    border: 1px solid var(--dark-blue);
    transition: all 0.3s ease;
    cursor: pointer;
}

.contact-form--form input[type=submit]:hover {
    background: #E7ECED;
}

/*# sourceMappingURL=style.css.map */