#contact #wrapper .container {
    max-width: 1100px;
    height: 100%;
}

#contact #content {
    padding: 0;
}

#contact .contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 0;
    border-radius: 3.049px;
    border: 1.016px solid var(--borders);
    overflow: hidden;
}

#contact .contact-form .left-contact {
    background-image: url(../img/contact.jpg);
    background-size: cover;
    background-position: center;
}

#contact .contact-form .right-contact {
    padding: 30px;
}

#contact .contact-form .right-contact label {
    width: 100%;
    text-align: left;
    color: #000;
    font-family: Almarai;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

#contact .contact-form .right-contact input[type="text"],
#contact .contact-form .right-contact input[type="email"],
#contact .contact-form .right-contact textarea,
#contact .contact-form .right-contact select {
    width: 100%;
    height: 40px;
    margin-bottom: 20px;
    padding: 10px;
    border: none;
    font-family: Almarai;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

#contact .contact-form .right-contact .bootstrap-filestyle > input {
    width: 60%;
    margin-bottom: 0;
}

#contact .contact-form .right-contact .bootstrap-filestyle > span {
    width: 40%;
    height: 100%;
}

#contact .contact-form .right-contact .bootstrap-filestyle .buttonText {
    width: 100%;
    text-align: center;
    font-size: 10px;
    color: var(--white);
}




@media (max-width: 799px) {
    #contact .contact-form {
        grid-template-columns: 1fr;
    }

    #contact .contact-form .right-contact {
        order: 1;
    }

    #contact .contact-form .left-contact {
        order: 2;
        height: 500px;
    }
}