.banner__block {
    width: 100%;
    height: 653px;
    border-radius: 16px;
    overflow: hidden;
    background-size: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    gap: 24px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-decoration: none;
    transition: background-size 1.9s linear;
}
.banner__block:hover {
    background-size: 110%;
}
.banner__block:after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.12) 0%, rgba(0, 0, 0, 0.42) 100%);
}
.banner__title {
    font-family: 'Inter-Bold', sans-serif;
    font-size: 100px;
    text-transform: uppercase;
    color: #fff;
    text-decoration: none;
    position: relative;
    z-index: 1;
}
.banner__subtitle {
    font-family: 'Inter-SemiBold', sans-serif;
    font-size: 22px;
    line-height: 32px;
    color: #fff;
    position: relative;
    z-index: 1;
}
.popular__list {
    display: flex;
    align-items: start;
    gap: 30px;
}
@media screen and (max-width: 1480px) {
    .banner__block {
        background-size: cover;
    }
    .banner__block:hover {
        background-size: cover;
    }
}
@media screen and (max-width: 1024px) {
    .banner__title {
        font-size: 60px;
    }
    .banner__subtitle {
        font-size: 18px;
        line-height: 100%;
    }
}
@media screen and (max-width: 768px) {
    .banner__block {
        height: 500px;
        padding: 0 16px;
    }
}
@media screen and (max-width: 640px) {
    .banner__title {
        font-size: 40px;
    }
    .banner__subtitle {
        font-size: 16px;
    }
}