/* Aboutus Section */
.aboutus{
    padding: 80px 0 150px;
}
.aboutus .section-title-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.aboutus-wrapper{
    display: flex;
    justify-content: space-between;
}
.aboutus-img{
    width: 48%;
    display: flex;
    gap: 16px;
}
.aboutus-content{
    width: 48%;
}
.about-img1 {
    height: 442px;
    width: 52%;
    object-fit: cover;
    object-position: left center;
}
.aboutus-img div p{
    color: #fff;
}
.aboutus-img div span{
    color: #fff;
    font-size: 32px;
    display: block;
}
.about-img2 {
    height: 300px;
    width: 100%;
    object-fit: cover;
    object-position: left center;
    margin-bottom: 16px;
}
.stat{
    background: var(--secondary-color);
    padding: 32px 12px;
}

.aboutus-content p{
    font-size: 18px;
    line-height: 27px;
    margin-bottom: 14px;
}
.aboutus-content p span, .aboutus-content p span a {
    color: var(--primary-color);
    font-weight: bold;
}


@media (max-width:768px) {
    .aboutus .section-subtitle {
        text-align: center;
    }
    .aboutus-wrapper {
        row-gap: 40px;
        flex-wrap: wrap;
        justify-content: center;
    }
    .aboutus-img {
        width: 88%;
    }
    .about-img1 {
        height: 322px;
    }
    .about-img2 {
        height: 182px;
    }
    .aboutus-content {
        width: 100%;
    }
    
}
@media (max-width:480px) {
    .aboutus-img {
        width: 100%;
        gap: 12px;
    }
    .about-img2 {
        height: 190px;
        margin-bottom: 8px;
    }
    .stat {
        padding: 22px 12px;
    }
}