.frontpage_hero_widget.side_video {
    flex-direction: column;
}

.frontpage_hero_widget.bg_video {
    position: relative;
    overflow: hidden;
    padding: 80px 20px;
}

.side_video .text {
    width: 100%;
}

.bg_video .text.white_bg {
    background: var(--minuba-white-gradient8);
    color: var(--minuba-black);
    padding: 32px;
    border-radius: var(--border-radius-l);
}

.bg_video.black_gradient .text h1,
.bg_video.black_gradient .text p {
    color: var(--minuba-white);
}

.bg_video .text p {
    font-weight: var(--semibold);
}

.bg_video .hero_cta_secondary {
    border-color: var(--minuba-secondary-light);
    background-color: var(--minuba-secondary-light);
}

.bg_video .hero_cta_secondary:hover {
    border-color:var(--minuba-white);
    background-color: var(--minuba-white);
}

.side_video .frontpage_hero_video {
    width: 100%;
    display: flex;
    justify-content: center;
}

.bg_video .frontpage_hero_video {
    position: absolute;
    left: 0;
    top: 0;
    max-width: 100%;
    max-height: 100%;
    width: 100%;
    height: 100%;
    z-index: -100;
    display: flex;
    justify-content: center;
    align-items: center;
}

.bg_video .frontpage_hero_video:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.bg_video.white_overlay .frontpage_hero_video:before {
    background: var(--minuba-white-gradient6);
}

.bg_video.black_gradient .frontpage_hero_video:before {
    background: var(--minuba-black-gradient);
}

.side_video .frontpage_hero_video img {
    object-fit: cover;
    overflow: visible;
}

.side_video .frontpage_hero_video video {
    display: none;
}

.bg_video .frontpage_hero_video video {
    height: 100%;
    width: 100%;
    min-height: 100%;
    object-fit: cover;
    pointer-events: none;
}

@media screen and (min-width: 664px) {
    .frontpage_hero_widget.side_video {
        flex-direction: row;
        height: min-content;
        flex-wrap: nowrap;
    }

    .side_video .text {
        min-width: 360px;
        z-index: 3;
    }

    .side_video .frontpage_hero_video {
        min-width: max-content;
        margin: -48px 0;
    }

    .side_video .frontpage_hero_video img {
        display: none;
    }
    
    .side_video .frontpage_hero_video video {
        display: inline-block;
        object-fit: cover;
        overflow: visible;
    }
}

@media screen and (min-width: 768px) {
    .frontpage_hero_widget.bg_video {
        padding: 140px 20px;
    }

    .side_video .frontpage_hero_video {
        margin: -72px 0;
    }
}

@media screen and (min-width: 1064px) {
    .bg_video .frontpage_hero_video video {
        height: auto;
        width: 100%;
        min-width: 100%;
    }
}

@media screen and (min-width: 1400px) {
    .bg_video .frontpage_hero_video {
        align-items: flex-start;
    }

    .bg_video .frontpage_hero_video video {
        margin-top: -100px;
    }
}