.block-sphere {
  padding: 5em 2em;
  max-width: 75rem;
  width: auto;
  margin: auto;
  font-size: 1rem;
  list-style: none;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-lines: multiple;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  justify-content: center;
  gap: 2rem;
}
.block-sphere-item {
  position: relative;
  -webkit-box-flex: 0;
  flex-grow: 0;
  flex-shrink: 0;
  flex-basis: 22.5rem;
  height: 22.5rem;
  overflow: hidden;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  flex-direction: column;
  border-radius: 50%;
  background-color: #ffffff;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  -webkit-transition: 0.5s;
  transition: 0.5s;
  transform: -webkit- scale(1);
  transform: scale(1);
}
.block-sphere-item:hover {
  transform: -webkit- scale(1.05);
  transform: scale(1.05);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
}
.block-sphere-item-image {
  position: relative;
  -webkit-box-flex: 1;
  flex-grow: 1;
  flex-shrink: 1;
  flex-basis: 30%;
  margin-bottom: -1.25rem;
}
.block-sphere-item-image__img {
  display: block;
  position: absolute;
  top: 0rem;
  right: 0rem;
  bottom: 0rem;
  left: 0rem;
  inset: 0rem;
  width: 100%;
  height: 100%;
  object-position: center;
  object-fit: cover;
}
.block-sphere-item-texts {
  position: relative;
  -webkit-box-flex: 1;
  flex-grow: 1;
  flex-shrink: 1;
  flex-basis: 30%;
  padding: 1em;
  background-color: var(--color);
  text-align: center;
  color: #fff;
}
.block-sphere-item-texts__alt {
  display: block;
  width: fit-content;
  height: fit-content;
  margin: -1.5em auto 0rem;
  padding: 0.25em 1em;
  background-color: #ffffff;
  border-style: solid;
  border-width: 0.25rem;
  border-radius: 1em;
  font-size: 1.25rem;
  line-height: 1em;
  font-weight: 700;
  font-family: Lato, sans-serif;
  color: var(--color);
  word-break: keep-all;
}
.block-sphere-item-texts__title {
  margin: 0.5em auto;
  text-align: center;
  font-size: 1.5rem;
  line-height: 1em;
  color: #fff;
}
.block-sphere-item-texts__text {
  padding: 0rem 2em;
  font-size: 0.6875rem;
  word-break: keep-all;
}
.block-sphere-item-link {
  display: block;
  position: absolute;
  top: 0rem;
  right: 0rem;
  bottom: 0rem;
  left: 0rem;
  inset: 0rem;
  cursor: pointer;
}
/*# sourceMappingURL=./style.css.map */