.monstro-banner{
    display: flex;
    justify-content: center;
    position: relative;
    overflow: hidden;
    height: 20rem;
    width: 100%;
    font-family: Poppins-Regular;
}

.monstro-banner .background{
    display: flex;
    justify-content: center;
    align-items: flex-start;
    position: relative;
    /* background-size: contain; */
    width: 100%;
    height: 100%;
}

.video-container {
    max-height: 666px;
    overflow: hidden;

    width: 100%;
}
  
.video-container video {
width: 100%;
height: auto;
object-fit: cover;
}
/* .monstro-banner .background:has(img){
    justify-content: flex-start;
} */

.monstro-banner .background .bg{
    position: relative;
    background-size: contain !important;
    max-width: 100%;
    max-height: 100%;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -o-user-select: none;
    user-select: none;
    pointer-events: none;
}
.monstro-banner .background div:has(iframe){
    height: 100%;
    width: 100%;
    max-width: 40rem;
    position: relative;
}
.monstro-banner .background iframe {
    position: relative;
    border: 1px solid red;
    height: 100%;
    width: 100%;
    max-width: 40rem;
    pointer-events: none;
    
}
.monstro-banner .video video{
    position: relative;
    width: 100%;
    min-width: 1441px;
    min-height: 100%;
}
.monstro-banner .banner-default{
    display: flex;
    flex-direction: column;
    align-items: center;
    align-self: center;
    position: absolute;
    max-width: 30rem;
    margin-left: 40rem;
}
.monstro-banner.support-container .banner-default,
.monstro-banner:has(.center) .banner-default{
    margin-left: unset
}
.monstro-banner:has(.flex-end) .banner-default{
    margin-left: unset;
    margin-right: 40rem;
}
.monstro-banner .banner-default .title{
    position: relative;
    width: 100%;
    font-size: 35pt;
    font-family: Poppins-Extra-Bold;
    color: var(--banner-title);
    text-align: center;
}
.monstro-banner:has(.flex-start) .banner-default .description,
.monstro-banner:has(.flex-end) .banner-default .description{
    color: var(--banner-text-dark);
}
.monstro-banner .banner-default .description{
    position: relative;
    font-size: 12;
    width: 75%;
    text-align: center;
    color: var(--banner-text)
}
.monstro-banner.monstro-banner.support-container .banner-default .description{
    width: auto;
    white-space: nowrap;
}
.hide-visible{
    visibility: hidden;
    opacity: 0;
    transition: opacity 1s ease, visibility 0s 1s;
}

.hide-extra{
    visibility: hidden;
}

.lazy-bg{
    visibility: hidden;
}

@media screen and (max-width: 1024px) {
    .monstro-banner .banner-default{
        margin-left: unset !important;
        margin-right: unset !important;
    }
    .monstro-banner .flex-start,
    .monstro-banner .flex-end {
        position: absolute;
        width: 30%;
    }
    .monstro-banner .flex-start{
        left: 0;
    }
    .monstro-banner .flex-end{
        right: 0;
    }
    
    /* .monstro-banner:has(.fullwidth){
        flex-direction: column;
        height: unset;
    }
    .monstro-banner:has(.fullwidth) .banner-default{
        position: relative;
    } */
}
@media screen and (max-width: 400px){
    .monstro-banner:has(.alignment) .banner-default .title {
        font-size: 20pt !important;
    }
    .monstro-banner:has(.alignment) .banner-default .description {
        font-size: 0.8rem !important;
    }
}

@media screen and (max-width: 350px) {
    .monstro-banner .banner-default{
        width: 100%;
    }
}