/**
 * @copyright Cyclo Share
 * @author Edoardo Alejandro Palazuelos Osorio (edoardo@nucliux.mx)
 * @version 1.0 (Julio 2016)
 * @since 1.0
 */

/*Importación de otros estilos*/
@import "reset.css";
@import "menu.css";
@import "inicio.css";
@import "nosotros.css";
@import "productos.css";
@import "servicios.css";
@import "sistemas.css";
@import "noticias.css";
@import "banner.css";
@import "contacto.css";
@import "especial.css";
@import "footer.css";

/*Tipografías*/
@font-face{
	font-family: "Work Sans";
	src: url("fonts/WorkSans-Regular.ttf");
}

@font-face{
	font-family: "Work Sans";
	src: url("fonts/WorkSans-Bold.ttf");
	font-weight: bold;
}

/*Página*/
html, body{
	width: 100%;
	height: 100%;
	color: white;
	font-family: "Work Sans", Arial, sans-serif;
	font-size: 1.2vw;
}

a, input, textarea{
	outline: 0;
}

.seccion{
	padding: 0 5%;
	width: 90%;
	height: 100%;
}

.seccion-inicio{
	background-color: #dedede;
	padding: 0;
	width: 100%;
	height: auto;
}

.seccion-contacto{
	padding: 0;
	width: 100%;
}

.seccion-sistemas{
	padding-top: 22vh;
	height: auto;
}

.contenedor{
 	background-color: rgba(0,0,0,0.6);
 	margin-bottom: 3vw;
 	padding: 2vw;
 	width: 42%;
 	text-align: justify;
}

.contenedor-productos{
	width: 52%;
	margin-bottom: 6vw;
}

.contenedor-servicios{
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 1vw;
	width: 100%;
	height: 63%;

	display: -webkit-flex;
	-webkit-flex-wrap: wrap;
}

.contenedor-sistemas{
	background-color: transparent;
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	margin-bottom: 2vw;
	padding: 0 10%;
	padding-top: 2vw;
	width: 80%;
	height: 70%;

	display: -webkit-flex;
	-webkit-flex-wrap: wrap;
	-webkit-align-items: flex-start;
}

.contenedor__liga{
	color: #b3c830;
	font-size: 1vw;
	cursor: pointer;
}

.contenedor__liga:hover{
	text-decoration: underline;
}

.contenedor__oculto{
	display: none;
}

.titulo{
	margin-bottom: 1vw;
	font-size: 1.8vw;
	font-weight: bold;
	text-transform: uppercase;
}

.titulo-sistemas{
	margin-bottom: 5vh;
	color: black;
	text-align: center;
}

/*Estilo para móviles
______________________________*/
@media only screen and (max-device-width: 768px){
	html, body{
		font-size: 3.7vw;
	}

	.seccion-sistemas{
		padding-top: 15vh;
	}

	.contenedor{
 		margin-bottom: 6vw;
 		padding: 4vw;
 		width: 100%;
	}

	.contenedor__liga{
		font-size: 3.5vw;
	}

	.titulo{
		margin-bottom: 2vw;
		font-size: 4.3vw;
	}

	.contenedor-productos{
		margin-bottom: 12vw;
	}

	.contenedor-servicios{
		height: 80%;
	}

	.contenedor-sistemas{
		padding: 0;
		width: 100%;
		height: 85%;
	}

	.titulo-sistemas{
		margin-bottom: 5vh;
	}
}