.intro {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    height: 8em;
}
.intro__content{
    position: relative;
    z-index: 1;
}
.intro__text{
    color: var(--color-white);
    text-align: center;
    font-size: 1.6em;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    text-transform: uppercase;
}
.intro__bg, .intro__bg img{width: 100%;}
.intro__bg {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    display: flex;
}
video.intro__bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    touch-action: none;
    pointer-events: none;
}
.intro__bg img {object-fit: cover;}
@media (min-width: 1200px) {
    .intro.intro-video {height: 100vh;}
}
@media (max-width: 1200px) and (min-width: 840px) {
    .intro.intro-video {height: 675px;}
}
@media (max-width: 841px) {
    .intro.intro-video {height: 56vw;}
}
@media (max-width: 700px) {
    .intro__text {font-size: 10.2857143vw;}
}