/* About banner */
.about-banner {
    padding-top: 100px;
    padding-bottom: 100px;
}

@media (max-width: 1199px) {
    .about-heading {
        font-size: 40px;
    }
}

@media (max-width: 400px) {
    .about-heading {
        font-size: 32px;
    }
}

.about-flexbox-size {
    width: 45%;
}

.about-banner-img {
    width: 100%;
    height: 100%;
    border-radius: 20px;
}

.about-flexbox-text .heading {
    margin-bottom: 30px;
}

.about-flexbox-text .para {
    margin-bottom: 40px;
}

.badges span {
    border-radius: 5px;
    padding: 5px 10px;
    background-color: #A51B1B;
    color: white;
    font-size: 13px;
    font-weight: 600;
    transition: background-color 0.7s ease, color 0.7s ease;
}

.badges span:hover {
    cursor: pointer;
    background-color: white;
    color: #A51B1B;
}

@media (max-width: 1199px) {
    .about-banner {
        padding-top: 80px;
        padding-bottom: 80px;
    }

    .about-banner-box {
        justify-content: space-between !important;
    }
}

@media (max-width: 991px) {
    .about-banner-box {
        justify-content: center !important;
    }

    .about-flexbox-size {
        width: 80%;
    }

    .about-flexbox-text {
        padding-left: 30px;
        margin-top: 50px;
    }
}

@media (max-width: 500px) {
    .about-banner {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .about-flexbox-size {
        width: 95%;
    }

    .badges span {
        padding: 4px 8px;
        font-size: 13px;
        font-weight: 600;
    }
}

/* Why us */
.about-why-us {
    padding-bottom: 90px;
}

.about-why-us-row .content-div {
    width: 50%;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 2px 2px 7px rgb(197, 197, 197);
}

.about-why-us-row .content-div:hover {
    cursor: pointer;
    transform: scale(1.02);
    box-shadow: 2px 2px 7px rgb(116, 116, 116);
}

.content-div div img {
    width: 220px;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.content-div div p {
    color: rgb(100, 100, 100);
    line-height: 1.4;
}

.content-div .text-div {
    margin-top: 2px;
}

@media (max-width: 991px) {
    .about-why-us-row {
        flex-direction: column;
    }

    .content-div {
        width: 80% !important;
    }
}

@media (max-width: 600px) {
    .content-div {
        width: 100% !important;
    }
}

@media (max-width: 470px) {
    .about-container {
        padding: 0% 10%;
    }

    .content-div {
        flex-direction: column;
    }

    .content-div .text-div {
        padding: 0px 10px 20px 5px;
    }

    .content-div div img {
        width: 100%;
        height: 200px;
    }
}

@media (max-width: 380px) {
    .about-container {
        padding: 0% 5%;
    }
}

/* Testimonial */
.swiper {
    width: 100%;
    height: fit-content;
    padding: 50px 100px 70px 100px;
}

.about-testimonial {
    background-color: #F5F5F5;
    padding-top: 70px;
    padding-bottom: 90px;
}

.testimonial-card {
    background-color: white;
    padding: 50px 60px;
    border-radius: 15px;
}

.testimonial-card p {
    color: rgb(100, 100, 100);
}

.testimonial-card:hover {
    cursor: pointer;
    transform: scale(1.02);
}

@media (max-width: 1100px) {
    .swiper {
        padding: 40px 60px 60px 70px;
    }
}

@media (max-width: 991px) {
    .container {
        max-width: 100%;
    }

    .testimonial-card {
        padding: 40px 40px;
    }
}

@media (max-width: 700px) {
    .swiper {
        padding: 40px 20px 60px 20px;
    }

    .testimonial-card {
        padding: 40px 30px;
    }
}

@media (max-width: 600px) {
    .swiper {
        padding: 40px 50px 40px 50px;
    }

    .testimonial-card {
        padding: 40px 20px;
    }
}

@media (max-width: 420px) {
    .swiper {
        padding: 30px 20px 40px 20px;
    }
}