/* contact.css */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Cairo', sans-serif;
    background: white;
    overflow-x: hidden;
}

/* ==================== contact-section ==================== */
.contact-section {
    max-width: 1240px;
    height: 259px;
    min-height: 259px;
    direction: rtl;
    margin: 0 auto;
    /* background-color: #71BDFF; */
    padding: 20px;
    display: flex;
    align-items: center;
}

.contact-section h1 {
    font-family: Cairo;
    font-weight: 900;
    font-size: 32px;
    line-height: 55px;
    text-align: right;
    /* color: white; */
    padding: 5px;
}

.contact-section p {
    font-family: Cairo;
    font-weight: 500;
    font-size: 20px;
    line-height: 200%;
    text-align: right;
    /* color: white; */
}

.contact-section .col-4 {
    position: relative;
    overflow: hidden;
}

.contact-section .col-4 img {
    width: 100%;
    height: 100%;
    object-fit: cover;

}


/* Large devices (1200px and up) */
@media (min-width: 1200px) {
    .contact-section {
        height: 259px;
        min-height: 259px;
    }
}

/* Medium devices (992px to 1199px) */
@media (max-width: 1199px) {
    .contact-section {
        height: 220px;
        min-height: 350px;
    }

    .contact-section h1 {
        font-size: 28px;
        line-height: 45px;
    }

    .contact-section p {
        font-size: 18px;
        line-height: 180%;
    }

    .contact-section .col-4 img {
        width: 170%;
        left: 70px;
    }
}

@media (max-width: 991px) {
    .contact-section {
        height: 200px;
        min-height: 300px;
    }

    .contact-section h1 {
        font-size: 22px;
        line-height: 35px;
    }

    .contact-section p {
        font-size: 16px;
        line-height: 160%;
    }

    .contact-section .col-4 img {
        width: 160%;
        left: 50px;
        top: -15px;
    }
}


@media (max-width: 767px) {
    .contact-section {
        height: 230px;
        min-height: 250px;
        padding: 15px;
    }

    .contact-section h1 {
        font-size: 18px;
        line-height: 28px;
    }

    .contact-section p {
        font-size: 14px;
        line-height: 140%;
    }

    .contact-section .col-4 img {
        width: 150%;
        left: 40px;
        top: -12px;
    }
}


@media (max-width: 575px) {
    .contact-section {
        height: 220px;
        min-height: 200px;
        padding: 10px;
    }

    .contact-section h1 {
        font-size: 14px;
        line-height: 22px;
    }

    .contact-section p {
        font-size: 12px;
        line-height: 130%;
    }

    .contact-section .col-4 img {
        width: 140%;
        left: 30px;
        top: -10px;
    }
}




@media (max-width: 428px) {
    .contact-section {
        height: 150px;
        min-height: 150px;
    }

    .contact-section h1 {
        font-size: 12px;
        line-height: 18px;
    }

    .contact-section p {
        font-size: 10px;
        line-height: 120%;
    }

    .contact-section .col-4 img {
        width: 130%;
        left: 20px;
        top: -8px;
    }
}

/* ================================= */
.contact-form .form{
    margin: 20px;
    /* border:2px solid black */
}
.contact-form .form input{
    border-radius: 93px;
    background: #FFFFFF8F;
    box-shadow: 0px 0px 20px 2px #71BDFF36;
    width: 100%;
    height: 52px;
    padding: 28px;
    border: none;
    margin: 40px 5px;
}

.contact-form .form .send{
    width:100%;
    height: 86;
    border-radius: 93px;
    background: #71BDFF;
    justify-content: center;
    font-family: Cairo;
    font-weight: 700;
    font-style: Bold;
    font-size: 26px;
    line-height: 100%;
    letter-spacing: 0%;
    margin: 20px auto;
    color: #FFFFFF;


}
