/*=========================
    Testimonial Slider
=========================*/

.cts-slider-wrapper {
    position: relative;
    /*max-width: 900px;*/
    /*margin: 60px auto;*/
    /*padding: 20px;*/
}

.ctsSwiper {
    overflow: hidden;
}

.cts-card {
    /*background: #f8f8f8;
    border-radius: 24px;*/
    /*padding: 60px 50px;*/
    text-align: center;
    position: relative;
    /*min-height: 520px;*/
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Avatar */

/*.cts-avatar {
    width: 95px;
    height: 95px;
    margin: 0 auto 25px;
}

.cts-avatar img {
    width: 95px;
    height: 95px;
    border-radius: 50%;
    object-fit: cover;
}*/

/*.cts-avatar-placeholder {
    width: 95px;
    height: 95px;
    border-radius: 50%;
    background: #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    font-weight: bold;
}*/

.cts-avatar-placeholder {
    margin-bottom: 20px;
}

/* Workshop */

.cts-workshop {
    font-family: "Montserrat", Sans-serif !important;
    font-size: 14px;
    font-weight: 700;
    line-height: 25px;
    color: #3c3950;
    text-transform: uppercase;
}


/* Content */

/*.cts-content {
    max-width: 650px;
    margin: auto;
}
*/

.cts-content p {
    font-family: "Source Sans Pro", Sans-serif !important;
    font-size: 18px;
    line-height: 20px;
    color: #3c3950;
    margin: 0;
    font-weight: 300;
    padding: 14px 80px 0px;
}

/* Quote */

.cts-quote {
    margin-top: 20px;
    font-size: 70px;
    color: #ef8b2c;
    line-height: 1;
}

/* Name */

.cts-name {
    margin-top: 10px;
    font-size: 22px;
    font-weight: 700;
}

/* Designation */

.cts-designation {
    margin-top: 6px;
    color: #777;
    font-size: 15px;
}

/* Navigation */

/*.cts-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 35px;
}

.cts-prev,
.cts-next {
    border: none;
    background: transparent;
    font-size: 18px;
    cursor: pointer;
    color: #333;
    font-weight: 600;
    transition: .3s;
}

.cts-prev:hover,
.cts-next:hover {
    color: #ef8b2c;
}
*/

/*.cts-slider-wrapper {
    position: relative;
    max-width: 900px;
    margin: 60px auto;
}
*/
/* Navigation */

.cts-navigation {
    position: absolute;
    top: 50%;
    left: 0px;
    right: 0px;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 10;
}

.cts-prev,
.cts-next {
    pointer-events: auto;
    width: 40px;
    height: 40px;
    border: none;
    background: #d9e1e4;
    color: #1f2b3d;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: .3s;
}

.cts-prev:hover,
.cts-next:hover {
    background: #ef8b2c;
    color: #fff;
}

.cts-prev:focus-visible,
.cts-next:focus-visible{
    outline: 0px;
}


/* Swiper */

.swiper-slide {
    height: auto;
}

/* Responsive */

@media(max-width:768px){

    .cts-card{
        padding:40px 25px;
        min-height:auto;
    }

    .cts-workshop{
        font-size:18px;
    }

    .cts-content p{
        font-size:16px;
    }

    .cts-quote{
        font-size:50px;
    }

    .cts-name{
        font-size:20px;
    }

    .cts-navigation{
        margin-top:20px;
    }

    .cts-prev,
    .cts-next{
        font-size:16px;
    }

}