// // Hero // --- // bigchain.io // $menu-height-md: 73px; .hero { @extend .background--photo; text-align: center; overflow: hidden; position: relative; .section { @media ($screen-md) { min-height: calc(100vh - #{$menu-height-md}); } } .logo--full { fill-opacity: .8; margin: 0 auto; max-width: 31em; } .section-title { color: #fff; &:after { display: none } } .btn { color: #fff; opacity: .8; position: absolute; bottom: ($spacer * 2); left: 0; right: 0; width: 100%; display: none; @media ($screen-md) { display: block; } &:hover, &:focus { opacity: 1; } // the caret .icon { width: 12px; height: 12px; stroke: #fff; display: block; margin: auto; } } // intro animation .logo--full, .section-title, .btn { @extend .animation-slide-in-from-bottom; animation-duration: 1s; animation-fill-mode: backwards; } .logo--full { animation-timing-function: $timing-default; } .section-title, .btn { @extend .animation-slide-in-from-bottom; animation-play-state: paused; } .btn { animation-delay: .2s; } &.is-ready { .section-title, .btn { animation-play-state: running; } } } .hero__content { position: relative; z-index: 1; } // // Video hero // .hero-video { // poster image background: $brand-main-blue-dark url('../img/hero-video-poster.jpg') no-repeat center center; background-size: cover; } .hero-video .menu, .hero-video__content { @media ($screen-md) { position: absolute; left: 0; right: 0; top: 0; } } .hero-video__content { @media ($screen-md) { z-index: 1; bottom: 0; display: flex; flex-wrap: wrap; align-items: center; } } // video container .hero-video__background { z-index: 0; @media ($screen-md) { max-height: 100vh; } } // the video itself .hero-video__video { @extend .img--responsive; }