@keyframes fade-in-bottom {
    0% {
      transform: translateY(50px);
      opacity: 0;
    }
    to {
      transform: translateY(0);
      opacity: 1;
    }
  }
  @keyframes fade-in {
    0% {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
  @keyframes fade-in-left {
    0% {
      transform: translateX(-50px);
      opacity: 0;
    }
    to {
      transform: translateX(0);
      opacity: 1;
    }


    
  }

  body{
    background-image: url("./public/img-c3.png");
    background-size: cover;
    background-position: center top; 
    /*background-repeat: no-repeat;
    background-size: 100%;*/
  }
  
  
  .landing-page {
    font-size: var(--font-size-21xl);
    color: white;
    font-family: var(--font-alexandria);
    width: 100%;
  }

  .header{
    letter-spacing: 2.4px;
    text-transform: uppercase;
    padding-left: 33px;
  }

  .header h1{
    font-weight: 200;
    font-size:32px;
  }
  .recovery-point{
    margin-top: 60px;
    width: 100%;
    height: 71.3px;
    opacity: 0;
    font-size: 35px;
    margin-bottom: 20px;
  }

  .recovery-point.animate {
    animation: 1s ease-in-out 0s 1 normal forwards fade-in-bottom;
  }

  .recovery {
    letter-spacing: -0.88px;
    text-transform: uppercase;
    font-weight: 300;
    text-align:center;
    margin-top: 8px;
  }

  .recycle-point{
    width: 100%;
    height: 131px;
    opacity: 0;
    font-size: 60px;
    margin-bottom: 35px;
  }

  .recycle-point.animate {
    animation: 0.5s ease-in-out 0.5s 1 normal forwards fade-in-bottom;
  }

  .recycle {
    letter-spacing: -1.62px;
    text-transform: uppercase;
    font-weight: 500;
    text-align:center;
    margin-top: 8px;
  }

  .reborn-point{
    width: 100%;
    height: 203px;
    font-size: 85px;
    opacity: 0;
  }


  .reborn-point.animate {
    animation: 0.5s ease-in-out 1s 1 normal forwards fade-in-bottom;
  }

  .reborn {
    letter-spacing: -3.5px;
    text-transform: uppercase;
    text-align:center;
  }

  .action{
    width: 100%;
    margin: auto;
    display: block;
    margin-top: 5px;
    margin-bottom: 20px;
  }

  .info{
    width: 100%;
    text-align: center;
    font-size: var(--font-size-base);
    letter-spacing: -0.4px;
  }

  .info-text {
    text-align: center;
    opacity: 0;
  }
  .info-text.animate {
    animation: 1s ease-in-out 1s 1 normal forwards fade-in;
  }

  .button-wrap{
    width: 100%;
    text-align: center;
    opacity: 0;
  }

  .button-wrap a{
    color:white;
    text-decoration: none;
  }

  .button {
    cursor: pointer;
    background-color: #0d9bb5;
    border-radius: 23px;
    border: none;
    margin: 4px 2px;
    width: 213px;
    height: 46px;
    font-family: var(--font-alexandria);
    text-decoration: none;
    color:white;
    padding-top: 10px;
  }


  .button-wrap.animate {
    animation: 0.5s ease-in-out 1.5s 1 normal forwards fade-in-left;
  }

  .img-c-icon {
    position: absolute;
    top: 0;
    left: 0;
    width: 2200px;
    height: 1100px;
    object-fit: cover;
  }



  .path-1-icon {
    width: 2px;
    height: 63px;
    display:block;
    margin:auto;
  }


  .path-3-icon {
    width: 2px;
    height: 27.1px;
    display:block;
    margin:auto;
  }



  .path-4-icon {
    position: absolute;
    top: calc(50% + 0.62px);
    right: 18.18px;
    width: 33.5px;
    height: 1px;
  }
 
  @media only screen and (min-width: 768px){

    .header{
      letter-spacing: 2.4px;
      text-transform: uppercase;
      padding-left: 66px;
    }
  
    .header h1{
      font-weight: 200;
      font-size:32px;
    }
    
    .recovery-point{
      margin-top: 75px;
    }

    .action{
      width: 30%;
      margin: auto;
      display: block;
      margin-top: 5px;
      margin-bottom:45px;
    }

    .action::after {
      content: "";
      clear: both;
      display: table;
    }
  
    .info{
      width: 50%;
      float: left;

    }
  
    .info-text {
      text-align: center;
      opacity: 0;
      padding-top: 4px;
    }

    .button-wrap{
      width: 50%;
      text-align: center;
      float: left;
  }

  .recycle-point{
    font-size: 55px;
  }

  .reborn-point{
    font-size: 100px;
  }
}

@media only screen and (min-width: 942px){
  .info-text {
    padding-top: 10px;
  }
}

  