* {
    outline: none;
    margin: 0 auto;
    padding: 0;
}

:root {
    --divider_spaceb: 75px;
    --divider_spacea: 30px;
    --divider_spacea_mobile: 30px;
    --divider_spaceb_mobile: 25px;
}

body,html {
    position:relative;
    width:100%;
    overflow:hidden;
    font-family: "Open Sans", sans-serif;
    font-optical-sizing: auto;
}

header,
main,
section,
footer {
    position:relative;
    width:100%;
    z-index:3;
    box-sizing: border-box;
}

.video-section {
    position:fixed;
    width:100%;
    height:100vh;
    top:0;
    left:0;
    z-index:1;
}

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

.view-container {
    position:relative;
    margin:0 auto;
    text-align:center;
}

main {
    display:table;
    width:100%;
    height:100vh;
}

.content {
    display:table-cell;
    vertical-align: middle;
}

h1,
h2 {
    font-size:16px;
    text-transform:uppercase;
    font-weight:400;
    letter-spacing:4px;
    color:#FFF;
}

h2 {
    font-size:63px;
    font-family: "Bodoni Moda", serif;
    letter-spacing:-3px;
    line-height:57px;
}

.divider {
    position:relative;
    margin:var(--divider_spacea) auto var(--divider_spaceb);
    width:2px;
    background:rgba(255,255,255,0.5);
    height:90px;
}

.divider.bottom {
    margin:var(--divider_spaceb) auto var(--divider_spacea);
}

.info {}

.info p.date {
    margin-bottom:15px;
}
.info p {
    font-size:23px;
    line-height:25px;
    color:#FFF;
    font-weight:600;
    text-transform:uppercase;
}

footer {
    position:fixed;
    bottom:0;
    left:0;
    width:100%;
    padding:0 0 10px 5px;
    text-align:left;
    z-index:3;
}
.logo-left,
.logo-right,
.logo-right img {
    display:inline-block;
    vertical-align: middle;
    box-sizing: border-box;
    text-align:left;
}
.logo-left,
.logo-right {
    width:50%;
}
.logo-right {
    text-align:right;
}
.logo-left img,
.logo-right img {
    margin:0;
}
.logo-left img {
    width:100px;
}

.logo-right img {
    max-height:18px;
    opacity:0.75;
}
.logo-right img.ada {
    max-height:15px;
    margin-left:12px;
    max-width:30px;
    opacity:0.35;
}
.logo-right a {
    text-decoration:none;
}
.mobile {
    display:none;
}
@media only screen and (max-width: 967px){
    .mobile {
        display:block;
    }
    .desktop {
        display:none;
    }
}

.link {
    margin-top:25px;
}
.link a {
    position:relative;
    display:inline-block;
    width:100px;
    text-align:center;
    font-size:12px;
    padding:7px 10px;
    color:#FFF;
    border:1px #FFF solid;
    text-transform:uppercase;
    text-decoration:none;
}

@media only screen and (max-height:887px), (max-width > 667px) {
    .divider {
        position:relative;
        margin:var(--divider_spacea_mobile) auto var(--divider_spaceb_mobile);
        height:60px;
    }
    .divider.bottom {
        margin:var(--divider_spaceb_mobile) auto var(--divider_spacea_mobile);
    }
    .info p {
        font-size:16px;
        line-height:18px;
    }
    .content h1 {
        margin-top:-65px;
    }
}

@media only screen and (max-width:667px){
    .divider {
        position:relative;
        margin:var(--divider_spacea_mobile) auto var(--divider_spaceb_mobile);
        height:60px;
    }
    
    .divider.bottom {
        margin:var(--divider_spaceb_mobile) auto var(--divider_spacea_mobile);
    }

    .info p {
        font-size:16px;
        line-height:18px;
    }
    .content h1 {
        margin-top:-125px;
    }
}

