@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

/*--------------------------------- 01 General ---------------------------------*/
body {
  background: #fff;
  color: #888;
  font-family: "Roboto", "Noto Sans TC", sans-serif;
  font-weight: 300;
}

a {
  color: #888;
  transition: 0.5s;
}

a:hover, a:active, a:focus {
  color: #DA0B20;
  outline: none;
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Roboto", "Noto Sans TC", sans-serif;
}

/* Back to top button */
.back-to-top {
  position: fixed;
  display: none;
  background: #DA0B20;
  color: #fff;
  padding: 6px 12px 9px 12px;
  font-size: 16px;
  border-radius: 50px;
  right: 15px;
  bottom: 15px;
  transition: background 0.5s;
}

@media (max-width: 768px) {
  .back-to-top {
    bottom: 15px;
  }
}

.back-to-top:focus {
  background: #DA0B20;
  color: #fff;
  outline: none;
}

.back-to-top:hover {
  background: #AE0D1B;
  color: #fff;
}

/* LOGO Header */
#header {
  padding: 20px 0;
  height: 84px;
  transition: all 0.5s;
  z-index: 997;
  background: #fff;
  box-shadow: 0px 6px 9px 0px rgba(0, 0, 0, 0.06);
}

#header #logo h1 {
  font-size: 42px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-family: "Roboto", "Noto Sans TC", sans-serif;
  font-weight: 700;
}

#header #logo h1 a {
  color: #0c2e8a;
  line-height: 1;
  display: inline-block;
}

#header #logo h1 a span {
  color: #50d8af;
}

#header #logo img {
  padding: 0;
  margin: 0;
  height: 40px;
}

@media (max-width: 768px) {
  #header {
    padding: 20px 0;
    height: 74px;
  }
  #header #logo h1 {
    font-size: 34px;
  }
  #header #logo img {
    max-height: 40px;
  }
}
/*--------------------------------- 01 END ---------------------------------*/



/*--------------------------------- 02 Navigation Menu ---------------------------------*/
/* Nav Menu Essentials */
.nav-menu, .nav-menu * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu ul {
  position: absolute;
  display: none;
  top: 100%;
  left: 0;
  z-index: 99;
}

.nav-menu li {
  position: relative;
  white-space: nowrap;
}

.nav-menu > li {
  float: left;
}

.nav-menu li:hover > ul,
.nav-menu li.sfHover > ul {
  display: block;
}

.nav-menu ul ul {
  top: 0;
  left: 100%;
}

.nav-menu ul li {
  min-width: 180px;
}

/* Nav Menu Arrows */
.sf-arrows .sf-with-ul {
  padding-right: 25px;
}

.sf-arrows .sf-with-ul:after {
  content: "\f107";
  position: absolute;
  right: 8px;
  font-family: FontAwesome;
  font-style: normal;
  font-weight: normal;
}

.sf-arrows ul .sf-with-ul:after {
  content: "\f105";
}

/* Nav Meu Container */
#nav-menu-container {
  float: right;
  margin: 0;
}

@media (max-width: 800px) {
  #nav-menu-container {
    display: none;
  }
}

/* Nav Meu Styling */
.nav-menu a {
  padding: 10px 8px;
  text-decoration: none;
  display: inline-block;
  color: #000;
  font-family: "Roboto", "Noto Sans TC", sans-serif;
  font-weight: 700;
  font-size: 16px;
  outline: none;
}

.nav-menu li:hover > a, .nav-menu > .menu-active > a {
  color: #DA0B20;
}

.nav-menu > li {
  margin-left: 10px;
}

.nav-menu ul {
  margin: 10px 0 0 0;
  padding: 20px;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  background: #fff;
}

.nav-menu ul li {
  transition: 0.3s;
}

.nav-menu ul li a {
  padding: 10px;
  color: #333;
  transition: 0.3s;
  display: block;
  font-size: 16px;
  text-transform: none;
}

.nav-menu ul li:hover > a {
  color: #DA0B20;
}

.nav-menu ul ul {
  margin: 0;
}

/* Mobile Nav Toggle */
#mobile-nav-toggle {
  position: fixed;
  right: 0;
  top: 0;
  z-index: 999;
  margin: 20px 20px 0 0;
  border: 0;
  background: none;
  font-size: 24px;
  display: none;
  transition: all 0.4s;
  outline: none;
  cursor: pointer;
}

#mobile-nav-toggle i {
  color: #DA0B20;
}

@media (max-width: 800px) {
  #mobile-nav-toggle {
    display: inline;
  }
}

/* Mobile Nav */
#mobile-nav {
  position: fixed;
  top: 0;
  padding-top: 18px;
  bottom: 0;
  z-index: 998;
  background: rgba(218, 11, 32, 0.9);
  left: -260px;
  width: 260px;
  overflow-y: auto;
  transition: 0.4s;
}

#mobile-nav ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

#mobile-nav ul li {
  position: relative;
}

#mobile-nav ul li a {
  color: #fff;
  font-size: 16px;
  overflow: hidden;
  padding: 10px 22px 10px 15px;
  position: relative;
  text-decoration: none;
  width: 100%;
  display: block;
  outline: none;
}

#mobile-nav ul li a:hover {
  color: #000;
}

#mobile-nav ul li li {
  padding-left: 30px;
}

#mobile-nav ul .menu-has-children i {
  position: absolute;
  right: 0;
  z-index: 99;
  padding: 15px;
  cursor: pointer;
  color: #fff;
}

#mobile-nav ul .menu-has-children i.fa-chevron-up {
  color: #000;
}

#mobile-nav ul .menu-item-active {
  color: #000;
}

#mobile-body-overly {
  width: 100%;
  height: 100%;
  z-index: 997;
  top: 0;
  left: 0;
  position: fixed;
  background: rgba(255, 255, 255, 0.6);
  display: none;
}

/* Mobile Nav body classes */
body.mobile-nav-active {
  overflow: hidden;
}

body.mobile-nav-active #mobile-nav {
  left: 0;
}

body.mobile-nav-active #mobile-nav-toggle {
  color: #fff;
}

/* btn */
.btn-trial a{
  background-color: #bfa145;
  border-radius: 25px;
  color: #000 !important;
  padding: 8px 20px;
  border: 1px solid #bfa145;
}
.btn-trial a:hover, .btn-trial a:focus{
  border: 1px solid #bfa145;
  background-color: rgba(255,255,255,0);
  color: #bfa145 !important;
}
/*--------------------------------- 02 END ---------------------------------*/



/*--------------------------------- 03 Section Setting ---------------------------------*/
/* Header */
.section-header h2 {
  font-size: 40px;
  color: #000;
  text-transform: uppercase;
  text-align: center;
  font-weight: 600;
  position: relative;
}

.section-header p {
  text-align: center;
  padding-bottom: 30px;
  color: #333;
}

/* Background Color */
.section-bg {
  background: #f7f7f7;
}
/*--------------------------------- 03 END ---------------------------------*/



/*--------------------------------- 04 Index ---------------------------------*/
#intro {
  background: url("../img/vision-bg.jpg");
  background-position: center;
  background-repeat: no-repeat;
  -webkit-background-size:cover;
  -moz-background-size:cover;
  background-size:cover;
  -o-background-size:cover;
  background-color:#fff;
}

#intro .intro-heading {
  padding:100px 0 100px;
  color:#fff
}

@media only screen and (min-width:768px){
#intro .intro-heading {
  padding: 150px 0
  }
}

/* 熱門活動 Popular Section */
#popular {
  padding: 50px 0;
}

#popular img {
  max-width: 100%;
  opacity: 1;
  transition: 0.3s;
  padding: 15px 0;
}

#popular img:hover {
  opacity: 0.7;
}

#popular .owl-nav, #popular .owl-dots {
  margin-top: 5px;
  text-align: center;
}

#popular .owl-dot {
  display: inline-block;
  margin: 0 4px;
  width: 30px;
  height: 5px;
  border-radius: 0%;
  background-color: #DDD;
}

#popular .owl-dot.active {
  background-color: #DA0B20;
}

/*--------------------------------- 04 ---------------------------------*/



/*--------------------------------- 05 Footer ---------------------------------*/
#footer {
  background: #E5E8E7;
  padding: 0 0 30px 0;
  color: #000;
  font-size: 14px;
  font-family: "Roboto", "Noto Sans TC", sans-serif;
  letter-spacing: 0.02em;
}

#footer .footer-top {
  background: #F2F2F2;
  padding: 60px 0 30px 0;
}

#footer .footer-top .footer-info {
  margin-bottom: 30px;
}

#footer .footer-top .footer-info img{
  margin: 0 0 20px 0;
  height: 55px;
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #000;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
  background: #DA0B20;
  color: #fff;
}

#footer .footer-top h4 {
  font-size: 14px;
  font-weight: bold;
  color: #000;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top h4::before, #footer .footer-top h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
}

#footer .footer-top h4::before {
  right: 0;
  background: #000;
}

#footer .footer-top h4::after {
  background: #DA0B20;;
  width: 60px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 8px;
  padding-bottom: 0px;
  padding-top: 5px;
  color: #000;
}

#footer .footer-top .footer-links ul li {
  border-bottom: 1px solid #333;
  padding: 10px 0;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #000;
}

#footer .footer-top .footer-links ul a:hover {
  color: #DA0B20;
}

#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}

#footer .footer-top .footer-contact p {
  line-height: 26px;
}

#footer .footer-top .footer-contact a {
  color: #000;
}

#footer .footer-top .footer-contact a:hover {
  color: #DA0B20;

}

#footer .footer-top .footer-newsletter {
  margin-bottom: 30px;
}

#footer .copyright {
  text-align: center;
  padding-top: 30px;
}

#footer .credits {
  text-align: center;
  font-size: 13px;
  color: #ddd;
}
/*--------------------------------- 05 END ---------------------------------*/



/*-------------------------------- 06 Page Section --------------------------------*/
#page {
  width: 100%;
  height: 190px;
  position: relative;
  background: url("../img/page-bg.jpg") no-repeat;
  background-size: cover;
}

#page .page-content {
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

#page .page-content h2 {
  color: #fff;
  font-size: 45px;
  font-weight: 500;
  margin-top: 15px
}

@media (max-width: 767px) {
  #page .page-content h2 {
    font-size: 32px;
  }

  #page {
  width: 100%;
  height: 120px;
  position: relative;
  background: url("../img/page-bg.jpg") no-repeat;
  background-size: cover;
  }
}
/*--------------------------------- 06 END ---------------------------------*/


/*-------------------------------- 07 活動清單 History Section --------------------------------*/
#history {
  padding: 50px 10px;
  font-family: "Roboto", "Noto Sans TC", sans-serif;
}

.faq-details .panel-heading {
  padding: 0;
}

.panel-default>.panel-heading {
  background-color: transparent;
  border: medium none;
  color: #333;
}

.faq-details h4.check-title a {
  color: #000;
  display: block;
  font-weight: 700;
  letter-spacing: 2px;
  margin-left: 40px;
  padding: 20px 10px;
  text-decoration: none;
  font-size: 24px;
}

.panel-body {
  padding: 20px 15px 10px 10px;
  border-top: 1px solid #e9e9e9;
  border-bottom: 1px solid #e9e9e9; 
}

.faq-details h4.check-title {
  color: #000;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 0;
}

.faq-details a span.acc-icons {
  position: relative;
}

.faq-details a span.acc-icons::before {
  color: #000;
  content: "";
  font-family: fontawesome;
  font-size: 24px;
  height: 40px;
  left: -51px;
  line-height: 39px;
  position: absolute;
  text-align: center;
  top: -4px;
  width: 42px;
}

.faq-details h4.check-title a.active, .faq-details a.active span.acc-icons::before {
  color: #DA0B20;
}

.faq-details a.active span.acc-icons::before {
  content: "";
  font-family: fontawesome;
  font-size: 24px;
  height: 40px;
  left: -51px;
  line-height: 39px;
  position: absolute;
  text-align: center;
  top: -4px;
  width: 42px;
}

.second-row {
  margin-top: 30px;
}

.event-content.head-team h4 {
  background: transparent none repeat scroll 0 0;
  color: #333;
  padding: 30px 0 10px;
  font-weight: 500;
  text-transform: capitalize;
}

.history {
    list-style: none;
    font-size: 18px;
    margin-left: -40px;
    letter-spacing: 0.02em;
}

.history li {
    margin-bottom: 15px;
}

.event_type1 {
  background: #e65e68;
  font-size: 16px;
  color: #fff;
  padding:2px 10px;
  margin-right: 30px;
}

.event_type2 {
  background: #f39a1d;
  font-size: 16px;
  color: #fff;
  padding:2px 10px;
  margin-right: 30px;
}

.event_type3 {
  background: #0c9689;
  font-size: 16px;
  color: #fff;
  padding:2px 10px;
  margin-right: 30px;
}

.event_type4 {
  background: #8043a0;
  font-size: 16px;
  color: #fff;
  padding:2px 10px;
  margin-right: 30px;
}

.event_type5 {
  background: #4d8e2b;
  font-size: 16px;
  color: #fff;
  padding:2px 10px;
  margin-right: 30px;
}

.event_type6 {
  background: #3e97aa;
  font-size: 16px;
  color: #fff;
  padding:2px 10px;
  margin-right: 30px;
}

.event_date {
  font-size: 18px;
  color: #666;
  margin-right: 30px;
  letter-spacing: 0.04em;
}

.history a {
    color: #000;
}

.history a:hover {
    color: #DA0B20;
}


@media (max-width: 768px) {
  .event_type1 {
  background: #e65e68;
  font-size: 14px;
  color: #fff;
  padding:2px 8px;
  margin-right: 10px;
  }

  .event_type2 {
    background: #f39a1d;
    font-size: 14px;
    color: #fff;
    padding:2px 8px;
    margin-right: 10px;
  }

  .event_type3 {
    background: #0c9689;
    font-size: 14px;
    color: #fff;
    padding:2px 8px;
    margin-right: 10px;
  }

  .event_type4 {
    background: #8043a0;
    font-size: 14px;
    color: #fff;
    padding:2px 8px;
    margin-right: 10px;
  }

  .event_type5 {
    background: #4d8e2b;
    font-size: 14px;
    color: #fff;
    padding:2px 8px;
    margin-right: 10px;
  }

  .event_type6 {
    background: #3e97aa;
    font-size: 14px;
    color: #fff;
    padding:2px 8px;
    margin-right: 10px;
  }

  .event_date {
      font-size: 16px;
      margin-right: 10px;
      color: #666;
  } 

  .history a {
      color: #000;
      font-size: 16px;
  }

  .history a:hover {
      color: #DA0B20;
  }
}
/*--------------------------------- 07 END ---------------------------------*/

