.ktk-slanted-pics-row {
    position: relative;
}

.ktk-slanted-row-pic__item {
    position: relative;
    -webkit-box-flex: 0;
    height: 540px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-right: -42.5% !important;
    clip-path: polygon(24% 0, 100% 0, 76% 100%, 0% 100%);
}

.ktk-slanted-row-pic__item-overlay {
    background: #0079C1;
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    opacity: 0;
    -webkit-transition: all 0.4s ease-in-out 0s;
    -moz-transition: all 0.4s ease-in-out 0s;
    transition: all 0.4s ease-in-out 0s;
}

.ktk-slanted-row-pic__item-img {
    height: 540px;
    width: 555px;
    object-fit: cover;
}

.ktk-slanted-row-pic__item:hover .ktk-slanted-row-pic__item-overlay {
    opacity: 0.66;
    z-index: 0;
}

.ktk-slanted-pics-first-item .ktk-slanted-row-pic__item {
    clip-path: polygon(0 0, 100% 0, 76% 100%, 0% 100%);
}

.ktk-slanted-row-pic__nav-control {
    position: absolute;
    top: 245px;
    width: 50px;
    height: 50px;
    background: #0079C1;
    background-repeat: no-repeat;
    line-height: 0;
    border-radius: 50%;
    z-index: 990;
}

.ktk-slanted-row-pic__nav-control--prev {
    left: 55px;
    background-position: center center;
}

.ktk-slanted-row-pic__nav-control--next {
    right: 55px;
    background-position: center center;
}

@media (max-width: 767px) { 
    .ktk-slanted-row-pic__item {
        height: 350px;
    }

    .ktk-slanted-row-pic__item-img {
        height: 350px;
    }
    
    .ktk-slanted-row-pic__nav-control--prev {
        left: 0;
    }

    .ktk-slanted-row-pic__nav-control--next {
        right: 0;
    }

    .ktk-slanted-row-pic__nav-control {
        top: 170px;
    }

}