.activities {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  padding: 30px;
  align-items: center;
}

.activities .img-wrapper {
  flex: 1 1 calc(50% - 30px);
  position: relative;
}
.activities .img-wrapper img {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  width: 420px;
  aspect-ratio: 1/1;
  border-radius: 50%;
}
.activities .text-wrapper {
  flex: 1 1 calc(50% - 30px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  justify-content: center;
  align-content: center;
  height: 400px;
  margin: 0;
  padding: 0 3%;
}
.activities .text-wrapper p {
  font-size: 1.1rem;
  line-height: 1.6rem;
  font-weight: 400;
}
.activities .text-wrapper h1 {
  font-size: 3rem;
  margin-bottom: 30px;
  color: var(--logoBlue);
}

.on-our-toes {
  margin-top: 30px;
  padding: 10px;
  margin-bottom: 40px;
}
.on-our-toes h2 {
  text-align: center;
  font-size: 3rem;
  color: var(--logoBlue);
  margin-bottom: 50px;
}

.on-our-toes-wrapper {
  display: flex;
  justify-content: space-evenly;
}

.left-text-wrapper,
.right-text-wrapper {
  flex-basis: 32%;
}
.on-our-toes-wrapper .img-wrapper {
  flex-basis: 34%;
  text-align: center;
}

.on-our-toes-wrapper .img-wrapper img {
  width: 300px;
  border-radius: 50%;
}

.left-text-wrapper,
.right-text-wrapper {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
}

.left-text-wrapper h3,
.right-text-wrapper h3 {
  color: var(--logoBlue);
  font-size: 1.9rem;
}

.happy-people {
  text-align: center;
  margin-bottom: 30px;
}

.happy-people h3 {
  font-size: 3rem;
  color: var(--logoBlue);
  margin-bottom: 35px;
}

.happy-people p {
  width: 80%;
  margin: 0 auto 35px auto;
}

.reviews {
  margin-bottom: 40px;
}

.reviews h3 {
  text-align: center;
  font-size: 3rem;
  color: var(--logoBlue);
  margin-bottom: 30px;
  margin-top: 50px;
}

@media (max-width: 800px) {
  .activities {
    display: block;
  }

  .activities .text-wrapper {
    margin-top: 30px;
    display: block;
    text-align: center;
  }

  .activities .text-wrapper h1 {
    text-align: center;
  }
  .activities .img-wrapper img {
    width: 300px;
  }

  .on-our-toes-wrapper {
    display: block;
  }

  .on-our-toes-wrapper .left-text-wrapper .text,
  .on-our-toes-wrapper .right-text-wrapper .text {
    width: 85%;
    margin-left: auto;
    margin-right: auto;
  }

  .on-our-toes-wrapper .img-wrapper {
    text-align: center;
  }
  .on-our-toes-wrapper .img-wrapper img {
    width: 50%;
  }
}
