
.reviews-container {
    button.slick-prev {
        position: absolute;
        top: -90px;
        left: 930px;

        &::before {
            content: url(../icons/chevrons-left.svg) !important;
        }

        @media screen and (max-width: 675px){
            position: unset;

            &::before {
                content: none !important
            }
        }
    }

    button.slick-next {
        position: absolute;
        top: -90px;
        right: 80px;

        &::before {
            content: url(../icons/chevrons-right.svg) !important;
        }

        @media screen and (max-width: 675px){
            position: unset;

            &::before {
                content: none !important
            }
        }
    }
}

div.slick-track {
    display: flex;
    gap: 30px;

    padding-bottom: 20px;

    &::before, &::after {
        display: none;
    }

}

div.reviews-box {
    display: flex;
    flex-direction: column;
    width: 350px;

    img {
        margin: 0 0 -20px 20px;
        width: 78px;
        height: 78px;
        border-radius: 50%;
        object-fit: cover;
    }
}

.reviews-box-content {
    display: flex;
    flex-direction: column;
    height: 270px;
    border-radius: 32px;
    box-shadow: 6px 8px 13px 0px #ACACAC80;
    padding: 53px 32px 24px;


    > p {
        font-size: 16px;
        font-weight: 300;
        font: inter;
    }

    > span {
        border-top: 1px solid #EBEBEB;
        border-color: #EBEBEB;
        display: block;
        position: relative;
        height: 1px;
    }

    > h4 {
        
    }

    > .rating {
        
    }

    @media screen and (max-width: 675px) {
       /* margin: auto; */
    }
}
