
.hero{
    margin-top: 10vh;
}
.hero .content{
    max-width: 1200px;
    margin: auto;
    min-height: 50vh;
}

.hero   .wrapper{
    margin: 100px auto;
    max-width: 1100px;
    display: flex;
    flex-direction: column;
  }
  .wrapper nav{
    display: flex;
    justify-content: start;
  }
  .wrapper .items{
    display: flex;
    max-width: 720px;
    width: 100%;
    justify-content: start;
    gap: 1vh;
  }
  .items span{
    padding: 7px 25px;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    color: black;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
    border-radius: 10px;
  }
  .items span.active,
  .items span:hover{
    color: black;
    background-color: #c5ab63;
  }
  
  .gallery{
    display: flex;
    flex-wrap: wrap;
    margin-top: 30px;
  }
  .gallery .image{
    width: calc(100% / 3);
    padding: 7px;
  }
  .gallery .image span{
    display: flex;
    width: 100%;
    overflow: hidden;
    border-radius: 10px;
  }
  .gallery .image img{
    width: 100%;
    vertical-align: middle;
    transition: all 0.3s ease;
  }
  .gallery .image.hide{
    display: none;
  }
  .gallery .image.show{
    animation: animate 0.4s ease;
  }
  @keyframes animate {
    0%{
      transform: scale(0.5);
    }
    100%{
      transform: scale(1);
    }
  }
  @media (max-width: 1000px) {
    .gallery .image{
      width: calc(100% / 3);
    }
  }
  @media (max-width: 800px) {
    .gallery .image{
      width: calc(100% / 2);
    }
  }
  @media (max-width: 700px) {
    .wrapper nav .items{
      max-width: 600px;
    }
    nav .items span{
      padding: 7px 15px;
    }
  }
  @media (max-width: 600px) {
    .wrapper{
      margin: 30px auto;
    }
    .wrapper nav .items{
      flex-wrap: wrap;
      justify-content: center;
    }
    .gallery .image{
      width: 100%;
    }
  }
  
@media screen and (max-width: 850px) {
    .hero{
        margin-top: 10vh;
    }
}
