.Hero {
  position: relative;
  padding: 8.75rem 0;
  background-image: url("../images/head/img_award.webp");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.Hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.1);
}

.Hero__heading {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #fff;
  font-size: 3.125rem;
  font-weight: bold;
}

.Award__section {
  margin-top: 3rem;
}

.Award__heading {
  position: relative;
  padding-left: 1.875rem;
  padding-bottom: 1.5rem;
  margin-bottom: 1.5rem;
  border-bottom: 2px solid #eff7f9;
  font-size: 2.1875rem;
  font-weight: bold;
}

.Award__heading::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 80%;
  background-color: #109ae4;
}

.Award__list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-left: 2rem;
  list-style: disc;
}

.Award__inner {
  padding: 0 1rem;
}

.Award__sub-section {
  margin-top: 3rem;
}

.Award__sub-heading.--target::before {
  content: "";
  display: inline-block;
  width: 0.75rem;
  height: 1rem;
  margin-right: 0.5rem;
  background-color: #131e3e;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.Award__sub-heading.--method::before {
  content: "";
  display: inline-block;
  width: 1rem;
  height: 1rem;
  margin-right: 0.5rem;
  background-color: #131e3e;
  border-radius: 50px;
}

.Award__sub-inner {
  margin-top: 1rem;
  padding: 0 2rem;
}

.Award__tab-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  text-align: center;
}

.Award__tab-item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background-color: #eee;
  cursor: pointer;
}

.Award__tab-item:not(:first-of-type)::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(-50%, -50%);
  width: 1px;
  height: 50%;
  background-color: #ccc;
}

.Award__tab-item.--active {
  background: rgb(0, 180, 228);
  background: linear-gradient(
    90deg,
    rgba(0, 180, 228, 0.8) 0%,
    rgba(10, 129, 239, 0.8) 50%,
    rgba(7, 63, 216, 0.8) 100%
  );
  color: #fff;
}

.Award__tab-item.--active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  transform: translate(0, 100%);
  z-index: 2;
  width: 100%;
  height: 20px;
  background: rgb(0, 180, 228);
  background: linear-gradient(
    90deg,
    rgba(0, 180, 228, 0.8) 0%,
    rgba(10, 129, 239, 0.8) 50%,
    rgba(7, 63, 216, 0.8) 100%
  );
  clip-path: polygon(50% 100%, 40% 0, 60% 0);
}

.Award__tab-content {
  display: none;
}

.Award__tab-content.--active {
  display: block;
}

@media (max-width: 768px) {
  .Award__heading {
    margin-bottom: 1rem;
    padding: 0 0 1rem 1.5rem;
    font-size: 1.75rem;
  }

  .Award__tab-item {
    font-size: 0.75rem;
  }
}

@media (max-width: 425px) {
  .Award__tab-item {
    padding: 0.5rem;
  }
}
