body {
  margin: 0;
  padding: 0;
  text-decoration: none;
  list-style: none;
}

h1, h2, h3, h4, h5, h6{
  font-family: 'Oswald', sans-serif;
}

a{
  text-decoration: none;
  font-family: 'Oswald', sans-serif;
}

p{
  font-family: 'Lato', sans-serif;
}

/* menu */

.header {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  padding: 35px 0;
  background: #424448;
  align-items: center;
  justify-content: space-between;
  font-family: 'Oswald', sans-serif;
}

.header .logo {
  display: block;
  padding-left: 6.3%;
}

.toggle-menu {
  display: none;
  cursor: pointer;
  height: 30px;
  position: absolute;
  right: 14px;
  top: auto;
  width: 30px;
  z-index: 3;
}

.toggle-menu span {
  background-color: #fff;
  display: block;
  height: 4px;
  position: absolute;
  width: 30px;
}

.toggle-menu span.top {
  top: 0;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}

.toggle-menu span.middle {
  top: 10px;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}

.toggle-menu span.bottom {
  top: 20px;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}

.toggle-menu.active span {
  background-color: #fff;
}

.toggle-menu.active span.top {
  transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  top: 5px;
}

.toggle-menu.active span.middle {
  opacity: 0;
}

.toggle-menu.active span.bottom {
  transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  top: 5px;
}

.header .menu {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  padding: 0 6.3% 0 0;
  align-items: center;
}

.header .menu li {
  list-style: none;
}

.header .menu li a {
  color: white;
  display: flex;
  padding: 20px 30px;
  align-items: center;
  text-transform: uppercase;

  transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
}

.header .menu li a img{
  margin-left: 5px; 
}

.header .menu li a:hover{
  color: #aeb0b1;
}

.header .menu .productos img{
  transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
}

.header .menu .productos:hover img{
  transform: rotate(90deg);
}

.header .menu .productos ul {
  right: 0;
  top:160px;
  width: 100%;
  display:none;
  padding: 10px 0;
  position:absolute;
  background: #424448;
  justify-content: flex-end;
  padding-right: 10px;
}

.header .menu .productos:hover > ul{
  z-index: 2;
  display: flex;
}

.header .menu .productos ul:after{
  left: 0;
  content: "";
  top: -50px;
  width: 100%;
  height: 78%;
  position: absolute;
}

.header .menu .productos ul li{
  position: relative;
}

.header .menu .productos ul li:after{
  content: "";
  height: 3px;
  width: 0px;
  left: 30px;
  bottom: 15px;
  background: #aeb0b1;
  position: absolute;

  transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
}

.header .menu .productos ul li:hover:after{
  width: 40px;
}

.header .menu .productos ul li a img{
  opacity: 0;
  transform: rotate(0deg) !important;
}

.header .productos ul li a:hover img{
  opacity: 1;
  margin-left: 10px; 
}

.header .menu > div{
  display: flex;
  padding: 20px 20px;
  background: #aeb0b1;
  align-items: center;
}

.header .menu > div li{
  color: white;
  display: flex;
  padding: 0 15px;
  align-items: center;
  text-transform: uppercase;
}

.header .menu > div li a{
  padding: 0;
  display: flex;
  align-items: center;
}

.header .menu > div li a:hover{
  color: #424448;
}

.header .menu > div li img{
  margin-right: 8px; 
}

.cajaselect {
  display: flex;
  cursor: pointer;
  position: relative;
  align-items: center;
  padding: 0 !important;
  border-radius: 5px 5px 0 0;
}

.cajaselect img {
  margin-left: 5px;
}

ul.listaselect {
  background: #aeb0b1;
  display: none;
  left: -1px;
  margin-left: 0;
  margin-top: 49px;
  padding-left: 0;
  position: absolute;
  text-indent: 15px;
  top: 0;
  width: 117px;
  z-index: 2;
}

ul.listaselect li {
  cursor: pointer;
  display: block;
  line-height: 15px;
  list-style: outside none none;
  margin: 0;
  padding: 0 !important;
}

ul.listaselect li a {
  border: 1px solid #aeb0b1;
  display: block;
  padding: 1.1em 0 !important;
  width: 100%;
}

ul.listaselect li a:hover {
  color: #999797;
  text-decoration: none;
  background: white;
}

ul.SelectProductos li:last-child {
  border-bottom: medium none;
}

.seleccionado {
  color: white;
  display: block;
  line-height: 3;
  text-indent: 10px;
}

.trianguloinf, .triangulosup{
  display: flex;
}

.trianguloinf img{
  transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
}

.triangulosup img{
  transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;

  transform: rotate(90deg);
}

/* fin menu */

/*****slider home*****/

.slider{
  display: block;
  position: relative;
}

.slider-home img{
  width: 100%;
  height: auto;
}

.parallax-slider{
  width: 31% !important;
  z-index: 2;
  margin-left: 16%;
  margin-top: 30px;
}

.slider-home .item{
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider-home .info{
  position: absolute;
  margin-left: 17%;
  display: flex;
  width: auto;
  z-index: 2;
  left: 0;
  top: 20%;
}

.slider-home .info .numero{
  padding-top: 35px;
  width: 2%;
}

.slider-home .info .numero span{
  color: #aeb0b1;
  font-size: 28px;
  font-family: 'Oswald', sans-serif;
}

.slider-home .info .text{
  width: 45%;
}

.slider-home .info .text .customNavigation{
  z-index: 1;
  display: block;
  position: relative;
}

.slider-home .info .text .customNavigation button{
  cursor: pointer;
  background: no-repeat;
  box-shadow: none;
  border: 0;
  outline: 0;
}

.slider-home .info .text h2{
  color: #aeb0b1;
  padding: 0;
  margin: 0;
  font-size: 4.66vw;
  line-height: 114%;
}

.slider-home .info .text p{
  color: #aeb0b1;
  font-size: 1.09vw;
  margin: 5px 0;
  font-weight: 300;
}

.slider-home .info .text p:after {
  content: "";
  display: block;
  position: relative;
  width: 75px;
  height: 2px;
  background: #aeb0b1;
  margin: 20px 0 28px;
}

.slider-home .info .text a{
  display: flex;
  align-items: center;
  color: #424448;
  font-weight: bold;
  font-size: 1.15vw;

  transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
}

.slider-home .info .text a img{
  width: auto;
  height: auto;
  margin-left: 5px;

  transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
}

.slider-home .info .text a:hover img{
  margin-left: 10px;
}

.slider-home .info .icon-slider{
  padding-top: 45px;
  width: 12%;
}

.fondo{
  position: absolute;
  width: 100%;
  height: auto;
  top: 0;
  left: 0;
  z-index: -1;
}

.fondo img{
  height: auto;
}

.slider-home .owl-dots {
  counter-reset: dots;
  display: flex;
  position: absolute;
  right: 58px;
  outline: 0;
  top: 35%;
}

.slider-home .owl-dot{
  outline: 0;
}

.slider-home .owl-dot:before {
  counter-increment:dots;
  content: counter(dots);
  background: white;
  display: block;
  margin: 0 2px;
  width: 10px;
  height: 10px;
  font-size: 52px;
  overflow: hidden;
  color: transparent;
  border-radius: 50px;
  font-family: 'Oswald', sans-serif;

  transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
}

.slider-home .owl-dot.active:before, .owl-dot:hover:before{
  background: none;
  width: auto;
  height: auto;
  color: white;
}

/*******fin slider home *********/

/*******redes sociales slider******/

.redes-sociales-slider{
  background: #424448;
  display: flex;
  align-items: center;
  color: white;
  padding: 20px 25px 20px 40px;
  width: auto;
  position: absolute;
  bottom: 15.9%;
  z-index: 2;
}

.redes-sociales-slider p{
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 8px;
  margin: 0 10px 0 0;
}

.redes-sociales-slider a{
  margin: 0 10px;
}

/*****fin redes sociales slider******/

/********scroll down**********/

.scroll-down{
  position: absolute;
  bottom: 22%;
  right: 50px;
  z-index: 2;
  display: flex;
  align-items: center;
}

.scroll-down img{
  margin-right: 15px;
}

.scroll-down p{
  color: white;
  width: 100px;
  font-size: 13px;
  letter-spacing: 3px;
}

/******fin scroll down*******/

/******sobre nosotros home**********/

section.sobre-nosotros{
  padding-bottom: 100px;
}

.content{
  width: 955px;
  margin: 0 auto;
  display: block;
}

.nosotros h2{
  font-size: 40px;
  margin: 0;
  color: #aeb0b1;
}

.nosotros p{
  color: #aeb0b1;
  font-size: 21px;
  margin: 5px 0;
  font-weight: 300;
  text-align: justify;
}

.info-add h2{
  margin: 0;
  color: #424448;
  display: flex;
  align-items: center;
}
.info-add{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 20px;
}

.info-add h2 img{
  margin-left: 5px;
}

.info-add p{
  color: #aeb0b1;
  font-size: 21px;
  margin: 5px 0;
  font-weight: 300;
  text-align: justify;
}

/********fin sobre nosotros home**********/

/*********nuestros productos home***********/

.nuestros-productos{
  display: flex;
  flex-wrap: wrap;
}

.nuestros-productos .slider-producto{
  width: 50%;
}

.nuestros-productos .slider-producto .item .info{
  position: absolute;
  bottom: 0;
  width: 35%;
  background: #424448;
  color: white;
  padding: 90px 75px;
}

.nuestros-productos .slider-producto .item .info h2{
  font-size: 40px;
  margin: 0;
  line-height: 40px;
}

.nuestros-productos .slider-producto .item .info p{
  color: #fff;
  font-size: 21px;
  margin: 5px 0;
  font-weight: 300;
  text-align: justify;
}

.nuestros-productos .slider-producto .item .info a{
  display: flex;
  align-items: center;
  letter-spacing: 3px;
  color: #fff;
  font-weight: bold;
  font-size: 22px;
  transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
}

.nuestros-productos .slider-producto .item .info img{
  width: auto;
  height: auto;
  margin-left: 5px;
  transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
}

.nuestros-productos .slider-producto .item .info a:hover img{
  margin-left: 10px;
}

.nuestros-productos .slider-producto .owl-dots{
  display: flex;
  position: absolute;
  right: 50px;
  outline: 0;
  top: 50px;
  width: auto;
}

.nuestros-productos .slider-producto .owl-dot{
  outline: 0;
}

.nuestros-productos .slider-producto .owl-dot:before{
  content: "";
  background: #aeb0b1;
  display: block;
  margin: 0 2px;
  width: 10px;
  height: 6px;
  border-radius: 50px;

  transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
}

.nuestros-productos .slider-producto .owl-dot.active:before, .nuestros-productos .slider-producto .owl-dot:hover:before{
  background: #424448;
  width: 25px;
  height: 6px;
}

.nuestros-productos .productos{
  width: 50%;
  display: flex;
  flex-wrap: wrap;
}

.nuestros-productos .productos > div{
  width: 50%;
  position: relative;
  display: inherit;
}

.nuestros-productos .productos div img{
  width: 100%;
  position: relative;
  display: block;
}

.nuestros-productos .productos .inf{
  position: absolute;
  width: 79%;
  bottom: 57px;
  color: #fff;
  padding: 0 50px;
}

.nuestros-productos .productos .inf h2{
  font-size: 35px;
  margin: 0;
  line-height: 40px;
}

.nuestros-productos .productos .inf a{
  display: flex;
  align-items: center;
  letter-spacing: 3px;
  color: #fff;
  font-weight: bold;
  font-size: 22px;
  transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
}

.nuestros-productos .productos .inf img{
  width: auto;
  height: auto;
  margin-left: 5px;
  transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
}

.nuestros-productos .productos .inf a:hover img{
  margin-left: 10px;
}

/********fin nuestros productos home*********/

/*****************sostenibilidad**********/

.sostenibilidad{
  padding: 150px 0 100px;
}

.sostenibilidad .content{
  width: 1215px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  position: relative;
}

.imagen-sostenibilidad{
  width: 50%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  position: relative;
  justify-content: center;
}

.imagen-sostenibilidad .elipse img{
  width: 100%;
}

.imagen-sostenibilidad .green{
  position: absolute;
  top: -100px;
  margin-left: -8.5%;
  width: 696px;
  z-index: 1;
}

.imagen-sostenibilidad .green img{
  width: 100%;
}

.imagen-sostenibilidad .inf{
  position: absolute;
  margin-top: -25px;
  width: 200px;
  background: white;
  border-radius: 6px;
  box-shadow: 19px 17px 51px rgba(0, 0, 0, 0.32);
  padding: 140px 30px 50px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.imagen-sostenibilidad .inf h2{
  text-align: center;
  font-size: 25px;
  margin: 0;
  line-height: 25px;
  color: #aeb0b1;
}

.imagen-sostenibilidad .inf p{
  color: #aeb0b1;
  font-size: 18px;
  margin: 10px 0 0;
  font-weight: 300;
  text-align: center;
}

.btn-green{
  display: table;
  margin: 0 auto;
  background: #a3cf29;
  padding: 20px;
  border-radius: 100px;
  width: 55px;
  height: 50px;
  text-align: center;
  position: absolute;
  bottom: -50px;
}

.sostenibilidad .content .info{
  width: 50%;
}

.sostenibilidad .content .info span{
  color: #aeb0b1;
  letter-spacing: 1px;
  font-weight: bold;
  font-size: 25px;
  font-family: 'Oswald', sans-serif;
}

.sostenibilidad .content .info h2{
  font-size: 40px;
  color: #aeb0b1;
  margin: 20px 0;
  line-height: 45px;
  text-transform: uppercase;
}

.sostenibilidad .content .info p{
  color: #aeb0b1;
  font-size: 21px;
  margin: 5px 0;
  font-weight: 300;
  text-align: justify;
}

.sostenibilidad .content .info a{
  display: flex;
  align-items: center;
  letter-spacing: 3px;
  color: #a3cf29;
  font-weight: bold;
  font-size: 22px;
  margin-top: 15px;
  text-transform: uppercase;
  transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
}

.sostenibilidad .content .info img{
  width: auto;
  height: auto;
  margin-left: 5px;
  transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
}

.sostenibilidad .content .info a:hover img{
  margin-left: 10px;
}

/****************fin sostenibilidad************/

/*******************noticias*************/

.noticias{
  display: flex;
  align-items: center;
}

.noticias .text{
  width: 26.4%;
  padding: 0 150px 0 300px;
}

.noticias .text span{
  color: #aeb0b1;
  letter-spacing: 1px;
  font-weight: bold;
  font-size: 25px;
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
}

.noticias .text h2{
  font-size: 40px;
  color: #aeb0b1;
  margin: 20px 0;
  line-height: 45px;
  text-transform: uppercase;
}

.noticias .text p{
  color: #aeb0b1;
  font-size: 21px;
  margin: 15px 0;
  font-weight: 300;
  text-align: justify;
}

.noticias .text a{
  display: flex;
  align-items: center;
  color: #424448;
  font-weight: bold;
  font-size: 22px;
  margin-top: 15px;
  text-transform: uppercase;
  transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
}

.noticias .text a img{
  width: auto;
  height: auto;
  margin-left: 5px;
  transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
}

.noticias .text a:hover img{
  margin-left: 10px;
}

.imagen-noticia{
  width: 50%;
  position: relative;
}

.imagen-noticia img{
  width: 100%;
}

.imagen-noticia .autor{
  position: absolute;
  bottom: 60px;
  right: 20px;
  background: white;
  display: flex;
  align-items: center;
  padding: 20px;
  border-radius: 5px 5px 5px 0;
}

.imagen-noticia .autor:after {
  content: "";
  position: absolute;
  bottom: -19px;
  left: 0;
  width: 0; 
  height: 0;
  border-radius: 2px;
  border-left: 30px solid #fff;
  border-top: 22px solid transparent;
  border-bottom: 29px solid transparent; 
}

.imagen-noticia .autor p{
  margin: 0;
  font-size: 17px;
  color: #aeb0b1;
  width: 115px;
  line-height: 17px;
}

.imagen-noticia .autor img{
  border-radius: 50px;
  margin-right: 20px;
  width: auto !important;
}

/****************fin noticias*************/


/****************marcas*************/

.marcas{
  display: block;
  position: relative;
  width: 80%;
  margin: 0 auto;
  padding: 100px 0 90px;
}

.marcas .slider-marcas .owl-dots{
  display: block !important;
  text-align: center;
  outline: 0;
}

.marcas .slider-marcas .owl-dot{
  outline: 0;
}

.marcas .slider-marcas .owl-dot:before{
  content: "";
  background: #aeb0b1;
  display: block;
  margin: 0 2px;
  width: 10px;
  height: 6px;
  border-radius: 50px;

  transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
}

.marcas .slider-marcas .owl-dot.active:before, .marcas .slider-marcas .owl-dot:hover:before{
  background: #424448;
  width: 25px;
}

/****************fin marcas*************/

/*************footer************/

footer{
  background: #424448;
  padding: 85px 150px;
  position: relative;
  display: flex;
  flex-wrap: wrap;
}

footer .top{
  position: absolute;
  top: -78px;
  right: 0;
  background: #424448;
  text-align: center;
  padding: 30px;
  cursor: pointer;
}

footer .content{
  width: 65%;
  display: inline-table;
}

footer .menu-footer ul{
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

footer .menu-footer li{
  list-style: none; 
}

footer .menu-footer li a{
  color: white;
  font-size: 18px;
  padding: 0px 17px;
  text-transform: uppercase;
  transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
}

footer .menu-footer li a:hover{
  color: #aeb0b1;
}

footer .politicas ul{
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

footer .politicas li{
  list-style: none;
}


footer .politicas li a{
  color: white;
  font-size: 11px;
  font-weight: 400;
  font-family: 'Lato', sans-serif;
  letter-spacing: 3px;
  padding: 0px 17px;
  text-transform: uppercase;
  transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
}

footer .politicas li a:hover{
  color: #aeb0b1;
}

footer .copy p{
  font-family: 'Fira Sans', sans-serif;
  color: white;
  font-size: 12px;
  font-weight: 300;
  display: inline-block;
  text-transform: uppercase;
}

footer .copy p:first-child{
  margin: 0 45px 0 17px;
}

footer .copy p a{
  color: white;
  text-transform: none;
  font-family: 'Fira Sans', sans-serif;
  font-size: 11px;
}

footer .newsletter{
  width: 35%;
  display: inline-table;
}

footer .newsletter h2{
  font-size: 40px;
  text-align: right;
  color: #fff;
  margin: 20px 0;
  line-height: 45px;
  text-transform: uppercase;
  margin-top: 0;
}

footer .newsletter form{
  text-align: right;
}

footer .newsletter form input{
  border: 1px solid white;
  padding: 20px;
  width: 75%;
  outline: 0;
  color: white;
  font-family: 'Lato', sans-serif;
  font-size: 11px;
  letter-spacing: 3px;
  font-weight: 300px;

  background: transparent url('../img/nex-blanco.png');
  background-repeat: no-repeat;
  background-position: 97% 50%;
  position: relative;
}

footer .newsletter form input::placeholder{
  font-family: 'Lato', sans-serif;
  font-size: 11px;
  letter-spacing: 3px;
  color: white;
  font-weight: 300px;
}
/**************fin footer********/

/************ quienes somos*********/

.banner{
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.banner .text{
  position: absolute;
  display: flex;
}

.banner > img{
  width: 100%;
}

.banner .text .number{
  padding-top: 9px;
  margin-right: 10px;
}

.banner .text .number span{
  color: #aeb0b1;
  font-size: 28px;
  font-family: 'Oswald', sans-serif;
}

.banner .text h2{
  color: #aeb0b1;
  padding: 0;
  margin: 0;
  text-transform: uppercase;
  font-size: 4.66vw;
  line-height: 114%;
}

.banner .text p{
  color: #aeb0b1;
  font-size: 1.09vw;
  margin: 5px 0;
  font-weight: 300;
  display: flex;
  margin-top: 20px;
  align-items: center;
}

.banner .text p:before{
  content: "";
  width: 80px;
  height: 2px;
  margin-right: 15px;
  background: #aeb0b1;
  display: block;
}

.banner .redes-sociales-slider{
  left: 0;
  bottom: 0;
}

.quienes-somos .content{
  width: 1070px;
  display: flex;
  padding: 150px 0 0;
}

.quienes-somos .content > div{
  padding: 0 25px;
  width: 50%;
}

.quienes-somos .content h2{
  font-size: 40px;
  margin: 0;
  color: #aeb0b1;
  line-height: 40px;
  text-transform: uppercase;
}

.quienes-somos .content p{
  color: #aeb0b1;
  font-size: 21px;
  margin: 10px 0;
  font-weight: 300;
  text-align: justify;
}

.quienes-somos .content span{
  color: #aeb0b1;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: bold;
  font-size: 25px;
  display: flex;
  margin-top: 20px;
  align-items: center;
  font-family: 'Oswald', sans-serif;
}

.quienes-somos .content span img{
  margin-left: 5px;
}

.gale-somos .content{
  width: 90%;
  display: flex;
  padding: 150px 0 0;
  align-items: center;
  justify-content: flex-end;
}

.gale-somos .cont-instagram{
  width: 12%;
  padding-right: 50px;
}

.gale-somos .content h2{
  font-size: 40px;
  margin: 30px 0 0 0;
  color: #aeb0b1;
  letter-spacing: 1px;
  line-height: 40px;
  text-transform: uppercase;
}

.gale-somos .content p{
  color: #aeb0b1;
  font-size: 21px;
  margin: 10px 0;
  font-weight: 300;
  text-align: justify;
}

.gale-somos .content a{
  color: #aeb0b1;
  font-weight: bold;
  font-size: 22px;
  line-height: 22px;
  display: block;
  text-transform: uppercase;
  transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
}

.gale-somos .content a img{
  width: auto;
  height: auto;
  margin-left: 5px;
  transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
}

.gale-somos .content a:hover img{
  margin-left: 10px;
}

.gale-somos .content .gale{
  width: 65%;
  display: flex;
}

.gale-somos .content .img-pr{
  width: 65.9%;
  position: relative;
}

.gale-somos .content .img-pr:after{
  content: "";
  width: 200px;
  height: 200px;
  background: #aeb0b1;
  position: absolute;
  top: -25px;
  left: -25px;
  z-index: -1;
}

.gale-somos .content .img-pr img{
  width: 100%;
}

.gale-somos .content .img-pr a img{
  margin: 0;
}

.gale-somos .content .img-pr a:hover img{
  margin: 0;
}

.gale-somos .content .img-pe{
  width: 33%;
}

.gale-somos .content .img-pe img{
  width: 100%;
  padding: 0 5px;
}

.gale-somos .content .img-pe a img{
  margin: 0;
}

.gale-somos .content .img-pe a:hover img{
  margin: 0;
}

.sobre-noso{
  background: #f9f9f9;
  padding: 80px 0;
  margin-top: 100px;
}

.sobre-noso .content{
  width: 1070px;
}

.sobre-noso .slider-sobre-nosotros .item{
  display: flex;
}

.sobre-noso .slider-sobre-nosotros .item > div{
  padding: 0 25px;
  width: 50%;
}

.sobre-noso .slider-sobre-nosotros h2{
  font-size: 40px;
  margin: 30px 0 0 0;
  color: #aeb0b1;
  letter-spacing: 1px;
  line-height: 40px;
  text-transform: uppercase;
}

.sobre-noso .slider-sobre-nosotros p{
  color: #aeb0b1;
  font-size: 21px;
  margin: 10px 0;
  font-weight: 300;
  text-align: justify;
}

.sobre-noso .slider-sobre-nosotros span{
  color: #aeb0b1;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: bold;
  font-size: 25px;
  margin-top: 20px;
  font-family: 'Oswald', sans-serif;
}

.sobre-noso .slider-sobre-nosotros .owl-dots{
  text-align: center;
  outline: 0;
  position: absolute;
  right: -60px;
  top: 50%;
  width: 6px;
  height: auto;
}

.sobre-noso .slider-sobre-nosotros .owl-dot{
  outline: 0;
}

.sobre-noso .slider-sobre-nosotros .owl-dot:before{
  content: "";
  background: #aeb0b1;
  display: block;
  margin: 0 2px;
  width: 6px;
  height: 10px;
  border-radius: 50px;

  transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
}

.sobre-noso .slider-sobre-nosotros .owl-dot.active:before, .sobre-noso .slider-sobre-nosotros .owl-dot:hover:before{
  background: #424448;
  height: 25px;
}

/***********fin quienes somos*********/

/*************poductos************/

.quienes-somos .content li{
  color: #aeb0b1;
  font-size: 21px;
  font-weight: 300;
  text-align: justify;
  font-family: 'Lato', sans-serif;
}

.galeria-productos{
  background: white;
  margin: 0;
}

.galeria-productos .content{
  width: 85%;
}

.slider-productos .item{
  display: flex;
}

.slider-productos .item > div{
  width: 50%;
}

.slider-productos .item .img-grande{
  display: block;
  position: relative;
  padding: 3px;
}

.slider-productos .item .img-peque{
  display: flex;
  position: relative;
}

.slider-productos .item .img-peque img{
  padding: 3px;
  position: relative;
  width: 49.3%;
}

.slider-productos .owl-dots{
  text-align: center;
  outline: 0;
  position: absolute;
  right: -60px;
  top: 50%;
  width: 6px;
  height: auto;
}

.slider-productos .owl-dot{
  outline: 0;
}

.slider-productos .owl-dot:before{
  content: "";
  background: #aeb0b1;
  display: block;
  margin: 0 2px;
  width: 6px;
  height: 10px;
  border-radius: 50px;

  transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
}

.slider-productos .owl-dot.active:before, .slider-productos .owl-dot:hover:before{
  background: #424448;
  height: 25px;
}

.title-contacto h2{
  font-size: 90px;
  color: #aeb0b1;
  text-align: center;
  margin-top: 0;
}

.section-contacto{
  background: #424448;
  padding: 100px 0;
}

.section-contacto .content{
  width: 1035px;
}

.form-contacto {
  display: flex;
  flex-wrap: wrap;
}

.form-contacto .col-der, .form-contacto .col-izq{
  width: 45.8%;
  padding: 0 20px;
}

.form-contacto .col-ter{
  width: 100%;
}

.form-contacto span{
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: bold;
  font-size: 25px;
  display: flex;
  margin: 20px 0 10px 0;
  margin-left: 15px;
  align-items: center;
  font-family: 'Oswald', sans-serif;
}

.form-contacto input, .form-contacto textarea{
  width: 92.6%;
  padding: 10px 15px 14px;
  background: white;
  font-size: 21px;
  color: #aeb0b1;
  font-weight: 300;
  border-radius: 8px;
  border: 1px solid silver;
  outline: 0;
  font-family: 'Lato', sans-serif;
}

.form-contacto input.completo{
  background: white url('../img/imagen-form.png');
  background-repeat: no-repeat;
  background-position: 96.5% 45%;
}

.form-contacto input::placeholder, .form-contacto textarea::placeholder{
  color: #aeb0b1;
}

.form-contacto textarea{
  height: 140px;
}

.form-contacto .col-ter{
  display: flex;
  align-items: center;
  margin-top: 25px;
}

.check{
  position: relative;
  display: flex;
  align-items: center;
  width: 45.8%;
  padding: 0 20px;
}

.check:before {
  content: "";
  display: block;
  width: 75%;
  height: 2px;
  background: white;
  margin-right: 20px;
}

.form-contacto input[type="checkbox"]{
  width: auto;
  /*opacity: 0;
  position: absolute;
  left: 0;
  top: 0;*/
  cursor: pointer;
}

.form-contacto input[type="checkbox"] + label span {
  display: inline-block;
  width: 13px;
  height: 13px;
  border: 2px solid white;
  border-radius: 2px;
  margin: -1px 4px 0 0;
  vertical-align: middle;
  background: transparent;
  background-size: auto;
  background-repeat: no-repeat;
  cursor: pointer;
}
.form-contacto input[type="checkbox"]:checked + label span {
  background: url('../img/check.png');
  background-size: 70%;
  background-repeat: no-repeat;
  background-position: center;
}

.form-contacto .check label{
  color: white;
  font-size: 10px;
  font-weight: 400;
  font-family: 'Lato', sans-serif;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-align: center;
}

.form-contacto .check label a{
  color: #aeb0b1; 
  font-size: 10px;
  font-weight: 400;
  font-family: 'Lato', sans-serif;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.form-contacto .check label a:hover{
  color: white;
}

.form-contacto .button{
  width: 45.8%;
  padding: 0 20px;
}

.form-contacto .button button{
  width: 100%;
  padding: 5px 15px 9px;
  font-size: 25px;
  font-weight: bold;
  background: #aeb0b1;
  border: 1px solid #aeb0b1;
  color: white;
  border-radius: 8px;
  font-family: 'Oswald', sans-serif;
  outline: 0;
  cursor: pointer;
  letter-spacing: 1px;

  display: flex;
  align-items: center;
  justify-content: center;

  transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
}

.form-contacto .button button img{
  margin-left: 10px;
  width: 8px;

  transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
}

.form-contacto .button button:hover{
  background: #424448;
  border: 1px solid #fff;
}

.form-contacto .button button:hover img{
  margin-left: 15px;
}

/**********fin productos*************/

/**********sosteniblidad*************/

.sostenibilidad-interna{
  background: #f9f9f9;
  margin-top: 100px;
}

/*******fin sosteniblidad************/

/**********noticias interna*********/

.noticias-interna{
  padding-top: 150px;
}

.noticias-interna .content{
  width: 1251px;
}

.noticias-interna .noticias{
  justify-content: space-between;
  flex-wrap: wrap;
}

.noticias-interna .noticias:after{
  content: "";
  display: block;
  width: 85%;
  height: 1px;
  background: #8a8d8f;
  margin: 100px auto;
}

.noticias-interna .noticias:last-child:after{
  display: none;
}

.noticias-interna .noticia{
  width: 45%;
}

.noticias-interna .content span{
  color: #aeb0b1;
  letter-spacing: 1px;
  font-weight: bold;
  font-size: 25px;
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
}

.noticias-interna .content h2{
  font-size: 40px;
  color: #aeb0b1;
  margin: 20px 0;
  line-height: 45px;
  text-transform: uppercase;
}

.noticias-interna .content p{
  color: #aeb0b1;
  font-size: 21px;
  margin: 15px 0;
  font-weight: 300;
  text-align: justify;
}

.noticias-interna .content a{
  display: flex;
  align-items: center;
  color: #424448;
  font-weight: bold;
  font-size: 22px;
  margin-top: 15px;
  text-transform: uppercase;
}

.noticias-interna .content a img{
  width: auto;
  height: auto;
  margin-left: 5px;
  transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
}

.noticias-interna .content a:hover img {
  margin-left: 10px;
}

/*********fin noticias interna*********/

/**********noticias ampliacion********/

.noticas-ampliacion{
  padding-top: 150px;
  position: relative;
}

.noticas-ampliacion .noticias{
  align-items: end;
}

.noticas-ampliacion .noticias .text{
  width: 29%;
  padding: 0 100px 0 300px;
}

.noticas-ampliacion .noticias .botones{
  display: flex;
  justify-content: space-between;
}

.noticas-ampliacion .noticias .botones a{
  margin-top: 0;
}

.noticas-ampliacion .noticias .botones a img{
  margin-left: 0;
  margin-right: 5px;
}

.noticas-ampliacion .noticias .botones a:hover img{
  margin-left: -10px !important;
}

.noticas-ampliacion .noticias .compartir{
  position: relative;
  width: auto;
  display: block;
}

.noticas-ampliacion .noticias .compartir p{
  display: flex;
  align-items: center;
  color: #424448;
  font-weight: bold;
  font-size: 22px;
  margin-top: 15px;
  font-family: 'Oswald', sans-serif;
  cursor: pointer;
  text-transform: uppercase;
  transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
}

.noticas-ampliacion .noticias .compartir p img{
  margin-left: 10px;
}

.noticas-ampliacion .noticias .compartir .redes-comp{
  position: absolute;
  margin-top: -10px;
  background: #424448;
  z-index: 2;
  display: block;
  width: 100%;
  height: 0;
  z-index: -1;

  transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
}

.noticas-ampliacion .noticias .compartir:hover .redes-comp{
  height: auto;
  z-index: 2;
}

.noticas-ampliacion .noticias .compartir .redes-comp a{
  color: white;
  margin: 0;
  padding: 10px;
  display: block;
  text-align: center;  
}

.noticas-ampliacion .noticias .compartir .redes-comp a:hover{
  background: #aeb0b1;
}

.slider-noticias{
  position: relative;
}

.slider-noticias .owl-nav{
  position: absolute;
  right: 45px;
  bottom: 10%;
}

.slider-noticias .owl-nav button{
  outline: 0;
  margin: 0 5px;
}

.slider-noticias .owl-dots{
  display: flex !important;
  width: 82%;
  overflow-x: auto;
  flex-wrap: nowrap;
}

.slider-noticias .owl-dots::-webkit-scrollbar-track
{
  -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
  background-color: #F5F5F5;
}

.slider-noticias .owl-dots::-webkit-scrollbar
{
  height: 2px;
  background-color: #F5F5F5;
}

.slider-noticias .owl-dots::-webkit-scrollbar-thumb
{
  background-color: #000000;
  border: 0px solid #555555;
}

.slider-noticias .owl-dot{
  display: inline-block;
  width: 24%;
  margin: 5px 5px 5px 0;
  outline: 0;
  flex: 0 0 auto;

  filter: grayscale(100%);
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
}

.slider-noticias .owl-dot.active{
  filter: grayscale(0%);
  -webkit-filter: grayscale(0%);
  -moz-filter: grayscale(0%);
  -ms-filter: grayscale(0%);
  -o-filter: grayscale(0%);
}

.slider-noticias .owl-dot img{
  width:100%;
}

/******fin noticias ampliacion*********/


/************contacto***********/

.mapa-content .content{
  width: 1250px;
  padding: 100px 0 50px;
  display: flex;
  align-items: center;  
}

.mapa-content .content .texto{
  background: #424448;
  padding: 50px;
  width: 47%;
}

.mapa-content .content .datos{
  width: 50%;
  z-index: 2;
  padding-top: 10%;
}

.mapa-content .content .datos-0{
  display: flex;
}

.mapa-content .content .datos-0 > div:last-child{
  display: flex;
  margin-left: 5px;
}

.mapa-content .content .texto h2{
  font-size: 40px;
  color: #fff;
  margin: 20px 0;
  line-height: 45px;
  text-transform: uppercase;
}

.mapa-content .content .texto p{
  color: #fff;
  font-size: 21px;
  margin: 15px 0;
  font-weight: 300;
  text-align: justify;
}

.mapa-content .content .dir{
  padding: 30px 0px;
  width: 47%;
}

.mapa-content .content .dir span{
  color: #aeb0b1;
  letter-spacing: 1px;
  font-weight: bold;
  font-size: 25px;
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
}

.mapa-content .content .dir p{
  color: #aeb0b1;
  font-size: 21px;
  margin: 15px 0;
  font-weight: 300;
  text-align: justify;
}

.mapa-content .content .mapa{
  padding-bottom: 50%;
  position: relative;
  width: 50%;
}

.mapa-content .content .mapa iframe{
  border: 0;
  position: absolute;
  width: 145%;
  height: 100%;
  left: -240px;
}

.mapa-content .content .mapa img {
    width: 910px;
    height: 625px;
    position: absolute;
    left: -232px;
}

/**********fin contacto*********/

/***********responsive**************/

@media (max-width: 1618px){
  /*********home**********/

  .header .logo{
    padding-left: 3%;
  }

  .header .menu{
    padding: 0 3% 0 0;
  }

  .header .menu li a {
    padding: 15px 15px;
    font-size: 14px;
  }

  .header .menu .productos ul li:after{
    left: 15px;
    bottom: 10px;
  }

  .header .menu > div li{
    padding: 0 5px;
  }

  .slider-home .info{
    top: 15%;
    margin-left: 12%;
  }

  .slider-home .info .numero{
    width: 3%;
  }

  .slider-home .info .text{
    width: 43%;
  }

  .slider-home .info .icon-slider{
    width: 10.9%;
  }

  .slider-home .owl-dot:before{
    font-size: 40px;
  }

  .redes-sociales-slider{
    bottom: 16.4%;
    padding: 20px 25px 20px 30px;
  }

  .redes-sociales-slider p{
    font-size: 10px;
  }

  .redes-sociales-slider a{
    margin: 0 5px;
  }

  .sobre-nosotros .content{
    width: 900px;
  }

  .nosotros h2{
    font-size: 30px;
  }

  .nosotros p{
    font-size: 15px;
  }

  .info-add h2{
    font-size: 20px;
  }

  .info-add p{
    font-size: 15px;
  }

  .nuestros-productos .slider-producto .item .info{
    width: 38%;
    padding: 50px 50px;
  }

  .nuestros-productos .slider-producto .item .info h2{
    font-size: 30px;
    line-height: 32px;
    margin-bottom: 10px;
  }

  .nuestros-productos .slider-producto .item .info p{
    font-size: 15px;
  }

  .nuestros-productos .slider-producto .item .info a{
    font-size: 15px;
  }

  .nuestros-productos .productos .inf{
    width: auto;
    bottom: 12%;
    padding: 0 40px;
  }

  .nuestros-productos .productos .inf h2{
    font-size: 25px;
  }

  .nuestros-productos .productos .inf a{
    font-size: 15px;
  }

  .sostenibilidad .content{
    width: 925px;
  }

  .imagen-sostenibilidad .green{
    width: 130%;
    margin-left: -10.4%;
  }

  .imagen-sostenibilidad .inf{
    width: 165px;
  }

  .imagen-sostenibilidad .inf h2{
    font-size: 20px;
  }

  .imagen-sostenibilidad .inf p{
    font-size: 15px;
  }

  .btn-green{
    width: 40px;
    height: 0px;
    bottom: -38px;
  }

  .btn-green img{
    width: 24px;
  }

  .sostenibilidad .content .info{
    width: 40%;
    padding-left: 10%;
  }

  .sostenibilidad .content .info span{
    font-size: 23px;
  }

  .sostenibilidad .content .info h2{
    font-size: 30px;
    line-height: 35px;
  }

  .sostenibilidad .content .info p{
    font-size: 15px;
  }

  .sostenibilidad .content .info a{
    font-size: 15px;
  }

  .noticias .text{
    width: 31%;
    padding: 0 100px 0 160px; 
  }

  .noticias .text span{
    font-size: 23px;
  }

  .noticias .text h2{
    font-size: 30px;
    line-height: 35px;
  }

  .noticias .text p{
    font-size: 15px;
  }

  .noticias .text a{
    font-size: 15px;
  }

  .imagen-noticia .autor{
    padding: 15px;
  }

  .imagen-noticia .autor img{
    width: 34px;
    margin-right: 15px;
  }

  .imagen-noticia .autor p{
    font-size: 13px;
    width: 85px;
  }

  footer{
    padding: 60px 100px;
  }

  footer .menu-footer li a{
    font-size: 16px;
    padding: 0px 7.7px
  }

  footer .politicas li a{
    padding: 0 7.7px;
    font-size: 7.5px;
  }

  footer .newsletter h2{
    font-size: 30px;
  }

  footer .newsletter form input{
    font-size: 7px;
  }

  footer .newsletter form input::placeholder{
    font-size: 7px;
  }

  footer .copy p:first-child{
    margin: 0 45px 0 7.7px; 
    font-size: 9px;
  }

  footer .copy p a{
    font-size: 8px;
  }

  footer .copy p a img{
    width: 75px;
  }

  /*******fin home**********/

  /********sobre nosotros********/

  .quienes-somos .content h2, .gale-somos .content h2, 
  .sobre-noso .slider-sobre-nosotros h2{
    font-size: 30px;
    line-height: 30px;
  }

  .quienes-somos .content p, .gale-somos .content p, 
  .sobre-noso .slider-sobre-nosotros p{
    font-size: 15px;
  }

  .quienes-somos .content span, 
  .sobre-noso .slider-sobre-nosotros span{
    font-size: 23px;
  }

  .gale-somos .cont-instagram{
    width: 14%;
  }

  .gale-somos .cont-instagram > img{
    width: 30px;
  }

  .gale-somos .content a{
    font-size: 15px;
    line-height: 16px;
  }

  .sobre-noso .slider-sobre-nosotros .owl-dots{
    right: -20px;
  }

  /******fin sobre nosotros*******/

  /**********productos*********/

  .quienes-somos .content li{
    font-size: 15px;
  }

  .title-contacto h2{
    font-size: 70px;
  }

  .form-contacto span{
    font-size: 23px;
  }

  .form-contacto input, .form-contacto textarea{
    font-size: 15px;
    padding: 10px 15px 10px;
  }

  .form-contacto input::placeholder, .form-contacto textarea::placeholder{
    font-size: 15px;
  }

  .form-contacto .button button{
    font-size: 23px;
  }

  /*********fin productos******/

  /*******sostenibilidad**********/
  
  .gale-somos .cont-sostenibilidad > img{
    display: none;
    width: 75px;
  }

  /*******fin sostenibilidad**********/

  /**********noticias interna*********/

  .noticias-interna .content{
    width: 80%;
  }

  .noticias-interna .content span{
    font-size: 23px;
  }

  .noticias-interna .content h2{
    font-size: 30px;
    line-height: 35px;
  }

  .noticias-interna .content p{
    font-size: 15px;
  }

  .noticias-interna .content a{
    font-size: 15px;
  }

  /**********fin noticias interna*********/

  /******noticias ampliacion*********/

  .noticas-ampliacion .noticias .text{
    width: 31%;
    padding: 0 100px 0 160px;
  }

  .noticas-ampliacion .noticias .compartir p{
    font-size: 15px;
  }

  /******fin noticias ampliacion*********/

  /**********contacto*********/

  .mapa-content .content{
    width: 74%;
  }

  .mapa-content .content .texto h2{
    font-size: 30px;
    line-height: 30px;
  }

  .mapa-content .content .texto p{
    font-size: 15px;
  }

  .mapa-content .content .dir span{
    font-size: 23px;
  }

  .mapa-content .content .dir p{
    font-size: 15px;
  }

  .mapa-content .content .mapa iframe{
    left: -214px;
    width: 130%;
  }

  /**********fin contacto*********/
}

@media (max-width: 1250px){
  /*******home**********/
  .header .logo{
    width: 160px;
    padding-left: 2%;
  }

  .header .logo img{
    width: 100%;
  }

  .header .menu{
    padding: 0 2% 0 0;
  }

  .header .menu li a{
    padding: 15px 7px;
    font-size: 12px;
  }

  .header .menu .productos ul li:after{
    left: 8px;
    bottom: 10px;
  }

  .header .menu > div{
    padding: 5px 5px;
  }

  .header .menu > div li{
    font-size: 12px;
  }

  ul.listaselect{
    margin-top: 40px;
    width: 80px;
  }

  ul.listaselect li a{
    padding: 0.7em 0 !important;
  }

  .header .menu .productos ul{
    top: 135px;
  }

  .slider-home .info{
    margin-left: 30px;
  }

  .slider-home .info .numero{
    padding-top: 26px;
  }

  .slider-home .info .text{
    width: 33.33%;
  }

  .slider-home .info .text h2{
    font-size: 40px;
  }

  .slider-home .info .text p{
    font-size: 15px;
  }

  .slider-home .info .text p:after{
    margin: 10px 0 18px;
  }

  .slider-home .info .text a{
    font-size: 15px;
  }

  .redes-sociales-slider{
    bottom: 17.6%;
    padding: 15px 25px 15px 30px;
  }

  .redes-sociales-slider p{
    letter-spacing: 4px;
  }

  .scroll-down{
    right: 0;
  }

  .scroll-down img{
    width: 33px;
    margin-right: 10px;
  }

  .scroll-down p{
    font-size: 10px;  
  }

  .nuestros-productos .slider-producto .owl-dots{
    right: 20px;
    top: 20px;
  }

  .nuestros-productos .slider-producto .item .info{
    padding: 30px;
    width: 50%;
  }

  .nuestros-productos .slider-producto .item .info a{
    font-size: 12px;
  }

  .nuestros-productos .productos .inf{
    padding: 0 15px;
    bottom: 5%;
  }

  .nuestros-productos .productos .inf h2{
    font-size: 20px;
  }

  .nuestros-productos .productos .inf a{
    font-size: 12px;
  }

  .sostenibilidad .content .info{
    padding-left: 5%;
  }

  .sostenibilidad .content .info a{
    font-size: 12px;
  }

  .noticias .text{
    width: 40.2%;
    padding: 0 50px;
  }

  .imagen-noticia .autor{
    padding: 10px;
    bottom: 25px;
    right: 5px;
  }

  .imagen-noticia .autor img{
    margin-right: 5px;
  }

  .imagen-noticia .autor:after{
    border-left: 23px solid #fff;
    border-top: 6px solid transparent;
    border-bottom: 20px solid transparent;
  }

  footer{
    padding: 30px 50px;
  }

  footer .top{
    padding: 20px;
    top: -58px;
  }

  footer .content{
    width: 50%;
  }

  footer .newsletter{
    width: 50%;
  }

  /*******fin home**********/

  /********nosotros********/

  .banner .text .number{
    padding-top: 0;
  }

  .banner .text .number span{
    font-size: 23px;
  }

  .banner .text h2{
    font-size: 40px;
  }

  .banner .text p{
    font-size: 15px;
    margin-top: 0px;
  }

  .banner .text p:before{
    width: 40px;
    margin-right: 10px;
  }

  .quienes-somos .content, .gale-somos .content{
    width: 90%;
    padding: 50px 0 0;
  }

  .gale-somos .cont-instagram{
    width: 25%;
  }

  .gale-somos .content .img-pr:after{
    top: -15px;
    left: -15px;
  }

  .sobre-noso{
    margin-top: 50px;
    padding: 50px 0;
  }

  .sobre-noso .content{
    width: 90%;
  }

  .sobre-noso .slider-sobre-nosotros .owl-dots{
    right: 0;
  }

  .title-contacto{
    width: 95%;
    margin: 0 auto;
  }

  /*******fin nosotros*****/

  /**********productos*********/

  .galeria-productos{
    margin-top: 0;
  }

  .slider-productos .item .img-peque img{
    width: 48.6%;
  }

  .slider-productos .owl-dots{
    right: 20px;
  }

  .section-contacto{
    padding: 50px 0;
  }

  .section-contacto .content{
    width: 95%;
  }

  .form-contacto .col-der, .form-contacto .col-izq{
    width: 45%;
  }


  /*********fin productos******/

  /******noticias ampliacion*********/

  .noticas-ampliacion .noticias .text{
    width: 40.2%;
    padding: 0 50px;
  }

  /******fin noticias ampliacion*********/

  /**********contacto*********/

  .mapa-content .content{
    padding: 0px 0 20px;
  }

  .mapa-content .content .datos{
    padding-top: 15%;
  }

  .mapa-content .content .mapa{
    padding-bottom: 95%;
  }

  .mapa-content .content .mapa iframe{
    left: 0px;
    width: 100%;
  }

  /**********fin contacto*********/
}

@media (max-width: 972px){
  /*********home*********/
  .sobre-nosotros .content{
    width: 90%;
  }

  .nuestros-productos .slider-producto{
    width: 100%;
    margin-bottom: 20px;
  }

  .nuestros-productos .productos{
    width: 100%;
  }

  .sostenibilidad .content{
    width: 90%;
  }

  .noticias{
    width: 90%;
  }

  /**********fin home******/

  /**********noticias interna*********/

  .noticias-interna{
    padding-top: 50px;
  }

  /**********fin noticias interna*********/

}


@media (max-width: 923px) {
  body{
    overflow-x: hidden;
  }

  /*********home*********/
  
  .toggle-menu{
    display: block;
  }

  .header{
    padding: 20px 0;
  }

  .header .menu{
    height: auto;
    width: 320px;
    right: 0;
    z-index: 3;
    opacity: 0;
    padding: 0;
    top: 104px;
    position: absolute;
    background: #424448;
    transition: all 0.5s linear;
  }

  .header .menu li{
    width: 100%;
  }

  .header .menu .productos ul{
    top: auto;
    position: relative;
    padding: 0;
    background: #353535;
  }

  .header .menu .productos ul:after{
    z-index: -1;
  }

  .header .menu .productos:hover > ul{
    display: block;
  }

  .header .menu > div{
    width: 100%;
  }

  /*****fin home********/

}

@media (max-width: 885px){

  /********home***********/

  .slider-home .info{
    top: 5%;
  }

  .slider-home .info .numero{
    padding-top: 19px;
  }

  .slider-home .info .numero span{
    font-size: 22px;
  }

  .slider-home .info .text .customNavigation button{
    width: 22px;
  }

  .slider-home .info .text h2{
    font-size: 30px;
  }

  .slider-home .info .icon-slider{
    width: 8.9%;
    padding-top: 22px;
  }

  .parallax-slider{
    margin-top: 20px;
  }

  .slider-home .owl-dot:before{
    font-size: 30px;
  }

  .slider-home .info .text a{
    font-size: 12px;
  }

  .redes-sociales-slider a img{
    width: 15px;
  }

  section.sobre-nosotros{
    padding-bottom: 50px;
  }

  .sostenibilidad{
    padding: 100px 0 50px;
  }

  .imagen-sostenibilidad{
    width: 100%;
  }

  .imagen-sostenibilidad .green{
    width: 95%;
    margin-left: -7.9%;
  }

  .sostenibilidad .content .info{
    width: 100%;
    padding: 0;
  }

  .noticias{
    flex-wrap: wrap;
    margin: 0 auto;
  }

  .noticias .text{
    width: 100%;
    padding: 0;
    margin-bottom: 20px;
  }

  .imagen-noticia{
    width: 100%;
  }

  .marcas{
    padding: 50px 0;
  }

  /******fin home********/

  /*********nosotros********/

  .banner .text h2{
    font-size: 30px;
  }

  /*******fin nosotros**********/

  /**********productos*********/

  .slider-productos .item{
    flex-wrap: wrap;
  }

  .slider-productos .item > div{
    width: 100%;
  }
  
  .slider-productos .item .img-peque{
      display: block;
  }
  
  .slider-productos .item .img-peque img{
      display: inline-table;
      padding: 2px;
      width: 48.3%;
  }

  .title-contacto h2{
    font-size: 50px;
  }

  .section-contacto{
    padding:169px 0 40px;
  }

  .form-contacto .col-der, .form-contacto .col-izq{
    width: 100%;
  }

  .form-contacto .col-ter{
    flex-wrap: wrap;
  }

  .check{
    width: 100%;
  }

  .form-contacto .button{
    width: 100%;
    margin-top: 20px;
  }

  /*********fin productos******/

  /**********noticias interna*********/

  .noticias-interna .content{
    width: 100%;
  }

  .noticias-interna .noticia{
    width: 100%;
  }

  .noticias-interna .noticia:after{
    content: "";
    display: block;
    width: 85%;
    height: 1px;
    background: #8a8d8f;
    margin: 50px auto;
  }

  .noticias-interna .noticia:last-child:after{
    display: none;
  }

  .noticias-interna .noticias:after{
    margin: 50px auto;
  }

  /**********fin noticias interna*********/

  /***********noticias ampliacion*********/

  .noticas-ampliacion{
    padding-top: 50px;
  }

  .noticas-ampliacion .noticias .text{
    width: 100%;
    padding: 0;
    margin-bottom: 20px;
  }

  /*******fin noticias ampliacion**********/

  /**********contacto*********/

  .mapa-content{
    padding: 20px 0;
  }

  .mapa-content .content{
    width: 90%;
    flex-wrap: wrap;
  }

  .mapa-content .content .datos{
    padding-top: 0;
    width: 100%;
  }

  .mapa-content .content .texto{
    width: 50%;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
  }

  .mapa-content .content .mapa{
    width: 100%;
  }

  /**********fin contacto*********/

}

@media (max-width: 670px){
  /********home***********/

  .slider-home .info .text{
    width: 50%;
  }

  .slider-home .info .text p:after{
    margin: 5px 0px;
  }

  .slider-home .info .icon-slider{
    display: none;
  }

  .redes-sociales-slider{
    bottom: 13.8%;
  }

  .redes-sociales-slider p{
    letter-spacing: 2px;
    margin: 0 5px 0 0;
  }

  .parallax-slider{
    margin-top: 5px;
    margin-left: 23%;
  }

  .info-add div{
    width: 50%;
  }

  footer{
    padding: 30px;
  }

  footer .content{
    width: 100%;
    order: 2; 
  }

  footer .newsletter{
    width: 100%;
    order: 1;
  }

  footer .newsletter h2{
    text-align: left;
  }

  footer .newsletter form{
    text-align: left;
  }

  footer .newsletter form input{
    width: 92.7%;
  }

  /******fin home*********/

  /********nosotros*****/

  .banner{
    width: 100%;
    height: 245px;
  }

  .banner > img{
    object-fit: cover;
    width: 100%;
    height: 100%;
  }

  .banner .text p{
    font-size: 10px;
  }

  .banner .text p:before{
    width: 20px;
  }

  .banner .scroll-down{
    bottom: 0;
  }

  .quienes-somos .content{
    flex-wrap: wrap;
  }

  .quienes-somos .content > div{
    width: 100%;
    padding: 0;
  }

  .gale-somos .content{
    flex-wrap: wrap;
  }

  .gale-somos .cont-instagram{
    width: 100%;
    margin-bottom: 30px;
  }

  .gale-somos .content h2{
    margin: 0;
  }

  .gale-somos .content .gale{
    width: 100%;
    flex-wrap: wrap;
  }

  .sobre-noso{
    padding: 20px 0 40px;
  }

  .sobre-noso .slider-sobre-nosotros .item{
    flex-wrap: wrap;
  }

  .sobre-noso .slider-sobre-nosotros .item > div{
    width: 100%;
    padding: 0;
  }

  /********fin nosotros*********/
}

@media (max-width: 568px){
  /*********home***********/

  .slider-home .info .text h2{
    font-size: 25px;
  }

  .slider-home .parallax-slider{
    position: absolute;
  }

  .fondo{
    position: relative;
  }

  .slider-home .owl-dots{
    right: 15px;
  }

  .redes-sociales-slider{
    bottom: 0;
    padding: 6px;
  }

  .scroll-down{
    bottom: 5px;
  }

  .scroll-down img{
    width: 30px;
    margin-right: 5px;
  }

  .scroll-down p{
    width: 85px;
  }

  section.sobre-nosotros{
    padding: 30px 0px;
  }

  .nuestros-productos .productos > div{
    width: 100%;
  }

  .imagen-sostenibilidad .green{
    top: -40px;
  }

  .imagen-sostenibilidad .inf{
    padding: 80px 30px 50px;
  }

  /*******fin home*******/

  /*******nosotros******/

  .banner .text h2{
    font-size: 25px;
  }

  .quienes-somos .content, .gale-somos .content{
    padding: 30px 0 0
  }

  .gale-somos .content .img-pr, .gale-somos .content .img-pe{
    width: 100%;
  }

  .gale-somos .content .img-pe{
    display: flex;  
  }

  .gale-somos .content .img-pe img{
    padding: 0;
  }

  /****fin nosotros******/

  /*****productos******/

  .title-contacto h2{
    font-size: 40px;
    line-height: 38px;
  }

  /****fin productos****/

  /**********contacto*********/

  .mapa-content .content .datos-0 img{
    width: 100%;
  }

  /**********fin contacto*********/
}

@media (max-width: 477px){
  /********home*********/

  .slider-home .info{
    margin-left: 10px;
  }

  .slider-home .info .numero{
    width: 5%;
  }

  .slider-home .info .text{
    width: 59%;
  }

  .parallax-slider{
    width: 45% !important;
  }

  .slider-home .fondo{
    width: 100%;
    height: 245px;
  }

  .slider-home .fondo img{
    object-fit: cover;
    width: 100%;
    height: 100%;
  }

  .scroll-down{
    display: none;
  }

  .info-add div{
    width: 100%;
  }

  .nuestros-productos .slider-producto .item .info{
    position: relative;
    width: 85%;
    padding: 24px;
  }

  .imagen-sostenibilidad .green{
    top: -70px;
  }

  .imagen-noticia .autor{
    bottom: auto;
    top: 5px;
  }

  .marcas{
    padding: 0px 0 40px;
  }

  footer .newsletter form input{
    width: 84%;
  }

  /********fin home******/

  /***********noticias ampliacion*********/

  .slider-noticias .owl-nav{
    right: 0;
  }

  .slider-noticias .owl-dot{
    width: 23.5%;
  }

  /*******fin noticias ampliacion**********/

  /**********contacto*********/

  .mapa-content .content .texto{
    width: 100%;
    padding: 20px;
  }

  .mapa-content .content .dir{
    margin: 0;
    width: 80%;
    padding: 20px;
  }

  .mapa-content .content .datos-0 img{
    display: none;
  }

  /**********fin contacto*********/

}