.about-us-main-container {
    width: 95%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 10px;
    margin: 20vh auto 0rem;
    position: relative;
}

.about-us-heading {
    width: 95%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 10px;
}


/* .about-us-heading h2 {
    color: #1e3a8a;
    font-size: 2.5rem;
} */

.about-us-heading p {
    color: gray;
    text-align: center;
    font-size: 1.5rem;
}

.about-us-container {
    width: 95%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    gap: 10px;
    padding: 10px 0 0 0;
}

.about-us-underdiv {
    width: calc(100%/2);
    height: auto;
    /* margin: auto; */
    position: relative;
    flex-grow: 1;
}

.imagebox img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    z-index: 1;
    border-radius: 20px;
}

.about-us-detailbox {
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
    padding: 30px 20px;

}

.about-us-main-container .about-us-detailbox h2 {
    color: orange;
    font-size: 2rem;
    font-weight: bold;
    line-height: 1.1;
}

.about-us-detailbox p {
    font-size: 20px;
    line-height: 1.6;
    text-align: justify;
}

.about-us-detailbox button {
    border: none;
    background-color: rgb(47, 46, 46);
    color: white;
    padding: 20px 40px;
    border-radius: 10px;
    transition: all 0.1s;
    cursor: pointer;
}

.about-us-detailbox button:hover {
    transform: scale(0.9);
    box-shadow: 0 0 20px 0 gray;
}

.about-us-detailbox button:active {
    background-color: blue;
}

@media (max-width: 1200px) {
    .about-us-main-container {
        margin-top: 22vh;
        width: 95%;
    }

}

@media screen and (max-width:1024px) {
    .about-us-main-container {
        margin-top: 28vh;
        width: 95%;
    }

    .about-us-detailbox p {
        font-size: 17px;
        line-height: 1.5;
    }
}

@media screen and (max-width:768px) {
    .about-us-main-container {
        margin-top: 35vh;
    }

    .about-us-container {
        flex-direction: column-reverse;
        width: 100%;
    }

    .about-us-underdiv {
        width: 90%;
        height: auto;
        /* height: 300px; */
    }

    .about-us-detailbox {
        padding: 0;
    }

    .about-us-detailbox p {
        font-size: 15px;
        line-height: 1.5;
    }

    /* .imagebox {} */
}

@media screen and (max-width:550px) {
    .about-us-main-container {
        margin-top: 45vh;
        width: 100%;
    }
}
@media screen and (max-width:400px) {
    .about-us-main-container {
        margin-top: 60vh !important;
        width: 100%;
    }
}