.main-container {
  margin-top: 0px;
}

.category-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background-color: #fdf7bf;
  color: #461011;
  background: linear-gradient(
    135deg,
    aliceblue 0%,
    white 50%,
    #fdf7bf 100%
  );
}

.category-container-title {
  text-align: center;
  font-size: 34px;
  padding: 0;
  margin: 0;
}

.category-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex-wrap: wrap;
}

/* ---- Сервисы ---- */
.categories-set {
  background-color: #e8fbff;
}

.goToTop {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 40px;
  line-height: 1;
  font-weight: 200;
  position: fixed;
  right: 2%;
  bottom: 1%;
  height: 40px;
  width: 40px;
  border-radius: 50%;
  padding: 4px;
  background-color: #00000011;
  color: white;
  text-decoration: 0;
  z-index: 500;
}

.category-title {
  text-align: center;
  margin: 0;
  padding: 16px 8px 16px 8px;
}

.category-description {
  padding: 0 24px;
  font-size: 20px;
}

.service-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding: 24px;
  padding-bottom: 56px;
}

@media (min-width: 769px) {
  body {
    margin: 0;
    padding: 0;
    overflow: hidden;
  }

  .main-container {
    margin-top: 0;
    height: calc(100dvh - 64px);
    overflow-y: auto;
  }

  .category-container {
    padding: 24px;
  }

  .category-container-title {
    font-size: 54px;
  }

  .category-list {
    display: grid;
    grid-template-columns: repeat(
      auto-fit,
      minmax(clamp(200px, 30vw, 300px), 1fr)
    );
    gap: 16px;
    width: fit-content;
    max-width: 80%;
  }

  .category-title {
    text-align: center;
  }

  .service-list {
    flex-direction: row;
    flex-wrap: wrap;
  }
}
