@import url('https://fonts.googleapis.com/css2?family=Encode+Sans:wght@100;200;300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@200;300;400;500;600;700;800&display=swap');
html,body{height: 100%;}
body{margin: 0px;}
.contenedor{
	font-family: 'Encode Sans', sans-serif;
	display: flex;
	flex-direction: column;
	align-items: center;
	/*height: 100%;*/
	justify-content: center;
}
.contenedor .cabecera{
	display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    background: #fff;
    padding: 10px 0px 0px 0px;
}
.contenedor .cabecera > img{
	max-width: 90px;
}
.contenedor .middle{
	position: relative;
}
.contenedor .middle > img{
	max-width: 100%;
    height: auto;
}
.contenedor .middle > h1{
    color: #fff;
    font-size: 36px;
    font-style: normal;
    text-transform: none;
    font-weight: 400;
    margin-top: 0px;
    text-align: center;
    font-family: 'Nunito', sans-serif;
    line-height: 37px;
    position: absolute;
    width: 65%;
    top: 30%;

    margin-left: auto;
    margin-right: auto;
    left: 0;
    right: 0;
}
.contenedor > img{max-width: 240px;}
.contenedor > ul{
	display: flex;
	padding: 0px;
	/*margin-top: 120px;*/
	max-width: 1000px;
    margin: 0 auto;
    background: #fff;
    margin-top: -120px;
    z-index: 9;
    margin-bottom: 70px;

	box-shadow: 1px 1px 5px 0px rgba(48,48,48,0.75);
	-webkit-box-shadow: 1px 1px 5px 0px rgba(48,48,48,0.75);
	-moz-box-shadow: 1px 1px 5px 0px rgba(48,48,48,0.75);
}
.contenedor > ul > li{
	padding: 40px 30px 20px 30px;
	list-style: none;
    margin: 0px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.contenedor > ul > li:nth-child(1):after{
	content: '';
	display: inline-block;
	border-right: 1px solid#ffffff85;
	width: 1px;
	height: 25px;
	margin-left: 20px;
	vertical-align: middle;
}
.contenedor > ul > li > h3{
    margin: 0px;
    font-size: 21px;
    line-height: 25px;
    color: #231f20;
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    margin-bottom: 8px;
    margin-top: 18px;
    text-align: center;
}
.contenedor > ul > li > p{
	color: #646464;
    font-size: 17px;
    text-align: center;
    line-height: 21px;
    margin: 0px;
    margin-bottom: 20px;
    font-family: 'Nunito', sans-serif;
}
.contenedor > ul > li > a{
	color: #fff;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: 400;
    background: #009928;
    display: inline-block;
    padding: 6px 25px;
    border-radius: 20px;
    font-size: 13px;
}
.contenedor > ul > li > a:hover{
	background: #000;
}
@media (max-width:767px){
	.contenedor .cabecera{padding-bottom: 10px;}
	.contenedor > ul{flex-direction: column;margin-bottom: 0px;margin-top: -5px;padding-bottom: 30px;}
	.contenedor .middle > h1{font-size: 20px;padding: 0px 20px;width: auto;line-height: 25px;top: 15%;}
}
@media (min-width:767px) and (max-width:991px){
	.contenedor .middle > h1{
		font-size: 28px;
		line-height: 30px;
		top: 16%;
	}
}
@media (min-width:992px) and (max-width:1199px){
	.contenedor .middle > h1{
		font-size: 28px;
		line-height: 30px;
		top: 20%;
	}
}