#about {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}

#about h1 {
  margin: 0;
  font-size: 140px;
  text-align: center;
  width: 32rem;
  color: var(--white);
  text-shadow: 0px 2px 1.8px rgba(0, 0, 0, 0.3);
}

#about .decorations .center-coral {
  position: absolute;
  width: 100%;
  height: auto;
  bottom: 0%;
}

#learn-step {
  background-color: var(--white);
  position: relative;
  overflow: hidden;
  padding-top: 5%;
}

#learn-step .decorations .bg-bottom {
  position: absolute;
  width: 100%;
  height: auto;
  bottom: 0%;
  z-index: -1;
}

#learn-step .wrapper {
  overflow: hidden;
  margin-left: 2rem;
  margin-right: 3rem;
}

/* #learn-step .wrapper .slider { */
/*   position: relative; */
/*   display: flex; */
/*   align-items: center; */
/*   width: 100%; */
/*   height: 100%; */
/*   overflow-x: auto; */
/* } */
/**/
/* #learn-step .wrapper .slider-item img { */
/*   height: 90%; */
/* } */

#threat {
  position: relative;
  overflow: hidden;
  padding-top: 5%;
}

#threat h1,
#threat p {
  margin: 0;
}

#threat .wrapper .element {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 25%;
  padding-bottom: 12.5%;
}

#threat .wrapper .element-text {
  position: absolute;
  font-size: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#threat .wrapper .element-2 {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 12.5%;
  padding-bottom: 25%;
}

#threat .wrapper .element-2 .element-text {
  font-size: 80px;
  color: var(--fourth);
  transition: all 0.3s ease;
  z-index: 1;
}

#threat .wrapper .element-2 .element-text:hover {
  color: var(--primary);
  transition: all 0.3s ease;
}

#threat .decorations img {
  position: absolute;
  width: auto;
}

#threat .decorations .blue-coral {
  left: 20%;
  height: 18rem;
  top: 30%;
}

#threat .decorations .purple-coral {
  right: 28%;
  height: 12rem;
  top: 37%;
}

#threat .decorations .mission-coral-right {
  right: 30%;
  height: 14rem;
  top: 11%;
}

#explore-more {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}

#explore-more h1 {
  margin: 0;
  font-size: 72px;
  text-align: center;
  width: 16rem;
  color: var(--white);
  text-shadow: 0px 2px 1.8px rgba(0, 0, 0, 0.3);
}

#explore-more .wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  gap: 1rem;
}

#explore-more .wrapper button {
  border: 3px solid var(--rose-2);
  border-radius: 40px;
  background-color: var(--white);
  color: var(--rose-2);
  cursor: pointer;
  padding: 0.25rem 1.5rem;
  transition:
    background-color 0.5s,
    color 0.5s;
}

#explore-more .wrapper button:hover {
  background-color: var(--rose-2);
  color: var(--white);
  transition:
    background-color 0.5s,
    color 0.5s;
}

#explore-more .decorations .center-coral {
  position: absolute;
  width: 100%;
  height: auto;
  bottom: 0%;
}

@media (max-width: 768px) {
  #threat .decorations .blue-coral {
    left: 0;
    height: 18rem;
    top: 30%;
  }

  #threat .decorations .purple-coral {
    right: 15%;
    height: 12rem;
    top: 37%;
  }

  #threat .decorations .mission-coral-right {
    right: 15%;
    height: 14rem;
    top: 11%;
  }
}

@media (max-width: 520px) {
  #about .decorations .center-coral {
    object-fit: cover;
    width: auto;
    height: auto;
  }

  #about h1 {
    font-size: 80px;
    width: 20rem;
  }

  #learn-step {
    padding-top: 25%;
  }

  #learn-step .wrapper {
    overflow: hidden;
    margin-left: 1rem;
    margin-right: 1rem;
  }

  #learn-step .decorations .bg-bottom {
    object-fit: cover;
    width: auto;
    height: auto;
  }

  #threat .decorations .blue-coral {
    height: 18rem;
    left: -35%;
    top: 25%;
  }

  #threat .decorations .purple-coral {
    right: -12%;
    height: 12rem;
    top: 37%;
  }

  #threat .decorations .mission-coral-right {
    right: -12%;
    height: 14rem;
    top: 0%;
  }

  #explore-more .decorations .center-coral {
    object-fit: cover;
    width: auto;
    height: auto;
  }
  #threat .wrapper .element-2 {
    padding-top: 50%;
  }
}
