.s2 {
  position: relative;
  height: 120%;
  background-color: rgb(0, 0, 0);
}

.s2bgtrees {
  position: absolute;
  width: 100%;
  margin-top: -20%;
  z-index: 9;
  will-change: transform;
  transition: transform 0.1s ease-out;
}

.s2left {
  position: absolute;
  margin-top: -25%;
  left: 0%;
  width: 25%;
  z-index: 11;
  will-change: transform;
  transition: transform 0.1s ease-out;
}

.s2right {
  position: absolute;
  margin-top: -25%;
  right: 0%;
  width: 25%;
  z-index: 11;
  will-change: transform;
  transition: transform 0.1s ease-out;
}

.s2lefttree {
  position: absolute;
  margin-top: -23%;
  left: 0%;
  width: 35%;
  z-index: 11;
  will-change: transform;
  transition: transform 0.1s ease-out;
}

.s2righttree {
  position: absolute;
  margin-top: -23%;
  right: 0%;
  width: 35%;
  z-index: 11;
  will-change: transform;
  transition: transform 0.1s ease-out;
}

.s2frontbg {
  position: absolute;
  z-index: 10;
  width: 100%;
}

.s2dailyrewardsbanner {
  position: absolute;
  z-index: 12;
  width: 40%;
  left: 50%;
  transform: translateX(-50%);
  margin-top: -30px;
}

.s2flex {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 13;
  width: 100%;
}

.s2dailyrewards {
  margin-top: 10%;
  max-width: 45%;
  animation: float 4.5s ease-in-out infinite;
  will-change: transform;
  animation-delay: -1.2s;
}

@keyframes float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
  100% {
    transform: translateY(0);
  }
}

.s2incentives {
  margin-top: -5%;
  width: 50%;
}