.line-wrapper {
    padding-bottom: 59px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.3);
}

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

    h2 {
        color: #000;
        font-size: 40px;
        font-weight: normal;
    }

    .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 {
        height: 150px;
        justify-content: center;
        align-items: center;
        display: grid;
    }

    .item-logo a:hover {
        img {
            opacity: 0.8;
        }
    }
}

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

@media (max-width: 450px) {
    .partner-slider-wrapper {
        .item {
            height: 100%;
        }
    }
}