.img-responsive {
    max-width: 100%;
    height: auto;
    display: block;
}

.banner-innovation {
    margin: 0 auto;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.banner-item {
    padding: 0 30px 0 30px;
    text-align: center;
}

.banner-item h1 {
    color: #FFF;
    font-family: "HelveticaNeue-Bold";
    font-size: 4rem;
    font-weight: normal;
    line-height: 3.5rem;
}

.banner-item h3 {
    color: #FFF;
    font-size: 1.05rem;
    font-family: "HelveticaNeue-Bold";
    line-height: 1.6rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (min-width: 992px) {
    .banner-item {
        width:80%;
    }
}

@media (min-width: 1200px) {
    .banner-item {
        width:60%;
    }
}
/*------------------------------------------------------*/
.arrow
{
    position: relative;
    bottom: -2rem;
    left: 50%;
    margin-left:-20px;
    width: 40px;
    height: 40px;
    background-image: url('../../resources/img/arrow.svg');
    background-size: contain;
}

.bounce {
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-30px);
    }
    60% {
        transform: translateY(-15px);
    }
}
/*------------------------------------------------------------------*/
.search-icon {
    height: 50px;
    width: 50px;
    float: right;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    background-color: #028dc9;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}
.input-search {
    border-right: none;
}
.hover-effect {
    position: relative;
}
.hover-effect img {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}
.hover-effect:hover img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}
