@font-face {
    font-family: "Invention";
    src: url("../webfonts/Invention_W_Bd.woff") format("woff");
}
@font-face {
    font-family: "Invention-Regular";
    src: url("../webfonts/Invention_W_Rg.woff") format("woff");
}

@font-face {
    font-family: "Invention-Light";
    src: url("../webfonts/Invention_W_Lt.woff") format("woff");
}

:root {
    --plyr-color-main: #2e9e97;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.plyr {
    display: block !important;
}

.plyr audio,
.plyr iframe,
.plyr video {
    display: block;
    height: 100% !important;
    width: 100% !important;
}

html,
body {
    height: 100%;
}

.header,
.footer {
    background-color: #2e9e97;
}

.header {
    width: 100%;
    position: fixed;
    top: 0;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    padding: 1rem;
}

body {
    font-family: "Invention-Regular", sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #0d2340;
}

.logo {
    width: 120px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.5rem;
}

.container-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.titles {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

main {
    height: 100%;
    background-color: #f4f4f4;
    display: flex;
    justify-items: center;
    justify-content: center;
    flex-direction: column;
}

.video-container {
    width: 100%;
    max-width: 100%;
    height: auto;
    max-height: 350px;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    position: relative;
    -webkit-box-shadow: 0 0 10px #333;
    box-shadow: 0 0 10px #333;
}

.video-container .plyr {
    width: 100% !important;
    height: 100% !important;
    display: block !important;
    max-width: none !important;
    max-height: none !important;
}

.subtitle,
.after-video {
    text-align: center;
    color: #333333 !important;
    /* font-family: "Invention-Regular", sans-serif; */
}

h1 {
    text-align: center;
    color: #333333 !important;
    font-family: "Invention";
    font-weight: unset;
}

.footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    padding: 0.3rem 1rem;

    font-size: 0.825rem;
    line-height: 0.825rem;
    color: #f4f4f4;
    text-align: center;
}

@media (max-width: 1180px) {
    .container.footer-grid {
        flex-direction: column;
        row-gap: 20px;
    }

    .footer-column {
        width: 100%;
    }

    video {
        object-fit: cover;
        width: 100%;
        height: 100%;
    }
}

@media (max-width: 780px) {
    h1 {
        font-size: 36px !important;
    }

    video {
        object-fit: cover;
        width: 100%;
        height: 100%;
    }

    .header {
        padding: 10px;
    }

    .footer {
        padding: 0.5rem;
    }
}
