/* banners-cta */
.banners-cta-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    aspect-ratio: 728 / 30;
    flex-shrink: 0;
    width: 100%;
}

.banner-cta-item{
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    opacity: 0;
    transition: opacity .6s ease-in-out;
    pointer-events: none;
    will-change: opacity;
}

.banner-cta-item a{
  display: block;
  line-height: 0;
}

.banner-cta-item.active {
    opacity: 1;
    pointer-events: auto;
    z-index: 1
}
