html,
body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "GoogleSans", "SVN-Avo", sans-serif;
  color: #414b5b;
  position: relative;
  overflow-x: hidden;
}

@font-face {
  font-family: "SVN-Avo";
  font-weight: 700;
  src: url("font/SVN-Avo-Bold.eot");
  src: url("font/SVN-Avo-Bold.eot?#iefix") format("embedded-opentype"), url("font/SVN-Avo-Bold.woff2") format("woff2"), url("font/SVN-Avo-Bold.woff") format("woff"), url("font/SVN-Avo-Bold.ttf") format("truetype");
}
/* GoogleSans */
@font-face {
  font-family: "GoogleSans";
  font-weight: 400;
  src: url("font/GoogleSans-Regular.eot");
  src: url("font/GoogleSans-Regular.eot?#iefix") format("embedded-opentype"), url("font/GoogleSans-Regular.woff2") format("woff2"), url("font/GoogleSans-Regular.woff") format("woff"), url("font/GoogleSans-Regular.ttf") format("truetype");
}
@font-face {
  font-family: "GoogleSans";
  font-weight: 700;
  src: url("font/GoogleSans-Bold.eot");
  src: url("font/GoogleSans-Bold.eot?#iefix") format("embedded-opentype"), url("font/GoogleSans-Bold.woff2") format("woff2"), url("font/GoogleSans-Bold.woff") format("woff"), url("font/GoogleSans-Bold.ttf") format("truetype");
}
@keyframes slideDown {
  0% {
    opacity: 0;
    transform: translateY(-100%);
  }
  100% {
    opacity: 0.9;
    transform: translateY(0);
  }
}
@keyframes menuOn {
  0% {
    opacity: 0;
    transform: translateX(100%);
  }
  100% {
    opacity: 0.9;
    transform: translateX(0);
  }
}
@keyframes menuHide {
  0% {
    opacity: 0.9;
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    transform: translateX(100%);
  }
}
a {
  color: #414b5b;
}

.header {
  width: 100%;
  height: 60px;
  position: relative;
  background-color: transparent;
  z-index: 50;
}
.header .menu {
  width: 100%;
  height: 60px;
  display: flex;
  padding: 15px 0;
  justify-content: space-between;
  align-items: center;
}
.header .menu-logo {
  height: 100%;
  width: 10%;
}
.header .menu-logo img {
  width: 100%;
}
.header .menu-list {
  height: 100%;
}
.header .menu-list ul {
  margin: 0;
  padding: 0;
  height: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  cursor: pointer;
}
.header .menu-list ul li {
  list-style: none;
  margin-left: 30px;
  transition: all 0.7s ease-in;
}
.header .menu-list ul li p {
  text-decoration: none;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 23px;
  margin-bottom: 0;
}
.header .menu-list ul li:hover p {
  color: #e82c70;
}
.header .menu-mobile {
  display: none;
  position: relative;
  width: 22px;
  height: 14px;
  cursor: pointer;
  border: none;
  background: none;
}
.header .menu-mobile span {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 2px;
  transition: all 0.2s, background 0s;
  background: linear-gradient(227.57deg, #fb3494 2.8%, #e92724 85.85%);
}
.header .menu-mobile span:nth-child(2) {
  top: 6px;
}
.header .menu-mobile span:last-child {
  top: 12px;
}
.header .menu-mobile.nav-open span:first-child, .header .menu-mobile.nav-open span:last-child {
  top: 8px;
}
.header .menu-mobile.nav-open span:first-child {
  transform: rotate(45deg);
}
.header .menu-mobile.nav-open span:last-child {
  transform: rotate(-45deg);
}
.header .menu-mobile.nav-open span:nth-child(2) {
  opacity: 0;
  visibility: hidden;
}
.header .menu-sub {
  display: none;
  top: 60px;
  right: 0;
  width: 70%;
  height: 100vh;
  position: absolute;
  background: linear-gradient(227.57deg, #fb3494 2.8%, #e92724 85.85%);
  animation: menuHide 0.5s;
  z-index: 10;
}
.header .menu-sub ul {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 20px;
  padding-left: 30px;
}
.header .menu-sub ul li {
  width: 100%;
  list-style: none;
  margin-bottom: 10px;
  border-bottom: 1px solid #fe5190;
  padding: 15px 0;
}
.header .menu-sub ul li a {
  width: 100%;
  text-decoration: none;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  color: #ffffff;
}
.header .menu-sub.on-hide {
  display: block;
  animation: menuOn 0.5s;
}
.header.sticky {
  width: 100%;
  height: 60px;
  background-color: #ffffff;
  box-shadow: 0px 4px 40px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;
  right: 0;
  z-index: 100;
  animation: slideDown 0.4s ease-in-out;
}

.top-circle {
  position: absolute;
  top: 0;
  right: 0;
  height: 830px;
  width: 40%;
  z-index: -1;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
}
.top-circle img {
  width: 100%;
}

.overlay {
  width: 100%;
  height: 100%;
  position: fixed;
  display: none;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 2;
  top: 0;
}
.overlay.on {
  display: block;
}

.main {
  width: 100%;
  padding-top: 70px;
}
.main .content {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.main .content .lead-title {
  font-family: "GoogleSans", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 26px;
}
.main .content .title {
  font-family: "SVN-Avo", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 40px;
  line-height: 54px;
  color: #414b5b;
}
.main .content .swiper-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
}
.main .content .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
}
.main .content .swiper-pagination-bullet-active {
  width: 18px;
  height: 18px;
  background: none;
  background-image: url(../img/icon-dot.png);
  background-repeat: no-repeat;
  margin-bottom: 0;
}
.main .content-software {
  width: 100%;
  display: flex;
}
.main .content-software-left h2 {
  margin-top: 25px;
  margin-bottom: 35px;
}
.main .content-software-left p {
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
}
.main .content-software-right {
  position: relative;
  background-image: url("../img/bg-img.png");
  background-repeat: no-repeat;
  background-size: 60% 100%;
  background-position: center;
}
.main .content-software-right-img {
  width: 100%;
  height: 100%;
}
.main .content-software-right-img img {
  width: 100%;
  transition: all 0.4s ease-in-out;
}
.main .content-software-right-img img:hover {
  transform: scale(1.02);
}
.main .content-about {
  width: 100%;
  background-image: url("../img/bg-img-about.png");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  text-align: center;
  margin-top: 150px;
}
.main .content-about h2 {
  margin-top: 8px;
  margin-bottom: 35px;
}
.main .content-about-main {
  width: 100%;
}
.main .content-about-main-item {
  padding: 0 20px;
  text-align: initial;
  box-sizing: border-box;
}
.main .content-about-main-item img {
  width: 100%;
  transition: all 0.4s ease-in-out;
}
.main .content-about-main-item img:hover {
  transform: scale(1.02);
}
.main .content-about-main-item p {
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
}
.main .content-about-main-item .data {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-top: 90px;
}
.main .content-about-main-item .data-item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-right: 70px;
}
.main .content-about-main-item .data-item span {
  font-weight: 700;
  font-size: 36px;
  line-height: 36px;
  background: linear-gradient(208.58deg, #fb3494 24.31%, #e92724 65.14%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 18px;
}
.main .content-about-main-item .data-item p {
  font-weight: 400;
  font-size: 18px;
  line-height: 26px;
}
.main .content-value {
  width: 100%;
  text-align: center;
  margin-top: 80px;
}
.main .content-value-text {
  padding: 0 160px;
}
.main .content-value h2 {
  margin-bottom: 24px;
  margin-top: 0;
}
.main .content-value-mobile {
  width: 100%;
  display: none;
}
.main .content-value-mobile img {
  width: 100%;
}
.main .content-value-main {
  width: 100%;
  height: 550px;
  background-image: url("../img/bg-value.png");
  background-repeat: no-repeat;
  background-size: 45% 80%;
  background-position: center bottom;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.main .content-value-main-item {
  text-align: initial;
  margin-top: 220px;
}
.main .content-value-main-item-left {
  display: none;
}
.main .content-value-main-item span {
  display: inline-block;
  margin-bottom: 20px;
}
.main .content-value-main-item .blue {
  color: #50cbe8;
}
.main .content-value-main-item .yellow {
  color: #f3ba4c;
}
.main .content-value-main-item .green {
  color: #c8cf49;
}
.main .content-value-main-item.value-center {
  margin-top: 42px;
  text-align: center;
}
.main .content-value .value-titleLast {
  width: 100%;
  margin-top: -70px;
  background: linear-gradient(275.59deg, #fb3494 47.73%, #e92724 81.01%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.main .content-product {
  width: 100%;
  background-image: url("../img/bg-product.png");
  background-repeat: no-repeat;
  background-size: 100% 50%;
  background-position: center top;
  margin-top: 70px;
}
.main .content-product-main {
  width: 100%;
  padding-top: 50px;
  text-align: center;
  box-sizing: border-box;
}
.main .content-product-main h2 {
  font-family: "SVN-Avo";
  font-style: normal;
  font-weight: 700;
  font-size: 40px;
  line-height: 56px;
  text-align: center;
  color: #ffffff;
  margin: 0;
}
.main .content-product-main p {
  color: #ffffff;
  margin-top: 14px;
  padding: 0 100px;
}
.main .content-product-main .productSwiper {
  width: 100%;
  box-sizing: border-box;
  padding-bottom: 50px;
}
.main .content-product-main .swiper-wrapper {
  width: 100%;
}
.main .content-product-main-item {
  margin-top: 50px;
}
.main .content-product-main-item .product-img img {
  width: 100%;
  transition: all 0.4s ease-in-out;
}
.main .content-product-main-item .product-img img:hover {
  transform: scale(1.02);
}
.main .content-product-main-item .product-info {
  background-color: #ffffff;
  padding: 33px 24px 0 24px;
  box-sizing: border-box;
  text-align: initial;
}
.main .content-product-main-item .product-info h3 {
  margin: 0;
  font-style: normal;
  font-weight: 700;
  font-size: 32px;
  line-height: 36px;
  background: linear-gradient(275.59deg, #fb3494 47.73%, #e92724 81.01%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.main .content-product-main-item .product-info p {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  color: #414b5b;
  padding: 0;
  margin-bottom: 22px;
}
.main .content-product-main-item .product-info span {
  display: block;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  margin-bottom: 12px;
  position: relative;
  margin-left: 18px;
}
.main .content-product-main-item .product-info span::before {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  background-image: url(../img/Icon-checked.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  margin-left: -18px;
}
.main .content-product-main-item .product-info button {
  width: 220px;
  height: 48px;
  border: none;
  cursor: pointer;
  margin-top: 40px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s ease-in-out;
}
.main .content-product-main-item .product-info button p {
  font-weight: 700;
  font-size: 20px;
  line-height: 28px;
  text-align: center;
  color: #fb3494;
  margin: 0;
  padding: 0;
  transition: all 0.5s ease-in-out;
}
.main .content-product-main-item .product-info button:hover {
  background: linear-gradient(275.59deg, #fb3494 47.73%, #e92724 81.01%);
}
.main .content-product-main-item .product-info button:hover p {
  color: #ffffff;
}
.main .content-quote {
  width: 100%;
  padding-top: 50px;
  display: flex;
  flex-direction: column;
}
.main .content-quote h2 {
  width: 100%;
  font-weight: 700;
  font-size: 32px;
  line-height: 48px;
  text-align: center;
  text-transform: uppercase;
  color: #414b5b;
  margin-bottom: 35px;
}
.main .content-quote-main table {
  width: 100%;
}
.main .content-quote-main table thead tr {
  background-color: #1289df;
}
.main .content-quote-main table thead tr th {
  border: 1px solid #2aa6ff;
  text-align: center;
  color: #ffffff;
  font-weight: 500;
  font-size: 15px;
  line-height: 21px;
  padding: 10px 5px;
}
.main .content-quote-main table thead tr:first-child th {
  background-color: #0074c9;
  border: 1px solid #2aa6ff;
}
.main .content-quote-main table thead tr:first-child th:nth-child(2) {
  background-color: #1289df;
}
.main .content-quote-main table tbody tr td {
  border: 1px solid #2aa6ff;
  padding: 20px 10px;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #444444;
  padding: 20px;
  vertical-align: top;
}
.main .content-quote-main table tbody tr td:first-child {
  font-weight: 700;
  font-size: 15px;
  line-height: 34px;
  color: #000000;
}
.main .content-quote-main table tbody tr td h4 {
  font-weight: 700;
  font-size: 18px;
  line-height: 21px;
  color: #444444;
  margin-bottom: 18px;
}
.main .content-quote-main table tbody tr td h3 {
  font-weight: 700;
  font-size: 24px;
  line-height: 24px;
  color: #dd0202;
}
.main .content-quote-bottom {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-top: 24px;
}
.main .content-quote-bottom a {
  color: #0590ea;
}
.main .content-price {
  padding-top: 130px;
}
.main .content-price h2 {
  text-align: center;
  width: 100%;
  margin-bottom: 8px;
}
.main .content-price h2 span {
  display: block;
}
.main .content-price .des {
  text-align: center;
  margin-bottom: 0;
}
.main .content-price-main {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  -moz-column-gap: 24px;
       column-gap: 24px;
  margin-top: 40px;
}
.main .content-price-main-item {
  background: #f5f5f5;
  border: 1px solid #bbbbbb;
  border-radius: 22px;
}
.main .content-price-main-item h2 {
  background: #f5f5f5;
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.12);
  padding: 24px 10px;
  border-top-left-radius: 22px;
  border-top-right-radius: 22px;
  font-weight: 700;
  font-size: 24px;
  line-height: 120%;
  color: #171717;
  padding: 24px 0;
  text-align: center;
  margin-bottom: 0;
}
.main .content-price-main-item h3 {
  background: rgba(0, 0, 0, 0.16);
  padding: 12px 0;
  text-align: center;
  font-weight: 700;
  font-size: 20px;
  line-height: 120%;
  color: #171717;
  margin-bottom: 0;
}
.main .content-price-main-item h3 span {
  font-weight: 400;
  font-size: 14px;
  line-height: 120%;
  color: #414141;
  margin-right: 10px;
}
.main .content-price-main-item .label {
  padding: 8px 16px;
  border-bottom: 1px solid #ececec;
  position: relative;
}
.main .content-price-main-item .label:last-child {
  border-bottom: none;
}
.main .content-price-main-item .label .up {
  background: #eca400;
  border-radius: 200px;
  padding: 4px 8px;
  font-weight: 700;
  font-size: 12px;
  line-height: 150%;
  color: #ffffff;
  position: absolute;
  top: 8px;
  right: 16px;
}
.main .content-price-main-item .label p {
  font-weight: 700;
  font-size: 18px;
  line-height: 150%;
  color: #414b5b;
  margin-bottom: 0;
}
.main .content-price-main-item .label ul {
  margin: 0;
  padding: 0;
  margin-top: 8px;
  padding-left: 12px;
  width: 100%;
}
.main .content-price-main-item .label ul li {
  list-style: none;
  position: relative;
  padding-left: 24px;
  margin-bottom: 4px;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #414b5b;
  display: flex;
  justify-content: space-between;
}
.main .content-price-main-item .label ul li::before {
  content: "";
  position: absolute;
  top: 15%;
  left: 0;
  width: 16px;
  height: 16px;
  background-image: url(/img/Icon-checked.png);
  background-size: 100% 100%;
  background-repeat: no-repeat;
}
.main .content-price-main-item .label ul li p {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #414b5b;
  width: 70%;
}
.main .content-price-main-item .label ul li .up {
  position: relative;
  top: 0;
  right: 0;
  height: auto;
  width: 70px;
  height: -moz-fit-content;
  height: fit-content;
  margin-left: 8px;
}
.main .content-price-main .medium h2 {
  background: #ef4099;
  color: #ffffff;
}
.main .content-price-main .medium h3 {
  background: #8e3f96;
  color: #ffffff;
}
.main .content-price-main .medium h3 span {
  color: #ffffff;
}
.main .content-price-main .best {
  border: 4px solid #eca400;
  position: relative;
}
.main .content-price-main .best img {
  position: absolute;
  top: -30px;
  right: -45px;
}
.main .content-price-main .best h2 {
  background: linear-gradient(90deg, #e92825 0%, #e9253d 100%);
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.16);
  color: #ffffff;
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
}
.main .content-price-main .best h3 {
  background: #ba1e2d;
  color: #ffffff;
}
.main .content-price-main .best h3 span {
  color: #ffffff;
}
.main .content-price-main.vn {
  grid-template-columns: repeat(2, 1fr);
}
.main .content-news {
  width: 100%;
  margin-top: 150px;
  text-align: center;
}
.main .content-news h2 {
  font-family: "SVN-Avo";
  font-style: normal;
  font-weight: 700;
  font-size: 40px;
  line-height: 28px;
  color: #414b5b;
  margin-bottom: 24px;
}
.main .content-news p {
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  text-align: center;
  color: #414b5b;
}
.main .content-news-main {
  padding-top: 35px;
  padding-bottom: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.main .content-news-main-item {
  margin-bottom: 30px;
}
.main .content-news-main-item a {
  text-decoration: none;
  height: 100%;
}
.main .content-news-main-item a img {
  width: 100%;
  transition: all 0.3s ease-in-out;
}
.main .content-news-main-item a p {
  font-weight: 700;
  font-size: 18px;
  line-height: 27px;
  color: #414b5b;
  margin-bottom: 0;
  margin-top: 24px;
  text-align: initial;
  text-decoration: none;
}
.main .content-news-main-item:hover a img {
  transform: translateY(5px);
}
.main .content-news-main-item:hover a p {
  color: #e82c70;
}
.main .content-news-main .swiper-pagination-news {
  width: 100%;
  bottom: 0px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.main .content-news-main .swiper-pagination-news .swiper-pagination-bullet {
  margin: 0 5px;
}
.main .content-news button {
  width: 220px;
  height: 48px;
  margin-top: 35px;
  background-color: transparent;
  border-radius: 5px;
  border: 1px solid #fb3494;
  transition: all 0.5s ease-in-out;
}
.main .content-news button a {
  color: #fb3494;
  text-decoration: none;
  font-weight: 700;
  font-size: 20px;
  line-height: 28px;
  text-align: center;
  transition: all 0.5s ease-in-out;
}
.main .content-news button:hover {
  background: linear-gradient(275.59deg, #fb3494 47.73%, #e92724 81.01%);
}
.main .content-news button:hover a {
  color: #ffffff;
}
.main .content-business {
  width: 100%;
  margin-top: 130px;
  text-align: center;
}
.main .content-business h2 {
  margin-bottom: 24px;
}
.main .content-business p {
  color: #999999;
}
.main .content-business-main {
  width: 100%;
  margin-top: 70px;
  padding: 60px 30px;
  padding-bottom: 50px;
  box-sizing: border-box;
}
.main .content-business-main-item {
  background-color: #ffffff;
  border-radius: 10px;
  height: 150px;
  filter: drop-shadow(0px 2px 20px rgba(156, 48, 74, 0.05));
  padding: 15px 20px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
  cursor: pointer;
}
.main .content-business-main-item img {
  width: 50px;
}
.main .content-business-main-item p {
  font-weight: 700;
  font-size: 16px;
  line-height: 20px;
  color: #102454;
  margin-bottom: 0;
  transition: all 0.5s ease-in-out;
}
.main .content-business-main-item:hover {
  filter: drop-shadow(0px 10px 20px rgba(65, 75, 91, 0.2));
}
.main .content-business-main-item:hover p {
  color: #e82c70;
}

.footer {
  width: 100%;
  margin-top: 120px;
  background-image: url(../img/bg-footer.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  padding-top: 80px;
}
.footer .footer-content {
  width: 100%;
  color: #ffffff;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #ea4dab;
  padding-bottom: 30px;
}
.footer .footer-content-left h2 {
  font-family: "SVN-Avo";
  font-style: normal;
  font-weight: 700;
  font-size: 40px;
  line-height: 64px;
  margin: 0;
  margin-bottom: 7px;
}
.footer .footer-content-left .footer-social a {
  margin-right: 10px;
}
.footer .footer-content-right {
  padding-left: 100px;
  padding-top: 50px;
}
.footer .footer-content-right h2 {
  font-weight: 700;
  font-size: 20px;
  line-height: 30px;
}
.footer .footer-content-right .footer-text {
  display: flex;
}
.footer .footer-content-right .footer-text img {
  width: 24px;
  height: 24px;
  margin-right: 10px;
}
.footer h3 {
  width: 100%;
  color: #ffffff;
  text-align: center;
  padding: 30px 0;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  margin: 0;
}

@media screen and (max-width: 1399px) {
  .main .content-value-main {
    background-size: 50% 80%;
  }
}
@media screen and (max-width: 1199px) {
  .main .content-software-right {
    background-position: center top;
    background-size: 60% 65%;
  }
  .main .content-value-main {
    background-size: 50% 70%;
  }
  .main .content-value .value-titleLast {
    font-size: 35px;
  }
  .main .content-price-main {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 40px;
    grid-template-areas: "a a " " b b ";
  }
  .main .content-price-main-item.best {
    grid-area: b;
    align-self: center;
    justify-self: center;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .header .menu-list ul li {
    margin-left: 15px;
  }
  .header .menu-list ul li a {
    font-size: 16px;
  }
  .main .content .title {
    font-size: 30px;
    line-height: 34px;
  }
  .main .content-software-right {
    background-size: 60% 45%;
  }
  .main .content-software-left h2 {
    margin: 10px 0;
  }
  .main .content-about {
    margin-top: 50px;
  }
  .main .content-about-main-item .data {
    margin-top: 20px;
    align-items: flex-start;
  }
  .main .content-about-main-item .data-item {
    margin-right: 0;
  }
  .main .content-about-main-item .data-item span {
    font-size: 20px;
  }
  .main .content-value {
    margin-top: 50px;
  }
  .main .content-value-text {
    padding: 0;
  }
  .main .content-value h2 {
    display: none;
  }
  .main .content-value-mobile {
    display: block;
    margin: 20px 0;
    position: relative;
  }
  .main .content-value-mobile .value-titleLast {
    display: block;
    position: absolute;
    line-height: 40px;
  }
  .main .content-value-main {
    background: none;
    display: flex;
    flex-direction: column;
  }
  .main .content-value-main-item {
    margin-top: 20px;
    display: flex;
  }
  .main .content-value-main-item-left {
    display: block;
    width: 20%;
    padding-right: 10px;
  }
  .main .content-value-main-item-left img {
    width: 100%;
  }
  .main .content-value-main-item-right {
    width: 80%;
  }
  .main .content-value-main-item .vision {
    position: relative;
    margin-left: 15px;
  }
  .main .content-value-main-item .vision::before {
    position: absolute;
    content: "";
    width: 3px;
    height: 100%;
    background: linear-gradient(0deg, #7fd5e9, #7fd5e9), #7fd5e9;
    margin-left: -15px;
  }
  .main .content-value-main-item .mission {
    position: relative;
    margin-left: 15px;
  }
  .main .content-value-main-item .mission::before {
    position: absolute;
    content: "";
    width: 3px;
    height: 100%;
    background: #ffd685;
    margin-left: -15px;
  }
  .main .content-value-main-item .core {
    position: relative;
    margin-left: 15px;
  }
  .main .content-value-main-item .core::before {
    position: absolute;
    content: "";
    width: 3px;
    height: 100%;
    background: #dbe086;
    margin-left: -15px;
  }
  .main .content-value-main .value-center {
    text-align: initial;
  }
  .main .content-product {
    margin-top: 50px;
  }
  .main .content-product-main-item .product-info h3 {
    font-size: 20px;
    line-height: 26px;
  }
  .main .content-product-main-item .product-img {
    display: flex;
    align-items: center;
  }
  .main .content-quote-main {
    overflow-x: scroll;
  }
  .main .content-business {
    margin-top: 50px;
  }
  .main .content-business-main {
    margin-top: 30px;
  }
  .footer {
    margin-top: 30px;
    padding-top: 55px;
  }
  .footer .footer-content {
    padding-bottom: 0;
  }
}
@media screen and (max-width: 767px) {
  .header {
    background-color: #ffffff;
  }
  .header .menu-logo {
    width: 30%;
  }
  .header .menu-list {
    display: none;
  }
  .header .menu-mobile {
    display: block;
  }
  .top-circle {
    width: 60%;
  }
  .main .content .container {
    padding: 0 30px;
  }
  .main .content .title {
    font-size: 20px;
    line-height: 24px;
  }
  .main .content .lead-title {
    font-size: 18px;
  }
  .main .content-about {
    margin-top: 50px;
  }
  .main .content-about-main-item {
    padding: 0;
    margin-bottom: 10px;
  }
  .main .content-about-main-item .data {
    margin-top: 40px;
    justify-content: space-between;
  }
  .main .content-about-main-item .data-item {
    margin-right: 0;
  }
  .main .content-about-main-item .data-item span {
    font-size: 24px;
  }
  .main .content-value {
    margin-top: 30px;
  }
  .main .content-value-text {
    padding: 0;
  }
  .main .content-value h2 {
    display: none;
  }
  .main .content-value-mobile {
    display: block;
    margin: 20px 0;
  }
  .main .content-value-mobile .value-titleLast {
    display: block;
    font-size: 20px;
    line-height: 35px;
  }
  .main .content-value-main {
    background: none;
    display: flex;
    flex-direction: column;
    height: auto;
  }
  .main .content-value-main-item {
    margin-top: 20px;
    display: flex;
  }
  .main .content-value-main-item-left {
    display: block;
    width: 20%;
  }
  .main .content-value-main-item-left img {
    width: 100%;
  }
  .main .content-value-main-item-right {
    width: 80%;
    padding-left: 10px;
  }
  .main .content-value-main-item .vision {
    position: relative;
    margin-left: 15px;
  }
  .main .content-value-main-item .vision::before {
    position: absolute;
    content: "";
    width: 3px;
    height: 100%;
    background: linear-gradient(0deg, #7fd5e9, #7fd5e9), #7fd5e9;
    margin-left: -15px;
  }
  .main .content-value-main-item .mission {
    position: relative;
    margin-left: 15px;
  }
  .main .content-value-main-item .mission::before {
    position: absolute;
    content: "";
    width: 3px;
    height: 100%;
    background: #ffd685;
    margin-left: -15px;
  }
  .main .content-value-main-item .core {
    position: relative;
    margin-left: 15px;
  }
  .main .content-value-main-item .core::before {
    position: absolute;
    content: "";
    width: 3px;
    height: 100%;
    background: #dbe086;
    margin-left: -15px;
  }
  .main .content-value-main .value-center {
    text-align: initial;
  }
  .main .content-product {
    margin-top: 30px;
  }
  .main .content-product-main h2 {
    font-size: 20px;
    line-height: 24px;
    margin-bottom: 24px;
  }
  .main .content-product-main p {
    padding: 0;
  }
  .main .content-product-main-item {
    margin-top: 0;
  }
  .main .content-product-main-item .product-info {
    margin-top: 10px;
  }
  .main .content-product-main-item .product-info h3 {
    font-size: 18px;
    line-height: 24px;
  }
  .main .content-price-main {
    grid-template-columns: 1fr;
    grid-template-areas: none;
  }
  .main .content-price-main-item h2 {
    font-size: 18px;
    line-height: 22px;
  }
  .main .content-price-main-item h3 {
    font-size: 16px;
    line-height: 20px;
  }
  .main .content-price-main-item .label p {
    font-size: 16px;
  }
  .main .content-price-main-item .label ul li p {
    width: 65%;
  }
  .main .content-price-main .best {
    grid-area: auto;
  }
  .main .content-price-main .best img {
    width: 70px;
    height: 95px;
    right: -35px;
  }
  .main .content-quote-main {
    overflow-x: scroll;
  }
  .main .content-quote-main h2 {
    font-size: 30px;
    line-height: 38px;
  }
  .main .content-quote-main table tbody tr td h3 {
    font-size: 20px;
  }
  .main .content-business {
    margin-top: 30px;
  }
  .main .content-business-main {
    margin-top: 20px;
  }
  .footer {
    margin-top: 20px;
    padding-top: 50px;
    background-size: cover;
    background-position: center top;
  }
  .footer .container {
    padding: 0 30px;
  }
  .footer .footer-content {
    padding-bottom: 5px;
  }
  .footer .footer-content-right {
    padding-left: 0;
    padding-top: 20px;
  }
  .footer .footer-content-left h2 {
    font-size: 35px;
    line-height: 50px;
  }
  .footer h3 {
    padding: 10px 0;
  }
}/*# sourceMappingURL=style.css.map */