.testimonial-card {
    padding: 1rem;
    border-radius: 1rem;
    max-width: 280px;
    width: calc(100vw - 2rem);
    margin-top: 40px;
    background-color: var(--bs-white);
    color: var(--bs-dark);
}

.testimonial-card .profile-pic {
    border-radius: 50rem;
    max-width: 80px;
    position: relative;
    aspect-ratio: 1/1;
    width: 100%;
    object-fit: cover;
    top: -40px;
    margin: auto;
    background-color: inherit;
    box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.5);
}

.testimonial-card .profile-pic>img {
    width: 100%;
}

.testimonials .carousel-indicators button {
    background-color: rgb(var(--brand-clr-2));
}

.testimonials .carousel-control-prev>.carousel-control-prev-icon,
.testimonials .carousel-control-next>.carousel-control-next-icon {
    filter: brightness(50%) sepia(100) saturate(100) hue-rotate(180deg);
    filter: invert(1);
}

.testimonials .carousel-control-prev,
.testimonials .carousel-control-next {
    width: 50px;
    height: 50px;
    top: 50%;
    background-color: rgb(var(--brand-clr-4));
    border-radius: 50rem;
}

body.light-mode .testimonial-card {
    background-color: var(--bs-dark);
    color: var(--bs-white);
}

div.dark-card .testimonial-card {
    background-color: var(--bs-white);
    color: var(--bs-dark);
}