/** Reviews CSS **/
.testimonials_block{
    background:var(--light_grey_tone);
}
.testimonials_block ul li{
    list-style: none;
    position: unset;
    padding-left: unset;
    margin-bottom: unset;
}
.testimonials_block ul li:before{
    content:unset;
}
.container_testimonials {
  max-width: 90vw;
  padding-left: 10vw;
  overflow:hidden;
}
.testimonial_card{
    border-radius: 1rem;
    padding: 2rem 0;
}
.testimonials_content{
    display:flex;
    flex-direction:column;
    justify-content: space-between;
}
.testimonials_slider-wrapper {
    position: relative;
    overflow: auto;
    height: 15rem;
    cursor: pointer;
    padding: 0rem 5%;
    text-align: left;
}
.testimonials_slider__frame img {
    height: 200px;
    object-fit: cover;
    overflow: hidden;
    width: 100%;
}
.testimonials_slider__frame_special img{
    height: 80%!important;
}
.testimonials_slider__frame_special_content{
    background: radial-gradient(50% 100% at 50% 0%, #FE763C 0%, #F1592A 100%);
    color: #fff;
    height: 20%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.testimonials_slider-wrapper img{
    height: 100%;
    width:100%;
    object-fit:cover;
}
.testimonials_slider-wrapper p{
    color: #000;
    font-weight: normal;
}
.testimonials_slider-wrapper .quote_name{
    color: var(--black_tone);
    font-weight: 800;
    font-size: 30px;
    margin: .5rem 0 1rem 0;
}
.title_special_card{
    font-size: 30px;
}
.letter_review {
    background: var(--main_colour);
    border-radius: 10rem;
    color: #fff;
    font-size: 2rem;
    width: fit-content;
    padding: 0.9rem 1rem;
    margin-top: -2rem;
    margin-left: 1rem;
    position: relative;
}
    
.testimonial_badges{
    display: flex;
    gap: 1rem;
    margin: 2rem 0;
    justify-content: center;
}
.badge_frame {
    display:flex;
    align-items: center;
    justify-content: center;
    background: #F5F5F5;
    border: solid 2px #fff;
    padding: 0.5rem 2rem;
    margin: 2rem 0;
    width: 8rem;
    height: 4rem;
    border-radius: 20px;
    box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.15);
}
.badge_frame img{
    width: 100%;
    height:auto;
}
@media(orientation:portrait){
    .testimonials_slider-wrapper {
        position: relative;
		height: unset;
    }
    .testimonials_slider-wrapper img{
        height: 100%;
        object-fit:cover;
    }
    .container_testimonials{
        padding: 1rem 0rem;
		max-width: 95vw;
    }
    .testimonials_block{
        place-content: flex-end;
    }
    .badge_frame {
        margin: .7rem 0;
    }
    .testimonial_badges{
        display:grid;
        grid-template-columns:1fr 1fr;
    }
    .testimonial_badges > div:last-child {
        display: none;
    }
    .badge_frame {
        width: unset;
    }
    .testimonials_slider__frame {
        height: 65vh!important;
    }
}

/** Slider CSS **/
.glide {
    position: relative;
    width: 100%;
    box-sizing: border-box;
}
.glide * {
    box-sizing: inherit; }
.glide__track {
    overflow: hidden; }
.glide__slides {
    margin:0;
    padding: 2rem 0;
    position: relative;
    width: 100%;
    list-style: none;
    backface-visibility: hidden;
    transform-style: preserve-3d;
    touch-action: pan-Y;
    overflow: hidden;
    white-space: nowrap;
    display: flex;
    flex-wrap: nowrap;
    will-change: transform; 
}
.glide__slides_testimonials{
    padding: 2rem 0!important;
}
.glide__slides--dragging{
    user-select: none; 
}
.glide__slide {
    width: 100%;
    height: 100%;
    flex-shrink: 0;
    white-space: initial;
    user-select: none;
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: transparent;
}
.glide__slide a{
    user-select: none;
    -webkit-user-drag: none;
    -moz-user-select: none;
    -ms-user-select: none; 
}
.glide__arrows {
    -webkit-touch-callout: none;
    user-select: none; 
    position: absolute;
    margin-top: -5rem;
    left: 0;
    right: 0;
    width: 110px;
    margin: -5rem auto 0 auto;
}
.glide__arrow{
    padding: 0.5rem 0.7rem;
    color: var(--main_colour);
    background:#fff!important;
    font-size: 1.5rem;
    font-weight: bold;
    font-family: monospace;
}
.glide__arrow:hover{
    color: #fff;
    cursor: pointer;
}
.glide__bullets_testimonial {
    -webkit-touch-callout: none;
    user-select: none;
}
.glide--rtl {
    direction: rtl; 
}
.glide {
    cursor: -webkit-grab;
    margin-top: 0;
}
.slider__arrow--prev {
    left: 1.5rem;
}
.fas {
    right: 5px;
    position: absolute;
    top: 6px;
}
.slider__arrow--next {
    right: 1.5rem;
}
.slider__arrow {
    position: absolute;
    top: 50%;
    z-index: 1;
    width: 24px;
    height: 24px;
    margin-top: -9px;
    border-radius: 50%;
    background-color: #454545;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    -webkit-box-shadow: 0 0.5rem 4rem 0 rgba(0, 0, 0, 0.5);
    box-shadow: 0 0.5rem 4rem 0 rgba(0, 0, 0, 0.5);
}
.slider__arrow--prev {
    left: 1.5rem;
}
.testimonials_slider__frame[class*=active] {
    -webkit-box-shadow: none;
    box-shadow: none;
    transition: background 0.1s ease-in;
}
.testimonials_slider__frame {
    border-radius: 0.16667em;
    text-align: center;
    height: 75vh!important;
    box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.25);
    color: #fff;
    font-size: 1em;
    font-weight: 900;
    background: #F5F5F5;
    border-radius: 40px;
    border: 2px solid #fff;
    overflow: hidden;
    display:flex;
    flex-direction:column;
    justify-content:space-between;
}
.testimonials_stars{
    padding: .7rem 10%;
}
.testimonials_stars_inner{
    display: flex;
    justify-content: center;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(41, 35, 42, 0.2);
    padding: 1rem 0 0 0;
}
li.carousel_frame.glide__slide a{
    max-width: 5rem;
    display: flex;
}
.glide__bullets_testimonial{
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}
.container .testimonial-carousel button.glide__bullet.glide__bullet--active{
    cursor: pointer;
    width: 1rem;
    height: 1rem;
    border-radius: 1rem;
    border: none;
    background: var(--main_colour)!important;
    opacity: 1;
}
.container .testimonial-carousel button.glide__bullet{
    cursor: pointer;
    width: 1rem;
    height: 1rem;
    border-radius: 1rem;
    border: none;
    background: var(--main_colour_darker)!important;
    opacity: .5;
}
@media(min-width:1900px){
    .testimonials_slider__frame img{
        height: 250px;
    }
    .testimonials_slider-wrapper{
        font-size: 1.5rem;
        line-height: 2.5rem;
    }
}
@media(max-width: 767px){
    .testimonial_card {
        border-radius: 1rem;
        padding: 0;
    }
    .glide__slides{
        padding-top:0;
    }
}
@media(max-width:1300px){
    .testimonials_slider__frame img{
        height: 150px;
    }
    .testimonials_slider-wrapper .quote_name{
        font-size: 20px;
    }
}