.why {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
}
.why::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  background-color: var(--innerBg);
  width: 100%;
  height: 100%;
  filter: blur(64px);
  border-radius: var(--brad);
}
.why > h2,
.why > p {
  text-align: center;
}
.why > div:last-child {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.why > div:last-child > div {
  flex: 0 0 40%;
  display: flex;
  flex-direction: column-reverse;
  align-items: start;
  justify-content: start;
  padding: 25px 30px;
  background-color: var(--innerBg2);
  border-radius: var(--brad);
}
/* .why > div:last-child > div:last-child {
  flex: 0 0 100%;
} */
.why > div:last-child > div:nth-child(3),
.why > div:last-child > div:nth-child(4) {
  flex: 0 0 40%;
}
.why > div:last-child > div > div:first-child {
  height: 100%;
}
.why > div:last-child > div > div > span:first-child {
  color: var(--textMain) !important;
  font-family: 'Poppins', sans-serif;
  font-weight: 700 !important;
  font-size: 30px;
  margin-bottom: 0;
}
.why > div:last-child > div > div > p:last-child {
  margin-top: auto;
  margin-bottom: 0;
  color: var(--textMain) !important;
}
.why > div:last-child > div > div:last-child {
  background-color: var(--white30);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 100px;
}
.why > div:last-child > div > div:last-child img {
  height: 100%;
  object-fit: contain;
  z-index: 10;
}

@media (max-width: 768px) {
  .why {
    flex-direction: column;
  }
  .why > div:last-child > div {
    flex: 1 1 100% !important;
  }
  .why > div:last-child > div > div:last-child {
    max-width: 80px;
    min-width: 80px;
    max-height: 80px;
    min-height: 80px;
  }

  .why > div:last-child > div > div > span:first-child {
    font-size: 22px;
  }
}
