.contact-us .container {
    padding-top: 90px;
    padding-bottom: 90px;
}

.contact-us h2 {
    margin-bottom: 40px;
}

.contact-us__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 110px;
}

.contact-us__image img {
    border-radius: 10px;
}

.contact-us__image {
    width: 100%;
    height: 100%;
}

.contact-us__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right;
}

@media screen and (min-width: 1024px) and (max-width: 1366px) {
    .contact-us__content {
        gap: 70px;
    }
}

@media screen and (max-width: 1024px) {
    .contact-us__content {
        grid-template-columns: 1fr;
    }
    .contact-us__image {
        display: none;
    }

    .contact-us__form {
        width: 100%;
    }

    .contact-us .container {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .contact-us h2 {
        margin-bottom: 30px;
    }

    .contact-us .base-checkbox .base-checkbox__body > p {
        max-width: 100%;
    }

    .contact-us .form-send-button {
        text-align: right;
    }
}

@media screen and (max-width: 768px) {
    .contact-us .container {
        padding-top: 30px;
        padding-bottom: 30px;
    }

}
