.services {
  display: flex;
  flex-direction: column;
}

#services > p {
  font-size: 2rem;
}

.services__title {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 5rem;
}

.services__three-block {
  display: flex;
  flex-direction: row;
  gap: 7rem;
  margin-bottom: 5rem;
}

.services__three-block-elem {
  width: 34rem;
  height: 47rem;
  border-radius: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: white;
  -webkit-box-shadow: 5px 5px 15px 7px rgba(153, 153, 153, 0.49);
  -moz-box-shadow: 5px 5px 15px 7px rgba(153, 153, 153, 0.49);
  box-shadow: 5px 5px 15px 7px rgba(153, 153, 153, 0.49);
}

.services__three-block-elem:hover {
  transform: scale(1.05);
  transition: 0.4s ease-in-out;
}

.services__three-block-elem-title {
  margin-top: 8.5rem;
  font-weight: 800;
  color: white;
  font-size: 3.2rem;
  text-align: center;
}

.services__three-block-elem-text {
  font-size: 1.5rem;
  text-align: center;
  font-weight: 500;
  width: 30rem;
  margin-top: 4rem;
  font-weight: 700;
}

.services__last-block {
  display: flex;
  flex-direction: row;
  gap: 22rem;
}

.services__last-block-elem {
  width: 47rem;
  height: 37rem;
  border-radius: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.5rem;
  -webkit-box-shadow: 5px 5px 15px 7px rgba(153, 153, 153, 0.49);
  -moz-box-shadow: 5px 5px 15px 7px rgba(153, 153, 153, 0.49);
  box-shadow: 5px 5px 15px 7px rgba(153, 153, 153, 0.49);
  color: white;
}

.services__last-block-elem:hover {
  transform: scale(1.05);
  transition: 0.4s ease-in-out;
}

.services__last-block-elem-title {
  font-weight: 800;
  color: white;
  font-size: 1.8rem;
  text-align: center;
}

.services__last-block-elem-text {
  font-size: 1.7rem;
  color: white;
  font-weight: 500;
  width: 40rem;
}

@media (max-width: 1000px) {
  #services > p {
    font-size: 18px;
  }

  .services__three-block {
    flex-direction: column;
    align-items: center;
  }

  .services__three-block-elem {
    width: 45rem;
    height: 60rem;
  }

  .services__three-block-elem-title {
    font-size: 4.2rem;
  }

  .services__three-block-elem-text {
    font-size: 2.3rem;
  }

  .services__last-block {
    flex-direction: column;
    align-items: center;
    gap: 7rem;
  }

  .services__last-block-elem {
    width: 45rem;
    height: 60rem;
  }
}
