@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@100;300;400;500;700;900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");

/*------------------------ 基本設定 ------------------------*/
body {
  font-family: "Roboto", "Noto Sans TC", sans-serif;
  color: #414042;
  overflow-x: hidden; /* 防止水平滾動條 */
}

html {
  overflow-x: hidden; /* 防止水平滾動條 */
}

a {
  color: #414042;
}

a:hover {
  color: #57aacd;
  text-decoration: none;
}

p {
  font-family: "Roboto", "Noto Sans TC", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Roboto", "Noto Sans TC", sans-serif;
}
/*------------------------ END ------------------------*/

/*------------------------ Header ------------------------*/
#header {
  transition: all 0.5s;
  z-index: 997;
  padding: 20px 0;
}

@media (max-width: 992px) {
  #header {
    padding: 15px 0;
  }
}

#header.header-scrolled {
  top: 0;
}

#header .logo {
  font-size: 28px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

#header .logo img {
  max-height: 30px;
}

#header.header-scrolled,
#header.header-inner-pages {
  background: linear-gradient(to right, #006037, #0b3e27, #197149);
  padding: 15px 0;
}

@media (max-width: 992px) {
  #header {
    top: 0;
  }
  #header .logo img {
    max-height: 25px;
  }
}
/*------------------------ END ------------------------*/

/*------------------------ 導覽列 ------------------------*/
/* Desktop Navigation */
.nav-menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu > ul {
  display: flex;
}

.nav-menu > ul > li {
  position: relative;
  white-space: nowrap;
  padding: 10px 0 10px 25px;
}

.nav-menu a {
  display: block;
  position: relative;
  color: #ffffff;
  transition: 0.3s;
  font-size: 16px;
  padding: 0 5px;
  letter-spacing: 0.4px;
  font-family: "Roboto", "Noto Sans TC", sans-serif;
  font-weight: 500;
}

.nav-menu > ul > li > a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -6px;
  left: 0;
  background: #8f7c50;
  visibility: hidden;
  transform: scaleX(0);
  transition: all 0.3s ease-in-out 0s;
}

.nav-menu a:hover:before,
.nav-menu li:hover > a:before,
.nav-menu .active > a:before {
  visibility: visible;
  transform: scaleX(1);
}

.header-scrolled .nav-menu > ul > li > a,
.header-inner-pages .nav-menu > ul > li > a {
  color: #fff;
}

/* Sign Button */
.sign-btn {
  margin-left: 25px;
  background: #ada188;
  color: #ffffff;
  border-radius: 50px;
  padding: 5px 20px 5px 20px;
  white-space: nowrap;
  transition: 0.3s;
  font-size: 16px;
  font-weight: 500;
  display: inline-block;
}

.sign-btn:hover {
  background: #fff;
  color: #2f302e;
}

@media (max-width: 768px) {
  .sign-btn {
    margin: -1px 50px 0 0;
    padding: 5px 15px;
    font-size: 15px;
    letter-spacing: 0.02em;
  }
}

/* Mobile Navigation */
.mobile-nav-toggle {
  position: fixed;
  right: 5px;
  top: 15px;
  z-index: 999;
  border: 0;
  background: none;
  font-size: 26px;
  transition: all 0.4s;
  outline: none !important;
  line-height: 1;
  cursor: pointer;
  text-align: right;
}

.mobile-nav-toggle i {
  color: #c9bc9c;
}

.mobile-nav {
  position: fixed;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  z-index: 9999;
  overflow-y: auto;
  background: #fff;
  transition: ease-in-out 0.2s;
  opacity: 0;
  visibility: hidden;
  border-radius: 10px;
  padding: 10px 0;
}

.mobile-nav * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobile-nav a {
  display: block;
  position: relative;
  color: #2f302e;
  padding: 10px 20px;
  font-weight: 500;
  outline: none;
  letter-spacing: 0.02em;
}

.mobile-nav a:hover,
.mobile-nav .active > a,
.mobile-nav li:hover > a {
  background-color: #c9bc9c;
  color: #2f302e;
  text-decoration: none;
}

.mobile-nav-overly {
  width: 100%;
  height: 100%;
  z-index: 999;
  top: 0;
  left: 0;
  position: fixed;
  background: rgba(0, 0, 0, 0.55);
  overflow: hidden;
  display: none;
  transition: ease-in-out 0.2s;
}

.mobile-nav-active {
  overflow: hidden;
}

.mobile-nav-active .mobile-nav {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-active .mobile-nav-toggle i {
  color: #fff;
}

/*------------------------ END ------------------------*/

/*------------------------ Section Setting ------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

.section-header {
  margin-bottom: 50px;
  position: relative;
  padding-bottom: 10px;
}

.section-header::before {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 5px;
  background-color: #006039;
  bottom: 0;
  left: calc(50% - 30px);
}

.section-header h2 {
  font-size: 38px;
  text-transform: uppercase;
  text-align: center;
  font-weight: 500;
  margin-bottom: 10px;
  color: #006039;
}

.section-header div {
  text-align: center;
}

.section-header-dark {
  margin-bottom: 50px;
  position: relative;
  padding-bottom: 10px;
}

.section-header-dark::before {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 5px;
  background-color: #006037;
  bottom: 0;
  left: calc(50% - 30px);
}

.section-header-dark h2 {
  font-size: 38px;
  text-transform: uppercase;
  text-align: center;
  font-weight: 500;
  margin-bottom: 10px;
  color: #006037;
}

.section-bg {
  background-color: #fff;
}

.section-bg-color {
  padding: 60px 10px 30px 10px;
}

/*------------------------ END ------------------------*/

/*------------------------ 主視覺 ------------------------*/
#intro {
  width: 100%;
  height: 100vh;
  background: url(../images/intro-bg.jpg) top center;
  background-size: cover;
  overflow: hidden;
  position: relative;
}

.intro-section-full {
  display: table;
  height: 100vh;
  padding-bottom: 0;
  padding-top: 0;
  table-layout: fixed;
  width: 100%;
}

.intro-section-full > .intro-table-cell {
  width: 100%;
}

.intro-section-hero .intro-after-navbar .intro-section {
  padding-top: 120px;
}
/*------------------------ END ------------------------*/

/*------------------------ 論壇前言 ------------------------*/
#about {
  padding: 60px 10px 40px 10px;
}

#about span {
  font-size: 24px;
  font-weight: 400;
  margin: 0 3px;
}

#about p {
  font-size: 18px;
  font-weight: 400;
  line-height: 30px;
  letter-spacing: 0.02em;
  color: #5e6770;
  margin-bottom: 25px;
}

/*------------------------ END ------------------------*/

/*------------------------ 來賓介紹 ------------------------*/
#speakers {
  padding: 60px 10px 30px 10px;
}

.p-md-5 {
  padding: 3rem !important;
}

.mb-5,
.my-5 {
  margin-bottom: 3rem !important;
}

#speakers .speakers-item {
  right: 0;
  margin: 0 0 30px;
}

/* 頭像設定 */
#speakers .speakers-item .speakers-nolink {
  position: relative;
  display: inline-block;
  max-width: 115px;
  margin: 0 5px 0 0;
}

#speakers .speakers-item .speakers-link {
  position: relative;
  display: inline-block;
  max-width: 115px;
  margin: 0 5px 0 0;
  cursor: pointer;
}

#speakers .speakers-item .speakers-link .speakers-hover {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-transition: all ease 0.5s;
  -moz-transition: all ease 0.5s;
  transition: all ease 0.5s;
  opacity: 0;
  background: rgba(47, 48, 46, 0.3);
  border-radius: 0;
}

#speakers .speakers-item .speakers-link .speakers-hover:hover {
  opacity: 1;
}

#speakers
  .speakers-item
  .speakers-link
  .speakers-hover
  .speakers-hover-content {
  font-size: 20px;
  position: absolute;
  top: 50%;
  width: 100%;
  height: 20px;
  margin-top: -25px;
  text-align: center;
  color: white;
  font-family: "Noto Sans TC", sans-serif;
  letter-spacing: 0.02em;
}

#speakers
  .speakers-item
  .speakers-link
  .speakers-hover
  .speakers-hover-content
  i {
  margin-top: -20px;
  color: #fff;
}

#speakers .speakers-item .speakers-caption {
  width: 100%;
  padding-left: 10px;
  display: flex;
  flex-direction: column;
  min-height: 178px;
  justify-content: flex-start;
}

.category-vip {
  color: #212121;
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 6px;
}

#speakers .speakers-item .speakers-caption h4 {
  margin-top: 0px;
  margin-bottom: 0px;
  text-transform: none;
  font-size: 22px;
  letter-spacing: 0.05em;
  font-weight: 500;
  color: #212121;
  text-align: left;
}

#speakers .speakers-item .speakers-caption p {
  margin-top: 2px;
  margin-bottom: 0px;
  line-height: 19px;
  font-size: 16px;
  color: #414042;
  font-weight: 400;
  letter-spacing: 0.01em;
  text-align: left;
}

#speakers * {
  z-index: 2;
}

/* 置中設定 */
.portfolio-modal {
  padding-right: 0px !important;
}

.portfolio-modal .modal-dialog {
  margin: 25px;
  max-width: 100%;
  align-content: center;
}

.portfolio-modal .modal-content {
  padding: 100px 0;
  text-align: center;
}

.portfolio-modal .modal-content img {
  margin-bottom: 20px;
}

.portfolio-modal .modal-content button {
  cursor: pointer;
}

.portfolio-modal .close-modal {
  position: absolute;
  top: 25px;
  right: 25px;
  width: 75px;
  height: 75px;
  cursor: pointer;
  background-color: transparent;
}

.portfolio-modal .close-modal:hover {
  opacity: 0.3;
}

.portfolio-modal .close-modal .lr {
  /* Safari and Chrome */
  z-index: 1051;
  width: 1px;
  height: 75px;
  margin-left: 35px;
  /* IE 9 */
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  background-color: #414042;
}

.portfolio-modal .close-modal .lr .rl {
  /* Safari and Chrome */
  z-index: 1052;
  width: 1px;
  height: 75px;
  /* IE 9 */
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
  background-color: #414042;
}
.agenda-list {
  list-style: disc;
  padding-left: 20px;
}
.agenda-list li {
  margin-bottom: 5px;
  line-height: 32px;
}
.img-fluid {
  max-width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  border-radius: 50%;
}

.d-block {
  display: block !important;
}

/* Modal 互動視窗 */
.modal-open {
  overflow: hidden;
}

.modal {
  text-align: center;
  padding: 0 !important;
}

.modal:before {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
  margin-right: -4px;
}

.modal .modal-dialog {
  display: inline-block;
  text-align: left;
  vertical-align: middle;
  width: 650px;
}

.modal-content {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  pointer-events: auto;
  background-color: #f9f9f9;
  background-clip: padding-box;
  border: 0;
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
  border-radius: 0;
  outline: 0;
}

.modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 20px 10px;
}

.modal-speaker {
  font-size: 24px;
  font-weight: 500;
  color: #2f302e;
}

.modal-type {
  font-size: 18px;
  margin: 30px 0 10px 0;
  font-weight: 500;
  color: #ada188;
}

.modal-list {
  list-style: none;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  color: #414042;
  margin-left: -20px;
}

.modal-list li {
  margin-left: -20px;
  margin-top: 8px;
}
/*------------------------ END ------------------------*/

/*------------------------ 論壇議程 ------------------------*/
#agenda {
  padding: 60px 15px 60px 15px;
}

#agenda .agenda-item {
  border-bottom: 1px dotted #9b968e;
  padding-top: 20px;
  padding-bottom: 20px;
  transition: background-color ease-in-out 0.3s;
}

#agenda .agenda-item:hover {
  background-color: rgba(255, 255, 255, 0.7);
}

#agenda .agenda-item time {
  display: inline-block;
  font-weight: 500;
  font-size: 20px;
  letter-spacing: 0.07em;
  color: #414042;
  text-align: center;
  margin-top: 0px;
}

#agenda .agenda-event {
  font-size: 18px;
  font-weight: 500;
  line-height: 18px;
  color: #7e5946;
  margin-top: 5px;
  margin-left: -10px;
}

#agenda .agnedaType {
  font-size: 16px;
  margin-bottom: 6px;
  margin-top: 15px;
  padding: 5px 10px;
  color: #fff;
  background-color: #7e5946;
  width: 70px;
  font-weight: 400;
  text-align: center;
}

#agenda .agenda-item .agenda-Title {
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
  color: #414042;
  margin-bottom: 0px;
  margin-top: 2px;
  margin-left: 0px;
}

#agenda .agenda-item .agenda-Title2 {
  font-size: 22px;
  font-weight: 500;
  line-height: 24px;
  color: #7e5946;
  margin-bottom: 0px;
  margin-top: 4px;
  margin-left: 0px;
}

#agenda .agenda-item h4 {
  color: #7e5946;
  font-size: 22px;
  font-weight: 400;
  line-height: 24px;
  margin-bottom: 10px;
  margin-top: 4px;
}

#agenda .agenda-item .agenda-vip {
  color: #7e5946;
  font-size: 22px;
  font-weight: 500;
  line-height: 24px;
  margin-top: 20px;
}

#agenda .agenda-item p {
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
  color: #414042;
  margin: 5px 0 0 0;
}

#agenda .pdf a {
  font-size: 14px;
  padding: 7px 15px;
  margin-left: 15px;
  border-radius: 20px;
  background-color: #555c16;
  color: #fff;
  text-decoration: none;
}

#agenda .pdf a:hover {
  background-color: #7e5946;
  color: #fff;
}
/*------------------------ END ------------------------*/

/*------------------------ 立即報名 ------------------------*/
#register {
  padding: 60px 0 30px 0;
  background-size: cover;
  overflow: hidden;
  position: relative;
  background: #f2f2f2;
}

#register .applyBox {
  position: relative;
  padding: 40px 20px;
  margin-top: 45px;
  text-align: center;
  /* border: 1px solid #2f302e; */
  background-color: #dddddd;
}

#register .applyBox .applyTitle {
  position: absolute;
  bottom: 100%;
  left: 0;
  margin: 0;
  padding: 8px 20px 5px calc(20px + 0.2em);
  color: #ffffff;
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0.1em;
  background-color: #212121;
  /* border: 1px solid #fff; */
}

#register .applyBox .applyTitle2 {
  position: absolute;
  top: 100%;
  left: -1px;
  width: 100.2%;
  margin: 0;
  padding: 5px 20px 5px calc(20px + 0.2em);
  color: #414042;
  font-size: 16px;
  font-weight: 400;
  padding-top: 10px;
  letter-spacing: 0.05em;
  /* background-color: rgba(255, 255, 255, 0.0);
  border: 1px solid #F7FCE6; */
}

#register .applyBox .applyDate {
  font-size: 44px;
  font-weight: 500;
  color: #006037;
  margin-bottom: 0;
}

#register .applyBox .applyLocation {
  font-size: 28px;
  font-weight: 500;
  color: #006037;
  margin-bottom: 0;
}

#register .applyBox .applyTime {
  margin-top: -10px;
  color: #212121;
  font-size: 18px;
  font-weight: 400;
}

#register .applyBox .applyAddress {
  margin-top: 0px;
  color: #212121;
  font-size: 18px;
  font-weight: 400;
}

#register .applyBox .applyLine {
  max-width: 100px;
  margin-bottom: 30px;
  margin-top: -10px;
  border-width: 1px;
  border-color: #212121;
}

#register .applyRead {
  font-size: 18px;
  line-height: 22px;
  color: #f2e061;
  margin: 20px 0;
}

#register .notice {
  margin: 20px 0;
}

#register .notice ul {
  margin-left: -20px;
  color: #414042;
  font-size: 16px;
  font-weight: 400;
}

#register .notice li {
  margin-bottom: 10px;
}

#register .notice .member {
  color: #414042;
  font-weight: 500;
}

#register .notice hr.notice-line {
  margin: 40px 0 40px 0;
  border: 0;
  height: 1px;
  background-color: #414042;
  /* background-color: rgba(255, 255, 255, 0.4); */
}

#register .notice p {
  color: #2f302e;
  font-weight: 400;
  font-size: 15px;
  margin-top: 5px;
}

#register .process h3 {
  color: #2f302e;
  font-size: 22px;
  font-weight: 500;
  text-align: center;
  margin-top: 100px;
  margin-bottom: 20px;
}

#process-list {
  padding: 0;
  list-style: none;
}

#process-list li {
  border-bottom: 1px solid #212121;
  background-color: #dddddd;
  padding: 0 25px;
}

#process-list a {
  padding: 18px 0;
  display: block;
  position: relative;
  color: #2f302e;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  padding-right: 40px;
  margin-left: 32px;
}

#process-list i {
  font-size: 24px;
  position: absolute;
  right: 0;
  top: 16px;
}

#process-list p {
  margin-bottom: 20px;
  color: #006037;
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 0.02em;
}

#process-list a.collapse {
  color: #2f302e;
}

#process-list a.collapsed {
  color: #2f302e;
}

#process-list a.collapsed i::before {
  content: "\ea99" !important;
}

#process-list .step-list {
  color: #2f302e;
  font-weight: 400;
  font-size: 15px;
  line-height: 24px;
  letter-spacing: 0.02em;
  margin-top: 10px;
  margin-left: -20px;
  margin-bottom: 20px;
  margin-right: 30px;
  list-style-type: disc;
}

#process-list .step-list li {
  background-color: rgba(255, 255, 255, 0);
  border-bottom: 0;
  margin-top: 10px;
  padding: 0;
}

#process-list .icon-help {
  font-size: 24px;
  position: absolute;
  right: 0;
  left: 20px;
  color: #212121;
}

/* 按鈕設定 */
.btn {
  margin: 10px 10px;
  width: 260px;
  font-size: 20px;
  background: #006037;
  border: 1px solid #006037;
  border-radius: 0;
  padding: 20px 20px;
  color: #ffffff;
  transition: all 0.4s;
  cursor: pointer;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.btn:focus,
.btn:hover {
  background-color: #fff;
  border: 1px solid #fff;
  color: #2f302e;
}

.btn p.vip {
  text-decoration: none;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.01em;
  margin: 0;
}

.btn-custom {
  margin: 10px 10px;
  width: 260px;
  font-size: 20px;
  background-color: rgba(255, 255, 255, 0);
  border-radius: 0;
  padding: 20px 20px;
  border: 1px solid #006037;
  color: #006037;
  transition: all 0.4s;
  cursor: pointer;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.btn-custom:focus,
.btn-custom:hover {
  background-color: #fff;
  border: 1px solid #fff;
  color: #2f302e;
}
/*------------------------ END ------------------------*/

/*------------------------ 主協辦單位LOGO ------------------------*/
.clients {
  background-color: #fff;
  padding-top: 30px;
  padding-bottom: 20px;
}

.clients h3 {
  font-size: 15px;
  color: #524f4e;
  text-align: center;
  border: 1px solid #524f4e;
  padding: 5px 4px;
  width: 100px;
  margin-bottom: 10px;
  margin-top: 10px;
  margin-left: 0px;
}

.logo-list {
  margin: 5px 0 5px 0;
}

.logo-list li {
  display: inline-block;
  margin: 0 0 0 0px;
}

.logo-list li img {
  max-height: 85px;
}

.list-unstyled ul {
  padding-left: 0;
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.mobile-br {
  display: none;
}
@media (max-width: 768px) {
  .list-unstyled ul {
    flex-direction: column;
    gap: 20px;
  }
  .logo-list li {
    margin: 0 0 0 0;
  }
}
@media (max-width: 450px) {
  .logo-list h1 {
    font-size: 16px;
  }
  .mobile-br {
    display: block;
  }
}

/*------------------------ END ------------------------*/

/*------------------------ 交通資訊 ------------------------*/
#map {
  padding-top: 0;
  padding-bottom: 0;
  background-color: #f8f8f8;
}

#map .row {
  height: 100%;
}

#map .traffic {
  padding-top: 75px;
  padding-bottom: 75px;
  padding-right: 15px;
  height: 100%;
}

#map .trafficLocation {
  color: #2f302e;
  font-weight: 500;
  font-size: 24px;
  margin-bottom: 0px;
}

#map .trafficAddress {
  color: #2f302e;
  font-weight: 400;
  font-size: 18px;
}

.traffic-icons {
  position: relative;
  display: block;
  width: 100%;
  z-index: 1;
}

.traffic-icons .box-icon {
  position: relative;
  top: 0px;
  width: 100%;
  left: 0;
  right: 0;
  margin: 0 5px;
}

.btn-traffic {
  display: inline-block;
  background: #ededed;
  transition: 0.3s linear;
  transition-property: background;
}

.btn-traffic a {
  color: #212121;
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: 0.1em;
  display: block;
  padding: 15px 30px;
}

.btn-traffic a i {
  display: block;
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 10px;
}

.btn-traffic a strong {
  display: block;
  font-size: 20px;
  font-weight: 500;
}

.btn-traffic a:hover {
  background: #2f302e80;
  color: #ffffff;
}

#map iframe {
  width: 100%;
  height: 85%;
  aspect-ratio: 16/9;
  padding-top: 70px;
}

@media (max-width: 450px) {
  #map iframe {
    aspect-ratio: 1/1;
  }
}
/*------------------------ END ------------------------*/

/*------------------------ 版權 ------------------------*/
#footer {
  background: #f6f6f7;
  padding: 10px 0 25px 0;
  color: #777777;
  font-size: 14px;
}

#footer .copyright {
  text-align: center;
  padding-top: 20px;
}

@media (max-width: 575px) {
  #footer .footer-top .footer-info {
    margin: -20px 0 30px 0;
  }
}
/*------------------------ END ------------------------*/

/*------------------------ Preloader ------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #c9bc9c;
  border-top-color: #ada188;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/*------------------------ END ------------------------*/

/*------------------------ Back to top ------------------------*/
.back-to-top {
  position: fixed;
  display: none;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
}

.back-to-top i {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  width: 40px;
  height: 40px;
  border-radius: 0;
  background: #2f302e;
  color: #fff;
  transition: all 0.4s;
}

.back-to-top i:hover {
  background: #ada188;
  color: #fff;
}
/*------------------------ END ------------------------*/

/*------------------------ # Responsive Media Queries ------------------------*/
@media (max-width: 1024px) {
  #intro {
    background-color: #fff;
    background-image: url(../images/moblie.jpg);
    width: 100%;
    height: 100vh;
  }
}
@media (max-width: 450px) {
  #intro {
    background-size: cover;
    height: 518px;
    margin-top: 50px;
  }
}
@media (min-width: 1024px) {
  #intro {
    background-attachment: fixed;
  }

  #register {
    background-attachment: fixed;
  }
}

@media (max-width: 991px) {
  #intro .intro-container {
    top: 70px;
  }

  #speakers .nav-tabs a {
    padding: 8px 60px;
  }
  /* 論壇議程 */
  #agenda .agenda-item time {
    display: inline-block;
    font-weight: 500;
    font-size: 18px;
    letter-spacing: 0.02em;
    margin-left: 0px;
    margin-top: 2px;
  }

  #agenda .agenda-item .agenda-Title {
    font-size: 20px;
    font-weight: 500;
    line-height: 24px;
    margin-left: 0px;
  }

  #agenda .agnedaType {
    font-size: 13px;
    margin-bottom: 8px;
    margin-top: 15px;
    padding: 4px 5px;
  }

  #agenda .agenda-item .agenda-Title {
    font-size: 16px;
    font-weight: 400;
  }

  #agenda .agenda-item h4 {
    font-size: 20px;
    font-weight: 500;
    line-height: 24px;
    margin-bottom: 5px;
  }

  #agenda .agenda-item p {
    font-size: 16px;
    line-height: 20px;
    font-weight: 400;
    margin: 5px 0;
  }

  #agenda .pdf a {
    font-size: 13px;
    line-height: 16px;
    padding: 5px 10px;
    margin-left: 0px;
    border-radius: 20px;
  }
}

@media (max-width: 768px) {
  .back-to-top {
    bottom: 15px;
  }
}

@media (max-width: 576px) {
  .section-header::before {
    width: 50px;
    height: 5px;
  }

  .section-header h2 {
    font-size: 34px;
    margin-bottom: 5px;
  }

  .section-header-dark::before {
    width: 50px;
    height: 5px;
  }

  .section-header-dark h2 {
    font-size: 34px;
    margin-bottom: 5px;
  }

  /* 論壇前言 */
  #about p {
    font-size: 16px;
  }
  #map .traffic {
    padding-right: 0;
  }
}

/* 375px以下視口修正 */
@media (max-width: 375px) {
  #header .container {
    padding-left: 10px;
    padding-right: 10px;
  }

  #header .logo img {
    max-height: 22px;
  }
}

/* 320px以下極小視口修正 */
@media (max-width: 320px) {
  #header .container {
    padding-left: 5px;
    padding-right: 5px;
    max-width: 100%;
  }

  #header .logo {
    margin-right: 5px;
  }

  #header .logo img {
    max-height: 20px;
  }

  .sign-btn {
    margin: -1px 35px 0 0;
    font-size: 12px;
    white-space: nowrap;
    overflow: hidden;
  }

  .mobile-nav-toggle {
    right: 5px;
    font-size: 22px;
  }

  /* 確保d-flex容器不會超出 */
  #header .d-flex {
    flex-wrap: nowrap;
    overflow: hidden;
  }
}

#about .about-title {
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.01em;
  margin-bottom: 25px;
  text-align: center;
}

#about span {
  font-size: 18px;
  font-weight: 400;
  margin: 0 3px;
}

/* 來賓介紹 */
#speakers .speakers-item {
  margin: 0 0 32px 0;
  min-height: 178px;
}

#speakers .speakers-item .speakers-link {
  max-width: 110px;
}

#speakers .speakers-item .speakers-nolink {
  max-width: 110px;
}

#speakers .speakers-item .speakers-caption h4 {
  font-size: 16px;
}

.portfolio-modal .modal-content img {
  margin-bottom: 20px;
  margin-top: 20px;
  width: 60%;
}

.modal .modal-dialog {
  margin: 20px auto;
  width: 85%;
}

/* 論壇議程 */
#agenda .agenda-item time {
  display: inline-block;
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 0.02em;
  margin-left: 0px;
  margin-top: 2px;
}

#agenda .agenda-item .agenda-Title {
  font-size: 20px;
  font-weight: 500;
  line-height: 24px;
  margin-left: 0px;
}

#agenda .agnedaType {
  font-size: 13px;
  margin-bottom: 8px;
  margin-top: 15px;
  padding: 4px 5px;
}

#agenda .agenda-item .agenda-Title {
  font-size: 20px;
  font-weight: 500;
  line-height: 24px;
  margin-bottom: 5px;
  color: #7e5946;
}

#agenda .agenda-item h4 {
  font-size: 20px;
  font-weight: 500;
  line-height: 32px;
  margin-bottom: 5px;
}

#agenda .agenda-item p {
  font-size: 16px;
  line-height: 32px;
  font-weight: 400;
  margin: 5px 0;
}

#agenda .pdf a {
  font-size: 13px;
  line-height: 16px;
  padding: 5px 10px;
  margin-left: 0px;
  border-radius: 20px;
}

/* 立即報名 */
#register .applyBox .applyTitle {
  font-size: 17px;
}

#register .applyBox .applyDate {
  font-size: 34px;
}

#register .applyBox .applyLocation {
  font-size: 22px;
}

#register .applyBox .applyTime {
  font-size: 16px;
  margin-top: -5px;
}

#register .applyBox .applyAddress {
  font-size: 16px;
}

#register .notice ul {
  margin-left: -20px;
  font-size: 16px;
  font-weight: 400;
}

.btn {
  width: 230px;
  font-size: 18px;
}

.btn-custom {
  width: 230px;
  font-size: 18px;
}

/* 交通資訊 */
#map .trafficLocation {
  font-size: 22px;
  margin-bottom: 0px;
  text-align: center;
}

#map .trafficAddress {
  font-size: 17px;
  text-align: center;
}

.traffic-info {
  margin-top: 20px;
}

.traffic-section {
  margin-bottom: 20px;
  padding: 10px 0;
}

.traffic-section h5 {
  font-size: 16px;
  margin-bottom: 10px;
  text-align: center;
}

.traffic-item {
  padding-left: 0;
  text-align: center;
}

.traffic-item h6 {
  font-size: 14px;
  margin-bottom: 5px;
}

.traffic-item p {
  font-size: 13px;
  line-height: 1.5;
}

.btn-traffic {
  margin: 3px 1px;
}

.btn-traffic a {
  padding: 15px 20px;
}

.btn-traffic a i {
  font-size: 24px;
  margin-bottom: 5px;
}

.btn-traffic a strong {
  font-size: 17px;
}

.traffic-icons {
  text-align: center;
}

/* 銝餃�磰齒�鱓雿� */
.clients h3 {
  margin-left: 0px;
}

.logo-list li img {
  max-height: 150px;
}

@media (min-width: 576px) {
  .portfolio-modal .modal-content img {
    margin-bottom: 0;
    margin-top: 0;
    width: 90%;
  }

  #map .traffic {
    padding-left: calc((100vw - 540px) / 2);
  }
}

@media (min-width: 768px) {
  #map .traffic {
    padding-left: calc((100vw - 720px) / 2);
  }
}

@media (min-width: 992px) {
  .modal-dialog {
    max-width: 600px;
  }

  #map .traffic {
    padding-left: calc((100vw - 960px) / 2);
  }
}

@media (min-width: 1200px) {
  #map .traffic {
    padding-left: calc((100vw - 1140px) / 2);
  }
}
/*------------------------ END ------------------------*/
.logo-udn {
  max-height: 60px !important;
}
@media (max-width: 1170px) {
  .logo-udn {
    max-height: 50px !important;
  }
}
@media (max-width: 450px) {
  #header {
    background-color: #003142;
  }
}
.list-unstyled h1 {
  font-size: 32px;
  margin: 0 10px 0 50px;
}
