/*Testimonial cards*/

.testimonial-cards {
    display: flex;
    justify-content: center;
    padding: 5.6rem 0;
}

.testimonial-cards .testimonialsection {
    width: 90%;
    max-width: 1600px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.testimonial-cards .testimonialsection__headline {
    width: 80%;
    font-family: Josefin Sans, sans-serif;
    font-size: 4.8rem;
    font-weight: 500;
    line-height: 140%;
    text-align: center;
    color: #2c2c2c;
}

.testimonial-cards .testimonialsection__subline {
    font-family: Lato, sans-serif;
    font-size: 2rem;
    font-weight: 400;
    line-height: 3.1rem;
    text-align: center;
    color: #4b5563;
    margin-top: 2.4rem;
}

.testimonial-cards .testimonialsection__groupcontainer {
    width: 100%;
    overflow-x: scroll;
}

.testimonial-cards .testimonialsection__groupcontainer::-webkit-scrollbar {
    display: none;
}

.testimonial-cards .testimonialsection__groupcontainer__group {
    display: flex;
    gap: 3rem;
    margin-top: 5rem;
}

.testimonial-cards .testimonialsection__groupcontainer__group__testimonial {
    background-color: #fff;
    min-width: 40rem;
    padding: 4.2rem 4rem 6rem 4rem;
    border-radius: 3.2rem;
}

.testimonial-cards .testimonialsection__groupcontainer__group__testimonial__header {
    display: flex;
    gap: 1.2rem;
    align-items: center;
}

.testimonial-cards .testimonialsection__groupcontainer__group__testimonial__header .testimonial-avatar {
    width: 6.8rem;
    height: 6.8rem;
}

.testimonial-cards .testimonialsection__groupcontainer__group__testimonial__header .person-rating {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.testimonial-cards .testimonialsection__groupcontainer__group__testimonial__header .person-rating .person {
    font-family: Josefin Sans, sans-serif;
    font-size: 1.8rem;
    font-weight: 500;
    line-height: 140%;
    letter-spacing: -0.01em;
    text-align: left;
}

.testimonial-cards .testimonialsection__groupcontainer__group__testimonial__content {
    font-family: Lato, sans-serif;
    font-size: 1.8rem;
    font-weight: 400;
    line-height: 140%;
    text-align: left;
    margin-top: 3rem;
}

@media only screen and (min-width: 900px) and (max-width: 1060px) {
    .testimonial-cards .testimonialsection__headline {
        width: 95%;
        font-size: 4.4rem;
    }
}

@media only screen and (min-width: 800px) and (max-width: 900px) {
    .testimonial-cards .testimonialsection__headline {
        width: 95%;
        font-size: 4.3rem;
    }
}

@media only screen and (min-width: 600px) and (max-width: 800px) {
    .testimonial-cards .testimonialsection__headline {
        width: 100%;
        font-size: 3.8rem;
    }
}

@media only screen and (min-width: 500px) and (max-width: 600px) {
    .testimonial-cards .testimonialsection__headline {
        width: 100%;
        font-size: 3.8rem;
    }
}

@media only screen and (min-width: 360px) and (max-width: 500px) {
    .testimonial-cards .testimonialsection {
        padding: 3.6rem 0;
    }

    .testimonial-cards .testimonialsection__headline {
        width: 100%;
        font-size: 3.2rem;
        line-height: 120%;
    }
}

/*End for testimonial cards*/
