.block-hero-banner{
    min-height: calc(100vh - 100px);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    position: relative;
}
.block-hero-banner::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.20) 0%, rgba(0, 0, 0, 0.20) 100%);
    opacity: .20;
}
.block-hero-banner .hero-banner--content {
    position: relative;
    margin-top: 80px;
}
.block-hero-banner > video {
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
    width: 100%;
    height: 100%;
}
.block-hero-banner > .image-cover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.block-hero-banner > .image-cover img {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    object-fit: cover;
    object-position: center;
}
.block-hero-banner .container {
    position: relative;
    z-index: 1;
}
.block-hero-banner .hero-banner--tooltip {
    width: 240px;
    padding: 12px;
    position: relative;
}
.block-hero-banner .hero-banner--tooltip__container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: var(--space-3);
}
.block-hero-banner .hero-banner--tooltip__image {
    margin-bottom: 12px;
}
.block-hero-banner .hero-banner--tooltip::after {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
    border-color: transparent;
    left: 50%;
    top: 100%;
    border-top-color: var(--color-a);
    border-width: 6px;
    transform: translateX(-50%);
}
.block-hero-banner .hero-banner--tooltip__icon {
    display: flex;
    text-align: center;
    width: 100%;
    justify-content: center;
    margin-top: 12px;
}
.block-hero-banner .hero-banner--tooltip__icon img {
    width: 24px;
}
.block-hero-banner .hero-banner--tooltip .button-link{
    gap: 0;
}
@media screen and (min-width: 768px){
    .block-hero-banner .hero-banner--content {
        max-width: calc(100% - 40%);
    }
    .block-hero-banner .hero-banner--tooltip__container {
        position: absolute;
        bottom: 50px;
        right: var(--space-6);
    }
    
}