/* #################################################################################*/
/*@SECTION: About Us Section Styles*/
/* #################################################################################*/
.about-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;
}

.about-us-section.active {
    top: 0px;
}

.about-us-container {
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.about-us-images-section,
.about-us-content-section {
    height: 50%;
    width: 100%;
    display: flex;
    padding: 20px;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.about-us-images-section {
    height: 300px;
    width: 300px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0px;
    padding: 0px;
}

.about-us-images-section .img-grid-section {
    height: 50%;
    width: 50%;
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-us-images-section .img-wrapper {
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-top-right-radius: 50%;
    border-bottom-left-radius: 50%;
    box-shadow: inset 0px 0px 20px #00000063;
    overflow: hidden;
    opacity: 0;
    transform: scale(0.5) translateY(20px);
}

.about-us-images-section .img-wrapper.iw2,
.about-us-images-section .img-wrapper.iw3 {
    border-top-left-radius: 50%;
    border-bottom-right-radius: 50%;
}

.about-us-images-section .img-wrapper img {
    height: auto;
    max-width: 100%;
    z-index: -1;
    transition: 0.5s ease-in-out;
}

.about-us-content-section {
    flex-direction: column;
    justify-content: center;
    align-items: start;
    gap: 20px;
    color: dimgray;
}

.about-us-content-section .heading-section {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.about-us-content-section .heading-section .heading-title {
    font-size: 12px;
    opacity: 0;
    transform: scale(0.5) translateY(500px);
}

.about-us-content-section .heading-section h2 {
    font-size: 25px;
    font-weight: bold;
    color: dimgray;
    opacity: 0;
    transform: scale(0.5) translateY(500px);
}

.about-us-content-section .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);
}

.about-us-btn-wrapper {
    display: flex;
    width: 100%;
}

.about-us-btn {
    width: 150px;
    padding: 10px;
    border: none;
    border-radius: 10px;
    background-color: #d70000;
    color: white;
    font-size: 14px;
    box-shadow: 5px 5px 10px #00000045;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
    opacity: 0;
    transform: scale(0.5) translateY(500px);
}

/* #################################################################################*/
/*@TABLETS:
/* #################################################################################*/
@media screen and (min-width: 599px) and (max-width: 1029px) {

    .about-us-content-section {
        height: 50%;
        width: 70%;
    }
}

/* #################################################################################*/
/*@PC:
/* #################################################################################*/
@media screen and (min-width: 1030px) {
    /* .about-us-section {
        height: 100vh;
    } */

    .about-us-container {
        height: 80%;
        width: 80%;
        flex-direction: row;
    }

    .about-us-images-section,
    .about-us-content-section {
        height: 100%;
        width: 50%;
        padding: 20px;
    }

    .about-us-images-section {
        height: 500px;
        width: 500px;
        padding: 0px;
        gap: 0px;
    }

    .about-us-images-section .img-wrapper img {
        height: 100%;
        width: 100%;
    }

    .about-us-content-section .heading-section h2 {
        font-size: 52px;
    }

    .about-us-content-section .description-section {
        font-size: 16px;
        letter-spacing: 0.9;
    }
}