/* #################################################################################*/
/*@SECTION: Contact Us Section Styles*/
/* #################################################################################*/
.contact-us-section {
    /* position: absolute; */
    top: 100vh;
    /* left: 0px;
    width: 100%;
    height: calc(100vh - 60px); */
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: white;
    transition: 0.5s ease-in-out;
    z-index: 8;
}

.contact-us-section.active {
    top: 0px;
}

.contact-us-container {
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.contact-us-form-container {
    position: relative;
    order: 1;
    height: 60%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url("../../images/dish-bg-image-1.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position-x: center;
    background-position-y: center;
    overflow: hidden;
}

.contact-us-form {
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 25px;
    width: 80%;
    background-color: white;
    border-radius: 20px;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.199);
    opacity: 0;
    transform: scale(0.5) translateY(500px);
}



.contact-us-btn {
    border: none;
    border-radius: 25px;
    background-color: #d70000;
    color: white;
    font-family: sans-serif;
    font-size: 16px;
    height: 50px;
    width: 200px;
    cursor: pointer;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.322);
}

.contact-us-btn:hover {
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.322);
}

.contact-us-form-container .blurFx {
    position: absolute;
    top: 0px;
    left: 0px;
    height: 100%;
    width: 100%;
    backdrop-filter: blur(5px);
    box-shadow: inset 0px 0px 20px black;
    background-color: #0000001f;
}

.contact-us-form-bg {
    z-index: 1;
    position: absolute;
    bottom: -10px;
    height: 100vw;
    width: 100%;
    filter: drop-shadow(0px 0px 20px black);
    transform: rotate(90deg);
}

.contact-us-content-container {
    order: 2;
    height: 40%;
    width: 100%;
    display: flex;
    gap: 20px;
    padding: 20px;
    flex-direction: column;
    justify-content: center;
    color: dimgray;
}

.contact-us-content-container .heading-section {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.contact-us-content-container .heading-section .heading-title {
    font-size: 12px;
    opacity: 0;
    transform: scale(0.5) translateY(500px);
}

.contact-us-content-container .heading-section h2 {
    font-size: 25px;
    font-weight: bold;
    color: dimgray;
    opacity: 0;
    transform: scale(0.5) translateY(500px);
}

.contact-us-content-container .description-section {
    color: gray;
    display: flex;
    font-size: 14px;
    line-height: 1.5;
    letter-spacing: 0.5;
    opacity: 0;
    transform: scale(0.5) translateY(500px);
}

/* #################################################################################*/
/*@TABLETS:
/* #################################################################################*/
@media screen and (min-width: 599px) and (max-width: 1029px) {}

/* #################################################################################*/
/*@PC:
/* #################################################################################*/
@media screen and (min-width: 1030px) {
    /* .contact-us-section {
        height: 100vh;
    } */

    .contact-us-container {
        height: 80%;
        width: 80%;
        flex-direction: row;
        border-radius: 20px;
        overflow: hidden;
    }

    .contact-us-form-container {
        height: 100%;
        width: 100%;
    }

    .contact-us-form-bg {
        height: 100%;
        top: 0px;
        right: -10px;
        transform: rotate(0deg);
    }

    .contact-us-content-container {
        height: 100%;
        width: 100%;
        align-items: center;
    }

    .contact-us-form {
        width: 500px;
    }

    .contact-us-content-container .heading-section h2 {
        font-size: 52px;
    }

    .contact-us-content-container .description-section {
        font-size: 16px;
        letter-spacing: 0.9;
    }

}