@charset "UTF-8";

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

.half-contact .container {
    max-width: 1366px;
    align-items: center;
    display: flex;
}

.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;
}

.half-contact .form form input.wpcf7-submit {
    padding: clamp(14px, 0.833vw, 16px) clamp(22px, 1.667vw, 32px);
    font-size: clamp( 14px, 0.833vw, 16px );
    letter-spacing: clamp( 0.87px, 0.08vw, 1.54px );
    line-height: clamp( 24px, 1.25vw, 24px );
    font-weight: 600;
    text-shadow: none;
    color: #151515;
    border: 0;
    outline: 2px solid #ACED4F;
    outline-offset: -2px;
    background-color: #ACED4F;
    border-radius: 5px 15px;
    z-index: 1;
}

.half-contact .form form input.wpcf7-submit:hover {
    color: #F95998;
    background-color: #353c46;
    outline-color: #F95998;
}

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

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