/* Variable.scss */
/* Style.css */
/* --- SWIPER STYLE BLOCK */
.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  font-size: 18px;
  background-color: rgba(255, 255, 255, 0.01);
  display: block;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
  position: relative;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.swiper .swiper-pagination {
  position: absolute;
  z-index: 3;
  bottom: 2vh !important;
}

.swiper .swiper-pagination-bullet {
  width: 6px;
  height: 6px;
  border-radius: 100%;
  background-color: #00d5ff;
}

.swiper .swiper-scrollbar {
  height: 2px !important;
  position: relative;
  left: 50% !important;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.swiper .swiper-scrollbar-drag {
  background-color: rgba(87, 255, 241, 0.8);
  -webkit-box-shadow: 0 0 3px #3dfff8;
          box-shadow: 0 0 3px #3dfff8;
}

/* --- SWIPER STYLE BLOCK END */
.main-slide {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 72px 0;
  position: absolute;
  z-index: 500;
}

@media (max-width: 1400px) {
  .main-slide {
    padding: 64px 0;
  }
}

@media (max-width: 1020px) {
  .main-slide {
    padding: 56px 0;
  }
}

@media (max-width: 768px) {
  .main-slide {
    padding: 48px 0;
  }
}

.main-slide.ent {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.main-slide.per {
  display: none;
}

.main-slide__title {
  position: relative;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  pointer-events: none;
}

.main-slide__title:after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: -1rem;
  left: 0;
  background-color: rgba(255, 255, 255, 0.2);
}

@media (max-width: 768px) {
  .main-slide__title {
    width: 90%;
  }
}

.main-slide__product-icon-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.main-slide__product-icon-wrap.sub {
  width: 90%;
}

.main-slide__product-icon-wrap > img {
  width: 8rem;
  height: 8rem;
  margin-right: 1.5rem;
}

@media (max-width: 1400px) {
  .main-slide__product-icon-wrap > img {
    width: 7rem;
    height: 7rem;
  }
}

@media (max-width: 768px) {
  .main-slide__product-icon-wrap > img {
    width: 6.4rem;
    height: 6.4rem;
  }
}

@media (max-width: 768px) {
  .main-slide__product-icon-wrap {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.main-slide h2,
.main-slide h3,
.main-slide h4 {
  color: #fff;
  word-break: keep-all;
}

.main-slide h2 {
  font-size: 1.125rem;
  font-weight: 500;
  font-family: "Orbitron", sans-serif;
  line-height: 1.6;
  letter-spacing: 1.4px;
  margin-bottom: 0.5rem;
}

@media (max-width: 1020px) {
  .main-slide h2 {
    font-size: 1.125rem;
    font-family: 'Poppins', sans-serif;
  }
}

@media (max-width: 768px) {
  .main-slide h2 {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .main-slide h2 {
    font-size: 0.9375rem;
  }
}

.main-slide h3 {
  font-weight: 700;
  font-size: 2.25rem;
  text-transform: uppercase;
  letter-spacing: -0.2px;
  line-height: 1;
}

@media (max-width: 1400px) {
  .main-slide h3 {
    font-size: 2rem;
  }
}

@media (max-width: 1020px) {
  .main-slide h3 {
    font-size: 1.75rem;
  }
}

@media (max-width: 768px) {
  .main-slide h3 {
    font-size: 1.5rem;
    text-align: left;
  }
}

.main-slide h3 br {
  display: none;
}

.main-slide h3 br.only-in-pc {
  display: block;
}

@media (max-width: 1400px) {
  .main-slide h3 br {
    display: block;
  }
}

.main-slide h4 {
  font-weight: 600;
  font-size: 1.75rem;
  text-transform: uppercase;
  letter-spacing: -0.2px;
  margin-top: 0.5rem;
}

.main-slide h4.ent {
  color: #3dfff8;
}

.main-slide h4.per {
  color: #ffaa49;
}

.main-slide h4.special1 {
  color: #aedd3f;
}

@media (max-width: 1400px) {
  .main-slide h4 {
    font-size: 1.5rem;
  }
}

@media (max-width: 1020px) {
  .main-slide h4 {
    font-size: 1.25rem;
  }
}

@media (max-width: 768px) {
  .main-slide h4 {
    font-size: 1rem;
    text-align: left;
  }
}

.main-slide__box-left {
  width: 50%;
  padding-right: 10%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
}

@media (max-width: 1400px) {
  .main-slide__box-left {
    padding-right: 5%;
    width: 45%;
  }
}

@media (max-width: 768px) {
  .main-slide__box-left {
    width: 100%;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
    -webkit-box-pack: normal;
        -ms-flex-pack: normal;
            justify-content: normal;
    padding-right: 0;
    padding-bottom: 16px;
  }
}

.main-slide__box-right {
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media (max-width: 1400px) {
  .main-slide__box-right {
    width: 55%;
  }
}

@media (max-width: 768px) {
  .main-slide__box-right {
    width: 100%;
    height: 30vh;
    min-height: 148px;
    padding: 1vmax;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: normal;
        -ms-flex-pack: normal;
            justify-content: normal;
    overflow-y: scroll;
  }
  .main-slide__box-right::-webkit-scrollbar {
    width: 4px;
  }
  .main-slide__box-right::-webkit-scrollbar-thumb {
    background-color: #3dfff8;
    border-radius: 4px;
  }
  .main-slide__box-right::-webkit-scrollbar-track {
    background-color: #3dfff996;
    border-radius: 4px;
  }
}

@media (max-width: 768px) {
  .main-slide__box-right {
    height: 25vh;
  }
}

.main-slide__box-right h5 {
  color: #3dfff8;
  font-size: 1.125rem;
  font-weight: 500;
  font-family: "Orbitron", sans-serif;
  letter-spacing: 1px;
}

@media (max-width: 1020px) {
  .main-slide__box-right h5 {
    font-family: 'Poppins', sans-serif;
  }
}

.main-slide__box-right p {
  margin-top: 1rem;
  color: #ffffff;
  font-weight: 300;
  font-size: 0.875rem;
  line-height: 2;
  word-break: keep-all;
}

.main-slide__version-group {
  width: 100%;
  margin-top: 0;
}

@media (max-width: 768px) {
  .main-slide__version-group {
    margin-top: 2rem;
    width: 150px;
  }
}

.main-slide__version-selector {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  opacity: 0.3;
  cursor: pointer;
}

.main-slide__version-selector ~ .main-slide__version-selector {
  margin-top: 0.6rem;
}

.main-slide__version-selector.active {
  opacity: 1;
}

.main-slide__version-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  float: left;
  width: 3.6rem;
  height: 3.6rem;
  border-radius: 100%;
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 2;
  color: #fff;
  opacity: 1;
  -webkit-transition: all 0.3s cubic-bezier(0.16, 0.76, 0.49, 0.95);
  transition: all 0.3s cubic-bezier(0.16, 0.76, 0.49, 0.95);
}

.main-slide__version-btn ~ .main-slide__version-btn {
  margin-top: 0.4rem;
}

.main-slide__version-btn.ent {
  border: 6px solid #3dfff8;
}

.main-slide__version-btn.ent.active {
  -webkit-box-shadow: 0 0 12px #3dfff8;
          box-shadow: 0 0 12px #3dfff8;
}

.main-slide__version-btn.per {
  border: 6px solid #ffaa49;
  -webkit-box-shadow: 0 0 12px #ffaa49;
          box-shadow: 0 0 12px #ffaa49;
}

.main-slide__version-btn.per.active {
  -webkit-box-shadow: 0 0 12px #ffaa49;
          box-shadow: 0 0 12px #ffaa49;
}

@media (max-width: 768px) {
  .main-slide__version-btn {
    width: 3.2rem;
    height: 3.2rem;
    font-size: 1.125rem;
  }
}

.main-slide__version-txt {
  display: inline-block;
  font-weight: 500;
  font-size: 1rem;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0;
  margin-left: 1.2rem;
  white-space: nowrap;
}

.main-slide__btn-group {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 30px;
}

@media (max-width: 768px) {
  .main-slide__btn-group {
    display: none;
  }
}

.main-slide__btn-group.tablet-mobile {
  display: none;
}

@media (max-width: 768px) {
  .main-slide__btn-group.tablet-mobile {
    margin: 1rem auto 1rem;
    width: 90%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.main-slide__btn-group.sub-front-page {
  width: 40%;
  min-width: 360px;
  position: absolute;
  top: 60%;
  -webkit-transform: translateY(0%);
          transform: translateY(0%);
  opacity: 0;
  -webkit-transition: all 1.2s ease-out;
  transition: all 1.2s ease-out;
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}

@media (max-width: 768px) {
  .main-slide__btn-group.sub-front-page {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    min-width: 0;
    width: 100%;
    top: 70%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.main-slide__btn {
  width: 48%;
  color: #ffffff;
  text-align: center;
  white-space: nowrap;
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 3.6;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  position: relative;
  -webkit-transition: all 0.3s cubic-bezier(0.16, 0.76, 0.49, 0.95);
  transition: all 0.3s cubic-bezier(0.16, 0.76, 0.49, 0.95);
}

.main-slide__btn:after {
  content: "";
  display: block;
  width: 50%;
  height: 1px;
  background: -webkit-gradient(linear, right top, left top, from(transparent), color-stop(50%, #3dfff8), to(transparent));
  background: linear-gradient(to left, transparent 0%, #3dfff8 50%, transparent 100%);
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-transition: all 0.3s cubic-bezier(0.16, 0.76, 0.49, 0.95);
  transition: all 0.3s cubic-bezier(0.16, 0.76, 0.49, 0.95);
}

.main-slide__btn:hover {
  color: #3dfff8;
}

.main-slide__btn:hover:after {
  width: 100%;
}

@media (max-width: 480px) {
  .main-slide__btn {
    font-size: 0.875rem;
    letter-spacing: 0.8px;
  }
}

.main-slide__functions {
  width: 100%;
  height: 48vh;
  max-height: 440px;
  overflow-y: auto;
  padding-right: 12px;
}

.main-slide__functions::-webkit-scrollbar {
  width: 4px;
}

.main-slide__functions::-webkit-scrollbar-thumb {
  background-color: #3dfff8;
  border-radius: 4px;
}

.main-slide__functions::-webkit-scrollbar-track {
  background-color: #3dfff996;
  border-radius: 4px;
}

@media (max-width: 1400px) {
  .main-slide__functions {
    max-height: 360px;
  }
}

@media (max-width: 768px) {
  .main-slide__functions {
    overflow-y: visible;
    height: auto;
    max-height: none;
    padding-right: 0;
  }
}

.main-slide__platforms {
  width: 100%;
  margin-top: 2.25rem;
}

@media (max-width: 768px) {
  .main-slide__platforms {
    margin-top: 4rem;
  }
}

.main-slide__platforms ul {
  width: 100%;
  margin-top: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1rem;
}

.main-slide__platforms ul li {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 20%;
          flex: 1 1 20%;
  line-height: 2.6;
  font-size: 0.875rem;
  line-height: 3;
  color: #e6e6e6;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  white-space: nowrap;
}

@media (max-width: 1020px) {
  .main-slide__platforms ul li {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 40%;
            flex: 1 1 40%;
    font-size: 0.8125rem;
  }
}

@media (max-width: 480px) {
  .main-slide__platforms ul li:nth-child(3), .main-slide__platforms ul li:nth-child(4) {
    margin-top: 1rem;
  }
}

.main-slide__platforms-icon {
  width: 2.8rem !important;
  height: 2.8rem !important;
  padding: 0.6rem;
  border: 3px solid #3dfff8;
  -webkit-box-shadow: 0 0 12px #3dfff8;
          box-shadow: 0 0 12px #3dfff8;
  border-radius: 400px;
  margin-right: 0.6rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.main-slide__platforms-icon img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-filter: drop-shadow(0 0 4px #3dfff8);
          filter: drop-shadow(0 0 4px #3dfff8);
}

.main__wrapper {
  width: calc(100% - 6vw);
  max-width: 1920px;
  height: 780px;
  margin: 80px auto 0;
  padding: 0;
  border-radius: 2rem;
  overflow: hidden;
  background-size: cover;
  background-attachment: fixed;
  position: relative;
  display: none;
}

.main__wrapper .video-replacement {
  display: none;
  width: 100%;
  height: 100%;
  position: absolute;
  background-color: #12132b7d;
  top: 0;
  left: 0;
  z-index: 1;
  pointer-events: none;
}

@media (max-width: 1400px) {
  .main__wrapper {
    width: calc(100% - 10vw);
    height: 680px;
    border-radius: 1.75rem;
  }
}

@media (max-width: 1020px) {
  .main__wrapper {
    border-radius: 1.5rem;
    height: calc(100vh - 12vh);
    max-height: 780px;
  }
}

@media (max-width: 768px) {
  .main__wrapper {
    margin: 70px auto 0;
  }
}

.main__bg {
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  z-index: 0;
  pointer-events: none;
  width: 100%;
  height: 100%;
}

@media (max-width: 1020px) {
  .main__bg.big-device {
    display: none;
  }
}

.main__bg.tiny-device {
  display: none;
}

@media (max-width: 1020px) {
  .main__bg.tiny-device {
    display: block;
  }
}

.main__intro {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  opacity: 0;
}

.main__intro-txt {
  text-align: center;
}

.main__intro-txt h1 {
  color: #cacaca;
  text-shadow: 0px 3px 5px rgba(0, 13, 56, 0.7);
  font-family: "Orbitron", sans-serif;
  font-size: 2rem;
  line-height: 1.8;
  word-break: keep-all;
  overflow-wrap: break-word;
  word-wrap: break-word;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .main__intro-txt h1 {
    font-size: 1.5rem;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
  }
}

@media (max-width: 480px) {
  .main__intro-txt h1 {
    font-size: 1.375rem;
  }
}

.main__intro-txt h1 br {
  display: none;
}

@media (max-width: 1400px) {
  .main__intro-txt h1 br {
    display: block;
  }
}

.main__intro img {
  width: 18rem;
  margin-top: 0.4rem;
  -webkit-filter: drop-shadow(0px 3px 5px rgba(0, 13, 56, 0.7));
          filter: drop-shadow(0px 3px 5px rgba(0, 13, 56, 0.7));
}

@media (max-width: 768px) {
  .main__intro img {
    width: 14rem;
  }
}

.drag-notifier {
  position: absolute;
  bottom: 2.8rem;
  left: 50%;
  z-index: 2;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

@media (max-width: 480px) {
  .drag-notifier {
    bottom: 2.8rem;
  }
}

.drag-notifier__txt {
  font-weight: 300;
  font-size: 0.8125rem;
  text-transform: uppercase;
  color: #cacaca;
}

.drag-notifier__arrow-left-group {
  position: absolute;
  width: 3rem;
  height: 1rem;
  top: 50%;
  left: -4.6rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.drag-notifier__arrow-left-group span {
  width: 1rem;
  height: 1rem;
  background: url("../image/icons/icon_prev.svg") no-repeat center;
}

.drag-notifier__arrow-left-group span:nth-child(3) {
  -webkit-animation: slider-notifier1 2s infinite;
          animation: slider-notifier1 2s infinite;
}

.drag-notifier__arrow-left-group span:nth-child(2) {
  -webkit-animation: slider-notifier2 2s infinite;
          animation: slider-notifier2 2s infinite;
}

.drag-notifier__arrow-left-group span:nth-child(1) {
  -webkit-animation: slider-notifier3 2s infinite;
          animation: slider-notifier3 2s infinite;
}

@media (max-width: 768px) {
  .drag-notifier__arrow-left-group span {
    width: 0.9rem;
    height: 0.9rem;
  }
}

.drag-notifier__arrow-right-group {
  position: absolute;
  width: 3rem;
  height: 1rem;
  top: 50%;
  right: -4.6rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.drag-notifier__arrow-right-group span {
  width: 1rem;
  height: 1rem;
  background: url("../image/icons/icon_next.svg") no-repeat center;
}

.drag-notifier__arrow-right-group span:nth-child(1) {
  -webkit-animation: slider-notifier1 2s infinite;
          animation: slider-notifier1 2s infinite;
}

.drag-notifier__arrow-right-group span:nth-child(2) {
  -webkit-animation: slider-notifier2 2s infinite;
          animation: slider-notifier2 2s infinite;
}

.drag-notifier__arrow-right-group span:nth-child(3) {
  -webkit-animation: slider-notifier3 2s infinite;
          animation: slider-notifier3 2s infinite;
}

@media (max-width: 768px) {
  .drag-notifier__arrow-right-group span {
    width: 0.9rem;
    height: 0.9rem;
  }
}

@-webkit-keyframes slider-notifier1 {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes slider-notifier1 {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-webkit-keyframes slider-notifier2 {
  0% {
    opacity: 0;
  }
  33% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes slider-notifier2 {
  0% {
    opacity: 0;
  }
  33% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-webkit-keyframes slider-notifier3 {
  0% {
    opacity: 0;
  }
  66% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes slider-notifier3 {
  0% {
    opacity: 0;
  }
  66% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.section {
  margin-top: 12rem;
  -webkit-transition: all 1.2s cubic-bezier(0.16, 0.76, 0.49, 0.95);
  transition: all 1.2s cubic-bezier(0.16, 0.76, 0.49, 0.95);
}

@media (max-width: 1400px) {
  .section {
    margin-top: 11rem;
  }
}

@media (max-width: 1020px) {
  .section {
    margin-top: 10rem;
  }
}

@media (max-width: 768px) {
  .section {
    margin-top: 9rem;
  }
}

@media (max-width: 480px) {
  .section {
    margin-top: 8rem;
  }
}

.section__title h2,
.section__title h3,
.section__title h4 {
  color: #303030;
  font-weight: 400;
}

.section__title h2 {
  font-size: 1.125rem;
  font-weight: 500;
  font-family: "Orbitron", sans-serif;
  line-height: 1.6;
  letter-spacing: 1.4px;
  margin-bottom: 0.5rem;
  color: #454d58;
}

@media (max-width: 1020px) {
  .section__title h2 {
    font-family: 'Poppins', sans-serif;
  }
}

@media (max-width: 480px) {
  .section__title h2 {
    font-size: 0.9375rem;
  }
}

.section__title h3 {
  font-weight: 700;
  font-size: 2.5rem;
  text-transform: uppercase;
  letter-spacing: -0.2px;
  line-height: 1.2;
}

@media (max-width: 1020px) {
  .section__title h3 {
    font-size: 2.25rem;
  }
}

@media (max-width: 768px) {
  .section__title h3 {
    font-size: 2.125rem;
  }
}

@media (max-width: 480px) {
  .section__title h3 {
    font-size: 2rem;
  }
}

.section__title h4 {
  font-weight: 600;
  font-size: 1.875rem;
  text-transform: uppercase;
  letter-spacing: -0.2px;
  line-height: 1.2;
}

@media (max-width: 1020px) {
  .section__title h4 {
    font-size: 1.75rem;
  }
}

@media (max-width: 768px) {
  .section__title h4 {
    font-size: 1.625rem;
  }
}

@media (max-width: 480px) {
  .section__title h4 {
    font-size: 1.375rem;
  }
}

@media (max-width: 768px) {
  .section__title {
    text-align: center;
  }
}

.acquired-certification__title {
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #303030;
  font-family: 'Poppins', sans-serif;
  text-align: center;
  margin: 0 auto;
  margin-top: 3.6rem;
  width: 430px;
  height: 130px;
  background: url("../image/icons/Awarded.svg") no-repeat;
  background-position: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-top: 20px;
}

@media (max-width: 1020px) {
  .acquired-certification__title {
    width: 380px;
    height: 100px;
    background-position: 2rem;
    padding-top: 16px;
  }
}

@media (max-width: 480px) {
  .acquired-certification__title {
    width: 100%;
    height: 60px;
    background-position: 2.8rem;
    font-size: 1rem;
    padding-top: 11px;
  }
}

.acquired-certification__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 2.4rem;
  margin-bottom: 2.4rem;
}

.acquired-certification__item {
  width: 250px;
  height: 250px;
}

.acquired-certification__item > img {
  width: 100%;
  height: 100%;
}

.acquired-certification__item ~ .acquired-certification__item {
  margin-left: 3.6rem;
}

@media (max-width: 768px) {
  .acquired-certification__item {
    width: 10rem;
    height: 10rem;
  }
}

@media (max-width: 480px) {
  .acquired-certification__item ~ .acquired-certification__item {
    margin-left: 1.6rem;
  }
}

.acquired-certification p {
  width: 80%;
  margin: 0 auto;
  text-align: center;
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 2;
  color: #303030;
  margin-top: 1rem;
  word-break: keep-all;
}

@media (max-width: 768px) {
  .acquired-certification p {
    width: 100%;
  }
}

.business__intro-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.business__left {
  width: 45%;
  margin-right: 5%;
}

@media (max-width: 768px) {
  .business__left {
    width: 100%;
    margin-right: 0;
  }
}

.business__right {
  width: 45%;
  height: 160px;
  margin-left: 5%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 768px) {
  .business__right {
    margin-top: 40px;
    margin-left: 0;
    width: 100%;
  }
}

.business__desc {
  color: #303030;
  font-weight: 400;
  font-size: 0.9375rem;
  line-height: 2.4;
  margin-top: 50px;
}

.business__history {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 768px) {
  .business__history {
    width: 60%;
  }
}

@media (max-width: 480px) {
  .business__history {
    width: 90%;
  }
}

.business__history-txt1 {
  float: left;
  width: 30%;
  color: #5855ff;
  font-weight: 500;
  font-size: 1rem;
  display: inline-block;
  white-space: nowrap;
}

.business__history-txt2 {
  width: 70%;
  padding-left: 30px;
  float: left;
  font-size: 2.4rem;
  font-family: "Orbitron", sans-serif;
  color: #303030;
  white-space: nowrap;
}

@media (max-width: 1400px) {
  .business__history-txt2 {
    font-size: 2.2rem;
  }
}

@media (max-width: 1020px) {
  .business__history-txt2 {
    font-size: 2rem;
    font-family: 'Poppins', sans-serif;
  }
}

@media (max-width: 768px) {
  .business__history-txt2 {
    font-size: 1.6rem;
  }
}

.business__history-txt2 > span {
  font-family: "Orbitron", sans-serif;
  font-size: 3rem;
  font-weight: 700;
  margin-right: 8px;
}

@media (max-width: 1400px) {
  .business__history-txt2 > span {
    font-size: 2.6rem;
  }
}

@media (max-width: 1020px) {
  .business__history-txt2 > span {
    font-size: 2.4rem;
    font-family: 'Poppins', sans-serif;
  }
}

@media (max-width: 768px) {
  .business__history-txt2 > span {
    font-size: 2.2rem;
  }
}

.business__value-wrap {
  margin-top: 120px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media (max-width: 1020px) {
  .business__value-wrap {
    margin-top: 80px;
  }
}

@media (max-width: 768px) {
  .business__value-wrap {
    margin-top: 60px;
  }
}

@media (max-width: 480px) {
  .business__value-wrap {
    margin-top: 60px;
  }
}

.business__value-box {
  width: 100%;
  margin-top: 6rem;
  position: relative;
}

.business__value-box h6 {
  display: inline-block;
  color: #5855ff;
  font-size: 1.25rem;
  font-weight: 300;
  text-transform: uppercase;
  line-height: 2;
  word-break: keep-all;
  position: relative;
  left: 0.8rem;
}

.business__value-box:nth-child(1) {
  margin-top: 3rem;
}

.business__value-idx {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.business__value-txt {
  width: 100%;
  height: auto;
  padding: 2.4rem;
  border-radius: 1rem;
  border-top-left-radius: 0;
  background-color: #f9f9f9;
}

.business__value-txt p {
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 2;
  color: #303030;
}

.business__value-txt p ~ p {
  margin-top: 1.4rem;
}

.business__value-txt p.emph {
  font-weight: 500;
  text-align: center;
  text-decoration: underline;
}

.business__value-txt ul {
  margin-top: 1.6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.business__value-txt ul > li {
  width: 32%;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 2;
}

.business__value-txt ul > li a {
  width: 100%;
  height: 100%;
  padding: 1.2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  word-break: keep-all;
  background-color: #716effbd;
  border-radius: 0.4rem;
  color: #ffffff;
  -webkit-transition: all 0.3s cubic-bezier(0.16, 0.76, 0.49, 0.95);
  transition: all 0.3s cubic-bezier(0.16, 0.76, 0.49, 0.95);
}

.business__value-txt ul > li:hover a {
  background-color: #5855ff;
}

.business__numbering {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 1.2rem;
  height: 3.2rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  color: #ffffff;
  font-weight: 600;
  font-size: 1rem;
  background-color: #5855ff;
}

.support__content-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.support__left {
  width: 50%;
}

@media (max-width: 768px) {
  .support__left {
    width: 100%;
    margin-right: 0;
  }
}

.support__right {
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media (max-width: 768px) {
  .support__right {
    margin-top: 40px;
    margin-left: 0;
    width: 100%;
  }
}

.support__list-group {
  width: 100%;
}

.support__list {
  width: 49%;
  height: 0;
  padding-top: 49%;
  margin-top: 2%;
  position: relative;
  float: left;
  overflow: hidden;
}

.support__list:nth-child(even) {
  margin-left: 2%;
}

.support__list:nth-child(1), .support__list:nth-child(2) {
  margin-top: 0;
}

.support__list:nth-child(1) a {
  background: url("../image/bg_guide.jpg") no-repeat center;
  background-size: cover;
}

.support__list:nth-child(2) a {
  background: url("../image/bg_inquiry.jpg") no-repeat center;
  background-size: cover;
}

.support__list:nth-child(3) a {
  background: url("../image/bg_download.jpg") no-repeat center;
  background-size: cover;
}

.support__list:hover a {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

.support__list:hover a:after {
  background-color: rgba(87, 255, 241, 0.3);
}

.support__list a {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  padding: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  z-index: 1;
  -webkit-transform-origin: center;
          transform-origin: center;
}

.support__list a:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 0;
  -webkit-transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.support__type {
  width: 100%;
  font-size: 1.25rem;
  font-weight: 600;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  text-align: center;
  word-break: keep-all;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  pointer-events: none;
  color: #ffffff;
  z-index: 2;
}

.support__type:before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  position: absolute;
  background-color: rgba(255, 255, 255, 0.4);
  left: -2rem;
  bottom: -1.2rem;
}

@media (max-width: 768px) {
  .support__type {
    font-size: 1rem;
    font-weight: 500;
  }
}

.support__type > span {
  font-size: 1.75rem;
  font-weight: 800;
  line-height: 0.9;
  color: #00d5ff;
}

@media (max-width: 768px) {
  .support__type > span {
    font-size: 1.5rem;
    font-weight: 600;
  }
}

.support__icon {
  width: 80px;
  height: 80px;
  position: absolute;
  bottom: 0;
  right: 0;
  opacity: 0;
}
/*# sourceMappingURL=style.css.map */