
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
:root {
  scroll-behavior: smooth;
}

body {

  color: #444444;
}

a {
  color: #4154f1;
  text-decoration: none;
}

a:hover {
  color: #717ff5;
  text-decoration: none;
}

.videobox {
  width: 800px;
  max-width: 100%;

  margin: auto;
}

.videobox iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
}

/*--------------------------------------------------------------
# Sections
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

.section-header {
  text-align: center;
  padding-bottom: 40px;
}

.section-header h2 {
  font-size: 18px;
  letter-spacing: 1px;
  font-weight: 400;
  margin: 0;
  color: #4a4a4a;
  text-transform: uppercase;
}

.section-header p {
  margin: 10px;
  padding: 0;
  font-size: 38px;
  line-height: 42px;
  font-weight: 700;
  color: #2E3D47;
}
@media (max-width: 768px) {
.noshow-in-mobile {
display: none;
}
}
@media (min-width: 768px) {
.display-in-mobile {
display: none;
}
}

@media (max-width: 768px) {
  .section-header p {
    font-size: 28px;
    line-height: 32px;
  }


.myfooter {
  width: 100%;
  display: inline;
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 100;
  height: 65px;
  background-image:  linear-gradient(to right, #F09819 0%, #EDDE5D  51%, #F09819  100%);
  box-shadow: 0px 0px 36px rgba(220, 62, 126, 0.25);
  border-top: 2px solid transparent;
   text-align: center;
      padding-top: 14px;
}
   .myfooter a {
  font-size: 22px;
  color: #494242;
  font-weight: 600;
  margin: 10px 0;   
}
    .myfooter-rline {
        border-right: solid 2px #494242;
    }
    
}


/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: visible;
  opacity: 0;
  right: 15px;
  bottom: 62px;
  z-index: 99999;

}

.back-to-top img {
  width: 140px;

}


.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {

    .back-to-top img {
display: none;

}
}

/*--------------------------------------------------------------
# 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: 16px;
  font-size: 18px;
  font-weight: 700;
  color: #2E3D47;
  white-space: nowrap;
  transition: 0.3s;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: #F14949;
}



.navbar .getstarted,
.navbar .getstarted:focus {
            background-image: linear-gradient(to top,  #d80c18  0%, #ff6a00  100%);
            margin: 10px;
            padding: 8px 30px;
            text-align: center;
            text-transform: uppercase;
            transition: 0.5s;
            background-size: 200% auto;
            color: white;            
            border-radius: 30px;
            display: block;
}

.navbar .getstarted:hover,
.navbar .getstarted:focus:hover {
            background-position: right center; /* change the direction of the change here */
            color: #fff;
            text-decoration: none;
}

.navbar .getstarted-2,
.navbar .getstarted-2:focus {
            background-image: linear-gradient(to right, #FF8008 0%, #FFC837  51%, #FF8008  100%);
            margin: 10px;
            padding: 8px 30px;
            text-align: center;
            text-transform: uppercase;
            transition: 0.5s;
            background-size: 200% auto;
            color: white;            
            border-radius: 30px;
            display: block;
}

.navbar .getstarted-2:hover,
.navbar .getstarted-2:focus:hover {
            background-position: right center; /* change the direction of the change here */
            color: #fff;
            text-decoration: none;
}

.navbar .megamenu {
  position: static;
}

.navbar .megamenu ul {
  margin-top: 5px;
  right: 0;
  padding: 10px;
  display: flex;
}

.navbar .megamenu ul li {
  flex: 1;
}


/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #2E3D47;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #000;
}

@media (max-width: 1200px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  
  transition: 0.3s;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 60px;
  right: 0px;
  
  left: 0px;
  padding: 0 10px;

  background: #fff;
  overflow-y: auto;
  transition: 0.3s;
  
}

.navbar-mobile a,
.navbar-mobile a:focus {
  
  font-size: 18px;
  color: #000;
   text-align: left;
    
     display: block;
    text-align: left;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #000;
   background: #f5f5f5;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: #4154f1;
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}



/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 100vh;
  background: url("../img/hero-back.png") center bottom no-repeat;
  background-size: cover;
 position: relative;
}

@media (min-width: 1025px) {
  #hero {
    background-attachment: fixed;
  }
}

@media (max-width: 767px) {
  #hero {
  height: calc(100vh - 60px);
  }
}



#hero .product-screens {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  text-align: center;
  width: 100%;
  height: 50%;
}

#hero .product-screens img {
  
}

#hero .product-screens .product-screen-1 {
  position: absolute;
  z-index: 30;
  left: calc(50% - 280px);
  bottom: 0;
  top: 68px;
}

#hero .product-screens .product-screen-2 {
  position: absolute;
  z-index: 20;
  left: calc(50% - 550px);
  bottom: 0;
  top: 20px;
}

#hero .product-screens .product-screen-3 {
  position: absolute;
  z-index: 10;
  left: calc(50% - 750px);
  bottom: 0;
  top: 70px;
}

#hero .product-screens .product-screen-4 {
  position: absolute;
  z-index: 20;
  left: calc(50% + 70px);
  bottom: 0;
  top: 20px;
}
#hero .product-screens .product-screen-5 {
  position: absolute;
  z-index: 10;
  left: calc(50% + 290px);
  bottom: 0;
  top: 70px;
}

@media (max-width: 767px) {
  
  #hero .product-screens {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  text-align: center;
  width: 100%;
  height: 58%;
}

  #hero .product-screens .product-screen-1 {
    position: static;
    
    bottom: 0;
    margin: auto 0;
    

  }

  #hero .product-screens .product-screen-2,
  #hero .product-screens .product-screen-3,
  #hero .product-screens .product-screen-4,
  #hero .product-screens .product-screen-5{
    display: none;
  }
}



/*--------------------------------------------------------------
# visual-wrap
--------------------------------------------------------------*/
#visual-wrap {
  width: 100%;
  height: 100vh;
  background: url(../img/hero-back.png) top center no-repeat;
  background-size: cover;
}

#visual-wrap h1 {
  margin: 50px;
  font-size: 80px;
  font-weight: 700;
  color: #2E3D47;
}

#visual-wrap h2 {
  color: #444444;
  margin: 15px 0 0 0;
  font-size: 26px;
}

#visual-wrap .hero-img {
  text-align: right;
}

@media (min-width: 1024px) {
  .visual-wrap {
    background-attachment: fixed;
  }
}

@media (max-width: 991px) {
  .visual-wrap {
    height: auto;
    padding: 120px 0 0px 0;
      
  }

  .visual-wrap .hero-img {
    text-align: center;
    margin-top: 80px;
      
  }

  .visual-wrap .hero-img img {
      position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 5px;
  }
 .visual-bg-wrap {
  
   margin-top: -15px;
   width: 60%;  
 
}  
    
}

@media (max-width: 768px) {
  .visual-wrap {
    text-align: center;
      padding: 120px 0 0px 0;
  }

  .visual-wrap .hero-img img {
    width: 100%;
  }

}




.visual-bg-wrap {
  position: absolute;
  width: 100%;
  height: fit-content;
  bottom: 0;
  display: flex;
  justify-content: center;
  overflow: hidden;
  align-items: flex-end;
}

.visual-bg-wrap img {
  height: 485px;
  object-fit: cover;
  position: relative;
  opacity: 0;
  top: 500px;
  
}
@media (max-width: 768px) {
.visual-bg-wrap img {
  height: 440px;

  
}
}

.visual-bg-wrap img:not(:nth-child(3)) {
  height: 517px;
}

.visual-bg-wrap img:nth-child(3) {
  animation: toUp 0.95s 1s ease forwards;
  z-index: 10;
}

/* sam1 */
/* .visual-bg-wrap img:nth-child(2),
.visual-bg-wrap img:nth-child(4) {
  top: 0;
  animation: opacity1 1.5s 1.9s ease forwards;
}

.visual-bg-wrap img:nth-child(1),
.visual-bg-wrap img:nth-child(5) {
  top: 0;
  animation: opacity1 1.5s 1.98s ease forwards;
} */

/* sam2 */
.visual-bg-wrap img:nth-child(2) {
  top: 0;
  left: 150px;
  animation: toLeft 0.7s 1.9s ease forwards;
}

.visual-bg-wrap img:nth-child(1) {
  top: 0;
  left: 150px;
  animation: toLeft 0.7s 2.1s ease forwards;
}
.visual-bg-wrap img:nth-child(4) {
  right: 150px;
  top: 0;
  animation: toRight 0.7s 1.9s ease forwards;
}

.visual-bg-wrap img:nth-child(5) {
  right: 150px;
  top: 0;
  animation: toRight 0.7s 2.1s ease forwards;
}

@keyframes toUp {
  100% {
    top: 0;
    opacity: 1;
  }
}

@keyframes toLeft {
  100% {
    left: 0;
    opacity: 1;
  }
}
@keyframes toRight {
  100% {
    right: 0;
    opacity: 1;
  }
}



.v-subtit {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.3px;
  text-align: center;
  color: #000;
  margin-bottom: 40px;
  margin-top: 64px;
  position: relative;
  top: 30px;
  opacity: 0;
  animation: motion-visible 0.5s 0.5s ease forwards;
  z-index: 5;
}

.v-tit {
  font-size: 56px;
  font-weight: bold;
  line-height: 1.34;
  letter-spacing: -0.84px;
  text-align: center;
  color: #000;
  margin-bottom: 40px;
  opacity: 0;
  position: relative;
  top: 30px;
  animation: motion-visible 0.5s 0.5s ease forwards;
  z-index: 5;
}

@keyframes motion-visible {
  100% {
    top: 0;
    opacity: 1;
  }
}


/*--------------------------------------------------------------
# Index Page
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
#about {
    background-image: linear-gradient(to right, #EB3349 0%, #F45C43  51%, #EB3349  100%);
    padding: 20px 20px 0 20px;
    border-radius: 30px;
    max-width: 65%;
    margin: 0 auto;
    margin-top: 16px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 20px 25px -5px, rgba(0, 0, 0, 0.04) 0px 10px 10px -5px;
}

.about h3 {
  font-size: 20px;
  font-weight: 600;

  display: inline-block;
 margin-left: 4px;
    padding-bottom: 4px;
    color: #fff;

}

.about h2 {
  color: var(--color-secondary);
  font-weight: 700;
  font-size: 56px;
  color: #ffffff;
}

.about h4 {
  color: #ffffff;
  font-size: 18px;
    line-height: 24px;
}

.about .btn {
  font-size: 22px;
  font-weight: 600;
 border: 2px solid #fff;
  display: inline-block;
    padding: 10px 24px;
    color: #fff;
    border-radius: 30px;
    margin: 6px 0;
}
.about .btn:hover {
   background-color: #fff;
    color: #f14949;

}


.about .card2 {
  border: 0;

  position: relative;
  width: 100%;
}
.about .entry-meta {
  margin-bottom: 15px;
  color: #4084fd;
  background: rgba(255, 255, 255, 0.9);
  padding: 15px 0px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
    display: grid;
  place-content: center;
    width: 70%;
    margin: 0 auto;
}

.about .entry-meta ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;

  padding: 0;
  margin: 0;
}

.about .entry-meta ul li+li {
  padding-left: 10px;
    
}
.about .entry-meta ul li+li::before {
    display: inline-block;
  padding-right: 10px;
  color: #6c757d;
  content: "|";
    
}

.about .entry-meta a {
  color: #323d47;
  font-size: 18px;
    font-weight: bold;
  display: inline-block;
}
.about .entry-meta a:hover {
  text-decoration: underline;
}


@media (max-width: 768px) {
    
 #about {

    max-width: 95%;
   padding: 30px 0px 0px 0px;
}
  .about h2 {
  color: var(--color-secondary);
  font-weight: 700;
  font-size: 38px;
  color: #ffffff;
}

.about .card2 {
  border: 0;

  position: relative;
  width: 100%;

}
.about .entry-meta {
  margin-bottom: 15px;
  color: #4084fd;
  background: rgba(255, 255, 255, 0.9);
  padding: 15px 40px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
    width: 100%;
}
 .about .btn {
  font-size: 18px;
  font-weight: 600;
 border: 2px solid #fff;
  display: inline-block;
    padding: 6px 24px;
    color: #fff;
    border-radius: 30px;
    margin: 10px 0 18px 0;
}
}

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features {
  padding-top: 30px;
  
}

.features .features-item+.features-item {
  margin-top: 30px;
}


.features .features-item h2 {
  background-repeat: no-repeat;
  background-position: right top;
  font-weight: 700;
  font-style: italic;
  font-size: 240px;
  color: #fdf2f3;
}
.features .features-item h3 {
  font-weight: bold;
  font-size: 60px;
  color: #ea3524;
  display: block;
  margin-top: -160px;
  margin-left: 100px;
}
.features .features-item h4 {
  font-weight: 600;
  font-size: 24px;
  margin-top: 0px;
  margin-left: 100px;
}
.features .features-item p {
  font-weight: 400;
  font-size: 20px;
  margin-top: 16px;
  margin-left: 100px;
}

.btn-get-started {
  font-weight: 600;
  font-size: 20px;
  margin-top: 60px;
  padding: 12px 40px;
  border-radius: 30px;
  transition: 0.5s;
  background-image: linear-gradient(to right, #EB3349 0%, #F45C43  51%, #EB3349  100%);
  margin-left: 100px;
   color: #fff;
}
.btn-get-started:hover {

  color: #fff;

}
@media (max-width: 768px)  {

    .features .features-item h3 {
  font-size: 50px;
  margin-left: 80px;
}
.features .features-item h4 {

  margin-left: 80px;
}
.features .features-item p {
  font-size: 18px;
  margin-left: 80px;
}
.btn-get-started {
  font-size: 18px;
  margin-left: 80px;

}
}

.features .features-item ul {
  list-style: none;
  padding: 0;
}

.features .features-item ul li {
  padding-bottom: 10px;
}

.features .features-item ul li:last-child {
  padding-bottom: 0;
}

.features .features-item ul i {
  font-size: 20px;
  padding-right: 4px;
  color: var(--color-primary);
}

.features .features-item p:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# F.A.Q
--------------------------------------------------------------*/
#faq {
  background-color: #ffffff;
    margin-bottom: 50px;
}


.faq .accordion-collapse {
  border: 0;
}

.faq .accordion-button span {
  padding-right: 15px;
  font-weight: 600;
  border: 0;
  font-size: 24px;
  color: #444444;
  text-align: left;
}
.faq .accordion-button {
  padding: 15px 15px 20px 0;
  font-weight: 600;
  border: 0;
  font-size: 18px;
  color: #444444;
  text-align: left;
}

.faq .accordion-button:focus {
  box-shadow: none;
}

.faq .accordion-button:not(.collapsed) {
  background: none;
  color: #F89900;
  border-bottom: 0;
}

.faq .accordion-body {
  padding: 0 0 25px 11px;
  border: 0;
  font-size: 18px;
  color: #444444;
    text-align: justify;   
}

/*------# F.A.Q 更多說明-------*/
details {
  position:relative;
}
details summary {
  display:block;
  cursor: pointer;
  color: #404040;
  background-color: #e7e7e7;
    text-align: center;
    padding: 6px;
}

details summary:focus {
  outline:none;
}
details[open] {
  display:block;
  padding-bottom:25px;
  padding-top:10px;
  animation: open .2s linear;
}
details[open] summary {
  position:absolute;
  bottom: 0;
  left:0;
}

details #open{padding-left:5px;text-align:middle;}
details #open:after{
    display: inline-block;
    position:relative;
    top: -3px;
    padding-left: 8px;
    content: "\00bb";
    transform: rotate(90deg);
}
details[open] #open{display:none;}
details #close{display:none;}
details[open] #close{display:block;}

::-webkit-details-marker {display: none;}





@keyframes open {
  0% {
    opacity: 0;
    transform: translateY(-10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials {
  background-color: #f7f7f9;
}
.testimonials .testimonial-item {
  box-sizing: content-box;
  
  margin: 40px 30px;
  box-shadow: 0px 0 20px rgba(1, 41, 112, 0.1);
  min-height: 320px;
  display: flex;
  flex-direction: column;
  text-align: center;
  transition: 0.3s;
    border-radius: 30px;
}

.testimonials .testimonial-item2 {

  
  margin: 20px;

  display: flex;
  flex-direction: column;
  text-align: center;
  transition: 0.1s;

}
iframe {height: 198px;border-radius: 10px;}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #7c7c7c;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #7c7c7c;
}

.testimonials .swiper-slide {
  opacity: 0.3;
    border-radius: 30px;
}

@media (max-width: 1199px) {
  .testimonials .swiper-slide-active {
    opacity: 1;
  }

  .testimonials .swiper-pagination {
    margin-top: 0;
  }
}

@media (min-width: 1200px) {
  .testimonials .swiper-slide-next {
    opacity: 1;
    transform: scale(1.01);
    
      border-radius: 30px;
  }
}
  .testimonials .member {
  overflow: hidden;
  text-align: center;
  
  
  box-shadow: 0px 0 0px rgba(1, 41, 112, 0.08);
  transition: 0.3s;
      border-radius: 30px;
      
}


  .testimonials .member .member-info {
  box-sizing: content-box;
  padding: 30px;
  margin: 40px 30px;

  background: #fff;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  text-align: center;
  transition: 0.3s;
}
  .testimonials .member .member-info .profile {
 padding-top: 30px;
  background: #f5f7f9;
      margin: 20px 0;

}
  .testimonials .member .member-info .stars {
  margin-bottom: 15px;
}

  .testimonials .member .member-info .stars i {
  color: #ffc107;
  margin: 0 1px;
}

  .testimonials .member .member-info .testimonial-img {
  width: 90px;
  border-radius: 50%;
  border: 4px solid #ccdff9;
  margin: 0 auto;
      margin-bottom: -30px;
      z-index: 999;
}
  .testimonials .member .member-info h4 {
  font-size: 16px;
  border-top: solid 1px #e7e8ea;
  margin: 4px 0 0 0;
  color: #111;
      padding: 6px;

}
  .testimonials .member .member-info h6 {
  font-size: 26px;
  font-weight: bold;
  padding: 2px 0;
  color: #111;
  letter-spacing: 1px;
}
  .testimonials .member .member-info h6 a {
  font-weight: 700;
  font-size: 20px;

}

  .testimonials .member .member-info span {
  font-size: 14px;
  color: #999;

      padding-bottom: 10px;

}

  .testimonials .member .member-info p {
  font-size: 16px;

  line-height: 26px;
  color: #5e5e5e;
  text-align: justify;
  font-style: italic;
  margin: 0 auto 15px auto; 
  margin: 6px 0;
  padding: 0;
}



  .testimonials .member .member-info .quote-icon-left,
  .testimonials .member .member-info .quote-icon-right {
  color: #67ABD9;
  font-size: 26px;
  line-height: 0;
}

  .testimonials .member .member-info .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

  .testimonials .member .member-info .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}


/*--------------------------------------------------------------
# cta
--------------------------------------------------------------*/
#cta {
  position: relative;
  padding: 30px;
  background-color: #ffffff;   

}
.app-badge {
    margin-bottom: 20px;
}
#cta span {
  margin-top: 60px;
  line-height: 0;
  padding: 16px 40px;
  border-radius: 30px;
  transition: 0.5s;
  background-image: linear-gradient(to right, #EB3349 0%, #F45C43  51%, #EB3349  100%);
}
#cta span a {
font-weight: 600;
  color: #fff;
    font-size: 22px;

}
#cta h2 {
  position: relative;
  font-size: 20px;
  color: #ffffff;  

}
#cta h2 a {
  position: relative;
  font-size: 20px;
  color: #ffffff;  
  text-decoration: underline;
    font-weight: 600;

}
.cta .cta-content {
  position: relative;
  z-index: 1;
}
.cta:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}
/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/

.bg-gradient-primary-to-secondary {
  background-image: linear-gradient(to right, #e53935 0%, #e35d5b  51%, #e53935  100%);
}
.bg-gradient-primary-to-secondary .box {
  padding: 20px;
  background: #fff;
  text-align: center;
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.12);
  border-radius: 5px;
  position: relative;
  overflow: hidden;
}
.bg-gradient-primary-to-secondary h2 {
  font-weight: 400;
  font-size: 30px;
  font-weight: 600;
  color: #ffffff;
}

.bg-gradient-primary-to-secondary h3 {
  font-weight: 400;
  margin: -20px -20px 20px -20px;
  padding: 20px 15px;
  font-size: 16px;
  font-weight: 600;
  color: #656262;
  background: #f8f8f8;
}

.bg-gradient-primary-to-secondary h4 {
  font-size: 30px;
  color: #484848;
  font-weight: 600;
  margin-bottom: 20px;
}


.bg-gradient-primary-to-secondary h4 span {
  color: #bababa;
  font-size: 16px;
  font-weight: 300;
}

.bg-gradient-primary-to-secondary ul {
  padding: 0;
  list-style: none;
  color: #313030;
  text-align: center;
  line-height: 20px;
  font-size: 14px;
}

.bg-gradient-primary-to-secondary ul li {
  padding-bottom: 16px;
}

.bg-gradient-primary-to-secondary ul i {
  color: #ff5821;
  font-size: 18px;
  padding-right: 4px;
}

.bg-gradient-primary-to-secondary ul .na {
  color: #ccc;
  text-decoration: line-through;
}

.bg-gradient-primary-to-secondary .btn-wrap {
  margin: 20px -20px -20px -20px;
  padding: 20px 15px;
  background: #f8f8f8;
  text-align: center;
}

.bg-gradient-primary-to-secondary .btn-buy {
  background: #ff5821;
  display: inline-block;
  padding: 6px 35px 8px 35px;
  border-radius: 4px;
  color: #fff;
  transition: none;
  font-size: 20px;
  font-weight: 400;
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  box-shadow: 0 3px 7px rgba(255, 88, 33, 0.4);
  transition: 0.3s;
}

.bg-gradient-primary-to-secondary .btn-buy:hover {
  background: #ff7e54;
}

.bg-gradient-primary-to-secondary .featured h3 {
  color: #fff;
  background: #ff5821;
  box-shadow: 0 3px 7px rgba(255, 88, 33, 0.4);
}

.bg-gradient-primary-to-secondary .advanced {
  width: 200px;
  position: absolute;
  top: 18px;
  right: -68px;
  transform: rotate(45deg);
  z-index: 1;
  font-size: 14px;
  padding: 1px 0 3px 0;
  background: #ff5821;
  color: #fff;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  color: #414c64;
  font-size: 16px;
  background: #f4f5f8;
}

#footer .social-links {

  margin-left: 30px;

}
#footer .social-links a {
  font-size: 22px;
  display: inline-block;
  background: #e1e4ec;
  color: #5f6f92;
  line-height: 1;
  padding: 10px 0;
  margin-right: 8px;
  border-radius: 50%;
  text-align: center;
  width: 42px;
  height: 42px;
  transition: 0.3s;
}

#footer .social-links a:hover {
  background: #5f6f92;
  text-decoration: none;
  color: #e1e4ec;  
}




.faq section {
   
}



* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
}






article {
    margin-bottom: 3rem;
    position: relative;
    *zoom: 1;
}

article:before, article:after {
    content: "";
    display: table;
}

article:after { clear: both }


article section:first-of-type {
    
    
}

article section:last-of-type {
    display: none;
    visibility: hidden;
}



input[type=checkbox] {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    width: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
}

[for="read_more"] {
    position: absolute;
    bottom: -3rem;
    left: 0;
    width: 100%;
    text-align: center;
    padding: .65rem;
    box-shadow: inset 1px 1px rgba(0, 0, 0, 0.1), inset -1px -1px rgba(0, 0, 0, 0.1);
}

[for="read_more"]:hover {
    background: rgba(0,0,0,.5);
    color: rgb(255,255,255);
}

[for="read_more"] span:last-of-type {
    display: none;
    visibility: hidden;
}

input[type=checkbox]:checked ~ section {
    display: block;
    visibility: visible;
    width: 100%;
}

input[type=checkbox]:checked ~ figure { width: 100% }

input[type=checkbox]:checked ~ [for="read_more"] span:first-of-type {
    display: none;
    visibility: hidden;
}

input[type=checkbox]:checked ~ [for="read_more"] span:last-of-type {
    display: block;
    visibility: visible;
}

/*--------------------------------------------------------------
放薪交給好富投
--------------------------------------------------------------*/


.slider-container {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.slider {
  width: 100%;
  max-width: 600px;
  height: 400px;
  margin: 20px;
  text-align: center;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}

.slides {
  display: flex;
  overflow-y: hidden;
  position: relative;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
}

.slide:nth-of-type(even) {
  
}

.slide {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  width: 100%;
  height: 400px;
  scroll-snap-align: center;
  margin-right: 0px;
  box-sizing: border-box;
  background: white;
  transform-origin: center center;
  transform: scale(1);
}

.slide__text {
  font-size: 40px;
  font-weight: bold;
}

.slide a {
  background: none;
  border: none;
}

a.slide__prev,
.slider::before {
  transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
  left: 2%;
}

a.slide__next,
.slider::after {
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  right: 2%;
}

.slider::before,
.slider::after,
.slide__prev,
.slide__next {
  position: absolute;
  top: 48%;
  width: 20px;
  height: 20px;
  border: solid black;
  border-width: 0 4px 4px 0;
  padding: 3px;
  box-sizing: border-box;
}

.slider::before,
.slider::after {
  content: "";
  z-index: 1;
  background: none;
  pointer-events: none;
}

.slider__nav {
  box-sizing: border-box;
  position: absolute;
  bottom: 1%;
  left: 50%;
  width: 200px;
  margin-left: -100px;
  text-align: center;
}

.slider__navlink {
  display: inline-block;
  height: 5px;
  width: 5px;
  border-radius: 50%;
  background-color: black;
  margin: 0 10px 0 10px;
}








.read-article{
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 999;
  color: #272727;
  background: white;
  padding: 10px 20px;
  border-radius: 10px;
  font-family: arial;
  text-decoration: none;
  box-shadow: rgb(50 50 93 / 25%) 0 0 100px -20px, rgb(0 0 0 / 30%) 0 0 60px -15px;
}
.read-article:hover{
    background: #d5d5d5;
    box-shadow: rgb(50 50 93 / 25%) 0 0 100px -20px, rgb(0 0 0 / 30%) 0 0 60px 0px;
}
iframe[sandbox] .read-article{
  display: none;
}

