.dot-benefit-list-section {
  background-color: #270648;
  padding-top: 80px;
  padding-bottom: 160px;
  color: #ffffff;
}

.dot-benefit-list-section.bg-white {
  background-color: #ffffff;
}
.dot-benefit-list-section.black {
  color: #270648;
  .benefit-text {
    color: #270648;
  }
}

.benefit-list-title {
  font-size: 65px;
  line-height: 92px;
  font-weight: 600;
  text-align: center;
  max-width: 1170px;
  margin: 0 auto 30px;
  text-wrap: auto;
}

.benefit-list-description {
  font-style: normal;
  font-weight: 400;
  margin: 0 auto 100px;
  max-width: 990px;
  text-align: center;
  font-size: 25px;
}

.benefits-grid {
  display: grid;
  gap: 50px 40px;
  grid-template-columns: repeat(4, 1fr);
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: 1170px;
  margin: 0 auto;
}

.benefit-item {
  align-items: center;
  display: flex;
  flex: 1;
  flex-direction: row;
  font-feature-settings: "liga" off, "clig" off;
  font-size: 24px;
  font-weight: 700;
  gap: 13px;
  line-height: 31px;
  margin: 0;
  min-width: 200px;
  text-decoration: none;
}

.benefit-icon-wrapper {
  align-items: center;
  background-image: linear-gradient(
    274deg,
    #270648 -11.82%,
    #7d32c7 62.15%,
    #ede3f8 117%
  );
  border-radius: 50%;
  display: flex;
  height: 52px;
  justify-content: center;
  width: 52px;
  min-width: 52px;
  transition: all 0.5s ease;
}

.benefit-icon {
  display: block;
  height: auto;
  max-width: 100%;
  transition: all 0.5s ease;
}

.benefit-text {
  font-feature-settings: "liga" off, "clig" off;
  font-size: 24px;
  font-weight: 700;
  line-height: 31px;
  text-decoration: none;
  color: #fff;
  transition: all 0.3s ease;
}

a.benefit-item:hover .benefit-text {
  opacity: 0.8;
}
a.benefit-item:hover .benefit-icon {
  transform: scale(1.2);
  opacity: 0.8;
}

@media screen and (max-width: 980px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

@media screen and (max-width: 680px) {
  .benefits-grid {
    grid-template-columns: repeat(1, 1fr);
    gap: 30px;
  }

  .benefit-list-title {
    font-size: 40px;
    line-height: 50px;
  }

  .benefit-text {
    font-size: 24px;
    font-weight: 700;
    line-height: 31px;
  }
}
