.video-cards__headlines {
    padding-bottom: 50px;
}

.video-card-slider {
    margin: 0 -30px;
    padding-bottom: 89px;
}

.video-card-item {
    padding: 0 8px;
}

.video-card-slider .slick-arrow {
    top: auto;
    bottom: 0;
    transform: translate(0, 0);
}

.video-card-slider .slick-prev {
    left: 50%;
    margin-left: -70px;
}

.video-card-slider .slick-next {
    right: 50%;
    margin-right: -70px;
}

.video-card-slider .slick-track {
    display: flex !important;
}

.video-card-slider .slick-slide {
    height: inherit !important;
}

.video-card-slider .slick-slide div {
    height: 100%;
}

.video-card-slider .slick-slide .video-card div {
    height: auto;
}

.video-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    height: 100%;
    border: 2px solid #F5F5F7;
    border-top: 0;
    background: #fff;
    width: 300px;
}

.video-card__image {
    height: 169px !important;
    width: calc(100% + 4px);
    margin-left: -2px;
    overflow: hidden;
    position: relative;
}

.video-card__image img {
    transition: all .5s;
}

.video-card__details {
    border-top: 2px solid #F5F5F7;
    padding: 20px;
    border: none!important;
}

.video-card--link {
    position: relative;
}

.video-card__title {
    margin-bottom: 0;
    padding-right: 20px;
    color: #12284C;
}

.bg-dark-blue .video-card__title,
.bg-blue-gradient .video-card__title {
    color: #12284C;
}

.video-card--link::after {
    content: "\e902";
    font-family: 'tcfls-icon';
    position: absolute;
    right: 17px;
    bottom: 22px;
    font-size: 13px;
    line-height: 1em;
    color: #12284C;
}

.video-bttn {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
}

.video-bttn svg {
    width: 110px;
    height: auto;
    transition: all .3s;
}

.video-cards.bg-dark-blue, 
.video-cards.bg-blue-gradient {
    & h2, h3, h4:not(.video-card__title), h5, h6 {
        color: #ffffff;
        -webkit-text-fill-color: #fff;
    }
}

.pulse {
    animation: pulse-animation 2s infinite;
    border-radius: 50%;
}

@keyframes pulse-animation {
    0% {
        box-shadow: 0 0 0 0px rgba(253, 253, 253, 0.488);
    }
    100% {
        box-shadow: 0 0 0 40px rgba(255, 255, 255, 0);
    }
}

.video-card__image.contain img {
    object-fit: contain;
    width: 100%;
    height: 100%;
}


@media (min-width: 768px) {
    
    .video-card-slider {
        margin: 0 -68px;
        padding-bottom: 94px;
    }
    
    .video-card-item {
        padding: 0 16px;
    }
    
   
    .video-card {
        width: 316px;
    }
    
    .video-card__image {
        height: 177px !important;
    }
    
    .video-card__details {
        padding: 25px;
    }
    
    
    .video-card__title {
        padding-right: 25px;
    }
    
    .video-card--link::after {
        right: 21px;
        bottom: 29px;
    }

    .video-bttn svg {
        width: 120px;
    }
}


@media (min-width: 1200px) {
    
    .video-card-slider {
        margin: 0 -16px;
        padding-bottom: 95px;
    }
    
    .video-card {
        width: 100%;
    }
    
    .video-card__image {
        height: 225px !important;
    }

    .video-card--static-no-title .video-card__image {
        height: 100% !important;
    }

    .video-card--static-no-title.video-card {
        height: 265px!important;
        border: none;
    }
    
    .video-card__title {
        font-size: 26px;
    }
    .video-card:hover  .video-card__image img {
        transform: scale(1.1);
    }
    
    .video-bttn:hover svg {
        transform: scale(1.1);
    }

    .video-card-slider .slick-slide .video-card__details {
        height: 169px;
        border: none;
    }

}