.card-heading h2 {
    text-align: center;
    font-weight: bolder;
    padding: 40px;
}

.say-about-us-span {
    color: #FF2525;
}

.testimonial-name {
    color: #011685;
    font-weight: bold;
}

.cards {
    margin-top: 50px;
}

.item-testimonial.slick-slide img {
    width: 120px;
    height: 100px;
    border: 3px solid #000;
    border-radius: 50%;
    margin: 0 auto 25px;
}

.item-testimonial {
    padding: 15px;
    outline: none;
}

.item-inner-testimonial {
    background: linear-gradient(to right, rgba(255, 55, 55, 0.5), rgba(39, 39, 231, 0.5));
    border-radius: 18px;
    text-align: center;
    overflow-y: hidden;
    padding: 10px;
    max-height: 400px;
}

.item-inner-testimonial h4 {
    font-size: 20px;
}

.item-inner-testimonial p {
    padding-top: 10px;
    font-size: 14px;
    color: #000;
    letter-spacing: 1px;
    text-overflow: ellipsis;
    overflow-y: hidden;
}

.item-testimonial.slick-slide {
    transform: scale(0.8);
    opacity: 0.7;
    transition: ease-in-out .5s;
}

.item-testimonial.slick-slide.slick-current {
    transform: scale(1);
    opacity: 1;
}

@media only screen and (max-width: 600px) {
    .item-inner-testimonial {
        background: linear-gradient(to right, rgba(255, 55, 55, 0.5), rgba(39, 39, 231, 0.5));
        border-radius: 18px;
        text-align: center;
        padding: 10px;
        overflow-y: hidden;
        max-height: 500px;
        max-width: 300px;
    }

    .item-inner-testimonial h4 {
        font-size: 15px;
    }

    .item-inner-testimonial p {
        padding-top: 5px;
        font-size: 10px;
        color: #000;
        letter-spacing: 1px;
        text-overflow: ellipsis;
        overflow-y: hidden;
    }
    .card-heading h2 {
        font-size: 18px;
    }
}