/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root {
  --background-color: #ffffff;
  /* Background color for the entire website, including individual sections */
  --default-color: #444444;
  /* Default color used for the majority of the text content across the entire website */
  --heading-color: #555555;
  /* Color for headings, subheadings and title throughout the website */
  --accent-color: #3fbbc0;
  /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff;
  /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff;
  /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #444444;
  /* The default color of the main navmenu links */
  --nav-hover-color: #3fbbc0;
  /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff;
  /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff;
  /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #444444;
  /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #3fbbc0;
  /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #f7fcfc;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #ffffff;
}

.accent-background {
  --background-color: #3fbbc0;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #65c9cd;
}


/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: #444444; 
  background: #fdf1df; 
  font-family: arial, "Microsoft JhengHei", "微軟正黑體", sans-serif !important;
    width: 100%;
    overflow-x: hidden;
}

#gtx-trans {
  display: none;
}

@media only screen and (max-width: 768px) {
  .container {
    width: 100%;
    overflow-x: hidden;
  }
}

a:hover {

  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #555555;
  

}

/*--------------------------------------------------------------
# 手機板按鈕
--------------------------------------------------------------*/

@media (min-width: 767px) and (max-width: 2560px) {
  .pc-none {
    display: none;
  }

  .myfooter {
    display: none;
  }
}

@media (max-width: 767px) {
  .m-none {
    display: none;
  }

  .myfooter {
    width: 100%;
    display: inline-block;
    position: fixed;
    left: 0;
    bottom: 0;
    z-index: 100;
    height: 65px;
    background-image: linear-gradient(to right, #FFE248 0%, #F3981E 51%, #FFE248 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: #000;
    font-weight: 600;
    margin: 10px 0;
    text-decoration: none;

  }

  .myfooter a:hover {

    text-decoration: underline;

  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {}






.header.sticked {
  background: rgba(14, 29, 52, 0.9);
  padding: 15px 10px;
  box-shadow: 0px 2px 20px rgba(14, 29, 52, 0.1);
}

/*
.header .logo img {
  max-height: 40px;

}
*/
.navbar-brand {
  padding-top: 0.3125rem;
  padding-bottom: 0.1125rem;
  margin-right: 0rem;
  font-size: 1.15rem;
  text-decoration: none;
  white-space: nowrap;
}


/*--------------------------------------------------------------
# Desktop Navigation
--------------------------------------------------------------*/
@media (min-width: 1280px) {
  .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;
    margin: 0 12px;
    font-size: 16px;
    font-weight: 600;
    color: #000;
    white-space: nowrap;
    transition: 0.3s;
    text-decoration: none;
  }

  .navbar a:hover,
  .navbar .active,
  .navbar .active:focus,
  .navbar li:hover>a {
    padding-bottom: 6px;
    border-bottom: solid 2px #000;
  }


}


@media (min-width: 1280px) {

  .mobile-nav-show,
  .mobile-nav-hide {
    display: none;
  }
}

/*--------------------------------------------------------------
# Mobile Navigation 手機板
--------------------------------------------------------------*/
@media (max-width: 1279px) {
  .navbar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    bottom: 0;
    transition: 0.3s;
    z-index: 9997;
  }

  .navbar ul {
    position: absolute;
    inset: 0;
    padding: 50px 0 10px 0;
    margin: 0;
    background: rgba(14, 29, 52, 0.9);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;

  }

  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    font-size: 19px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    white-space: nowrap;
    transition: 0.3s;
    text-decoration: none;
    border-bottom: solid 1px #fff;
    margin: 4px 20px;

  }



  .navbar a:hover,
  .navbar .active,
  .navbar .active:focus,
  .navbar li:hover>a {
    color: #fff;
  }

  .navbar .get-a-quote,
  .navbar .get-a-quote:focus {
    background: var(--color-primary);
    padding: 8px 20px;
    border-radius: 4px;
    margin: 15px;
    color: #fff;
  }

  .navbar .get-a-quote:hover,
  .navbar .get-a-quote:focus:hover {
    color: #fff;
    background: rgba(13, 66, 255, 0.8);
  }

  .navbar .dropdown ul,
  .navbar .dropdown .dropdown ul {
    position: static;
    display: none;
    padding: 10px 0;
    margin: 10px 20px;
    transition: all 0.5s ease-in-out;
    border: 1px solid #19335c;
  }

  .navbar .dropdown>.dropdown-active,
  .navbar .dropdown .dropdown>.dropdown-active {
    display: block;
  }

  .mobile-nav-show {
    color: #d3aa0e;
    font-size: 28px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    z-index: 9999;
    margin-right: 10px;
  }

  .mobile-nav-hide {
    color: #fff;
    font-size: 32px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    position: fixed;
    right: 20px;
    top: 20px;
    z-index: 9999;
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .navbar {
    right: 0;
  }

  .mobile-nav-active .navbar:before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(14, 29, 52, 0.8);
    z-index: 9996;
  }
}



/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
footer {
  padding: 20px 0;
  display: block;
  font-size: 16px;
  letter-spacing: 1px;
  text-align: center;

  color: #fff;

  clear: both;
  background-size: 100%;
  background-color: #a1a1a1;

  letter-spacing: 1px;
  font-size: 15px;
  line-height: 18px;
  margin: 0px auto;

}




@media (max-width: 767px) {
  footer {

    margin-bottom: 65px;
  }

  footer span {
    display: block;
    text-indent: -99999px;
    height: 7px;
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 37px;
  bottom: 66px;
  z-index: 99999;
  background-color: #FF4B66;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.scroll-top:hover {
  background-color: #f1a700;
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

#goTop2 {
  display: block;
  position: fixed;
  bottom: 125px;
  /* 與下方的距離, 也可改為百分比, 即為距離螢幕下方的百分比 */
  right: 15px;
  /* 與右方的距離 */
  width: 100px;
  /* 按鈕原始寬度 */
  height: 100px;
  /* 按鈕原始高度 */
  opacity: 0.99;
  /* 按鈕原始透明度 */
  z-index: 10;
  cursor: pointer;
  transition: all .5s;
  /* 動畫效果 持續期間 */
  -webkit-transition: all .5s;
  -moz-transition: all .5s;
}

#goTop2:hover {
  /* 滑鼠經過按鈕時 */
  opacity: 1;
  /* 透明度 */
  width: 80px;
  /* 按鈕寬度 */
  height: 80px;
  /* 按鈕高度 */
}

/*在手機板立即開戶BANNER消失*/
@media (max-height: 500px),(max-width: 767px) {
#goTop2 {
  display:none;
}
}
@media (max-height: 500px),(max-width: 767px) {
#goTop2:hover {
  display:none;
}
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  position: relative;
}

.page-title .heading {
  padding: 80px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.page-title .heading h1 {
  font-size: 38px;
  font-weight: 700;
}

.page-title nav {
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  padding: 20px 0;
}

.page-title nav ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 16px;
  font-weight: 400;
}

.page-title nav ol li+li {
  padding-left: 10px;
}

.page-title nav ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding: 40px 0 0 0;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  position: relative;
}

.section-title h2:before,
.section-title h2:after {

  background: #5f5f5f;
  display: inline-block;
}

.section-title h2:before {
  margin: 0 15px 10px 0;
}

.section-title h2:after {
  margin: 0 0 10px 15px;
}

@media (max-height: 500px),(max-width: 580px) {
  .section-title h2 {
    font-size: 26px;
    font-weight: 700;
    position: relative;
  }

  .section-title h2:before,
  .section-title h2:after {

    width: 30px;

  }
}


/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.pc{
  display: block;
}
.mb {
  display: none;
  
}

@media (max-width: 767px) {
  .pc {
    display: none;
  }
  .mb {
    display: block;
  }
}



.hero {
  /* width: 100%; */
  padding-bottom: 12px;
  margin: 0 auto;
  position: relative;
  /* background: linear-gradient(#64b8ff, #d5ebfd); */
}

.hero .mainTitle {
  margin-top: 67px;
}

.hero .mainTitle img {
  max-width: 800px;
  width: 100%;
  height: auto;
  margin: 0 auto;
  border-radius: 0;
  box-shadow: none;
}

.hero .nowopen2 {
  margin-bottom: 24px;
}


.hero .nowopen2 a {
  position: relative;
  z-index: 1;
  display: block;
  width: 32%;
  margin: -30px auto 0;
  color: #fff;
  text-decoration: none;
  text-align: center;
  font-size: 1.5vw;
  font-weight: bold;
  background-color: #ea5978;
  border-radius: 50px;
  border: 4px solid #FFF;
  -webkit-user-select: none;
  padding: 1% 0;
}

.nowopen2 a:hover {
  transform: scale(0.95);
}

@media screen and (max-width: 530px) {
  margin-top: 20px;
  margin-bottom: 24px;
}

@media screen and (max-width: 530px) {
  .hero .nowopen2 a {
    display: block;
    width: 40%;
    color: #fff;
    text-decoration: none;
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    background-color: #ea5978;
    border-radius: 30px;
    border: 2px solid #FFF;
    -webkit-user-select: none;
    padding: 1.3% 0;
    position: absolute;
    top: 78%;
    left: 28%;
/*    z-index: 3;*/
  }
}

.hero .carousel {
  width: 100%;
  padding: 0;
  margin: 0;
  position: relative;

}

.hero .cta-btn {
  font-weight: 600;
  font-size: 20px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 50px;
  transition: 0.3s;
  margin: 20px;
  border: 2px solid #b93415;
  color: #b93415;
  display: inline-block;
  text-decoration: none;
}

.hero .cta-btn:hover {
  background: #b93415;
  color: #fff;
  border: 2px solid #b93415;
}


.carousel-item img {
  margin: 0 auto;
  bottom: 0;
  border-radius: 20px;
  display: block;
  max-width: 80%;
  height: auto;
  object-fit: cover;
  z-index: 1;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
}

.hero .carousel::after {
  content: '';
  display: block;
  clear: both;
}

.hero .container {
  position: relative;
  text-align: center;
  margin-bottom: 10px;
  z-index: 3;
}

.hero .container a {
  display: block;
}

.hero .carousel-control-prev {
  justify-content: start;
  padding-left: 100px;
  text-decoration: none;
}


.hero .carousel-control-next {
  justify-content: end;
  padding-right: 100px;
  text-decoration: none;
}

@media screen and (max-width: 991px) {
  .hero .carousel-control-prev {
    padding-left: 60px;
  }

  .hero .carousel-control-next {
    padding-right: 60px;
  }
}


@media screen and (max-width: 560px) {
  .hero .carousel-control-prev {
    justify-content: start;
    padding-left: 100px;
    text-decoration: none;
  }
}

@media screen and (max-width: 560px) {
  .hero .carousel-control-next {
    justify-content: end;
    padding-right: 100px;
    text-decoration: none;
  }
}


.hero .carousel-control-next-icon,
.hero .carousel-control-prev-icon {
  background: none;
  font-size: 28px;
  line-height: 0;
  border: thin solid 2px #ba9d16;
  color: #ffe56a;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.8);
  color: #d7b82a;

  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;

}

.hero .carousel-control-prev,
.hero .carousel-control-next {
  transition: 0.3s;
  opacity: 0.5;
}

.hero .carousel-control-prev:focus,
.hero .carousel-control-next:focus {
  opacity: 0.5;
}

.hero .carousel-control-prev:hover,
.hero .carousel-control-next:hover {
  opacity: 0.9;
}

.hero .carousel-control-prev:hover .carousel-control-next-icon,
.hero .carousel-control-prev:hover .carousel-control-prev-icon,
.hero .carousel-control-next:hover .carousel-control-next-icon,
.hero .carousel-control-next:hover .carousel-control-prev-icon {

  background: rgba(0, 0, 0, 0.1);
  color: #ffe248;
}

.hero .carousel-indicators li {
  cursor: pointer;
  background: var(--contrast-color);
  overflow: hidden;
  border: 0;
  width: 12px;
  height: 12px;
  border-radius: 50px;
  opacity: 1;
  transition: 0.3s;

}

.hero .carousel-indicators li.active {
  opacity: 1;
  background: var(--accent-color);
}

@media (max-width: 767px) {
  #hero {
    margin-top: 40px;

  }

  .carousel-item img {
    margin: 0 auto;
    bottom: 0;
    border-radius: 20px;
    display: block;
    max-width: 90%;
    height: auto;
    object-fit: cover;
    z-index: 1;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
  }

  .hero {
    padding-bottom: 20px;
    max-width: 720px;
    margin: 0 auto;
  }

  .hero .mainTitle img {
    max-width: 720px;
  }

  .hero .nowopen2 a {
    margin-top: -10px;
  }

  .hero .carousel-control-prev {
    justify-content: start;
    padding-left: 30px;
    text-decoration: none;
  }


  .hero .carousel-control-next {
    justify-content: end;
    padding-right: 30px;
    text-decoration: none;
  }

  .hero .carousel-control-next-icon, 
  .hero .carousel-control-prev-icon{
    width: 32px;
    height: 32px;
    font-size: 24px;
  }

}

@media (max-width: 575px) {
  .hero .carousel-control-prev {
    padding-left: 10px;
  }


  .hero .carousel-control-next {
    padding-right: 10px;
  }
}





/*--------------------------------------------------------------
跑馬燈
--------------------------------------------------------------*/

.custome-marquee {
  width: 100%;
  height: 40px;
  overflow: hidden;
  position: relative;
}

.custome-marquee div {
  background-color: #b93415;
  display: block;
  width: 200%;
  height: 33px;

  position: absolute;
  overflow: hidden;

  animation: marquee 15s linear infinite;
}

.custome-marquee span {
  float: left;
  padding-top: 4px;
  margin-left: 16px;
  font-size: 18px;
  font-weight: bolder;
  letter-spacing: 1px;
  text-stroke: 1px;

  color: white;
}

@keyframes marquee {
  0% {
    left: 0;
  }

  50% {
    left: -50%;
  }

  100% {
    left: 0;
  }
}


@media only screen and (max-width: 600px) {
  .custome-marquee div {
    background-color: #b93415;
    display: block;
    width: 200%;
    height: 30px;
  }

  .custome-marquee span {
    font-size: 16px;
  }
}

/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action {

  margin: 0 auto;
  padding: 40px 0;
  position: relative;
  background: #0B1270;
}

.call-to-action .container {
  position: relative;
  z-index: 3;
}


/*--------------------------------------------------------------
跑馬燈
--------------------------------------------------------------*/


.call-to-action .cta-btn {
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 1px;

  padding: 30px 40px;

  margin: 40px;

  color: #b93415;
}

.call-to-action .cta-btn:hover {}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  box-sizing: content-box;
  min-height: 320px;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50%;
  margin: -40px 0 0 40px;
  position: relative;
  z-index: 2;
  border: 6px solid var(--background-color);
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 45px;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 0 0 0 45px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: color-mix(in srgb, var(--accent-color), transparent 50%);
  font-size: 26px;
  line-height: 0;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 15px 0 15px;
  padding: 20px 20px 60px 20px;
  background: color-mix(in srgb, var(--default-color), transparent 97%);
  position: relative;
  border-radius: 6px;
  position: relative;
  z-index: 1;
}

.testimonials .swiper-wrapper {
  height: auto;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: var(--background-color);
  opacity: 1;
  border: 1px solid var(--accent-color);
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}



/*--------------------------------------------------------------
# Gallery Section
--------------------------------------------------------------*/
#gallery {
  background: #f3c066;
  margin: 0 auto;
}

.gallery {
  overflow: hidden;
}


@media (min-width: 992px) {
  .gallery .swiper-wrapper {
    padding: 100px 0;
  }

  .gallery .swiper-slide-active {
    background: var(--background-color);
    border: 6px solid var(--accent-color);
    padding: 4px;
    z-index: 1;
    transform: scale(1.2);
    transition: none;
  }
}


/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .services-list {
  background-color: var(--surface-color);
  padding: 10px 30px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  margin-bottom: 20px;
}

.service-details .services-list a {
  display: block;
  line-height: 1;
  padding: 8px 0 8px 15px;
  border-left: 3px solid color-mix(in srgb, var(--default-color), transparent 70%);
  margin: 20px 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  transition: 0.3s;
}

.service-details .services-list a.active {
  color: var(--heading-color);
  font-weight: 700;
  border-color: var(--accent-color);
}

.service-details .services-list a:hover {
  border-color: var(--accent-color);
}

.service-details .services-img {
  margin-bottom: 20px;
}

.service-details h3 {
  font-size: 26px;
  font-weight: 700;
}

.service-details h4 {
  font-size: 20px;
  font-weight: 700;
}

.service-details p {
  font-size: 15px;
}

.service-details ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.service-details ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
}

.service-details ul i {
  font-size: 20px;
  margin-right: 8px;
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.starter-section {
  /* Add your styles here */
}


/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
#features {

  margin: 0 auto;
  
  padding: 30px;
}

.blog-card {
  border-radius: 20px;
  /* background-color: #ffffff; */
  backdrop-filter: blur(5px);
  position: relative;
  padding: 10px;
  width: 100%;
  margin: 0 auto;
  margin-bottom: 10px;

}

.blog-card img {
 

  width: 100%;
}

.card_info {
  text-align: center;
  padding: 2px;
  margin-top: -20px;
  text-decoration: none;
  display: flex;

}

.btn-get-started,
.btn-get-quote {
  font-weight: 600;
  font-size: 22px;
  letter-spacing: 0.5px;
  display: inline-block;
  padding: 8px 22px;
  margin-bottom: 15px;
  border-radius: 3px;

  border-radius: 50px;
  text-decoration: none;
}

.btn-get-started {
  background: #ffd33c;
  color: #09324E;
  border: 2px solid #000;
  margin-right: 10px;
}

.btn-get-started:hover {
  color: #ffd33c;
  background: #0441A9;
  border-color: #000;
}

.btn-get-quote {
  background: #fff;
  color: #FF4E08;
  border: 2px solid #FF4E08;
}

.btn-get-quote:hover {
  background: #FF4E08;
  color: #fff;
}

@media (max-height: 500px),
(max-width: 580px) {
  #features {
    max-width: 720px;
    margin: 0 auto;
    background: #fce3a5;
    padding: 0px;
  }

  /*
.blog-card {
  border-radius: 20px;
  background-color: #0B1270;
  backdrop-filter: blur(5px);
  position: relative;
  padding: 6px;
  width: 100%;
    margin: 0 auto;
    margin-bottom: 10px;

}
*/

  @media (max-height: 500px),
  (max-width: 580px) {
    .blog-card {
      /* background-color: #0B1270; */
      backdrop-filter: blur(5px);
      position: relative;
      width: 100%;
      border-radius: 20px;
      padding: 6px;
      margin: 0 auto;
      margin-bottom: 10px;
    }
  }

  .blog-card img {
    
    border-radius: 12px;
    width: 100%;
  }

  .card_info {
    text-align: center;
    padding: 2px;
    margin-top: -20px;
    text-decoration: none;
    display: flex;

  }

  .btn-get-started,
  .btn-get-quote {
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.1px;
    display: inline-block;
    padding: 4px 6px;
    margin-bottom: 15px;
    border-radius: 3px;
    border-radius: 30px;
    text-decoration: none;
  }

  .btn-get-started {
    background: ##ffd33c;
    color: #09324E;
    border: 2px solid #000;
    margin-right: 10px;
  }

  .btn-get-started:hover {
    color: #fff;
    background: #ffd33c;
    border-color: #ffd33c;
  }

  .btn-get-quote {
    background: #fff;
    color: #FF4E08;
    border: 2px solid #FF4E08;
  }

  .btn-get-quote:hover {
    background: #FF4E08;
    color: #fff;
  }
}



/*--------------------------------------------------------------
彈出視窗
--------------------------------------------------------------*/

.modalDialog {
  position: fixed;
  overflow-y: auto;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 99999;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 300ms ease-in;
  -moz-transition: opacity 300ms ease-in;
  transition: opacity 300ms ease-in;
  pointer-events: none;
}

.modalDialog:target {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}

.modalDialog>div {
  width: 600px;
  position: relative;
  margin: 6% auto;
  padding: 0px;
  background: #f6cd71;
  border-radius: 20px;

}

.modalDialog img {
  width: 100%;
  border-radius: 16px;
  margin: 40px 0 10px 0;
  padding: 0 20px;
}

.modalDialog h2 {
  color: #c60e18;
  padding: 30px 0 0 0;
  font-size: 36px;
  font-weight: 600;
    text-align: center;
}

.modalDialog p {
  font-size: 17px;
  font-weight: 400;
  line-height: 24px;
  margin: 0px;
  text-align: center;
  padding: 0 10px;
  letter-spacing: 0.5px;
}

@media (max-height: 500px),
(max-width: 580px) {
  .modalDialog>div {
    width: 95%;


  }
}

/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/
.pricing {
  padding: 10px;

  margin: 12px 0;
  border-radius: 12px;
}

.pricing .box {
  padding: 12px 0;
  text-align: center;
  box-shadow: 0px 0 30px rgba(1, 41, 112, 0.08);
  border-radius: 33px;
  position: relative;
  overflow: hidden;
  margin: 14px 0;
  background-color: #faf7ec;
  background-image: linear-gradient(to bottom, #fff, #ffe7b3);


  z-index: 1;

}

.pricing .box::before {

}

.pricing .box2 {
  padding: 12px 0;
  text-align: center;
  box-shadow: 0px 0 30px rgba(1, 41, 112, 0.08);
  border-radius: 33px;
  position: relative;
  overflow: hidden;
  margin: 14px 0;
  background-color: #faf7ec;



  z-index: 1;

}

.pricing .box2::before {

}




.pricing h2 {
  font-weight: 700;
  font-size: 18px;
  color: #4c4c4c;
  text-align: left;
    border-bottom: solid 1px #4c4c4c;

}

.pricing h3 {
  font-weight: 700;
  font-size: 24px;
  margin-bottom: 2px;
}

.pricing .price {
  font-size: 32px;
  color: #444444;
  font-weight: 600;

}

.pricing .price sup {
  font-size: 20px;

}

.pricing .price span {
  color: #444444;
  font-size: 16px;
  font-weight: 600;
}

.pricing img {
  padding: 30px 40px;
}


.pricing .btn-buy {
  display: inline-block;
  padding: 4px 24px;
  border-radius: 50px;
  color: #4154f1;

  font-size: 18px;
  font-weight: 600;
  border: 1px solid #4154f1;
  text-decoration: none;
  margin-top: 6px;
}

.pricing .btn-buy:hover {
  background: #4154f1;
  color: #fff;
}

@media (max-height: 500px),
(max-width: 580px) {
  .pricing {
    padding: 10px;

    margin: 0;
    border-radius: 12px;
  }

  .pricing .box .box2 {
    padding: 6px 0;
    text-align: center;
    box-shadow: 0px 0 30px rgba(1, 41, 112, 0.08);
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    margin: 6px 0;
    background-color: #faf7ec;



    z-index: 1;

  }

  .pricing .btn-buy {
    display: inline-block;
    padding: 4px 16px;
    border-radius: 30px;
    color: #4154f1;

    font-size: 16px;
    font-weight: 600;
    border: 1px solid #4154f1;
    text-decoration: none;
    margin-top: 6px;
  }

  .pricing h3 {
    font-weight: 700;
    font-size: 17px;
    margin-bottom: 6px;
  }

  .pricing .price {
    font-size: 26px;
    color: #444444;
    font-weight: 600;

  }

  .pricing .price sup {
    font-size: 17px;

  }

  .pricing .price span {
    color: #444444;
    font-size: 15px;
    font-weight: 600;
  }
}

.price-info {

  text-align: center;
  align-items: center;
  padding: 15px 20px;
  background-color: white;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  
  bottom: 0;
  border-top: 1px solid #ddd;
  border-radius: 0 0 20px 20px;
  z-index: 10;
  /* Ensures it stays on top of the scrollable content */
}

.book-now {
  font-weight: 600;
  font-size: 20px;
  letter-spacing: 0.5px;
  display: inline-block;
  padding: 8px 30px;
margin-bottom: 6px;
  border-radius: 50px;
  text-decoration: none;

  background: #5a5af3;
  color: #fff;
}

.book-now a {

  text-decoration: none;

  color: #fff;
}

.price {
  font-size: 16px;
  font-weight: bold;
}

.close {
  padding: 0;
  color: black;
  line-height: 25px;
  position: absolute;
  right: 10px;
  text-align: center;
  top: 10px;
  width: 28px;
  height: 28px;
  border-radius: 50px;
  text-decoration: none;
  color: #fff;
  background: #bebebe;
  font-weight: 400;
  font-size: 26px;
  font-family: 'Helvetica', 'Arial', 'Noto Sans TC', '黑體-繁', '微軟正黑體', sans-serif !important;
}

.close:hover {
  color: #5C5C5C;
}


/* 注意事項 */

.accordion {

  margin: 0 auto;
  background-color: #f8f8f8;
}

.accordion-container {
  width: 95%;
  margin: 0 auto;
  padding-top: 24px;
}

.accordion-title {
  font-size: 24px;
  padding-left: 30px;

}

.accordion-trigger {
  width: 100%;
  display: block;
  background-color: rgb(250, 250, 250);
  color: rgb(0, 0, 0);
  padding: 16px;

  font-weight: 500;
  text-align: justify;
  border: none;
  display: flex;
  gap: 16px;
  justify-content: space-between;

}

.accordion-icon {
  transition: transform 0.5s;
}

.accordion-item[open] .accordion-icon {
  transform: rotate(45deg);
}

.accordion-item:not(:first-of-type) .accordion-trigger {
  border-top: 3px solid #eaeaea;
}

.accordion-content {

  padding: 0 10px;
  text-align: justify;
  font-size: 17px;
  line-height: 24px;
  letter-spacing: 0.5px;
}

.accordion-content .title {
  font-size: 22px;
  border-bottom: solid 1px #bababa;
  font-weight: bold;
  margin: 36px 0 20px 0;
  padding-bottom: 8px;
}

.accordion-content p {
  margin: 24px;

  padding: 0 16px;

}

.accordion-content ul {
  list-style-type: cjk-ideographic;
  text-align: justify;
  
}

ol {
  list-style: none;
  /*  命名自訂標號變數  */
  counter-reset: my-counter;
}

ol li {
  /*  使用自訂標號  */

  counter-increment: my-counter;
  /* 段落首行縮排 */
  text-indent: -1em;
}

/* 以偽元素自訂標號樣式 */
ol li::before {
  content: "(" counter(my-counter) ")";
  color: #000000;

} 

ul.warning{
  font-size: 1.09em;
  font-weight: bold;
}

/*--------------------------------------------------------------
# 注意事項表格
--------------------------------------------------------------*/
table {
  border-collapse: collapse;
  margin: 10px 0;
}

th {
  background: #ccc;
}

th,
td {
  border: 1px solid #ccc;
  padding: 8px;
  text-align: center;
}

tr {
  background: #ffffff;
}

tr:hover {
  background: #d1d1d1;
}




.img-button-type {
  width: 20%;
  height: auto;
  display: block;
  margin: 0px auto;
  padding-bottom: 10px;

}

.card {

  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  height: var(--bs-card-height);
  word-wrap: break-word;
  background-color: var(--bs-card-bg);
  background-clip: border-box;
  border: var(--bs-card-border-width) solid var(--bs-card-border-color);
  border-radius: var(--bs-card-border-radius);
  width: 100%;
  height: 100%;
  margin-bottom: 10px;
  padding: 4px 4px 4px 4px;
}



.card img {
  width: 30%;
  height: auto;
  margin: 0 auto;
  padding-top: 10px;
}

.card-body h2 {
  font-size: 24px;
  font-weight: 600;
  color: rgb(66, 75, 88);
}

.card-text {
  letter-spacing: 0px;
  font-size: 18px;
}

.card-text2 {
  font-weight: bold;
  font-size: 16px;

}

.card span {
  color: #FF2143;
  font-weight: bolder;
}

.card-style {
  /* width: 370px; */
  max-width: 100%;
  height: auto;
  padding-left: 25px;
  /* padding-right: 20px; */
  padding-top: 20px;
  padding-bottom: 18px;
}

@media (max-width: 769px),
(max-width: 999px) {
  .card-style {
    width: 200px;
    height: auto;

    padding-bottom: 10px;
    padding-top: 8px;
  }

  @media (max-height: 500px),
  (max-width: 580px) {
    .card-style {
      width: 300px;
      height: auto;
      padding-bottom: 10px;
      padding-top: 8px;
    }

    .img-button-type {
      width: 90%;
      height: auto;
      display: block;
      margin: 0px auto;
      padding-bottom: 10px;
      -webkit-filter: drop-shadow(12px 12px 7px rgba(0, 0, 0, 0.349));
      filter: drop-shadow(12px 12px 7px rgba(0, 0, 0, 0.349));
    }

  }
}


.navbar-brand .logotype {
  width: 200px;
  height: auto;
  /*    padding: 4px 0;*/
  margin-left: 30px;
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .navbar-brand .logotype {
    width: 180px;
    margin-left: 20px;
  }
}

@media (max-height: 500px),
(max-width: 580px) {
  .navbar-brand .logotype {
    width: 50%;
    /*  padding:4px 0;*/
    margin-left: 4px;

  }
}


.header {
  transition: all 0.5s;
  z-index: 997;
  padding: 8px 8px 18px 22px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  margin: 0 auto;
  background-color: #fff;
}

@media (max-height: 500px),
(max-width: 580px) {
  .header {
    transition: all 0.5s;
    z-index: 997;
    /*  padding: 2px 2px 18px 22px;*/
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    margin: 0 auto;
    background-color: #fff;
  }
}

body::before {
  content: "";
  width: 100%;
  display: block;
  height: 500px;
  background: url(bg.webp) no-repeat;
  position: absolute;
}