@import url('https://fonts.googleapis.com/css2?family=Barlow:wght@400;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Barlow:wght@400;600&family=Montserrat&display=swap');
* {
    font-family: 'Barlow', sans-serif;
    box-sizing: border-box;
    text-align: center;
    color: #fff;
}

.font-montserrat {
    font-family: 'Montserrat', sans-serif !important;
}

html, body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
}

figure {
    margin: 0;
    position: relative;
}
figure h1 {
    position: absolute;
    top: 20px;
    left: 20px;
    border-right: 3px solid #fff;
    padding: 5px 10px 5px 5px;
}

video {
    width: 100%;
    max-width: 100%;
}

.stretch {
    height: 100px;
    background: #FFFFFF;
    min-height: 100%;
    min-width: 100%;
    background-size: contain;
    margin-top: 400px;
    padding: 10px;
}
/*.stretch h1 {*/
/*    padding: 20px;*/
/*}*/

.hero-wrapper {
    position: fixed;
    bottom: 0;
    right: 0;
    height: auto;
    width: auto;
    background-color: rgba(15,59,89,0.7);
    min-height: 80%;
    min-width: 100%;
    z-index: -9999;
}

.hero-wrapper::before {
    content: '';
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(15,58,89, 0.7);
    z-index: 10;
}