@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+SC:wght@100..900&display=swap');

body {
  font-family: "Noto Sans HK", sans-serif;
}

sup {
  display: inline;
}

.w960 {
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}

.w800 {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.hide767 {
  display: block !important;
}

.show787 {
  display: none !important;
}

.hide767-flex {
  display: flex !important;
}

.show787-flex {
  display: none !important;
}

.txt-shadow {
  color: #0066b0;
  position: relative;
  font-size: 22px !important;
  font-weight: bold;
  width: fit-content;

}
@media (min-width: 768px) {
  .txt-shadow {
    font-size: 35px !important;
  }
}

.txt-shadow::before {
  content: '';
  position: absolute;
  top: 50%;
  left: -65%;
  background-color: #e6f1f7;
  width: 230%;
  height: 60%;
  clip-path: polygon(15% 0%, 100% 0%, 85% 100%, 0% 100%);
  z-index: -1;
}

@media (min-width: 768px) {
  .hide767 {
    display: none !important;
  }

  .show787 {
    display: block !important;
  }

  .hide767-flex {
    display: none !important;
  }
  
  .show787-flex {
    display: flex !important;
  }  
}

h1 {
  font-size: 18px !important;
  line-height: 1.5;
}

h2 {
  font-size: 14px !important;
  line-height: 1.5;
}

h3 {
  font-size: 12px !important;
  line-height: 1.5 ;
}

p {
  font-size: 12px;
  line-height: 1.5 ;
  padding: 0;
}

@media (min-width: 768px) {
  h1 {
    font-size: 28px !important;
  }

  h2 {
    font-size: 24px !important;
  }

  h3 {
    font-size: 20px !important;
  }

  p {
    font-size: 20px;
  }
}

/* #footer {
  margin-bottom: 162px;

  @media (max-width: 452px) {
    margin-bottom: 67px;
  }
}

#sticky-bar .app-download {
  @media (max-width: 452px) {
    width: 70% !important;
    object-fit: contain;
    margin: 0 auto;
  }
} */

#sticky-bar {
  position: fixed;
  background: url("./promopage/stcky-background.jpg") no-repeat center;
  bottom: 0;
  width: 100%;
  z-index: 15;
}

#sticky-bar .section-content {
  display: flex;
  position: relative;
  padding: 10px 15px 0 15px;

}
@media (min-width: 452px) {
  #sticky-bar .section-content {
    padding: 5px 20px 0 20px;
  }
}

#sticky-bar .section-content img {
  display: block;
  object-fit: contain;
  z-index: inherit;
}

#sticky-bar .search-bar,
#sticky-bar .app-download {
  width: 100%;
}

#sticky-bar .search-bar-link {
  display: none !important;
  flex: 1;

}
@media (min-width: 452px) {
  #sticky-bar .search-bar-link  {
    display: block !important;
  }
}

#sticky-bar .app-download-link {
  width: 100%;
  position: relative;
  right: 5%;
  flex: 1;
}

#sticky-bar .close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  display: block;
  object-fit: contain;
  width: 20px;
  cursor: pointer;
}

#footer {
  transition: margin 0.3s ease;
}

.header-container {
  transition: all 0.2s ease;
}

.header-container.hide-up {
  transform: translateY(-100%);
}

.rounded-btn {
  display: flex;
  align-items: center;
  text-align: left;
  border-radius: 32px;
  background: rgb(49, 139, 205);
  background: linear-gradient(180deg, rgba(49, 139, 205, 1) 0%, rgba(9, 84, 188, 1) 100%);
  padding: 10px 20px;
  box-shadow: 0 16px 32px 0 rgba(13, 45, 90, 0.2);
  transition: transform 0.3s ease;
}

.rounded-btn:hover {
  cursor: pointer;
  transform: scale(1.05);
}

.rounded-btn p {
  flex: 1;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
}

@media (min-width: 768px) {
  .rounded-btn {
    padding: 8px 32px;
  }

  .rounded-btn p {
    font-size: 24px;
  }
}

.close-sticky {
  position: absolute;
  /* top: -10px;
  right: 15px; */
  width: 20px;
  height: 20px;
  background: url("./promopage/icon_white_cross.svg");
  top: 2px;
  right: 0;
  cursor: pointer;
}

.top-main-content {
  margin-top: 10px;
}

.top-main-content .section-desc{
  margin-bottom: 30px;
  text-align: center;
}

@media (min-width: 768px) {
  .top-main-content {
    margin-top: 40px;
  }
}

.banner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  border: 1px solid #cccccc;
  margin-bottom: 20px;
  overflow: hidden;
}

.banner img {
  min-width: 100%;
  position: absolute;
  right: 0;
  object-fit: cover;
  height: 126px;
}

.banner .caption {
  margin-top: 126px;
  background: #fafafa;
  padding: 15px 20px;
  width: 100%;
  border-top: solid 1px #cccccc;
}

.banner .caption h2 {
  font-size: 16px !important;
  color: #e6740a;
  font-weight: 500;
  margin-bottom: 0;
}

.banner .caption p {
  font-size: 12px !important;
  color: #0066b3;
  font-weight: 500;
}

@media (min-width: 768px) {
  .banner {
    align-items: start;
    height: 350px;
  }

  .banner img {
    top: 0;
    width: 100%;
    height: 250px;
  }

  .banner .caption {
    border: 0;
    margin: auto 0;
    padding: 35px 40px 35px;
    width: 50%;
    z-index: 1;
    background: linear-gradient(270deg, rgba(255, 255, 255, 0) 0%, #ffffff 20.06%, #ffffff 100%);
  }

  .banner .caption h2 {
    font-size: 24px !important;
  }
  
  .banner .caption p {
    font-size: 18px !important;    
  }
}

.leadin-img {
  margin: 0 auto 50px;
  width: 70%;
}

.leadin-img img {
  width: 100%;
}

@media (min-width: 768px) {
  .leadin-img {
    width: 40%;
  }
}

.section-subtitle {
  text-align: center; 
  margin-bottom: 24px;
  font-size: 20px;
  font-weight: bold;
  color: #0B3C5E;
}

.section-desc {
  color: #0b3c5e;
  text-align: center;
  margin-bottom: 50px;
  /* font-weight: 500; */
  letter-spacing: 0.5px;
  font-size: 15px;

}
@media (min-width: 426px) {
  .section-desc {
    font-size: 18px;
  }
}

.section-desc span {
  color: #132fac;
  font-weight: bold;
  font-size: 130%;
}

@media (min-width: 768px) {
  .section-subtitle {
    font-size: 24px;
  }

  .section-desc {
    font-size: 24px;
  }
}

.content-nav {
  margin-left: -15px;
  margin-right: -15px;
  height: fit-content;
  display: flex;
  margin-bottom: 80px;
  background-color: #fff;
  transition: box-shadow 0.3s ease;
}

.content-nav .content-nav-item {
  cursor: pointer;
  box-sizing: border-box;
  position: relative;
  display: flex;
  align-items: center;
  flex: 1;
  padding: 10px 2px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.5) 0%, #e5eff8 100%);
  transition: background 0.2s ease;
}

.content-nav .content-nav-item.with-divider:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 32px;
  width: 1px;
  background: #a5c3cc;
  transition: opacity 0.2s ease;
}

.content-nav .content-nav-item::before {
  content: "";
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #0066b3;
  transition: opacity 0.2s ease;
}

.content-nav .content-nav-item.active {
  background-color: #dff4ff;
}

.content-nav .content-nav-item.active::before {
  opacity: 1;
}

.content-nav .content-nav-item.active::after {
  opacity: 0;
}

.content-nav .content-nav-item h3 {
  color: #0066b3;
  font-weight: bold;
  margin: 0 auto;
  text-align: center;
  font-size: 14px !important;
}

.content-nav.fixed {
  top: 0;
  width: 100%;
  left: 0;
  right: 0;
  margin: 0 auto;
  max-width: 960px;
  position: fixed;
  z-index: 200;
  box-shadow: 0 16px 32px 0 rgba(13, 45, 90, 0.2);
}

@media (min-width: 768px) {
  .content-nav {
    height: 90px;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  .content-nav.fixed {
    top: 20px;
  }

  .content-nav .content-nav-item {
    padding: 14px 5px;
  }

  .content-nav .content-nav-item h3 {
    font-size: 20px !important;
  }

  .content-nav .content-nav-item:hover,
  .content-nav .content-nav-item.active {
    background-color: #dff4ff;
  }

  .content-nav .content-nav-item:hover::before,
  .content-nav .content-nav-item.active::before {
    opacity: 1;
  }

  .content-nav .content-nav-item:hover.with-divider::after,
  .content-nav .content-nav-item.active::after {
    opacity: 0;
  }
}

.mid-main-content {
  width: 100%;
}

.mid-main-content .section-desc {
  margin-bottom: 0;
}

.section {
  position: relative;
  padding: 40px 0 55px;
}

.section-heading {
  display: flex;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  transform: translateY(-62%);
  width: fit-content;
  margin: 0 auto;
  z-index: 2;
}

.section-heading .section-heading-txt {
  background: url('./promopage/title_box_2x.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-clip: padding-box;
  /* border: 2px solid red; */
  padding: 15px 100px;
  font-weight: bold;
  text-align: center;
  color: #fff;
  font-size: 22px;
  line-height: 22px;
  z-index: 10;
}

.section-heading::before {
  content: "";
  position: absolute;
  bottom: 0;
  /* width: 80vw; */
  width: calc(50vw - 35%);
  height: 1px;
  left: 75%;
  background: #3270bc;
  top: 55%;
}

.section-heading::after {
  content: "";
  position: absolute;
  bottom: 0;
  /* width: 80vw; */
  width: calc(50vw - 40%);
  height: 1px;
  right: 85%;
  background: #3270bc;
  top: 45%;
}


.section-remark ol {
  counter-reset: item;
  padding: 0;
  list-style: none;
}

.section-remark li:before {
  content: counter(item);
  counter-increment: item;
  position: absolute;
  top: -4px;
  font-size: 8px;
  left: 2px;
}

.section-remark li {
  color: #0b3c5e;
  position: relative;
  display: block;
  padding-left: 12px;
  font-size: 12px;
}

.section-remark li:not(:last-child) {
  margin-bottom: 10px;
}

@media (min-width: 768px) {
  .section {
    padding: 80px 0 120px;
  }

  .section-remark li {
    font-size: 14px;
  }

  .section-heading .section-heading-txt {
    font-size: 36px;
    line-height: 32px;
    /* padding: 15px 30px; */
    padding: 30px 160px;
  }

  .section-heading::before {
    background: linear-gradient(90deg, #3270bc 20%, transparent 100%);
    top: 39px;
  }

  .section-heading::after {
    background: linear-gradient(270deg, #3270bc 20%, transparent 100%);
    top: 39px;
  }
}

#service-intro p strong{
  font-size: 18px;
}

#service-intro ul,
#service-intro ol {
  font-size: 18px;
  margin-left: 20px;
}

#service-intro .video-link {
  margin: 0 auto;
  width: 250px;
}

#service-intro .video-link img {
  width: 100%;
}

@media (min-width: 768px) {
  #service-intro p {
    font-size: 20px;
  }  

  #service-intro p strong{
    font-size: 20px;
  }

  /* #service-intro ul,
  #service-intro ol {
    font-size: 20px;
  } */

  #service-intro .video-link {
    width: 350px;
  }
}

#main {
  background: url('./promopage/bg.jpg');
  background-repeat: no-repeat;
  position: relative;
  z-index: -2;
  background-size: contain;
}

.service-intro .section-content{
  width: 100%;
  max-width: 857px;
  margin: 0 auto;
  padding: 0 15px;
}

.service-intro .section-content .sub-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 30px !important;
}

.service-intro .section-content .sub-section .sub-section-content {
  padding: 30px 20px 20px 20px;
  display: flex;
  flex-direction: column-reverse;
  gap: 20px;

}
@media (min-width: 500px) {
  .service-intro .section-content .sub-section .sub-section-content {
    flex-direction: row;
    padding: 60px 20px 20px 20px;
  }
}

.service-intro .section-content .new-feature .left-part {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: 100%;
}
@media (min-width: 500px) {
  .service-intro .section-content .new-feature .left-part {
    align-items: flex-start;
    width: 65%;
  }
}

.service-intro .section-content .new-feature .right-part {
  width: 100%;
}
@media (min-width: 500px) {
  .service-intro .section-content .new-feature .right-part {
    width: 35%;
  }
}

.service-intro .section-content .new-feature .right-part img {
  object-fit: contain;
  width: 85%;
  border-radius: 20px;
  display: block;
  margin: 0 auto;

}
@media (min-width: 500px) {
  .service-intro .section-content .new-feature .right-part img {
    width: 100%;
  }
}

.service-intro .section-content .new-feature .left-part .description {
  font-size: 16px !important;
  color: #0a3c5d;
  line-height: 1.5;
  margin: 0;
  text-align: justify;
}

.service-intro .section-content .new-feature .left-part .description span {
  font-weight: bold;
}

.service-intro .section-content .new-feature .left-part .rounded-btn {
  color: white;
  width: fit-content;
  padding: 10px 50px;
}

.service-intro .section-content .new-feature .left-part .rounded-btn p {
  font-size: 16px !important;
  font-weight: normal;
}

.service-intro .section-content .featured-services .sub-section-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.service-intro .section-content .featured-services .expandable-card {
  box-shadow: 0px -5px 20px rgba(0, 0, 0, 0.1), 10px 20px 13px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}

.service-intro .section-content .featured-services .expandable-card .details {
  padding: 20px 30px;
  background-color: white;
  border-radius: 0 0 10px 10px;
}

.service-intro .section-content .featured-services .expandable-card .details .description {
  font-size: 16px !important;
  color: #073d5d;
}

.service-intro .section-content .featured-services .expandable-card .details .rounded-btn {
  width: fit-content;
  color: white;
  margin: 0 auto;
}

.service-intro .section-content .featured-services .expandable-card .details .tabs-container {
  width: 90%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  border-bottom: 3px solid #1a4999;
  margin-bottom: 30px;
  position: relative;
}

.service-intro .section-content .featured-services .expandable-card .details .tabs-container .tab {
  flex: 1;
  padding-block: 30px;
  text-align: center;
  position: relative;
  cursor: pointer;
  font-size: 16px !important;
  font-weight: bold;
  color: #19499a;
}

.service-intro .section-content .featured-services .expandable-card .details .tabs-container::before {
  content: '';
  width: 0;
  height: 0;
  border-left: 13px solid transparent;
  border-right: 13px solid transparent;
  border-bottom: 13px solid #1a4999;
  position: absolute;
  top: calc(100% - 13px);
  transition: left 0.2s ease-out;
}

.service-intro .section-content .featured-services .expandable-card .details[data-active-tab="tab-1"] .tabs-container::before {
  left: calc(25% - 13px);
}

.service-intro .section-content .featured-services .expandable-card .details[data-active-tab="tab-2"] .tabs-container::before {
  left: calc(75% - 13px);
}
 
.service-intro .section-content .featured-services .expandable-card .details[data-active-tab="tab-1"] .tab-content[data-tab="tab-1"] {
  display: block;
}
.service-intro .section-content .featured-services .expandable-card .details[data-active-tab="tab-2"] .tab-content[data-tab="tab-2"] {
  display: block;
}

.service-intro .section-content .featured-services .expandable-card .details .tab-content {
  width: 90%;
  margin: 0 auto;
}

.service-intro .section-content .featured-services .expandable-card .details .tab-content .description {
  font-size: 16px !important;
  color: #073d5d;
}

.service-intro .section-content .featured-services .expandable-card .header {
  display: flex;
  place-items: center;
  overflow: hidden;
  border-radius: 10px;
  border-bottom: 4px solid #20498d;
  background-color: white;
  cursor: pointer;
  color: #0b2e6f;

}
@media (min-width: 455px) {
  .service-intro .section-content .featured-services .expandable-card .header {
    flex-direction: row;
  }
}

.service-intro .section-content .featured-services .expandable-card .header img {
  width: 40%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.service-intro .section-content .featured-services .expandable-card .header .title-wrapper {
  display: flex;
  gap: 5px;
  padding: 20px;
  display: flex;
  align-items: center;
  margin: 0 auto;
}

.service-intro .section-content .featured-services .expandable-card .header .title-wrapper p {
  font-size: 17px !important;
  color: #0b2e6f;
  font-weight: bold;
  text-align: center;
  flex: 1;
}

.service-intro .section-content .featured-services .expandable-card .header .title-wrapper img {
  width: 20px;
}

.service-intro .section-content .featured-services .expandable-card.active .header {
  background: linear-gradient(180deg, #5a94e8, #20498d);
  border-radius: 10px 10px 0 0;
  color: white;
}

.service-intro .section-content .featured-services .expandable-card.active .header .title-wrapper p {
  color: white;
}

.service-intro .section-content .featured-services .expandable-card .header .title-wrapper .arrow-down-icon {
  fill: currentColor;
  transition: transform 0.3s linear;
}

.service-intro .section-content .featured-services .expandable-card.active .header .title-wrapper .arrow-down-icon {
  transform: rotate(180deg);
}

.service-intro .section-content .other-services .sub-section-content {
  width: 90%;
  flex-direction: column;
  gap: 30px;
}

.service-intro .section-content .other-services .row {
  display: flex;
  flex-direction: column;
  gap: 30px;
  flex: 1;

}
@media (min-width: 615px) {
  .service-intro .section-content .other-services .row {
    flex-direction: row;
  }
}

.service-intro .section-content .other-services .row .card {
  display: flex;
  flex-direction: column;
  place-items: center;
  gap: 10px;
  padding: 10px 20px 20px 20px;
  flex: 1;
  box-shadow: 0px -5px 20px rgba(0, 0, 0, 0.1), 10px 20px 13px rgba(0, 0, 0, 0.1);
  border-radius: 5px;

}
@media (min-width: 615px) {
  .service-intro .section-content .other-services .row .card {
    padding: 20px;
  }
}

.service-intro .section-content .other-services .row .card .title-wrapper {
  display: flex;
  gap: 10px;
  place-items: center;
}

.service-intro .section-content .other-services .row .card .title-wrapper img {
  width: 50px;
}

.service-intro .section-content .other-services .row .card .title-wrapper h2 {
  font-size: 22px !important;
  color: #19499a;
  margin: 0;
}

.service-intro .section-content .other-services .row .card .description {
  text-align: center;
  font-size: 16px !important;
  font-weight: normal !important;
  color: #285370;
  line-height: 1.5;
  margin: 0;
  padding-inline: 20px;
}

.service-intro .section-content .other-services .row .card .link-btn {
  color: white;
  background-color: #0066b2;
  padding: 5px 15px;
  width: fit-content;
  border-radius: 15px;
  margin-top: 5px;
}

.services-demo .section-content {
  width: 100%;
  max-width: 857px;
  margin: 0 auto;
  padding: 0 15px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.services-demo .section-content .row {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0;
  gap: 25px;
  margin-bottom: 25px;

}
@media (min-width: 560px) {
  .services-demo .section-content .row {
    flex-direction: row;
  }
}

.services-demo .section-content .row .link-card {
  /* padding: 10px; */
  background-color: white;
  border-radius: 5px;
  flex: 1;
  box-shadow: 0px -5px 20px rgba(0, 0, 0, 0.1), 10px 20px 13px rgba(0, 0, 0, 0.1);
}

.services-demo .section-content .row .link-card .header {
  position: relative;
}

.services-demo .section-content .row .link-card .header img {
  width: 100%;
  border-radius: 5px 5px 0 0;
}

.services-demo .section-content .row .link-card .header h2 {
  color: white;
  font-size: 24px !important;
  margin: 0;
  position: absolute;
  bottom: 15px;
  left: 15px;
}

.services-demo .section-content .row .link-card .details {
  background-color: white;
  padding: 20px 30px;
  border-radius: 0 0 5px 5px;
}

.services-demo .section-content .row .link-card .details .link-gp {
  margin-bottom: 10px;
}

.services-demo .section-content .row .link-card .details .subtitle {
  font-size: 18px !important;
  font-weight: bold;
  color: #164a9a;
  margin-bottom: 10px;
  display: block;
  position: relative;
}

.services-demo .section-content .row .link-card .details .normal-txt {
  font-size: 16px;
  margin-bottom: 10px;
  margin-left: 10px;
  position: relative;
  color: #184465;
}

.services-demo .section-content .row .link-card .details a.subtitle::before {
  content: '';
  width: 20px;
  height: 20px;
  background: url('./promopage/arrow_forward_20.svg') no-repeat center;
  position: absolute;
  right: 10px;
  top: calc(50% - 10px);
}

.services-demo .section-content .row .link-card .details a {
  display: block;
}

.services-demo .section-content .row .link-card .details a.normal-txt::before {
  content: '';
  width: 10px;
  height: 10px;
  background: url('./promopage/arrow_forward_20.svg') no-repeat center;
  position: absolute;
  right: 17px;
  top: calc(50% - 5px);
}

.services-demo .section-content .row.span-2 .details {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;

}
@media (min-width: 600px) {
  .services-demo .section-content .row.span-2 .details {
    flex-direction: row;
    gap: 30px;
  }
}

.services-demo .section-content .row.span-2 .details .group {
  flex: 1;
}

.services-demo .section-content .rounded-btn {
  color: white;
  width: 50%;
  font-size: 20px;
  font-weight: bold;
  display: flex;
  justify-content: center;
  margin-block: 20px;
}

.more-info .section-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (min-width: 821px) {
  .more-info .section-content {
    flex-direction: row;
  }
}

.more-info .section-content .rounded-btn {
  color: white;
  font-size: 16px;
  flex: 1;
  /* padding: 10px 20px 10px 20px; */
  height: fit-content;
  display: flex;
  justify-content: center;
  padding-block: 15px;
}

@media (min-width: 768px) {
  .more-info .section-content .rounded-btn {
    font-size: 20px;
  }
  .service-intro .section-content {
    padding: 0;
  }
}

.swiper {
  position: relative;
}

.swiper-button-prev,
.swiper-button-next {
  width: 48px;
  height: 48px;
  background-color: #0066b3;
  color: #fff;
  border-radius: 999px;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 2;
}

.swiper-button-prev::after,
.swiper-button-next::after {
  content: "";
}

.swiper-button-prev {
  background-image: url(./promopage/icon_blue_arrow_left.svg);
  left: -20px;
}

.swiper-button-next {
  background-image: url(./promopage/icon_blue_arrow_right.svg);
  right: -20px;
}

.swiper-pagination {
  top: calc(100% + 32px);
}

.swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  margin: 0 13px !important;
  background-color: #0066b3;
}

.steps-swiper {
  max-width: 290px;
  margin: 12px auto 20px;
  padding-bottom: 32px;
  overflow: visible;
}

.steps-swiper .swiper-slide {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.steps-swiper .swiper-slide .steps-img {
  display: flex;
  justify-content: center;
}

.steps-swiper .swiper-slide img {
  width: 60%;
}

.steps-swiper .swiper-pagination {
  top: calc(100% - 16px);
}

.steps-swiper .swiper-button-next,
.steps-swiper .swiper-button-prev {
  background-color: transparent;
  color: #132fac;
  font-weight: bold;
}

.steps-img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.steps-instructions {
  padding: 0 20px;
  width: 100%;
}

.steps-title {
  margin-bottom: 15px;
}

.steps-title h1 {
  font-weight: bold;
  color: #2f579d;
  font-size: 18px !important;
}

.steps-title h2 {
  font-weight: bold;
  color: #0066b2;
  font-size: 18px !important;
}

.steps-desc p {
  font-size: 18px;
  color: #0b3c5e;
}

.steps-desc span {
  font-weight: bold;
}

.faq-accordion {
  background-color: #fff;
  box-shadow: 0 6px 16px 0 rgba(13, 45, 90, 0.1);
  border-radius: 16px;
  margin-bottom: 24px;
  transition: all 0.2s ease;
}

.faq-accordion-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 32px;
  cursor: pointer;
}

.faq-accordion-title h2 {
  /* color: #0066b3; */
  color: #0b3c5e;
  margin: 0;
  /* transition: color 0.2s ease; */
  font-size: 18px !important;
  padding-right: 10px;
}

.faq-accordion.expanded .faq-accordion-title h2 {
  color: #0066b3;
}

.faq-accordion-content {
  display: none;
  padding: 0 32px 25px 32px;
  margin-top: 8px;
}

.faq-accordion-content p {
  color: #0b3c5e;
  font-size: 16px;
}

.faq-accordion-content a {
  text-decoration: underline;
  font-weight: bold;
  color: #0067b1;
}

.faq-accordion-content .highlight-text {
  font-weight: bold;
  color: #0067b1;
}

.faq-accordion-content .rounded-btn {
  color: white;
  width: fit-content;
  text-decoration: none;
}

.faq-accordion:first-child .faq-accordion-content .faq-accordion-content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 10px;
}


.faq-accordion:first-child .faq-accordion-content .text-wrapper {
  flex: 1;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq-accordion:first-child .faq-accordion-content img {
  flex: 1;
  display: block;
  object-fit: contain;
  width: 100%;
  min-width: 250px;
  margin-top: 20px;
}

.faq-accordion-content .install-procedures {
  padding: 30px;
  background: linear-gradient(to bottom, white, #f3fbff);
  /* background-color: pink; */
}

.faq-accordion-content .install-procedures .instructions-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq-accordion-content .install-procedures .heading {
  font-size: 18px !important;
  color: #0067b1;
  font-weight: bold;
  margin-bottom: 20px;
}

.faq-accordion-content .install-procedures img {
  display: block;
  width: 70%;
  object-fit: contain;
  margin: 0 auto 20px auto;
}

.faq-accordion-content .install-procedures .steps {
  width: 100%;
}

.faq-accordion-content .install-procedures .steps .step {
  display: flex;
  justify-content: flex-start;
  gap: 20px;
  margin-bottom: 20px;
  height: fit-content;
  position: relative;
  /* height: 60px; */
}

.faq-accordion-content .install-procedures .steps .step:not(:last-child):before {
  content: '';
  width: 1px;
  height: 30px;
  border-left: 2px dotted #0067b1;
  position: absolute;
  left: 14px;
  top: 33px;
}

.faq-accordion-content .install-procedures .steps .step:nth-child(3)::before {
  height: 28px;
}

.faq-accordion-content .install-procedures .steps .step .step-number {
  place-items: center;
  background-color: #0067b1;
  color: white;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
  border-radius: 20px;
}

.faq-accordion-content .install-procedures .remark p,
.faq-accordion-content .install-procedures .remark ol,
.faq-accordion-content .install-procedures .remark a {
  color: #0b3c5e;
  font-size: 12px !important;
}

.faq-accordion-content .install-procedures .remark ol,
.faq-accordion-content .install-procedures .remark ul {
  margin-left: 15px;
}

.ml-50 {
  margin-left: 20px;
}

.faq-accordion-expand-btn {
  position: relative;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background-color: #0066b3;
  border-radius: 999px;
  display: flex;
  justify-content: center;
  align-items: start;
  color: #fff;
  font-weight: bold;
  font-size: 18px;
  line-height: 22px;
}

.faq-accordion-expand-btn::before {
  content: "";
  position:absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(./promopage/icon_white_plus.svg);
  transition: opacity .3s ease;
}

.faq-accordion-expand-btn::after {
  content: "";
  position:absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(./promopage/icon_white_minus.svg);
  transition: opacity .3s ease;
}

.faq-accordion.expanded {
  box-shadow: 0 16px 32px 0 rgba(13, 45, 90, 0.2);
}

/* .faq-accordion.expanded h2 {
  color: #0066b3;
} */

.faq-accordion.expanded .faq-accordion-expand-btn::before {
  opacity: 0;
}

.faq-accordion.expanded .faq-accordion-expand-btn::after {
  opacity: 1;
}

@media (min-width: 425px) {
  .steps-swiper .swiper-slide img {
    width: 100%;
  }
}

@media (min-width: 625px) {
  .steps-swiper {
    max-width: 656px;
  }
}

@media (min-width: 768px) {
  .faq-accordion-title {
    padding: 25px 32px;
  }

  .faq-accordion-title h2 {
    font-size: 20px !important;
  }

  .faq-accordion-content p {
    font-size: 20px !important;
  }

  .faq-accordion-content {
    margin-top: 16px;
  }

  .ml-50 {
    margin-left: 50px;
  }

  .section {
    padding: 40px 0 80px;
  }

  .section-heading .section-heading-txt {
    font-size: 30px;
  }

  .service-intro .section-content .sub-section {
    margin-bottom: 50px !important;
  }

  .service-intro .section-content .new-feature .left-part .description {
    font-size: 20px !important;
  }

  .service-intro .section-content .new-feature .left-part .rounded-btn p {
    font-size: 20px !important;
  }

  .service-intro .section-content .featured-services .sub-section-content {
    gap: 40px;
  }

  .service-intro .section-content .featured-services .expandable-card .details .description,
  .service-intro .section-content .featured-services .expandable-card .details .tabs-container .tab,
  .service-intro .section-content .featured-services .expandable-card .details .tab-content .description
  {
    font-size: 20px !important;
  }

  .service-intro .section-content .featured-services .expandable-card .header img {
    width: 30%;
  }

  .service-intro .section-content .featured-services .expandable-card .header .title-wrapper p  {
    font-size: 28px !important;
  }

  .service-intro .section-content .featured-services .expandable-card .header .title-wrapper img {
    width: 30px;
  }

  .service-intro .section-content .other-services .row .card .title-wrapper h2 {
    font-size: 26px !important;
  }

  .service-intro .section-content .other-services .row .card .description {
    font-size: 20px !important;
  }

  .services-demo .section-content .row .link-card .header h2 {
    font-size: 30px !important;
  }

  .services-demo .section-content .row .link-card .details .subtitle {
    font-size: 20px !important;
  }

  .services-demo .section-content .row .link-card .details .normal-txt {
    font-size: 18px !important;
  }

  .services-demo .section-content .rounded-btn {
    font-size: 25px;
    margin-block: 50px;
  }

  .steps-title h1 {
    font-size: 26px !important;
  }

  .steps-title h2 {
    font-size: 24px !important;
  }

  .steps-desc p {
    font-size: 20px;
  }

  .faq-accordion-content .install-procedures .steps .step:not(:last-child):before {
    height: 43px;
  }

  .faq-accordion-content .install-procedures .steps .step:nth-child(3)::before {
    height: 44px;
  }

  .faq-accordion-content .install-procedures .instructions-container {
    flex-direction: row-reverse;
    justify-content: center;
  }

  .faq-accordion-content .install-procedures img {
    width: 20%;
  }

  .faq-accordion-content .install-procedures .steps {
    width: 60%;
  }
}

@media (min-width: 786px) {
  .faq-accordion:first-child .faq-accordion-content .faq-accordion-content-wrapper {
    flex-direction: row;
  }

  .faq-accordion:first-child .faq-accordion-content .text-wrapper {
    width: 50%;
  }

  .faq-accordion:first-child .faq-accordion-content img {
    width: 50%;
    margin-top: 0;
  }
}

@media (min-width: 790px) {
  .steps-swiper .swiper-slide {
    flex-direction: row;
  }
}

.remarks {
  padding-top: 35px;
}

.remarks h2{
  font-weight: bold;
  color: #054c9b;
}

.remarks p,
.remarks li {
  font-size: 12px;
  color: #666666;
}

.remarks a {
  color: #0066b3;
}

.remarks .hotline {
  font-size: 18px;
  color: #1c549f;
  font-weight: bold;
  padding-block: 10px;

}
@media (min-width: 425px) {
  .remarks .hotline {
    font-size: 22px;
  }
}

@media (min-width: 768px) {
  .remarks p,
  .remarks li {
    font-size: 18px;
  }
}

/* banner swiper start */
.hero-swiper .swiper-slide .w960 .caption {
  background-color: #fff;
  padding: 10px 15px 0 15px;
}

.hero-swiper .swiper-slide .w960 .caption h1 {
  color: #e6740a;
  font-size: 26px;
  font-weight: bold;
  margin-bottom: 12px;
}

.hero-swiper .swiper-slide .w960 .caption h2 {
  color: #0066b3;
  font-size: 20px;
  font-weight: bold;
}

.hero-swiper .swiper-slide .w960 .caption p {
  color: #000;
  font-size: 12px;
  font-weight: 400;
  margin-top: 14px;
}

.hero-banner-sec {
  position: relative;
}

.hero-thumb-swiper {
  display: none;
}

.hero-thumb-swiper .swiper-slide {
  cursor: pointer;
}

.hero-menu {
  margin: 16px 0;
}

.hero-swiper .swiper-slide > a {
  background-size: cover;
  background-position: 64.5%;
  background-repeat: no-repeat;
  display: block;
  min-height: 228px;
}
.hero-swiper .swiper-slide[data-order="3"] > a {
  background-position: 80%  !important;
}
@media (min-width: 1024px) {
  .hero-swiper .swiper-slide[data-order="1"] > a {
    background-position: 50% !important;
  }
  .hero-swiper .swiper-slide[data-order="2"] > a {
    background-position: 55% !important;
  }
  .hero-swiper .swiper-slide[data-order="3"] > a {
    background-position: 70% !important;
  }
}

@media (min-width: 578px) {
  .hero-swiper .swiper-slide > a {
    min-height: 435px;
  }
}

@media (min-width: 1921px) {
  .hero-swiper .swiper-slide > a {
    min-height: 600px;
  }
}

@media (min-width: 3300px) {
    .hero-swiper .swiper-slide > a {
    min-height: 800px;
  }
}

.hero-swiper-prev,
.hero-swiper-next {
  display: none;
}

.hero-swiper-pagination {
  position: relative;
  margin: 0 auto;
}

.hero-swiper-pagination .swiper-pagination-bullet {
  margin-right: 12px;
  background-color: #fff;
  border: 1px solid #0066cc;
  opacity: 1;
  transform: translateX(-24px);
}

.hero-swiper-pagination .swiper-pagination-bullet-active {
  background-color: #0066cc;
}

.hero-swiper .swiper-slide > .w960 {
  position: relative;
}

@media (min-width: 1025px) {
  .hero-swiper-pagination {
    display: none;
  }

  .hero-swiper .swiper-slide .w960 .caption {
    padding: 16px;
    max-width: 400px;
    margin-top: 60px;
  }

  .hero-swiper .swiper-slide .w960 {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
  }

  .hero-thumb-swiper {
    display: block;
  }

  .hero-menu {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    z-index: 1;
    /* margin: 0; */
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-swiper-prev,
  .hero-swiper-next {
    display: block;
  }
}

.hero-swiper .swiper-slide > img {
  display: block;
  object-fit: cover;
  width: 100%;
  min-height: 200px;
}

@media (min-width: 768px) {
  .hero-swiper .swiper-slide > img {
    min-height: 325px;
  }
}

@media (min-width: 1024px) {
  .hero-swiper .swiper-slide > img {
    min-height: 435px;
  }
}

.hero-swiper-control {
  display: flex;
  align-items: center;
}

.hero-swiper-control .hero-thumb-swiper {
  flex: 1;
}

.hero-swiper-control .hero-thumb-swiper img {
  display: block;
  width: 100%;
}

.hero-swiper-btn {
  cursor: pointer;
}
.hero-swiper-btn img {
  /* width: 24px; */
  width: 36px;
}

.hero-swiper-btn:not(:last-child) {
  margin-right: 12px;
}
.hero-swiper-btn:first-child {
  margin-right: 24px;
}

.first-section-bg {
  text-align: center;
  background: url(investment/img_bg.jpg) no-repeat;
  background-size: cover;
  background-position: center;
  padding: 40px 0;
  margin-bottom: 0;
}

@media (min-width: 1024px) {
  .first-section-bg {
    padding: 48px 0;
  }
}

.mobile-banner {
  width: 100%;
  height: 200px;
  background: url(investment/img_banner.jpg) no-repeat;
  background-size: cover;
  background-position: center;
}

.hero-swiper-pause .play {
  display: none;
}

.hero-swiper-pause.active .play {
  display: block;
}
.hero-swiper-pause.active .pause {
  display: none;
}

/* banner swiper end */

.isDesktop-show {
  display: none !important;
}

.isMobile-show {
  display: block !important;

}
@media (min-width: 560px) {
  .isMobile-show {
    display: none !important;
  }

  .isDesktop-show {
    display: block !important;
  }
}

/* New styles for 9/6/2025 update */

.mid-main-title {
  margin: 20px 0 15px;
  justify-self: center;
  text-align: center;
  padding: 5px 25px;
  border-radius: 20px;
  background: #e6740a;
  color: #fff;
  font-size: 24px;
  font-weight: bold;
  box-shadow: 0px 8px 3px rgba(220, 227, 236, 1);
}

.mid-main-content .tab-content {
  display: block;
  padding: 10px;
}

.mid-main-content .tab.active .tab-content {
  display: block;
}

.mid-main-content .mid-main-tab {
  max-width: 900px;
  margin: 0 auto;
}

.mid-main-content .tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 15px;
  border-radius: 10px;
  margin-bottom: 10px;
  font-size: 18px;
}

.mid-main-content .tab-title {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 10px;
  background-color: #0066cc;
  color: white;
  border-radius: 50px;
  cursor: pointer;
  font-size: 24px;
  width: 100%;
  z-index: 1;
  position: relative;
}

.mid-main-content .tab-img {
  position: absolute;
  top: -13px;
  left: 30px;
}

.mid-main-content .tab-arrow {
  position: absolute;
  right: 30px;
  transition: all ease .25s;
}

.mid-main-content .tab.active .tab-arrow {
  transform: rotate(180deg);
  transition: all ease .25s;
}

.mid-main-content .tab-content {
  background-color: #fff;
  border-radius: 10px;
  padding: 60px;
  box-shadow: 0px -5px 80px rgba(220, 227, 236, 1), 10px 20px 13px rgba(220, 227, 236, 1);
  position: relative;
  top: -40px;
  padding-top: 70px;
  color: #305a76;
}

span.orange {
  font-weight: bold;
}

span.text-3xl {
  font-size: 30px;
}

.reward-card-container {
  margin: 40px auto 0px;
  position: relative;
  height: 450px;
  display: flex;
  justify-content: center;
}

.reward-card-wrapper-left {
  width: 100%;
  z-index: 1;
  filter: drop-shadow(8px 10px 6px rgb(220, 227, 236, 1));
  position: absolute;
}

.reward-card-wrapper-right {
  width: 100%;
  filter: drop-shadow(6px 6px 6px rgba(220, 227, 236, 1));
  position: absolute;
}

.reward-card {
  position: absolute;
  max-width: 485px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  background: linear-gradient(135deg, #e3f2fc 0%, #ffffff 100%);
}

.reward-card.card-left {
  text-align: left;
  padding: 50px 85px 70px 25px;
  top: 0;
  left: -20px;
  z-index: 2;
  clip-path: polygon(0 0, 100% 0, 80% 100%, 0% 100%);
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
}

.reward-card.card-right {
  text-align: right;
  padding: 50px 25px 70px 150px;
  top: 70px;
  right: -20px;
  z-index: 1;
  clip-path: polygon(22% 0, 100% 0, 100% 100%, 0% 100%);
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
}

.card-img {
  margin-bottom: 20px;
}

.card-img img {
  width: 80px;
  height: 80px;
}

.card-title {
  color: #1966b3;
  font-weight: bold;
  font-size: 22px;
}

.card-desc {
  color: #000;
  font-size: 18px;
  font-weight: 300;
}

.card-button a {
  background-color: #1966b3;
  color: white;
  padding: 8px 24px;
  border-radius: 20px;
  font-size: 16px;
}

.card-button {
  margin-top: 20px;
}

.table-title {
  text-align: center;
  color: #132fac;
  font-size: 24px;
  font-weight: bold;
  margin: 20px 0 20px;
}

.tab-content table {
  width: 100%;
  border-collapse: collapse;
  color: #000;
}

.tab-content table th,
.tab-content table td {
  border: 1px solid #dbedf2;
}

.tab-content table th {
  background: linear-gradient(180deg,rgba(84, 154, 253, 1) 0%, rgba(41, 104, 202, 1) 100%);
  color: #fff;
  font-weight: bold;
  text-align: center;
  padding: 12px;
}

.tab-content table td {
  padding: 20px 25px;
}

.tab-content table th:first-child {
  width: 25%;
}

.mid-main-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  justify-content: center;
  margin: 40px 0 80px;
}

.mid-main-footer p {
  color: #0066b3;
  font-size: 26px;
  font-weight: bold;
}

.mid-main-footer a {
  background-color: #1966b3;
  color: white;
  padding: 8px 24px;
  border-radius: 20px;
  font-size: 20px;
}

.section-desc p {
  margin-top: 20px;
  font-weight: bold;
}

.bottom-main-content {
  margin-bottom: 40px;
}

.banner-1-title {
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
  color: #fff;
  background: url("./promopage/img-offer-title-deco.png") no-repeat center;
  background-size: contain;
}

.banner-1-title p {
  font-size: 28px;
  padding: 10px 0;
}

.banner-1-container {
  max-width: 840px;
  margin: 0 auto;
  border-radius: 20px;
  border: 1px solid #fcad3f;
  display: flex;
  background-color: #fff;
}

.banner-1-desc {
  width: 61%;
  padding: 25px;
  color: #305a76;
}

.banner-1-desc img{
  margin-top: 20px;
  min-height: 115px;
}

.banner-1-desc p {
  margin-left: 5px;
}

.banner-1-desc .card-button {
  margin-left: 5px;
}

.banner-1-remark {
  margin: 20px auto 0;
  font-size: 16px;
  color: #666666;
  max-width: 800px;
}

.banner-1 {
  background: url("./promopage/img-background-orange.png") no-repeat center/cover;;
  padding: 80px 0;
}

.banner-1-giftbox {
  width: 0;
}

.banner-1-giftbox img {
  position: relative;
  top: 90px;
  left: -130px;
}

.banner-1-img {
  background: url("./promopage/img-offer-image-right.png") no-repeat center;
  width: 40%;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  background-size: 100% 100%;
  background-position: right;
}


.banner-2 {
  margin: 0 auto;
  color: #fff;
  background: url("./promopage/img-background-open-account.jpg") no-repeat center/cover;;
  padding: 40px 0;
}

.banner-2-container {
  max-width: 840px;
  margin: 0 auto;
  display: flex;
  gap: 20px;
  justify-content: space-evenly;
}

.banner-2-title {
  font-weight: bold;
  font-size: 26px;
  margin-bottom: 10px;
}

.banner-2-desc {
  max-width: 550px;
}

.banner-2-text {
  font-size: 20px;
}

.banner-2-img img{
  height: 350px;
}

.banner-2-icon-container {
  display: flex;
  margin-top: 30px;
}

.left-right-icon {
  width: 19%;
}

.left-right-icon img {
  width: 100%;
  height: auto;
}

.middle-icon {
  margin: 0 10px;
  width: 62%;
}

.search-icon {
  width: 100%;
  height: auto;
}

.download-icon {
  margin-top: 10px;
  display: flex;
  gap: 10px;
  width: 62%;
}

.download-icon img {
  width: 100%;
  height: auto;
}

.download-text {
  margin-left: 20%;
}

.download-text a {
  color: #fff;
}

#tnc-bg {
  display: inline-block;
  margin: 20px 0;
}

#tncContent li {
  padding-left: 8px;
}

#tncContent {
  font-size: 10px;
}

.tncsublist {
  margin: 5px 0;
}

.list-decimal {
  padding-left: 20px;
  counter-reset: section;
}

.list-decimal > li {
  list-style: none;
  counter-increment: section;
}

.list-decimal > li::before {
  content: counter(section) ". ";
  position: absolute;
  left: -20px;
}

.sublist-1 {
  padding-left: 30px;
  counter-reset: subsection;
  margin: 8px 0;
}

.sublist-1 > li {
  list-style: none; 
  counter-increment: subsection;
  position: relative;
  padding-left: 0 !important;
}

.sublist-1 > li::before {
  content: counter(section) "." counter(subsection) " "; /* 顯示 3.1 */
  position: absolute;
  left: -30px;
}

.list-decimal ol ol {
  list-style-type: lower-alpha;
  padding-left: 23px;
}

.sublist-1 table {
  width: 100%;
  margin: 10px 0;
}

.sublist-1 td {
  border: #000 1px solid;
  padding: 10px;
}

.sublist-1 .head {
  background-color: #efefef;
}

.text-center {
  text-align: center;
}

.top-main-img {
  text-align: center;
  margin: 40px 0 60px;
}

.top-main-img img {
  width: 250px;
  height: 125px;
}

.offer-remark {
  color: #666;
  margin: 0 0 40px;
}

#tncContent {
  margin: 0 0 50px;
}

/* New responsive style  */

@media (max-width: 1024px) {
  .hero-swiper .swiper-slide > .w960 {
    padding: 0;
    max-width: unset;
    width: 100%;
  }

  .hero-swiper .swiper-slide .w960 .caption {
    padding-bottom: 10px;
  }

  .reward-card-container {
    height: 660px;
  }

  .reward-card.card-left {
    padding: 20px 25px 40px 25px;
    clip-path: none;
    border-radius: 20px;
    right: 140px;
    left: unset;
  }

  .reward-card.card-right {
    padding: 50px 25px 70px 25px;
    text-align: left;
    clip-path: none;
    border-radius: 20px;
    right: 140px;
    top: 310px;
  }

  .banner-1 {
    padding: 80px 60px;
  }

  .banner-1-container {
    flex-direction: column;
    max-width: 700px;
  }

  .banner-1-desc {
    width: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
  }
  
  .banner-1-desc p {
    font-size: 18px;
  }

  .banner-1-desc img {
    margin-top: 10px;
  }

  .mobile-none {
    display: none;
  }

  .banner-1-giftbox {
    width: auto;
    text-align: center;
    margin-top: 20px;
  }

  .banner-1-giftbox img {
    position: unset;
  }

  .banner-1-remark {
    max-width: 700px;
  }

  #main {
    background-size: unset;
  }

  .top-main-content.w960 {
    width: 750px;
  }
}

@media (max-width: 768px) {
  .section-desc span {
    font-size: 22px;
  }

  .section-desc p {
    font-size: 15px;
  }
  
  .top-main-img {
    margin: 30px 0;
  }

  .mid-main-title p {
    font-size: 18px;
  }

  .mid-main-content .tab-title {
    font-size: 18px;
  }

  .mid-main-content .tab-img img {
    width: 75px;
    height: 75px;
  }

  .mid-main-content .tab-img {
    top: -4px;
    left: 20px;
  }

  .mid-main-content .tab-content {
    padding: 60px 20px 30px;
  }

  .banner-2 {
    padding: 30px 50px;
  }

  .banner-2-container {
    flex-direction: column;
    align-items: center;
  }

  .reward-card.card-left {
    right: 80px;
  }

  .reward-card.card-right {
    right: 80px;
  }
}

@media (min-width: 560px) {
  .mid-main-content .tab-title br{
    display: none;
  }
}

@media (max-width: 560px) {
  .mid-main-content .tab-img {
    top: 10px;
    left: 10px;
  }

  .mid-main-content .tab-title {
    padding-left: 40px;
  }

  .mid-main-content .tab-arrow {
    right: 15px;
  }

  .reward-card.card-left {
    padding: 20px 20px 30px;
    width: 100%;
    left: 0;
  }

  .reward-card.card-right {
    padding: 20px 20px 30px;
    top: 320px;
    width: 100%;
    left: 0;
  }

  .reward-card-container {
    height: 650px;
  }

  .tab-content table td {
    padding: 15px;
  }

  .tab-content table th:first-child {
    width: 35%;
  }

  .mid-main-footer {
    margin: 0 0 40px;
    padding: 0 30px;
    gap: 10px;
    text-align: center;
  }

  .banner-1 {
    padding: 40px 20px;
  }

  .banner-1-title p {
    font-size: 22px;
  }

  .banner-1-title {
    background-size: 100% 55px;
  }

  .banner-2-desc {
    max-width: 100%;
  }

  .banner-2-title {
    font-size: 22px;
  }

    .banner-2-text {
    font-size: 18px;
  }

  .bottom-main-content {
    margin-bottom: 20px;
  }

  .mt40 {
    margin-top: 20px;
  }

  .mid-main-footer p {
    font-size: 20px;
  }

  #tnc-bg {
    margin-right: 25px;
  }

  .tncClose:after {
    position: relative;
    right: -25px;
    top: -10px;
  }

  .top-main-content.w960 {
    width: 100%;
  }

  .mid-main-content a {
    font-size: 16px;
  }
}

@media (max-width: 1280px) {
  .banner-1-container {
    max-width: 750px;
  }
}

