.c-key-outcomes {
  position: relative;
  z-index: 0;
}

.c-key-outcomes__wrapper {
  position: relative;
}

.c-key-outcomes h2 {
  margin-bottom: 48px;
  margin-bottom: 3rem;
}

@media (min-width: 992px) {
  .c-key-outcomes h2 {
    margin-bottom: 96px;
    margin-bottom: 6rem;
  }
}

.c-key-outcomes__items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  position: relative;
  z-index: 1;
}

@media (min-width: 992px) {
  .c-key-outcomes__items {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    grid-auto-flow: column;
  }
}

.c-key-outcomes__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: flex-start;
  max-width: 160px;
}

@media (min-width: 992px) {
  .c-key-outcomes__item {
    justify-content: space-between;
    max-width: unset;
  }
}

.c-key-outcomes__item-icon {
  margin-bottom: 24px;
  margin-bottom: 1.5rem;
  transition: transform .3s ease-out;
  min-height: 75px;
}

@media (min-width: 992px) {
  .c-key-outcomes__item-icon {
    min-height: auto;
  }
}

.c-key-outcomes__item-icon svg {
  max-height: 75px;
}

@media (min-width: 992px) {
  .c-key-outcomes__item-icon svg {
    max-height: auto;
  }
}

.c-key-outcomes__item-label {
  max-width: 200px;
}

.c-key-outcomes__item-dot {
  display: none;
}

@media (min-width: 992px) {
  .c-key-outcomes__item-dot {
    margin-top: 24px;
    margin-top: 1.5rem;
    background-color: #F3FAF6;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .c-key-outcomes__item-dot span {
    display: block;
    width: 20px;
    height: 20px;
    background-color: #283B8D;
    border-radius: 50%;
    transition: background-color .3s ease-out;
  }
}

.c-key-outcomes__item:hover .c-key-outcomes__item-icon {
  transform: scale(1.05);
}

.c-key-outcomes__item:hover .c-key-outcomes__item-dot span {
  background-color: #11A44F;
}

.c-key-outcomes__line {
  display: none;
}

@media (min-width: 992px) {
  .c-key-outcomes__line {
    display: block;
    width: calc(100% - 300px);
    height: 2px;
    background-color: #B6B6B6;
    position: relative;
    margin: -20px auto 0 auto;
    z-index: 0;
  }
}

.c-key-outcomes__graphic {
  position: absolute;
  bottom: -700px;
  left: 0;
}

