.contact_home {
    background-color: var(--primary_color);
    height: 50vh;
}

.contact_home .content_holder {
    position: absolute;
    height: 100dvh;
    top: 50%;
    left: 20%;
    transform: translate(-20%, -50%);
    width: 50vw;
    height: auto;
    justify-content: center;
    align-items: center;
}

.contact_home .image{
    position: absolute;
    top: 100%;
    left: 85%;
    transform: translate(-85%, -100%);
    height: 95%;
}

.contact_home  h1{
    position: relative;
    text-align: center;
    width: 100%;
    margin-bottom: 7vh;
    color: var(--primary_inverse);
}

.contact_home button {
    position: relative;
    align-items: center;
    left: 50%;
    transform: translate(-50%, 0%);
    width: 40%;
    background-color: #e95a62;
    color: white;
    font-weight: bold;
    border: solid #e32b35 0.5vh !important;
}

.rtl .contact_home button {
    right: 50%;
    transform: translate(50%, 0%);
}

.contact_home button:hover {
    background-color: #e0131e;
    color: white;
    border: solid #860b12 0.5vh !important;
}


/* Desktop - 1024px */
@media only screen and (min-width: 64rem) {

}

/* Mobile - 1023px */
@media only screen and (max-width: 63.9375rem) {

    .contact_home {
        height: 100dvh;
    }
    
    .contact_home .content_holder {
        top: 30%;
        left: 20%;
        transform: translate(-20%, -50%);
        width: 100vw;
    }
    .contact_home .image{
        position: relative;
        top: 100%;
        left: 50%;
        transform: translate(-50%, -100%);
        width: 95%;
        height: auto;
    }
    
    .contact_home  h1{
        position: relative;
        left: 50%;
        transform: translate(-50%, 0%);
        width: 80%;
        margin-bottom: 7vh;
    }

    .rtl .contact_home h1 {
        right: 50%;
        transform: translate(50%, -0%);
    }

    .contact_home button{ 
        width: 70%;
    }
}