.header-banner-container {
    position: relative;
    overflow: hidden;
    min-height: 50px;
    height: 50px;
}
.header-banner {
    color: #fff;
    padding: var(--ati-m-padd) var(--ati-xl-padd);
    display: flex;
    gap: var(--ati-s-gap);
    justify-content: center;
    align-items: center;
    text-align: center;
    height: inherit;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    transform: translateY(100%);
    text-decoration: none;
    transition: transform 0.5s ease;
}
.header-banner.banner-active {
    transform: translateY(0);
}
.has-img {
    background-size: contain;
    background-position: center;
    background-repeat: repeat-x;
}
@media screen and (max-width: 1024px) {
    .has-img {
        background-size: cover;
    }
}