*{
    box-sizing: border-box;
}
html{
    font-family: 'IBM Plex Sans', sans-serif;
}

/*Foto y texto de arriba*/
.seccion1{
	display: flex;
	margin-top: 100px;
    margin-bottom: 8%;
}

/*Imagen*/
.seccion1 img{
    width: 45%;
    height: 45%;
}

/*Caja de texto de arriba*/
.s1-texto{
    width: 50%;
    height: 100%;
    background-color: #E1F3F6;
    margin-top: 5%;
    padding: 5%;
    box-shadow: 0 8px 16px 0 rgba(18, 84, 90, 0.253);
}

/*Titulo de arriba*/
.s1-texto h2{
    font-size: 30pt;
    line-height: 1.7;
    margin-bottom: 5%;
    color: black;
    font-family: 'Prata', serif;
}

/*Texto largo de arriiba*/
.s1-texto p{
    font-size: 20pt;
    line-height: 1.6;
}

/*Columnas de abajo*/
.seccion2{
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-bottom: 5%;
}

/*Texto grande de abajo*/
.s2-texto1{
    width: 60%;
    background-color: #E1F3F6;
    margin-left: 5%;
    padding: 3%;
    font-size: 24pt;
    line-height: 1.6;
    box-shadow: 0 8px 16px 0 rgba(18, 84, 90, 0.253);
}

.s2-texto2{
    width: 50%;
    margin-left: 5%;
    margin-right: 5%;
    font-size: 20pt;
    line-height: 1.6;
}

.foto{
    margin-top: 5%;
    max-width: 100%;
}

/*RESPONSIVE*/
@media (min-width: 1000px) and (max-width:1370px) {

    /*Imagen*/
    .seccion1 img{
        width: 45%;
        height: 45%;
    }
    /*Caja de texto de arriba*/
    .s1-texto{
        display: flex;
        flex-direction: column;
        width: 60%;
        height: 60%;
    }

    /*Titulo de arriba*/
    .s1-texto h2{
        font-size: 25pt;
        margin-bottom: 3%;
    }
    .s1-texto p{
        font-size: 16pt;
        line-height: 1.6;
    }
    /*Texto grande de abajo*/
    .s2-texto1{
        width: 60%;
        background-color: #ffffff;
        margin-left: 5%;
        padding: 3%;
        font-size: 20pt;
        line-height: 1.6;
        box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
    }

    .s2-texto2{
        width: 50%;
        margin-left: 5%;
        margin-right: 5%;
        font-size: 16pt;
        line-height: 1.7;
    }
}


/*RESPONSIVE*/
@media (min-width: 600px) and (max-width:999px) {
    .seccion1{
        flex-direction: column;
        margin-bottom: inherit;
    }

    .seccion1 img{
        width: 55%;
        margin-right: auto;
        margin-left: auto;
    }

    .s1-texto{
        width: 90%;
        margin-right: auto;
        margin-left: auto;
        margin-bottom: 5%;
    }
    .seccion2{
        flex-direction: column;
    }

    .s2-texto1{
        width: 90%;
        margin-right: auto;
        margin-left: auto;
        margin-bottom: 5%;
    }

    .s2-texto2{
        width: 80%;
        margin-right: auto;
        margin-left: auto;
        margin-bottom: 5%;
    }
}

@media (max-width:600px) {
    .seccion1{
        flex-direction: column;
        margin-bottom: inherit;
        margin-top: 80px;
    }

    .seccion1 img{
        width: 50%;
        margin-right: auto;
        margin-left: auto;
    }

    .s1-texto{
        width: 90%;
        margin-right: auto;
        margin-left: auto;
        margin-bottom: 5%;
    }

    /*Titulo de arriba*/
    .s1-texto h2{
        font-size: 22pt;
        line-height: 1.4;
        margin-bottom: 8%;
    }

    .s1-texto p{
        font-size: 15pt;
        line-height: 1.5;
    }
    .seccion2{
        flex-direction: column;
    }

    .s2-texto1{
        width: 90%;
        margin-right: auto;
        margin-left: auto;
        font-size: 20pt;
        line-height: 1.6;
        margin-bottom: 5%;
    }

    .s2-texto2{
        width: 90%;
        margin-right: auto;
        margin-left: auto;
        margin-bottom: 5%;
        font-size: 15pt;
        line-height: 1.5;
    }
}

@media (max-width:400px) {

    /*Titulo de arriba*/
    .s1-texto h2{
        font-size: 17pt;
        line-height: 1.6;
        margin-bottom: 6%;
    }
    .s1-texto p{
        font-size: 15pt;
        line-height: 1.5;
    }
    .s2-texto1{
        width: 90%;
        margin-right: auto;
        margin-left: auto;
        font-size: 18pt;
        line-height: 1.6;
        margin-bottom: 5%;
    }
    .s2-texto2{
        font-size: 15pt;
        line-height: 1.5;
    }
}