#portada{
	width: 100%;
	display: flex;
	padding: 115px 0;
	max-width: 5000px;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	position: relative;
}

#portada > aside{
	position: absolute;
	z-index: 2;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: var(--celeste);
}

#portada > h1{
	color: var(--blanco);
	font-size: 2.5em;
	text-align: center;
	max-width: 750px;
	font-weight: 700;
	width: 90%;
	z-index: 5;
}

#portada > h1 > span{
	color: var(--amarillo);
}

#portada > div{
	width: 80%;
	margin-top: 40px;
	max-width: 1350px;
	display: flex;
	align-items: flex-start;
	justify-content: space-around;
	z-index: 5;
}

#portada > div > div{
	width: 30%;
	display: flex;
	flex-direction: column;
	align-items:center;
	border: 3px solid var(--blanco);
	border-radius: 15px;
	padding: 15px;
	box-sizing: border-box;
	transition: all 0.5s ease;
	min-height: 330px;
	position: relative;
	max-width: 315px;
	background: var(--blanco);
}

#portada > div > div:hover{
	transform: scale(1.025);
	box-shadow: 0px 0px 7px 1px rgba(255,255,255,1);
}

#portada > div > div > img{
	margin-bottom: 10px;
	max-width: 165px;
}

#portada > div > div > h2{
	color: var(--negro);
	font-size: 1.5em;
	text-align: center;
	margin-bottom: 5px;
	font-weight: 700;
}

#portada > div > div > p{
	color: var(--negro);
	font-size: 1em;
	text-align: center;
	margin-bottom: 15px;
	font-weight: 500;
}

#portada > div > div > span{
	cursor: pointer;
	position: absolute;
	bottom: 30px;
	font-size: 1.25em;
	text-align: center;
	font-weight: 700;
	padding: 10px 20px;
	box-sizing: border-box;
	transition: all .5s ease;
	border-radius: 10px	;
	color: var(--blanco);
	background: var(--celeste);
}

#portada > div > div > span:before{
	content: '';
	width: 70%;
	height: 3px;
	position: absolute;
	bottom: 17%;
	background: var(--blanco);
	left: 15%;
	opacity: 0;
	transition: all .5s ease;
}

#portada > div > div > span:hover:before{
	opacity: 1;
}

#desarrollo-web-marketing{
	width: 100%;
	margin: 65px 0 35px;
	display: flex;
	align-items: center;
	flex-direction: column;
	box-sizing: border-box;
}

#desarrollo-web-marketing > h2{
	color: var(--negro);
	font-size: 2.25em;
	text-align: center;
	max-width: 850px;
	font-weight: 700;
	width: 90%; 
	margin-bottom: 15px;
}

#desarrollo-web-marketing > p{
	color: var(--negro);
	font-size: 1.5em;
	text-align: center;
	max-width: 900px;
	font-weight: 500;
	width: 90%;
	margin-bottom: 35px;
}

#desarrollo-web-marketing > div{
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 45px;
}

#desarrollo-web-marketing > div > div{
	box-sizing: border-box;
	width: 40%;
	display: flex;
	flex-direction: column;
	align-items: center;
	box-sizing: border-box;
	max-width: 750px;
	padding: 25px;
	border-radius: 5px;
}

#desarrollo-web-marketing > div > div > img{
	margin-bottom: 25px;
	max-width: 450px;
}

#desarrollo-web-marketing > div > div:nth-of-type(2) > img{
	background: #f5f5f5;
}

#desarrollo-web-marketing > div > div > h3{
	color: var(--negro);
  font-size: 1.5em;
  text-align: left;
  font-weight: 700;
  margin-bottom: 15px;
}

#desarrollo-web-marketing > div > div > p{
	color: var(--negro);
  font-size: 1.25em;
  text-align: left;
  font-weight: 500;
  margin-bottom: 15px;
}

#desarrollo-web-marketing > div > div > ul{
	list-style: none;
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

#desarrollo-web-marketing > div > div > ul > li{
	color: var(--negro);
	font-weight: 500;
	font-size: 1.1em;
	margin-bottom: 10px;
	position: relative;
	margin-left: 25px;
	text-align: center;
}

#desarrollo-web-marketing > div > div > ul > li:before{
	content: "\02714";
	font-size: .6em;
	font-weight: 700;
	color: var(--amarillo);
	position: absolute;
	width: 15px;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 15px;
	text-align: center;
	border-radius: 100%;
	border: 2px solid var(--amarillo);
	left: -25px;
	top: 3px;
}

#crm-automatizacion{
	width: 100%;
	margin-bottom: 35px;
	display: flex;
	flex-direction: column;
	align-items: center;
	box-sizing: border-box;
	padding: 85px 5%;
	max-width: none;
	background: var(--celeste-claro);
}

#crm-automatizacion > h2{
	color: var(--blanco);
	font-size: 2.25em;
	text-align: center;
	max-width: 850px;
	font-weight: 700;
	width: 90%;
	margin-bottom: 15px;
}

#crm-automatizacion > p{
	color: var(--blanco);
	font-size: 1.5em;
	text-align: center;
	max-width: 900px;
	font-weight: 500;
	width: 90%;
	margin-bottom: 35px;
}

#crm-automatizacion > div{
	position: relative;
	width: 100%;
	display: grid;
	max-width: 1300px;
	grid-template-columns: repeat(auto-fit, minmax(50%, 1fr));
}

#crm-automatizacion > div > div{
	position: relative;
	display: flex;
	flex-direction: column;
	background: var(--blanco);
	min-height: 750px;
}

#crm-automatizacion > div > div:nth-child(even){
	flex-direction: column-reverse;
}

#crm-automatizacion > div > div > .imagen{
	position: relative;
	width: 100%;
	height: 50%;
	background: var(--negro);
}

#crm-automatizacion > div > div > .imagen > img{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

#crm-automatizacion > div > div > .textos{
	position: relative;
	width: 100%;
	height: 50%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	box-sizing: border-box;
	padding: 10px;
}

#crm-automatizacion > div > div > .textos > h4{
	color: var(--celeste);
	font-size: 1.5em;
	text-align: center;
	font-weight: 700;
	margin-bottom: 15px;
}

#crm-automatizacion > div > div > .textos > ul{
	list-style: none;
	width: 85%;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

#crm-automatizacion > div > div > .textos > ul > li{
	width: 100%;
	margin-bottom: 7px;
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	box-sizing: border-box;
	padding-left: 10%;
}

#crm-automatizacion > div > div > .textos > ul > li:before{
	content: "\02714";
	color: var(--amarillo);
	font-size: 1.1em;
	position: absolute;
	top: 2px;
	left: 5.5%;
}

#crm-automatizacion > div > div > .textos > ul > li > h5{
	color: var(--negro);
	font-size: 1.25em;
	text-align: left;
	font-weight: 700;
	margin-bottom: 2px;
}

#crm-automatizacion > div > div > .textos > ul > li > p{
	color: var(--negro);
	font-size: 1.1em;
	text-align: left;
	font-weight: 500;
}

#crm-automatizacion > div > div > .textos > img{
	position: absolute;
	top: 20%;
	right: 5%;
}

#consultoria-capacitacion{
	width: 100%;
	margin: 50px 0 85px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

#consultoria-capacitacion > img{
	border-radius: 15px;
}

#consultoria-capacitacion > div{
	width: 47%;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

#consultoria-capacitacion > div > h2{
	color: var(--negro);
	font-size: 2.25em;
	text-align: left;
	max-width: 850px;
	font-weight: 700;
	width: 90%;
	margin-bottom: 15px;
}

#consultoria-capacitacion > div > p{
	color: var(--negro);
	font-size: 1.25em;
	text-align: left;
	max-width: 900px;
	font-weight: 500;
	width: 90%;
	margin-bottom: 25px;
}

#consultoria-capacitacion > div > ul{
	width: 90%;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	list-style: none;
}

#consultoria-capacitacion > div > ul > li{
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	position: relative;
	box-sizing: border-box;
	padding-left: 7%;
	margin-bottom: 12px;
}

#consultoria-capacitacion > div > ul > li:before{
	content: "\02714";
	font-size: .7em;
	font-weight: 700;
	color: var(--celeste);
	position: absolute;
	width: 20px;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 20px;
	text-align: center;
	border-radius: 100%;
	border: 2px solid var(--celeste);
	left: 0;
	top: 3px;
}

#consultoria-capacitacion > div > ul > li > h5{
	color: var(--negro);
	font-size: 1.1em;
	text-align: left;
	font-weight: 700;
	width: 90%;
}


#formulario-contacto{
	width: 100%;
	padding: 45px 0;
	background: rgb(255,255,255);
	background: linear-gradient(315deg, rgba(255,255,255,1) 0%, rgba(254,254,254,1) 41%, rgba(236,236,236,1) 100%);
	display: flex;
	max-width: none;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

#formulario-contacto > h3{
	color: var(--negro);
  font-size: 2.25em;
  text-align: center;
  max-width: 850px;
  font-weight: 700;
  margin-bottom: 15px;
  width: 50%;
}

#formulario-contacto > p{
	color: var(--negro);
  font-size: 1.5em;
  text-align: center;
  font-weight: 500;
  margin-bottom: 40px;
  width: 50%;
}

#formulario-contacto > form{
	width: 50%;
	display: flex;
	max-width: 650px;
	flex-direction: column;
	align-items: center;
}

#formulario-contacto > form > input{
	width: 100%;
	text-align: left;
	padding: 10px 2.5%;
	box-sizing: border-box;
	border-radius: 7.5px;
	font-size: 1em;
	font-weight: 500;
	color: var(--celeste);
	transition: all 0.2s ease;
	border: 1px solid var(--negro);
	margin-bottom: 10px;
	outline: none;
}

#formulario-contacto > form > .verde{
	border: 1px solid #0dcf0d;
}

#formulario-contacto > form > .rojo{
	border: 1px solid #ff3030;
}

#formulario-contacto > form > input::placeholder {
  color: var(--celeste);
  font-size: 1em;
	font-weight: 500;
	opacity: 1;
	font-family: 'SofiaPro', sans-serif;
	background: rgba(0, 0, 0, 0);
}

#formulario-contacto > form >  input:focus::placeholder {
  opacity: 1;
}

#formulario-contacto > form > .positivo{
	border: 3px solid green;
}

#formulario-contacto > form > .negativo{
	border: 3px solid red;
}

#formulario-contacto > form > div{
	width: 100%;
	padding: 10px 2.5%;
	box-sizing: border-box;
	border-radius: 7.5px;
	border: 1px solid var(--negro);
	display: flex;
	align-items: center;
	justify-content: space-between;
	position: relative;
	margin-bottom: 15px;
	cursor: pointer;
}

#formulario-contacto > form > div > p{
	font-size: 1.em;
	font-weight: 500;
	color: var(--celeste);
	text-align: left;
	transition: all 0.2s ease;
	width: 100%;

}

#formulario-contacto > form > div > span{
	width: 1em;
  height: 1em;
  display: flex;
  align-items: center;
  justify-content: center;
}

#formulario-contacto > form > div > span:after{
	width: 1em;
  height: 1em;
  line-height: 1em;
  text-align: center;
  border-radius: 50%;
  pointer-events: none;
  color: var(--celeste);
  font-size: 17px;
  font-weight: 700;
  content: "\25BC";
}

#formulario-contacto > form > div > ul{
	display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  background: rgba(238, 237, 233, 1.00);
  list-style: none;
  overflow: scroll;
  position: absolute;
  top: 115%;
  left: 0;
  padding: 0;
  overflow-x: hidden;
  border-radius: 3px;
  max-height: 170px;
}

#formulario-contacto > form > div > ul > li{
	width: 100%;
  padding: 15px 5%;
  box-sizing: border-box;
  border-bottom: 3px solid var(--blanco);
  font-weight: 500;
  font-size: 1.1em;
  color: #2f4858;
  transition: all 0.25s ease;
  cursor: pointer;
}

#formulario-contacto > form > div > ul > li:hover{
	color: var(--blanco);
  background: var(--celeste);
}

#formulario-contacto > form > #form-action{
	width: 100%;
  text-align: center;
  padding: 15px 0;
  background: #b4d7e9;
  border: 3px solid var(--celeste);
  border-radius: 7.5px;
  font-weight: 500;
  color: var(--negro);
  font-size: 1.1em;
  transition: all 0.2s ease;
  cursor: pointer;
  box-sizing: content-box;
}

#formulario-contacto > form > #form-action:hover{
	background: #6cc3ef;
}

/*Relaciones de aspecto escritorio*/
/*anchuras superiores*/
@media screen and (min-width: 1550px) {
 
}

/*Relaciones de aspecto escritorio*/
@media screen and (min-width: 1100px) and (max-width: 1360px) {

}


/*De 1088 a 1020*/
@media screen and (min-aspect-ratio: 5/4) and (max-aspect-ratio: 4/3) and (min-width: 1100px) {
    
}

/*De 1020 a 906*/
@media screen and (min-aspect-ratio: 4/3) and (max-aspect-ratio: 3/2) and (min-width: 1100px) {
    
}

/*De 906 a 800*/
@media screen and (min-aspect-ratio: 3/2) and (max-aspect-ratio: 17/10) and (min-width: 1100px) {
    
}

/*De 800 a 680*/
@media screen and (min-aspect-ratio: 17/10) and (max-aspect-ratio: 18/9) and (min-width: 1100px) {
    
}

/*Relaciones de aspecto tablet*/
@media screen and (min-width: 750px) and (max-width: 1099px) {
	#portada > div{
		width: 93%;
	}
	#desarrollo-web-marketing > div {
		justify-content: space-around;
	}
	#desarrollo-web-marketing > div > div{
		width: 45%;
	}
	#crm-automatizacion > div > div{
		min-height: 900px;
	}
	#crm-automatizacion > div > div > .textos > ul{
		width: 100%;
	}
	#crm-automatizacion > div > div > .textos > ul > li:before{
		left: 4.5%;
	}
	#crm-automatizacion > div > div > .textos > img{
		top: 1%;
		right: 1%;
	}
	#formulario-contacto > h3,
	#formulario-contacto > p{
		max-width: none;
		width: 70%;
	}
	#consultoria-capacitacion{
		flex-direction: column-reverse;
		align-items: center;
	}
	#consultoria-capacitacion > img{
		width: 90%;
		margin-bottom: 25px;
	}
	#consultoria-capacitacion > div{
		width: 90%;
	}
}



/*Relaciones de aspecto movil*/
/*relacion general*/
@media screen and (max-width: 750px) {
	#portada{
		max-height: unset;
		height: auto;
		padding: 115px 0 35px;
	}
	#portada > div{
		flex-direction: column;
		align-items: center;
	}
	#portada > div > div{
		width: 80%;
		min-height: none;
		margin-bottom: 35px;
	}
	#portada > div > div > a{
		position: static;
		margin-bottom: 15px;
	}
	#desarrollo-web-marketing > div {
		justify-content: space-around;
		flex-direction: column;
		align-items: center;
	}
	#desarrollo-web-marketing > div > div{
		width: 90%;
	}
	#consultoria-capacitacion > div{
		flex-direction: column;
		align-items: center;
		margin-bottom: 0;
		min-width: auto;
	}
	#crm-automatizacion > div{
		grid-template-columns: repeat(auto-fit, minmax(100%, 1fr));
	}
	#crm-automatizacion > div > div{
		flex-direction: column;
		margin: 10px 0;
		min-height: auto;
	}
	#crm-automatizacion > div > div:nth-child(even){
		flex-direction: column;
	}
	#crm-automatizacion > div > div > .imagen,
	#crm-automatizacion > div > div > .textos{
		width: 100%;
	}
	#crm-automatizacion > div > div > .imagen{
		height: 200px;
	}
	#crm-automatizacion > div > div > .textos{
		height: auto;
	}
	#crm-automatizacion > div > div > .textos > ul{
		width: 100%;
	}
	#crm-automatizacion > div > div > .textos > ul > li:before{
		left: 5%;
	}
	#crm-automatizacion > div > div > .textos > img{
		top: 3%;
		right: 2.5%;
	}
	#formulario-contacto{
		width: 100%;
	}
	#formulario-contacto > h3,
	#formulario-contacto > p,
	#formulario-contacto > form{
		max-width: none;
		width: 90%;
	}
	#consultoria-capacitacion{
		flex-direction: column-reverse;
		align-items: center;
	}
	#consultoria-capacitacion > img{
		width: 90%;
		margin-bottom: 25px;
	}
	#consultoria-capacitacion > div{
		width: 90%;
	}
	#consultoria-capacitacion > div > ul > li{
		padding-left: 10%;
	}
}

/*De 500 a 450*/
@media screen and (max-aspect-ratio: 2/3) and (min-aspect-ratio: 3/5) and (max-width: 750px) {
    
}
/*De 450 a 375*/
@media screen and (max-aspect-ratio: 3/5) and (min-aspect-ratio: 9/18) and (max-width: 750px) {
    
}
/*De 375 a 321*/
@media screen and (max-aspect-ratio: 9/18) and (min-aspect-ratio: 9/21) and (max-width: 750px) {
    
}