.carousel blockquote {
    font-style: italic;
    line-height: 1.618;
    font-size: 1.2em;
    /* width: 30em; */
    max-width: 30em;
    position: relative;
    padding: 40px 80px;
}



.quotes {
    background-color: #f5f5f5;
    color: black;
    border-radius: 25px;
    display: flex;
    flex-direction: row;
    align-items: center;
    /* width: 70vw; */
    max-width: 900px;
    padding-top: 25px;
    padding-bottom: 25px;
    height: 500px;
}

@media screen and (max-width: 800px) {
    .quotes {
        /* flex-direction: column; */
        width: 95vw;
        height: min-content;
        min-height: 500px;
        margin: 0 auto;
        flex-wrap: wrap;
    }

    .quotes .active {
        width: 100%;
    }

    .carousel .quotes .left {
        order: 98;
        flex-grow: 1;
        padding: 20px;
    }
    .carousel .quotes .right {
        flex-grow: 1;
        order: 99;
        padding: 20px;
    }
}

.carousel blockquote::before {
    content: open-quote;
    /* Place it at the top-left */
    top: 0;
    left: 0;
}

.carousel blockquote::after {
    content: close-quote;
    /* Place it at thee bottom-right */
    bottom: 0;
    right: 0;
}

.carousel blockquote::before,
blockquote::after {
    background-color: #cccccc;
    display: block;
    width: 60px;
    height: 60px;
    line-height: 1.618;
    font-size: 3em;
    border-radius: 100%;
    text-align: center;
    position: absolute;
}



.quotes blockquote {
    display: none;
}

.quotes .active {
    display: block;
    /* max-height: fit-content; */
    height: fit-content;
    /* transition: max-height 0.5s ease-in-out; */
}

.carousel .left, .carousel .right {
    /* width: 120px; */
    padding: 0 20px;
    color: black;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 3em;
    transition: 0.2s; 
}

.carousel .left:hover, .carousel .right:hover {
    cursor: pointer;
    transform: scale(1.1);
}