.hero-container {
    width: 100%;
    position: relative;
}

.hero-container .hero {
    width: 100%;
    height: auto;
}

.hero-container .hero2 {
    display: none;
}

.hero-container .hero3 {
    display: none;
}

@media only screen and (max-width: 1024px) {
    .hero-container .hero1 {
        display: none;
    }

    .hero-container .hero2 {
        display: block;
    }
}

@media only screen and (max-width: 769px) {
    .hero-container .hero2 {
        display: none;
    }

    .hero-container .hero3 {
        display: block;
    }
}

.hero-container .premium div {
    position: absolute;
    top: 24px;
    right: 78px;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 10px;
    border-radius: 8px;
}

.hero-container .premium div img {
    height: 200px;
}

@media screen and (max-width: 769px) {
    .hero-container .premium div {
        display: none;
    }
}

.hero.premium-horizontal {
    text-align: center;
}

.hero.premium-horizontal img {
    width: 100%;
    max-width: 200px;
}

@media screen and (min-width: 769px) {
    .hero.premium-horizontal {
        display: none;
    }
}