.contact-us-section {
    max-width: 1300px;
    margin: 70px auto 70px auto;
    text-align: center;
}

.contact-us-section .h1-contact-us {
    font-size: 40px;
    font-weight: 200;
}

.contact-us-section .cards-container {
    padding: 0 35px 0 35px;
    border-bottom: 1px solid #DADADA;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 35px;
}

.cards-container .card {
    min-width: 250px;
    height: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-left: 20px;
    padding-right: 20px;
    margin-bottom: 35px;
}

.cards-container .card:not(:last-child) {
    border-right: 1px solid #dadada;
}

.card .card-icon {
    max-width: 35px;
    height: auto;
}

.card .card-text {
    margin-top: 20px;
}

.contact-us-section .how-to-contact-us {
    display: flex;
    margin-top: 50px;
    padding: 0 35px 0 35px;
    gap: 50px;
}

.how-to-contact-us .location {
    width: 50%;
    text-align: left;
}

.location .h2-where-to-find-us {
    font-weight: 700;
    text-transform: uppercase;
    font-size: 20px;
    letter-spacing: 0.01em;
    color: #3F4447;
}

.location .contact-us-address {
    margin-top: 20px;
}

.location #map {
    margin-top: 15px;
    height: 500px;
    width: 100%;
}

.how-to-contact-us .send-request {
    width: 50%;
    background-color: #F0F0F0;
    padding: 20px;
}

.send-request .h2-send-request {
    font-weight: 700;
    text-transform: uppercase;
    font-size: 20px;
    letter-spacing: 0.01em;
    color: #3F4447;
}

.send-request .contact-us-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: left;
    margin-top: 20px;
}

.send-request .focusable {
    transition: box-shadow 0.15s ease-in;
}

.contact-us-form .input-field {
    background-color: unset;
    border-top: none;
    border-left: none;
    border-right: none;
    border-bottom: 1px solid #3f4447;
    width: 100%;
    font-size: 15px;
    padding: 10px;
}

.contact-us-form .input-field:focus {
    outline: none;
    box-shadow: inset 0 0 0 1px rgba(0,0,0,.1);
}

.contact-us-form .textarea-field {
    background-color: unset;
    border-top: none;
    border-left: none;
    border-right: none;
    border-bottom: 1px solid #3f4447;
    width: 100%;
    font-size: 15px;
    padding: 10px;
    min-height: 110px;
}

.contact-us-form .textarea-field:focus {
    outline: none;
    box-shadow: inset 0 0 0 1px rgba(0,0,0,.1);
}

.contact-us-form .radio-button-container {
    display: grid;
    grid-template-columns: 1em auto;
    gap: 0.2em;
}

.radio-button-container input[type='radio'] {
    accent-color: #3f4447;
    mix-blend-mode: multiply;
}

.checkbox-container .checkbox-field {
    accent-color: #3f4447;
    mix-blend-mode: multiply;
}

.contact-us-form .submit-button {
    background-color: unset;
    text-transform: uppercase;
    border: 1px solid #3f4447;
    font-size: 18px;
    font-weight: 350;
    padding: 20px;
    cursor: pointer;
    transition: background-color 0.15s ease-in, color 0.15s ease-in;
}

.contact-us-form .submit-button:hover {
    background-color: #3f4447;
    color: #fff;
}

.message-form {
    display: none;
    align-items: center;
    gap: 5px;
}

.message-form {
    display: none;
    align-items: center;
    gap: 5px;
}

.message-form.success.show,
.message-form.error.show
{
    display: flex;
}

.message-form .icon {
    width: 12px;
    margin-top: 3px;
}

@media screen and (max-width: 600px) {
    .cards-container .card {
        width: 100%;
        margin-bottom: 0;
    }

    .cards-container .card:not(:last-child) {
        border-right: none;
    }

    .cards-container .card:last-child {
        margin-bottom: 35px;
    }
}

@media screen and (max-width: 900px) {
    .contact-us-section .how-to-contact-us {
        flex-direction: column;
    }

    .how-to-contact-us .location {
        width: 100%;
    }

    .how-to-contact-us .send-request {
        width: 100%;
    }
}