section.banner {
    width: 100%;
    height: 600px;
    position: relative;
}

section.banner figure {
    width: 100%;
    height: 100%;
}

section.banner figure img {
    width: 100%;
    height: 100%;
}


.container-banner {
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 3;
    top: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: rgb(0, 0, 0, .3);
    color: white;
}

.container-banner .banner-text{
    max-width:800px;
    width: 100%;
    text-align:center;
}

.container-banner .banner-text h1{
    text-align:center;
}

.container-banner .banner-text p{
    text-align:center;
}

.container-banner>div p {
    margin-top: 40px
}

@media screen and (max-width:620px) {
    .container-banner {
        padding: 20px;
    }
}