body {
    width: 100vw;
    overflow-x: hidden;
}

.testimonial-carousel-outer {
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.glide {
    width: calc(100% - 4em);
    margin: 0 auto;
    position: static;
}

.glide * {
    user-select: none;
    -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
}

.glide__slides {
    margin-bottom: 0;
    padding-top: 25px;
    padding-bottom: 25px;
}

.glide__slide {
    border: 1px solid #000;
    position: relative;
    height: 425px;
    display: flex;
    flex-direction: column;
    /*align-items: center;
    justify-content: center;*/
    cursor: pointer;
}

.recipient-info {
    display: flex;
    align-items: center;
    padding: 0 2em;
    column-gap: 5%;
    margin-top: 2em;
    margin-bottom: 1.5em;
    width: 100%;
}

.recipient-info * {
    display: block;
    line-height: 1.5;
}

.recipient-icon {
    width: 36%;
    max-width: 107px;
    margin-bottom: 20px;
}

.recipient-info strong {
    font-size: 20px;
}

.slide-text {
    max-height: calc(100% - 2em);
    overflow-y: auto;
    padding: 0 2em;
    margin-top: 2em;
}

.recipient-slide .slide-text {
    margin-top: 0;
    min-height: 60%;
}

.slide-text * {
    font-size: 14px;
    line-height: 1.7;
    display: block;
}

.slide-text-bottom strong {
    font-size: 16px;
}

.slide-text-bottom strong,
.slide-text-bottom,
.recipient-info span {
    display: block;
    font-weight: 200;
}

.slide-text > :last-child {
    margin-bottom: 3em;
}

.quote-icon {
    width: 23%;
    position: absolute;
    top: 0;
    right: 2em;
    transform: translateY(-50%);
    background: #fff;
    max-width: 90px;
}

.glide__arrows {
    pointer-events: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.glide__arrow {
    pointer-events: all;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
}

.glide__arrow img {
    height: 30px;
}

.glide__arrow--left {
    left: 0;
}

.glide__arrow--right {
    right: 0;
}

.quote-section {
    margin: 5em auto 4em auto;
}

.quote {
    border: 1px solid #000;
    padding: 3em;
    position: relative;
}

.quote::before {
    content: '';
    background-image: url(/lwf/images/icons/bxs-quote-alt-left.svg);
    background-color: #fff;
    position: absolute;
    top: 0;
    left: 0;
    transform: translate(-30%, -40%);
    height: 100px;
    width: 100px;
    background-size: contain;
    background-repeat: no-repeat;
}

.quote p {
    margin-bottom: 0;
}

.quote p,
article p {
    z-index: 10;
    position: relative;
}

.quote-img {
    height: 100%;
    width: 100%;
    background-size: cover;
    background-position: center;
    min-height: 265px;
}

@media (max-width: 1400px) {
    .slide-text-bottom, 
    .recipient-info span {
        font-size: 14px;
    }
}

@media (max-width: 992px) {
    .quote-img {
        background-position: center 40%;
        min-height: 350px;
    }
    .quote {
        margin-bottom: 2em;
    }
    .scroll-more {
        margin-bottom: 0;
    }
}

@media (max-width: 480px) {
    .quote {
        padding: 2.5em;
    }
    .quote-section {
        margin-top: 4em;
    }
    .recipient-info,
    .slide-text {
        padding-left: 1.5em;
        padding-right: 1.5em;
    }
    .recipient-slide .slide-text {
        height: 68%;
    }
    .recipient-icon {
        width: 44%;
    }
    .quote-icon {
        right: 1.5em;
    }
    .glide__slide {
        height: 470px;
    }
}