/* Fuentes */
@font-face {
	font-family: Linotte Bold;
	src: url(../fonts/linotte_bold.ttf);
}
@font-face {
	font-family: Linotte Heavy;
	src: url(../fonts/linotte_heavy.ttf);
}
@font-face {
	font-family: Linotte Light;
	src: url(../fonts/linotte_light.ttf);
}
@font-face {
	font-family: Linotte Regular;
	src: url(../fonts/linotte_regular.ttf);
}
@font-face {
	font-family: Linotte Semi Bold;
	src: url(../fonts/linotte_semi_bold.ttf);
}


/* Header */
.header{
	height: 100px;
	width: 100%;
	top: 0;
	position: fixed;
  	z-index: 1000;
  	display: flex;
	flex-wrap: wrap;
  	align-items: center;
}
.header .contenedor{
	display: flex;
	justify-content: space-between;
	margin: auto;
	width: 95%;
  	max-width: 1200px;
}
.opciones_nav {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
  	align-items: center;
  	align-content: center;
}
.opciones_nav .logo img {
  height: 80px;
}
/* Icono Menu Azul */
.icon_menu_azul {
	background: #0195ab;
	color: #fff;
}
/* Icono Menu Blanco */
.icon_menu_blanco {
	background: #fff;
	color: #666666;
}
.icon-menu {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 5px;
	cursor: pointer;
	padding: 0;
	font-size: 28px;
	margin: 10px 2px 10px 0;
}
.nav{
	position: absolute;
	top: 75px;
	right: -100%;
	width: 180px;
	transition: all 0.4s;
	/*background: #fff;*/
}
.menu{
	list-style: none;
	padding: 0;
	margin: 0;
}
.nav ul {
	background: #fff;
}
.nav_logo {
	display: none;
}
.menu__link{
	display: block;
	padding: 15px;
	font-family: Linotte Heavy;
	font-size: 16px;
	background: #fff;
	text-decoration: none;
	color: #666666;
	text-align: center;
}
.menu__link:hover, .select {
  background: #DEDEDE;
}
.mostrar{
	right: 0;
}
.icono_select {
	display: none;
}
@media screen and (min-width: 700px){
	.header{
		height: 140px;
	}
	.opciones_nav .logo img {
		height: 100px;
	}
	.icon-menu {
		width: 50px;
		height: 50px;
		font-size: 32px;
	}
	.nav{
		top: 110px;
		width: 250px;
	}
	.menu__link{
		font-size: 20px;
	}
}
@media(min-width: 905px) {
	.nav_inicio {
		display: none;
	}
	.opciones_nav {
		display: none;
	}
	.icon-menu{
		display: none;
	}
	.header {
		height: 90px;
		margin: 0;
		display: flex;
		flex-wrap: wrap;
		align-items: center;
	}
	.header .contenedor{
		width: 95%;
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
		align-items: center;
	}
	.header .contenedor .nav{
		position: static;
		width: 100%;
		transition: all 0s;
	}
	.header .contenedor .nav .menu{
		width: 100%;
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
		align-items: center;	
		background: none;
	}
	/* Opcion de color blanco */
	.menu__blanco {
		color: #fff;
	}
	/* Opcion de color verde azul */
	.menu_color {
		color: #0195ab;
	}
	.header .contenedor .nav .menu .menu__link{
		font-family: Linotte Heavy;
		font-size: 16px;
		max-width: 140px;
		height: 50px;
		margin: 0;
		padding: 0 15px;
		border: 0;
		display: flex;
		flex-wrap: wrap;
		align-items: center;
		border-bottom: solid 5px transparent;
		background: none;
	}
	.header .contenedor .nav .menu .menu__link:hover {
		background: none;
		position: relative;
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		align-items: center;
		align-content: center;
	}
	.header .contenedor .nav .menu .menu__link:hover .icono_select {
		position: absolute;
		display: inline-block;
		width: 60px;
	}
	.header .contenedor .nav .menu .select {
		position: relative;
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		align-items: center;
		align-content: center;
	}
	.header .contenedor .nav .menu .select .icono_select {
		position: absolute;
		display: inline-block;
		width: 60px;
	}
	.nav_logo {
		display: inline-block;
		margin: 0;
		padding: 0;
	}
	.nav_logo:hover {
		border-bottom: none;
	}
	.nav_logo img {
		width: 50px;
	}
}
@media(min-width: 1280px){
	.contenedor{
		top: 40%;
	}
}
@media(min-width: 1366px) {
	.header {
		height: 140px;
	}
	.header .contenedor .nav .menu .menu__link{
		font-size: 16px;
		max-width: 120px;
		height: 70px;
		padding: 0 5px;
	}
	.nav_logo img {
		width: 70px;
	}
}

/* Footer */
footer {
	height: 60px;
	width: 100%;
	bottom: 0;
	position: fixed;
  	z-index: 999;
  	display: flex;
	flex-wrap: wrap;
  	align-items: center;
}
footer .contenedor {
	width: 95%;
	max-width: 1200px;
	margin: auto;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	align-content: center;
}
/* Texto del footer de color blanco */
.footer_blanco {
	color: #fff;
}
.footer_blanco p a {
	color: #fff;
}
/* Texto del footer de color blanco */
.footer_color {
	color: #666666;
}
.footer_color p a {
	color: #666666;
}
footer .contenedor article p {
	font-family: Linotte Regular;
	font-size: 14px;
	margin-right: 15px;
	display: inline-block;
}
footer .contenedor article p a {
	text-decoration: none;
}
footer .contenedor article a {
	text-decoration: none;
}
footer .contenedor article a img {
	height: 22px;
	margin-left: 20px;
}
@media screen and (max-width: 940px) {
	footer {
		height: 80px;
	}
	footer .contenedor {
		justify-content: center;
	}
	footer .contenedor article {
		width: 100%;
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		align-items: center;
		align-content: center;
	}
	footer .contenedor article:nth-child(2) {
		order: 1;
	}
	footer .contenedor article:nth-child(1) {
		order: 2;
	}
	footer .contenedor article p {
		margin-right: 10px;
	}
	footer .contenedor article a img {
		height: 26px;
		margin: 0 10px;
	}
}
@media screen and (max-width: 780px) {
	footer .contenedor article p {
		font-size: 12px;
		margin-right: 5px;
	}
	footer .contenedor article a img {
		height: 22px;
	}
}
@media screen and (max-width: 605px) {
	footer {
		height: 80px;
	}
	footer .contenedor article p {
		text-align: center;
		margin: 0 10px;
	}
	footer .contenedor article p:nth-child(2),
	footer .contenedor article p:nth-child(3),
	footer .contenedor article p:nth-child(4),
	footer .contenedor article p:nth-child(6),
	footer .contenedor article p:nth-child(7) {
		display: none;
	}
	footer .contenedor article a img {
		margin: 0 5px;
	}
}
@media screen and (max-width: 380px) {
	footer .contenedor article:nth-child(1) {
		justify-content: space-around;
	}
}


/* Sombra Inicial */
.sombra_inicial {
	background: url(../img/fondo_secundario.png);
	background-size: cover;
	width: 100%;
	height: 100vh;
	padding: 0;
	position: relative;
}



/* -------- MARCAS ---------- */
.marcas{
	color: #fff;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translateX(-50%) translateY(-50%);
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
	align-content: center;
	align-items: center;
	width: 80%;
	max-width: 1000px;
  }
.marcas a figure {
	width: 300px;
	height: 300px;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-content: center;
	align-items: center;
	margin: 0;
}
.marcas a figure .titulo1,
.marcas a figure .titulo2 {
	width: 290px;
	height: 290px;
	border-radius: 50%;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-content: center;
	align-items: center;
	overflow: hidden;
}
.marcas a figure .titulo1 {
	background: url(../img/marca_texto1.png);
	background-repeat: no-repeat;
	background-size: cover;
}
.marcas a figure .titulo2 {
	background: url(../img/marca_texto2.png);
	background-repeat: no-repeat;
	background-size: cover;
}
.marcas a figure .titulo1 .imagen1,
.marcas a figure .titulo2 .imagen2 {
	width: 215px;
	height: 215px;
	border-radius: 50%;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-content: center;
	align-items: center;
	overflow: hidden;
}
.marcas a figure .titulo1 .imagen1 {
	background: url(../img/marca_1.png);
	background-repeat: no-repeat;
	background-size: cover;
}
.marcas a figure .titulo2 .imagen2 {
	background: url(../img/marca_2.png);
	background-repeat: no-repeat;
	background-size: cover;
}
.marcas a figure .titulo1 .imagen1 article,
.marcas a figure .titulo2 .imagen2 article {
	background: rgb(1, 149, 171, .7);
	width: 100%;
	height: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-content: center;
	align-items: center;
	opacity: 0;
	transition: .6s;
}
.marcas a figure .titulo1 .imagen1 article img {
	width: 70px;
}
.marcas a figure .titulo2 .imagen2 article img {
	width: 140px;
}
/* Efectos Hover */
.marcas a figure:hover .titulo1 .imagen1 article,
.marcas a figure:hover .titulo2 .imagen2 article {
	opacity: 1;
}
.marcas a .figura1:hover {
	background: url(../img/marca_hover.png);
	background-repeat: no-repeat;
	background-position: bottom;
	background-size: 90%;
}
.marcas a .figura2:hover {
	background: url(../img/marca_hover2.png);
	background-repeat: no-repeat;
	background-position: bottom;
	background-size: 90%;
}
@media screen and (max-width: 915px) {
	.marcas{
		justify-content: space-around;
	}
}
@media screen and (max-width: 500px) {
	.marcas a figure,
	.marcas a figure .titulo1,
	.marcas a figure .titulo2 {
		width: 180px;
		height: 180px;
	}
	.marcas a figure .titulo1 .imagen1,
	.marcas a figure .titulo2 .imagen2 {
		width: 130px;
		height: 130px;
	}
	.marcas a figure .titulo1 .imagen1 article {
		display: none;
	}
	.marcas a figure .titulo2 .imagen2 article img {
		width: 100px;
	}
	/* Efectos Hover */
	.marcas a figure:hover .titulo1 .imagen1 article {
		opacity: 0;
	}
	.marcas a figure:hover .titulo2 .imagen2 article {
		opacity: 1;
	}
	.marcas a figure:hover {
		background: none;
	}
}
@media screen and (max-width: 320px) {
	.marcas a figure,
	.marcas a figure .titulo1,
	.marcas a figure .titulo2 {
		width: 150px;
		height: 150px;
	}
	.marcas a figure .titulo1 .imagen1,
	.marcas a figure .titulo2 .imagen2 {
		width: 110px;
		height: 110px;
	}
}


/* ----- CONTACTO ----- */
.contacto {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translateX(-50%) translateY(-50%);
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-content: center;
	align-items: center;
	width: 80%;
	max-width: 1000px;
}
.contacto_contenido {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-content: center;
	align-items: center;
	width: 100%;
}
.contacto_contenido h1 {
	width: 100%;
	text-align: center;
  	color: #0195ab;
  	font-weight: normal;
  	font-family: Linotte Heavy;
	font-size: 30px;
	margin: 0 0 5px 0;
  	padding: 0;  
}
.contacto_contenido article,
.contacto_contenido form {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-content: center;
	align-items: center;
}
.contacto_contenido article {
	width: 350px;
}
.contacto_contenido article p {
	text-align: center;
	color: #666666;
	font-family: Linotte Regular;
	font-size: 18px;
}
.contacto_contenido article .datos_primarios {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-content: center;
	align-items: center;
}
.contacto_contenido article .datos_primarios a,
.contacto_contenido article .datos_primarios p {
	font-size: 16px;
	text-align: center;
	color: #666666;
	font-family: Linotte Regular;
	text-decoration: none;
}
.contacto_contenido article .redes_sociales {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-content: center;
	align-items: center;
}
.contacto_contenido article .redes_sociales a {
	text-decoration: none;
	color: #ffffff;
	background: #0195ab;
	font-size: 22px;
	margin: 0 5px;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-content: center;
	align-items: center;
}
.contacto_contenido form {
	width: 550px;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-content: center;
	align-items: center;
}
.contacto_contenido form input[type="text"],
.contacto_contenido form input[type="email"],
.contacto_contenido form textarea {
	width: 100%;
	border: none;
	outline: none;
	margin-bottom: 10px;
	font-family: Linotte Regular;
	color: #666666;
	background: none;
	border-bottom: 2px solid #0195ab;
	font-size: 16px;
	padding: 5px;
}
input::-webkit-input-placeholder {
	color: #000000;
	font-weight: bold;
  }
  input:-moz-placeholder {
	color: #000000; 
	font-weight: bold;
  }
  input:-ms-input-placeholder { 
	color: #000000;
	font-weight: bold; 
  }
  textarea::-webkit-input-placeholder {
	color: #000000;
	font-weight: bold;
  }
  textarea:-moz-placeholder {
	color: #000000; 
	font-weight: bold;
  }
  textarea:-ms-input-placeholder { 
	color: #000000; 
	font-weight: bold;
  }
.contacto_contenido form textarea {
	height: 70px;
	max-height: 70px;
}
.contacto_contenido form input[type="submit"]{
	border: none;
	font-family: Linotte Heavy;
	color: #fff;
	background: #0195ab;
	padding: 5px 50px;
	border-radius: 30px;
	margin-top: 5px;
	cursor: pointer;
}
@media screen and (max-width: 1170px) {
	.contacto_contenido article,
	.contacto_contenido form {
		width: 48%;
	}
	.contacto_contenido article .datos_primarios a,
	.contacto_contenido article .datos_primarios p {
		width: 100%;
	}
}
@media screen and (max-width: 900px) {
	.contacto_contenido {
		justify-content: center;
	}
	.contacto_contenido article,
	.contacto_contenido form {
		width: 80%;
	}
	.contacto_contenido article {
		margin-bottom: 30px;
	}
}
@media screen and (max-width: 700px) {
	.contacto_contenido article,
	.contacto_contenido form {
		width: 100%;
	}
}
@media screen and (max-width: 600px) {
	.contacto_contenido h1 {
		font-size: 20px;
	}
	.contacto_contenido article {
		display: none;
	}
	.contacto_contenido form input[type="text"],
	.contacto_contenido form input[type="email"],
	.contacto_contenido form input[type="submit"],
	.contacto_contenido form textarea {
		font-size: 14px;
	}
	.contacto_contenido form textarea {
		height: 40px;
		max-height: 40px;
	}
	.contacto_contenido form input[type="submit"] {
		padding: 4px 25px;
	}
}



/* -------- MARCAS INFO 1---------- */
.marca_info {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translateX(-50%) translateY(-50%);
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-content: center;
	align-items: center;
	width: 80%;
	max-width: 1000px;
	margin: 0;
	padding: 0;
}
.marca_info .marca_info_contenido {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-content: center;
	align-items: center;
	width: 100%;
	margin: 0;
	padding: 0;
}
.marca_info .marca_info_contenido figure {
	width: 300px;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-content: center;
	align-items: center;
	margin: 0;
	padding: 0;
}
.marca_info .marca_info_contenido figure img {
	width: 100%;
}
.marca_info .marca_info_contenido article {
	display: flex;
	flex-wrap: wrap;
	width: 600px;
	margin: 0;
	padding: 0;
}
.marca_info .marca_info_contenido article h1 {
	margin: 0;
	font-family: Linotte Heavy;
	font-weight: normal;
	text-align: center;
	color: #0195ab;
	width: 100%;
}
.marca_info .marca_info_contenido article p {
	text-align: justify;
	color: #666666;
	font-family: Linotte Regular;
	margin: 10px 0 0 0;
}
.marca_info .marca_info_contenido article p a {
	color: #0195ab;
	font-family: Linotte Regular;
	text-decoration: none;
}
.marca_info .marca_info_contenido article .boton_conocenos {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-content: center;
	align-items: center;
	width: 100%;
	border-top: 2px solid #0195ab;
	margin-top: 10px;
}
.marca_info .marca_info_contenido article .boton_conocenos p {
	margin: 10px 0 0 0;
	width: 100%;
	text-align: center;
}
.marca_info .marca_info_contenido article .boton_conocenos a {
	text-decoration: none;
	color: #fff;
	font-family: Linotte Heavy;
	background: #0195ab;
	border-radius: 25px;
	padding: 6px 30px;
	font-size: 14px;
	margin: 10px 0 0 0;
}
@media screen and (max-width: 1080px) {
	.marca_info .marca_info_contenido {
		justify-content: center;
	}
	.marca_info .marca_info_contenido figure {
		width: 250px;
		order: 2;
	}
	.marca_info .marca_info_contenido article {
		width: 100%;
		order: 1;
		margin-bottom: 50px;
	}
}
@media screen and (max-width: 600px) {
	.marca_info .marca_info_contenido article h1 {
		font-size: 18px;
	}
	.marca_info .marca_info_contenido article p {
		font-size: 12px;
	}
	.marca_info .marca_info_contenido article .boton_conocenos {
		border: none;
		margin: 0px;
	}
	.marca_info .marca_info_contenido article .boton_conocenos p {
		display: none
	}
	.marca_info .marca_info_contenido article .boton_conocenos a {
		padding: 4px 20px;
		font-size: 12px;
		margin: 10px 0 0 0;
	}
	.marca_info .marca_info_contenido article {
		margin-bottom: 15px;
	}
	.marca_info .marca_info_contenido figure {
		width: 200px;
	}
}
@media screen and (max-width: 400px){
	.marca_info .marca_info_contenido figure {
		width: 150px;
	}
	.marca_info .marca_info_contenido article p:nth-child(2) {
		display: none;
	}
}
@media screen and (max-width: 320px){
	.marca_info .marca_info_contenido figure {
		order: 1;
	}
	.marca_info .marca_info_contenido figure {
		width: 120px;
	}
	.marca_info .marca_info_contenido article {
		order: 2;
	}
	.marca_info .marca_info_contenido article h1 {
		margin: 10px 0;
	}
	.marca_info .marca_info_contenido article p {
		display: none;
	}
}


/* ----- Gracias Por Escribirnos ----- */
.gracias {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translateX(-50%) translateY(-50%);
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-content: center;
	align-items: center;
	width: 80%;
	max-width: 1000px;
}
.gracias .gracias_contenido {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-content: center;
	align-items: center;
}
.gracias .gracias_contenido h1 {
	font-family: Linotte Heavy;
	font-weight: normal;
	text-align: center;
	color: #0195ab;
	width: 100%;
	margin: 0 0 10px 0;
	font-size: 36px;
}
.gracias .gracias_contenido p {
	color: #666666;
	font-family: Linotte Regular;
	text-align: center;
	width: 100%;
	margin: 0 0 15px 0;
	font-size: 18px;
}
.gracias .gracias_contenido a {
	text-decoration: none;
	color: #fff;
	background: #0195ab;
	font-family: Linotte Heavy;
	padding: 5px 25px;
	border-radius: 25px;
	margin: 0;
}
@media screen and (max-width: 600px){
	.gracias .gracias_contenido h1 {
		margin: 0 0 7px 0;
		font-size: 22px;
	}
	.gracias .gracias_contenido p {
		margin: 0 0 10px 0;
		font-size: 14px;
	}
	.gracias .gracias_contenido a {
		padding: 2px 7px;
		border-radius: 25px;
		font-size: 12px;
	}
}