* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
body {
    margin: 0; /* interferes with 100vw */
    font-family: 'Lato', sans-serif;
    font-size: 1.1rem;
    line-height: 1.7rem;
}
p {
    margin: 0;
    margin-bottom: 21px;
}
h3 {
    margin: 0;
    margin-bottom: 4px;
    font-weight: 600;
}
a {
    color: #FFF;
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}
section.hero {
    margin: 0;
    display: flex;
    height: 100vh;
    width: 100%;
    min-height: -webkit-fill-available;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

.vimeo-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
 }
 .vimeo-wrapper iframe {
    width: 100vw;
    height: 56.25vw; /* Given a 16:9 aspect ratio, 9/16*100 = 56.25 */
    min-height: 100vh;
    min-width: 177.77vh; /* Given a 16:9 aspect ratio, 16/9*100 = 177.77 */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
 }

 
#lottie{
    background-color:#0e0e0e;
    width:100%;
    height:100%;
    display:block;
    overflow: hidden;
    transform: translate3d(0,0,0);
    opacity: 2;
    z-index: -9999;
    position:absolute;
    pointer-events: none;
}
iframe {
    width: 100%;
    height: 100%;
}
.video-container {
    height: inherit;
    width: 100%;
    display: flex;
}

section.wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}
.container {
    max-width: 1440px;
    display: flex;
}

img.wide {
    width: 100%;
    display: block;
}
img.square {
    width: 100%;
    display: block;
}
ul {
    margin-block: 0;
    padding-inline: 0;
    list-style-type: none;
}

.content-center {
    display: flex;
    flex-direction: column;
}
.jc {
    justify-content: center;
}
.w-half {
    width: 50%;
}
.m-l {
    margin: 120px 64px;
}
.mv-0 {
    margin-top: 0;
    margin-bottom: 0;
} 
.h-100 {
    height: 100vh;
}
.video-container { 
    position: relative; 
    padding-bottom: 56.25%; 
    height: 0; overflow: hidden; 
    max-width: 100%; 
  } 
  
  .video-container iframe, 
  .video-container object, 
  .video-container embed { 
    position: absolute; 
    top: 0; left: 0; 
    width: 100%; 
    height: 100%; 
  } 

.dark {
    background-color: #0F0F0F;
    color: #FFF;
}
.light {
    background-color: #FFF;
    color: #000
}
footer {
    display: flex;
    justify-content: center;
}
footer.wrapper {
    display: flex;
    align-items: center;
}

footer .container {
    max-width: 1440px;
    width: -webkit-fill-available;
    display: flex;
    height: auto;
}

 @media (max-width: 991.98px) { 

    .m-l {
        margin: 84px 32px;
    }
    .mv-0 {
        margin-top: 0;
        margin-bottom: 0;
    }  
  }

@media (max-width: 767.98px) { 
    .container {
        width: 100%;
        flex-direction: column;
    }
    .w-half {
        width: auto;
    }
    .m-stack:first-of-type {
        margin-top: 64px;
        margin-bottom: 32px;
    }
    .m-stack {
        margin-top: 32px;
        margin-bottom: 64px;
    }
    .mv-0 {
        margin: 64px 32px;
    } 
 }