.home-testimonials{
    padding:70px 20px;
    background:#1F2937;
}



.home-testimonials-box{
    max-width:1200px;
    margin:0 auto;
    background:#111827;
    border:1px solid rgba(221,231,235,0.2);
    border-radius:8px;
    padding: 65px 45px;
    overflow:hidden;
}
.home-testimonials-box h2 {
	text-align: center;
	margin-bottom: 40px;
	font-size: 38px;
}
.home-testimonials-viewport{
    overflow:hidden;
    width:100%;
}

.testimonial-track{
    display:flex;
    transition:transform .4s ease;
    will-change:transform;
}

.testimonial-item{
    flex:0 0 50%;
    padding:0 12px;
    box-sizing:border-box;
}

.testimonial-card{
    background:#141C2C;
    border:1px solid rgba(221,231,235,0.2);
    border-radius:8px;
    padding:25px;
    height:100%;
    box-sizing:border-box;
}

.testimonial-quote{
    margin-bottom:20px;
}

.testimonial-quote p{
    margin:0;
    color:#dde7eb;
    line-height:1.7;
    font-style:italic;
}

.testimonial-meta{
    display:flex;
    align-items:flex-start;
    gap:14px;
}

.testimonial-meta-text{
    display:flex;
    flex-direction:column;
    gap:4px;
}

.testimonial-name{
    color:#fff;
    font-weight:600;
}

.testimonial-company{
    color:#dde7eb;
}

.testimonial-industry{
    color:#dde7eb;
    font-size:14px;
}
.testimonial-icon-circle{
    width:36px;
    height:36px;
    min-width:36px;
    border-radius:50%;
    background:#319AB2;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:14px;
    flex-shrink:0;
}

.testimonial-name{
    color:#fff;
    font-weight:600;
}

.testimonial-company,
.testimonial-industry{
    color:#dde7eb;
}

.testimonial-controls{
    text-align:center;
    margin-top:25px;
}

.testimonial-controls button{
    width:40px;
    height:40px;
    border:none;
    border-radius:50%;
    background:#2A3444;
    color:#fff;
    cursor:pointer;
    margin:0 5px;
    transition:background .25s ease;
}

.testimonial-controls button:hover{
    background:#344055;
}

@media (max-width: 767px){
    .home-testimonials{
        padding:50px 15px;
    }

    .home-testimonials-box{
        padding:20px;
    }

    .testimonial-item{
        flex:0 0 100%;
        padding:0 8px;
    }

    .testimonial-card{
        padding:20px;
    }
}