#subMenuBg{
  display: none;
}

p{
  margin: 0;
  font-size: 14px;
  line-height: 21px;
}
.page-content p{
  color: #666666;
}
/* .page-inner {
  font-family: 'Poppins', sans-serif;
} */
.subHeader.blue {
  border-bottom: 5px solid #161d6d;
}
.subHeader.blue .section-title {
  color: #161d6d;
}
.subHeader-title.bigger {
  color: #ed171f;
  font-size: 14px;
  font-weight: bold;
}

.page-container {
  padding: 0;
}

.contact-flex-container {
  display: flex;
  align-items: center;
}
.contact-flex-container.stretch {
  align-items: stretch;
}

.icon {
  display: block;
}

.box-btn {
  display: inline-flex;
  color: #161d6d;
  font-size: 14px;
  font-weight: 500;
  line-height: 21px;
  border-radius: 5px;
  border: 1px solid #161d6d;
  padding: 8px;
  align-items: center;
}
.box-btn:hover {
  color: #161d6d;
}
.box-btn.hover{
  /* color: #FFF; */
  background-color: rgba(255, 255, 255, 0.4);
}
.box-btn img {
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-left: 4px;
}

.close-btn {
  width: 12px;
  height: 12px;
  cursor: pointer;
}
.close-btn img{
  width: 16px;
  height: 16px;
}
.close-btn span {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  transform: rotate(45deg);
}
.close-btn span::before {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background-color: #161d6d;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.close-btn span::after {
  content: "";
  display: block;
  width: 2px;
  height: 100%;
  background-color: #161d6d;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.banner-container {
  position: relative;
  padding: 0 0 24px;
  margin: 0;
}

.banner-container.full {
  padding: 10px 20px;
}
.banner-container.full::before,
.banner-container.full::after {
  display: none;
}
.banner-container .banner-border {
  width: 307px;
  height: 239px;
  border-top: 2px solid #161d6d;
  border-right: 2px solid #161d6d;
  position: absolute;
  top: 16px;
  right: 16px;
}
.banner-container .banner-dots {
  width: 50px;
  height: 26px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-around;
  position: absolute;
  bottom: 57px;
  left: 14px;
  z-index: 3;
}
.banner-container .banner-dots span {
  display: block;
  width: 10px;
  height: 10px;
  position: relative;
}
.banner-container .banner-dots span::after {
  content: "";
  display: block;
  width: 4px;
  height: 4px;
  border-radius: 100%;
  background-color: #161d6d;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.banner-container img {
  display: block;
  width: 100%;
  position: relative;
  z-index: 3;
}

.tips-box {
  border-radius: 8px;
  background-color: #dceeff;
  padding: 8px 12px 12px;
  margin-top: 24px;
}
.tips-box .icon {
  width: 24px;
}
.tips-box .tips-content {
  flex: 1;
  padding: 4px 20px 0;
}
.tips-box .tips-content p {
  color: #161d6d;
  font-weight: 400;
  margin: 0;
}
.tips-box .box-btn{
  margin-top: 4px;
}
.tips-box .close-btn {
  align-self: flex-start;
  margin-left: 16px;
}

.page-section {
  padding: 24px 0;
  margin: 0 2px;
}

.section-title {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 32px;
}
.section-title h2 {
  color: #333;
  font-size: 24px;
  font-weight: 600;
  line-height: 36px;
  margin: 0;
}
.section-title::after {
  content: "";
  display: block;
  flex: 1;
  height: 2px;
}
.section-title.left h2 {
  padding-right: 16px;
}
.section-title.left::after {
  background-color: #faaf3c;
  margin-right: -20px;
}
.section-title.right h2 {
  order: 2;
  padding-left: 16px;
}
.section-title.right::after {
  background-color: #161d6d;
  margin-left: -20px;
}

.section-title-space {
  order: 3;
  width: 277px;
}

.box-with-shadow {
  display: flex;
  flex-direction: column;
  width: 100%;
  position: relative;
  padding-top: 24px;
  padding-left: 24px;
  margin: 0 16px;
}
.box-with-shadow:first-child {
  margin-left: 0;
}
.box-with-shadow:last-child {
  margin-right: 0;
}
.box-with-shadow::before {
  content: "";
  display: block;
  width: 50%;
  height: 65%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.box-with-shadow.blue::before {
  background-color: #161d6d;
}
.box-with-shadow.yellow::before {
  background-color: #faaf3c;
}
.box-with-shadow .box-content {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  flex: 1;
  padding: 16px;
  background-color: #fff;
  border-top-right-radius: 32px;
  box-shadow: 0 4px 10px 0 rgba(134, 134, 134, 0.3);
  position: relative;
  z-index: 2;
}

.box-content h4 {
  color: #333;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
}
.box-content h4::after {
  content: "";
  display: block;
  width: 12%;
  min-width: 27px;
  height: 3px;
  margin-top: 6px;
  background-color: #faaf3c;
}
.box-content p {
  flex: 1;
  color: #666;
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
}
.box-content a {
  color: #161d6d;
  font-size: 12px;
  font-weight: 500;
  line-height: 18px;
}

.flexBox-with-img {
  display: flex;
  align-items: flex-start;
  position: relative;
  margin: 48px 0;
}
.flexBox-with-img:first-child {
  margin-top: 0;
}
.flexBox-with-img:last-child {
  margin-bottom: 24px;
}
.flexBox-with-img::after {
  content: "";
  display: block;
  position: absolute;
  z-index: 0;
}
.flexBox-with-img > img {
  display: block;
  width: 40%;
  max-width: 277px;
  margin-top: 22px;
  position: relative;
  z-index: 1;
}
.flexBox-with-img.left {
  justify-content: flex-end;
}
.flexBox-with-img.left::after {
  width: 475px;
  height: 144px;
  border-top: 2px solid #faaf3c;
  border-right: 2px solid #faaf3c;
  border-bottom: 2px solid #faaf3c;
  top: 35px;
  left: 0;
}
.flexBox-with-img.right::after {
  width: 500px;
  height: 156px;
  border-top: 2px solid #161d6d;
  border-left: 2px solid #161d6d;
  border-bottom: 2px solid #161d6d;
  top: 35px;
  right: 0;
}
.flexBox-with-img:last-child::after {
  height: 167px;
  top: auto;
  bottom: -24px;
}
.flexBox-with-img .flexBox-content {
  flex: 1;
  position: relative;
  z-index: 2;
}
.flexBox-with-img.left .flexBox-content {
  background-color: #fff1db;
  margin-left: 20px;
}
.flexBox-with-img.right .flexBox-content {
  background-color: #e2e3f5;
  margin-right: 20px;
  order: 2;
}
.flexBox-with-img.left > img {
  margin-left: -22px;
  order: 1;
}
.flexBox-with-img.right > img {
  margin-right: -22px;
  order: 1;
}

.flexBox-title {
  display: flex;
  align-items: center;
}
.flexBox-title img {
  display: block;
  width: 44px;
}
.flexBox-title h4 {
  color: #333;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  padding-left: 16px;
  margin: 0;
}

.flexBox-content {
  padding: 16px;
  border-top-right-radius: 32px;
}
.flexBox-content ul li {
  list-style: disc;
  color: #444;
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
  margin-bottom: 12px;
}

.tab-option {
  /* display: flex;
  flex-direction: column; */
  width: 100%;
  padding: 16px 8px;
  background-color: #fff;
  border: 1px solid #d8d8d8;
  border-top-right-radius: 12px;
  text-align: center;
  position: relative;
  box-shadow: 0 4px 4px 0 rgba(159, 158, 158, 0.05);
  margin: 0 8px;
}
.tab-option:not(.active) {
  cursor: pointer;
}
.tab-option:first-child {
  margin-left: 0;
}
.tab-option:last-child {
  margin-right: 0;
}
.tab-option img {
  display: block;
  width: 50px;
  margin: 0 auto 8px;
}
.tab-option h4 {
  display: flex;
  align-items: center;
  flex: 1;
  min-height: 42px;
  color: #000;
  font-size: 14px;
  font-weight: 500;
  line-height: 21px;
  justify-content: center;
  margin: 0 auto;
  transition: all 0.3s ease;
}
.tab-option::after {
  content: "";
  display: block;
  width: 100%;
  height: 4px;
  background-color: #5e5e5e;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  opacity: 0;
  transition: all 0.3s ease;
}
/* .swiper-slide{
  width: 171px !important;
}
.swiper-slide-active{
  width: 190px !important;
} */
.swiper-slide-active .tab-option{
  /* transform: scale(1.1); */
  border-width: 2px;
  border-color: #5e5e5e;
  width: 100%;
  width: 190px !important;
}
.swiper-slide-active .tab-option h4 {
  color: #5e5e5e;
  font-weight: 600;
}
.swiper-slide-active .tab-option::after {
  opacity: 1;
}

.tab-content {
  margin: 32px 0 0;
}

.tab-content-inner {
  display: none;
  position: relative;
  align-items: flex-start;
}
.tab-content-inner.active {
  display: flex;
}
.tab-content-inner::after {
  content: "";
  display: block;
  width: 176px;
  height: 200px;
  position: absolute;
  left: -20px;
  bottom: 0;
  z-index: 1;
}
.tab-content-inner[data-tag="0"]::after{
  background-color: #faaf3c;
}
.tab-content-inner[data-tag="1"]::after,
.tab-content-inner[data-tag="2"]::after {
  background-color: #161d6d;
}
.tab-content-inner img {
  display: block;
  width: 344px;
  position: relative;
  z-index: 2;
}
.tab-content-inner .tab-content-txt {
  min-height: 321px;
  flex: 1;
  margin-left: 32px;
}
.tab-content-inner .tab-content-txt h4 {
  color: #333;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  margin: 0 0 16px;
}
.tab-content-inner .tab-content-txt p {
  color: #666;
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
  margin: 0;
}

.tab-content-inner .tab-content-txt p strong{
  font-weight: 600;
}

.grid-container-3col {
  width: 100%;
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, 1fr [col-start]);
}
.grid-container a {
  display: flex;
}

.grid-container-2col {
  width: 100%;
  display: grid;
  gap: 48px;
  grid-template-columns: repeat(2, 1fr [col-start]);
}
.grid-container-2col .link-box {
  padding: 0;
}
.grid-container-2col .link-box img {
  width: 80px;
}
.grid-container-2col .link-box h4 {
  margin-left: 22px;
  font-size: 16px;
  line-height: 24px;
}

.link-box {
  display: flex;
  align-items: center;
  padding: 24px 16px;
  background-color: #fff;
  border: 1px solid #d8d8d8;
  border-top-right-radius: 10px;
  position: relative;
  box-shadow: 0 4px 4px 0 rgba(134, 134, 134, 0);
  transition: all 0.3s ease;
  color: #000;
  font-size: 14px;
  font-weight: 500;
  line-height: 21px;
}

.link-box:hover {
  background-color: #5e5e5e;
  color: #fff;
}

.link-box.without-border {
  border: none;
  border-top-right-radius: 0;
  box-shadow: none;
}

.link-box img {
  width: 44px;
  margin-right: 12px; 
}
.link-box span {
  color: #000;
  font-size: 14px;
  font-weight: 500;
  line-height: 21px;
  margin: 0;
  /* margin-left: 12px; */
  transition: all 0.3s ease;
}

.fullWidth-topLeft-radius-box {
  margin: 32px 0 0;
  padding: 24px 16px;
  background-color: #fff1db;
  border-top-right-radius: 32px;
}
.fullWidth-topLeft-radius-box .fullWidth-content h4 {
  color: #000;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  margin: 0 0 16px;
}
.fullWidth-topLeft-radius-box .fullWidth-content p {
  color: #666;
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
  margin: 0;
}
.fullWidth-topLeft-radius-box .info-with-icon {
  margin-top: 16px;
}

.info-with-icon {
  display: flex;
  align-items: center;
}
.info-with-icon img {
  display: block;
  width: 44px;
}
.info-with-icon .info-txt {
  margin-left: 16px;
}
.info-with-icon .info-txt h4 {
  color: #161d6d;
  font-size: 20px;
  font-weight: 600;
  line-height: 30px;
  margin: 0;
}
.info-with-icon .info-txt p {
  color: #000;
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
  margin: 0;
}

.bg-fffdf7 {
  background-color: #fffdf7;
}

.grey-box {
  background-color: rgba(230, 230, 230, 0.3);
  padding: 29px 40px;
  border-top-right-radius: 32px;
}
.grey-box h4 {
  color: #333;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  margin: 0;
  margin-bottom: 14px;
}
.grey-box p {
  color: #333;
  font-size: 12px;
  line-height: 18px;
  margin: 0;
}

.bco-remarks {
  margin-top: 32px;
}
.bco-remarks a {
  color: #000;
  text-decoration: none;
}

.bco-remarks span {
  color: #000;
  font-size: 12px;
  line-height: 18px;
}

.bco-remarks ol {
  margin: 0;
  padding-left: 12px;
}

.bco-remarks ol li {
  color: #000;
  font-size: 12px;
  line-height: 15px;
  margin-bottom: 8px;
}
/* .bco-remarks ol li::marker {
  content: "[" counter(list-item) "]  ";
} */
.bco-remarks p {
  color: #000;
  font-size: 12px;
  line-height: 15px;
  margin: 0;
  margin-top: 25px;
}

.content-with-icon{
  font-size: 16px;
  line-height: 24px;
  text-align: center;
}
.content-with-icon .tick-
.content-with-icon .content-with-icon-title{
  display: flex;
  align-items: center;
  text-align: center;
}
.content-with-icon .content-with-icon-title h4{
  margin-left: auto;
  margin-right: auto;
}
.content-with-icon h4{
  color: #333;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  margin-top: 8px;
  margin-bottom: 8px;
}
.content-with-icon:nth-child(1) .content-with-icon-title{
  height: 58px;
}
.content-with-icon:nth-child(2) .content-with-icon-title{
  height: 58px;
}
.content-with-icon:nth-child(3) .content-with-icon-title{
  height: 58px;
}
.content-with-icon img{
  width: 100px;
}

.tick-point{
  display: flex;
  align-items: flex-start;
  margin-bottom: 8px;
}
.tick-point img{
  display: block;
  width: 16px;
  margin-right: 5px;
  margin-top: 3px;
}
.tick-point p{
  color: #666;
  font-size: 16px;
  line-height: 24px;
  text-align: left;
  margin: 0;
}

.swiper-wrapper{
  align-items: center;
}
.swiper-slide{
  height: auto;
}
.swiper-button-prev{
  width: 36px;
  top: 50%;
  left: 0;
  transition: scale 0.3s ease;
}
.swiper-button-next{
  width: 36px;
  top: 50%;
  right: 0;
  transition: scale 0.3s ease;
}
.swiper-button-next{
  transform: rotate(180deg);
}
.swiper-button-prev img{
  width: 100%;
}
.swiper-button-next img{
  width: 100%;
}
.swiper-button-prev::after{
  display: none;
}
.swiper-button-next::after{
  display: none;
}
.swiper-slide .tab-option{
  width: auto !important;
}
.swiper-with-nav{
  position: relative;
}

.benefits-sec{
  padding-bottom: 32px;
}

.contact-box .paragraph h4{
  color: #333333;
}

.contact-box .info-with-icon p{
  color: #333333;
}

.page-inner{
  position: relative;
}

.float-container{
  /* position: -webkit-sticky;
  position: sticky;
  bottom: 20px;
  right: 0; */
  display: none;
  position: fixed;
  /* left: calc(100% + 30px); */
  /* right: 0; */
  bottom: 120px;
} 

.float-container .float-guide-box{
  display: none;
  pointer-events: none;
  width: calc(330px - 16px*2);
  padding: 24px 16px;
  border-radius: 8px;
  background-color: #FFF;
  box-shadow: 0 0 4px 0 rgba(0,0,0,0.25);
  /* margin-bottom: 19px; */
}
.float-container .float-guide-box.active{
  display: block;
  pointer-events: all;
}
.float-guide-box .float-title{
  color: #000;
  font-size: 18px;
  font-weight: 700;
  line-height: 18px;
}
.float-guide-box ol{
  color: #000;
  font-size: 16px;
  font-weight: normal;
  line-height: 21px;
  margin-top: 16px;
  margin-left: 15px !important;
}
.float-guide-box li{
  margin-bottom: 12px;
}
.float-guide-box li a{
  color: #000;
  font-weight: 300;
  line-height: 21px;
  text-decoration: none !important;
}
.float-guide-box a img{
  width: 8px;
  height: 14px;
  margin-left: 8px;
  position: relative;
  top: 1px;
}
.float-guide-box .float-view-more{
  display: inline-block;
  margin-top: 4px;
  color: #161d6d;
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
  padding: 9px 11px;
  border: 1px solid #161d6d;
  border-radius: 5px;
}
.float-guide-box .float-view-more:hover{
  background-color: #F4F9FF;
}
.float-container .float-btn{
  /* background-color: #E2E3F3;
  border-radius: 8px;
  padding: 16px 14px; */
  display: inline-block;
  cursor: pointer;
  padding-top: 19px;
}
.float-container .float-btn img{
  width: 90px;
  height: 110px;
}

.swiper-pagination {
  text-align: center;
  bottom: 0px !important;
}

.swiper-pagination-bullet-active {
  background-color: #666666 !important;
}