.contact-us {
    background-color: var(--fill-color);
}

.contact-us__row {
    flex-wrap: wrap;
    justify-content: center;
}

.contact-us__right {
    width: 100%;
    padding-bottom: 1.5rem;
}

.contact-us__caption {
    display: none;
    font-family: 'Barlow Condensed', sans-serif;
}

.contact-us__title {
    padding-top: 0.7rem;
    margin-bottom: 0.5rem;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.5;
}

.contact-us__content {
    margin-bottom: 2rem;
    font-weight: 400;
    line-height: 1.3;
    color: var(--font-color-description);
}

.contact-us__mobile {
    padding-bottom: 1.2rem;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.5;
}

.contact-us__form {
    padding-top: 3rem;
    padding-left: 2rem;
    padding-right: 2rem;
    padding-bottom: 3rem;
    border-radius: calc(var(--border-radius) * 4);
    background-color: var(--bg-white-color);
}

.contact-us__form-item { 
    margin-bottom: 1.5rem;
}

.contact-us__form-item textarea {
    width: 100%;
    height: 8.3rem;
    padding-top: 1rem;
}

.contact-us__form-input {
    width: 100%;
    height: 3.75rem;
    padding-left: 1rem;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    outline: none;
}

.contact-us__form-input::placeholder {
    font-weight: 400;
    color: var(--font-color);
}

.contact-us__form-phone-email > div {
    margin-bottom: 1.5rem;
}

.contact-us__form-submit {
    text-align: center;
}

.contact-us__img {
    display: none;
}

.contact-us__form-submit input {
    width: 100%;
    height: 100%;
    max-height: 3.75rem;
    text-transform: none;
}

@media (min-width: 767px) {
    .contact-us {
        display: flex;
        width: 100%;
        background-color: var(--fill-color);
    }

    .contact-us__caption {
        display: block;
        margin-bottom: 0.7rem;
        font-weight: 700;
        line-height: 0.7;
        text-transform: uppercase;
        color: var(--brand-red-color);
    }

    .contact-us__title {
        padding-top: 0;
        margin-bottom: 0.9rem;
        font-size: 3rem;
        font-weight: 700;
        line-height: 1.5;
    }

   .contact-us__row {
        display: flex;
        flex-wrap: nowrap;
        justify-content: space-around;
        max-width: 90.5rem;
        padding-top: 4.5rem;
        padding-bottom: 4.5rem;
        margin-top: 2rem;
        margin-right: auto;
        margin-left: auto;
        margin-bottom: 4rem;
        border-radius: calc(var(--border-radius) * 4);
        background-color: var(--bg-white-color);
    }

    .contact-us__content {
        margin-bottom: 1.8rem;
        font-size: 1.125rem;
        font-weight: 400;
        line-height: 1.3;
    }

    .contact-us__mobile {
        display: none;
    }

    .contact-us__img {
        display: block;
    }

    .contact-us__img img {
        width: 100%;
        max-width: 14rem;
    }

    .contact-us__left {
        width: 100%;
        max-width: 26rem;
        margin-left: 3rem;
    }

    .contact-us__right {
        width: 100%;
        max-width: 47rem;
        margin-right: 2.7rem;
        border-radius: calc(var(--border-radius) * 4);
    }

    .contact-us__form {
        background-color: var(--fill-color);
    }

    .contact-us__form-phone-email {
        display: flex;
        justify-content: space-between;
    }

    .contact-us__form-phone-email > div {
        width: 50%;
    }
    
    .contact-us__form-phone { 
        margin-right: 0.9rem;
    }

    .contact-us__form-submit input {
        height: 100%;
        max-height: 3.75rem;
        text-transform: none;
    }

}

@media (min-width: 991px) {
    .contact-us__row {
        gap: 11.4rem;
    }
}

