.section-points {
  padding-inline: max(50px, 50% - 600px);
  padding-block: 64px;
  background-color: #ededed;
}
.section-points > h2 {
  color: #505050;
  font-size: 42px;
  font-weight: 400;
  text-align: center;
}
.section-points > h2 strong {
  color: #0078d4;
  font-weight: 400;
}
.section-points .points {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  margin-block: 40px;
}
.section-points .points .point {
  flex-basis: max(300px, 50% - 20px);
  flex-shrink: 0;
}
.section-points .points .point h3 {
  margin-block: 16px;
  color: #0078d4;
  font-size: 34px;
  text-align: center;
}
.section-points .points .point p {
  margin-block: 0;
  font-size: 20px;
  text-align: center;
}
.section-points .links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-block: 20px;
}
.section-points .links a {
  transition: all 0.3s;
}
.section-points .links a:hover {
  opacity: 0.5;
}
.section-points .links a img {
  display: block;
}
.section-points .box-award {
  margin-block: 80px 60px;
  background-color: #fff;
}
.section-points .box-award > h2 {
  margin: 0;
  padding: 0.5em;
  background-color: #008045;
  color: #fff;
  font-size: 28px;
  text-align: center;
  line-height: 1.6;
}
.section-points .box-award > .award-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  padding: 20px;
}
.section-points .box-award > .award-inner .image {
  flex-basis: max(400px, 45% - 10px);
  flex-shrink: 0;
}
.section-points .box-award > .award-inner .image img {
  display: block;
  margin-inline: auto;
}
.section-points .box-award > .award-inner .info {
  flex-basis: max(500px, 55% - 10px);
  flex-shrink: 0;
}
.section-points .box-award > .award-inner .info p {
  font-size: 20px;
}
.section-points .box-award > .award-inner .info ul {
  list-style: none;
  counter-reset: section;
  margin: 16px 0 0;
  padding: 0;
}
.section-points .box-award > .award-inner .info ul li {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 20px;
}
.section-points .box-award > .award-inner .info ul li::before {
  counter-increment: section;
  content: counter(section);
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 10em;
  background-color: #ff0000;
  color: #fff;
}

@media (min-width: 769px) {
  .sm {
    display: none;
  }
}

@media (max-width: 1280px) {
  .lg {
    display: none;
  }
}

@media (max-width: 1024px) {
  .md {
    display: none;
  }
  .section-points .points .point h3 {
    font-size: 28px;
  }
}

@media (max-width: 768px) {
  .section-points {
    padding-inline: 20px;
    padding-block: 32px;
  }
  .section-points > h2 {
    font-size: 30px;
  }
  .section-points .points .point h3 {
    font-size: 24px;
  }
  .section-points .points .point p {
    font-size: 18px;
    text-align: left;
  }
  .section-points .points .point p br {
    display: none;
  }
  .section-points .box-award > h2 {
    font-size: 20px;
  }
  .section-points .box-award > .award-inner {
    flex-direction: column;
  }
  .section-points .box-award > .award-inner .info p {
    font-size: 16px;
  }
  .section-points .box-award > .award-inner .info ul li {
    font-size: 16px;
  }
}

/*# sourceMappingURL=style.css.map */