/* Import :::::::::::::::::::*/
@import url();

/* General :::::::::::::::::::*/
	* {
		margin: 0;
		padding: 0;
		outline: none;
		list-style: none;
	}
	body {
		font-family: 'Comfortaa';
		font-size: 14px;
		position: relative;
	}
	.load {
		overflow: hidden;
	}
	a {
		color: inherit;
		text-decoration: none;
	}
	img {
		width: 100%;
	}
	.section {
		padding: 40px 0;
		width: 100%;
		overflow: hidden;
	}
	.title h2 {
		color: #003193;
		font-size: 50px;
		font-weight: 300;
		text-align: center;
	}
	.content {
		max-width: 1100px;
		width: 100%;
		margin: 0 auto;
	}
	.content-flex {
		display: flex;
		justify-content: space-between;
	}

	/* Internas */
	.banner-principal {
		background-image: linear-gradient(101deg, #4a90e2, #190c9a 83%, #190a99);
		height: 200px;
		position: relative;
		width: 100%;
	}
	.banner-principal .titulo {
		color: #fff;
		position: absolute;
		max-width: 600px;
		display: flex;
		justify-content: center;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		width: 100%;
	}
	.titulo  h1 {
		font-family: 'Josefin Sans', sans-serif;
		font-size: 45px;
		font-weight: 300;
	}
	.titulo  h3 {
		color: #808080;
		font-size: 30px;
	}
	.titulo-single.titulo h3 {
		font-size: 32px;
	}
	.titulo h6 {
		color: #808080;
		font-size: 10px;
	}
	.parrafo p {
		color: #808080;
		font-family: 'Roboto', sans-serif;
		font-size: 14px;
	}
	.parrafo-single.parrafo p {
		font-weight: 300;
		font-size: 16px;
		line-height: 1.5;
		margin: 15px 0;
	}
/* Loading ::::::::::::::::::*/
	.loading {
		background-color: #fff;
		height: 100%;
		left: 0;
		position: fixed;
		top: 0;
		width: 100%;
		display: flex;
		align-items: center;
		justify-content: center;
		z-index: 9999;
	}
	.loading .logo {
		position: relative;
		overflow: hidden;
	}
	.loading .logo:before {
		content: '';
		background-color: #fff;
		position: absolute;
		height: 100%;
		left: 100%;
		top: 0;
		width: 100%;

		animation-name: animatebottom;
		animation-duration: 2s
	}

	@keyframes animatebottom { 
		from{ left: 0; } 
		to{ left: 100% }
	}

/* Header :::::::::::::::::::*/
	header {
		border: none;
		position: fixed;
		top: 0;
		z-index: 999;
		width: 100%;
		transition: background .5s ease;
	}
	.logo {
		display: block;
		width: 145px;
	}
	.logo-b {
		display: none;
	}
	.logo-c {
		display: none;
	}
	.bar-header {
		max-width: 1100px;
		width: 100%;
		margin: 0 auto;
		display: flex;
		justify-content: space-between;
		align-items: center;
		padding: 10px 0;
	}
	.menu {
		display: flex;
		align-items: center;
		opacity: 0;
		transition: opacity .5s ease;
	}
	.menu li a {
		color: #fff;
		font-family: 'Josefin Sans', sans-serif;
		font-size: 16px;
		padding: 10px 20px;
		transition: color .5s ease;
	}
	
	.social {
		display: flex;
	}
	.icon-social {
		display: block;
		margin: 0 10px;
		width: 20px;
	}
	/* Header : active ::::::::*/
	header.active {
		background: #fff;
		box-shadow: 0px 2px 10px 0px #333;
		transition: background .5s ease;
	}
	.active .logo-w {
		display: none;
	}
	.active .logo-b {
		display: block;
	}
	.active li a {
		color: #808080;
		transition: color .5s ease;
	}
	/* Header : Mobile */
	.header-mobile {
		display: none;
		border-bottom: 1px solid #003193;
		padding: 10px 20px;
		justify-content: space-between;
		align-items: center;
	}
	.burguer {
		display: flex;
		align-items: center;
		justify-content: center;
		flex-direction: column;
		width: 30px;
		height: 30px;
		position: absolute;
		top: 30px;
		left: 20px;
	}
	.burguer span {
		background: #003193;
		width: 100%;
		height: 2px;
		position: absolute;
		opacity: 1;
		/*margin: 4px 0;*/
		transition: all 1s ease;
	}
	.burguer.active span {
		transition: transform 1s ease;
	}
	.header-mobile .logo {
		margin: auto;
	}
	.wsp {
		position: absolute;
		right: 20px;
		display: flex;
		align-items: center;
	}
	.burguer span:nth-child(1) {
		top: 5px;
	}
	.burguer span:nth-child(2),
	.burguer span:nth-child(3) {
		top: 14px;
	}
	.burguer span:nth-child(4) {
		top: 23px;
	}

	.burguer.active span:nth-child(1),
	.burguer.active span:nth-child(4) {
		opacity: 0;
	}
	.burguer.active span:nth-child(2) {
		transform: rotate(45deg);
	}
	.burguer.active span:nth-child(3) {
		transform: rotate(-45deg);
		transition: transform 1s ease;
	}
	.bg-mobile {
		background-color: #000;
		position: fixed;
		width: 100%;
		height: 100%;
		top: 0;
		left: 0;
		z-index: 2;
		display: none;
		opacity: 0;
		transition: opacity .5s ease;
	}

	.menu-oculto {
		display: none;
		position: fixed;
		background: #fff;
		padding: 90px 0px 10px;
		width: 100%;
		top: -300px;
		z-index: 998;
		transition: top 1s ease;
	}
	.menu-oculto a {
		display: block;
		padding: 20px;
	}

	.header-mobile #burguer:hover ~ .menu-oculto {
		top: 0;
	}

/* Body: Encabezado ::::::::::::::::::::*/
	.section-head {
		background: url(../img/bg-head.jpg) top/cover no-repeat;
		background-attachment: fixed;
		height: 100vh;
		position: relative;
	}
	.bg-opacity {
		background: black;
		height: 100%;
		left: 0;
		opacity: .4;
		position: absolute;
		top: 0;
		width: 100%;
	}
	.text-head {
		position: absolute;
		top: 50%;
		left: 50%;
		max-width: 600px;
		transform: translate(-50%,-50%);
		text-align: center;
		width: 100%;
	}
	.text-head h1 {
		color: #fff;
		font-size: 62px;
	}
	.btn {
		border-radius: 20px;
		border: 2px solid white;
		display: block;
		padding: 15px;
		font-size: 18px;
		color: white;
		width: 250px;
		margin: 30px auto 0;
	}

/* Body: Nosotros ::::::::::::::::::::*/
	.section-about {
		max-width: 1100px;
		margin: 0 auto;
		padding: 40px 0;
		width: 100%;
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
	}
	.view	{
		width: 100%;
		display: flex;
		justify-content: center;
		flex-wrap: wrap;
	}
	.about-item {
		display: flex;
		flex-wrap: wrap;
		flex-direction: column;
		align-items: center;
		max-width: 450px;
		margin: 20px 0;
		width: 100%;
	}
	.icon-item {
		display: flex;
		height: 70px;
		width: 50px;
	}
	.title-item h2 {
		color: #003193;
		font-size: 28px;
	}
	.description-item p {
		color: #272727;
		font-family: 'Roboto', sans-serif;
		font-size: 14px;
		line-height: 1.7;
		margin: 30px 0;
		padding: 0 20px;
		text-align: center;
	}

/* Body: Nuestros principios ::::::::::::::::::::*/
	.section-values {
		background: url(../img/bg-principios.jpg) top/cover no-repeat;
		background-attachment: fixed;
		position: relative;
	}
	.opacity-blue {
		background: #003193;
		opacity: 0.8;
	}
	.content-values {
		max-width: 1100px;
		margin: 0 auto;
		padding: 50px 0;
		width: 100%;
		position: relative;
	}
	.content-values .title h2{
		color: #00b5ff;
	}
	.description-values p {
		color: white;
		font-family: 'Roboto', sans-serif;
		font-size: 20px;
		font-weight: 300;
		line-height: 1.7;
		text-align: center;
		letter-spacing: 1px;
		margin: 20px auto;
	}
	.values {
		max-width: 1100px;
		margin: 0 auto;
		width: 100%;
		display: flex;
		align-items: flex-start;
		justify-content: space-between;
	}
	.item-values {
		text-align: center;
		width: 250px;
	}
	.item-icon-values {
		margin: 10px auto;
		width: 30px;
	}
	.item-name-values h3 {
		color: #fff;
		font-size: 24px;
		position: relative;
		margin-bottom: 20px;
	}
	.item-name-values h3::after {
		content: '';
		position: absolute;
		bottom: -10px;
		height: 1px;
		width: 100px;
		background: #fff;
		left: 30%;
	}
	.item-content-values p {
		color: #fff;
		font-family: 'Roboto', sans-serif;
		font-weight: 300;
		line-height: 1.7;
		text-align: justify;
	}

/* Body: Distribución y almacenamiento ::::::::::::::::::::*/
	.section-distribution {
		width: 100%;
	}
	.distribution {
		background: url(../img/bg-distribucion.jpg) top/cover no-repeat;
		background-attachment: fixed;
		padding: 30px 0;
		position: relative;
		height: 300px;
	}
	.distribution:last-child {
		background: url(../img/bg-almacenamiento.jpg) top/cover no-repeat;
		background-attachment: fixed;
	}
	.content-distribution {
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%,-50%);
		text-align: center;
	}
	.title-distribution {
		color: #fff;
		font-size: 36px;
		margin: 30px 0;
	}
	.description-distribution p {
		color: #fff;
		font-family: 'Roboto', sans-serif;
		font-size: 16px;
		font-weight: 300;
		line-height: 1.7;
	}

/* Body: Nuestros productos ::::::::::::::::::::*/
	.section-product {
		width: 100%;
	}
	.content-product {
		max-width: 1100px;
		margin: 0 auto;
		width: 100%;
	}
	.content-product .title {
		color: #00b7ff;
	}
	.product {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		margin: 40px 0;
	}
	.item-product {
		background: #ddd;
		height: 250px;
		margin: 5px;
		width: 48%;
		position: relative;
		overflow: hidden;
	}
	.item-product img {
		transition: transform .5s ease;
	}
	.item-product:hover img {
		transform: scale(1.2);
		transition: transform .5s ease;
	}
	.name-product {
		background: rgba(0,0,0,.5);
		color: #fff;
		position: absolute;
		text-align: center;
		width: 100%;
		height: 100%;
		top: 0;
		display: flex;
		align-items: center;
		justify-content: center;
		font-size: 24px;
		transition: background .5s ease;
	}
	.item-product:hover .name-product {
		background: transparent;
		transition: background .5s ease;
	}
	.more-product {
		margin: 20px 0;
		text-align: center;
	}
	.btn-product {
		color: #fff;
		background: #0068c3;
		border-radius: 20px;
		padding: 8px 90px;
	}

/* Body: Marcas ::::::::::::::::::::*/
	.section-marcas .content-flex {
		overflow-x: scroll;
    display: -webkit-box;
    margin-top: 60px;
	}
	.swp-marcas {
		height: 100%;
		margin: 40px auto 0;
		width: 100%;
	}
	.swiper-slide {
		text-align: center;
		font-size: 18px;
		background: #fff;
		/* Center slide text vertically */
		display: -webkit-box;
		display: -ms-flexbox;
		display: -webkit-flex;
		display: flex;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		-webkit-justify-content: center;
		justify-content: center;
		-webkit-box-align: center;
		-ms-flex-align: center;
		-webkit-align-items: center;
		align-items: center;
	}

/* Body: Blog ::::::::::::::::::::*/
	.section-blog .content {
		justify-content: space-between;
	}
	.section-blog .title {
		margin-bottom: 40px;
	}
	.blog {
		width: 270px;
	}
	.image-blog {
		/*background: #444;
		height: 200px;*/
		width: 100%;
	}
	.name-blog {
		background: #fff;
		padding: 10px;
	}
	.name-blog h4 {
		color: #808080;
		font-family: 'Josefin Sans', sans-serif;
		font-size: 16px;
		font-weight: bold;
		text-align: center;
		margin-bottom: 10px;
		line-height: 1.2;
		min-height: 60px;
		display: flex;
		align-items: center;
	}
	.name-blog p {
		color: #9e9e9e;
		font-family: 'Roboto', sans-serif;
		font-size: 14px;
		font-weight: 300;
	}
	.more-blog {
		margin-top: 10px;
		text-align: center;
	}
	.btn-blog {
		color: #fff;
		background: #0068c3;
		font-family: 'Josefin Sans', sans-serif;
		font-weight: 300;
		font-size: 18px;
		padding: 7px 40px;
		border-radius: 20px;
	}

/* Body: Contacto ::::::::::::::::::::*/
	.section-contacto .title {
		padding: 30px 0;
	}
	.content-maps {
		display: flex;
		align-items: center;
		justify-content: space-between;
		flex-wrap: wrap;
		/*height: 400px;*/
	}
	.maps {
		position: relative;
		width: 48%;
		height: 400px;
	}
	.maps:nth-child(2) {
		background-size: cover;
		background-repeat: no-repeat;
		background-position: center right;
	}
	.data {
		max-width: calc(100% - 40px);
		width: 100%;
		background: #fff;
		box-shadow: 0px 2px 3px #000;
		border-radius: 4px;
		padding: 20px;
	}
	.address-list {
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
	}
	.address {
		align-items: center;
		display: flex;
		max-width: 230px;
		width: 100%;
		margin: 10px 0;
	}
	.ico-address {
		border-right: 1px solid #0068c3;
		margin-right: 10px;
		padding-right: 10px;
		width: 20px;
		min-height: 30px;
		display: flex;
		align-items: center;
	}
	.text-address {
		color: #9b9b9b;
		font-family: 'Josefin Sans', sans-serif;
		font-size: 14px;
		font-weight: 300;
	}
	.form {
		display: flex;
		justify-content: space-between;
		flex-wrap: wrap;
	}
	.input {
		width: 49%;
	}
	.form input,
	.form textarea {
		border: solid 1px #979797;
		color: #979797;
		border-radius: 4px;
		margin-bottom: 20px;
		padding: 10px;
		width: calc(100% - 20px);
	}
	.form .textarea {
		width: 100%;
	}
	.submit {
		text-align: center;
		width: 100%;
	}
	.submit .btn-blog {
		display: block;
	}

/* Footer */
	footer {
		background: #303030;
		padding: 40px 0;
		overflow: hidden;
	}
	footer .content {
		max-width: 900px;
	}
	footer .logo {
		display: block
	}
	.menu-footer {
		display: flex;
		align-items: flex-start;
		justify-content: center;
	}
	.menu-link-footer a {
		color: #808080;
		font-family: 'Aleo';
		display: block;
		margin: 10px;
		display: flex;
		align-items: center;
	}
	.menu-link-footer img {
		width: 30px;
		margin-right: 10px;
	}
	.copy {
		color: #9b9b9b;
		text-align: center;
	}

/* Responsive :::::::::::::::::::::::::::*/
@media only screen and (max-width: 40em) {
	/* General */
	.section {
		padding: 80px 0 20px 0;
	}
	.content {
		width: 85%;
	}
	.title h2 {
		font-size: 28px;
	}
	.parrafo p {
		font-weight: 300;
		line-height: 1.3;
	}
	.banner-principal {
		margin-top: 70px;
	}
	.banner-principal .titulo h1 {
		font-size: 36px;
	}
	/* Header */
	header {
		background-color: #fff;
	}
	header.active {
		box-shadow: none;
	}
	.logo {
		width: 80px;
	}
	.logo-w,
	.bar-header {
		display: none;
	}
	.logo-b {
		display: block;
	}
	.header-mobile {
		display: flex;
	}
	.menu-oculto {
		display: block;
	}
	.text-head {
		max-width: 300px;
		left: 50%;
		top: 60%;
	}
	.text-head h1 {
		font-size: 42px;
	}
	.section-head {
		background-attachment: local;
	}
	/* Home: Nosotros */
	.section-about {
		width: 85%;
	}
	.content-values {
		width: 85%;
	}
	.values {
		flex-wrap: wrap;
	}
	.item-values {
		width: 100%;
	}
	.content-values .description-values p {
		padding: 0;
		font-size: 15px;
	}
	/* Distribucion */
	.distribution,
	.distribution:last-child {
		background-attachment: local;
	}
	.content-distribution {
		width: 280px;
	}
	.title-distribution {
		font-size: 28px;
		margin: 0 auto 15px;
	}
	/*Values*/
	.section-values {
		background-attachment: local;
	}
	/* Productos*/
	.item-product {
		margin: 5px 0;
		height: 200px;
		width: 100%;
	}
	/* Home : Blog */
	.section-blog .content {
		flex-direction: column;
	}
	.blog {
		width: 100%;
		margin: 15px 0;
	}
	/* Home: Contacto */
	.maps iframe {
		display: none;
	}
	.section-contacto .content {
		position: relative;
		transform: none;
		top: 0;
		left: 0;
		background: #fff;
		height: inherit;
	}
	.maps {
		width: 100%;
		height: inherit;
	}
	.maps:nth-child(2) {
		display: none;
	}
	.data {
		box-shadow: none;
		padding: 0;
		width: 100%;
		max-width: inherit;
	}
	.input {
		width: 100%;
	}
	/* FOOTER */
	footer .logo {
		margin: auto;
		width: 200px;
	}
	.menu-footer {
		flex-wrap: wrap;
		margin: 20px auto;
	}
	.menu-link-footer:nth-child(1),
	.menu-link-footer:nth-child(2) {
		width: 100%;
	}
	.menu-link-footer a {
		justify-content: center;
	}
}

@media only screen 
  and (min-device-width: 375px) 
  and (max-device-width: 667px) 
  and (-webkit-min-device-pixel-ratio: 2)
  and (orientation: landscape) {
	.section {
		padding: 20px 0;
	}
	.title h2 {
		font-size: 28px;
	}
	/* header */
	.bar-header {
		max-width: 90%;
	}
	.active .logo-b {
		display: none;
	}
	.active .logo-c {
		display: block;
	}
	.menu li a {
		font-size: 14px;
		padding: 10px 15px;
	}

	/* Section: Head */
	.text-head {
		left: 50%;
	}
	.text-head h1 {
		font-size: 48px;
	}

	/* About */
	.section-about {
		padding: 20px 0;
	}
	.description-item p {
		margin: 10px 0;
		line-height: 1.5;
	}
	/* Valores */
	.description-values p {
		font-size: 16px;
		line-height: 1.5;
		width: 80%;
	}
	.description-values p br {
		display: none;
	}
	.values {
		flex-wrap: wrap;
		justify-content: center;
	}
	.item-values {
		margin: 10px;
	}
	.item-name-values h3 {
		font-size: 18px;
	}
	.item-content-values p {
		font-size: 12px;
		line-height: 1.5;
	}
	/* Distribución */
	.title-distribution {
		font-size: 28px;
		margin: 15px auto;
	}
	.description-distribution p {
		font-size: 14px;
	}

	/* Productos */
	.item-product {
		height: 170px;
	}
	.name-product {
		font-size: 18px;
	}
	.swp-marcas {
		width: 80%;
	}

	/* Blog */
	.section-blog .content {
		justify-content: center;
	}
	.blog {
		width: 200px;
		margin: 10px;
	}
	.name-blog h4 {
		font-size: 14px;
	}
	.name-blog p {
		font-size: 12px;
	}
	.btn-blog {
		font-size: 12px;
	}
	/* Contacto */
	.content-maps {
		justify-content: center;
		align-items: flex-start;
	}
	.maps {
		width: 45%;
		margin: 10px;
	}
	.address {
		margin: 5px 0;
	}
	.text-address {
		font-size: 12px;
	}
	.ico-address {
		width: 15px;
	}
	.input {
		width: 100%;
	}
	.form input, .form textarea {
		margin-bottom: 10px;
	}
	textarea {
		height: 50px;
	}

	/* FOOTER */
	footer .content {
		max-width: 600px;
	}
	.menu-link-footer a {
		font-size: 12px;
	}
	.copy {
		font-size: 10px;
	}
}




