@font-face {
  font-family: 'Inter';
  src: url('../../font/Inter-Bold.ttf');
  font-weight: 700;
}
@font-face {
  font-family: 'Inter';
  src: url('../../font/Inter-Medium.ttf');
  font-weight: 500;
}
@font-face {
  font-family: 'Inter';
  src: url('../../font/Inter-Light.ttf');
  font-weight: 300;
}
body,
header,
footer,
main,
ol,
ul,
h1,
h2,
h3,
h4,
h5,
h6,
p,
th,
td,
dl,
dd,
form,
fieldset,
legend,
input,
textarea,
select,
span,
a {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
a {
  color: inherit;
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}
em {
  font-style: normal;
}
li {
  list-style: none;
}
img {
  border: 0;
  vertical-align: middle;
}
table {
  border-spacing: 0;
}
p {
  word-wrap: break-word;
}
div,
section,
li {
  box-sizing: border-box;
}
input,
textarea {
  outline: none;
  border: none;
  resize: none;
}
button {
  border: none;
}
html {
  scroll-behavior: unset !important;
}
body {
  -webkit-text-size-adjust: 100%;
  font-family: Plus Jakarta Sans;
  font-size: 16px;
    background-color: #000212 !important;
  min-width: 1280px;
  overflow-x: hidden;
}
.container {
  width: 1280px;
  margin: 0 auto;
}
#product-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  padding: 0 40px;
  transition: all 300ms;
  border-bottom: 1px solid transparent;
  background-color: #00021213;
}
#product-header.active {
  background-color: #000212;
}
#product-header .container {
  display: flex;
  align-items: center;
  gap: 36px;
  height: 72px;
}
#product-header .mobile-switch {
  display: none;
}
#product-header .menu-container {
  flex: 1;
  height: 100%;
}
#product-header .menu {
  display: flex;
  justify-content: flex-end;
  gap: 40px;
  height: 100%;
}
#product-header .menu .icon-menu-close {
  display: none;
}
#product-header .menu-item {
  height: 100%;
}
#product-header .menu-item.more {
  position: relative;
}
#product-header .menu-item.more .item-text {
  gap: 10px;
}
#product-header .menu-item.more .item-text::after {
  content: '';
  width: 12px;
  height: 12px;
  background-image: url(../../img/product/icon-menu-arrow.svg);
  background-size: 100% 100%;
  transition: 0.3s ease-in-out;
}
#product-header .menu-item.more:hover .item-text::after {
  transform: rotate(-180deg);
}
#product-header .menu-item.more:hover .item-list {
  opacity: 1;
  transform: scaleY(1);
}
#product-header .menu-item .item-text {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  font-size: 18px;
  color: #cecece;
  cursor: pointer;
  transition: all 300ms;
}
#product-header .menu-item .item-text:hover {
  color: #308af0;
}
#product-header .menu-item .item-list {
  position: absolute;
  z-index: 99;
  display: flex;
  flex-direction: column;
  width: 220px;
  box-shadow: 2px 2px 35px rgba(0, 0, 0, 0.08);
  background-color: #fff;
  padding: 15px;
  border-radius: 10px;
  transition: 0.3s ease-in-out;
  opacity: 0;
  transform: scaleY(0);
  transform-origin: top;
}
#product-header .menu-item .item-list_text {
  height: 45px;
  font-weight: bold;
  font-size: 18px;
  color: #308af0;
  display: flex;
  align-items: center;
  padding: 0 10px;
  border-radius: 5px;
}
#product-header .menu-item .item-list_text:hover {
  background-color: #f4f4f9;
}
#product-header .demo {
  font-weight: bold;
  font-size: 16px;
  color: #fff;
  background-color: #308af0;
  border-radius: 6px;
  padding: 12px 18px;
  transition: all 300ms;
}
#product-header .demo:hover {
  background-color: #0b6cda;
}
.banner {
  position: relative;
  width: 100%;
  height: 100vh;
  margin-top: -72px;
}
.banner .video-wrapper {
  position: absolute;
  inset: 0;
  z-index: 9;
  width: 100%;
  height: 100%;
  perspective: 1200px;
  overflow: hidden;
}
.banner-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform-origin: center;
  transform: rotateX(0deg) scale(1);
  will-change: transform;
}
.banner-mask {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  z-index: 10;
  background: radial-gradient(circle at center, rgba(0, 2, 18, 0) 0%, #000212 60%);
  pointer-events: none;
  opacity: 1;
}
.banner .container {
  position: absolute;
  inset: 0;
  z-index: 11;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.banner-logo {
  display: block;
  margin: 120px auto 20px;
}
.banner-info {
  opacity: 1;
}
.banner-title {
  font-weight: 400;
  font-size: 52px;
  color: #fff;
  margin-bottom: 10px;
  text-align: center;
}
.banner-desc {
  font-family: 'Inter';
  font-weight: 300;
  font-size: 26px;
  line-height: 1.5;
  color: #fffefe;
  margin-bottom: 30px;
  text-align: center;
  padding: 0 200px;
}
.banner-demo {
  display: block;
  width: fit-content;
  font-size: 26px;
  color: #fff;
  background-color: #308af0;
  padding: 10px 30px;
  border-radius: 5px;
  transition: all 300ms;
  margin: 0 auto;
}
.banner-demo:hover {
  background-color: #0b6cda;
}
.wrap-1 {
  margin-bottom: 100px;
  background-image: url(../../img/product/wrap1-bg.webp);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center bottom;
  padding: 0 0 100px;
}
.wrap-1 .title {
  font-weight: 400;
  font-size: 52px;
  line-height: 1.25;
  color: #fff;
  text-align: center;
  margin-bottom: 40px;
  padding: 0 200px;
}
.wrap-1 .desc {
  font-family: 'Inter';
  font-weight: 300;
  font-size: 26px;
  line-height: 1.5;
  color: #fff;
  text-align: center;
  margin-bottom: 80px;
  padding: 0 50px;
}
.wrap-1 .content {
  position: relative;
  width: 100%;
}
.wrap-1 .content:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 640px;
  height: 325px;
  background-image: url(../../img/product/wrap1-icon.png);
  background-size: 100% 100%;
  transform: translate(-50%, -50%) scale(0.8);
}
.wrap-1 .content-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #ffffff50;
  padding: 30px 0;
}
.wrap-1 .content-row .content-item:first-child .item-value {
  color: #00d0ff;
}
.wrap-1 .content-row .content-item:last-child {
  align-items: flex-end;
}
.wrap-1 .content-row .content-item:last-child .item-value {
  justify-content: flex-end;
  color: #ff8000;
}
.wrap-1 .content-row:last-child {
  border-bottom: none;
}
.wrap-1 .content-item {
  width: 380px;
  display: flex;
  flex-direction: column;
}
.wrap-1 .content-item .item-value {
  display: flex;
  flex-flow: row wrap;
  width: 270px;
  font-size: 60px;
}
.wrap-1 .content-item .item-desc {
  font-size: 18px;
  color: #fff;
}
.wrap-1 .content-mobile {
  display: none;
}
.wrap-2 {
  margin-bottom: 200px;
}
.wrap-2 .title {
  font-weight: 400;
  font-size: 52px;
  line-height: 1.25;
  color: #fff;
  text-align: center;
  margin-bottom: 40px;
  padding: 0 200px;
}
.wrap-2 .desc {
  font-family: 'Inter';
  font-weight: 300;
  font-size: 26px;
  line-height: 1.5;
  color: #fff;
  text-align: center;
  margin-bottom: 80px;
  padding: 0 50px;
}
.wrap-2 .content {
  position: relative;
  width: 100%;
  height: 620px;
  border-radius: 15px;
  overflow: hidden;
}
.wrap-2 .content .tab {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background-image: url(../../img/product/wrap2-tab-bg.png);
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  z-index: 10;
  border-bottom: 1px solid #ffffff50;
}
.wrap-2 .content .tab-item {
  font-size: 18px;
  color: #fff;
  border-radius: 5px;
  padding: 10px 20px;
  cursor: pointer;
  transition: all 300ms;
}
.wrap-2 .content .tab-item:hover,
.wrap-2 .content .tab-item.active {
  color: #000;
  background-color: #fff;
}
.wrap-2 .content .swiper-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9;
}
.wrap-2 .content .swiper-container .swiper-wrapper {
  width: 100%;
  height: 100%;
}
.wrap-2 .content .swiper-container .swiper-wrapper .swiper-slide {
  display: none;
}
.wrap-2 .content .swiper-container .swiper-wrapper .swiper-slide .slide-title {
  display: none;
}
.wrap-2 .content .swiper-container .swiper-wrapper .swiper-slide .slide-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.wrap-2 .content .swiper-container .swiper-wrapper .swiper-slide.active {
  display: block;
}
.wrap-2 .content .swiper-container .swiper-button-prev,
.wrap-2 .content .swiper-container .swiper-button-next {
  display: none;
}
.wrap-3 .title {
  font-weight: 400;
  font-size: 52px;
  line-height: 1.25;
  color: #fff;
  text-align: center;
  margin-bottom: 40px;
  padding: 0 200px;
}
.wrap-3 .desc {
  font-family: 'Inter';
  font-weight: 300;
  font-size: 26px;
  line-height: 1.5;
  color: #fff;
  text-align: center;
  margin-bottom: 80px;
  padding: 0 50px;
}
.wrap-3 .content {
  display: flex;
  align-items: center;
  gap: 30px;
}
.wrap-3 .content .left {
  width: 42%;
  flex-shrink: 0;
  display: flex;
  justify-content: space-between;
}
.wrap-3 .content .left .content-item {
  width: 30%;
  height: auto;
}
.wrap-3 .content .left .item-img {
  width: 100%;
  height: auto;
  margin-bottom: 10px;
}
.wrap-3 .content .left .item-tag {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  color: #767676;
  padding: 10px 0;
  border-radius: 5px;
}
.wrap-3 .content .left .item-tag::before {
  content: '';
  display: block;
  width: 26px;
  height: 34px;
  background-image: url(../../img/product/wrap3-tag.png);
  background-size: 100% 100%;
}
.wrap-3 .content .right {
  flex: 1;
}
.wrap-3 .content .right .item-img {
  width: 100%;
  height: auto;
  transform: translateY(-60px);
}
.wrap-4 {
  background-image: url(../../img/product/wrap4-bg.webp);
  background-size: cover;
  background-position: center;
  padding: 200px 0 200px;
  margin-bottom: 200px;
}
.wrap-4 .container {
  display: flex;
  align-items: center;
  gap: 50px;
}
.wrap-4 .left {
  width: 46%;
  flex-shrink: 0;
}
.wrap-4 .title {
  font-weight: 400;
  font-size: 42px;
  line-height: 1.25;
  color: #fff;
  margin-bottom: 20px;
}
.wrap-4 .desc {
  font-family: 'Inter';
  font-weight: 300;
  font-size: 26px;
  line-height: 1.5;
  color: #fff;
  margin-bottom: 40px;
}
.wrap-4 .content {
  display: flex;
  justify-content: space-between;
}
.wrap-4 .content-item-wrap {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.wrap-4 .content-item-wrap:nth-child(1) {
  width: 34%;
}
.wrap-4 .content-item-wrap:nth-child(2) {
  width: 27%;
}
.wrap-4 .content-item-wrap:nth-child(3) {
  width: 27%;
}
.wrap-4 .content-item {
  display: flex;
  align-items: center;
}
.wrap-4 .content-item .item-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 40px;
  background-color: #308af0;
  border-radius: 5px;
}
.wrap-4 .content-item .item-icon img {
  transform: scale(0.7);
}
.wrap-4 .content-item .item-text {
  flex: 1;
  display: flex;
  align-items: center;
  height: 35px;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 0 30px 30px 0;
  font-size: 14px;
  color: #fffefe;
  padding-left: 10px;
}
.wrap-4 .right {
  flex: 1;
}
.wrap-4 .right .wrap-img {
  width: 100%;
  height: auto;
}
.wrap-5 {
  margin-bottom: 200px;
}
.wrap-5 .title {
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 50px;
  font-size: 36px;
  color: #fff;
  margin-bottom: 56px;
}
.wrap-5 .title::after {
  content: '';
  display: block;
  flex: 1;
  height: 2px;
  background-color: #807f7f;
}
.wrap-5 .content {
  width: 100%;
  display: flex;
  overflow: hidden;
}
.wrap-5 .content-box {
  flex-shrink: 0;
  width: fit-content;
  display: flex;
  animation: move 30s linear infinite;
}
.wrap-5 .content .box-item {
  flex-shrink: 0;
  padding: 10px 30px;
}
.wrap-5 .content .box-item_inner {
  display: flex;
  justify-content: center;
  align-items: center;
}
@keyframes move {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
.wrap-5 .content:hover .content-box {
  animation-play-state: paused;
}
.wrap-6 {
  margin-bottom: 100px;
  overflow: hidden;
}
.wrap-6 .title {
  font-weight: 400;
  font-size: 52px;
  line-height: 1.25;
  color: #fff;
  text-align: center;
  margin-bottom: 40px;
}
.wrap-6 .desc {
  font-family: 'Inter';
  font-weight: 300;
  font-size: 26px;
  line-height: 1.5;
  color: #fff;
  text-align: center;
  padding: 0 200px;
}
.wrap-6 .swiper-container {
  position: relative;
  width: 100%;
  background: linear-gradient(to bottom, rgba(0, 2, 18, 0) 2.7%, #00eaff 55.4%, #0d1ae3 7.3%, rgba(0, 2, 18, 0) 100%);
  padding: 100px 0 180px;
}
.wrap-6 .swiper-slide {
  width: 864px;
  height: 485px;
}
.wrap-6 .swiper-slide video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.wrap-6 .swiper-slide-active {
  border: 2px solid #fff;
}
.wrap-6 .swiper-pagination {
  display: block;
  bottom: 100px;
}
.wrap-6 .swiper-pagination-bullet {
  background: #fff;
  opacity: 0.5;
}
.wrap-6 .swiper-pagination-bullet-active {
  background: #fff;
  opacity: 1;
}
.wrap-6 .swiper-button-prev {
  left: calc(50% - 550px);
  width: 70px;
  height: 70px;
  transform: translateX(-50%) translateY(-50%);
}
.wrap-6 .swiper-button-prev::after {
  content: '';
  width: 70px;
  height: 70px;
  background-image: url(../../img/product/btn-prev.png);
  background-size: 100% 100%;
}
.wrap-6 .swiper-button-next {
  right: calc(50% - 620px);
  width: 70px;
  height: 70px;
  transform: translateX(-50%) translateY(-50%);
}
.wrap-6 .swiper-button-next::after {
  content: '';
  width: 70px;
  height: 70px;
  background-image: url(../../img/product/btn-next.png);
  background-size: 100% 100%;
}
.wrap-7 {
  margin-bottom: 100px;
}
.wrap-7 .container {
  height: 400px;
  background-image: url(../../img/product/wrap7-pc.png);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  padding: 80px 0 0 100px;
}
.wrap-7 .desc {
  font-weight: 300;
  font-size: 22px;
  color: #fff;
  margin-bottom: 20px;
}
.wrap-7 .title {
  font-weight: 400;
  font-size: 36px;
  color: #fff;
  margin-bottom: 40px;
}
.wrap-7 .get-started {
  display: inline-block;
  font-size: 22px;
  color: #fff;
  padding: 12px 36px;
  border-radius: 6px;
  background-color: #308af0;
  transition: all 300ms;
}
.wrap-7 .get-started:hover {
  background-color: #0b6cda;
}
#product-footer {
  padding: 80px 40px 40px;
  background-image: url(../../img/product/footer-bg.png);
  background-size: 100% 100%;
  background-color: #000212;
}
#product-footer .content {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  padding-bottom: 75px;
  margin-bottom: 25px;
  gap: 40px;
}
#product-footer .info {
  flex-shrink: 0;
  width: 450px;
}
#product-footer .info .logo {
  display: block;
  margin-bottom: 24px;
}
#product-footer .info-desc {
  width: 400px;
}
#product-footer .info-desc,
#product-footer .info-email {
  font-size: 18px;
  line-height: 1.6;
  color: #fff;
  margin-bottom: 20px;
}
#product-footer .info-email:hover {
  text-decoration: underline;
}
#product-footer .info-follow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  line-height: 1.6;
  color: #fff;
}
#product-footer .service,
#product-footer .about {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  width: 350px;
}
#product-footer .service-title,
#product-footer .about-title {
  font-weight: bold;
  font-size: 20px;
  color: #fff;
  margin-bottom: 30px;
}
#product-footer .service-item,
#product-footer .about-item {
  font-size: 18px;
  line-height: 1.6;
  color: #fff;
  margin-bottom: 10px;
}
#product-footer .service-item:hover,
#product-footer .about-item:hover {
  text-decoration: underline;
}
#product-footer .copyright {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 20px;
}
#product-footer .copyright .links {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
}
#product-footer .copyright .links a {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-right: 20px;
}
#product-footer .copyright .links a::after {
  content: '';
  display: block;
  width: 1px;
  height: 18px;
  background-color: #7b838c;
}
#product-footer .copyright .links a:last-child::after {
  display: none;
}
#product-footer .copyright .links a:hover {
  text-decoration: underline;
}
#product-footer .copyright .links,
#product-footer .copyright-text {
  flex-shrink: 0;
  font-size: 18px;
  line-height: 1.6;
  color: #fff;
}
@media (max-width: 768px) {
  html {
    font-size: calc(100vw / 375);
    overflow-x: hidden;
  }
  body {
    min-width: 100%;
  }
  .container {
    width: 100%;
    max-width: unset;
  }
  #product-header {
    padding: 0 20rem;
  }
  #product-header .container {
    gap: 20rem;
    height: 50rem;
    justify-content: space-between;
  }
  #product-header .logo {
    flex: 0 0 auto;
  }
  #product-header .logo img {
    width: 135rem;
    height: auto;
  }
  #product-header .mobile-switch {
    display: block;
    width: 20rem;
    height: 20rem;
    background-image: url(../../img/product/icon-menu-switch.svg);
    background-size: 100% 100%;
    cursor: pointer;
  }
  #product-header .menu-container {
    display: flex;
    justify-content: flex-end;
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.2);
    z-index: 99;
    opacity: 0;
    pointer-events: none;
    transition: opacity 300ms;
  }
  #product-header .menu-container.active {
    opacity: 1;
    pointer-events: auto;
  }
  #product-header .menu {
    position: absolute;
    top: 0;
    right: 0;
    width: 250rem;
    flex-direction: column;
    justify-content: flex-start;
    gap: 20rem;
    padding: 20rem;
    transition: transform 300ms;
    transform: translateX(100%);
    background-color: #000213;
  }
  #product-header .menu .icon-menu-close {
    display: block;
    width: 30rem;
    height: 30rem;
    background-image: url(../../img/product/icon-menu-close.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 20rem 20rem;
    cursor: pointer;
    background-color: #4b88e9;
  }
  #product-header .menu-item {
    width: 100%;
    height: 40rem;
  }
  #product-header .menu-item.more .item-text {
    width: 100%;
    justify-content: space-between;
  }
  #product-header .menu-item.more .item-text::after {
    content: '';
    width: 12rem;
    height: 12rem;
    background-image: url(../../img/product/icon-menu-arrow.svg);
    background-size: 100% 100%;
    transition: 0.3s ease-in-out;
  }
  #product-header .menu-item.more:hover .item-text::after {
    transform: unset;
  }
  #product-header .menu-item.more:hover .item-list {
    opacity: unset;
    transform: unset;
  }
  #product-header .menu-item.more.active .item-text {
    color: #308af0;
  }
  #product-header .menu-item.more.active .item-text::after {
    transform: rotate(-180deg);
  }
  #product-header .menu-item .item-text {
    justify-content: flex-start;
    width: 100%;
    font-size: 16rem;
    padding-left: 20rem;
    border-bottom: 1rem solid #f3f3f3;
  }
  #product-header .menu-item .item-text:hover {
    color: #cecece;
  }
  #product-header .menu-item .item-list {
    width: 100%;
    box-shadow: unset;
    padding: 0;
    opacity: unset;
    transform: unset;
    padding-top: 20rem;
    display: none;
    transition: unset;
    background-color: #000213;
  }
  #product-header .menu-item .item-list_text {
    height: 40rem;
    font-size: 16rem;
    color: #cecece;
    padding-left: 40rem;
  }
  #product-header .menu-item .item-list_text:hover {
    background-color: unset;
  }
  #product-header .menu.active {
    transform: translateX(0);
  }
  #product-header .demo {
    display: none;
  }
  .banner {
    margin-top: -52rem;
    margin-bottom: 100rem;
  }
  .banner-video {
    position: absolute;
    inset: 0;
    z-index: 9;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .banner-mask {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
    z-index: 10;
    background: radial-gradient(circle at center, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.9) 60%);
    transition: opacity 0.8s ease;
    pointer-events: none;
    opacity: var(--mask-opacity, 1);
  }
  .banner .container {
    position: absolute;
    inset: 0;
    z-index: 11;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .banner-logo {
    display: block;
    width: 100%;
    height: auto;
    margin: -150rem auto 20rem;
  }
  .banner-info {
    position: absolute;
    transform: translate(0, 50%);
    padding: 0 20rem;
  }
  .banner-title {
    font-size: 36rem;
    margin-bottom: 15rem;
    text-align: center;
  }
  .banner-desc {
    font-size: 18rem;
    line-height: 1.5;
    padding: 0;
    margin-bottom: 30rem;
    text-align: center;
  }
  .banner-demo {
    display: block;
    width: fit-content;
    font-size: 18rem;
    padding: 10rem 35rem;
    border-radius: 5px;
    margin: 0 auto;
  }
  .wrap-1 {
    padding: 0 20rem;
    margin-bottom: 100rem;
    background: unset;
  }
  .wrap-1 .title {
    font-size: 36rem;
    margin-bottom: 20rem;
    padding: 0 10rem;
  }
  .wrap-1 .desc {
    font-size: 18rem;
    margin-bottom: 40rem;
    padding: 0;
  }
  .wrap-1 .content {
    display: none;
    width: 100%;
    height: 600px;
    background-image: url(../../img/product/wrap1-content.webp);
    background-size: cover;
  }
  .wrap-1 .content::before {
    display: none;
  }
  .wrap-1 .content-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #ffffff50;
    padding: 30px 0 30px 60px;
  }
  .wrap-1 .content-row .content-item:first-child .item-value {
    color: #00d0ff;
  }
  .wrap-1 .content-row .content-item:last-child .item-value {
    color: #ff8000;
  }
  .wrap-1 .content-row:last-child {
    border-bottom: none;
  }
  .wrap-1 .content-item {
    width: 380px;
    display: flex;
    flex-direction: column;
  }
  .wrap-1 .content-item .item-value {
    display: flex;
    flex-flow: row wrap;
    width: 250px;
    font-size: 60px;
  }
  .wrap-1 .content-item .item-desc {
    font-size: 18px;
    color: #fff;
  }
  .wrap-1 .content-mobile {
    display: flex;
    flex-direction: column;
    gap: 40rem;
  }
  .wrap-1 .content-mobile .content-item {
    width: 100%;
    display: flex;
    flex-direction: column;
  }
  .wrap-1 .content-mobile .content-item .item-value {
    display: flex;
    gap: 4rem;
    font-size: 42px;
  }
  .wrap-1 .content-mobile .content-item .item-desc {
    font-size: 16rem;
    color: #fff;
  }
  .wrap-1 .content-mobile .content-item:nth-child(1) .item-value,
  .wrap-1 .content-mobile .content-item:nth-child(2) .item-value,
  .wrap-1 .content-mobile .content-item:nth-child(3) .item-value {
    color: #00d0ff;
  }
  .wrap-1 .content-mobile .content-item:nth-child(4) .item-value,
  .wrap-1 .content-mobile .content-item:nth-child(5) .item-value,
  .wrap-1 .content-mobile .content-item:nth-child(6) .item-value {
    color: #ff8000;
  }
  .wrap-2 {
    margin-bottom: 100rem;
  }
  .wrap-2 .title {
    font-size: 36rem;
    margin-bottom: 20rem;
    padding: 0 30rem;
  }
  .wrap-2 .desc {
    font-size: 18rem;
    margin-bottom: 60rem;
    padding: 0 20rem;
  }
  .wrap-2 .content {
    position: relative;
    width: 100%;
    height: 320rem;
    border-radius: 0;
    overflow: hidden;
  }
  .wrap-2 .content .tab {
    display: none;
  }
  .wrap-2 .content .swiper-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9;
    padding-top: 10rem;
  }
  .wrap-2 .content .swiper-container .swiper-wrapper {
    width: 100%;
    height: 100%;
  }
  .wrap-2 .content .swiper-container .swiper-wrapper .swiper-slide {
    width: 330rem;
    display: block;
  }
  .wrap-2 .content .swiper-container .swiper-wrapper .swiper-slide .slide-title {
    display: block;
    text-align: center;
    margin-bottom: 20rem;
    font-size: 18rem;
    color: #fff;
  }
  .wrap-2 .content .swiper-container .swiper-wrapper .swiper-slide .slide-video {
    width: 330rem;
    height: 250rem;
    object-fit: cover;
    border: 2rem solid #fff;
    border-radius: 5rem;
    overflow: hidden;
  }
  .wrap-2 .content .swiper-container .swiper-button-prev,
  .wrap-2 .content .swiper-container .swiper-button-next {
    top: 10%;
    width: 25rem;
    height: 25rem;
    border: 2rem solid #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .wrap-2 .content .swiper-container .swiper-button-prev::after,
  .wrap-2 .content .swiper-container .swiper-button-next::after {
    font-weight: bold;
    font-size: 10rem;
    color: #fff;
  }
  .wrap-2 .content .swiper-container .swiper-button-prev {
    left: 10%;
  }
  .wrap-2 .content .swiper-container .swiper-button-next {
    right: 10%;
  }
  .wrap-3 {
    padding: 0 20rem;
  }
  .wrap-3 .title {
    font-size: 36rem;
    margin-bottom: 20rem;
    padding: 0;
  }
  .wrap-3 .desc {
    font-size: 18rem;
    margin-bottom: 60rem;
    padding: 0;
  }
  .wrap-3 .content {
    flex-direction: column;
    gap: 50rem;
  }
  .wrap-3 .content .left {
    width: 100%;
    flex-direction: column;
    gap: 50rem;
  }
  .wrap-3 .content .left .content-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: auto;
  }
  .wrap-3 .content .left .item-img {
    width: 80%;
    margin-bottom: 10rem;
    gap: 10rem;
  }
  .wrap-3 .content .left .item-tag {
    width: 65%;
    font-size: 20rem;
    padding: 10rem 0;
    border-radius: 5rem;
  }
  .wrap-3 .content .left .item-tag::before {
    width: 26rem;
    height: 34rem;
  }
  .wrap-3 .content .right {
    flex: 1;
  }
  .wrap-3 .content .right .item-img {
    width: 100%;
    height: auto;
    transform: scale(1) translateX(0) translateY(0);
  }
  .wrap-4 {
    padding: 100rem 20rem 100rem;
    margin-bottom: 100rem;
  }
  .wrap-4 .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50rem;
  }
  .wrap-4 .left {
    width: 100%;
  }
  .wrap-4 .title {
    font-size: 34rem;
    margin-bottom: 20rem;
    padding-right: 0;
    text-align: center;
  }
  .wrap-4 .desc {
    font-size: 18rem;
    margin-bottom: 40rem;
    text-align: center;
    padding-right: 0;
  }
  .wrap-4 .content {
    flex-direction: column;
    gap: 20rem;
  }
  .wrap-4 .content-item-wrap {
    flex-direction: row;
    gap: 20rem;
    width: 100% !important;
  }
  .wrap-4 .content-item {
    flex: 1;
  }
  .wrap-4 .content-item .item-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40rem;
    height: 32rem;
    border-radius: 2rem;
  }
  .wrap-4 .content-item .item-icon img {
    transform: scale(0.5);
  }
  .wrap-4 .content-item .item-text {
    height: 26rem;
    border-radius: 0 30rem 30rem 0;
    font-size: 10rem;
    padding-left: 10rem;
  }
  .wrap-4 .right .wrap-img {
    transform: scale(1) translateX(10rem);
  }
  .wrap-5 {
    margin-bottom: 100rem;
  }
  .wrap-5 .title {
    font-size: 36rem;
    margin-bottom: 36rem;
    text-align: center;
  }
  .wrap-5 .title::after {
    display: none;
  }
  .wrap-5 .content .box-item {
    padding: 10rem 20rem;
  }
  .wrap-5 .content .box-item img {
    width: auto;
    height: 30rem;
  }
  .wrap-6 {
    margin-bottom: 100rem;
  }
  .wrap-6 .title {
    font-size: 36rem;
    margin-bottom: 40rem;
    padding: 0 20rem;
  }
  .wrap-6 .desc {
    font-size: 18rem;
    margin-bottom: 50rem;
    padding: 0 20rem;
  }
  .wrap-6 .swiper-container {
    position: relative;
    background: unset;
    padding: 0 0 40rem;
  }
  .wrap-6 .swiper-slide {
    width: auto;
    height: auto;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .wrap-6 .swiper-slide video {
    width: 345rem;
    height: 188rem;
    object-fit: cover;
    border: none;
  }
  .wrap-6 .swiper-pagination {
    display: block;
    bottom: 10rem;
  }
  .wrap-6 .swiper-pagination-bullet {
    background: #fff;
    opacity: 0.5;
  }
  .wrap-6 .swiper-pagination-bullet-active {
    background: #fff;
    opacity: 1;
  }
  .wrap-7 {
    margin-bottom: 100rem;
    padding: 0 20rem;
  }
  .wrap-7 .container {
    height: 556rem;
    background-image: url(../../img/product/wrap7-mb.png);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    padding: 50rem 10rem;
  }
  .wrap-7 .desc {
    font-size: 18rem;
    text-align: center;
    line-height: 1.5;
    padding: 0 20rem;
    margin-bottom: 20rem;
  }
  .wrap-7 .title {
    font-size: 32rem;
    line-height: 1.5;
    text-align: center;
    margin-bottom: 40rem;
  }
  .wrap-7 .get-started {
    display: block;
    width: fit-content;
    font-size: 18rem;
    color: #fff;
    padding: 12rem 36rem;
    border-radius: 6rem;
    margin: 0 auto;
  }
  #product-footer {
    padding: 40rem 20rem 20rem;
  }
  #product-footer .content {
    border-bottom: 1rem solid #0000001f;
    padding-bottom: 55rem;
    margin-bottom: 25rem;
    gap: 40rem;
  }
  #product-footer .info {
    width: 100%;
  }
  #product-footer .info .logo {
    margin-bottom: 24rem;
  }
  #product-footer .info-desc {
    width: 100%;
  }
  #product-footer .info-desc,
  #product-footer .info-email {
    font-size: 16rem;
    margin-bottom: 20rem;
  }
  #product-footer .info-follow {
    gap: 10rem;
    font-size: 16rem;
  }
  #product-footer .service,
  #product-footer .about {
    width: 100%;
  }
  #product-footer .service-title,
  #product-footer .about-title {
    font-size: 20rem;
    margin-bottom: 30rem;
  }
  #product-footer .service-item,
  #product-footer .about-item {
    font-size: 16rem;
    margin-bottom: 10rem;
  }
  #product-footer .copyright {
    gap: 20rem;
    padding-bottom: 20rem;
  }
  #product-footer .copyright .links {
    justify-content: center;
  }
  #product-footer .copyright .links a {
    font-size: 14rem;
    gap: 10rem;
    margin-right: 10rem;
  }
  #product-footer .copyright .links a::after {
    width: 1rem;
    height: 16rem;
  }
  #product-footer .copyright .links,
  #product-footer .copyright-text {
    width: 100%;
    font-size: 16rem;
  }
  #product-footer .copyright-text {
    text-align: center;
  }
}
