

@font-face {
    font-family: 'Source Sans Pro';
    src: url('./fonts/SourceSansPro-Light.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
  }
  .testimonial-section {
    text-align: center;
    margin-top: 10px;
    padding: 60px 20px;

}

.testimonial-section h2{
    font-family: 'Source Sans Pro',Arial, Helvetica, sans-serif;
    font-size: 32px;
}
.slider {
    position: relative;
    max-width: 700px;
    margin: auto;
    overflow: hidden;
}

.slider-wrapper {
    overflow: hidden;
    width: 100%;
}

.slider-track {
    display: flex;
    transition: transform 0.6s ease-in-out;
}

.slide {
    min-width: 100%;
    padding: 20px;
    box-sizing: border-box;
}

.quote {
    font-family: 'Source Sans Pro',Arial, Helvetica, sans-serif;
    font-size: 40px;
    color: #ff7a9c;
}

.text {
    font-size: 24px;
    font-family: 'Source Sans Pro',Arial, Helvetica, sans-serif;
    color: #333;
    min-height: 120px;
    padding-left: 40px;
    padding-right: 40px;
    margin: 15px 0;
    line-height: 1.6;
}
@media (max-width:910px) {
    .text{
        font-size: 20px;
        padding-left: 5px;
        padding-right: 5px;
    }
}
.user {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.user img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    margin-bottom: 8px;
}

.user span {
    font-size: 14px;
    color: #666;
}

/* arrows */
#prevBtn, #nextBtn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #999;
    z-index: 1000;

}

#prevBtn { left: 0; }
#nextBtn { right: 0; }

#prevBtn:hover, #nextBtn:hover {
    color: #000;
}