html {
   font-size: 100%;
   line-height: 1.5rem;
   box-sizing: border-box;
   font-family: Arial, Helvetica, sans-serif;
}

body {
  margin: 0 auto;
  padding: 0;
  min-height: 100vh;
  max-width: 1400px;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}
 img {
   max-width: 100%;
   height: auto;
   display: block;
   border-radius: 10px;
 }

  .h2 {
    color: #634C4C;
  }
  .logon3 {
    height: 90px;
    position: relative;
    top: 5px;
    left: 15px;
    border-radius: 5px;
  }

  .logo {
    color: #634C4C;
  }
 .header-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    line-height: 1rem;
    overflow: hidden;
    margin-bottom: 0.5rem;
}


  .logo,
  .nav-menu {
    text-transform: uppercase;
  }

  .nav-menu {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-items: center;
    padding: 0;
    margin: 0;
  }

  .nav-item {
    flex: 1 0 10%;
    text-align: center;
  }

  .logo a,
  .nav-menu a {
    display: block;
    text-decoration: none;
    letter-spacing: 0.2rem;
    padding: 0.8rem;
    font-weight: bold;
  }

  .logo {
    margin: 0 auto;
  }

  .logo a {
    color: #646e7d;
  }

  .nav-menu a {
    color: #634C4C;
    transition: all ease-in-out 0.5s;
  }

  .nav-menu a:hover {
    background-color: #FBFCFC;
    transform: scale(1.1);
  }

  .nav-menu a:active {
    transform: scale(0.9);
  }

  @media (min-width:600px) {
    .header-nav {
      line-height: 1.5rem;
    }
    .nav-menu {
      width: 100%;
    }
    .nav-item {
      flex 1 0 10%;
    }
  }

  @media (min-width: 900px) {
    .header-nav {
      justify-content: space-between;
      padding: 1rem 0;
      margin: 1rem auto 2rem auto;
    }
    .nav-menu {
      width: auto;
    }
    .logo {
      margin: 0 0 0 0.3rem;
    }
  }

  .intro {
    background-color: #AAB2BD;
    display: flex;
    margin-top: 25px;
    padding-top: 25px;
    padding-bottom: 25px;
    padding-left: 50px;
    font-size: 24px;
    font-weight: bolder;


  }
  .slogan {
    background-color: #FBFCFC;
    padding-left: 30px;
    padding-top: 15px;
    font-size: 1.5em;

  }
  .block1 {
    background-color;
    padding-right: 50px;

  }
 .bloque2 {
  diplay: flex;
  margin-top: 75px;
  padding-right: 250px;
}
  .bloque2a {
    margin-top: 75px;
  }
  .bloque2a li {
    display: block;
    text-decoration: none;
    letter-spacing: 0.1rem;
    padding: 0.2rem;
    font-weight: bold;
  }
  .bloque2b {
   diplay: flex;
   margin-top: 75px;
   padding-right: 250px;
   background-color: #AAB2BD;
   padding-top: 5px;
 }
  .bloque2b li {
    display: block;
    text-decoration: none;
    letter-spacing: 0.1rem;
    padding: 0.2rem;
    font-weight: bold
  }
  .gallery {
    margin-top: 50px;
    padding-top: 25px;
    background-image: url("../img/garden-irri.jpg");
    background-repeat: no-repeat;
    background-size: 100%;
    height: 420px;
    box-sizing: border-box;
  }
  .gallery img {
    margin-left: 15px;
    padding-bottom: 15px;
  }

  .cotiza {
    width: 450px;
    margin: auto;
    background: #634C4C;
    padding: 10px; 20px;
    box-sizing: border-box;
    margin-top: 20px;
    border-radius: 7px;
  }

  input, textarea {
    width: 100%;
    margin-bottom: 15px;
    padding: 9px;
    box-sizing: border-box;
    font-size: 12px;
  }
  textarea {
    min-height: 81px;
    max-height: 189px;
    max-width: 100%;
  }
  #boton:hover {
    cursor: pointer;
  }
  @media (max-width:480px) {
    .cotiza {
      width: 100%;
    }
  }
  .iframe {
    width: 100%;
    max-height: 600px;
    box-sizing: border-box;
    margin-top: 10px;
    margin left: 250px;
  }

  .wrapper .icon{
  position: relative;
  background-color: #ffffff;
  border-radius: 50%;
  margin: 10px;
  width: 50px;
  height: 50px;
  line-height: 50px;
  font-size: 22px;
  display: inline-block;
  align-items: center;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  color: #333;
  text-decoration: none;
}
.wrapper .tooltip {
  position: absolute;
  top: 0;
  line-height: 1.5;
  font-size: 14px;
  background-color: #ffffff;
  color: #ffffff;
  padding: 5px 8px;
  border-radius: 5px;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.wrapper .tooltip::before {
  position: absolute;
  content: "";
  height: 8px;
  width: 8px;
  background-color: #ffffff;
  bottom: -3px;
  left: 50%;
  transform: translate(-50%) rotate(45deg);
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.wrapper .icon:hover .tooltip {
  top: -45px;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.wrapper .icon:hover span,
.wrapper .icon:hover .tooltip {
  text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.1);
}
.wrapper .facebook:hover,
.wrapper .facebook:hover .tooltip,
.wrapper .facebook:hover .tooltip::before {
  background-color: #3b5999;
  color: #ffffff;
}
