.aboutUsSection {
    width: 100%;
    max-width: 100%;
    margin: auto;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-between;
    gap: 30px;
}

.aboutUsSection h2 {
    font-size: 1rem;
}

.aboutUsSection p {
    font-size: 0.8rem;
    margin-top: 10px;
    color: #444;
}

.aboutUsSection > div:last-child {
    width: 100%;
    height: 100%;
}

.swiper {
    width: 200px;
    height: 290px;
}

.swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    font-size: 22px;
    font-weight: bold;
    font-variation-settings: "wght" 700;
    color: #fff;
    border-radius: 10px;
    overflow: hidden;
}

.swiper-slide img {
    display: block;
    border-radius: 10px;
}

@media (max-width: 800px) {
    .aboutUsSection {
        width: 100%;
        flex-direction: column;
        align-items: center;
    }

    .aboutUsSection > div:last-child {
        overflow: hidden;
    }
}