.container-flex{
    display: flex;
    background-size: cover!important;
}

.container-flex .items{
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 15px;
}

.container-flex .items .button{
    width: fit-content;
}

.container-flex .items h2{
    color: #fff!important;
    text-transform: uppercase;
    font-size: 47px;
}

.container-flex .items p{
    color: #fff!important;
    font-size: 30px;
}

.container-flex .items.bottom{
    background-size: contain;
    background-position: bottom;
}

.container-flex .items.col-seven-ten{
    width: 60%;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.container-flex .items.col-three-ten{
    width: 40%;
}

@media (max-width: 650px) {
    .container-flex .items.bottom{
        display: none;
    }
    .container-flex .items.col-seven-ten{
        width: 100%;
        padding: 30px;
    }
    .container-flex .items h2{
        font-size: 27px;
        text-align: center;
    }
    .container-flex .items p{
        font-size: 18px;
        text-align: center;
    }
}

@media (max-width: 992px) {
    .container-flex .items h2{
        font-size: 40px;
        text-align: center;
    }
    .container-flex .items p{
        font-size: 18px;
        text-align: center;
    }
}