
.contact_container{
    width: 100%;
    height: 100vh;
    color: white;
}

/* Logo Container  */

.contact_logo_container{
    width: 50%;
    height: 100%;

    background-color: #36505b;


    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;

    clip-path: polygon(0 0, 100% 0, 90% 100%, 0% 100%);

}

.mobile .contact_logo_container{
    width: 100%;
    height: 80%;

    background-color: #36505b;

    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;

    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
    align-items: center;

}

.contact_logo_container .contact_logo_element{
    width: 80%;
    /* background-color: #294551; */
    /* border: 2px solid white; */
    box-shadow: 2px 2px 5px white;
    padding: 10px;

    margin-left: 30px;
}

.mobile .contact_logo_container .contact_logo_element{
    margin-left: 0;
    margin-top: 30px;
    padding-top: 30px;
    padding-bottom: 30px;
}



.contact_logo_container .contact_logo_element:hover{
    box-shadow: 2px 2px 20px white;

}


.contact_logo_container .contact_logo_element:hover{
    background-color: #294551;
    cursor: pointer;
}

.contact_logo_container .contact_logo_element .text{
    width: 70%;
    font-size: 1.3rem;
    word-wrap: break-word; 
}


.contact_logo_container .image_container{
    width: 60px;
    height: 60px;
}

/* Location Container */

.location_container{
    width: 80%;
    height: 80%;

    background-image: url("/img/office_blurry_2.webp");
    background-size: cover; /* Ensures the image covers the entire area */
    background-position: center; /* Centers the image */
    background-repeat: no-repeat; /* Prevents tiling */

    position: absolute;
    top: 140%;
    right: 10%;
}

.mobile .location_container{
    width: 100%;
    height: 80%;

    top: 100%;
    right: 0;
    
}

.location_container iframe{
    border-radius: 20px;
    box-shadow: 5px 5px 10px white;
    max-width: 80%;
    max-height: 90%;
    width: 80%;
    height: 80%;
}

.mobile .location_container iframe{
    height: 90%;
}

/* Form Container */

.form_container{
    width: 55%;
    height: 100%;

    background-image: url("/img/office_blurry.webp");
    background-size: cover; /* Ensures the image covers the entire area */
    background-position: center; /* Centers the image */
    background-repeat: no-repeat; /* Prevents tiling */

    position: absolute;
    top: 0;
    right: 0;

}

.mobile .form_container{
    width: 100%;
    height: 80%;

    top: 200%;
    right: 0;

}

.form_container form{
    width: 70%;
}

.form_container .input{
    height: 70px;
    width: 100%;
    background-color: #2945517f;
    margin-top: 10px;
    color: white;
    font-size: 2rem;

    text-align: center;
    outline: none;

    box-shadow: 2px 2px 10px white;
    border: 1px solid black;
}

.mobile .form_container .input{
    font-size: 1.5rem;
}

.form_container .input:hover{
    background-color: #294551;
    box-shadow: 5px 5px 20px white;

}

.form_container .input:focus{
    background-color: #294551;
    box-shadow: 5px 5px 20px white;

}

.form_container input::placeholder{
    color: white;
}

.form_container  textarea.input{
    height: 150px;
    resize: none;
}

.form_container textarea::placeholder{
    color: white;
}

.form_container button.input{
    height: 70px;
    width: 300px;

    margin-top: 30px;
    border-radius: 20px;

    text-align: center;
    outline: none;
}


body footer{
    margin-top: 200vh;
}

.mobile footer{
    margin-top: 220vh;
}