/* <<< --- Banner App --- >>> */


#banner-app {
    position: relative;
    width: 100%;
    height: 450px;
    overflow: hidden;
}

#banner-app .bg {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
    width: 100%;
    height: 450px;
    background-image: url(../imgs/banner-app-fixed.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    overflow: hidden;
}

#banner-app .slider-title {
    position: absolute;
    bottom: 30px;
    left: 50%;
    z-index: 20;
    transform: translateX(-50%);
    pointer-events: none;
    font-size: 48px;
    line-height: 70px;
    width: 100%;
    height: auto;
    text-wrap: wrap;
    padding: 0 50px;
}

#banner-app .slider-title span {
    font-size: 48px;
    line-height: 70px;
    transition: .2s ease;
}

@media screen and (min-width: 980px) {
    #banner-app .bg:hover .slider-title {
        letter-spacing: 1px;
    }
}

@media screen and (max-width: 720px) {
    #banner-app .slider-title, #banner-app .slider-title span {
        font-size: 38px;
        line-height: 50px;
    }
}

@media screen and (max-width: 500px) {
    #banner-app .bg {
        background-image: url(../imgs/banner-app-responsive.jpg);
    }
}