.container-swiper {

    padding-top: var(--swiper-padding-top, 20px);
    padding-bottom: var(--swiper-padding-bottom, 20px);

    @media (min-width: 750px) {
        padding-top: var(--swiper-padding-top-tablet, 30px);
        padding-bottom: var(--swiper-padding-bottom-tablet, 30px);
        padding-inline: max( 40px, calc((100% - min(102.5rem, calc(100% - (40px * 2))))/2));
    }

    @media (min-width: 1200px) {
        padding-top: var(--swiper-padding-top-desktop, 40px);
        padding-bottom: var(--swiper-padding-bottom-desktop, 40px);
    }

    .hero-content {
        position: relative;
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        display: flex;
        flex-direction: column;
        justify-content: end;
        padding: 16px;
        height: calc(100vh - 270px);
        border-radius: 4px;

        @media (min-width: 1200px) {
            padding: 1.3vw;
        }
    }

    .image-noise {
        position: absolute;
        left: 0;
        top: 0;
        right: 0;
        bottom: 0;
        z-index: 2;
        background-image: url('../assets/enoteca-vin-art.png');
        background-position: 0 0;
        background-size: 150px 150px;
        opacity: 0.3;
    }

    .text-noise {
        position: absolute;
        bottom: 0;
        left: 0;
        height: 50%;
        z-index: 1;
        width: 100%;
        background-image: linear-gradient(180deg, rgba(17, 17, 17, 0), rgba(17, 17, 17, .5));
    }

    .hero-content-upper,
    .hero-content-lower {
        z-index: 10;
    }

    .hero-title h2 {
        font-size: 38px;
        line-height: 100%;
        font-weight: 400;
        letter-spacing: .48px;
        color: #fff;
        margin-bottom: .5rem;
        line-height: 38px;
    }

    .hero-description p {
        font-size: 14px;
        font-weight: 300;
        letter-spacing: .48px;
        max-width: 90%;
        color: #fff;
        line-height: 20px;
        margin-bottom: 1rem;

        @media (min-width: 1200px) {
            max-width: 400px;
        }
    }

    .hero-btn-container {
        a {
            font-size: 14px;
            font-weight: 400;
            letter-spacing: .48px;
            text-decoration: underline;
            text-underline-offset: 4px;
            color: #fff;
            transition: all .6s cubic-bezier(.19,1,.22,1);

            &:hover {
                color: #CC851E;
            }
        }
    }

    .swiper-pagination-home {
        display: flex;
        margin-top: 1.3vw;

        .swiper-pagination-bullet {
            width: 100%;
            height: 3px;
            display: inline-block;
            border-radius: 4px;
            opacity: unset;
            background: #f5f5f5;
        }

        .swiper-pagination-bullet-active {
            background: #212121;
        }
    }
}