html, body, p, h1, h2, h3 {
    color: #403B38;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 400;
}

/* header */

main {
    height:95vh;
}
.l-container {
    height: 100%;
    width: auto;
    position: relative;
    overflow: hidden;
    text-align: center;
    display: flex;
}

.c-page-video {
    object-fit: cover;
    position: absolute;
    height: 100%;
    width: 100%;
}

.c-page-header {   
    position: relative;
    color: white;
    background-color: rgba(255, 255, 255, 0.75);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.c-page-header .c-page-header__logo {
    padding-bottom: 20px;
    width: 80%;
    max-width: 300px;
    min-width: 200px;
    height: auto;
}

.c-page-header__desc {
    font-weight: 400;
    font-size: 22px;
}

/* footer */

/* desktop & tablet - default */

footer {
    background-color: #403B38;
    padding: 40px 100px;

}

footer .l-footer {
    max-width: 1200px;
    margin-right: auto;
    margin-left: auto;
    display: flex;
    flex-direction: column;
}

footer .c-footer--desktop-tablet {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 0 40px 0;
}

footer .c-footer--mobile {
    display: none;
}

footer .c-footer__glyph {
     width: 50px;
     height: auto;
}

footer .l-social {
    display: flex;
    flex-direction: column;
    align-items: left;
    justify-content: center;
}

footer .l-social .icon {
    fill: #1DA1F2;
    width: 32px;
    height: 32px;
}

footer .l-social .icon:hover {
    fill: #1781C2;
}

p.l-social__cta-desc {
    color: white;
    margin: 0 0 10px 0;
    font-size: 18px; 
}

footer .c-footer__copyright p {
    font-size: 12px;
    color: white;
}

/* mobile */

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

    footer .c-footer--desktop-tablet {
        display: none;
    }

    footer .c-footer--mobile {
        display: flex;
        align-items: center;
        flex-direction:column;
        justify-content:space-between;
        margin-bottom: 40px;
    }

    footer .c-footer__glyph {
        margin-bottom: 40px;
        width: 40px;
        height: auto;
   }

    footer .l-social {
        align-items: center;
        justify-content: center;
    }
    
    footer .c-footer__copyright p {
        font-size: 12px;
        color: white;
        text-align: center;
    }

    p.l-social__cta-desc {
        font-size: 16px;
    }

    footer .l-social .social {
        width: 32px;
        height: 32px;
    }

}