




/**/
.animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}
.fadeIn {
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn;
}

.banner {
    position: relative;
    height:350px!important;
    overflow:hidden;
    border:0px red solid;
}
.banner img {
    width: 100%;
    vertical-align: middle;
    height:100%;
}
.banner-title {
   width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    position: absolute;
    top: 0;
    text-align: center;
}
.banner-title .banner-txt {
    margin-top:140px;
    color: white;
    animation-duration: 3s;
}

.banner-txt h2 {
    font-size: 30px;
    font-weight: 100;
    margin-bottom: 15px;
    font-weight:bold;
}
.banner-txt p {
    font-size: 20px;
}


@media screen and (max-width:1000px)
{
   
    .banner-txt h2 {
        font-size: 1.5rem;
    } 

.banner-txt p {
    font-size: 1rem;
    padding:1rem;
}

}