
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
:root {
  scroll-behavior: smooth;
}

body {
    font-family: “Noto Sans TC”, “Open Sans”, sans-serif;
    color: #58534f;
    font-size: 16px;
    line-height: 22px;

}

a {
  color: #d85555;
  text-decoration: none;
}

a:hover {
  color: #f78784;
  text-decoration: none;
}


h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: “Noto Sans TC”, “Open Sans”, sans-serif;
  font-weight: 700;
}
.font-highlight{
  background: #f7d69c;
  color: #36356c;
  font-weight: 700;
  padding: 0.3rem;
  margin: 0.1rem;
  border-radius: 2px;
}

.font-highlight-b{
  background:#efe7bc;
  color:  #89685f;
  font-weight: 700;
  padding: 0.3rem;
  margin: 0.1rem;
  border-radius: 2px;
}

.font-waring{
  color: #d85555;
  font-weight: 700;
}

.font-hot{
  color: #ffefef;
  font-weight: 700;
  background: #ff5142;
  padding: 0.3rem 0.5rem;
  margin: 0.2rem;
  border-radius: 0.5rem;
}

.font-sm{
  font-size: 0.8rem;
}

.font-md{
  font-size: 1rem;
}


/*--------------------------------------------------------------
# Sections
--------------------------------------------------------------*/
section {
  padding: 100px 0;
  overflow: hidden;
}

.section-header {
  text-align: center;
  padding-bottom: 2rem;
}

.section-header h2 {
  font-size: 2rem;
  letter-spacing: 1px;
  color: #4d82c3;
  text-transform: uppercase;
}

.section-header p {
  margin: 0.3rem;
  padding: 0;
  font-size: 1rem;
  line-height: 1.4rem;
  font-weight: 700;
  color: #7e6452;
}

@media (max-width: 768px) {
  .section-header p {
  font-size: 1rem;
  line-height: 1.4rem;
  }
}


/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background: #4d82c3;
  width: 50px;
  height: 50px;
  border-radius: 25px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 2rem;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #d85555;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.header {
  transition: all 0.5s;
  z-index: 997;
  border-bottom: 1px solid #4d82c3;
  background: #dbf2ff;
}

.header.header-scrolled {
  background: #dbf2ff;
  box-shadow: 0px 2px 20px rgba(1, 41, 112, 0.1);
}

.header .logo {
  line-height: 0;
}

.header .logo img {
  max-height: 50px;
  margin-right: 6px;
}

.header .logo span {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: #4d82c3;
  font-family: “Noto Sans TC”, “Open Sans”, sans-serif;
  margin-top: 3px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 25px;
  font-family: “Noto Sans TC”, “Open Sans”, sans-serif;
  font-size: 1.5rem;
  line-height: 1.5rem;
  font-weight: 700;
  color: #4d82c3;
  white-space: nowrap;
  transition: 0.3s;
}

.navbar a i,
.navbar a:focus i {
  font-size: 0.5rem;
  line-height: 0.5rem;
  margin-left: 0.9rem;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: #dbf2ff;
  background: #4d82c3;
}

.navbar .getstarted,
.navbar .getstarted:focus {
  background: #4d82c3;
  padding: 8px 20px;
  margin-left: 30px;
  border-radius: 4px;
  color: #fff;
}

.navbar .getstarted:hover,
.navbar .getstarted:focus:hover {
  color: #fff;
  background: #d85555;
}


.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  border-radius: 0 0 4px 4px;
  overflow: hidden;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 1rem;
  text-transform: none;
  font-weight: 600;
}

.navbar .dropdown ul a i {
  font-size: 0.5rem;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: #fff;
  background: #d85555;
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown a i {
  font-size: 0.3rem;
  color: #fc0;
}

.navbar .megamenu {
  position: static;
}

.navbar .megamenu ul {
  margin-top: 5px;
  right: 0;
  padding: 10px;
  display: flex;
}

.navbar .megamenu ul li {
  flex: 1;
}

.navbar .megamenu ul li a,
.navbar .megamenu ul li:hover>a {
  color: #013289;
}

.navbar .megamenu ul li a:hover,
.navbar .megamenu ul li .active,
.navbar .megamenu ul li .active:hover {
  color: #d85555;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #7e6452;
  font-size: 1.5rem;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 1200px) {
  .mobile-nav-toggle {
    padding: 1rem 0;
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(1, 22, 61, 0.9);
  transition: 0.3s;
  padding: 1rem 0;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 0px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  width: 70%;
  top: 55px;
  right: 0px;
  bottom: 15px;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 1.2rem;
  color: #d85555;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
color: #fff;}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  width: 100%;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  color: #fff;
  background: #d85555;
  margin: 0;
  box-shadow: 0px 0px 0px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 100%;
}

.navbar-mobile .dropdown ul a {
  color:#fff;
}

.navbar-mobile .dropdown ul a i {
  font-size: 1rem;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color:#d85555;
  background: #dbf2ff;
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  height: 100vh;
  background: #e8f4fa;

}

.hero h2 .icon{
  color: #4d82c3;
}

.header-card{
  overflow: hidden;
  background: #fff;
  margin: 0;
  box-shadow: 0px 3px 10px rgba(188, 188, 188, 0.4);
}

.hero h1 {
  margin: 10px 0;
  font-size: 2rem;
  font-weight: 700;
  color: #fe6a5e;
}

.hero h2 {
  color: #7fb5f1;
  margin: 5px 0;
  font-size: 1.2rem;
}

.hero p {
  font-size: 1rem;
  line-height: 1.6rem;
  margin: 10px 0;
  color: #58534f;
}

.hero .btn-get-started {
  margin: 15px 0;
  line-height: 0;
  padding: 15px 40px;
  border-radius: 4px;
  transition: 0.5s;
  color: #fff;
  background: #fe6a5e;
  box-shadow: 0px 3px 10px rgba(188, 188, 188, 0.4);
}

.hero .btn-get-started span {
  font-family: “Noto Sans TC”, “Open Sans”, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 1px;
}

.hero .btn-get-started i{
  color: #fff;
  margin-left: 5px;
  font-size: 1.2rem;
  transition: 0.3s;
}

.hero .btn-get-started:hover i {
  transform: translateX(5px);
  transition: 0.3s;
}

.hero .hero-img {
  margin: 0;
  padding: 0;
}

@media (min-width: 1024px) {
  .hero {
    background-attachment: fixed;
  }
}

@media (max-width: 991px) {
  .hero {
    height: auto;
    padding: 120px 0 60px 0;
  }

  .hero h1 {
    margin: 5px;
    font-size: 1.5rem;
  }

  .hero h2 {
    margin: 5px 0;
    font-size: 1.2rem;
  }

  .hero p {
    margin: 5px 0;
  }

  .hero .hero-img {
    text-align: center;
  }

}

@media (max-width: 768px) {
  .hero {
    text-align: center;
  }

  .hero h1 {
    margin: 15px;
    font-size: 1.5rem;
  }

  .hero h2 {
    margin: 5px 0;
    font-size: 1.2rem;
  }

  .hero p {
    margin: 5px 0;
  }

}

/*--------------------------------------------------------------
# Index Page
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about{

}

.about .content {
  background-color: #7fb5f1;
  padding: 40px;
  color: #fff;
}

.about h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #7fb5f1;
  text-transform: uppercase;
}

.about h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
}

.about p {
  margin: 15px 0 30px 0;
  line-height: 2rem;
}

.about .btn-read-more {
  line-height: 0;
  padding: 15px 40px;
  border-radius: 4px;
  transition: 0.5s;
  color: #fff;
  background: #71b880;
  box-shadow: 0px 5px 25px rgba(65, 84, 241, 0.3);
}

.about .btn-read-more span {
  font-family: “Noto Sans TC”, “Open Sans”, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 1px;
}

.about .btn-read-more i {
  margin-left: 5px;
  font-size: 1.1rem;
  transition: 0.3s;
}

.about .btn-read-more:hover i {
  transform: translateX(5px);
}


/*--------------------------------------------------------------
# buyway
--------------------------------------------------------------*/
.buyway{
  background: #fbf5e7;

}


.buyway .section-header{
  margin-top: 100px;
}


.buyway .buyway-box i {
  line-height: 0;
  background: #ecf3ff;
  padding: 4px;
  margin-right: 10px;
  font-size: 1.8rem;
  border-radius: 3px;
  transition: 0.3s;
}

.buyway .buyway-box:hover i {
  background: #d85555;
  color: #fff;
}


.buyway .tab-content{
  background: #fff;
  margin-bottom: 100px;
  border-radius: 0 0 4px 4px;
  box-shadow: 0px 0 30px rgba(1, 41, 112, 0.08);

}

.buyway p{
  margin: 0.3rem;
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 700;
}

.buyway h3 {
  color: #36356c;
  font-weight: 700;
  font-size: 1.3rem;
  margin: 0.8rem 0;
}

.btn {
  line-height: 1.4rem;
  padding: 10px;
  border-radius: 4px;
  transition: 0.5s;
  color: #fff;
  background: #d85555;
  
}

.btn:hover  {
  line-height: 1.4rem;
  padding: 10px;
  border-radius: 4px;
  transition: 0.5s;
  color: #fff;
  background: #ffa384;
  box-shadow: 0px 5px 25px rgba(91, 75, 69, 0.3);
}

.btn span {
  font-family: “Noto Sans TC”, “Open Sans”, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 1px;
}

.btn i {
  margin-left: 5px;
  font-size: 1.1rem;
  transition: 0.3s;
}

.btn:hover i {
  transform: translateX(5px);
}

@media (max-width: 768px) {
  .buyway .buyway-tabs h3 {
    font-size: 1.3rem;
  }
}


/* With arrow tabs */

    .with-arrow .nav-link.active {
      position: relative;
    }

    .with-arrow .nav-link.active::after {
      content: '';
      border-left: 10px solid transparent;
      border-right: 10px solid transparent;
      border-top: 10px solid #d85555;
      position: absolute;
      bottom: -10px;
      left: 50%;
      transform: translateX(-50%);
      display: block;
    }

.buyway .buyway-tabs .nav-link {
  background: none;
  text-transform: uppercase;
  font-size:1.3rem;
  font-weight: 600;
  color: #d85555;
  padding: 1rem 0;
  margin-right: 25px;
  margin-bottom: -2px;
  background:  #fff6f3;
  border-bottom: 2px solid #d85555;
  border-radius: 4px 4px 0 0;
}

.buyway .buyway-tabs .nav-link.active {
  color:  #fff;
  border-bottom: 2px solid #d85555;
  background:  #d85555;
}


.buyway .buyway-tabs .tab-content h4 {
  font-size: 1rem;
  margin: 0;
  font-weight: 700;
  color: #7e6452;
}

.buyway .buyway-tabs .tab-content i {
 font-size: 1.8rem;
  line-height: 0;
  margin-right: 8px;
  color: #d85555;

}

.buyway .buyway-icons {
  margin-top: 120px;
}

.buyway .buyway-icons h3 {
  color: #7e6452;
  font-weight: 700;
  font-size:2rem;
  margin-bottom: 20px;
  text-align: center;
}

@media (max-width: 768px) {
  .buyway .buyway-icons h3 {
    font-size: 1.8rem;
  }
}

.buyway .buyway-icons .content .icon-box {
  display: flex;
}

.buyway .buyway-icons .content .icon-box h4 {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 10px 0;
  color: #7e6452;
}

.buyway .buyway-icons .content .icon-box i {
  font-size:2.5rem;
  line-height: 44px;
  color: #0245bc;
  margin-right: 15px;
}

.buyway .buyway-icons .content .icon-box p {
  font-size: 1rem;
  color: #848484;
}

/*--------------------------------------------------------------
# accredit
--------------------------------------------------------------*/
.accredit .icon-box {
  padding: 50px 20px 10px 20px;
  margin-top: 35px;
  margin-bottom: 25px;
  text-align: center;
  position: relative;
  background: #fff;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

.accredit .icon {
  position: absolute;
  top: -36px;
  left: calc(50% - 36px);
  transition: 0.2s;
  border-radius: 50%;
  border: 6px solid #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  width: 72px;
  height: 72px;
  background: #d85555;
  color: #fff;
}

.accredit .icon i {
  color: #fff;
  font-size: 1.8rem;
  line-height: 0;
}

.accredit .titletext {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 1.2rem;
  text-transform: uppercase;
}

/*.accredit .titletext a {
  color: #343a40;
}

.accredit .icon-box:hover .icon {
  background: #fdf2ed;
  border: 2px solid #d85555;
}

.accredit .icon-box:hover .icon i {
  color: #d85555;
}

.accredit .icon-box:hover .titletext a {
  color: #d85555;
}
*/
.accredit .description {
  line-height: 24px;
  font-size: 1rem;
}

.accredit .description img {
  display: block;
}

/*--------------------------------------------------------------
# information
--------------------------------------------------------------*/
.information{
    background: #fbf5e7;
}

.information .box {
  padding: 40px 20px;
  background: #fff;
  text-align: center;
  box-shadow: 0px 0 30px rgba(1, 41, 112, 0.08);
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  transition: 0.3s;
}

.information .box:hover {
  transform: scale(1.1);
  box-shadow: 0px 0 30px rgba(1, 41, 112, 0.1);
}

.information h3 {
  font-weight: 700;
  font-size: 18px;
  margin-top: 15px;
}

.information .titletext {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 1.2rem;
  text-transform: uppercase;
}

.information .price {
  font-size: 36px;
  color: #54627b;
  font-weight: 600;
  font-family: "Open Sans", sans-serif;
}

.information .price sup {
  font-size: 20px;
  top: -15px;
  left: -3px;
}

.information .price span {
  color: #bababa;
  font-size: 16px;
  font-weight: 300;
}

.information img {
  padding: 30px 40px;
}

.information ul {
  padding: 0;
  list-style: none;
  color: #54627b;
  text-align: center;
  line-height: 26px;
  font-size: 16px;
  margin-bottom: 25px;
}

.information ul li {
  padding-bottom: 10px;
}

.information ul .na {
  color: #ccc;
  text-decoration: line-through;
}

.information .btn-buy {
  display: inline-block;
  padding: 8px 40px 10px 40px;
  border-radius: 50px;
  color: #d85555;
  transition: none;
  font-size: 16px;
  font-weight: 400;
  font-family: “Noto Sans TC”, “Open Sans”, sans-serif;
  font-weight: 600;
  transition: 0.3s;
  border: 1px solid #d85555;
}

.information .btn-buy:hover {
  background: #d85555;
  color: #fff;
}

.information .featured {
  width: 200px;
  position: absolute;
  top: 18px;
  right: -68px;
  transform: rotate(45deg);
  z-index: 1;
  font-size: 14px;
  padding: 1px 0 3px 0;
  background: #d85555;
  color: #fff;
}

/*--------------------------------------------------------------
# F.A.Q
--------------------------------------------------------------*/
.faq{
  background: #e8f4fa;

}
.faq .faq-list {
  padding: 0 100px;
}

.faq .faq-list ul {
  padding: 0;
  list-style: none;
}

.faq .faq-list li+li {
  margin-top: 15px;
}

.faq .faq-list li {
  padding: 20px;
  background: #fff;
  border-radius: 4px;
  position: relative;
}

.faq .faq-list a {
  display: block;
  position: relative;
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  padding: 0 30px;
  outline: none;
  cursor: pointer;
  color: #7fb5f1;
}

.faq .faq-list .icon-help {
  font-size: 24px;
  position: absolute;
  right: 0;
  left: 20px;
  color: #7fb5f1;
}

.faq .faq-list .icon-show,
.faq .faq-list .icon-close {
  font-size: 24px;
  position: absolute;
  right: 0;
  top: 0;
}

.faq .faq-list p {
  margin-bottom: 0;
  padding: 10px 0 0 0;
}

.faq .faq-list .icon-show {
  display: none;
}

.faq .faq-list a.collapsed {
  color: #7fb5f1;
}


.faq .faq-list a.collapsed:hover {
  color: #f78784;
}

.faq .faq-list a.collapsed .icon-show {
  display: inline-block;
}

.faq .faq-list a.collapsed .icon-close {
  display: none;
}

@media (max-width: 1200px) {
  .faq .faq-list {
    padding: 0;
  }
}



/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
  background: #fff;
  padding: 0 0 30px 0;
  font-size: 0.8rem;
  line-height: 1.5rem;
  color: #54627b;
}


.footer .copyright {
  text-align: center;
  padding-top: 30px;

}

.footer .credits {
  padding-top: 10px;
  text-align: center;
  font-size: 0.8rem;
}