.new-hero {
    height: calc(100vh - 185px);
    min-height: 500px;
    margin-top: 28px;
}
@media screen and (min-width: 1200px) {
    .new-hero {
        height: calc(100vh - 150px);
        margin-top: 0;
    }
}
.hh-bars {
    width: 300px;
    margin: 0 auto;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    border-color: white;
    border-style: solid;
    border-width: 100vw;
    box-sizing: content-box;
    transition: width 3s, height 3s;
    min-width: 300px;
}
.hh-bars-grow {
    width: 1000%;
}
.hh-bars-wrap {
    position: absolute;
    top: 0;
    height: 100%;
    width: 100%;
    z-index: 1;
}

.hh-content {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hh-heading {
    height: 0;
    overflow: hidden;
    text-align: center;
    color: #fff;
    background-color: rgba(0, 0, 0, 0.5);
    transition: height 0.75s;
    transition-delay: 0.75s;
}
.hh-bar-grow .hh-heading {
    height: 100px;
}
.hh-bar {
    background-color: #fff;
    margin: 0 auto;
    width: 0;
    transition: width 0.75s ease;
    height: 3px;
}
.hh-bar-grow .hh-bar {
    animation-duration: 2.25s;
    animation-name: bar;
}
.hh-sub-heading {
    font-size: 18px;
}
.hh-heading h1 {
    color: #fff;
    margin-bottom: 0;
}

.hh-heading-wrap {
    max-width: 90vw;
    width: 400px;
}
@keyframes bar {
    from {
        width: 0;
    }
    10% {
        width: 0;
    }
    40% {
        width: 100%;
    }
    70% {
        width: 100%;
    }
    to {
        width: 0;
    }
}

@media screen and (min-width: 992px) {
    .hh-heading h1 {
        color: #fff;
        font-size: 48px;
        margin-bottom: 0;
    }
    .hh-sub-heading {
        font-size: 24px;
    }
    .hh-bar-grow .hh-heading {
        height: 120px;
    }
}
@media screen and (min-width: 768px) {
    video.hh-video {
        left: 0;
        top: 0;
        transform: none;
    }
}