.testimonial {
    overflow-x: hidden;
    width: 100vw;
    position: relative;
    left: 50%;
    transform: translate(-50%, 0px);
    padding: 2em 0;
}

.testimonial-track {
    overflow-x: auto;
    display: flex;
    width: 100%;
    padding: 3em 15vw;
}
.testimony-card{
    border: 2px solid #FFF;
    color: #fff;
    background: rgb(var(--blue));
    min-width: 600px;
    padding: 2em;
    margin-right: 50px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    /* box-shadow: 0px 0px 15px 0px rgba(var(--red),0.5), 0px 0px 10px 0px rgba(var(--beige),1), 1px -5px 30px 2px rgba(var(--blue),0.6); */
}


.card-header{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.card-header img{
    max-height: 60px;
}
.card-footer {
    display: flex;
    align-items: center;
}
.card-footer img{
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
}
.card-footer p{
    margin : 0px;
}
.testimonial .controls{
    position: relative;
    margin-top: 10vh;
    left: 15%;
    width: 100%;
    display: flex;
    align-items: center;
}
.card-content {
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 0px;
}
.controls .bar{
    width: 50%;
    height: 1px;
    display: block;
    background-color: #FFF;
    position: relative;
}

.controls .arrows{
    margin-left: 5vw;
    display: flex;
}

.controls .arrows > div{
    margin: 0 4em;
}

.controls .bar::before{
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: -2px;
    height: 5px;
    width: 100px;
    background-color: #FFF;
}

.testimonial h3{
    text-transform: uppercase;
    margin-left: 15%;
    font-size: 2em;
}
.card-header svg:first-child{
    scale: 0.7;
}

.card-header svg:first-child path{
    fill: #D40F7D;
    fill-opacity: 1;
}








@media screen and (max-width: 1280px), screen and (max-height: 1024px){

    .card-content {
        font-size: 16px;
        font-weight: 500;
        letter-spacing: 0px;
    }
    .testimony-card {
        min-width: 360px;
        padding: 2em;
        margin-right: 30px;
    }
    .testimonial .controls {
        margin-top: 5vh;
    }
}


@media (max-width: 1200px) {

}
/* IPAD PRO */
@media (max-width: 1024px) {


}

@media (max-width: 992px) {

}

/* IPAD */
@media (max-width: 768px) {

}

/* MOBILE */
@media (max-width: 576px) {
    .testimonial-track {
        padding: 3em 30px;
    }
    .testimony-card {
        min-width: 290px;
        height: auto;
        max-height: 400px;
        padding: 15px;
        margin-right: 30px;
        text-align: left;
    }
    .testimonial .controls {
        position: relative;
        margin-top: 15px;
        left: 0px;
        width: 100%;
        padding: 0px 30px;
    }
    .controls .bar{display: none;}
    .testimonial h3 {margin-left: 0px;}
    .grid {
        grid-gap: 15px 15px;
    }
    .controls .arrows{
      display: none;
    }
}
