.thumb {
    position: relative;
    display: block;
    width: 100%;
    padding: 0;
    overflow: hidden;
}

.thumb-1x1 {
    padding-bottom: 100%;
}

.thumb-21x9 {
    padding-bottom: 42.8571%;
}

.thumb-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.hero-caption {
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: center;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 1rem;
    background-image: linear-gradient(90deg, rgba(217, 33, 33, .64), rgba(217, 33, 33, .64));

    color: #fff;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.hero-subtitle {
    width: 100%;
    font-size: 1.25rem;
    font-weight: 400;
}

.promo-caption {
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: end;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 1rem;
    background-image: linear-gradient(90deg, rgba(217, 33, 33, .64), rgba(217, 33, 33, .64));
    color: #fff;
}

.promo-caption-inner {
    width: 100%;
    line-height: 1.2;
}

.promo-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.promo-subtitle {
    font-family: Oswald, sans-serif;
    font-size: 2rem;
    font-weight: 700;
}

.list-specials li::before {
    content: "";
    display: inline-block
}

.list-some a {
    color: #fff;
    text-decoration: none;
}

.list-gallery-image,
.list-some .list-inline-item {
    transition: transform 0.3s ease-in-out;
}

.list-gallery-image:hover,
.list-some .list-inline-item:hover {
    transform: scale(1.05);
}



@media (min-width: 992px) {

    .hero-caption {
        padding: 3rem;
        background-image: linear-gradient(90deg, rgb(217, 33, 33) 0%, rgba(217, 33, 33, .47) 53%, transparent);
    }

    .promo-caption {
        padding: 3rem;
        background-image: linear-gradient(270deg, rgb(217, 33, 33) 0%, rgba(217, 33, 33, .47) 53%, transparent);
    }

    .hero-title,
    .promo-title {
        font-size: 5rem;
    }

    .hero-subtitle {
        width: 50%;
        font-size: 2rem;
    }

    .promo-subtitle {
        font-size: 3rem;
    }

    .promo-caption-inner {
        width: 40%;
        margin-left: auto;
    }
}