/* Scrollbar color */
body::-webkit-scrollbar-thumb {
  background: linear-gradient(#00b67a, #34dc84);
}
/* End of scrollbar */

/* About us */
.about {
  width: 100%;
  height: 100%;
  margin: 20rem 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-wrapper {
  margin: 0 10rem;
  padding: 12rem;
  border-radius: 1rem;
  box-shadow: 0 2rem 6rem rgba(130, 162, 255, 0.3);
}

.about h1 {
  text-align: center;
  font-size: 6rem;
  font-weight: bold;
  font-family: "Mooli", cursive;
  color: #393453;
  margin-bottom: 8rem;
  text-transform: uppercase;
  letter-spacing: 0.2rem;
}

.about-content {
  max-width: 120rem;
  display: grid;
  column-gap: 6.4rem;
  row-gap: 9.6rem;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  position: relative;
  z-index: 3;
}

.about-content h3 {
  display: inline-block;
  font-size: 3rem;
  font-family: "Croissant One", cursive;
  color: #5e728f;
  margin-bottom: 1.8rem;
}

.about-content p {
  font-size: 1.8rem;
  color: #889cb9;
  line-height: 1.8;
}

/* .story-content {
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
} */

.about-img-box {
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-img {
  width: 100%;
  height: auto;
  border-radius: 5rem;
  box-shadow: 0 1rem 4rem rgba(75, 119, 225, 0.4);
}

.about-bg-1 {
  width: 80rem;
  height: 80rem;
  position: absolute;
  background: linear-gradient(to right, transparent, transparent, #ff43a7);
  top: 70%;
  right: 5%;
  opacity: 0.2;
  transform: rotate(-10deg);
  border-radius: 5rem;
}

.about-bg-2 {
  position: absolute;
  width: 80rem;
  height: 80rem;
  background: linear-gradient(to left, transparent, transparent, #74b5ff);
  top: 70%;
  left: 5%;
  border-radius: 5rem;
  opacity: 0.2;
  transform: rotate(-10deg);
}
/* End about us */
