*{
	box-sizing: border-box;
}

body{
	margin: 0;

}

html{
	scroll-behavior: smooth;
}



/*====fuente====*/
@font-face{
	font-family:gotham;
	src: url(fuentes/Gotham.ttf);
}

@font-face{
	font-family:fuente2;
	src: url(../fuentes/FontsFree-Net-Gotham-Thin.ttf);
}

p{
	font-family: fuente2; 
}


/*==== logo ====*/

.logo{
	width: 100%;
	padding: 0;
	margin: 0;
}

.logo__img{
	height: 70px;
}

/*==== header ====*/

.header{

}


.header__contenedor{
	/*width: 1170px;*/
	align-items: center;
	margin-left: auto;
	margin-right: auto;
	justify-content: space-between;
	padding: 5px 25px 0 25px;
	background-color: #fff;
}

.header--fixed{
 	position: fixed;
 	width: 100%;
 	top: 0;
 	padding: 0;
 	z-index: 500000;

 }

.header__nav{
	text-align: center;
	align-items: center;
	/*display: flex;*/
}

.header__titulo{
	margin: 0;
}

.header__burger{
		border: solid 2px #0093DE;
		background-color: #0093DE;
		font-weight: 700;
		padding: 7px;
		font-size: 20px;
		position: absolute;
		right: 10px;
		top: 25px;
		border-radius: 7px;
		color: #fff;
	}

.header__burger:hover{
		background-color: #fff;
		color: #0093DE;
	}

@media screen and (min-width: 768px){
	.header__contenedor{
		display: flex;
		/*width: 1366px;*/

	}

	.header__nav{
		display: flex;
	}

	.header__burger{
		display: none;
	}
}

/*==== menu ====*/

.menu{
	list-style: none;
	/*display: flex;*/
	margin: 0;
	padding: 0;
	display: none;
}


.menu--visible{
		display: block;
	}


.menu__link{
	text-decoration: none;
	padding: 25px;
	text-align: center;
	display: block;
	font-size: 17px;
	color: #888;
	font-family:gotham;
	
}

.menu__link:hover{
	color: #0093DE;
}

.menu__active{
	
}

@media screen and (min-width: 768px){
	.menu{
		display: flex;
	}
}


/*==== sociales ====*/

.sociales{
	list-style: none;
	display: none;
	margin: 0;
	padding: 0;
	justify-content: center;
	
}

.sociales__item{
	text-align: center;
	padding: 0;
	margin: 10px;
	font-size: 16px;
	border-radius: 100%;
	background-color: #0093DE;
	height: 30px;
	width: 30px;
	line-height: 31px;
	border:solid 1px #0093DE;


}

.sociales__link{
	
	
	text-decoration: none;
	
	
	display: block;
	
	
	color: #fff;
	
}

.sociales__item:hover{
	border:solid 1px #0093DE;
	background-color: #fff;

}

.sociales__link:hover{
	color: #0093DE;
}

@media screen and (min-width: 768px){
	.sociales{
		justify-content: none;
		display: flex;
	}
}


/*==== banner ====*/

.banner{
	
	margin-left: auto;
	margin-right: auto;
	object-fit: cover;

	
}

.banner__contenedor{
	position: relative;
}


.banner__img{
	width: 100%;
	
}

.banner__boton{
	display: inline-block;
	position: absolute;
	bottom: 30%;
	padding: 0 0 0 5.5%;
	
}

.banner__link{
	border: solid 1px #fff;
	background: #0093DE;
	border-radius: 7px;
	text-align: center;
	color: #fff;
	width: 100px;
	height: 20px;
	cursor: pointer;
	font-size: 11px;

}

.banner__link:hover{
	color:  #0093DE;
	background: #fff;
	border: solid 1px #fff;
}

@media screen and (min-width: 768px){
	.banner{
		/*width: 768px;*/
	}
	
	.banner__boton{
	display: inline-block;
	bottom: 40%;
	padding: 0 0 0 5.5%;

}
.banner__link{
		font-size: 11px;
		width: 110px;
		height: 30px;
	}
}

@media screen and (min-width: 1025px){
	.banner{
		/*width: 1366px;*/
	}
	.banner__boton{
	display: inline-block;
	bottom: 38%;
	padding: 0 0 0 5.5%;

	
}

	.banner__link{
		font-size: 16px;
		width: 135px;
		height: 35px;
	}
}


/*===== automatización ===*/

.automatizacion{
	width: 100%;
	margin-left: auto;
	margin-right: auto;
	padding-top: 60px;
}

.automatizacion__titulo{
	text-align: center;
	font-family:gotham;
	font-size: 35px;
	margin-bottom: 0;

}
.automatizacion__subtitulo{
	text-align: center;
	color: #888;
	font-family: fuente2;
	margin-top: 0;
	font-size: 16px;

}

@media screen and (min-width: 768px){
	.automatizacion{
	width: 1366px;
}
	.automatizacion__subtitulo{
		font-size: 25px;
}
}
/* ======integra =====*/

.integra{
	margin-top: 10px;
	display: grid;
	grid-template-columns: repeat(2, 5fr);
	grid-gap: 100px;
	padding: 30px 30px;
	grid-row-gap: 20px;
	list-style: none;
	text-align: center;
}


.integra__link{

}

.integra__cuadro{

position: relative;
overflow: hidden;

}



.integra__img{

	width: 100%;
	opacity: 1;
	transform: scale(1);
	transition: all 300ms;
	cursor: pointer;
}


.integra__img2{
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 10;
	opacity: 0;
	transform: scale(0.2);
	transition: all 300ms;
	cursor: pointer;
}

.integra__cuadro:hover .integra__img2{
	opacity: 1;
	transform: scale(1);
	transition: all 300ms;
}

.integra__cuadro:hover .integra__img{
	opacity: 0;
	transform: scale(0);
	transition: all 300ms;
}


.integra__vector:before{
	content: "";
	display: block;
	height: 2px;
	width: 35px;
	margin: 15px auto auto;
	background-color: #0093DE;
	align-items: center;
	transition: all 300ms;
}

.integra__cuadro:hover .integra__vector:before{
	height: 0px;
	width: 0px;
	transition: all 300ms;

}



.integra__text{
	margin-top: 0;
	color: #777;
	font-family: fuente2;
	font-size: 16px;
}

@media screen and (min-width: 768px){
	.integra{
		display: grid;
		grid-template-columns: repeat(5, 2fr);
		grid-gap: 90px;
		padding: 30px 180px;
		grid-row-gap: 20px;
	}

	.integra__text{
		font-size: 20px;
	}
}

/*===== proyectos =====*/

.proyectos{
	
	margin-right: auto;
	margin-left: auto;
	
}

.proyectos__titulo{
	text-align: center;
	font-family: gotham;
	font-size: 35px;
	margin-bottom: 0;

}

.proyectos__subtitulo{
	text-align: center;
	font-family: fuente2;
	color: #777;
	margin-top: 0;
	font-size: 16px;
}

.proyectos__domotica{
	justify-content: space-between;
}

.proyectos__img{
	width: 100%;
	padding-top: 20px;
}

.proyectos__imagen1{
	
	width: 100%;
	float: none;
}

.proyectos__texto1{
	padding: 0;
	text-align: center;
}

.proyectos__text1{
	font-family: gotham;
	font-size: 25px;
	padding-top: 35px;

}

.proyectos__sub1{
	font-family: fuente2;
	font-size: 17px;
}

.proyectos__parrafo1{
	
	font-family: fuente2;
	font-size: 17px;
	font-weight: 600;
	color: #777;
	font-size: 16px;
	text-align: justify;
	padding: 0 20px;
}


.proyectos__inmotica{

	justify-content: space-between;
	padding-top: 5px;
	display: flex;
	flex-direction: column-reverse;
}

.proyectos__imagen2{
	width: 100%;
	float: none;
}

.proyectos__img2{
	width: 100%;
}

.proyectos__texto2{
	padding: 0;
	text-align: center;
	padding-top: 60px; 
	padding-bottom: 30px;
}

.proyectos__text2{
	font-family: gotham;
	font-size: 25px;
}

.proyectos__sub2{
	font-family: fuente2;
	font-size: 17px;
}

.proyectos__parrafo2{
	
	font-family: fuente2;
	font-size: 17px;
	font-weight: 600;
	color: #777;
	font-size: 16px;
	text-align: justify;
	padding: 0 20px;

}


.proyectos__link{
	border: solid 1px #000;
	background: #000;
	border-radius: 7px;
	text-align: center;
	color: #fff;
	width: 140px;
	height: 40px;
	cursor: pointer;
	font-size: 17px;
	transition: all 300ms;
}

.proyectos__link:hover{
	background: #0093DE;
	border: solid 1px #0093DE;
	transition: all 300ms;

}

@media screen and (min-width: 768px){
	.proyectos{
		/*width: 1519px;*/
}
	
	.proyectos__subtitulo{
		font-size: 20px;
	}
	.proyectos__domotica{
		display: flex;
	}

	.proyectos__sub1{
		font-size: 22px;
	}

	.proyectos__sub2{
		font-size: 22px;
	}

	.proyectos__text1{
		font-size: 30px;
	}

	.proyectos__text2{
		font-size: 30px;
	}


	.proyectos__texto1{
	padding: 20px 10px 0 60px;
	text-align: left;
	width: 50%;
	}

	.proyectos__parrafo1{
		font-size: 20px;
		padding: 0 20px 0 0;
	}

	.proyectos__parrafo2{
		font-size: 20px;
		padding: 0 0 0 20px;
	}

	.proyectos__img{
	width: 55%;
	padding-top: 0;
	}

	.proyecto__imagen1{
		float: right;
	}

	.proyectos__inmotica{
	display: flex;
	flex-direction: row;
	}

	.proyectos__texto2{
	padding: 100px 60px 0 10px;
	text-align: right;
	width: 50%;
	padding-bottom: 0;
	}

	.proyectos__img2{
		width: 55%;
	}

	.proyectos__imagen2{
		float:left;
	}

}

/*==== servicios =====*/

.servicios{

	/*width: 1170px;*/
	margin-right: auto;
	margin-left: auto;
	padding-top: 100px;
}

.servicios__marco{
	display: flex;
	justify-content: center;
	align-items: center;
}

.servicios__item{

	/*display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-gap: 30px;*/
	list-style: none;
	padding: 0 60px;

	
}


.servicio__cuadro{

position: relative;
overflow: hidden;

}


.servicios__img{
	width: 100%;
	transition: all 300ms;
}


.servicio__fondo{
width: 1000px;
height:1000px;
background: rgb(0,0,0,0.5);
position: absolute;
top: 0;
margin-top: -1000px;
transition: all 300ms;

}

.servicio__cuadro:hover .servicio__fondo{
	height: 500%;
	cursor: pointer;
	transition: all 500ms;
}

.servicio__cuadro:hover .servicios__img{
	transform: scale(1.6);
	transition: all 300ms;
	opacity: 0.8;
}


.servicio__texto{
	position: absolute;
	top: 0;
	padding: 10px;
	z-index: 10;
	color: #fff;
	text-align: center;
	width: 100%;
	margin-top: 10%;
	opacity: 0;
	transform: scale(0.2);
	transition: all 300ms;
	font-family: fuente2;
	font-size: 16px;
	
}

.servicio__cuadro:hover .servicio__texto{
	opacity: 1;
	transition: all 300ms;
	transform: scale(1);
}


.cervicio__cuadro:hover .servicio__texto{
	opacity: 1;
}



.servicios__titulo{
	text-align: center;
	font-family:gotham;
	font-size: 35px;
	margin-bottom: 0;
}

.servicios__subtitulo{
	text-align: center;
	color: #888;
	font-family: fuente2;
	margin-top: 0;
	font-size: 16px;
	padding: 0 10px;


}

@media screen and (min-width: 768px){

	.servicios__subtitulo{
		padding: 0 15%;
	}

	.servicios{
		width: 1366px;
	}
	.servicios__item{

	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-gap: 30px;

	}
	.servicios__subtitulo{
		font-size: 25px;
	}

	.servicio__texto{
		font-size: 20px;
		margin-top: 110px;
	}
}

/*===== formacion =====*/

.formacion{
	/*width: 1170px;*/
	margin-left: auto;
	margin-right: auto;
	padding-top: 40px;
}

.formacion__titulo{
	text-align: center;
	font-size: 35px;
	margin-bottom: 0;
	font-family:gotham;
}

.formacion__subtitulo{
	text-align: center;
	color: #888;
	font-family: fuente2;
	margin-top: 0;
	font-size: 16px;
	padding: 0 10px;
}

.formacion__google{
	
	justify-content: space-between;
}

.formacion__texto1{
	padding: 0;
	padding-top: 15px;
	text-align: center;
	padding-bottom: 30px;
}

.formacion__text1{
	font-family: gotham;
	font-size: 30px;
}

.formacion__sub1{
	font-family: fuente2;
	font-size: 16px;
}

.formacion__parrafo1{
	font-weight: 600;
	color: #777;
	font-size: 16px;
	text-align: justify;
	padding: 0 20px;
}
}


.formacion__img{
	width: 100%;
	padding-top: 20px;
}

.formacion__imagen1{
	width: 100%;
	float: none;
}


.formacion__knx{
	display: flex;
	flex-direction: column-reverse;
	justify-content: space-between;
}

.formacion__texto2{
	padding: 0 0 0 0;
	text-align: center;
	padding-top: 15px;
	padding-bottom: 30px;
}

.formacion__text2{
	font-family: gotham;
	font-size: 30px;

}

.formacion__sub2{
	font-family: fuente2;
	font-size: 16px;
}

.formacion__parrafo2{
	font-weight: 600;
	color: #777;
	font-size: 16px;
	text-align: justify;
	padding: 0 20px;
}
}

.formacion__img2{
	width: 100%;
}

.formacion__imagen2{
	width: 100%;
	float: none;
	padding-top: 20PX;
}


.formacion__bms{
	/*display: flex;*/
	justify-content: space-between;
}

.formacion__texto3{
	padding: 0;
	text-align: center;
	padding-top: 20px;
	padding-bottom: 30px;
}

.formacion__text3{
	font-family: gotham;
	font-size: 30px;
}

.formacion__sub3{
	font-family: fuente2;
	font-size: 16px;
}

.formacion__parrafo3{
	font-weight: 600;
	color: #777;
	font-size: 16px;
	text-align: justify;
	padding: 0 20px;
}

.formacion__img3{
	width: 100%;
	padding-top: 20px;
	
}

.formacion__imagen3{
	width: 100%;
	float: none;
}

@media screen and (min-width: 768px){
	.formacion{
		/*width: 1519px;*/
	}

	.formacion__subtitulo{
		font-size: 25px;
		padding: 0 15%;
	}

	.formacion__google{
	display: flex;
	}

	.formacion__texto1{
	padding: 20px 0 0 60px;
	text-align: left;
	width: 50%;
	padding-bottom: 0;
	}

	.formacion__img{
	width: 57%;
	padding-top: 0;
	}

	.formacion__imagen1{
	width: 100%;
	float: right;
	}

	.formacion__knx{
	display: flex;
	flex-direction: row;
	}

	.formacion__texto2{
	padding: 0 60px 0 0;
	text-align: right;
	padding-top: 35px;
	width: 50%;
	padding-bottom: 0;
	}

	.formacion__img2{
	width: 57%;
	}

	.formacion__imagen2{
	float: left;
	padding-top: 0;
	}

	.formacion__bms{
	display: flex;
	
	}

	.formacion__texto3{
	padding: 0  0 0 60px;
	text-align: left;
	padding-top: 30px;
	width: 50%;
	padding-bottom: 0;
	}


	.formacion__img3{
	width: 57%;
	padding-top: 0;
	}

	.formacion__imagen3{
	
	float: right;
	}

	.formacion__parrafo1{
		font-size: 20px;
		padding: 0 20px 0 0;
	}

	.formacion__parrafo2{
		font-size: 20px;
		padding: 0 0 0 20px;
	}
	.formacion__parrafo3{
		font-size: 20px;
		padding: 0 20px 0 0;
	}

	.formacion__sub1{
		font-size: 22px;
	}

	.formacion__sub2{
		font-size: 22px;
	}

	.formacion__sub3{
		font-size: 22px;
	}

}

/*===== nosotros ======*/

.nosotros{
	/*width: 1366px;*/
	margin-right: auto;
	margin-left: auto;
	padding-top: 20px;
}

.nosotros__titulo{
	padding: 30px 0 0 0;
	text-align: center;
	font-family:gotham;
	font-size: 35px;
	margin-bottom: 0;
}

.nosotros__subtitulo{
	text-align: center;
	color: #888;
	font-family: fuente2;
	margin-top: 0;
	font-size: 16px;
	padding: 0 10px;
}

.nosotros__contenido1{
	justify-content: space-between;
	display: flex;
	list-style: none;
	padding: 0;
	margin: 0;
	flex-direction: column-reverse;
}

.nosotros__img{
	width: 100%;
}

.nosotros__texto1{
	padding: 0;
	text-align: center;
	width: 100%;
	font-family: fuente2;
	padding: 25px 0;
	

}

.nosotros__mision{
	font-size: 25px;
	font-family: gotham;
}

.nosotros__vision{
	font-size: 25px;
	font-family: gotham;
}

.nosotros__parrafo1{
	color: #777;
	font-size: 16px;
	font-weight: 600;
	
}

.nosotros__parrafo2{
	color: #777;
	font-weight: 600;
	font-size: 16px;

}


.nosotros__contenido2{
	justify-content: space-between;
	/*display: flex;*/
	list-style: none;
	padding: 0;
	margin: 0;
}

.nosotros__texto2{
	
	width: 100%;
	padding: 25px 0;
	font-family: fuente2;
	text-align: center;
	

}

.nosotros__vector1:before{
	content: "";
	display: block;
	height: 1.5px;
	width: 20px;
	margin: 10px auto auto auto;
	background-color: #000;
	align-items: flex-end;
}

.nosotros__vector2:before{
	content: "";
	display: block;
	height: 1px;
	width: 20px;
	margin: 10px auto auto auto;
	background-color: #000;
	align-items: flex-end;
}

@media screen and (min-width: 768px){
	.nosotros{
		/*width: 1519px;*/
	}

	.nosotros__img{
	width: 100%;
	height: 100%;
	}
	.nosotros__contenido1{
	display: flex;
	flex-direction: row;
	}
	.nosotros__contenido2{
	display: flex;
	}

	.nosotros__texto1{
	text-align: right;
	padding: 15px 60px 0 0;
	}

	.nosotros__texto2{
	text-align: left;
	padding: 15px 0 0 60px;
	}

	.nosotros__vector1:before{
	margin: 10px 0 auto auto;
	}

	.nosotros__vector2:before{
	margin: 10px auto auto 0;
	}

	.nosotros__subtitulo{
		font-size: 25px;
		padding: 0 15%;
	}

	.nosotros__parrafo1{
		font-size: 20px;
	}

	.nosotros__parrafo2{
		font-size: 20px;
	}
}

/*===== PRODUCTO ======*/

.productos{
	/*width: 1170px;*/
	margin-right: auto;
	margin-left: auto;
	padding-top: 30px;
}

.productos__titulo{
	text-align: center;
	padding-top: 30px;
	font-family:gotham;
	font-size: 35px;
	margin-bottom: 0;
}

.productos__subtitulo{
	text-align: center;
	color: #888;
	margin-bottom: 8px;
	font-family: fuente2;
	margin-top: 0;
	font-size: 16px;
	padding: 0 10px;
}

@media screen and (min-width: 768px){

	.productos__subtitulo{
		padding: 0 15%;
	}

	.productos{
	/*width: 1366px;*/
	}

	.productos__subtitulo{
		font-size: 25px;
	}
}

/*==== banner 2 ====*/

.banner2{
	width: 1366px;
	margin-left: auto;
	margin-right: auto;
	width: 100%;
}

.banner__contenedor2{
	position: relative;
}



.banner__img2{
	width: 100%;
	object-fit: cover;
}

.banner__boton2{
	display: inline-block;
	position: absolute;
	bottom: 2%;
	padding: 0 0 0 70%;
	/*bottom: 1.5em;*/
	
}

.banner__link2{
	border: solid 1px #0093DE;
	background: #fff;
	border-radius: 7px;
	text-align: center;
	color: #0093DE;
	width: 90px;
	height: 30px;
	cursor: pointer;

}

.banner__link2:hover{
	color:  #fff;
	background: #0093DE;
	border: solid 1px #0093DE;

}

@media screen and (min-width: 768px){
	.banner2{
	/*width: 1366px;*/
	}

	.banner__boton2{
	bottom: 11.3%;	
	padding: 0 0 0 72.25%;
	}

	.banner__link2{
		font-size: 20px;
		width: 110px;
		height:40px;
	}
}


/*===== contactenos =====*/

.contacto{
	/*width: 1366px;*/
	margin-left: auto;
	margin-right: auto;
	padding-top: 50px;

}

.contacto__titulo{
	text-align: center;
	font-family:gotham;
	font-size: 35px;
	margin-bottom: 0;
}


.contacto__subtitulo{
	text-align:center;
	color: #888;
	font-family: fuente2;
	margin-top: 0;
	font-size: 16px;
	padding: 0 10px;
}

.logo2{
	justify-content: center;
	display: flex;
}

.logo__img2{

	height: 100px;
}

.contacto__informacion{
	/*display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-gap: 40px;*/
	padding: 0 10px;

}

.contacto__form{
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-gap: 10px;
	padding: 20px 0 0 0;
}

.contacto__check{
	text-align: center;
	padding-top: 10px;
	font-family: fuente2;
	font-size: 14px;
	font-weight: 600;
}


.contacto__button{
	display: flex;
	justify-content: center;
}

.contacto__link{

}

#contacto__selector{
	border: solid 1px #888;
	width: 100%;
	height: 30px;
	align-items: center;
	
}

.contacto__nombre1{
	padding: 10px 0 5px 0;
}

#contacto__nombre{
	border: solid 1px #888;
	width: 100%;
	height: 30px;
}

.contacto__cargo1{
	padding: 5px 0;
}

#contacto__cargo{
	border: solid 1px #888;
	width: 100%;
	height: 30px;
}

.contacto__email1{
	padding: 5px 0;
}

#contacto__email{
	border: solid 1px #888;
	width: 100%;
	height: 30px;
}

#contacto__consulta{
	border: solid 1px #888;
	width: 100%;
	
	height: 110px;
	min-height: 110px;
	max-height: 110px;
	/*width: 287.500px;
	min-width: 287.500px;
	max-width: 287.500px;*/
	resize: none;
	
}

.contacto__celular1{
	padding: 6px 0 0 0;
}

#contacto__celular{
	border: solid 1px #888;
	width: 100%;
	height: 30px;
}
/*
.contacto__check {
	display: block;
	cursor: pointer;
	user-select: none;
}

.contacto__check input {
	opacity: 0;
	border: solid 1px #888;
}*/

.contacto__button{
	padding-top: 20px;

}

.contacto__link{
	background-color: #0093DE;
	border: solid 1px #0093DE;
	color: #fff;
	padding: 5px 68px;
	font-size: 18px;
	border-radius: 5px;
	cursor: pointer;
	font-family: gotham;
}

.contacto__link:hover{
	background-color: #fff;
	color: #0093DE;
	border: solid 1px #0093DE;
}

.contacto__mapa{
	padding-top: 30px;
}

@media screen and (min-width: 768px){

	.contacto{
		width: 1366px;
	}

	.contacto__informacion{
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-gap: 40px;
	padding: 0 60px;
	}

	.contacto__mapa{
	padding-top: 0;
	}

	.contacto__subtitulo{
		font-size: 25px;
		padding: 0 15%;
	}
}


/*===== footer =====*/

.footer{
	/*width: 1170px;*/
	margin-right: auto;
	margin-left: auto;
	padding-top: 30px;
    justify-content: center;


}

.footer__contenedor{
	/*display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-gap: 80px;*/
	background-color: #000;
	padding: 30px 60px 20px 60px;
	
}
.footer__contacto{
	color: #fff;
	font-family: gotham;
	padding: 40px 0 0 0;
}


.footer__contacto1{
	display: flex;
	color: #fff;
	justify-content: center;

}

.footer__link1{
	font-size: 30px;
	text-decoration: none;
	color: #fff;
	padding-left: 7px;
	

}

.footer__text{
	margin: 0 10px;
	
}

.footer__contacto2{
	display: flex;
	/*padding-top: 10px;*/
	color: #fff;
	justify-content: center;
	text-align: center;
}

.footer__link2{
	font-size: 40px;
	text-decoration: none;
	color: #fff;
}

.footer__text2{
	margin: 0 10px;
}

.footer__siguenos{
	text-align: center;
	color: #fff;
	font-family: gotham;
	padding: 40px 0 0 0;
	
}

.footer__redes{
	list-style: none;
	display: flex;
	padding: 18px 0 0 0;
	margin: 0;
	justify-content: center;

}

.footer__item{
	text-align: center;
	padding: 0;
	margin: 10px;
	
	border-radius: 100%;
	background-color: #000;
	height: 40px;
	width: 40px;
	line-height: 42px;
}

.footer__titulo{
	text-align: center;
}

.footer__titulo1{
	text-align: center;
	padding-left: 7px;
}

.footer__titulo3{
	text-align: center;
}


.footer__link{

	text-decoration: none;
	display: block;
	color: #fff;
	font-size: 24px;
}

.footer__escribenos{
	color: #fff;
	font-family: gotham;
	padding: 40px 0 40px 0;
	
}

.footer__escribenos1{
	display: flex;
	justify-content: center;
}

.footer__escribenos2{
	padding-top: 10px;
	justify-content: center;
	display: flex;
}

.footer__link3{
	font-size: 34px;
	color: #fff;
	text-decoration: none;
}

.footer__text3{
	margin: 0;
}

.footer__copy{
	text-align: center;
	padding: 0;
	color: #fff;
	background: #000;
	margin: 0;
	padding-bottom: 16px; 
	
}

@media screen and (min-width: 768px){
	.footer{
		/*width: 1366px;*/
	}

	.footer__contenedor{
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-gap: 80px;
	}

	.footer__contacto{
		padding: 0;
	}

	.footer__contacto1{
	justify-content: flex-start;
	}

	.footer__siguenos{
		padding: 0;
	}

	.footer__escribenos{
		padding: 0;
	}

	.footer__escribenos1{
	justify-content: flex-start;
	}

	.footer__escribenos2{
	padding-top: 10px;
	justify-content: flex-start;
	display: block;
	
	}

	.footer__titulo1{
	text-align: start;
	padding-left: 7px;
	}

	.footer__titulo3{
	text-align: start;


}

/*=== GRACIAS ====*/

.gracias{
	height: 500px;
	align-items: center;
	display: flex;
	justify-content: center;
}

.gracias__titulo{
	text-align: center;
	font-family:gotham;
	font-size: 35px;
	margin-bottom: 0;
}

.logo__img3{
	width: 20%;
	height: 20%;
}


@media screen and (min-width: 768px){
	.logo__img3{
	width: 20%;
	height: 20%;
}

	.gracias__titulo{
	text-align: center;
	font-family:gotham;
	font-size: 35px;
	margin-bottom: 0;
}

}