* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: "Roboto", sans-serif;
    transition: 0.3s;
    background-color: rgb(236, 236, 236);
  }

  .main-top {
      width: 100%;
      height: 100vh;
  }

  .main-background {
      width: 100%;
      height: 100%;
      background-size: cover;
      background-position: top center;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding-bottom: 10%;
  }

  .main-background h1 {
      color: #fff;
      margin-bottom: 20px;
      font-size: 55px;
  }

  .main-background h4 {
    color: #fff;
    font-size: 25px;
}

.site-row {
    width: 100%;
    height: auto;
    padding: 5% 10%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0px;
    padding-bottom: 0;
}


.site-box {
    width: 500px;
    height: auto;
    padding: 30px;
    margin: 20px;
    display: flex;
    flex-direction: column;
    position: relative;
    align-items: center;
    transition: all 0.3s ease-in-out;
    z-index: 1;
    cursor: pointer;
    text-align: center;
  }
  
  .site-box::before {
    content: "";
    position: absolute;
    background: none;
    right: 0;
    left: 0;
    bottom: 0;
    top: 100%;
    transition: all 0.4s;
    z-index: -1;
  }
  
  .site-box:hover::before{
    background: white;
    top: 0;
    border-radius: 25px;
    box-shadow: 2px 4px 8px 4px rgb(0 0 0 / 2%), 20px 6px 20px 20px rgb(0 0 0 / 2%);
  }
  
  .img-box {
      width: 100%;
      height: 239px;
      background-color: #9c1d5e;
      border-radius: 25px;
  }

  .img-box img{
      width: 100%;
      height: 100%;
      border-radius: 25px;
  }

  .site-box h3 {
    color: #000;
    font-size: 25px;
    margin-top: 30px;
  }

  .site-box p {
    color: #000;
    font-size: 18px;
    margin-top: 15px;
  }