@charset "UTF-8";

@media screen and (max-width: 767px) {
  :root {
    --width-full: 100%;
    --width-content: 93%;
  }
}

@media screen and (min-width: 768px) {
  :root {
    --width-full: min(100%, 1280px);
    --width-content: min(77.7%, 1120px);
  }
}

.w2_patterns_inner {
  width: 6050px;
  background-image: url(/assets/img/repeat_new/partner_scroll.webp);
}

.w2_firstview .w2_fv_text_container h1 b:nth-child(1) {
  padding-right: 8px;
}

.w2_firstview .w2_fv_text_container h1 b:nth-child(2) {
  padding-left: 5px;
}

@media screen and (max-width: 767px) {
  .w2_firstview .w2_fv_text_container h1 b:nth-child(1) {
    padding-right: 0;
  }
}

.service_other_lists {
  width: var(--width-content);
  margin: 0 auto;
  text-align: center;
  margin-top: 15px;
}

.service_other_lists h4 {
  font-size: 20px;
  font-weight: 500;
}

.service_other_lists ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-top: 30px;
}

.service_other_lists ul li {
  width: 100%;
  position: relative;
  background: #fff;
  text-align: center;
  padding: 15px;
  box-shadow: 0 10px 30px rgba(51, 51, 51, .15);
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  font-size: 15px;
  overflow: hidden;
  border-radius: 5px;
  font-weight: 500;
  line-height: normal;
  height: 65px;
}

.service_other_lists ul li::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--gradient-blue);
}

@media screen and (min-width: 768px) {
  .service_other_lists ul {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (min-width: 1024px) {
  .service_other_lists ul {
    grid-template-columns: repeat(4, 1fr);
  }
}

.w2_plan .w2_plan_list_item:nth-child(1) .w2_plan_list-wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
}