/* -- Testimonials -- */
.testimonials-slider{
    padding-bottom: 50px;
    position: relative;
	overflow:hidden;
}
.review-item{
    border-radius: 10px;
    padding: 32px;
    max-width: 950px;
    margin: 0 auto;
}
.review-item p {
    font-size: 32px;
    line-height: 150%;
    margin-bottom: 40px;
    font-weight: 400;
    text-align: center;
}
.customer-info{
    text-align: center;
    font-weight: 600;
}
.testimonials-slider .swiper-navigation{
    position: relative;
}
.tbutton-prev{
    display: flex;
    position: absolute;
    left: calc(50% - 50px);
    top:0;
    width: fit-content;
    width: 40px;
    height: 40px;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    background-color: var(--accent);
    color: white;
}
.tbutton-next{
    display: flex;
    position: absolute;
    left: calc(50% + 10px);
    top:0;
    width: fit-content;
    width: 40px;
    height: 40px;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    background-color: var(--accent);
    color: white;
}
/* Testimonials End */
@media(max-width:767px){
	.review-item{
    padding: 32px 0;
}
.review-item p {
	font-size: 20px;}
}