.fade-in {
  animation-fill-mode: forwards;
  animation: fadeInUp 1.5s 0.4s ease both;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(100px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.section-4 .accordion.v1.v1-0-1 .accordion-item .accordion-body {
  word-break: break-word;
}
.btn-29 :after,
.btn-29 :before,
.btn-29:after,
.btn-29:before {
  border: 0 solid;
  box-sizing: border-box;
}

.btn-29 {
  -webkit-tap-highlight-color: transparent;

  background-image: none;
  cursor: pointer;
  -webkit-mask-image: -webkit-radial-gradient(#000, #fff);
}

.btn-29:disabled {
  cursor: default;
}

.btn-29:-moz-focusring {
  outline: auto;
}

.btn-29 svg {
  display: block;
  vertical-align: middle;
}

.btn-29 [hidden] {
  display: none;
}

.btn-29 {
  --tilt: 30px;
  place-content: center;
}
.btn-29:hover {
  border: none;
}
.btn-29.btn-blue {
  border: 2px solid #0670fb;
}
.btn-29.btn-purple {
  border: 2px solid #6767ff;
}

.btn-29,
.btn-29 .text-container {
  overflow: hidden;
  position: relative;
}

.btn-29 .text-container {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.btn-29 .text {
  display: block;
  font-weight: 600;
  position: relative;
}

.btn-29:hover .text {
  -webkit-animation: move-right-alternate 0.3s ease forwards;
  animation: move-right-alternate 0.3s ease forwards;
  color: #f50;
}

.btn-29.btn-blue:hover .text {
  color: #0670fb;
}

.btn-29.btn-purple:hover .text {
  color: #6767ff;
}

.btn-29.btn-outline-black:hover .text {
  color: #fff;
}

.btn-29:before {
  -webkit-animation: move-out 0.3s ease;
  animation: move-out 0.3s ease;
  background: #fff;
  -webkit-clip-path: polygon(
    0 0,
    calc(100% - var(--tilt)) 0,
    100% 50%,
    calc(100% - var(--tilt)) 100%,
    0 100%
  );
  clip-path: polygon(
    0 0,
    calc(100% - var(--tilt)) 0,
    100% 50%,
    calc(100% - var(--tilt)) 100%,
    0 100%
  );
  content: "";
  height: 100%;
  left: calc(-100% - var(--tilt));
  position: absolute;
  top: 0;
  width: calc(100% + var(--tilt));
}
.btn-29.btn-outline-black:before {
  background: #212121;
}

.btn-29:hover:before {
  -webkit-animation: move-in 0.3s ease forwards;
  animation: move-in 0.3s ease forwards;
}

@-webkit-keyframes move-in {
  0% {
    transform: translateX(0);
  }
  to {
    transform: translateX(100%);
  }
}
@keyframes move-in {
  0% {
    transform: translateX(0);
  }
  to {
    transform: translateX(100%);
  }
}
@-webkit-keyframes move-out {
  0% {
    transform: translateX(100%);
  }
  to {
    transform: translateX(200%);
  }
}
@keyframes move-out {
  0% {
    transform: translateX(100%);
  }
  to {
    transform: translateX(200%);
  }
}

/* -- */
main main main {
  background: url(https://images.tenorshare.com/img-2024/store/store-banner-bg-mobile.webp)
    no-repeat;
  background-size: 100% auto;
}
@media (min-width: 1280px) {
  main main main {
    background: url(https://images.tenorshare.com/img-2024/store/store-img-banner.webp)
      no-repeat;
    background-size: 100% auto;
  }
}

@-webkit-keyframes move-in {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
}

@keyframes move-in {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
}
@-webkit-keyframes move-out {
  0% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
  to {
    -webkit-transform: translateX(200%);
    transform: translateX(200%);
  }
}
@keyframes move-out {
  0% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
  to {
    -webkit-transform: translateX(200%);
    transform: translateX(200%);
  }
}
@-webkit-keyframes zoom-in {
  0% {
    -webkit-transform: scale3d(0.5, 0.5, 0.5);
    transform: scale3d(0.5, 0.5, 0.5);
    opacity: 0;
  }
  50% {
    -webkit-animation-timing-function: cubic-bezier(0.47, 0, 0.745, 0.715);
    animation-timing-function: cubic-bezier(0.47, 0, 0.745, 0.715);
  }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
    -webkit-animation-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    animation-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    opacity: 1;
  }
}
@keyframes zoom-in {
  0% {
    -webkit-transform: scale3d(0.5, 0.5, 0.5);
    transform: scale3d(0.5, 0.5, 0.5);
    opacity: 0;
  }
  50% {
    -webkit-animation-timing-function: cubic-bezier(0.47, 0, 0.745, 0.715);
    animation-timing-function: cubic-bezier(0.47, 0, 0.745, 0.715);
  }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
    -webkit-animation-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    animation-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    opacity: 1;
  }
}

* .section-1 {
  padding: 48px 0 80px;
}
@media (min-width: 992px) {
  .section-1 {
    padding: 60px 0 160px;
  }
}
@media (min-width: 1600px) {
  .section-1 {
    padding: 80px 0 100px;
  }
}

.section-1 .coupon-banner {
  font-family: "Red Hat Display";
  border-radius: 15px;
  border: 2px solid #5f8bff;
  background: -o-linear-gradient(
      354deg,
      rgba(95, 139, 255, 0.2) 4.55%,
      rgba(68, 64, 255, 0.2) 41.9%,
      rgba(255, 23, 232, 0.2) 90.96%
    ),
    #000;
  background: linear-gradient(
      96deg,
      rgba(95, 139, 255, 0.2) 4.55%,
      rgba(68, 64, 255, 0.2) 41.9%,
      rgba(255, 23, 232, 0.2) 90.96%
    ),
    #000;
}
@media (min-width: 768px) {
  .section-1 .container {
    max-width: 100%;
  }
}

@media (min-width: 992px) {
  .section-1 .container {
    max-width: 992px;
  }
  .section-1 .coupon-banner {
    margin-bottom: 36px;
    max-width: 494px;
  }
}
@media (min-width: 1280px) {
  .section-1 .container {
    max-width: 1120px;
  }
}
@media (min-width: 1600px) {
  .section-1 .container {
    max-width: 1600px;
  }
  .section-1 .coupon-banner {
    margin-bottom: 42px;
    max-width: 810px;
  }
}
.section-1 .coupon-banner .img-box {
  max-width: 154px;
  margin-right: 26px;
}
@media (min-width: 1600px) {
  .section-1 .coupon-banner .img-box {
    max-width: 253px;
    margin-right: 30px;
  }
}
.section-1 .coupon-banner .text-box {
  margin-right: 27px;
}
.section-1 .coupon-banner .coupon-title {
  margin-bottom: 6px;
  color: #fff;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
  letter-spacing: 0.14px;
  text-align: center;
}
@media (min-width: 1600px) {
  .section-1 .coupon-banner .coupon-title {
    font-size: 24px;
  }
}
.section-1 .coupon-banner .coupon-title .text {
  background: -o-linear-gradient(355deg, #5f8bff 4.57%, #4440ff 91.41%);
  background: linear-gradient(95deg, #5f8bff 4.57%, #4440ff 91.41%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.section-1 .coupon-banner .coupon-text {
  padding: 10px 16px 10px 30px;
  border: 1.236px solid #5f8bff;
}
@media (min-width: 1600px) {
  .section-1 .coupon-banner .coupon-text {
    padding: 16px 61px;
  }
}
.section-1 .coupon-banner .coupon-text p {
  margin-bottom: 0;
  background: -o-linear-gradient(
    355deg,
    #5f8bff 4.57%,
    #4440ff 42.11%,
    #ff17e8 91.41%
  );
  background: linear-gradient(
    95deg,
    #5f8bff 4.57%,
    #4440ff 42.11%,
    #ff17e8 91.41%
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 15px;
  font-weight: 400;
  line-height: 11px;
}
@media (min-width: 1600px) {
  .section-1 .coupon-banner .coupon-text p {
    font-size: 24px;
    line-height: 18px;
  }
}
.section-1 .coupon-banner .copy-btn {
  padding: 10px 8px;
  border: 1.236px solid #5f8bff;
  background: #fff;
}
@media (min-width: 1600px) {
  .section-1 .coupon-banner .copy-btn {
    padding: 16px 30px;
  }
}
.section-1 .coupon-banner .copy-btn p {
  margin-bottom: 0;
  color: #000;
  font-size: 15px;
  font-weight: 900;
  line-height: 11px;
}
@media (min-width: 1600px) {
  .section-1 .coupon-banner .copy-btn p {
    font-size: 18px;
    line-height: 18px;
  }
}
.section-1 .h2-title {
  margin-bottom: 48px;
  font-size: 32px;
  font-weight: 900;
  line-height: 130%;
}
@media (min-width: 992px) {
  .section-1 .h2-title {
    margin-bottom: 36px;
    font-size: 36px;
    line-height: 140%;
  }
}
@media (min-width: 1600px) {
  .section-1 .h2-title {
    margin-bottom: 20px;
    font-size: 48px;
  }
}
.section-1 .container {
  padding-right: 0;
  padding-left: 0;
}
@media (min-width: 992px) {
  .section-1 .container {
    padding-right: 0.75rem;
    padding-left: 0.75rem;
  }
}
@media (min-width: 1600px) {
  .section-1 .container {
    padding-right: 1.25rem;
    padding-left: 1.25rem;
  }
}
.section-1 .download-btn,
.section-1 .buy-btn {
  --tilt: 30px;
  overflow: hidden;
  position: relative;
  min-width: 200px;
}
@media (min-width: 1600px) {
  .section-1 .download-btn,
  .section-1 .buy-btn {
    min-width: 222px;
  }
}
.section-1 .download-btn :nth-of-type(1),
.section-1 .buy-btn :nth-of-type(1) {
  position: relative;
  z-index: 2;
}
.section-1 .download-btn::before,
.section-1 .buy-btn::before {
  -webkit-animation: move-out 0.3s ease;
  animation: move-out 0.3s ease;
  background: #fff;
  -webkit-clip-path: polygon(
    0 0,
    calc(100% - var(--tilt)) 0,
    100% 50%,
    calc(100% - var(--tilt)) 100%,
    0 100%
  );
  clip-path: polygon(
    0 0,
    calc(100% - var(--tilt)) 0,
    100% 50%,
    calc(100% - var(--tilt)) 100%,
    0 100%
  );
  content: "";
  height: 100%;
  left: calc(-100% - var(--tilt));
  position: absolute;
  top: 0;
  width: calc(100% + var(--tilt));
  z-index: 1;
}
.section-1 .download-btn:hover,
.section-1 .buy-btn:hover {
  color: #f50;
}
.section-1 .download-btn:hover::before,
.section-1 .buy-btn:hover::before {
  -webkit-animation: move-in 0.3s ease forwards;
  animation: move-in 0.3s ease forwards;
}
.section-1 .cell {
  margin-top: 33px;
  padding: 0 30px 32px;
  background: url("../png/cell-bg.png")
    #fff top/100% 245px no-repeat;
  border-radius: 16px;
  border: 2px solid #f50;
}
@media (min-width: 992px) {
  .section-1 .cell {
    margin-top: 42px;
    border: 1px solid #d8dfe2;
    -webkit-transition: border 0.2s;
    -o-transition: border 0.2s;
    transition: border 0.2s;
  }
}
@media (min-width: 1600px) {
  .section-1 .cell {
    margin-top: 58px;
  }
}
.section-1 .cell .arc-02 {
  display: none;
}
@media (min-width: 992px) {
  .section-1 .cell:hover {
    border: 1px solid #f50;
  }
  .section-1 .cell:hover .tp-logo {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
  }
  .section-1 .cell:hover .arc-01 {
    display: none;
  }
  .section-1 .cell:hover .arc-02 {
    display: block;
    max-width: 98%;
  }
}
.section-1 .cell .tp-logo {
  margin-top: -33px;
  width: 72px;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
@media (min-width: 992px) {
  .section-1 .cell .tp-logo {
    margin-top: -42px;
    width: 92px;
  }
}
@media (min-width: 1600px) {
  .section-1 .cell .tp-logo {
    margin-top: -54px;
    width: 112px;
  }
}
.section-1 .cell .tp-arc {
  margin-top: -40px;
  margin-bottom: 16px;
  width: 124px;
}
@media (min-width: 992px) {
  .section-1 .cell .tp-arc {
    margin-top: -50px;
    width: 160px;
  }
}
@media (min-width: 1600px) {
  .section-1 .cell .tp-arc {
    margin-top: -58px;
    width: 194px;
  }
}
.section-1 .cell .title-box {
  margin-bottom: 40px;
}
@media (min-width: 992px) {
  .section-1 .cell .title-box {
    margin-bottom: 64px;
  }
}
.section-1 .cell .title-box .text {
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  color: #000;
}
@media (min-width: 1600px) {
  .section-1 .cell .title-box .text {
    font-size: 18px;
  }
}
.section-1 .cell .title-box a {
  color: #000;
}
.section-1 .cell .title-box a:hover {
  color: #f50;
}
.section-1 .cell .h4-title {
  font-size: 20px;
  font-weight: 500;
  line-height: 150%;
}
@media (min-width: 992px) {
  .section-1 .cell .h4-title {
    font-size: 24px;
    line-height: 130%;
  }
}
@media (min-width: 1600px) {
  .section-1 .cell .h4-title {
    font-size: 26px;
  }
}
.section-1 .cell .purchase {
  font-size: 36px;
  font-weight: 900;
  line-height: 140%;
}
@media (min-width: 1600px) {
  .section-1 .cell .purchase {
    font-size: 48px;
  }
}
.section-1 .cell .license {
  color: #515455;
  font-size: 18px;
  font-weight: 400;
  line-height: 150%;
}
.section-1 .cell .buy-btn {
  min-width: 220px;
}
@media (min-width: 992px) {
  .section-1 .cell .buy-btn {
    min-width: 200px;
  }
}
.section-1 .swiper-tpbanner .swiper-slide-active .title-box {
  margin-bottom: 65px;
}
@media (min-width: 992px) {
  .section-1 .swiper-tpbanner .swiper-slide-active .title-box {
    margin-bottom: 64px;
  }
}
.section-1 .swiper-tpbanner .swiper-pagination {
  position: unset;
}
.section-1 .swiper-tpbanner .swiper-pagination-bullet {
  width: 4px;
  height: 4px;
  background: #d8dfe2;
  opacity: 1;
}
.section-1 .swiper-tpbanner .swiper-pagination-bullet-active {
  width: 14px;
  background: #f50;
  border-radius: 4px;
}

.section-2 {
  margin-bottom: 80px;
}
@media (min-width: 992px) {
  .section-2 {
    margin-bottom: 128px;
  }
}
@media (min-width: 1600px) {
  .section-2 {
    margin-bottom: 288px;
  }
}
.section-2 .h2-title {
  margin-bottom: 40px;
  font-size: 32px;
  font-weight: 900;
  line-height: 130%;
}
@media (min-width: 992px) {
  .section-2 .h2-title {
    margin-bottom: 60px;
    font-size: 36px;
    line-height: 140%;
  }
}
@media (min-width: 1600px) {
  .section-2 .h2-title {
    font-size: 36px;
    line-height: 140%;
  }
}
.section-2 .tab-list {
  position: sticky;
  top: 0;
  z-index: 1000;
  margin-bottom: 40px;
}
@media (min-width: 992px) {
  .section-2 .tab-list {
    margin-bottom: 60px;
  }
}
@media (min-width: 1600px) {
  .section-2 .tab-list {
    margin-bottom: 80px;
  }
}
.section-2 .tab-list .tab-item {
  background: #fff;
}
@media (min-width: 992px) {
  .section-2 .tab-list .tab-item {
    padding: 5px;
    border-radius: 12px;
  }
}
.section-2 .tab-list.fixed {
  background: #fff;
}
.section-2 .tab-list.fixed .tab-item {
  /* width: 100%; */
  padding: 0 16px;
}
@media (min-width: 992px) {
  .section-2 .tab-list.fixed .tab-item {
    width: unset;
    margin: 5px;
    background: unset;
  }
}
.section-2 .tab-list .item-link {
  padding: 8px 0;
  width: 33%;
  font-size: 16px;
  font-weight: 600;
  line-height: 130%;
  text-align: center;
  text-decoration: none;
  border-radius: 12px;
  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;
  overflow: hidden;
}
.section-2 .tab-list .item-link.active {
  color: #fff;
  background: #ff681c;
}
@media (max-width: 768px) {
  .section-2 .tab-list > div {
    overflow-x: auto;
  }
  .section-2 .tab-list .tab-item {
    gap: 12px;
    max-width: 800px;
  }
  .section-2 .tab-list.fixed .tab-item {
    width: unset;
    padding: 0;
  }
  .section-2 .tab-list .item-link {
    width: 104px;
    border-radius: 0;
  }
  .section-2 .tab-list .swiper-btn.reverse {
    transform: rotate(180deg);
  }
  .section-2 .tab-list .swiper-btn {
    transition: all 0.5s;
    cursor: pointer;
    top: 16px;
    right: -4px;
    position: absolute;
  }
}
@media (min-width: 768px) {
  .section-2 .tab-list .item-link {
    width: unset;
    padding: 8px;
  }
}
@media (min-width: 992px) {
  .section-2 .tab-list .item-link {
    padding: 20px;
    font-size: 20px;
    text-align: start;
    border-radius: 12px;
  }

  .section-2 .tab-list .item-link:hover svg path,
  .section-2 .tab-list .item-link.active svg path {
    stroke: #fff;
  }
  .section-2 .tab-list .item-link:hover svg path,
  .section-2 .tab-list .item-link.active svg path {
    fill: #ff681c;
  }
  .section-2 .tab-list .item-link:hover {
    color: #fff;
    background: #ff681c;
  }
}
@media (min-width: 1600px) {
  .section-2 .tab-list .item-link {
    padding: 17px 32px;
  }
}
.section-2 .tab-list .utility {
  vertical-align: text-bottom;
}
@media (min-width: 768px) {
  .section-2 .tab-list .utility {
    vertical-align: unset;
  }
}
@media (min-width: 992px) {
  .section-2 .tab-content {
    max-height: 900px;
    overflow: hidden;
  }
}
@media (min-width: 1600px) {
  .section-2 .tab-content {
    max-height: 1192px;
  }
}
.section-2 .tab-content.hidden {
  display: none;
}
@media (min-width: 992px) {
  .section-2 .tab-content.hidden {
    display: block;
  }
}
.section-2 .tab-content .cell-box {
  margin-bottom: 24px;
}
.section-2 .tab-content .title-logo img {
  width: 48px;
}
@media (min-width: 992px) {
  .section-2 .tab-content .cell-box {
    margin-bottom: 32px;
  }
  .section-2 .tab-content .title-logo img {
    width: 48px;
  }
}
@media (min-width: 1600px) {
  .section-2 .tab-content .cell-box {
    margin-bottom: 32px;
  }
  .section-2 .tab-content .title-logo img {
    width: 64px;
  }
}
.section-2 .tab-content .list-item {
  padding: 24px;
  border: 2px solid #d8dfe2;
  border-radius: 12px;
  background: #f3fbfe;
  display: flex;
  flex-direction: column;
}
@media (min-width: 1600px) {
  .section-2 .tab-content .list-item {
    padding: 48px;
  }
}
.section-2 .tab-content .list-item .product-icon .logo {
  width: 64px;
}
@media (min-width: 1600px) {
  .section-2 .tab-content .list-item .product-icon .logo {
    margin-bottom: 28px;
    width: 88px;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
  }
}
.section-2 .tab-content .list-item .product-icon .logo:hover {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}
.section-2 .tab-content .list-item .product-icon .icon-text {
  font-size: 24px;
  font-weight: 500;
  line-height: 130%;
  color: #000;
}
.section-2 .tab-content .list-item .product-icon a:hover .icon-text {
  color: #f50;
}
@media (min-width: 1600px) {
  .section-2 .tab-content .list-item .product-icon .icon-text {
    font-size: 26px;
  }
}
.section-2 .tab-content .list-item .txt {
  margin-bottom: 40px;
  color: #6b6b6b;
  flex: 1;
}
@media (min-width: 992px) {
  .section-2 .tab-content .list-item .txt {
    margin-bottom: 42px;
  }
}
@media (min-width: 1600px) {
  .section-2 .tab-content .list-item .txt {
    margin-bottom: 48px;
  }
}
.section-2 .tab-content .list-item .product-purchase-text .purchase-text {
  color: #212121;
  font-size: 32px;
  font-weight: 900;
  line-height: 130%;
}
@media (min-width: 1600px) {
  .section-2 .tab-content .list-item .product-purchase-text .purchase-text {
    font-size: 36px;
    line-height: 140%;
  }
}
.section-2 .tab-content .list-item .product-purchase-text .license {
  color: #212121;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
}
@media (min-width: 1600px) {
  .section-2 .tab-content .list-item .product-purchase-text .license {
    font-size: 20px;
    line-height: 140%;
  }
}
.section-2 .tab-content .list-item .product-purchase-text .purchase-del-text {
  color: #9c9c9c;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
}
@media (min-width: 1600px) {
  .section-2 .tab-content .list-item .product-purchase-text .purchase-del-text {
    font-size: 20px;
  }
}
.section-2 .tab-content .unfold-field {
  display: none;
}
@media (min-width: 992px) {
  .section-2 .tab-content .unfold-field {
    position: absolute;
    font-size: 0;
    bottom: 0;
    width: 100%;
    height: 80px;
    z-index: 3;
    background: white;
    display: block;
  }
}
@media (min-width: 992px) {
  .section-2 .tab-content .unfold-field-img {
    cursor: pointer;
    width: 60px;
    height: 46px;
    font-size: 0;
    line-height: 80px;
    text-align: center;
  }
}
.section-2 .product-btns {
  /* stylelint-disable-next-line no-descending-specificity */
}
.section-2 .product-btns .btn {
  padding: 0;
  -ms-flex-preferred-size: 45%;
  flex-basis: 48%;
}
.section-2 .product-btns .text {
  font-size: 16px;
  font-weight: 600;
  line-height: 150%;
}
.section-2 #app .product-btns .btn-black {
  flex-basis: 53%;
}
@media (max-width: 992px) {
  .section-2 .product-btns .btn {
    height: 48px;
  }
}
@media (min-width: 992px) {
  .section-2 .product-btns .btn {
    -ms-flex-preferred-size: 48%;
    flex-basis: 48%;
  }
  .section-2 #app .product-btns .btn-black {
    flex-basis: 48%;
  }
}
@media (min-width: 1600px) {
  .section-2 .product-btns .text {
    font-size: 18px;
  }
  .section-2 #app .product-btns .btn-black .text {
    font-size: 20px;
  }
  .section-2 .h3-title {
    font-size: 32px;
  }
  .section-2 .product-btns .btn {
    -ms-flex-preferred-size: 45%;
    flex-basis: 45%;
  }
  .section-2 #app .product-btns .btn-black {
    flex-basis: 43%;
  }
}

.section-3 {
  background-size: cover;
}
.section-3 .dec {
  color: #525252;
  font-size: 18px;
  font-weight: 400;
  line-height: 150%;
}
.section-3 .des-list {
  margin-top: 40px;
  max-width: 1450px;
}
@media (min-width: 992px) {
  .section-3 .des-list {
    margin-top: 60px;
  }
}
.section-3 .des-list .item {
  -ms-flex-preferred-size: 45%;
  flex-basis: 45%;
}
@media (min-width: 992px) {
  .section-3 .des-list .item {
    -ms-flex-preferred-size: unset;
    flex-basis: unset;
  }
}
.section-3 .des-list .item .tit {
  color: #212121;
  font-size: 16px;
  font-weight: 600;
  line-height: 150%;
}
.section-3 .des-list .item .des {
  color: #848484;
  font-size: 12px;
  font-weight: 400;
  line-height: 150%;
}

.section-4 {
  padding: 60px 0;
}
.section-4 h2 {
  max-width: 100%;
}
.section-4 .h2-title {
  margin-bottom: 40px;
}
@media (min-width: 992px) {
  .section-3 .des-list .item .tit {
    font-size: 18px;
  }
  .section-3 .des-list .item .des {
    font-size: 14px;
  }
  .section-4 .h2-title {
    margin-bottom: 60px;
  }
}
.section-4 .swiper-btn {
  width: 20px;
  line-height: 20px;
  height: 20px;
  display: inline-block;
  margin-left: 8px;
  margin-right: 8px;
  min-width: 24px;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.section-4 .swiper-btn.reverse {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}
.section-4 .nav-contanier {
  margin: 76px auto 0;
}
.section-4 .nav-contanier .nav-contanier-content {
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
}
.section-4 .nav-contanier .nav-contanier-content::-webkit-scrollbar {
  display: none;
}
@media (min-width: 992px) {
  .section-4 {
    padding: 160px 0 100px;
  }
  .section-4 .nav-contanier {
    margin: 72px auto 0;
  }
  .section-4 .nav-contanier::after {
    height: 4px;
  }
}
.section-4 #faq-part-content-2 .item {
  border-radius: 12px;
  padding: 32px;
  background: rgba(180, 211, 255, 0.16);
}
.section-4 #faq-part-content-2 .item .tit {
  color: #212121;
  font-size: 20px;
  font-weight: 600;
  line-height: 150%;
  /* 30px */
}
.section-4 #faq-part-content-2 .item ul {
  margin-top: 2px;
  margin-bottom: 0;
  padding-left: 0;
  list-style: none;
}
.section-4 #faq-part-content-2 .item ul li {
  margin-top: 28px;
  color: #212121;
  font-size: 18px;
  font-weight: 400;
  line-height: 150%;
  /* 27px */
}
.section-4 #faq-part-content-2 .item.item-2 ul li {
  margin-top: 24px;
}
.section-4 #faq-part-content-3 .item {
  border-radius: 12px;
  background: rgba(180, 211, 255, 0.16);
  height: 100%;
  padding: 32px;
}
.section-4 #faq-part-content-3 .item p {
  opacity: 0.8;
  color: var(--unnamed, #212121);
  font-size: 18px;
  font-weight: 400;
  line-height: 150%;
  margin-bottom: 0;
}
.section-4 #faq-part-content-3 .item .tit {
  opacity: 1;
  font-size: 20px;
  font-weight: 600;
  line-height: 150%;
  /* 30px */
}
.section-4 #faq-part-content-3 .item .sec-tit {
  opacity: 1;
  margin-top: 28px;
  font-weight: 600;
}
.section-4 #faq-part-content-3 .item svg {
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.section-4 .nav {
  margin: 0 auto;
  width: 100%;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  font-size: 14px;
}
.section-4 .nav .nav-link {
  cursor: pointer;
  line-height: 150%;
  white-space: nowrap;
  position: relative;
  text-align: center;
  color: #212121;
  font-size: 20px;
  font-weight: 500;
}
.section-4 .nav .nav-link.active {
  font-weight: 600;
}
.section-4 .nav .nav-link.active::after {
  z-index: 99;
  content: "";
  position: absolute;
  height: 2px;
  width: calc(100% - 80px);
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
@media (min-width: 992px) {
  .section-4 .nav .nav-link.active::after {
    height: 4px;
  }
}
.section-4 .nav .nav-link#faq-part-2 {
  margin-left: 100px;
}
.section-4 .nav .nav-link#faq-part-3 {
  margin-left: 100px;
}
@media (min-width: 992px) {
  .section-4 .nav {
    font-size: 18px;
  }
}
@media (min-width: 1400px) {
  .section-4 .nav {
    font-size: 20px;
  }
}
.section-4 .tab-content {
  margin-top: 40px;
}
@media (min-width: 992px) {
  .section-4 .tab-content {
    margin-top: 60px;
  }
}
.section-4 .contact {
  background-image: url("../png/bg-img3-mobile.png");
  color: white;
  margin-top: 137px;
  border-radius: 12px;
  padding: 0 14px 60px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  /* stylelint-disable-next-line no-descending-specificity */
}
.section-4 .contact .mobile-person {
  margin-top: -78px;
}
.section-4 .contact .text {
  max-width: 480px;
  margin-top: 16px;
  line-height: 150%;
  font-size: 1.125rem;
}
.section-4 .contact .btn-outline-primary {
  border-color: white;
  color: white;
  margin-top: 24px;
  font-weight: 600;
  font-size: 18px;
  min-width: 200px;
  border-radius: 6px;
}
.section-4 .contact .btn-outline-primary:hover {
  background: white;
  border-color: white;
  color: #f50;
}
.section-4 .contact .img-box {
  bottom: 0;
  right: 140px;
  text-align: center;
}
.section-4 .contact .img-box img {
  max-width: 100%;
}
@media (min-width: 992px) {
  .section-4 .contact {
    background-image: url("../png/bg-img3.png");
    padding: 55px 44px;
    margin-top: 214px;
  }
  .section-4 .contact .btn-primary {
    margin-top: 36px;
  }
  .section-4 .contact .img-box {
    position: absolute;
  }
  .section-4 .contact .img-box img {
    max-width: 304px;
  }
}
@media (min-width: 1400px) {
  .section-4 .contact {
    padding: 110px 80px;
    margin-top: 237px;
  }
  .section-4 .contact .img-box img {
    max-width: 436px;
  }
}
@media (min-width: 1400px) {
  .section-4 {
    padding: 100px 0;
  }
  .section-4 .nav-contanier {
    max-width: 1266px;
  }
}
.section-4 .accordion.v1.v1-0-1 .accordion-item {
  background: rgba(180, 211, 255, 0.1);
  overflow: hidden;
  border-radius: 12px;
  margin-bottom: 12px !important;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
  border: none !important;
}
.section-4 .accordion.v1.v1-0-1 .accordion-item .accordion-button {
  padding: 12px 16px;
  line-height: 150%;
  background: none;
}
.section-4 .accordion.v1.v1-0-1 .accordion-item .accordion-button::after {
  width: 32px;
  height: 32px;
  background-size: cover;
  background-image: url('data:image/svg+xml,<svg width="40" height="40" viewBox="0 0 40 40" fill="none" xmlns="http://www.w3.org/2000/svg"><rect x="19" y="10" width="2" height="20" rx="1" fill="%23212121"/><rect x="30" y="19" width="2" height="20" rx="1" transform="rotate(90 30 19)" fill="currentColor"/> </svg>');
}
@media (min-width: 992px) {
  .section-4 .accordion.v1.v1-0-1 .accordion-item .accordion-button::after {
    width: 40px;
    height: 40px;
  }
}
.section-4
  .accordion.v1.v1-0-1
  .accordion-item
  .accordion-button:not(.collapsed) {
  padding-bottom: 0;
  font-weight: 600;
}
.section-4
  .accordion.v1.v1-0-1
  .accordion-item
  .accordion-button:not(.collapsed)::after {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.section-4 .accordion.v1.v1-0-1 .accordion-item .accordion-body {
  padding: 1rem 2rem 1.5rem 1rem;
  word-break: break-word;
  /* stylelint-disable-next-line no-descending-specificity */
}
.section-4 .accordion.v1.v1-0-1 .accordion-item .accordion-body p {
  opacity: 0.8;
}
.section-4 .accordion.v1.v1-0-1 .accordion-item:last-child {
  margin-bottom: 0 !important;
}
@media (min-width: 992px) {
  .section-4 .accordion.v1.v1-0-1 .accordion-item .accordion-button {
    font-size: 18px;
    font-weight: 600;
    padding: 1.2rem 2.75rem;
  }
  .section-4 .accordion.v1.v1-0-1 .accordion-item .accordion-body {
    padding: 0 6.5rem 20px 2.75rem;
    font-size: 16px;
  }
}
@media (min-width: 1600px) {
  .section-4 .accordion.v1.v1-0-1 .accordion-item .accordion-button {
    font-size: 20px;
    padding: 1.5rem 2.25rem;
  }
  .section-4 .accordion.v1.v1-0-1 .accordion-item .accordion-body {
    padding: 0.625rem 8rem 24px 2.25rem;
    font-size: 18px;
  }
}

.section-5 {
  padding-bottom: 80px;
}
@media (min-width: 992px) {
  .section-5 {
    padding-bottom: 100px;
  }
}
.section-5 .component-support {
  background: #f5f9ff;
  background-size: cover;
  padding: 0 14px;
  position: relative;
  margin-top: 100px;
}
@media (min-width: 992px) {
  .section-5 .component-support {
    padding: 0 0 0 74px;
    margin-top: 120px;
  }
}
@media (min-width: 1600px) {
  .section-5 .component-support {
    padding: 0 0 0 120px;
    margin-top: 193px;
  }
}
.section-5 .component-support .lft {
  -ms-flex-preferred-size: 38%;
  flex-basis: 38%;
  position: relative;
  z-index: 1;
  padding: 40px 0;
  /* stylelint-disable-next-line no-descending-specificity */
  /* stylelint-disable-next-line no-descending-specificity */
  /* stylelint-disable-next-line no-descending-specificity */
}
@media (min-width: 1600px) {
  .section-5 .component-support .lft {
    padding: 78px 0;
  }
}
.section-5 .component-support .lft p {
  margin: 0;
}
.section-5 .component-support .lft .tit {
  font-size: 32px;
  font-weight: 900;
  line-height: 140%;
  /* 50.4px */
}
@media (min-width: 992px) {
  .section-5 .component-support .lft .tit {
    font-size: 36px;
  }
}
@media (min-width: 1600px) {
  .section-5 .component-support .lft .tit {
    font-size: 48px;
  }
}
.section-5 .component-support .lft .des {
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  /* 24px */
  margin-top: 16px;
}
@media (min-width: 1600px) {
  .section-5 .component-support .lft .des {
    font-size: 18px;
  }
}
.section-5 .component-support .lft .btn {
  margin-top: 36px;
}
.section-5 .component-support .rgt {
  margin-top: -77px;
  width: 475px;
  position: relative;
  z-index: 1;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  /* stylelint-disable-next-line no-descending-specificity */
}
@media (min-width: 992px) {
  .section-5 .component-support .rgt {
    margin-top: 0;
    width: unset;
    left: unset;
    -webkit-transform: unset;
    -ms-transform: unset;
    transform: unset;
  }
}
@media (min-width: 992px) {
  .section-5 .component-support .rgt img {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 118%;
  }
}
.section-5 .component-support::after {
  content: "";
  background: url("../png/bt-bg.png")
    center/cover no-repeat;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  border-radius: 12px;
}
.section-5 .btn-contact {
  --tilt: 30px;
  overflow: hidden;
  position: relative;
}
.section-5 .btn-contact :nth-of-type(1) {
  position: relative;
  z-index: 2;
}
.section-5 .btn-contact::before {
  -webkit-animation: move-out 0.3s ease;
  animation: move-out 0.3s ease;
  background: #fff;
  -webkit-clip-path: polygon(
    0 0,
    calc(100% - var(--tilt)) 0,
    100% 50%,
    calc(100% - var(--tilt)) 100%,
    0 100%
  );
  clip-path: polygon(
    0 0,
    calc(100% - var(--tilt)) 0,
    100% 50%,
    calc(100% - var(--tilt)) 100%,
    0 100%
  );
  content: "";
  height: 100%;
  left: calc(-100% - var(--tilt));
  position: absolute;
  top: 0;
  width: calc(100% + var(--tilt));
  z-index: 1;
}
.section-5 .btn-contact:hover {
  color: #f50;
}
.section-5 .btn-contact:hover::before {
  -webkit-animation: move-in 0.3s ease forwards;
  animation: move-in 0.3s ease forwards;
} /*# sourceMappingURL=index.css.map */
@media (max-width: 992px) {
  .section-1 .cell {
    background: url(../png/cell-bg.png)
      #fff top/100% 190px no-repeat;
  }
}
@media (max-width: 667px) {
  .section-1 .cell {
    background: url(../png/cell-bg.png)
      #fff top/100% 210px no-repeat;
  }
}
