.hero--height {
    height: 83vh;
}

@media (max-width: 575px) {
    .hero--height {
        height: 100vh;
    }
}

.background--scroller {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    z-index: 1;
    height: 100%;
}

.background--scroller.for-video {
    right: unset;
    left: 0px;
    text-align: right;
    display: flex;
    align-items: end;
    justify-content: end;
}

.background--scroller img {
    width: 100%;
    object-fit: cover;
    height: 100%;
}

.background--scroller video {
    width: 420px;
    height: 85%;
    margin-right: 95px;
    margin-bottom: -4%;
    object-fit: cover;
    border-radius: 60px;
    z-index: 10000000;
    box-shadow: 0px 3px 11px #6e6e6ea1;
}

@media (max-width: 1199px) {
    .background--scroller video {
        margin-right: 13%;
        width: 330px;
        margin-bottom: -3%;
    }
}

@media (max-width: 991px) {
    .background--scroller video {
        margin-right: 10%;
        width: 240px;
        height: 85%;
        margin-bottom: -5%;
        object-fit: cover;
    }
}

@media (max-width: 767px) {
    .background--scroller video {
        margin-right: 10%;
        width: 180px;
        height: 60%;
        margin-bottom: 25%;
        object-fit: cover;
        box-shadow: none;
    }
}

@media (max-width: 575px) {
    .background--scroller video {
        margin-right: 0px;
        width: 100%;
        margin-bottom: 0px;
        border-radius: 0px;
        height: 100%;
        object-fit: cover;
    }
}

@media (min-width: 1400px) {
    .background--scroller video {
        margin-right: 11%;
        width: 450px;
        margin-bottom: -3%;
    }
}

.background--scroller .hero--alternative {
    width: 420px;
    height: 85%;
    margin-right: 95px;
    margin-bottom: -4%;
    object-fit: cover;
    border-radius: 60px;
    z-index: 10000000;
    box-shadow: 0px 3px 11px #6e6e6ea1;
}

@media (max-width: 1199px) {
    .background--scroller .hero--alternative {
        margin-right: 13%;
        width: 330px;
        margin-bottom: -3%;
    }
}

@media (max-width: 991px) {
    .background--scroller .hero--alternative {
        margin-right: 10%;
        width: 240px;
        height: 85%;
        margin-bottom: -5%;
        object-fit: cover;
    }
}

@media (max-width: 767px) {
    .background--scroller .hero--alternative {
        margin-right: 10%;
        width: 180px;
        height: 60%;
        margin-bottom: 25%;
        object-fit: cover;
        box-shadow: none;
    }
}

@media (max-width: 575px) {
    .background--scroller .hero--alternative {
        margin-right: 0px;
        width: 100%;
        margin-bottom: 0px;
        border-radius: 0px;
        height: 100%;
        object-fit: cover;
    }
}

@media (min-width: 1400px) {
    .background--scroller .hero--alternative {
        margin-right: 11%;
        width: 450px;
        margin-bottom: -3%;
    }
}

/* navbar */

.hero--navbar {
    padding-top: 25px;
    padding-bottom: 7%;
    height: 100%;
}

@media (max-width: 991px) {
    .hero--navbar {
        padding-top: 25px;
        padding-bottom: 8%;
    }
}

@media (max-width: 767px) {
    .hero--navbar {
        padding-top: 25px;
        padding-bottom: 15%;
    }
}

@media (max-width: 575px) {
    .hero--navbar {
        padding-top: 25px;
        padding-bottom: 10%;
    }
}

.hero--navbar .hero--logo {
    width: 100%;
    height: 50px;
    object-fit: contain;
    object-position: left;
    filter: brightness(0) invert(1);
}

@media (max-width: 991px) {
    .hero--navbar .hero--logo {
        width: 100%;
        height: 45px;
        object-fit: contain;
        object-position: left;
        filter: brightness(0) invert(1);
    }
}

.hero--navbar .hero--logo.dark {
    filter: none;
}

.hero--nav {
    display: flex;
    justify-content: end;
    align-items: center;
}

.hero--nav a {
    display: inline-flex;
    color: white;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 1.4px;
    min-width: 90px;
    justify-content: center;
}

@media (max-width: 991px) {
    .hero--nav a {
        font-size: 16px;
        min-width: 80px;
    }
}

@media (max-width: 767px) {
    .hero--nav a {
        font-size: 15px;
        min-width: 65px;
    }
}

.hero--nav.dark a {
    color: #111;
}

.hero--nav a:hover {
    letter-spacing: 1.4px;
}

.hero--nav a:last-of-type {
    margin-right: 0px;
}

/* side nav */

.hero--side-nav {
    display: flex;
    justify-content: end;
    align-items: center;
}

.hero--side-nav a {
    display: inline-flex;
    color: white;
    text-decoration: none;
    font-size: 30px;
    font-weight: 500;
    letter-spacing: 0.4px;
    margin-right: 20px;
}

.hero--side-nav.dark a {
    color: #111;
}

.hero--side-nav a:last-of-type {
    margin-right: 0px;
}

.hero--side-nav a.lang {
    font-size: 15px;
    font-weight: 600;
    border-bottom: 2px solid var(--color-secondary);
}

/* hero title */

.hero--title {
    color: var(--color-hero-title);
    font-weight: 600;
    font-size: 62px;
    width: 600px;
    margin-left: 10%;
    margin-bottom: 10px;
    text-shadow: 1px 6px 25px rgba(11, 11, 11, 0.68);
}

@media (min-width: 1px) and (max-width: 575px) {
    .hero--title {
        font-size: 25px;
        width: 100%;
        color: white !important;
        margin-left: 2%;
    }
}

@media (min-width: 576px) and (max-width: 767px) {
    .hero--title {
        font-size: 30px;
        width: 100%;
        margin-left: 2%;
    }
}

@media (min-width: 768px) and (max-width: 992px) {
    .hero--title {
        font-size: 35px;
        width: 400px;
        margin-left: 2%;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .hero--title {
        font-size: 42px;
        width: 400px;
        margin-left: 4%;
    }
}

.hero--title.inverse {
    color: var(--color-main);
    text-shadow: 1px 6px 25px rgba(124, 124, 124, 0.68);
}

/* group-button */

.hero--group-button {
    margin-left: 10%;
    margin-bottom: 15px;
}

@media (max-width: 1199px) {
    .hero--group-button {
        margin-left: 4%;
        margin-bottom: 20px;
    }
}

@media (max-width: 991px) {
    .hero--group-button {
        margin-left: 2%;
        margin-bottom: 20px;
    }
}

@media (max-width: 767px) {
    .hero--group-button {
        margin-left: 2%;
        margin-bottom: 20px;
    }
}

.hero--group-button a {
    background-color: var(--color-secondary);
    font-weight: 500;
    color: white;
    height: 41px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
}

@media (min-width: 1px) and (max-width: 575px) {
    .hero--group-button a {
        height: 36px;
        font-size: 14px;
    }
}

.hero--group-button a:first-of-type:hover,
.hero--group-button a:first-of-type:focus {
    background-color: var(--color-secondary-hover);
    color: white;
}

.hero--group-button a:hover,
.hero--group-button a:focus {
    transform: scale(1.05);
    z-index: 1;
}

.hero--group-button a:nth-of-type(2) {
    background-color: white;
    font-weight: 500;
    color: #111;
    border-bottom-right-radius: 15px;
    padding-left: 20px;
    padding-right: 20px;
}

.hero--group-button.inverse a:nth-of-type(2) {
    background-color: var(--color-main);
    font-weight: 500;
    color: #fff;
    border-bottom-right-radius: 15px;
    padding-left: 20px;
    padding-right: 20px;
}

/* promo */

.promo--title {
    font-weight: 500;
    font-size: 14px;
    margin-left: 10%;
    color: var(--color-main-grey-dark);
    display: inline-block;
    padding-bottom: 4px;
    margin-bottom: 0px;
    text-transform: uppercase;
}

@media (max-width: 1199px) {
    .promo--title {
        margin-left: 4%;
    }
}

@media (max-width: 991px) {
    .promo--title {
        margin-left: 2%;
        font-size: 13px;
    }
}

@media (max-width: 575px) {
    .promo--title {
        color: white !important;
    }
}

@media (max-width: 575px) {
    .promo--title * {
        color: #fff !important;
        background-color: #00000059;
        border-bottom: none !important;
        padding: 0px 3px;
    }
}

.promo--title .percentage {
    font-weight: 700;
    margin: 0px 5px;
    font-size: 16px;
    border-bottom: 2px dashed var(--color-alternative);
}

.promo--title .code {
    font-weight: 700;
    margin: 0px 6px;
    margin-right: 0px;
    font-size: 16px;
    color: var(--color-main-grey-dark);
    border-bottom: 2px dashed var(--color-alternative);
}

.video--speaker {
    position: absolute;
    top: -37px;
    left: 18px;
    z-index: 100000000;
    font-size: 35px;
    color: #fff;
    display: flex;
    width: 60px;
    height: 60px;
    align-items: center;
    justify-content: center;
    cursor: pointer !important;
}

@media (max-width: 575px) {
    .video--speaker {
        position: absolute;
        top: -98vh;
        left: 10px;
        z-index: 100000000;
        font-size: 42px;
        color: #ffffffb5;
        display: flex;
        width: 70px;
        height: 55px;
        align-items: center;
        justify-content: center;
    }
}

#hero--video-toggler.on:before {
    content: "\F611" !important;
}
#hero--video-toggler.on:before {
    color: var(--color-main);
}
