.contact {
    background-color: #C2E4FC;
    background-image: url('../../images/st/contact-bg.png');
    background-size: 1512px auto;
    background-position: center center;
}

.contact .row {
    --bs-gutter-x: 0;
}

.contact__info {
    gap: 2rem;
    padding-inline-end: 16%;
}

.contact__title {
    color: #1A3258;
}

.contact__text {
    font-size: 1.8rem;
    color: var(--color-primary);
}

.contact__image {
    aspect-ratio: 1/1;
    filter: grayscale(1);
    transition: filter 0.4s ease-in-out;
}

.contact__image:hover {
    filter: grayscale(0);
}

.contact form {
    padding-top: 2rem;
}

.contact form,
.contact form * {
    direction: rtl !important;
}

@media screen and (max-width: 1024.9px) {
    .contact {
        background-size: 100% auto;
        background-position: bottom center;
    }
}

@media screen and (max-width: 767.9px) {
    .contact {
        background-image: none;
    }

    .contact__image {
        aspect-ratio: 335/300;
    }

    .contact__info {
        padding-inline-end: 0;
        gap: 3rem;
    }

    .contact form {
        padding-top: 0;
    }
}