.nursery-care {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  padding: 30px;
}

.nursery-care .image-wrapper {
  flex: 1 1 calc(50% - 30px);
  position: relative;
}
.nursery-care .image-wrapper img {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  width: 420px;
  aspect-ratio: 1/1;
  border-radius: 50%;
}

.nursery-care .text-wrapper {
  flex: 1 1 calc(50% - 30px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 400px;
}
.nursery-care .text-wrapper h1 {
  font-size: 3rem;
  color: var(--logoBrown);
}

.on-our-toes {
  margin-top: 30px;
  padding: 10px;
}
.on-our-toes h2 {
  text-align: center;
  font-size: 3rem;
  color: var(--stndBrown);
  margin-bottom: 35px;
}

.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%;

  display: flex;
  align-items: center;
  justify-content: center;
}

.on-our-toes-wrapper .img-wrapper img {
  width: 80%;
  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(--stndBrown);
  font-size: 1.9rem;
}

.standards-of-care {
  margin-top: 60px;
  text-align: center;
  padding-bottom: 30px;
}

.standards-of-care h3 {
  font-size: 3rem;
  color: var(--logoBrown);
  margin-bottom: 40px;
}
.standards-of-care p {
  width: 80%;
  margin-left: auto;
  margin-right: auto;
}

.happy-people {
  background-color: #f4f4f4;
  padding: 30px 0;
}
.happy-people .text-and-image {
  margin-top: 50px;
  min-height: 600px;
}

.happy-people .text-wrapper h3 {
  font-size: 3rem;
  color: var(--logoBrown);
}
.happy-people .img-wrapper {
  background-image: url(media/activities/happy-children.png);
  background-size: cover;
}

.happy-people .text-wrapper {
  padding: 0px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.reviews {
  margin-bottom: 40px;
  padding-bottom: 30px;
}

.reviews h3 {
  text-align: center;
  font-size: 3rem;
  color: var(--logoBrown);
  margin-bottom: 30px;
  margin-top: 50px;
}

@media (max-width: 920px) {
  .nursery-care {
    display: block;
    padding-left: 30px;
    padding-right: 30px;
  }

  .nursery-care .image-wrapper img {
    width: 300px;
  }

  .nursery-care .text-wrapper {
    margin-top: 30px;
    display: block;
  }

  .nursery-care .text-wrapper h1 {
    text-align: center;
  }
  .nursery-care .text-wrapper p {
    text-align: center;
  }
  .nursery-care .text-wrapper .link-wrapper a {
    display: block;
  }
}

@media (max-width: 800px) {
  .happy-people .link-wrapper a {
    display: block;
  }

  .happy-people .text-wrapper {
    text-align: center;
  }
}
@media (max-width: 700px) {
  .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: 60%;
  }

  .standards-of-care {
    padding: 0 30px;
  }

  .standards-of-care p {
    width: 100%;
  }

  .standards-of-care a {
    display: block;
    margin-top: 40px;
  }
}
