.testimonial-card {
    position: relative;
    max-width: 80%;
    min-width: 400px;
    min-height: 300px;
    /* background-color: #212121; */
    border-radius: 5px;
    filter: drop-shadow(-6px 8px 16px #27030a);
    display: flex;
    justify-content: center;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

@media screen and (min-width: 768px) {
    .testimonial-card {
        width: 80%;
    }
}

.cards {
    position: absolute;
    width: 100%;
    height: 100%;
}

.card {
    position: relative;
    height: 100%;
}

.card-header {
    display: flex;
    position: relative;
    /* height: 6.4em; */
    height: 5rem;
    flex-direction: row !important;
    align-items: center;
    /* background-color: #2e2e2e; */
    padding: 1.5em 2em;
    gap: 0 20px;
}

.card-info {
    position: absolute;
    /* display: none; */
    display: flex;
    flex-direction: column;
    /* font-family: 'Raleway', sans-serif; */
    transition: all .5s;
}

.card-info.disabled {
    left: 10em;
    opacity: 0;
}

.card-info.opening {
    opacity: 1 !important;
}

.card-info.closing {
    opacity: 0 !important;
}

.card__title {
    font-size: 1.8rem;
    color: white;
    text-align: left;
}

.card__subtitle {
    margin-top: 10px;
    font-size: 1.2rem;
    color: #f54568;
    /* font-family: 'Raleway', sans-serif; */
    font-weight: 700;
    text-align: left;
}

.card-body {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    /* height: calc(100% - 105px); */
}

.card__quote {
    position: relative;
    /* padding: 15px 4em 15px 2.5em; */
    padding: 15px 2.5em 15px 2em;
}

.card__paragraph {
    color: white;
    text-align: justify;
    word-wrap: break-word;
    font-size: 1.1rem;
}

.controls {
    /* width: min-content;
    height: min-content;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 1rem;
    margin: auto 0; */
    width: auto;
    height: auto;
    display: inline-flex;
    position: relative;
    margin: auto 0;
    top: 30%;
}

.circle-controller {
    width: 0.8rem;
    height: 0.8rem;
    background-color: white;
    margin-bottom: 10px;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0.6;
    transition: all 300ms;
    margin-right: 10px;
}

.circle-controller.active {
    background-color: #dc143c;
    opacity: 1;
}