/* swiper common style */
.swiper-button-next, .swiper-button-prev {
    color: var(--link-text-color);
}
/* end of swiper common style */

/* customer image swiper  */
.customer-swiper-container {
    position: relative;
    width: 70%;
    overflow: hidden;
    margin: 0 auto;
}
.swiper-container-coverflow {
    overflow: hidden;
}

.customer-swiper-container .youtube-video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
}

.customer-swiper-container .youtube-video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

@media screen and (max-width: 767px) {
    .customer-swiper-container {
        width: 100%;
    }
}

@media screen and (min-width: 768px) and (max-width: 992px) {
    .customer-swiper-container {
        width: 90%;
    }
}

@media screen and (min-width: 993px) and (max-width: 1600px) {
    .customer-swiper-container {
        width: 80%;
    }
}
/* end of customer image swiper */

/* testimonial */
.testimonial-container {
    padding: 0 90px;
}

.testimonial-swiper-container {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.testimonial-swiper-container .swiper-slide {
    background: white;
    height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.testimonial-swiper-container .swiper-slide .quote {
    height: 50px;
    width: 100%;
}

.testimonial-swiper-container .swiper-slide .quote img {
    width: unset;
}

.testimonial-swiper-container .swiper-slide .content {
    font-size: 24px;
    font-weight: 900;
    color: darkgray;
    border-bottom: 0.5px solid #cccccc6e;
    width: 90%;
    flex: 1;
}

.testimonial-swiper-container .swiper-slide .content.medium {
    font-size: 30px;
    padding: 24px 0;
}

.testimonial-swiper-container .swiper-slide .content.short {
    font-size: 34px;
    padding: 30px 0;
}

.testimonial-swiper-container .swiper-slide .content.x-short {
    font-size: 34px;
    padding: 40px 0;
}

.testimonial-swiper-container .swiper-slide .userinfo {
    height: 80px;
    display: flex;
    justify-content: center;
    padding: 4px 0 0 0;
}

.testimonial-swiper-container .swiper-slide .userinfo .gender img {
    width: 40px;
    height: auto;
}

.testimonial-swiper-container .swiper-slide .userinfo .nameandposition .name {
    font-weight: 900;
}

.testimonial-swiper-container .swiper-slide .userinfo .nameandposition .position {
    color: gray;
    font-size: 12px;
}

@media screen and (max-width: 767px) {
    .testimonial-container {
        padding: 0 4px;
    }

    .testimonial-swiper-container .swiper-slide .content {
        font-size: 16px;
        padding: 20px 0;
    }

    .testimonial-swiper-container .swiper-slide .content.medium {
        font-size: 18px;
        padding: 10px 0;
    }

    .testimonial-swiper-container .swiper-slide .content.short {
        font-size: 19px;
        padding: 30px 0;
    }

    .testimonial-swiper-container .swiper-slide .content.x-short {
        font-size: 20px;
        padding: 40px 0;
    }
}

@media screen and (min-width: 768px) and (max-width: 992px) {
    .testimonial-container {
        padding: 0 10px;
    }

    .testimonial-swiper-container .swiper-slide .content {
        font-size: 20px;
    }

    .testimonial-swiper-container .swiper-slide .content.medium {
        font-size: 26px;
    }

    .testimonial-swiper-container .swiper-slide .content.short {
        font-size: 28px;
    }

    .testimonial-swiper-container .swiper-slide .content.x-short {
        font-size: 30px;
    }
}

/* end of testimonial */