
/*testimonial*/


.testimonial-header {
    width: max-content;
    border-bottom: 2px solid #F1592B;
    font-size: 48px;
    font-weight: 600;
    text-transform: capitalize;
}


.testimonial-link {
    width: max-content;
    padding-left: 20px;
    padding-right: 20px;
    height: 50px;
    background: #072a70;
    text-decoration: none;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-transform: capitalize;
    border-radius: 6px;
}

.testimonial-img-sec {
    display: flex;
    align-items: center;
    gap: 20px;
}

.testimonial-img {
    width: 70px;
    height: 70px;
    border-radius: 6px;
    object-fit: cover;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: space-between;
    height: 70px;
}

.testimonial-author h2 {
    font-size: 24px;
    font-weight: 500;
}

.testimonial-rating img {
    width: 32px;
    height: 32px;
}

.testimonial-rating span {
    font-size: 16px;
    font-weight: 500;
    color: #F1592B;
}

.testimonial-rating {
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-message {
    gap: 10px;
}

.info-message span {
    font-size: 16px;
    font-weight: 500;
    color: #000B41;
}

.info-message img {
    width: 18px;
    height: 18px;
}

.testimonial-text {
    font-size: 16px;
    color: #95979C;
    font-weight: 400;
    line-height: 1.6;
}

.testimonial-card {
    height: 320px;
    position: relative;
}

.testimonial-date {
    position: absolute;
    bottom: 20px;
    font-size: 16px;
    font-weight: 400;
    color: #95979C;
}

@media(max-width:575px) {
    .testimonial-header {
        font-size: 30px;
    }

    .testimonial-line {
        flex-direction: column;
        gap: 20px;
    }

    .testimonial-card {
        height: auto;
    }

    .testimonial-date {
        position: static;
        margin-top: 30px;
    }

    .testimonial-author h2 {
        font-size: 18px;
    }

    .testimonial-rating img {
        width: 20px;
        height: 20px;
    }
}

@media(min-width:576px) and (max-width:991px) {
    .testimonial-header {
        font-size: 40px;
    }

    .testimonial-line {
        flex-direction: column;
        gap: 20px;
    }

    .testimonial-card {
        height: 400px;
    }

    .testimonial-date {
        position: static;
        margin-top: 30px;
    }

    .testimonial-author h2 {
        font-size: 18px;
    }

    .testimonial-rating img {
        width: 20px;
        height: 20px;
    }
}

@media(min-width:992px) and (max-width:1199px) {
    .testimonial-header {
        font-size: 40px;
    }

    .testimonial-line {
        flex-direction: column;
        gap: 20px;
    }

    .testimonial-card {
        height: 400px;
    }

    .testimonial-date {
        position: static;
        margin-top: 30px;
    }

    .testimonial-author h2 {
        font-size: 24px;
    }

    .testimonial-rating img {
        width: 20px;
        height: 20px;
    }
}

