@font-face {
    font-family: 'grant-burge';
    src: url('../fonts/grant-burge.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'jost';
    src: url('../fonts/jost.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}

/* CSS Reset */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, a, img, ol, ul, li {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

/*!* In page app style overwrites *!*/
/*.variantLabel, #BottomFilter {*/
/*    font-family: 'Baskerville', Serif;*/
/*}*/

/* Page styles */
body {
    min-height: 100vh;
    background-color: #ffffff;
    background-size: cover;
    background-repeat: repeat;
    background-position: center;
    /*display: flex;*/
    /*flex-direction: column;*/
    font-family: 'grant-burge', sans-serif;
}

header {
    display: block;
    /*background-color: #ffffff;*/
    /*border-bottom: 50px solid #f4317e;*/
}

.banner {
    width: 100%;
}

#app-wrapper {
    box-sizing: border-box;
}

.grid_wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.grid_container {
    margin: 0 25px 25px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    gap: 20px 20px;
    grid-auto-flow: row;
    grid-template-areas:
    "video1 video1"
    "image1 image1";
}

.video1 { grid-area: video1; }

.image1 { grid-area: image1; }

.image2 { grid-area: image2; }

.grid_img img {
    display: block;
    width: 100%;
}

.grid_text h2 {
    text-align: center;
    font-weight: bold;
}

.grid_text p {
    text-align: center;
}

video {
    width: 100%;
}

footer {
    width: 100%;
    background: #781333;
    color: #ffffff;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    padding: 15px;
}

.footerText {
    font-size: 12px;
    color: #ffffff;
    margin: 6px 0 12px;
    font-family: 'grant-burge', Serif;
}
.footerText a {
    color: #ffffff;
    text-decoration: none;
}
.footerText a:hover {
    text-decoration: underline;
}

img.footerLogo {
    display: block;
    width: 190px;
    padding: 10px;
}

@media screen and (max-width: 600px) {
    #app-wrapper {
        width: 100%;
    }

    .grid_container {
        display: flex;
        flex-direction: column;
    }

    footer {
        padding: 0 15px;
        box-sizing: border-box;
    }
}
