.custom-video-slider-img img {
    height: 312px;
    width: 100%;
    object-fit: cover;
    object-position: center;
}

.custom-video-slider-img a,
.custom-video-slider-nav-img {
    display: block;
    position: relative;
}

.custom-video-slider-img a::after,
.custom-video-slider-nav-img::after {
    content: "\f04b";
    position: absolute;
    left: 0;
    top: 0;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    width: 64px;
    height: 64px;
    background: #2C321B;
    border-radius: 50px;
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 24px;
    padding-left: 0.25rem;
    left: 50%;
    top: 50%;
    margin-left: -32px;
    margin-top: -32px;
    transition:all 0.3s ease;
}

.custom-video-slider-img a:hover::after {
    transform: scale(1.1);
}

/* Slider Nav */
.custom-video-slider-nav-img img {
    width: 100%;
    height: 98px;
    object-fit: cover;
    cursor: pointer;
    transition: all 0.3s ease;
}

.custom-video-slider-nav-img img:hover {
    opacity: 0.9;
}

.custom-video-slider-nav {
    padding: 0.5rem;
}

.custom-video-slider-nav-img::after {
    width: 22px;
    height: 22px;
    top:auto;
    left: auto;
    right: 10px;
    bottom: 10px;
    font-size: 11px;
    padding-left: 3px;
    margin:0;
    cursor: pointer;
}

@media (max-width:600px) {
    .custom-video-slider-img img {
        height: 250px;
    }

    .custom-video-slider-nav-img img {
        height: 75px;
    }
} /* END 600px */