.type {
  background: #187A41;
  padding: 70px 40px 80px;
}

@media screen and (max-width: 768px) {
  .type {
    padding: 16vw 0;
  }
}

.type__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.type .section__title {
  color: #fff;
}

@media screen and (max-width: 768px) {
  .type .section__title {
    padding: 0 6.6666666667vw !important;
  }
}

.type__tabs {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 20px;
  margin-bottom: 25px;
}

.type__tabsWrap {
  width: 100%;
}

@media screen and (max-width: 768px) {
  .type__tabsWrap {
    overflow-x: auto;
    -ms-overflow-style: none;
  }

  .type__tabsWrap::-webkit-scrollbar {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  .type__tabsWrap {
    padding: 0 6.6666666667vw;
  }
}

@media screen and (max-width: 768px) {
  .type__tabs {
    margin-top: 5.3333333333vw;
    margin-bottom: 8vw;
    width: -moz-max-content;
    width: max-content;
  }
}

@media screen and (max-width: 768px) {
  .type__tabs {
    display: flex;
    gap: 12px;
  }
}

.type__tab {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  padding-bottom: 15px;
  border-bottom: 1px solid #fff;
  opacity: 0.6;
  cursor: pointer;
}

@media screen and (max-width: 768px) {
  .type__tab {
    font-size: 14px;
    width: 100px;
  }
}

.type__tab.active {
  border-bottom: 3px solid #fff;
  opacity: 1;
  margin-bottom: -2px;
}

.type__contents {
  display: none;
}

@media screen and (max-width: 768px) {
  .type__contents {
    padding: 0 6.6666666667vw;
  }
}

.type__contents.show {
  display: block;
}

.type__contents ul {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
  width: 100% !important;
  margin: 0 !important;
}

@media screen and (max-width: 768px) {
  .type__contents ul {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 15px;
  }
}

.type__contents ul li a {
  display: block;
  background: #fff;
  text-align: center;
  font-size: 16px;
  font-weight: bold;
  color: #187A41;
  border-radius: 60px;
  padding: 18px 0;
}

@media screen and (max-width: 768px) {
  .type__contents ul li a {
    font-size: 14px;
    padding: 14px 0;
  }
}