
    .opinions .card-body {
        margin-top: 2rem;
    }
    .opinions .opinions__wrapper {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
    }
    .opinions .opinions__wrapper--left {
        height: 100%;
        display: flex;
        justify-content: center;
        align-items:center;
        flex-direction: column;
    }
    .opinions .opinions__item {
        width: 100%;
    }
    .opinions .opinions__photo {
        display:flex;
        align-items: center;
        justify-content: center;
    }
    .opinions .opinions__photo img {
        border-radius: 50%;
        width: 150px;
        height: 150px;
        object-fit: cover;
    }
    .opinions .opinions__name {
        margin-top: 2rem;
    }
    .opinions .opinions__name p {
        text-align: center;
    }
    .opinions .opinions__text {
        border-top: 0;
        margin-bottom: 0;
        padding: 0;
    }
    .opinions .opinions__text p {
        display: block;
        -webkit-line-clamp: unset !important;
    }
    .opinions .opinions__item {
        margin-bottom: 4rem;
        transition: all .2s ease;
    }
    .opinions .opinions__item:last-of-type {
        margin-bottom: 0;
    }
    .opinions .opinions__item:nth-child(even) .opinions__wrapper{
        flex-direction: row-reverse;
        text-align: right;
    }
    @media only screen and (max-width: 991.98px) { 
        .opinions .opinions__item {
            margin-bottom: 2rem;
        }
        .opinions__text {
            margin-top: 2rem;
        }
         .opinions__wrapper, .opinions .opinions__item:nth-child(even) .opinions__wrapper{
            text-align: center;
        }
     }