html,
body{

    height:100%;

}

.hero{

    position:relative;

    width:100%;

    height:calc(100vh - 145px);

    overflow:hidden;

}

#hero-video{

    width:100%;

    height:100%;

    object-fit:cover;

    display:block;

}

.hero-content{

    position:absolute;

    inset:0;

    display:flex;

    justify-content:center;

    align-items:flex-end;

    padding-bottom:12vh;

    pointer-events:none;

}

.hero-content h2{

    color:white;

    font-family:"Hoefler Text","Times New Roman",serif;

    font-weight:normal;

    font-size:2rem;

    letter-spacing:.08em;

    text-align:center;

    text-shadow:0 2px 12px rgba(0,0,0,.35);

    padding:0 2rem;

}

@media (max-width:768px){

    .hero{

        height:calc(100vh - 130px);

    }

    .hero-content h2{

        font-size:1.5rem;

    }

}