body{
	margin: 0px;
	padding: 0px;
}

section#header {
	display: flex;
	justify-content: center;
	align-content: center;
	align-items: center;
	background-color: #FFFFFF;
	padding-bottom: 10px;
	box-shadow: 0px 5px 10px 0px rgba(0,0,0,0.25);
	position: fixed;
	top: 0px;
	left: 0px;
	width: 100%;
	z-index: 100000;
}

header{
	display: flex;
    justify-content: space-between;
    align-content: flex-end;
    align-items: flex-end;
    flex-wrap: nowrap;
	width: 100%;
	max-width: 1320px;
}
.logo figure img {
	width: 150px;
	height: auto;
}

.topmenu{
	display: none;	
	background-color: #9B80B9;
	color: white;
	padding: 10px 20px;
	font-family: roboto, sans-serif;
	font-weight: 500;
	font-size: 12px;
	line-height: 14px;
}
.topmenu a {
	color: white;
	text-decoration: none;
}

.menu {
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	align-content: flex-end;
	align-items: flex-end;
}

.menunav{
	display: block;
}

.menunav nav {
	position: relative;
	padding-right: 20px;

}

.menunav nav .abrirmenu {
    display: inline-block;
    width: 48px;
    font-size: 32px;
    background-color: transparent;
    border: none;
    color: #9B80B9;
    padding: 0;
}

.menu nav .abrirmenu.abierto {
    display: inline-block;
    width: 48px;
    font-size: 32px;
    background-color: #9B80B9;
    border: none;
    color: #FFFFFF;
	border-radius: 5px 5px 0 0;
    padding: 0;	
}

.menu nav .abrirmenu .bi-list {
	display: inline-block;
}
.menu nav .abrirmenu .bi-x-lg {
	display: none;
}
.menu nav .abrirmenu.abierto .bi-list {
	display: none;
}
.menu nav .abrirmenu.abierto .bi-x-lg {
	display: inline-block;
}

.menunav ul {
	display: none;
}

.menunav ul.abierto {
	display: block;
	position: absolute;
	top: 47px;
	right: 20px;
	padding: 0 20px 20px;
	background-color: #ffffff;
	border-radius: 5px 0 5px 5px;
	border: none;
	border-top: solid 3px #9B80B9;
	z-index: 200000;
}

.menunav ul li {
	margin: 0;
	padding: 20px 20px 0;
	position: relative;
	list-style: none;
}
.menunav ul li ul {
	display: none;
	background-color: #FFFFFF;
	position: absolute;
	top: 60px;
	right: 0px;
	width: 200px;
	padding: 10px;
	list-style: none;
}
.menu ul li:hover ul {
	display: block;
}

.menunav ul li a,
.menunav ul li span {
	display: block;
	text-decoration: none;
	font-family: roboto, sans-serif;
	font-size: 12px;
	line-height: 14px;
	color: #626262;
	padding: 26px 0 0;
}
.menunav ul li a:hover,
.menunav ul li a:active,
.menunav ul li a:focus,
.menunav ul li span:hover {
	color: #9B80B9;
	text-decoration: underline;
}
.menu ul li ul li {
	padding: 0;
	margin: 0;
}
.menu ul li ul li a {
	padding: 10px;
	text-align: center;
}

.titulopos {
	color: #9B80B9;
	text-align: left;
	font-size: 18px;
	font-family: ibm-plex-sans, sans-serif;
	font-weight: 700;
	margin: 0;
	padding: 0 0 5px;
}

.textopos {
	color: #333333;
	text-align: left;
	font-size: 14px;
	font-family: ibm-plex-sans, sans-serif;
	font-weight: 400;
	margin: 0;
	padding: 5px 0 0;
}

main{
	display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
}
.banner-home{
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	align-content: center;
	background-image: url('../assets/HOME1.png');
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	margin-top: 80px;
	width: 100%;
	height: auto;
	padding: 150px 0px;
}

.banner-home h2{
	color: white;
	text-align: center;
	font-size: 40px;
	font-family: ibm-plex-sans, sans-serif;
	font-weight: 700
}

.banner-quienes {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	align-content: center;
	background-image: url('../assets/img_quienes-somos.jpg');
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	margin-top: 80px;
	width: 100%;
	height: auto;
	padding: 150px 0px;
}

.banner-contactos h2{
	color: white;
	text-align: center;
	font-size: 40px;
	font-family: ibm-plex-sans, sans-serif;
	font-weight: 700
}

.banner-contactos {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	align-content: center;
	background-image: url('../assets/img-contactos.jpg');
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	margin-top: 80px;
	width: 100%;
	height: auto;
	padding: 150px 0px;
}

.banner-quienes h2{
	color: white;
	text-align: center;
	font-size: 40px;
	font-family: ibm-plex-sans, sans-serif;
	font-weight: 700
}

.botones{
	display: flex;
	flex-direction: row;	
    align-content: space-between;
    justify-content: center;
 }
.quienes,
.contacto{
	display: block;
	width: 150px;
    border-radius: 5px;
    margin: 20px;
    text-align: center;
    text-decoration: none;
    font-size: 15px; 
    padding: 16px 0px;
    background: gold;
    color: rgba(0,0,0,0.8);
	font-family: ibm-plex-sans, sans-serif;
    font-weight: 700;
}
.quienes:hover,
.quienes:active,
.quienes:focus,
.contacto:hover,
.contacto:active,
.contacto:focus {
	color: black;
	text-decoration: underline;
}
.contacto{
	background: #14AFA4;
}
.quienes{
	background: #FAE150;
}

section#quienes-somos{
	background: #F3F0F0;
	color: #626262;
	display: flex;
	align-content: center;
	align-items: center;
	justify-content: center;
	width: 100%;
	padding: 50px 0px;
}
section#quienes-somos h2{
	font-family: ibm-plex-sans, sans-serif;
    font-weight: 700;
    text-align: center;
    padding-bottom: 20px;
	font-size: 44px;
 }
section#quienes-somos p,
section#directora-carolina p
section#directora-fernanda p{
	font-family: ibm-plex-sans, sans-serif;
    font-weight: 500;
	font-size: 16px;
	width: 100%;
	max-width: 550px;
	text-align: center;
}

section#directora-carolina{
	display: flex;
	flex-direction: column;
	align-content: center;
	align-items: center;
	justify-content: center;
	background: #14AFA4;
	color: white;
	width: 100%;
	padding: 100px 0px;
	font-family: ibm-plex-sans, sans-serif;
	font-weight: 500;
}
section#directora-carolina div{
	width: 100%;
	max-width: 900px;
	display: flex;
	flex-direction: column;
	align-content: center;
	align-items: center;
	justify-content: center;
	text-align: center;
	position: relative;
}

section#directora-carolina div .iconoquotes {
	position: absolute;
	left: 0px;
	top: -170px;
	z-index: 100;
}

section#directora-carolina p.negrita{
	font-weight: 700;
}

section#servicios{
	background: #F3F0F0;
	width: 100%;
	display: flex;
	flex-direction: column;
	align-content: center;
	align-items: center;
	justify-content: center;
}
section#servicios .contenedor{
	background: white;
	width: 90%;
	border-radius: 20px;
	margin-top: -50px;
	box-shadow: 0px 5px 10px 0px rgba(0,0,0,0.25);
	margin-bottom: 100px;
}
section#servicios .contenedor h2{
	font-family: ibm-plex-sans, sans-serif;
	font-weight: 700;
	font-size: 44px;
    text-align: center;
    padding-bottom: 20px;
    color: #626262;
    padding: 20px;
}
section#servicios .contenedor ul{
	list-style: none;
	display: flex;
	flex-direction: row;
    flex-wrap: wrap;
    align-content: space-between;
    justify-content: space-around;
    align-items: center;
    margin: 0px;
    padding: 0px;
}
section#servicios .contenedor ul li{
	width: 100%;
	box-sizing: border-box;
	padding: 10px;
	margin: 0;
	color: white;
	font-weight: bold;
	border-radius: 0 0 10px 10px;
}
section#servicios .contenedor ul li div.img img{
	width: 100%;
	height: auto;
}

section#servicios .contenedor ul li a {
	color: white;
	text-decoration: none;
	display: block;
}

.div-violeta,
.div-verde,
.div-amarillo{
	box-sizing: border-box;
	width: 100%;
	height: 30px;
	border-radius: 0 0 7px 7px;
	text-align: center;
	font-size: 12px;
	padding: 5px;
	font-family: ibm-plex-sans, sans-serif;
	font-weight: 700;
}
.div-amarillo{
	background:#FAE150;
}
.div-verde{
	background:#14AFA4;
}
.div-violeta{
	background:#9B80B9;
}

section#directora-fernanda{
	display: flex;
	flex-direction: column;
	align-content: center;
	align-items: center;
	justify-content: center;
	background: #FAE150;
	color: #626262;
	width: 100%;
	padding: 100px 0px 100px 0px;
	font-family: 'Roboto';
}
section#directora-fernanda div{
	width: 100%;
	max-width: 900px;
	display: flex;
	flex-direction: column;
	align-content: center;
	align-items: center;
	justify-content: center;
	text-align: center;
	position: relative;
	font-family: ibm-plex-sans, sans-serif;
	font-weight: 500;
}

section#directora-fernanda div .iconoquotes {
	position: absolute;
	left: 0px;
	top: -170px;
	z-index: 100;
}

section#directora-fernanda p.negrita{
	font-weight: 700;
}

section#inclusion{
	width: 100%;
	background: #F3F0F0;
	display: flex;
	flex-direction: row;
	align-content: center;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	padding: 80px 50px;
}
section#inclusion p{
	color: #626262;
	font-family: ibm-plex-sans, sans-serif;
	font-weight: 700;
	font-size: 24px;
	width: 100%;
	text-align: center;
	padding-bottom: 20px;
}
section#inclusion img{
	width: auto;
	height: 80px;
}

section#clientes{
	width: 100%;
	background: #F3F0F0;
	display: flex;
	flex-direction: column;
	align-content: center;
	align-items: center;
	justify-content: center;
	padding: 100px 50px;
	border: none;
	border-top: solid 1px #cccccc;
}
section#clientes h2{
	font-family: ibm-plex-sans, sans-serif;
	font-weight: 700;
	padding-bottom: 30px;
	color: 626262;
}

.btn-trans {
	background-color: transparent;
	border: none;
	color: rgba(0,0,0,0.5);
}

.w-24{
	width: 24%;
}

footer{
	width: 100%;
	background: #C0BCBC;
	padding: 50px 0;
}
section#contacto{
	width: 100%;
	display: flex;
	flex-direction: row;
	align-content: flex-start;
	align-items: flex-start;
	justify-content: space-between;
	flex-wrap: wrap;
	padding: 20px 10%;
}
section#contacto a,
section#contacto p{
	text-decoration: none;
	color: #626262;
	font-family: roboto, sans-serif;
	font-weight: 700;
	font-size: 11px;
}

section#contacto h3 {
	text-decoration: none;
	color: #333333;
	font-family: ibm-plex-sans, sans-serif;
	font-weight: 700;
	font-size: 24px;
	padding-bottom: 20px;
}

section#contacto figure {
	text-align: left;
	margin: 0;
	padding: 0 0 20px;
}

section#contacto p {
	padding: 0 0 10px;
	margin: 0;
}
section#contacto i{
	color: #9B80B9;
}
section#contacto article#contactar{
	display: flex;
	flex-direction: column;
    align-content: flex-start;
    align-items: flex-start;
    width: 100%;
	max-width: 350px;
 }
section#contacto article#contactar figure img {
	width: auto;
	height: 50px;
}
section#contacto article#form {
	width: 100%;
	padding: 40px 25px;
}

article#form form {
	display: flex;
	justify-content: space-around;
	flex-wrap: wrap;
	align-content: flex-start;
	align-items: flex-start;
}

article#form input {
	box-sizing: border-box;
	width: 95%;
	margin-right: 5%;
	margin-bottom: 10px;
	padding: 5px;
	border: solid 1px #cccccc;	
	font-family: roboto, sans-serif;
	font-weight: 700;
	font-size: 14px;
}
article#form select,
article#form textarea {
	box-sizing: border-box;
	width: 95%;
	margin-right: 5%;
	margin-bottom: 10px;
	padding: 5px;
	border: solid 1px #cccccc;	
	font-family: roboto, sans-serif;
	font-weight: 700;
	font-size: 14px;
}

article#form .boton {
	padding: 10px 0 0;
	width: 95%;
	margin-right: 5%;
	text-align: right;
}

article#form .boton button {
	background-color: #9B80B9;
	padding: 10px 20px;
	border-radius: 5px;
	color: #FFFFFF;
	border: none;
	font-family: roboto, sans-serif;
	font-weight: 700;
	font-size: 14px;
}

section#contacto article#enlaces{
	display: flex;
	flex-direction: column;
    align-content: flex-start;
    align-items: flex-start;
    width: 100%;
	max-width: 200px;
 }

section#directoras {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-content: center;
	align-items: center;
	width: 100%;
	box-sizing: border-box;
	padding: 50px 0;
}

section#directoras .directoras,
section#directoras .presentacion {
	width: 100%;
	max-width: 720px;
}

section#directoras .directoras {
	display: flex;
	justify-content: space-around;
	align-content: flex-start;
	align-items: stretch;
	flex-wrap: wrap;
}

.tarjeta-directora {
	min-width: 300px;
	width: 300px;
	border-radius: 20px 20px 0 0;
	background-color: #F5F6F7;
	margin-bottom: 20px;
}

.tarjeta-directora img {
	width: 100%;
	height: auto;
	border-radius: 20px;
}

.tarjeta-directora .cont-tarjeta {
	display: flex;
	justify-content: space-between;
	align-content: flex-start;
	align-items: flex-start;
}

.tarjeta-directora .cont-tarjeta p {
	font-family: ibm-plex-sans, sans-serif;
	font-weight: 500;
	font-size: 14px;
	padding: 20px;
	margin-bottom: 0;
	color: #606060;
}

.tarjeta-directora .cont-tarjeta a {
	display: block;
	color: #9B80B9;
	text-decoration: none;
	padding: 20px;
}

.presentacion {
	padding: 50px 20px;
}

.presentacion p {
	text-align: center;
	font-family: ibm-plex-sans, sans-serif;
	font-weight: 400;
	font-size: 16px;
	color: #606060;
}

section#proposito {
	background-image: url("../assets/NUESTROPROPOSITO.png");
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	padding: 100px 0;
	width:100%;
	display: flex;
	justify-content: center;
}

section#proposito div {
	width: 100%;
	max-width: 900px;
	position: relative;
	display: flex;
	justify-content: space-between;
	align-content: center;
	align-items: center;
	flex-wrap: wrap;
}

section#proposito div.lineal {
	display: block !important;
}
div.lineal h2,
div.lineal p {
	width: 100% !important;
	max-width: 100% !important;
	text-align: center !important;
}

section#proposito div .iconoquotes {
	position: absolute;
	left: 0px;
	top: -170px;
	z-index: 100;
}

section#proposito div h2 {
	font-family: ibm-plex-sans, sans-serif;
	font-weight: 500;
	font-size: 42px;
	color: #FFFFFF;
	margin: 0;
	padding: 0 20px 20px;
	width: 100%;
	max-width: 450px;
	box-sizing: border-box;
}

section#proposito div p {
	font-family: ibm-plex-sans, sans-serif;
	font-weight: 500;
	font-size: 16px;
	color: #FFFFFF;
	margin: 0;
	padding: 0 0 0 20px;
	width: 100%;
	max-width: 450px;
}

section#valores {
	padding: 100px 0;
	width:100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-content: center;
	align-items: center;
	background-color: #F5F6F7;
}

section#valores h2 {
	font-family: ibm-plex-sans, sans-serif;
	font-weight: 700;
	font-size: 42px;
	color: #606060;
	margin: 0;
	padding: 0 0 50px 0;
}

section#valores .posts {
	display: flex;
	justify-content: space-around;
	align-items: stretch;
	align-content: stretch;
	flex-wrap: wrap;
	width: 100%;
	max-width: 1100px;
}

section#valores .posts h3 {
	font-family: ibm-plex-sans, sans-serif;
	font-weight: 700;
	font-size: 18px;
	color: #606060;
	margin: 0;
	padding: 10px 0;
	text-align: center;
}

section#valores .posts p {
	font-family: ibm-plex-sans, sans-serif;
	font-weight: 500;
	font-size: 14px;
	color: #606060;
	margin: 0;
	padding: 0;
	text-align: center;
}

section#privacidad {
	background-image: url("../assets/VIDEO.png");
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	padding: 100px 0;
	width:100%;
	display: flex;
	justify-content: center;
	align-content: center;
	align-items: center
}

section#privacidad a {
	display: block;
	background-color: #9B80B9;
	padding: 10px 20px;
	border-radius: 5px;
	color: #FFFFFF;
	border: none;
	font-family: roboto, sans-serif;
	font-weight: 700;
	font-size: 14px;
	margin: 0 20px;
	text-decoration: none;
}

section#privacidad a:hover,
section#privacidad a:focus,
section#privacidad a:active {
	color: #9B80B9;
	background-color: #FFFFFF;	
}

section#mensaje {
	padding: 250px 0;
	width:100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-content: center;
	align-items: center
}

section#mensaje a {
	display: inline-block;
	background-color: #9B80B9;
	padding: 10px 20px;
	border-radius: 5px;
	color: #FFFFFF;
	border: none;
	font-family: roboto, sans-serif;
	font-weight: 700;
	font-size: 14px;
	text-decoration: none;
}

section#mensaje p {
	font-family: ibm-plex-sans, sans-serif;
	font-weight: 500;
	font-size: 18px;
	color: #606060;
	margin: 0;
	padding: 0 0 20px;
	text-align: center;
}


.banner-sustentabilidad{
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	align-content: center;
	background-image: url('../assets/img-sustentabilidad.jpg');
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	margin-top: 80px;
	width: 100%;
	height: auto;
	padding: 150px 0px;
}

section#sustentabilidad{
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	align-content: center;
	width: 100%;
}
section#sustentabilidad h2{
	width: 100%;
	color: #626262;
	padding-top: 50px;
	padding-bottom: 80px;
	text-align: center;
	font-family: ibm-plex-sans, sans-serif;
	font-weight: 700;
	font-size: 44px;
}
section#sustentabilidad P{
	width: 100%;
	color: #626262;
	padding: 0;
	margin: 0;
	text-align: center;
	font-family: ibm-plex-sans, sans-serif;
	font-weight: 500;
	font-size: 14px;
}

section#sustentabilidad div.row{
	width: 60%;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: space-between;
	align-content: space-between;
	font-family: ibm-plex-sans, sans-serif;
	font-weight: 500;
}
section#sustentabilidad div.row img{
	height: 100%;
	max-height: 600px;
}

section#federaciones{
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: space-between;
	align-content: space-between;
	flex-wrap: wrap;
	margin-top: 30px;
	margin-bottom: 30px;
}

section#primer-empleo{
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	align-content: center;
	margin-top: 30px;
	margin-bottom: 30px;
	width: 100%;
	font-family: ibm-plex-sans, sans-serif;
	font-weight: bold;
}
section#primer-empleo div.p{
	width: 60%;
	max-width: 796px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-content: center;
	align-items: center;
}
section#primer-empleo div.p p{
	display: flex;
	justify-content: center;
	align-content: center;
	align-items: center;
}
section#primer-empleo div.p p.gris{
	color: #626262;
}
section#primer-empleo div.celeste{
	display: flex;
	text-align: center;
	flex-direction: column;
	justify-content: center;
	align-content: center;
	align-items: center;
	color: #14AFA4;
}

.banner-servicios{
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	align-content: center;
	background-image: url('../assets/SERVICIOS.jpg');
	background-repeat: no-repeat;
	background-position: center bottom;
	background-size: cover;
	margin-top: 80px;
	width: 100%;
	height: auto;
	padding: 150px 0px;
}
.banner-servicios h2{
	color: white;
	text-align: center;
	font-size: 40px;
	font-family: ibm-plex-sans, sans-serif;
	font-weight: 700;
}

section#servicios-todos{
	width: 100%;
	display: flex;
	flex-direction: column;
	align-content: center;
	align-items: center;
	justify-content: center;
	padding-top: 50px;
	background: #DADADA;
}
section#servicios-inner{
	width: 100%;
	display: flex;
	flex-direction: column;
	align-content: center;
	align-items: center;
	justify-content: center;
	padding: 50px 0px;
	background: #DADADA;
}
section#servicios-inner img {
	width: 90%;
	max-width: 900px;
	height: auto;
}
section.adicional{
	width: 100%;
	display: flex;
	flex-direction: column;
	align-content: center;
	align-items: center;
	justify-content: center;
	padding: 50px 0px 100px;
	background: #DADADA;
}
section.adicional .columnasserv {
	display: flex;
	align-content: flex-start;
	justify-content: space-between;
	width: 100%;
	max-width: 900px;
	flex-wrap: wrap-reverse;
}

section.adicional .columnasserv .col-13 {
	width: 100%;
	max-width: 300px;
	box-sizing: border-box;
	padding: 0 10px;
}
section.adicional .columnasserv .col-12 {
	width: 100%;
	max-width: 450px;
	box-sizing: border-box;
	padding: 0 10px;
}
section.adicional .columnasserv .col-23 {
	width: 100%;
	max-width: 600px;
	box-sizing: border-box;
	padding: 0 10px;
}

section.adicional h3 {
	color: #606060;
	text-align: left;
	font-size: 24px;
	font-family: ibm-plex-sans, sans-serif;
	font-weight: 700;
	margin: 0;
	padding: 0;
}
section.adicional p {
	color: #606060;
	text-align: left;
	font-size: 14px;
	font-family: ibm-plex-sans, sans-serif;
	font-weight: 700;
	margin: 0;
	padding: 20px 0;
}
section.adicional ul.iconovioleta {
	list-style-position: inside;
	list-style-image: url("../assets/servicios/icono-violeta.png");
	padding: 20px 0;
	margin: 0;
}
section.adicional ul.iconoamarillo {
	list-style-position: inside;
	list-style-image: url("../assets/servicios/icono-amarillo.png");
	padding: 20px 0;
	margin: 0;
}
section.adicional li {
	color: #606060;
	text-align: left;
	font-size: 14px;
	font-family: ibm-plex-sans, sans-serif;
	font-weight: 700;
	margin: 0;
	padding: 5px 0;
}

section.adicional img {
	width: 90%;
	max-width: 900px;
	height: auto;
}

section#servicios-todos ul{
	list-style: none;
	display: flex;
	flex-direction: row;
    flex-wrap: wrap;
    align-content: stretch;
    justify-content: space-around;
    align-items: center;
    width: 80%;
    font-size: 13px;
    margin: 10px;
    padding: 0 0 0 0;
}
section#servicios-todos ul li{
	width: 100%;
	box-sizing: border-box;
	margin: 5px;
	color: #626262;
	font-weight: 400;
	border-radius: 0 0 10px 10px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-content: center;
	align-items: center;
	margin-bottom: 30px;
	background: white;
	box-shadow: 0px 5px 10px 0px rgba(0,0,0,0.25);
}
section#servicios-todos ul li div.img img{
	width: 100%;
	height: auto;
}
section#servicios-todos ul li p{
	display: flex;
	flex-direction: column;
    align-content: center;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 40px;
    padding: 5px;
}
section#servicios-todos ul li div.div-verde{
	height: 3px;
	width: 80%;
	margin: 10px auto 0;
	border-radius: 0;
}

a.boton-servicio{
	/* display: block; */
	display: block;
	background: #9B80B9;
    color: white;
    margin: 40px 30px 20px;
    text-align: center;
    text-decoration: none;
    font-size: 15px; 
    padding: 5px;
    border-radius: 5px;
    font-family: ibm-plex-sans, sans-serif;
    font-weight: 700;
 }

.w-19 {
	width: 100%;
	margin: 0 20px 20px !important;
}

.banner-contacto {
	margin-top: 90px;
}

.banner-candidatos{
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	align-content: center;
	background-image: url('../assets/VIDEO.png');
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	margin-top: 80px;
	width: 100%;
	height: auto;
	padding: 150px 0px;
}

.banner-candidatos.pumpas{
	background-image: url("../assets/pumpas_cabecera.jpg") !important;
}


.banner-candidatos h2 {
	color: white;
	text-align: center;
	font-size: 40px;
	font-family: ibm-plex-sans, sans-serif;
	font-weight: 700;
	margin: 0;
	padding: 0;
}
.banner-candidatos p {
	color: white;
	text-align: center;
	font-size: 18px;
	font-family: ibm-plex-sans, sans-serif;
	font-weight: 700;
	margin: 0;
	padding: 10px 0 0;
}

.fondopumpas {
	background-image: url("../assets/pumpas_fondo.jpg");
	background-repeat: no-repeat;
	background-position: left center;
	background-size: cover;
}

section.contactos {
	width: 100%;
    max-width: 720px;
	background-color: transparent;
	padding: 20px;
	box-sizing: border-box;
}

section.contactos h3 {
	width: 100%;
	padding: 20px 0;
	box-sizing: border-box;
	text-align: center;
	font-size: 18px;
	font-family: ibm-plex-sans, sans-serif;
	font-weight: 700;
	margin: 0;
}

section.contactos.mapas {
	max-width: 1100px;
}

section.contactos form {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	align-content: flex-start;
	align-items: flex-start;
	padding: 20px 20px 20px 40px;
	border-radius: 10px;
	background-color: rgba(0,0,0,0.1);
}

section.contactos input {
	box-sizing: border-box;
	width: 95%;
	margin-right: 5%;
	margin-bottom: 10px;
	padding: 5px;
	border: none;
	border-radius: 5px;
	font-family: roboto, sans-serif;
	font-weight: 700;
	font-size: 14px;
}
section.contactos select,
section.contactos textarea {
	box-sizing: border-box;
	width: 95%;
	margin-right: 5%;
	margin-bottom: 10px;
	padding: 5px;
	border: none;
	border-radius: 5px;
	font-family: roboto, sans-serif;
	font-weight: 700;
	font-size: 14px;
}

section.contactos .boton {
	padding: 10px 0 0;
	width: 95%;
	margin-right: 5%;
	text-align: right;
}

section.contactos .boton button {
	background-color: #9B80B9;
	padding: 10px 20px;
	border-radius: 5px;
	color: #FFFFFF;
	border: none;
	font-family: roboto, sans-serif;
	font-weight: 700;
	font-size: 14px;
}

section.contactos .boton-1,
section.contactos .boton-2 {
	display: block;
	padding: 20px;
	border-radius: 10px;
	width: 49%;
	font-family: roboto, sans-serif;
	font-weight: 700;
	font-size: 14px;
	color: rgba(0,0,0,0.8);
	text-decoration: none;
	text-align: center;
}

section.contactos .boton-1 {
	background-color: #14AFA4;
}

section.contactos .boton-2 {
	background-color: #FAE150;
}

@media only screen and (min-width: 992px) {

	.topmenu{
		display: block;	
	}
	
	.menunav nav {
		padding-right: 0px;
	}
	
	.menunav nav .abrirmenu {
		display: none;
	}
	
	.menunav ul {
		list-style: none;
		display: flex;
		justify-content: flex-end;
		align-content: flex-start;
		align-items: flex-start;
	}

	.banner-home,
	.banner-quienes,
	.banner-contactos{
		margin-top: 120px;
	}
		
	
	section#contacto{
		width: auto;
		flex-wrap: nowrap;
		padding: 0 10%;
	}

	section#contacto article#form {
		width: auto;
		padding: 0;
	}
	
	article#form input {
		width: 45%;
	}
	
	section#inclusion p{
		width: 30%;
		padding-bottom: 0;
	}
	
	section#servicios .contenedor{
		width: 60%;
	}

	section#servicios .contenedor ul li{
		width: 25%;
	}
	
	.presentacion {
		padding: 50px 0;
	}
	
	.w-19 {
		width: 19%;
		margin: 0 10px 20px !important;

	}
	
	.banner-sustentabilidad{
		margin-top: 120px;
	}

	.banner-servicios{
		margin-top: 120px;
	}
	
	section#servicios-todos ul li{
		width: 22%;
	}
	
	.banner-contacto {
		margin-top: 120px;
	}

	.banner-candidatos {
		margin-top: 120px;
	}
	
	section#valores .posts {
		flex-wrap: nowrap;
	}


}
