.testimonial_section {
    background: #DCDCDD;
    padding: 50px 15px;
    position: relative;
    max-width: 1440px;
    margin: auto;
}

.testimonial_section .shadowhealth_carousel-wrapper {
    overflow: hidden;
    width: 90%;
    margin: auto;
}

.testimonial_section .shadowhealth_carousel-wrapper * {
    box-sizing: border-box;
}

.testimonial_section .shadowhealth_carousel {
    transform-style: preserve-3d;
}

.testimonial_section .shadowhealth_carousel__item {
    opacity: 0;
    position: absolute;
    top: 0;
    width: 100%;
    margin: auto;
    padding: 1rem 4rem;
    z-index: 100;
    transition: transform .3s, opacity .3s, z-index .3s;
    min-height: 100px;
}

.testimonial_section .shadowhealth_carousel__item.initial,
.testimonial_section .shadowhealth_carousel__item.active {
    opacity: 1;
    position: relative;
    z-index: 900;
}

.testimonial_section .shadowhealth_carousel__item.prev,
.testimonial_section .shadowhealth_carousel__item.next {
    z-index: 800;
}

.testimonial_section .shadowhealth_carousel__button--prev,
.testimonial_section .shadowhealth_carousel__button--next {
    position: absolute;
    top: 50%;
    width: 3rem;
    height: 3rem;
    color: #fff;
    background-color: transparent;
    transform: translateY(-50%);
    cursor: pointer;
    z-index: 1001;
    /* Sit on top of everything */
    border: 1px solid transparent;
    border-radius: 50%;
}

.testimonial_section .shadowhealth_carousel__button--prev:hover,
.testimonial_section .shadowhealth_carousel__button--next:hover {
    color: #fff;
}

.testimonial_section .shadowhealth_carousel__button--prev {
    left: 0;
}

.testimonial_section .shadowhealth_carousel__button--next {
    right: 0;
}

.testimonial_section .shadowhealth_carousel__button--prev::after {
    content: " ";
    position: absolute;
    width: 15px;
    height: 15px;
    top: 50%;
    left: 54%;
    border-right: 4px solid #B9B9B9;
    border-bottom: 4px solid #B9B9B9;
    transform: translate(-50%, -50%) rotate(135deg);
}

.testimonial_section .shadowhealth_carousel__button--next::after {
    content: " ";
    position: absolute;
    width: 15px;
    height: 15px;
    top: 50%;
    left: 47%;
    border-right: 4px solid #B9B9B9;
    border-bottom: 4px solid #B9B9B9;
    transform: translate(-50%, -50%) rotate(-45deg);
}

.testimonial_section .shadowhealth_carousel__button--prev:hover::after,
.testimonial_section .shadowhealth_carousel__button--next:hover::after {
    border-right: 4px solid #007398;
    border-bottom: 4px solid #007398;
}

.testimonial_section .heading {
    text-align: center;
    font-size: 38px;
    font-weight: lighter;
    line-height: 1.6;
    margin-bottom: 12px;
    color: #505050;
}

.testimonial_section .content {
    font-family: var(--elsevier-sans), Arial, sans-serif;
    text-align: left;
    font-size: 30px;
    font-style: italic;
    line-height: 1.6;
    font-weight: lighter;
    width: 60%;
    min-height: 70px;
    margin: auto;
    color: #505050;
    animation-name: testimonial;
    animation-duration: 1s;
    animation-fill-mode: forwards;
}

@keyframes testimonial {
    0% {
        opacity: 0;
        transform: scale3d(0, 0, 1);
    }

    100% {
        opacity: 1;
        transform: scale3d(1, 1, 1);
    }
}

.testimonial_section .cta-section {
    text-align: center;
    transform-style: preserve-3d;
}

.testimonial_section .cta-section .cta {
    font-family: var(--elsevier-sans), Arial, sans-serif;
    display: inline-block;
    border: 2px solid #007398;
    padding: 8px 15px;
    color: #007398;
    font-size: 20px;
    line-height: 1.6;
    text-decoration: none;
}

.testimonial_section .cta-section .cta:hover {
    color: #fff;
    background-color: #007398;
}

.testimonial_section .testimonial-content {
    font-family: var(--elsevier-sans), Arial, sans-serif;;
    font-size: 30px;
    line-height: 1.6;
    font-style: italic;
    text-align: left;
}

.testimonial_section .testimonial-name {
    display: block;
    margin-top: 20px;
    font-family: var(--elsevier-sans), Arial, sans-serif;;
    font-style: normal;
    font-size: 20px;
    line-height: 1.6;
    text-align: left;
}

.testimonial_section .testimonial-institution {
    display: block;
    margin-top: 12px;
    font-family: var(--elsevier-sans), Arial, sans-serif;;
    font-size: 20px;
    font-style: normal;
    line-height: 33px;
    text-align: left
}

.testimonial_section .testimonial-single {
    width: 70%;
    position: relative;
    max-width: 1440px;
    margin: auto;
}

.testimonial_section .testimonial-double {
    width: 90%;
    position: relative;
    max-width: 1440px;
    margin: auto;
}

.testimonial_section .testimonial-single .testimonial-name,
.testimonial_section .testimonial-double .testimonial-name,
.testimonial_section .testimonial-single .testimonial-institution,
.testimonial_section .testimonial-double .testimonial-institution {
    text-align: left;
}

.testimonial_section .testimonial-double-cell {
    padding: 0 30px;
}

@media screen and (max-width: 767px) {
    .testimonial_section .content {
        width: 90%;
    }

    .testimonial_section .testimonial-single {
        width: 100%;
    }

    .testimonial_section .testimonial-double {
        width: 100%;
    }

    .testimonial_section .testimonial-double-cell {
        padding: 0 15px;
        margin-bottom: 40px;
    }
    
    .testimonial_section .shadowhealth_carousel-wrapper {
        width: 100%;
    }
    
    .testimonial_section .shadowhealth_carousel__item {
        padding: 1rem 2rem;
    }
    
    .testimonial_section .shadowhealth_carousel__button--prev {
        left: -15px;
    }
}
