.quote-slider-wrapper {
    margin-top: 60px;
    margin-left: 96px !important;
    margin-right: 96px !important;
    margin-bottom: 40px !important;

    .over-slider {
        z-index: 2;
    }

    .slick-prev {
        left: -25px;
        z-index: 2;
    }

    .slick-prev {
        border-radius: 0;
        box-shadow: none;
        left: -100px;
        top: 0;
        margin-top: 9px;

        &::before {
            content: '' !important;
            background-image: url(../icons/slider-button-2.svg);
            display: inline-block; 
            width: 60px;
            height: 60px; 
            background-size: cover;
            background-repeat: no-repeat;
            opacity: 0.9;
        }

        &:hover {
            opacity: 0.8;
        }

        &:focus {
            opacity: 0.8;
        }
    }

    .slick-next {
        border-radius: 0;
        box-shadow: none;
        left: -100px;
        top: 0;
        margin-top: 75px;

        &::before {
            content: '' !important;
            background-image: url(../icons/slider-button-1.svg);
            display: inline-block; 
            width: 60px;
            height: 60px; 
            background-size: cover;
            background-repeat: no-repeat;
            opacity: 0.9;
        }

        &:hover {
            opacity: 0.8;
        }

        &:focus {
            opacity: 0.8;
        }
    }

    .slick-next.slick-disabled {
        &::before {
            background-image: url(../icons/slider-button-1-gray.svg);
            opacity: 1;
        }

        &:hover {
            opacity: 1;
        }

        &:focus {
            opacity: 1;
        }
    }

    .slick-disabled {
        &::before {
            background-image: url(../icons/slider-button-2-grey.svg);
            opacity: 1;
        }

        &:hover {
            opacity: 1;
        }

        &:focus {
            opacity: 1;
        }
    }
    
    .slick-slide {
        margin: 0 32px 0 0;
    }

    .slick-list {
        margin: 0 -32px 0 0;
    }
    
    .slick-list::after {
        content: ' ';
        position: absolute;
        top: 0px;
        bottom: 0px;
        width: 4000px;
        right: 100%;
        background-color: white;
    }

    .item {
        padding: 72px 128px 40px 128px;
        background-color: #F2F2F2;
    }

    .item-quote {
        height: 260px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.3);

        &::before {
            content: '' !important;
            background-image: url(../icons/quote.svg);
            display: inline-block; 
            width: 40px;
            height: 32px; 
            background-size: cover;
            background-repeat: no-repeat;
            margin-bottom: 40px;
        }

        p {
            font-size: 28px;
        }
    }

    .item-description {
        display: flex;
        margin-top: 40px;

        .item-img {
            display: flex;
            justify-content: center;
            align-items: center;
            flex-shrink: 0;

            img {
                width: 80px;
                height: 80px;
                border-radius: 50%;
                object-fit: cover;
            }
        }

        .item-author {
            flex-grow: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
            box-sizing: border-box;
            margin-left: 16px;
        }

        .item-name {
            font-size: 20px;
        }

        .item-position {
            font-size: 14px;
        }
    }
}

@media (max-width: 768px) {
    .quote-slider-wrapper {
        margin-left: 0 !important;
        margin-right: 0 !important;

        .item-quote {
            p {
                font-size: 20px;
            }
        }

        .item {
            padding: 32px 32px 20px 32px;
        }
    }
}