#about_us{
    background: #0c1928;
    height: 100%;
}
.about_us_header{
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
}
.about_us_sub_header{
    font-size: 1.25rem;
    font-weight: 500;
}
.about_us_paragraph{
    margin-top: -7px;
    margin-bottom: 25px;
}
.about_us_row{
    display: flex;
    flex-direction: row;
    /* align-items: center; */
    /* width: 100%; */
    height: 100%;
    gap: 30px;
    margin-bottom: 20px;
}
.about_us_left{
    display: flex;
    flex-direction: column;
    width: 65%;
    height: 100%;
    gap: 20px;
}
.about_us_right{
    display: flex;
    flex-direction: column;
    width: 35%;
    height: 100%;
    gap: 20px;
}


@media screen and (max-width: 1236px) {
    .about_us_container{
        width: 80%;
        /* background-color: #064b36; */
    }
    .about_us_row{
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .about_us_left{
        display: flex;
        flex-direction: column;
        width: 100%;
        /* width: 80%; */
        align-items: center;
    }
    .about_us_right{
        display: flex;
        flex-direction: column;
        width: 100%;
        /* width: 80%; */
        align-items: center;
    }
}

@media screen and (max-width: 768px){
    .about_us_row{
        gap: 20px;
    }
    .about_us_left{
        width: 100%;
    }
    .about_us_right{
        width: 100%;
    }
}