/*
* Logo Carousel block
*/
.block-logo-carousel {
    display: flex;
    margin: 0 70px;
}
@media (max-width: 767px) {
    .block-logo-carousel {
        margin: 0;
    }
}

.block-logo-carousel .logo {
    height: 130px;
    text-align: center;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.block-logo-carousel img {
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
    padding: 20px;
}
/*
* Slick Slider CSS
*/
.slick-arrow {
    width: 50px;
    height: 50px;
    background-color: transparent;
    display: block;
    border: 0;
    text-indent: -99999px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
}

.slick-arrow:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 50%;
    z-index: -1;
    border: 1px solid #000;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url("data:image/svg+xml,%3Csvg height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m20.3368977 7.38162089-6.9772567-6.97586127c-.5037579-.516317-1.4094058-.56515779-1.9745636 0l-6.97586129 6.97586127c-.54562148.54562147-.54562148 1.42754672 0 1.9731682.54562147.54562147 1.42754672.54562147 1.9731682 0l4.59522129-4.59522128v17.84498089c0 .7716845.6237667 1.3954513 1.3954513 1.3954513.7702892 0 1.3954514-.6237668 1.3954514-1.3954513v-17.84498089l4.5952212 4.59522128c.5456215.54562147 1.4275468.54562147 1.9731682 0 .5456215-.54562148.5456215-1.42754673 0-1.9731682z'/%3E%3C/svg%3E%0A");
}

.slick-arrow:hover:before {
    opacity: 0.6;
}

.slick-prev {
    left: -70px;
}

.slick-prev:before {
    transform: rotate(-90deg);
}

.slick-next {
    right: -70px;
}

.slick-next:before {
    transform: rotate(90deg);
}