/* Show in Large desktops and laptops */
@media (min-width: 1200px) {
    /* .hero {
        background-image: url(/live/img/2.svg);
        background-repeat: no-repeat;
        background-size: 304px;
    } */
    .hero2 {
        background-image: url(/live/img/67.svg);
        background-repeat: no-repeat;
        background-size: 304px;
    }
}
/* Landscape tablets and medium desktops */
@media (min-width: 992px) and (max-width: 1199px) {
    .hero {
        background-image: none;
    }
}

/* Portrait tablets and small desktops */
@media (min-width: 768px) and (max-width: 991px) {
    .hero {
        background-image: none;
    }

}

/* Landscape phones and portrait tablets */
@media (max-width: 767px) {
    .hero {
        background-image: none;
    }
}

/* Portrait phones and smaller */
@media (max-width: 480px) {
    .hero {
        background-image: none;
    }
}



