.tf-cover {
    position: relative;
    transition: all .3s ease;
    padding: 8rem 2.5rem;
    z-index: 1;
}
.tf-cover,
.tf-cover > * {
    border-radius: 0.25rem;
}
.tf-cover__screen {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: inherit;
    background-size: cover;
    background-position: bottom;
}
.tf-cover__overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: linear-gradient(0deg, #00000088 66%, #FFFFFF44 100%);
    pointer-events: none;
}
.tf-cover__shadow {
    position: absolute;
    bottom: -12px;
    left: 8%;
    width: 84%;
    height: 50%;
    filter: blur(20px) saturate(3) brightness(0.7);
    z-index: -1;
    pointer-events: none;
    transition: all .3s ease-in-out;
    background: inherit;
}
.tf-cover__title {
    position: relative;
    width: 100%;
    color: #FFF;
    text-align: center;
}
.tf-cover__overlay-link {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}



.tf-cover--link {
    cursor: pointer;
}
.tf-cover--link:hover {
    transform: translateY(2px);
}
.tf-cover--link:hover .tf-cover__shadow {
    bottom: -5px;
    left: 4%;
    width: 92%;
    -webkit-filter: blur(5px) saturate(3) brightness(0.7);
    filter: blur(5px) saturate(3) brightness(0.7);
}



@media (min-width: 576px) {
    .tf-cover__title h2 {
        font-size: 64px;
        font-weight: 700;
        font-style: normal;
        letter-spacing: normal;
        text-transform: none;
        text-decoration: none;
        line-height: 1;
    }
}
@media screen and (min-width: 1800px){
    .tf-cover__screen{
        background-position: 100% 70%;
    }
}