@charset "UTF-8";

/*
0-600px Phone
600-900px Tablet portrait
900-1200px Tablet landscape
1200-1800 is our normal styles apply
1800px + Big desktop

$breakpoint argument choices:
- phone
- tab-port
- tab-land
- big-desktop
1em=16px

ORDER:base+typography > general layout + grid>page layout >components
*/
@keyframes fadeIn {
  40% {
    opacity: 0;
    transform: translate3d(-50%, -50%, 0) scale(0.3);
  }

  80% {
    opacity: 1;
    transform: translate3d(-50%, -50%, 0) scale(1.2);
  }

  100% {
    opacity: 1;
    transform: translate3d(-50%, -50%, 0) scale(1);
  }
}

@keyframes fadeOut {
  0% {
    opacity: 1;
    transform: translate3d(-50%, -50%, 0) scale(1);
  }

  20% {
    opacity: 1;
    transform: translate3d(-50%, -50%, 0) scale(1.2);
  }

  100% {
    opacity: 0;
    transform: translate3d(-50%, -50%, 0) scale(0.3);
  }
}

@keyframes fade {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

body {
  font-family: Arial, '微軟正黑體', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #333;
}

.heading {
  margin-bottom: 10px;
  font-size: 2em;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 2px;
  color: #762a00;
}

.heading-lead {
  margin-bottom: 10px;
  margin-top: 10px;
  font-size: 2.4em;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 1px;
  color: #004b64;
}

.heading-tertiary {
  margin-bottom: 30px;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4;
}

a,
a:link,
a:visited {
  color: #c54900;
  text-decoration: none;
  transition: .2s;
}

a:hover {
  color: #00974c;
}

a:active,
a:focus {
  color: #006432;
}

.pb20{
  padding-bottom: 20px;
}
.main-btn,
.main-btn:link,
.main-btn:visited {
  display: block;
  width: 280px;
  max-width: 100%;
  margin: 0 auto;
  padding: 16px;
  color: #fff;
  font-size: 20px;
  letter-spacing: 2px;
  background-color: #c54900;
  border-radius: 0;
  border: none;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  box-shadow: 0 7px 10px rgba(0, 0, 0, 0.2);
  transition: .2s;
}

.main-btn:hover {
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  transform: translateY(-2px);
}

.main-btn:hover::after {
  transform: scaleX(1.4) scaleY(1.6);
  opacity: 0;
}

.main-btn:active,
.main-btn:focus {
  outline: none;
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.3);
  transform: translateY(0);
}

.main-btn--small {
  width: 100%;
  padding: 8px 10px;
  font-size: 18px;
}

.fb-share {
  position: fixed;
  right: 20px;
  top: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  box-shadow: 4px 2px 0px 0px #ffffff78;
  z-index: 999;
  cursor: pointer;
}

.fb-share:hover {
  transform: translateY(2px);
  box-shadow: 1px 2px 0px 0px #ffffff78;
}

.fb-share:active {
  transform: translateY(0);
  box-shadow: 0 2px 6px #fff;
}

.fb-share img {
  width: 100%;
}

@media (max-width: 768px) {
  .fb-share {
    right: 10px;
    top: 20px;
    width: 40px;
    height: 40px;
  }
}

.w100 {
  width: 100%; 
}



.carousel-indicators li {
  border-color: #C1C1C1;
}

.carousel-indicators li.active {
  background-color: #C1C1C1;
}

.carousel-indicators {
  bottom: 0;
}

@media (min-width: 768px) {
  .carousel-indicators {
    bottom: 0;
  }
}

.speaker-modal .modal-dialog {
  top: 50%;
  transform: translateY(-50%);
}

.speaker-modal.fade .modal-dialog {
  transition: .2s ease-in;
  transform: translateY(-50%);
  opacity: 0;
}

.speaker-modal.in .modal-dialog {
  transform: translateY(-50%);
  opacity: 1;
}

.speaker-modal .modal-header,
.speaker-modal .modal-footer {
  border: none;
}

@media only screen and (max-width: 767px) {
  .speaker-modal__img {
    width: 50%;
    margin: 0 auto;
  }
}

.agenda-timeline {
  position: relative;
  margin-left: 42px;
}

@media (max-width: 1200px) {
  .agenda-timeline {
    margin-left: 82px;
  }
}

@media (max-width: 767px) {
  .agenda-timeline {
    margin-left: 62px;
  }
}

@media (max-width: 320px) {
  .agenda-timeline {
    margin-left: 72px;
  }
}

.agenda-timeline::before {
  position: absolute;
  content: '';
  left: 0;
  top: 0;
  width: 4px;
  height: calc(100% - 30px);
  background-color: #c54900;
}

.agenda-timeline__group {
  position: relative;
  padding-left: 52px;
}

.agenda-timeline__group:not(:last-child) {
  margin-bottom: 40px;
}

@media (max-width: 320px) {
  .agenda-timeline__group {
    padding-left: 32px;
  }
}

.agenda-timeline__time {
  position: absolute;
  right: 100%;
  top: 0;
  width: 72px;
  font-size: 20px;
  color: #c54900;
}

.agenda-timeline__content::before {
  content: '';
  position: absolute;
  left: -14px;
  top: 0;
  width: 30px;
  height: 30px;
  background-color: #e8ffb0;
  border: 4px solid #c54900;
  border-radius: 50%;
  z-index: 1;
}

.agenda-timeline__content::after {
  content: '';
  position: absolute;
  left: 0;
  top: 13px;
  width: 40px;
  height: 4px;
  background-color: #c54900;
}

@media (max-width: 320px) {
  .agenda-timeline__content::after {
    width: 20px;
  }
}

.agenda-timeline__topic {
  font-size: 20px;
  font-weight: 700;
}

footer {
  padding: 30px;
  color: #ddd;
  font-size: 20px;
  background-color: #000;
}

.bg {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 90vh;
  /* background-position: center;
  background-size: cover;
  background-image: url(../img/kv-img.jpg); */
  transition: .1s;
  z-index: -1;
}

.bg--signup {
  height: 80vh;
}

.kv {
  position: relative;
  /* height: 90vh; */
  overflow: hidden;
  text-align: center;
  perspective: 1000;
}

@media (max-width: 768px) {
  .kv {
    /* height: 50vh; */
  }
}

.kv__img {
  /* position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  opacity: 0;
  backface-visibility: hidden;
  user-select: none; */
}

/* .kv__img:nth-child(1) {
  animation: fadeIn 0.6s 0.2s forwards;
} */

.kv__img img {
  max-width: 100%;
}

/* @media (max-width: 1366px) {
  .kv__img img {
    max-width: 80%;
  }
} */



.content-kv {
  position: relative;
  /* height: 65vh; */
  overflow: hidden;
  text-align: center;
  perspective: 1000;
}

/* @media (max-width: 768px) {
  .content-kv {
    height: 50vh;
  }
} */

.content-bg {
  height: 65vh;
}
@media (max-width: 768px) {
  .content-bg {
    height: 50vh;
    background-position: 10% 0;
    background-repeat: no-repeat;
  }
}

.content-kv__img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  opacity: 0;
  backface-visibility: hidden;
  animation: fade .8s forwards;
  user-select: none;
}

.content-kv__img img {
  max-width: 100%;
}

@media (max-width: 1366px) {
  .content-kv__img img {
    max-width: 80%;
  }
}

.intro {
  display: flex;
}

@media (max-width: 992px) {
  .intro {
    flex-direction: column;
  }
}

.intro-gallery {
  flex-basis: 50%;
  position: relative;
  background-color: #000;
}

@media (max-width: 992px) {
  .intro-gallery {
    flex-basis: 100%;
    order: 1;
    height: 300px;
  }
}

.intro-gallery__item {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  visibility: hidden;
  opacity: 0;
  transition: .4s linear;
}

.intro-gallery__item:nth-child(1) {
  background-image: url("../img/img1.jpg");
}

.intro-gallery__item:nth-child(2) {
  background-image: url("../img/img2.jpg");
}

.intro-gallery__item:nth-child(3) {
  background-image: url("../img/img3.jpg");
}

.intro-gallery__item.active {
  visibility: visible;
  opacity: 1;
}

.intro-content {
  flex-basis: 50%;
  padding: 60px;
  background-color: #ffd9a3;
}

@media (max-width: 992px) {
  .intro-content {
    flex-basis: 100%;
  }
}

@media (max-width: 768px) {
  .intro-content {
    padding: 40px;
  }
}

.intro-content .heading {
  position: relative;
  padding-bottom: 0;
}

.intro-content .heading img {
  display: block;
  max-width: 100%;
  user-select: none;
}

.intro-content p {
  font-size: 18px;
  line-height: 2;
}

/* index 防疫須知 */
.measure {
  background-color: #364800;
  padding: 20px;
}

@media (max-width: 768px) {
  .measure {
    padding: 40px;
  }
}

.measure-title {
  color: #ffd690;
  font-size: 24px;
  text-align: center;
}

.measure-title a {
  color: #fff;
  text-decoration: underline;
}

.info {
  display: flex;
  align-items: center;
  justify-content: space-around;
  margin-top: 20px;
  margin-bottom: 20px;
}

@media (max-width: 1700px) {
  .info {
    margin-top: 30px;
    flex-direction: column;
    align-items: flex-start;
  }
}

.info__icon {
  position: relative;
}

.info__icon i {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 28px;
}

.info__deco {
  user-select: none;
}

.info__desc {
  padding-left: 20px;
  font-size: 24px;
  font-weight: 700;
  color: #c54900;
  line-height: 1.4;
}

.info__desc span {
  font-size: 16px;
  font-weight: 500;
  color: #333;
}

.info .media {
  margin-bottom: 20px;
  display: inline-block;
}

.info .media-body {
  width: auto;
}

.info .media-left {
  padding-right: 0;
}

.event {
  padding-top: 40px;
  padding-bottom: 0px;
  background-color: #e8ffb0;
}

@media (max-width: 768px) {
  .event {
    padding: 20px;
  }
}

.event-box {
  width: 80%;
  margin: 0 auto;
  margin-bottom: 40px;
}

.event-box__img {
  width: 60%;
  margin: 0 auto;
}

.event-box__img img {
  max-width: 100%;
}

.event-box h3 {
  color: #3e1c0b;
  font-weight: 700;
  letter-spacing: 1px;
  text-align: center;
}

.event-img>[class^=col-] {
  padding: 0;
}

@media (max-width: 991px) {
  .event-img>[class^=col-] {
    padding: 15px;
  }
}

.event-img img {
  width: 100%;
}

.event-img__mask {
  position: relative;
  display: block;
}

.event-img__mask::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  transition: .2s linear;
}

.event-img__mask::after {
  content: attr(data-word);
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  font-size: 28px;
  letter-spacing: 2px;
  font-weight: 700;
  color: #fff;
  text-align: center;
  transform: translateY(-50%);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.event-img__mask:hover::before {
  background-color: rgba(0, 0, 0, 0.4);
}

.event-word {
  font-size: 24px;
  font-weight: 700;
  color: #c54900;
}

.social {
  display: flex;
}

@media (max-width: 992px) {
  .social {
    flex-direction: column;
  }
}

@media (max-width: 1440px) {
  .social .heading {
    font-size: 2.5vw;
  }
}

@media (max-width: 992px) {
  .social .heading {
    font-size: 40px;
    text-align: center;
  }
}

.social-img {
  flex-basis: 50%;
  background-image: url(../img/social.jpg);
  background-size: cover;
  background-position: center center;
}

@media (max-width: 992px) {
  .social-img {
    flex-basis: 100%;
    order: 1;
    height: 300px;
  }
}

.social-content {
  flex-basis: 50%;
  padding: 40px;
  background-color: #fff;
}

@media (max-width: 992px) {
  .social-content {
    flex-basis: 100%;
  }
}

@media (max-width: 768px) {
  .social-content {
    padding: 20px;
  }
}

.social-content .item {
  min-height: 450px;
}

.social-list li {
  margin-bottom: 10px;
}

.social-list a {
  font-size: 18px;
  color: #666;
}

.social-list a:hover,
.social-list a:focus {
  color: #c54900;
}

.social-list a:active {
  color: #c54900;
}

.agenda {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 40px;
  padding-bottom: 60px;
  background-color: #e8ffb0;
}



/* 報名頁 */

.signup {
  padding: 20px 0 60px;
  background-color: #e8ffb0;
}

@media (max-width: 768px) {
  .signup {
    padding: 40px;
  }
}

.signup-form {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #fff;
}

.signup-form label span {
  color: #c54900;
}

.signup-form .help-block {
  font-size: 14px;
  color: #888;
}

.signup-form .main-btn {
  margin-top: 20px;
}

.notice {
  background-color: #cc1943;
  color: #fff;
}

.notice p {
  padding: 15px;
  margin: 0;
  font-size: 18px;
  letter-spacing: 2px;
}

.traffic {
  display: flex;
  background-color: #fff;
}

@media (max-width: 992px) {
  .traffic {
    flex-direction: column;
  }
}

.traffic-content {
  flex-basis: 50%;
  padding: 40px;
  padding-bottom: 60px;
  background-color: #fff;
}

@media (max-width: 992px) {
  .traffic-content {
    flex-basis: 100%;
  }
}

@media (max-width: 768px) {
  .traffic-content {
    padding: 20px;
  }
}

.traffic-content .btn-lead {
  font-size: 18px;
  border: 1px solid #c54900;
  border-bottom: 2px solid #c54900;
  color: #c54900;
  padding: 2px 8px 1px;
  margin-left: 10px;
}

.traffic-content .btn-lead:hover {
  background-color: #c54900;
  color: #ffffff;
}

.traffic-content__desc {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4;
}

@media (max-width: 992px) {
  .traffic-content__desc {
    text-align: center;
  }
}

.traffic-content__desc span {
  font-size: 16px;
  font-weight: 500;
  color: #666;
}

@media (max-width: 992px) {
  .traffic-content .heading {
    text-align: center;
  }
}

.map {
  flex-basis: 50%;
}

@media (max-width: 992px) {
  .map {
    flex-basis: 100%;
    order: 1;
    height: 300px;
  }
}

.map iframe {
  width: 100%;
  height: 100%;
}

.traffic-info {
  margin: 0 auto;
  margin-top: 40px;
}

.traffic-info__icon {
  position: relative;
}

.traffic-info__icon i {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 28px;
}

.traffic-info__deco {
  user-select: none;
}

.traffic-info__title {
  margin-bottom: 8px;
  font-size: 24px;
  font-weight: 700;
  color: #c54900;
  line-height: 1.4;
}

.traffic-info__desc {
  font-size: 16px;
  font-weight: 500;
  color: #666;
}

.traffic-info ul {
  padding-left: 20px;
}

.traffic-info .media {
  margin-bottom: 20px;
  display: inline-block;
}

.traffic-info .media-body {
  width: auto;
  padding-left: 20px;
}

.traffic-info .media-left {
  padding-right: 0;
}

.traffic-info-link {
  padding: 10px;
}

.traffic-info-link:hover {
  background-color: #eeeeee;
  cursor: pointer;
}

/*# sourceMappingURL=style.css.map */



/* 防疫措施頁 */
.content-measure {
  padding-top: 60px;
  padding-bottom: 80px;
  background-color: #fff;
}

.content-measure label span {
  color: #c54900;
}

.content-measure .help-block {
  font-size: 14px;
  color: #888;
}

.content-measure .main-btn {
  margin-top: 20px;
}

.measure-col p,
.measure-col li {
  font-size: 18px;
  line-height: 1.8;
}

.measure-col p,
.measure-col li+li {
  padding-top: 15px;
}

.highlight {
  color:#ff0000
}


/* Thanks page */
.content-thanks {
  min-height: 40vh;
  padding-top: 60px;
  padding-bottom: 80px;
  background-color: #fff;
}