.baner {
    position: relative;
    height: 30%;
    max-height: 350;
}
.baner div{
    position: absolute;
    width: inherit;
    width: 100%;
    height: 100%;
    max-height: inherit;
    animation-name: fadeOut;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    animation-duration: 27s;
    animation-direction: alternate;
}

.baner div article{
    max-height: 100%;
    max-width: 100%;
    text-align: right;
    padding: 3rem 3rem;
}
.baner div article p{
    color: rgb(0, 57, 0);
    font-family: 'Open Sans', sans-serif;
    font-style: italic;
    font-weight: 300;
}
.baner div article h2{
    font-size: 40;
    font-weight: bold;
    color:whitesmoke;
    font-family: 'Open Sans', sans-serif;
}

.baner div:nth-of-type(1) {
    animation-delay: 18s;
}
.baner div:nth-of-type(2) {
    animation-delay: 9s;
}
.baner div:nth-of-type(3) {
    animation-delay: 0s;
}

@keyframes fadeOut {
    0% {opacity: 1;}
    33% {opacity: 0;}
    66% {opacity: 0;}
    100% {opacity: 1;}
}
