.block-image-con-texto h2 {
    font-size: 65px;
    text-transform: uppercase;
    color: #1D417B;
    margin: 0;
}

.block-image-con-texto p {
    font-family: 'Lora';
    font-size: 23px;
    margin: 0;
}

.block-imagen-con-texto-wrapper{
    border: 5px solid #1D417B;
    border-radius: 300px;
    background-color: #EFF0EC;
    display: flex;
    flex-direction: row;
    overflow: hidden;
    justify-content: space-between;
}

.imagen-wrapper{
    width: 50%;
}

.imagen-wrapper img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.text-wrapper{
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 24px 64px 24px 32px;
    text-align: left;
    width: 50% !important;
}


@media only screen and (max-width: 980px) {
    .block-image-con-texto h2 {
        font-size: 48px;
    }
    
    .block-image-con-texto p {
        font-size: 20px;
    }
}

@media only screen and (max-width: 768px) {
    .block-imagen-con-texto-wrapper{
        /*border: 0;*/
        border-radius: 200px !important;
        flex-direction: column-reverse;
        margin: 16px 64px 0 64px;
        justify-content: center;
    }
    
    .imagen-wrapper{
        width: 100%;
    }
    
    .imagen-wrapper img{
        width: 100% !important;
        height: 100% !important;
        margin-bottom: -16px;
    }
    
    .text-wrapper{
        text-align: center;
        width: 100% !important;
        padding: 24px 32px 24px 32px;
    }
    
    .text-wrapper p{
        padding: 2.5em 1em 0.5em 1em;
    }
}

@media only screen and (max-width: 480px) { 
    .imagen-wrapper img{
        width: auto !important;
        height: 100% !important;
        max-height: 280px;
        margin-bottom: -16px;
    }
    
    .text-wrapper{
        padding: 48px 24px 24px 24px;
    }
    
    .text-wrapper p{
        font-size: 18px;
        padding: 0;
    }
}