.banner-1{
    width: 100vw;
    height: 100vh;  
    position: absolute;
    overflow: hidden;
    z-index: 1;
    background-color: #1946A0;
}
.banner-1__img{
    background: url(../imgs/banner-medio-min.jpg) no-repeat center center ; 
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    transform: scale(1.2);
    transition: all 0.5s forwards;
    overflow: hidden;
    position: absolute;
    width: 100vw;
    height: 100vh;
    display: none;
}

.banner-1__img-zoomout{
    animation: leaves 12s forwards ;
}
@keyframes leaves {
    0% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1.0);
    }
}

.banner-1__img-zoomin{
    animation: leaves2 12s forwards ;
}
@keyframes leaves2 {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.2);
    }
}



.banner-1__txt{
    position: absolute;
    left: 4vw;
    top: 50%;
    width: 31vw;
}

.banner-1__txt__item{
    font-family: FlamaCondensedBlack;
    font-size: 3.5vw;
    color: #1946A0;
    margin: 0px 0px 0px 0px;
    padding: 0px;
    line-height: 3.5vw;
    display: none;
    animation-duration: 0.5s;
}

.banner-1__txt__item2{
    font-family: FlamaCondensedMedium;
    text-transform: uppercase;
    font-size: 2.8vw;
    line-height:2.8vw;
    margin: 1vw 0 0 0;
}


.banner-1__linha{
    background-color: #EB1E50;
    width: 16vw;
    height: 0.5vw;
    margin: 1vw 0 0 0;
    transform: scaleX(0);
    transition: all 0.5s forwards;
    display: none;
    transform-origin: 0% 100%;
}

.banner-1__linha-show{
    animation: grow 1s forwards ;
}

@keyframes grow {
    0% {
        transform: scaleX(0);
    }
    100% {
        transform: scaleX(1);
    }
}

.banner-1__txt-vertical{
    position: absolute;
    right: 0px;
    left: 0px;
    top: auto;
    bottom: 0px;
    background-color:#1946A0;
    text-align: center;
    height: 120px;
    padding-top: 20px;
    width: 100%;
}

.banner-1__txt-vertical .banner-1__txt__item{
    font-size:25px ;
    line-height: 30px;
    color: #fff;
}

.banner-1__txt-vertical .banner-1__txt__item2{
    font-size:14px ;
    line-height: 14px;
}

.banner-1__txt-vertical .banner-1__txt__item .banner-1__txt__item-strong{
    font-size:26px ;
}

.banner-1__txt-vertical .banner-1__linha{
    background-color: #009BE1;
    width: 100px;
    height: 5px;
    margin: 10px auto;   
}
