.about-us-section {
    position: relative;
}

.about-us-background {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    z-index: -1;
}

.about-us-background-img {
    opacity: 30%;
    width: 100%;
}

.about-us-booking-wrapper {
    display: flex;
    justify-content: space-between;
}

.about-us-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
    flex: 0 0 40%;
}

.about-us-title {
    font-family: 'EBGaramond';
    font-weight: 700;
    line-height: 57px;
    letter-spacing: 0;
    margin: 0;
}

.about-us-text {
    font-weight: 700;
    margin: 0;
}

.testimonials-wrapper {
    padding-top: var(--spacing-large);
}

.testimonials-list {
    display: flex;
    gap: 24px;
    justify-content: center;
}

.testimonial-item {
    flex: 1 0 calc(33% - 24px);
    background: var(--white);
    color: var(--black);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
}

.testimonial-content {
    display: flex;
    flex-direction: column;
    padding: 52px 36px;
    gap: 20px;
    height: 100%;
    justify-content: space-between;
}

.testimonials-title {
    margin-top: 0;
    text-align: center;
}

.testimonial-text {
    font-weight: 500;
    line-height: 135%;
    letter-spacing: 0;
    text-align: center;
    flex: 0 0 35%;
}

.rating-wrapper {
    align-self: center;
}

.rating-wrapper svg path {
    fill: #FFAC33;
}

.testimonial-link {
    color: var(--black);
    font-weight: 500;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0;
    text-align: center;
    text-decoration: underline !important;
    opacity: 80%;
}

.testimonial-footer {
    background: var(--purple);
    color: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 0 0 20px 20px;
    padding: 24px 0;
    gap: 6px;
    margin-top: auto;
}

.testimonial-footer p {
    margin: 0;
}

.testimonial-date {
    font-weight: 400;
    font-size: 16px;
    line-height: 130%;
    letter-spacing: 0;
    opacity: 85%;
}

.testimonial-name {
    font-weight: 600;
    font-size: var(--body-text);
    line-height: 100%;
    letter-spacing: 0;
}

form#motorbike-tour-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Large devices (desktops, less than 1200px) */
@media (max-width: 1200px) {

    .no-form .about-us-booking-wrapper .about-us-content {
        flex: 1 0 100%;
    }

    .testimonials-wrapper {
        padding-inline: 0;
    }
    
}

@media (max-width: 1040px) {

    .about-us-booking-wrapper {
        display: flex;
        flex-direction: column;
    }

}

@media (max-width: 768px) {

    .testimonials-list {
        flex-direction: column;
    }

}

@media (min-width: 768px) and (max-width: 992px) {

    .testimonial-content {
        padding: 30px 18px;
    }

}