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

@font-face {
    font-family: "futura-pt";
    src: url(../fonts/futura-pt-regular.woff2) format("woff2");
    font-weight: normal;
    font-style: normal
}

@font-face {
    font-family: "futura-pt";
    src: url(../fonts/futura-pt-bold.woff2) format("woff2");
    font-weight: bold;
    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;
}

/* Inpage overwrites */

.carousel-text h2 {
    text-transform: uppercase;
    font-weight: bold !important;
    font-family: 'best-cat';
}

/* Page styles */
body {
    min-height: 100vh;
    font-family: 'futura-pt', sans-serif;
}

header {
    display: block;
    background-color: #72bccc;
}

.banner {
    width: 150px;
    display: block;
    margin: auto;
    padding: 20px;
}

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

.grid_wrapper {
    max-width: 100%;
    margin: 0 auto;
}

.grid_container {
    display: none;
}

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

video {
    width: 100%;
}

.videoOuterWrapper {
    max-width: 1148px;
    box-sizing: border-box;
    margin: 0 auto 20px;
}

.videoWrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
}

.videoWrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

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

.video1 { grid-area: video1; }

.image1 { grid-area: image1; }

.image2 { grid-area: image2; }

.image3 { grid-area: image3; }

footer {
    width: 100%;
    background-color: #000000;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    padding: 20px 5px;
    text-align: center;
    /*border-top: 3px solid #ba131d;*/
}

.footerText {
    font-size: 12px;
    margin: 10px 0;
}

.footerText a:link,
.footerText a:visited,
.footerText a:active {
    color: #ffffff;
}

.footerText a:hover {
    text-decoration: none;
}

.footerHeading {
    font-size: 16px;
    margin: 10px 0;
}

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

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