@import "variables.css";
*{
  box-sizing: border-box;
  font-family: 'Montserrat', sans-serif;
}
body, html {
   margin: 0;
}
.top{
  height: 100px;
  background-color: whitesmoke;
  box-shadow: "4px 4px 4px rgba(0, 0, 0, .5)";
  
}
#contenido{
  width: 100%;
  height: 500px;
  background-color: whitesmoke;
  padding: 30px;
  text-align: center;
}
.info{
  width: 90%;
  height: auto;
  margin-left: 5%;
  margin-bottom: 40px;
  
  display: flex;
  justify-content: space-between;
}
.fluid{
  height: 200px;
  background-color: white;
  border-top: 4px solid var(--secondary-color);
  box-shadow: 5px 5px 5px rgba(0,0,0,.5);
  text-align: center;
  padding: 15px;

  flex-basis: 30%;
}
.fluid img{
  filter: opacity(50%);
  transition: .5s;
  z-index: -1;
}
.fluid img:hover{
  filter: opacity(100%);
}
#contenido h2{
  font-weight: 900;
  font-size: 40px;
  color: var(--main-color);
  margin: 10px;
}
#contenido h2 span{
  font-weight: 400;
  font-size: 36px;
  color: var(--main-color);
  margin: 10px;
}
.info2{
  width: 90%;
  height: auto;
  margin-left: 5%;
  margin-bottom: 20px;
  padding-top: 10px;
  background-color: white;
  border-top: 4px solid var(--secondary-color);
  box-shadow: 5px 5px 5px rgba(0,0,0,.5);
  display: flex;
  justify-content: space-evenly;
}
.info2 > div{
  flex-basis: 300px;
  display: flex;
  justify-content: center;
  color: var(--main-color);
}
.info2 .icon{
  flex-basis: 70px;
  line-height: 100px;
}
.info2 .texto{
  flex-basis: 200px;
  
}
.parallax {
  /* The image used */
  background-image: url('../images/img-parallax2.png');

  /* Full height */
  min-height: 500px;  

  /* Create the parallax scrolling effect */
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.productos{
  width: 100%;
  height: auto;
  margin-bottom: 40px;
  box-shadow: 5px 5px 5px rgba(0,0,0,.5);

}
.productos img{
  width: 100%;
}

@media screen and (max-width: 1024px) {
  #contenido{
    height: auto;
    padding: 10px;
  }
  .info2{
      flex-wrap: wrap;
  }
  .info{
    flex-wrap: wrap;
    flex-basis: 250px;
  }

}
@media screen and (max-width: 1024px) {
.fluid{
  height: auto;
  flex-basis: 80%;
  margin-left: 10%;
  margin-bottom: 20px;
}
.info2{
  width: 80%;
  margin-left: 10%;
}
}