@charset "UTF-8";

.half-contact {
    background-color: #12A79F;
    padding: min(5.083vw, 100px) 0;
}

.half-contact .container {
    max-width: 1366px;
    align-items: stretch;
}

.half-contact .text {
    color: #f8f8f8;
}

.half-contact .text h2, .half-contact .form h2 {
    color: #f8f8f8;
    text-transform: uppercase;
}

.half-contact ul.checks {
    list-style-type: none;
    padding-left: 0;
    font-size: clamp( 20px, 1.458vw, 28px );
    text-transform: uppercase;
}

.half-contact ul.checks li {
    margin-bottom: 20px;
    line-height: normal;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    gap: 16px;
}

.half-contact ul.checks li::before {
    content: '\2714';
}

.half-contact .form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.half-contact .form form {
    width: 100%;
}

.half-contact .form form select,
.half-contact .form form textarea {
    width: 100%;
}

select#insurance {
    padding: 8px;
}

@media ( max-width: 768px ) {
    .half-contact .container {
        flex-direction: column;
    }

    .half-contact .text h2, .half-contact .form h2 {
        text-align: center;
    }
}