.testimonial2__list{
    display: flex;
    flex-wrap: wrap;
    margin: -20px;
    font-size: 16px;
    overflow: inherit;
}

.testimonial2__item{
    box-sizing: border-box;
    flex: 0 0 50%;
    max-height: 358px;
    padding: 20px;
    position: relative;
    transition: all 0.3s ease;
}

.testimonial2__wrapper{
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 10px 50px rgba(50, 60, 72, 0.16);
    transition: all 0.3s ease;
}

.testimonial2__body{
    align-items: flex-start;
    display: flex;
    padding: 40px;
    position: relative;
}

.testimonial2__body span{
    flex: 0 0 48px;
}

.testimonial2__body span svg{
    width: 100%;
}

.testimonial2__footer{
    align-items: center;
    border-top: 1px solid #e1e5ec;
    border-bottom: 4px solid #b4bcc8;
    border-radius: 0 0 10px 10px;
    display: flex;
    justify-content: space-between;
    padding: 25px 40px;
    position: relative;
}

.testimonial2__footer__icon-decoration{
    bottom: -5px;
    left: 40px;
    position: absolute;
}

.testimonial2__quote__wrapper{
    min-height: 102px;
    position: relative;
}

.testimonial2__quote{
    transition: initial;
    margin: 0;
    overflow: hidden;
    padding: 0 20px;
    position: relative;
}

.testimonial2__quote p{
    font-size: 16px;
    line-height: 1.4em;
}

.testimonial2__quote-icon-first svg{
    transform: rotate(180deg);
}

.testimonial2__footer__name{
    font-size: 1.5em;
    color: #ff9000;
    font-weight: bold;
    line-height: 1.2em;
}
.testimonial2__footer__title{
    text-transform: uppercase;
    color: #b4bcc8;
    font-size: 0.875em;
}

.testimonial2__quote__wrapper a{
    color: #ff9000;
    font-size: 0.875em;
    font-weight: bold;
    margin-left: 20px;
    text-transform: uppercase;
}

.show-more-button{
    cursor: pointer; 
    color: #ff9000;
    font-size: 0.875em;
    font-weight: bold;
    margin-left: 20px;
    margin-top: 10px;
    text-transform: uppercase;
}





.testimonial2__item.active .testimonial2__wrapper{
    box-shadow: 0 10px 50px rgba(50, 60, 72, 0.32);
}

.active_parent .testimonial2__item,
.active_parent .testimonial__paginate{
    opacity: 0.25!important;
    pointer-events: none;
}

.active_parent .testimonial2__item.active{
    z-index: 2;
    opacity: 1!important;
    pointer-events: initial;
}


.testimonial__paginate{
    align-items: center;
    justify-content: center;
    display: flex;
    font-size: 14px;
    font-weight: bold;
    margin-top: 40px;
    text-transform: uppercase;
}

.testimonial__paginate a, .testimonial__paginate span{
    display: block;
    padding: 10px 16px;
}

.testimonial__paginate a{
    border: 1px solid #e1e5ec;
    cursor: pointer;
    margin-right: -1px;
    position: relative;
}

.testimonial__paginate a: hover{
    color: #ff9000;
}

.testimonial__paginate a.previous_link{
    border-radius: 4px 0 0 4px;
}

.testimonial__paginate a.next_link{
    border-radius: 0 4px 4px 0;
}

.testimonial__paginate a.jp-current{
    border: 1px solid #ff9000;
    background: #ff9000;
    color: #fff;
    z-index: 1;
}

.testimonial__paginate a.jp-disabled{
    background: #e1e5ec;
    color: #b9bec3;
}


.show-more-less-handler{
    color: #ff9000;
    font-size: 0.875em;
    font-weight: bold;
    margin-left: 20px;
    text-transform: uppercase;
}



@media screen and (max-width: 1600px) {

    .testimonial2__list{
        margin: -15px;
    }

    .testimonial2__item{
        padding: 15px;
    }

    .testimonial2__body{
        padding: 25px;
    }

    .testimonial2__footer{
        padding: 15px 25px;
    }

    .testimonial2__body span{
        flex: 0 0 32px;
    }

}

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

    .testimonial2__item{
        flex: 0 0 100%;
    }

}

@media screen and (max-width: 480px) {
	
	.testimonial__paginate a, .testimonial__paginate span {
		padding: 8px 10px;
	}

}

@media screen and (max-width: 360px) {

    .testimonial2__body span{
        display: none;
    }

    .testimonial2__quote{
        padding: 0;
    }

    .testimonial2__quote__wrapper a{
        margin-left: 0;
    }
	
	.show-more-button{
		margin-left: 0;
	}

}