.hero{
    margin-top: 10vh;
  }
  .hero .content{
    max-width: 1200px;
    margin: auto;
  }
  .hero h2{
    font-size: 2.5vh;
    line-height: 1.08349;
    font-weight: 600;
    letter-spacing: -.003em;
  }
  .hero .p{
    color: #fff;
  }
  .hero .wrapper{
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .hero .wrapper-item{
    display: flex;
    flex-direction: column;
    gap: 2vh;
    width: 75%;
    padding: 2vh;
  }
  .hero .wrapper-item .view{
    padding: 1vh;
  }
  .hero .box{
    display: flex;
    align-items: center;
    gap: 2vh;
  }
  .hero .box .box-content{
    width: 50%;
  }
  .hero .box .box-content img{
    width: 100%;
    border-radius: 10px;
  }
  .hero .grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 10px;
    grid-auto-rows: minmax(auto, auto);
  }
  .hero .grid-content{
    height: 500px;
    border-radius: 10px;
  }
  .hero .grid1{
    background-image: url("../assets/363052782_584925953842203_1862584170308522505_n.jpg");
    background-size: cover;
    background-position: top;
    width: 100%;
  }
  .hero .grid2 {
    background-image: url("../assets/confs.png");
    background-size: cover;
    background-position: center;
    width: 100%;
  }
  .hero .grid3 {
    background-image: url("../assets/IMG_4167.JPG");
    background-size: cover;
    background-position: center;
    width: 100%;
  }
  
  @media screen and (max-width: 850px) {
    .hero{
        margin-top: 10vh;
    }
    .hero .wrapper{
        flex-direction: column;
    }
    .hero .wrapper-item{
        width: 100%;
    }
    .hero .wrapper-item .view{
        padding: 2vh;
    }
  }
  @media screen and (max-width: 700px) {
    .hero .box{
      flex-direction: column;
    }
    .hero .box .box-content{
      width: 100%;
    }
    .hero .grid{
      grid-template-columns: repeat(1, 1fr);
    }
  }