.why-it-matters {
  padding: 80px 60px;
  background: #fff;
}

.why-it-matters .wrapper {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.why-it-matters .top-text {
  display: flex;
  gap: 32px;
  justify-content: space-between;
  align-items: center;
}

.why-it-matters .top-text h2 {
  width: 74%;
  border-bottom: solid 1px #244545;
  padding-bottom: 28px;
}

.why-it-matters .top-text .sub-title {
  width: 26%;
}

.why-it-matters .top-text .sub-title p {
  color: #3C3C3C;
  margin: 0;
}

.why-it-matters .bottom-list {
  display: flex;
  gap: 40px 20px;
  flex-wrap: wrap;
}

.why-it-matters .bottom-list .bottom-list-item {
  background: #00816D;
  width: 100%;
  max-width: calc(100% / 3 - 14px);
  position: relative;
  padding: 30px 40px;
}

.why-it-matters .bottom-list .bottom-list-item h3 {
  color: #FFF;
  display: flex;
  flex-direction: column;
  gap: 7px;
  width: 100%;
  max-width: 244px;
  margin-bottom: 14px;
}

.why-it-matters .bottom-list .bottom-list-item p {
  width: 244px;
  color: #fff;
  position: relative;
  z-index: 1;
}

.why-it-matters .bottom-list .icon-wrapper {
  position: absolute;
  right: 0;
  bottom: 0;
  display: flex;
}

@media screen and (max-width: 1024px) {
  .why-it-matters .top-text {
    align-items: flex-start;
    flex-direction: column;
    gap: 40px;
  }

  .why-it-matters .top-text h2 {
    width: 100%;
    border-bottom: none;
    padding-bottom: 0;
  }

  .why-it-matters .top-text .sub-title {
    width: 100%;
  }
  .why-it-matters .bottom-list .bottom-list-item {
    max-width: calc(100% / 2 - 14px);
  }
}


@media screen and (max-width: 767px) {
  .why-it-matters {
    padding: 60px 20px;
  }

  .why-it-matters .bottom-list .bottom-list-item {
    max-width: 100%;
}
.why-it-matters .bottom-list {
  gap: 20px;
}
}