.testimonials-swiper .swiper-slide {
    display:flex;
    justify-content:space-between;
    align-items:stretch;
    gap:60px;
}
.testimonials-swiper__col {
    width:100%
}
.testimonials-swiper__col--content {
    background: var(--light-grey);
    padding:60px;
    display:flex;
    flex-direction:column;
    gap:30px;
}
.testimonials-swiper--contractor-first .testimonials-swiper__contractor-content {order:1;}
.testimonials-swiper--contractor-first .testimonials-swiper__content-wrapper {order:2;}
.testimonials-swiper--contractor-last .testimonials-swiper__content-wrapper {order:1;}
.testimonials-swiper--contractor-last .testimonials-swiper__contractor-content {order:2;}
.testimonials-swiper__contractor-content {
    display:flex;
    align-items:flex-start;
    justify-content:space-between;
    width:100%;
}
.testimonials-swiper .testimonials-swiper__testimonial--small {font-size:15px;}
.testimonials-swiper .testimonials-swiper__testimonial--large {font-size:23px;}
.testimonials-swiper__title {margin-bottom:5px;}
.testimonials-swiper__logo-wrapper img {
    max-width:150px;
    max-height:70px;
}
.testimonials-swiper--short .testimonials-swiper__col--image {max-height:450px}
.testimonials-swiper--medium .testimonials-swiper__col--image {max-height:550px}
.testimonials-swiper--tall .testimonials-swiper__col--image {max-height:650px}
.testimonials-swiper__col--image {
    display:flex;
    align-items:center;
    justify-content:center;
}
.testimonials-swiper__col--image img {
    width:100%;
    height:100%;
    object-fit:cover;
}

.testimonials-swiper__bottom-wrapper {
    display:flex;
    justify-content: flex-end;
    column-gap:30px;
    position:relative;
    margin-top:20px;
}
.testimonials-swiper__nav-wrapper {
    display:flex;
    justify-content: flex-end;
    column-gap:20px;
}
.testimonials-swiper__nav {
    position:relative;
    left:auto;
    right:auto;
    top:auto;
    bottom:auto;
    height:auto;
    width:auto;
    display:block;
    margin:0;
}
.testimonials-swiper__nav::after {
    content:'';
    display:none;
}
.testimonials-swiper__nav svg {
    width:50px;
    height:50px;
    display:block;
}
.testimonials-swiper__nav-button {display:none;}

@media screen and (max-width:1024px) {
    .testimonials-swiper .swiper-slide {gap:30px}
    .testimonials-swiper__col--content {padding:40px;}
    .testimonials-swiper__contractor-content {flex-wrap:wrap;row-gap:15px}
}
@media screen and (max-width:767px) {
    .testimonials-swiper .swiper-slide {
        flex-direction:column;
        background:var(--light-grey);
        box-sizing: border-box;
    }
    .testimonials-swiper__col--content {padding: 30px 30px 0;}
    .testimonials-swiper__col--image {height:400px;}
    .testimonials-swiper__bottom-wrapper {justify-content:space-between;gap:20px;}
    .testimonials-swiper__nav-button {display:block;}
}
@media screen and (max-width:500px) {
    .testimonials-swiper__col--content {padding: 30px 20px 0;}
    .testimonials-swiper__contractor-content {flex-direction:column;}
    .testimonials-swiper__logo-wrapper {order:1;}
    .testimonials-swiper__title-wrapper {order:2;}
    .testimonials-swiper__col--image {height:300px;}
    .testimonials-swiper__bottom-wrapper {justify-content:space-around;flex-wrap:wrap;}
    testimonials-swiper__nav-wrapper {order:1;}
    .testimonials-swiper__nav svg {width:40px;height:40px;}
    .testimonials-swiper__nav-button {order:2;}
}