.upfront_image_container {
    position: absolute;
    display: none;
    right: 0;
    top: 75px;
    max-height: calc(100vh - 75px);
    overflow: hidden;
    aspect-ratio: 9 / 16;
    z-index: 9999999;
}

.upfront_image_container.active {
display: block;
}

.upfront_image_container a {
    height: 100%;
    width: 100%;
}

.upfront_image_container img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

@media (max-width: 1280px) {
    .upfront_image_container.active {
       display: none;
    }


}