:root {
    --hero-gap: 60px;
  }
  
  
  
  .parallax-wrapper {
   
  }
  
  .parallax-content {
    position: relative;
    width: 100%;
    height: calc(100vh - var(--hero-gap));
  }
  
  .hero {
    position: relative;
    display: flex;
    /* align-items: center; */
    /* justify-content: center; */
    overflow: hidden;
    background: linear-gradient(299deg, #d382a4 0%, #39a0cb 100%);
    margin-top: 91px;
    height: 400px;
  }
  .hero img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 110%;
    -o-object-fit: cover;
       object-fit: cover;
    z-index: 1;
    transform: translateZ(1px);
  }
  .hero .hero__title {
    color: white;
    z-index: 2;
    text-align: inherit;
    /* transform: translateZ(-6px) scale(1.2); */
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  .hero .hero__title h1{
    font-size: 75px;
    font-weight: bold;
  }
  
  .main-content {
    position: relative;
    margin: 0 auto;
    padding: var(--hero-gap) 2rem;
    max-width: 934px;
    background-color: white;
  }
  
  .main-content span{
    font-size: 30px;
    font-weight: bold;
  }
  .main-content p{
    line-height: 25px;
    font-size: 18px;
  }

  .main-content div ol li {
    line-height: 25px;
    font-size: 18px;
}
.main-content div {
    line-height: 25px;
    font-size: 18px;
}
  @media (max-width: 1000px) {
    .hero{
        margin-top: 65px;
      }
      
  }
  
  @media (max-width: 520px) {
    .hero .hero__title h1{
        font-size: 50px;
      }
      .main-content p {
      font-size: 16px;
    }
    .main-content div ol li {
     
      font-size: 16px;
  }
  .main-content div {
      font-size: 16px;
  }
     
      
  }