#promotion-container {
    background-repeat: no-repeat no-repeat;
    background-size: contain;
    background-position: center center;
    height: 50vh;
    min-height: 440px;
    width: 100%;
    position: relative;
    margin: 0px auto;
    background-color: rgb(0, 0, 0);
}

#promotion-banner {
    width: 100%;
    max-width: 100%;
}

#promotion-container .heroCta {
    bottom: 0;
    left: 50%;
    position: absolute;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
        transform: translateX(-50%);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100%;
}

#promotion-container .heroCta .heroCta_legals, #promotion-container .heroCta .heroCta_long_legals {
    position: absolute;
    width: 100%;
    bottom: 0px;
    display: block;
    text-align: center;
    margin-bottom: 0px;
    line-height: 1.1;
    font-size: clamp(0.8em, 1.2vw, 18px);
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(230, 100, 101, 0)), to(rgb(0, 0, 0)));
    background: -o-linear-gradient(rgba(230, 100, 101, 0), rgb(0, 0, 0));
    background: linear-gradient(rgba(230, 100, 101, 0), rgb(0, 0, 0));
    padding: 3px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
}

#promotion-container .heroCta a  {
    border-radius: 22px;
    box-sizing: border-box;
    font-family: Roboto, -apple-system, BlinkMacSystemFont, Segoe UI, Helvetica Neue, Arial, sans-serif;
    font-size: 1rem;
    font-weight: 500;
    height: 2.75rem;
    line-height: 1rem;
    line-height: 2.625rem;
    outline: none;
    padding: 0 1.375rem;
    text-align: center;
    text-decoration: none;
    transition: background .2s ease, border-color .2s ease, color .2s ease, -webkit-text-decoration .2s ease;
    transition: background .2s ease, text-decoration .2s ease, border-color .2s ease, color .2s ease;
    transition: background .2s ease, text-decoration .2s ease, border-color .2s ease, color .2s ease, -webkit-text-decoration .2s ease;
    white-space: nowrap;
    background-color: #02bd9c;
    border: 1px solid #02bd9c;
    box-shadow: 0 0 .0625rem 0 #02bd9c inset, 0 0 .0625rem 0 #02bd9c;
    color: var(--ui-button-primary-color);
    text-decoration: none;
    position: absolute;
    bottom: 50px;
}

#promotion-container .heroCta a:hover {
    background-color: var(--ui-button-primary-hover-color);
    border: 1px solid var(--ui-button-primary-hover-color);
    box-shadow: 0 0 .0625rem 0 var(--ui-button-primary-hover-color) inset, 0 0 .0625rem 0 var(--ui-button-primary-hover-color);    
}

@media screen and (max-width: 1920px) {
    #promotion-container {
        background-size: cover;
    }
}

@media (max-width: 600px) {
    #promotion-container {
        min-height: 330px;
        height: 72vw !important;
    }
}

@media screen and (max-width: 440px) {
    #promotion-container .heroCta .heroCta_long_legals {
        font-size: 0.7em;
        margin-bottom:5px;
    }
}