._box2-wrapper {
  border-radius: 36px;
  background-color: #effaff;
  display: flex;
  flex-direction: column;
  gap: 60px;
  padding: 40px 20px 20px 20px;
  color: #48687F;
}

._box2-header {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  gap: 30px;
}

._box2-header__title {
  max-width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

._box2-header__title h4 {
  color: #0D5B76;
}

._box2-header__title h3 {
  font-size: clamp(30px, 4vw, 40px);
}

._box2-header__description {
  max-width: 100%;
  text-align: left;
  font-size: 16px;
}

._box2-list {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 30px
}

._box2-item {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background-color: #fff;
  border-radius: 40px;
  padding: 30px;
  overflow: hidden;
  position: relative;
  transition: background-color 0.5s ease;
}

._box2-item:hover {
  background-color: #0D5B76;
  color: #fff;
}

._box2-item:hover ._box2-item__description {
  color: #fff;
}

._box2-item:hover ._box2-item__icon {
  scale: 1.2;
  background-color: #fff;
  color: #0D5B76;
}

._box2-item__icon {
  font-size: 30px;
  background-color: var(--color-primary);
  align-self: start;
  width: 68px;
  height: 68px;
  border-radius: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--color-clean);
  transition: .2s all ease-in-out;
}

._box2-item__title {
  font-weight: 500;
  font-size: 22px;
}

._box2-item__description {
  font-size: 16px;
}

@media(min-width:1170px) {
  ._box2-header {
    flex-direction: row;
  }

  ._box2-wrapper {
    padding: 40px;
  }

  ._box2-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }

  ._box2-header__title {
    width: 100%;
    text-align: left;
  }

  ._box2-header__description {
    max-width: 300px;
    text-align: right;
  }

}