.tab-slider * {
    text-decoration: none !important;
}

.tab-slider a.data-container {
    display: flex;
    position: relative;
    text-decoration: none;
    width: 100%;
    height: 600px;
    border-radius: 4px 4px 4px 4px;
    overflow: hidden;
    @media (max-width: 1024px) {
        height: 400px;
    }
    @media (max-width: 480px) {
        height: 200px;
    }
}

.tab-slider .data-container:hover .tab-slider-image {
    transform: scale(1.2);
}

.tab-slider .data-container:hover .tab-slider-title::after {
    width: 100%;
}

.tab-slider .tab-slider-inner {
    display: flex;
    align-items: flex-end;
    position: absolute;
    top:0;right:0;bottom:0;left:0;
    z-index: 3;
    width: 100%;
    height: 100%;
    padding: 24px 24px 32px 24px;
}

.tab-slider .tab-slider-image::before {
    content: "";
    display: block;
    position: absolute;
    top:0;right:0;bottom:0;left:0;
    z-index: 1;
    background-image: linear-gradient(180deg, #FFFFFF00 0%, #0000007A 100%);
}
.tab-slider .tab-slider-image {
    display: block;
    position: absolute;
    top:0;right:0;bottom:0;left:0;
    z-index: 0;
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    transition: transform 0.5s ease;
}

.tab-slider .tab-slider-image img {
    object-fit: cover;
}

.tab-slider .tab-slider-title {
    position: relative;
    margin: 0;
    font-size: 32px;
    text-decoration: none;
    line-height: 1em;
    color: white;
}

.tab-slider .tab-slider-title::after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    bottom: -18px;
    width: 67px;
    border-bottom: 8px solid white;
    border-radius: 2px;
    transition: all ease 0.5s;
}
