/* ------------------------------------------------------------ */
/* ------------------------ HERO BANNER ----------------------- */
/* ------------------------------------------------------------ */

#hero {
    height: 100vh;
    display: flex;
    align-items: center;
    color: #fff;
    background-image: url(../img/banner-4.jpg);
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    position: relative;
    overflow: hidden;
    clip-path: polygon(0% 0%, 100% 0, 100% 90%, 50% 100%, 0 90%);
}

.content_hero {
    max-width: 80rem;
    margin-left: 100px;
}

.hero-video {
    position: absolute;
    top: 0px;
    left: 0;
    width: 100%;
    height: 700px;
    overflow: hidden;
}

.hero-video img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overlay-video {
    height: 700px;
    width: 100%;
    position: absolute;
    top: 0px;
    left: 0;
    background: #3c3c3c;
    z-index: 1;
    opacity: .5;
}

.header-content {
    z-index: 100;
}

.hero-content {
    width: 1000px;
    z-index: 2;
}

#hero .container,
#hero .container-fluid {
    padding-top: 84px;
}

#hero h1 {
    margin: 0;
    font-size: 36px;
    font-weight: 600;
    line-height: 64px;
    color: #fff;
}

#hero h3 {
    letter-spacing: 1px;
    color: #f59a29;
    margin: 20px 0 0 0;
    font-size: 20px;
    font-family: 'Roboto';
    font-weight: bold;
}

#hero .btn-get-started {
    font-family: 'Open Sans';
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 28px;
    border-radius: 5px;
    transition: 0.5s;
    margin-top: 30px;
    color: #fff;
    border: 2px solid #fff;
}

#hero .btn-get-started:hover {
    background: #fff;
    color: #f59a29;
}

#hero .animated {
    animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

@-webkit-keyframes up-down {
    0% {
        transform: translateY(10px);
    }

    100% {
        transform: translateY(-10px);
    }
}

@keyframes up-down {
    0% {
        transform: translateY(10px);
    }

    100% {
        transform: translateY(-10px);
    }
}

/* ------------------------------------------------------------ */
/* ---------------------- HERO RESPONSIVE --------------------- */
/* ------------------------------------------------------------ */

@media screen and (max-width: 1300px) {
    #hero {
        height: 80vh;
        text-align: center;
    }

    .overlay-video {
        height: 100%;
    }

    #hero .container,
    #hero .container-fluid {
        padding-top: 68px;
    }

    #hero .animated {
        -webkit-animation: none;
        animation: none;
    }

    #hero .hero-img {
        text-align: center;
    }

    #hero .hero-img img {
        width: 100%;
        margin-top: 0;
    }
}

@media screen and (max-width: 1024px) {
    #hero {
        height: 90vh;
        text-align: center;
    }

    #hero .hero-img img {
        width: 90%;
        margin-top: 0;
    }
}

@media screen and (max-width: 1000px) {
    #hero {
        height: 80vh;
        text-align: center;
    }

    .overlay-video {
        height: 100%;
    }

    #hero .container,
    #hero .container-fluid {
        padding-top: 68px;
    }

    #hero .animated {
        -webkit-animation: none;
        animation: none;
    }

    #hero .hero-img {
        text-align: center;
    }

    #hero .hero-img img {
        width: 70%;
        margin-top: -150px;
    }
}

@media screen and (max-width: 800px) {
    #hero {
        height: 80vh;
    }

    .overlay-video {
        height: 100%;
    }

    #hero h1 {
        font-size: 26px;
        line-height: 36px;
    }

    #hero h2 {
        font-size: 18px;
        line-height: 24px;
    }

    #hero .hero-img img {
        width: 70%;
        margin-top: -150px;
    }
}

@media screen and (width: 540px) {
    #hero {
        height: 100vh;
    }

    #hero .hero-img img {
        width: 80%;
        margin-top: -100px;
    }
}

@media screen and (max-width: 400px) {
    #hero {
        height: 100vh;
    }

    #hero .hero-img img {
        width: 80%;
        margin-top: -100px;
    }
}

@media screen and (width: 344px) {
    #hero {
        height: 100vh;
    }

    #hero .hero-img img {
        width: 100%;
        margin-top: -150px;
    }
}