/* ======= Header style ======= */
.hero-section {
    z-index: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    overflow: hidden;
    min-height: 100vh;
    position: relative;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}
.hero-section::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -5;
    background: #fff;
}
.hero-inner {
    position: relative;
    z-index: 15;
}
.hero-inner .hero-title {
    font-family: 'Alex Brush', cursive;
    font-weight: 400;
    margin: 0 0 15px 0;
    font-size: 72px;
    color: #FFF;
    display: block;
    line-height: 1em;
    position: relative;
}
.hero-inner .hero-subtitle {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 20px;
    font-weight: 400;
    letter-spacing: 5px;
    margin-bottom: 0;
    color: #fff;
    text-transform: uppercase;
}
@media only screen and (max-width: 576px) {
    .hero-inner .hero-title {
        font-size: 40px;
    }
    .hero-inner .hero-subtitle {
        font-size: 12px;
    }
}
#home .vegas-overlay {}
#home .hero-inner .row {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

/* bounce */
.hero-inner .arrow {
    position: relative;
    top: 27vh;
    width: 100%;
    text-align: center;
    z-index: 8;
}
.hero-inner .arrow.bounce {
    -webkit-animation: bounce 2s infinite;
    animation: bounce 2s infinite;
}
.hero-inner .arrow i {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    color: #fff;
    font-size: 20px;
}
.hero-inner .arrow i:hover:after {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
    opacity: 0;
    -webkit-transition: all .5s;
    transition: all .5s;
}