.longFlex a, .shortFlex a {
    display: block;
    width: 100%;
    height: 100%;
}
.flexRow {
    display: flex;
    flex-direction: row;
    width: 100%;
}

.longFlex {
    display: flex;
    flex: 1;
}

.shortFlex {
    display: flex;
    flex: 0.6;
}

.shortFlex img, .longFlex img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mainContainer {
    height: 70vh;
}

.mainContainer {
    height: 70vh;
    display: flex;
    flex-direction: column;
}

.flexRow {
    display: flex;
    flex-direction: row;
    width: 100%;
    height: 50%;
}

.hamburgerText a[href="/"] {
    display: none;
}

.flexRow video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    transition: all 0.25s ease-in-out;
}

.flexRow video:hover {
    filter: brightness(1);
}
.longFlex, .shortFlex {
    position: relative;
}
.flexRow p {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 10;
    transform: translate(-50%,-50%);
    color: white;
    font-family: 'Bold';
    font-size: 4em;
    margin: 0;
    letter-spacing: 0.1em;
    pointer-events: none;
}



.flexRow>div video{
	background-repeat:no-repeat;
	background-size:cover;
	background-position:center;
    filter: brightness(0.6);
}






@media only screen and (max-width:1000px){
    html #header h1.ads {
        display: block;
        opacity: 0;
    }
    html .longFlex, html .shortFlex {
        flex: unset;
        height: 26vh;
    }
    html .mainContainer {
        height: auto;
    }
    html .shortFlex img,html .longFlex img {
        display: block;
    }
    html .flexRow{
        flex-direction: column;
    }
}

@media only screen and (max-width:500px){

.flexRow p{
    font-size:2.5em;
}
}