.facty {
  max-width: var(--xl-width);
  margin: var(--xl-gap-y) auto;
  padding: 0 var(--xl-gap-x);
}

.facty__title {
  margin: 0 0 60px 0;
}

.facty__items {
  display: grid;
  gap: 50px 25px;
  @media (min-width: 769px) {
    grid-template-columns: repeat(2, 1fr);
  }
}

.facty__items--threesome {
  @media (min-width: 1025px) {
    grid-template-columns: repeat(3, 1fr);
  }
}

.facty__item__headline {
  font-weight: 600;
  margin: 0 0 20px 0;
  color: var(--teal);
  padding: 0 0 0 25px;
  position: relative;
}

.facty__item__headline::before {
  content: '';
  width: 9px;
  height: 9px;
  transform: rotate(45deg);
  display: inline-block;
  margin: 0 5px;
  transition: .3s ease-in-out;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%) rotate(45deg);
}

.facty__item__headline--color_01::before {
  background-color: var(--lime);
}

.facty__item__headline--color_02::before {
  background-color: #91BEA0;
}

.facty__item__headline--color_03::before {
  background-color: var(--slate);
}

.facty__item__headline--color_04::before {
  background-color: #E73F0C;
}

.facty__item__headline--color_05::before {
  background-color: #9650EB;
}

.facty__item__link {
  color: var(--teal);
}

.facty__btn {
  text-align: center;
  margin: 70px 0 0 0;
}