@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Caveat&family=Lilita+One&family=Noto+Sans+TC:wght@400;500;600;700&family=Rubik:wght@400;500;600&display=swap');

body,
html {
  font-family: 'Noto Sans TC', 'Rubik', 'Helvetica LT', "微軟正黑體", sans-serif;
  font-size: 16px;
  color: #22538B;
  font-weight: 400;
  /* cursor: none; 隱藏滑鼠 */
  position: relative;

}

a {
  transition: all ease-in-out .3s;
  color: #2FBDFF;
  text-decoration: none;
  /* cursor: none; 隱藏滑鼠 */
}

a:hover {
  text-decoration: none;

}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 400;
}

.wrapper {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  padding-top: 65px;
  /* z-index: 1; */
}

ul,
li {
  list-style: none;
  padding: 0;
  margin: 0;
}

:focus {
  outline: none;
}

button {
  border: none;
  box-shadow: none;
}

.btn.focus,
.btn:focus,
button:focus {
  outline: none;
  box-shadow: none;
}

input:-webkit-autofill,
textarea:-webkit-autofill,
select:-webkit-autofill {
  -webkit-text-fill-color: #333 !important;
  background-color: transparent;
  box-shadow: none !important;
  z-index: -1;
}

input:-internal-autofill-selected {
  appearance: none;
  background-color: transparent !important;
  box-shadow: none !important;
}



/**/
.ml-10 {
  margin-left: 10px;
}

.mr-10 {
  margin-right: 10px;
}

.pr-10 {
  padding-right: 10px;
}


.bg-gray {
  background: #F5F5F5;
}

.txt-gray {
  color: #777;
}

.txt-lightgray {
  color: #e4e4e4;
}

.txt-lightblue {
  color: #2FBDFF;
}

.txt-white {
  color: #fff;
}

.font-400 {
  font-weight: 400;
}

.font-20 {
  font-size: 1.25rem;
}

h2 {
  font-size: 2.5rem;
}

h3 {
  font-size: 1.75rem;
}

p {
  line-height: 1.5;
}

.shadow-small {
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.15);
}

.shadow-box {
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

/*header*/
header {
  background: #fff;
  transition: all ease-in-out 0.3s;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 900;
  padding: 10px 110px;
}

body.fixed header {
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.15);
}

.navbar-toggler {
  display: none;
}

.navbar-toggler .open-menu {
  display: none;
}

.navbar-toggler.collapsed .open-menu {
  display: block;
}

.navbar-toggler.collapsed .close-menu {
  display: none;
}

.navbar {
  padding: 0;
  flex-wrap: nowrap;
}

.navbar .navbar-brand {
  padding: 0;
  /* width: 270px; */
  width: 150px;
  margin: 0;
  z-index: 1000;
}

.navbar .navbar-brand img {
  height: 30px;
}


.navbar-menu {
  display: flex;
  justify-content: flex-end;
}

.navbar-nav {
  flex-direction: row;
  margin-right: 24px;
}

.navbar-nav .nav-item {
  padding: 0 16px;
}

.navbar-menu .btn-cta {
  border: 1px solid #22538B;
  border-radius: 4px;
  padding: 8px 10px;
  font-size: 1.125rem;
  color: #22538B;
  font-weight: 600;
  transition: all ease-in-out .3s;
}

.navbar-menu .btn-cta:hover {
  background-color: #22538B;
  color: #fff;
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.15);
  transform: translateY(-3px);
}

.navbar-nav .nav-item .nav-link {
  font-size: 1.125rem;
  padding: 8px 0;
  color: #22538B;
  font-weight: 600;
  text-align: center;
  position: relative;
  z-index: 0;
}

.navbar-nav .nav-item .nav-link:before {

  transition: all ease-in-out .3s;
  content: "";
  width: 0;
  height: 1px;
  background: #2FBDFF;
  background-size: 100%;
  border-radius: 5px;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  opacity: 0;
}

.navbar-nav .nav-item .nav-link:hover,
.navbar-nav .nav-item.active .nav-link {
  color: #2FBDFF;
}

.navbar-nav .nav-item .nav-link:hover::before,
.navbar-nav .nav-item.active .nav-link::before {
  opacity: 1;
  width: 100%;
}




body.fixed header {
  z-index: 100;
  box-shadow: 0 0 8px rgba(0, 0, 0, .15);
}


#nav-icon {
  width: 30px;
  height: 20px;
  position: relative;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .5s ease-in-out;
  -moz-transition: .5s ease-in-out;
  -o-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
  cursor: pointer;
}

#nav-icon span {
  display: block;
  position: absolute;
  width: 100%;
  background: #22538B;
  height: 3px;
  border-radius: 2px;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .25s ease-in-out;
  -moz-transition: .25s ease-in-out;
  -o-transition: .25s ease-in-out;
  transition: .25s ease-in-out;
}

#nav-icon span:nth-child(1) {
  top: 0px;
}

#nav-icon span:nth-child(2),
#nav-icon span:nth-child(3) {
  top: 10px;
}

#nav-icon span:nth-child(4) {
  top: 20px;
}

#nav-icon.open span {
  background: #22538B;
}

#nav-icon.open span:nth-child(1) {
  top: 10px;
  width: 0%;
  left: 50%;
}

#nav-icon.open span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

#nav-icon.open span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

#nav-icon.open span:nth-child(4) {
  top: 10px;
  width: 0%;
  left: 50%;
}


/*content*/
.show-mb {
  display: none !important;
}

.container-lg {
  max-width: 1240px;
  width: 100%;
  padding: 0 20px;
}

.container {
  max-width: 1040px;
  width: 100%;
  padding: 0 20px;
}

.row {
  margin: 0 -30px;
}

.row>* {
  padding: 0 30px;
}

.imgBox img {
  max-width: 100%;
}

/* .loading-cover {
  position: fixed;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all ease-in-out .3s;
  opacity: 1;
}

.loading-cover.hide-cover {
  z-index: -1;
  opacity: 0;
} */

.margin-setting {
  margin-bottom: 40px;
}

.margin-settingB {
  margin-bottom: 80px;
}

.padding-setting {
  padding: 160px 0;
}

.padding-settingB {
  padding: 80px 0;
}

.title-style h2 {
  font-size: 2.5rem;
  font-weight: 600;
  position: relative;
  padding-bottom: 35px;
  margin-bottom: 40px;
  text-align: center;
  letter-spacing: 10%;
  line-height: 1.5;
}

.title-style h2::before {
  content: "";
  width: 105px;
  height: 15px;
  background: url(../img/title-wave.svg)no-repeat center center;
  background-size: contain;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.textBox p {
  line-height: 1.5;
  font-size: 1.125rem;
  margin-bottom: 0;
}

.modal-dialog {
  max-width: 300px;
  margin: 0 auto;
}

.modal-content {
  border-radius: 20px;
  border: none;
  padding: 0;
  background-color: #fff;
}

.modal-content .close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #2FBDFF;
  text-align: center;
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.15);
  transition: all ease-in-out .3s;
  opacity: 1 !important;
  z-index: 10;
}

.modal-content .close:hover {
  background-color: #22538B;
}

.modal-body {
  padding: 60px 50px;
  overflow: hidden;
}

.modal-body::before {
  content: "";
  width: 300px;
  height: 260px;
  background: url(../img/circle2.png)no-repeat center center;
  background-size: contain;
  position: absolute;
  bottom: -90px;
  right: -65px;
}

.modal-body .imgBox {
  width: 320px;
  flex: 0 0 320px;
}

.modal-body .textBox {
  padding-left: 30px;
  width: auto;
  flex: 0 1 auto;
  letter-spacing: 3%;
  text-align: justify;
}

.modal-body .textBox .top {
  margin-bottom: 30px;
}

.modal-body .textBox .top h2 {
  font-weight: 600;
  margin-bottom: 5px;

}

.modal-body .textBox .top p {
  font-size: 1.5rem;
}

/*banner*/

.section-banner {
  width: 100%;
  position: relative;
  overflow: hidden;
}

.section-banner img {
  width: 100%;
}

.section-banner .banner-textBox {

  max-width: 50%;
  width: 870px;
  position: absolute;
  top: 35px;
  left: 50%;
  transform: translateX(-50%);
  isolation: isolate;
}

.rippleBox {
  position: absolute;
  z-index: -1;
}



.rippleBox.rippleBox01 {
  left: 5%;
  top: 20%;
}

.rippleBox.rippleBox02 {
  right: 10%;
  bottom: 5%;
  transform: scale(0.7);
}

/* @keyframes rippleOut {
  0% {
    width: 0px;
    height: 0px;
    opacity: 0.8;
  }

  100% {
    width: 900px;
    height: 900px;
    opacity: 0;
  }
}

.ripple {
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.6);

  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
} */

@keyframes rippleOut {
  0% {
    transform: translate(-50%, -50%) scale(0);
    opacity: 0.85;
  }

  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0;
  }
}

.ripple {
  position: absolute;
  width: 900px;
  height: 900px;
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 1);

  left: 50%;
  top: 50%;

  transform: translate(-50%, -50%) scale(0);
  transform-origin: center;
  will-change: transform, opacity;
  pointer-events: none;
}

.rippleBox.rippleBox01 .ripple {
  animation: rippleOut 5s ease-in-out infinite;
}

.rippleBox.rippleBox02 .ripple {
  animation: rippleOut 5.5s ease-in-out infinite;
}

.rippleBox.rippleBox01 .ripple:nth-child(2) {
  animation-delay: 2s;
}

.rippleBox.rippleBox01 .ripple:nth-child(3) {
  animation-delay: 3s;
}

.rippleBox.rippleBox02 .ripple:nth-child(2) {
  animation-delay: 2.5s;
}

.rippleBox.rippleBox02 .ripple:nth-child(3) {
  animation-delay: 4s;
}


.btn-scroll {
  position: absolute;
  left: 50%;
  bottom: 40px;
  transform: translateX(-50%);
  text-align: center;
}

.btn-scroll .imgBox {
  position: relative;
  width: 30px;
  margin: 0 auto 20px;
}

.btn-scroll .imgBox::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%) rotate(135deg);
  transition: all ease-in-out .3s;
  animation: scrollLoopArrow 2s infinite;
}

.btn-scroll .imgBox::after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 30px;
  background-color: #fff;
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  transition: all ease-in-out .3s;
  animation: scrollLoopArrow 2s infinite;
}

@keyframes scrollLoopArrow {
  0% {
    bottom: -15px;
  }

  50% {
    bottom: -20px;
  }

  100% {
    bottom: -15px;
  }
}

@keyframes scrollLoopLine {
  0% {
    height: 30px;
    bottom: -15px;
  }

  50% {
    height: 35px;
    bottom: -20px;
  }

  100% {
    height: 30px;
    bottom: -15px;
  }
}


.btn-scroll span {
  color: #fff;
  font-size: 0.9rem;
}

.section-foreword {
  background: url(../img/line-bg.png)no-repeat center bottom;
  background-size: 100%;
}

.section-foreword .card-border {
  background-color: rgba(255, 255, 255, 0.9);
  border: 2px solid #2FBDFF;
  border-radius: 20px;
  padding: 80px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.section-foreword .card-border p {
  font-size: 1.5rem;
  margin-bottom: 20px;
  line-height: 1.75;
  letter-spacing: 10%;
}

.section-spotlights {
  position: relative;
  background-color: #eff8ff;
}

.swiper {
  overflow: visible;
}

.swiper-slide {
  width: auto;
}

.filpCardBox {
  display: flex;
  justify-content: space-between;
  padding: 50px 0;
}

.filpCard {
  position: relative;
  transform-style: preserve-3d;
  transition: 0.8s ease-in-out;
  width: 370px;
  height: 520px;
  display: block;
  cursor: pointer;
}

.filpCard.flipped {
  transform: rotateY(180deg);
  /*點擊後filp*/
}

.filpCard .card {
  width: 100%;
  height: 100%;
  position: absolute;
  backface-visibility: hidden;
  /* 隐藏背面元素 */
  border-radius: 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  z-index: 0;
  border: none;
}

.filpCard .card .icon {
  position: absolute;
  right: 50px;
  bottom: 40px;
}

.filpCard .card.front {
  padding: 30px 50px 60px;
  background-color: #CDEFFF;
}

.filpCard .card.front span {
  font-family: 'Rubik';
  font-size: 120px;
  font-weight: 500;
  display: block;
  text-align: center;
  color: #22538B;
  line-height: 1;
  margin-bottom: 30px;
  text-shadow: 0px 3px 5px rgba(0, 0, 0, .15);
}

.filpCard .card.front h3 {
  color: #019FE8;
  line-height: 1.5;
  text-align: justify;
}

.filpCard .card.front:before,
.filpCard .card.back:before {
  content: "";
  position: absolute;
  bottom: -30px;
  left: -20px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  z-index: -1;
}

.filpCardOuter:nth-child(1) .filpCard .card.front::before {
  width: 260px;
  height: 243px;
  background-image: url(../img/dec01_w.png);

}

.filpCardOuter:nth-child(2) .filpCard .card.front::before {
  width: 230px;
  height: 232px;
  background-image: url(../img/dec02_w.png);

}

.filpCardOuter:nth-child(3) .filpCard .card.front::before {
  width: 190px;
  height: 190px;
  background-image: url(../img/dec03_w.png);
  left: 10px;
  bottom: -10px;
}

.filpCard .card.back {
  border: 2px solid #2FBDFF;
  background-color: #fff;
  padding: 80px 50px 60px;
  transform: rotateY(180deg);
  /*繞著Y軸旋轉*/
}

.filpCard .card.back ul li {
  position: relative;
  font-size: 1.5rem;
  margin-bottom: 15px;
  padding-left: 24px;
}

.filpCard .card.back ul li::before {
  content: "";
  width: 16px;
  height: 16px;
  background: url(../img/icon/list.svg)no-repeat center center;
  background-size: 100%;
  position: absolute;
  top: 12px;
  left: 0;
}

.filpCardOuter:nth-child(1) .filpCard .card.back::before {
  width: 260px;
  height: 243px;
  background-image: url(../img/dec01_b.png);

}

.filpCardOuter:nth-child(2) .filpCard .card.back::before {
  width: 230px;
  height: 232px;
  background-image: url(../img/dec02_b.png);

}

.filpCardOuter:nth-child(3) .filpCard .card.back::before {
  width: 190px;
  height: 190px;
  background-image: url(../img/dec03_b.png);
  left: 10px;
  bottom: -10px;
}

.section-speakers {
  position: relative;
  padding-top: 240px;
}

.section-speakers .wave-bg {
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  height: auto;
  z-index: -1;

}

.speaker-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.speaker-list li {
  width: 360px;
  padding: 0 20px;
  margin-bottom: 40px;
  position: relative;
}

.speaker-list li .imgBox {
  margin-bottom: 20px;
}

.speaker-list li h3 {
  font-weight: 600;
}

.speaker-list li .btn-plus {
  position: absolute;
  top: 60%;
  right: 13%;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #2FBDFF;
  text-align: center;
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.15);
  transition: all ease-in-out .3s;
}

.speaker-list li .btn-plus:hover {
  background-color: #22538B;

}

.section-agenda {
  position: relative;
  background-color: #fff;
  z-index: 0;
}

.section-agenda::before {
  content: "";
  position: absolute;
  top: 360px;
  left: 0;
  width: 100%;
  height: 2000px;
  background: url(../img/wave-bg2.png)no-repeat center top;
  background-size: 100% auto;
  z-index: -1;
}

.section-agenda h3 {
  font-weight: 600;
  margin-bottom: 10px;
}

.section-agenda p {
  letter-spacing: 5%;
}

.section-agenda h6 {
  font-weight: 500;
  font-size: 1.125rem;
  line-height: 1.5;
}

.section-agenda .col-md-6 {
  border-left: 1px solid #22538B;
  margin-bottom: 30px;
}

.section-agenda .col-md-6:first-child {
  border-left: none;
}

.section-agenda #content-wrapper {
  padding-top: 40px;
}

.agenda-list {
  color: #fff;
}

.agenda-list li {
  background: #22538B;
  border-radius: 10px;
  margin-bottom: 20px;
  color: #fff;
  padding: 20px 0;
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
}

.agenda-list li:last-child {
  margin-bottom: 0;
}

.agenda-list li .time {
  font-family: 'Rubik';
  width: 200px;
  flex: 0 0 200px;
  padding: 0 30px;
  text-align: center;
  font-weight: 500;
  font-size: 1.125rem;
}

.agenda-list li .content {
  flex: 0 1 auto;
  padding: 0 30px;
  border-left: 1px solid #fff;
}

.agenda-list li .content {
  padding: 0 30px;
}

.agenda-list li .content>div {
  margin-bottom: 10px;
}

.agenda-list li .content>div:last-child {
  margin-bottom: 0;
}

.agenda-list li .content .title {
  font-size: 1.5rem;
  font-weight: 600;

}

.agenda-list li .content .speaker {
  color: #95dcfc;
}

.section-traffic {
  background-color: #eff8ff;
}

.section-traffic h3 {
  font-weight: 600;
  margin-bottom: 10px;
}

.section-traffic p {
  letter-spacing: 5%;
}

.section-traffic h6 {
  font-weight: 500;
  font-size: 1.125rem;
  line-height: 1.5;
}

/* .section-traffic .col-md-6 {
  border-left: 1px solid #22538B;
  margin-bottom: 30px;
}

.section-traffic .col-md-6:first-child {
  border-left: none;
} */

.section-traffic .textBox.text-traffic {
  padding-left: 30px;
  margin-bottom: 20px;
}

.section-traffic .textBox .little-title {
  position: relative;

}

.section-traffic .textBox .little-title::before {
  content: "";
  width: 16px;
  height: 16px;
  background: url(../img/icon/list.svg) no-repeat center center;
  background-size: 100%;
  position: absolute;
  top: 7px;
  left: -25px;
}

.section-traffic .textBox ul {
  padding-left: 1rem;

}

.section-traffic .textBox ul>li {
  position: relative;

}

.section-traffic .textBox ul>li::before {
  content: "";
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background-color: #22538B;
  position: absolute;
  top: 12px;
  left: -10px;
}

.section-traffic iframe {
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
  border-radius: 20px;
  margin-top: 40px;
}

.section-register {
  position: relative;
  overflow: hidden;
}

.section-register .cir1-1 {
  width: 490px;
  height: 490px;
  background: url(../img/circle1-2.png)no-repeat center center;
  background-size: contain;
  position: absolute;
  top: -150px;
  left: -120px;
  animation: cirMove2 20s linear infinite;
  z-index: -1;
}

.section-register .cir1-2 {
  width: 340px;
  height: 340px;
  background: url(../img/circle1-1.png)no-repeat center center;
  background-size: contain;
  position: absolute;
  top: 20px;
  left: 60px;
  animation: cirMove1 20s linear infinite;
  z-index: -1;
}

.section-register .cir2-1 {
  width: 520px;
  height: 520px;
  background: url(../img/circle2-1.png)no-repeat center center;
  background-size: contain;
  position: absolute;
  bottom: -160px;
  right: -160px;
  animation: cirMove1 20s linear infinite;
  z-index: -1;
}

.section-register .cir2-2 {
  width: 400px;
  height: 400px;
  background: url(../img/circle2-2.png)no-repeat center center;
  background-size: contain;
  position: absolute;
  bottom: -60px;
  right: 40px;
  animation: cirMove2 20s linear infinite;
  z-index: -1;
}

@keyframes cirMove1 {
  0% {
    transform: translate(0, 0);
  }

  25% {
    transform: translate(20px, 20px);
  }

  50% {
    transform: translate(0, 0);
  }

  75% {
    transform: translate(-20px, -20px);
  }

  100% {
    transform: translate(0, 0);
  }
}

@keyframes cirMove2 {
  0% {
    transform: translate(0, 0);
  }

  25% {
    transform: translate(-30px, 30px);
  }

  50% {
    transform: translate(0, 0);
  }

  75% {
    transform: translate(30px, -30px);
  }

  100% {
    transform: translate(0, 0);
  }
}

.apply-form {
  border: 1px solid #2FBDFF;
  border-radius: 20px;
  padding: 60px;
  background-color: #fff;
  margin-bottom: 40px;
}

.apply-form .form-item {
  position: relative;
  margin-bottom: 20px;
  z-index: 0;
}

.apply-form .campaign-form-wrap .form-item .item-title.required::before {
  color: #FF2F2F;
  position: absolute;
  left: -12px;
}

.apply-form .campaign-form-wrap .form-item .item-title {
  position: absolute;
  font-size: 1.25rem;
  color: #22538B;
  font-weight: 500;
  margin: 0;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
  transition: all ease-in-out .3s;
  z-index: -1;
}

.apply-form .campaign-form-wrap .form-item.active .item-title {
  font-size: .875rem;
  color: #2FBDFF;
  top: 0px;
  z-index: 100;
}

.apply-form .campaign-form-wrap .form-item.active .item-title.required::before {
  left: -8px;
  z-index: 100;
}

.apply-form .campaign-form-wrap input[type=text],
.apply-form .campaign-form-wrap input[type=email],
.apply-form .campaign-form-wrap select {

  border: none;
  border-bottom: 1px solid #22538B;
  padding: 12px 10px;
  transition: all ease-in-out .3s;
  font-size: 1.25rem;
  color: #22538B;
  font-weight: 500;
  background-color: transparent;
  height: 58px;
}

.apply-form .campaign-form-wrap select {
  /* 移除瀏覽器預設樣式 */
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  /* 自訂下拉箭頭圖示 (可替換圖片網址) */
  background-image: url(../img/icon/arrow-down.png);
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 8px;

  color: transparent;
}

.apply-form .campaign-form-wrap .form-item.active input[type=text],
.apply-form .campaign-form-wrap .form-item.active input[type=email] {
  border-color: #2FBDFF;
  color: #22538B;
}

.apply-form .campaign-form-wrap .checkbox-item {
  align-items: center;
}

.apply-form .campaign-form-wrap .checkbox-item .checkbox {
  border-color: #2FBDFF;
  border-radius: 2px;
  border-width: 2px;
  color: #22538B;
  width: 30px;
  height: 30px;
}

.apply-form .campaign-form-wrap .checkbox-item .checkbox-text {
  font-size: 1.125rem;
  color: #22538B;
  line-height: 1.5;
  font-weight: 400;
  letter-spacing: 10%;
}

.apply-form .campaign-form-wrap .form-item.privacy-policy-wrap {
  padding-top: 10px;
}

.apply-form .campaign-form-wrap .form-item.privacy-policy-wrap .privacy-policy-title {
  position: relative;
  left: 0;
  top: 0;
  transform: none;
}

.apply-form .campaign-form-wrap .form-item .item-title.privacy-policy-title.required::before {
  display: none;
}

.apply-form .campaign-form-wrap .form-item.privacy-policy-wrap .privacy-policy-content {
  font-size: 1.125rem;
  color: #22538B;
  line-height: 1.5;
  text-align: justify;
  padding: 0;
  letter-spacing: 10%;
}

.apply-form .campaign-form-wrap .checkbox-item input[type=checkbox]:checked+.checkbox svg {
  transform: scale(1.5);
}

.apply-form .campaign-form-wrap .form-item.privacy-policy-wrap .privacy-policy-content a {
  color: #2FBDFF;
}

.section-register .submit-buttons-wrap {
  text-align: center;
}

.section-register .submit-buttons-wrap button {
  border: 1px solid #22538B;
  padding: 10px 15px;
  border-radius: 10px;
  background: #fff;
  width: 200px;
  font-size: 1.75rem;
  color: #22538B;
  margin: 40px 0;
  transition: all ease-in-out .3s;
}

.section-register .submit-buttons-wrap button:hover,
.section-register .submit-buttons-wrap button:active {
  border: 1px solid #22538B;
  background: #22538B;
  color: #fff;
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.15);
}

/*footer*/
footer {
  background-color: #019FE8;
  color: #fff;
  display: flex;
  align-items: center;
  padding: 40px 0;
}

footer p {
  text-align: center;
  margin: 0;
}

footer a {
  text-align: center;
  margin: 0;
  display: block;
  color: #fff;
  text-decoration: underline !important;
}

footer a:hover {
  color: #22538B;
}



@media(min-width:576px) {
  .modal-dialog {
    max-width: 500px;
  }
}

@media(min-width:992px) {
  .modal-dialog {
    max-width: 900px;
  }
}



@media(max-width:1200px) {
  header {
    padding: 10px 60px;
  }

  .navbar .navbar-brand {
    /* width: 240px; */

  }

  .navbar-nav {
    margin-right: 12px;
  }

  .navbar-nav .nav-item {
    padding: 0 10px;
  }

  .btn-scroll {
    bottom: 20px;
  }

  .btn-scroll .imgBox {
    width: 24px;
  }

  .btn-scroll span {
    font-size: .8rem;
  }

  .filpCardBox {
    margin: 0 -10px;
    justify-content: center;
  }

  .filpCardOuter {
    width: 33%;
    padding: 0 10px;
  }

  .filpCard {
    width: 300px;
    height: 420px;
    max-width: 100%;
  }

  .filpCard .card.front,
  .filpCard .card.back {
    padding: 30px 20px;
    border-radius: 10px;
  }

  .filpCard .card.front span {
    font-size: 80px;
  }

  .filpCard .card.back ul li::before {
    top: 8px;
  }

  .filpCard .card.front h3,
  .speaker-list li h3,
  .filpCard .card.back ul li {
    font-size: 1.25rem;
  }

  .filpCard .card .icon {
    right: 20px;
    bottom: 30px;
  }

  .filpCardOuter:nth-child(1) .filpCard .card.front::before,
  .filpCardOuter:nth-child(1) .filpCard .card.back::before {
    width: 160px;
    height: 150px;
    bottom: -15px;
    left: -15px;
  }

  .filpCardOuter:nth-child(2) .filpCard .card.front::before,
  .filpCardOuter:nth-child(2) .filpCard .card.back::before {
    width: 160px;
    height: 160px;
    bottom: -15px;
    left: -15px;
  }

  .filpCardOuter:nth-child(3) .filpCard .card.front::before,
  .filpCardOuter:nth-child(3) .filpCard .card.back::before {
    width: 140px;
    height: 140px;
    left: 5px;
    bottom: -5px;
  }

  .section-traffic iframe {
    max-width: 100%;
  }

  .section-register::before {
    width: 350px;
    height: 330px;
    top: -80px;
    left: -85px;
  }

  .section-register::after {
    width: 350px;
    height: 320px;
    bottom: -80px;
    right: -100px;
  }
}

@media(max-width:991px) {

  .wrapper {
    padding-top: 52px;
  }

  body.open header:before {
    content: "";
    width: 100%;
    height: 100%;
    background-color: #fff;
    animation: fadeIn .3s ease-in-out;
    -webkit-animation: fadeIn .3s ease-in-out;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
  }

  .navbar-toggler {
    display: block;
    padding: 0;
    border-radius: 0;
    border: none;
    z-index: 1000;
  }

  .collapse:not(.show) {
    display: none;
  }

  .navbar {
    position: static;
  }

  .navbar-menu {
    background: #fff;
    width: 100%;
    height: 100vh;
    justify-content: flex-start;
    z-index: 999;
    flex-direction: column;
    position: absolute;
    top: 0;
    left: -150%;
    transition: all ease-in-out .3s;
  }

  body.open .navbar-menu {
    left: 0;
  }

  .navbar-nav {
    flex-direction: column;
    text-align: center;
    width: 100%;
    margin: 20px 0;
    padding-top: 52px;

  }



  .navbar-nav .nav-item {
    padding: 10px 0px;
    position: relative;
    border-bottom: 1px solid #E6E6E6;
    transition: all ease-in-out .3s;

  }

  .navbar-nav .nav-item.active,
  .navbar-nav .nav-item:hover {

    border-color: #2FBDFF;
  }

  .navbar-nav .nav-item .nav-link {
    padding: 0 15px;
    width: auto;
    text-align: left;
    color: #22538B;
    transition: all ease-in-out .3s;
    text-align: center;
    font-size: 1.5rem;
  }

  .navbar-nav .nav-item .nav-link:hover,
  .navbar-nav .nav-item.active .nav-link,
  .navbar-nav .nav-item .nav-link:active {
    color: #2FBDFF;
  }

  .navbar-nav .nav-item .nav-link:before {
    display: none;
  }

  .navbar-menu .btn-cta {
    margin: 6px 20px;
    text-align: center;
    font-size: 1.5rem;
  }

  .row {
    margin: 0 -20px;
  }

  .row>* {
    padding: 0 20px;
  }


  .title-style h2 {
    font-size: 2rem;
    padding-bottom: 25px;
    margin-bottom: 30px;
  }

  .title-style h2:before {
    width: 80px;
    height: 10px;
  }

  .padding-setting,
  .padding-settingB {
    padding: 60px 0;
  }


  .margin-settingB {
    margin-bottom: 40px;
  }

  .margin-setting {
    margin-bottom: 25px;
  }

  .ripple {
    width: 500px;
    height: 500px;
    border: 3px solid rgba(255, 255, 255, 0.8);
  }

  .rippleBox.rippleBox01 .ripple {
    animation: rippleOut 6s ease-in-out infinite;
  }

  .rippleBox.rippleBox02 .ripple {
    animation: rippleOut 7s ease-in-out infinite;
  }

  .section-foreword {
    padding: 60px 0 80px;
    background-size: 120%;
  }

  .section-foreword .card-border {
    padding: 40px 20px;
  }

  .section-foreword .card-border p {
    font-size: 1.125rem;
  }

  .filpCardBox {
    padding: 20px 0;
  }


  .section-speakers {
    padding-top: 120px;
  }

  .section-agenda #content-wrapper {
    padding-top: 30px;
  }

  .apply-form {
    padding: 40px;
  }

  .section-register .submit-buttons-wrap button {
    margin: 0;
  }

  .modal-body .textBox {
    padding-top: 30px;
    padding-left: 0;
  }
}



@media(max-width:767px) {
  .show-mb {
    display: block !important;
  }

  .hide-mb {
    display: none !important;
  }

  header {
    padding: 15px 20px;
  }

  .navbar .navbar-brand {
    
    font-size: 1rem;
    line-height: 1;
  }
  .navbar .navbar-brand img{
    height: 22px;
  }

  .navbar .navbar-toggler #nav-icon {
    width: 20px;
    height: 20px;
  }

  .navbar-nav .nav-item .nav-link,
  .navbar-menu .btn-cta {
    font-size: 1.125rem;
  }

  .navbar-nav .nav-item .nav-link span {
    font-size: 1rem;
  }

  #nav-icon span:nth-child(2),
  #nav-icon span:nth-child(3) {
    top: 8px;
  }

  #nav-icon span:nth-child(4) {
    top: 16px;
  }

  h3 {
    font-size: 1.125rem;
  }

  .textBox p {
    font-size: 1rem;
  }

  .title-style h2 {
    font-size: 1.5rem;
  }

  .section-banner .banner-textBox {
    width: 360px;
    max-width: 90%;
    top: 60px;
  }

  .section-foreword .card-border {
    border-radius: 10px;
  }

  .section-foreword .card-border p {
    font-size: 1rem;
  }

  .section-foreword {
    background-size: 200%;
  }

  .spotlightsSlide {
    padding-bottom: 40px;
  }

  .filpCardBox {
    padding: 10px 0;
    justify-content: flex-start;
  }

  .filpCardOuter {
    display: flex !important;
    justify-content: center;
  }

  .filpCard {
    width: 240px;
    height: 320px;
  }

  .filpCard .card {
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
  }

  .filpCard .card.front span {
    margin-bottom: 20px;
  }

  .filpCard .card.front h3,
  .speaker-list li h3,
  .filpCard .card.back ul li {
    font-size: 1.125rem;
  }

  .swiper-slide {
    width: 100%;
  }

  .swiper-pagination {
    position: absolute;
    display: flex;
    bottom: 0 !important;
    justify-content: center;

  }

  .swiper-pagination-bullet {
    font-size: 0;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 1px solid #2FBDFF;
    background: none;
    appearance: none;
    padding: 0;
    opacity: 1;
  }

  .swiper-pagination-bullet-active {
    background: #2FBDFF;
  }

  .section-speakers {
    padding-top: 80px;
  }

  .section-speakers .wave-bg {
    width: 120%;
  }

  .speaker-list {
    margin: 0 -10px;
  }

  .speaker-list li {
    width: 50%;
    padding: 0 10px;
    margin-bottom: 20px;
  }

  .speaker-list li .btn-plus {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 50%;
  }

  .speaker-list li .btn-plus img {
    width: 18px;
  }

  .section-agenda::before {
    height: 2700px;
    background: url(../img/wave-bg2-mb.png) no-repeat center top;
  }

  .section-agenda .col-md-6 {
    border-left: none;
    margin-bottom: 0px;
  }

  .section-agenda .col-md-6 .textBox,
  .section-agenda .col-md-12 {
    padding-top: 20px;
    padding-bottom: 20px;

  }

  .section-agenda .col-md-6 .textBox {
    border-bottom: 1px solid #22538B;
  }

  .section-agenda .col-md-6:last-child .textBox {
    border-bottom: none;
  }

  .agenda-list li {
    flex-direction: column;
    padding: 0;
  }

  .agenda-list li .time {
    width: 100%;
    flex: auto;
    padding: 15px 10px 10px;
    line-height: 1;
    text-align: left;
  }

  .agenda-list li .content {
    width: 100%;
    padding: 10px 10px 15px;
    border-top: 1px solid #fff;
    border-left: none;
  }

  .agenda-list li .content .title {
    font-size: 1.125rem;
  }

  /* .section-traffic .col-md-6 {
    border-left: none;
    margin-bottom: 0px;
  } */

  .section-traffic .col-md-6 .textBox,
  .section-traffic .col-md-12 {
    padding-top: 20px;
    padding-bottom: 20px;

  }

  /* .section-traffic .col-md-6 .textBox {
    border-bottom: 1px solid #22538B;
  } */

  .section-traffic .col-md-12:last-child {
    padding-top: 0;
    padding-bottom: 0;
  }

  .section-traffic iframe {
    margin-top: 0;
    border-radius: 10px;
    max-height: 200px;
  }

  /* .section-register::before{
          width: 220px;
        height: 200px;
        top: -40px;
        left: -49px;
} */
  .section-register .cir1-1 {
    width: 200px;
    height: 200px;
    top: -60px;
    left: -60px;
    animation: none;
  }

  .section-register .cir1-2 {
    width: 130px;
    height: 130px;
    top: 20px;
    left: 10px;
    animation: none;
  }

  .section-register .cir2-1 {
    width: 220px;
    height: 220px;
    bottom: -60px;
    right: -60px;
    animation: none;
  }

  .section-register .cir2-2 {
    width: 150px;
    height: 150px;
    bottom: -60px;
    right: 40px;
    animation: none;
  }

  .apply-form {
    padding: 30px 20px;
    border-radius: 10px;
    margin-bottom: 30px;
  }

  .apply-form .campaign-form-wrap .form-item.privacy-policy-wrap {
    padding: 0;
  }

  .apply-form .campaign-form-wrap .checkbox-item .checkbox {
    width: 24px;
    height: 24px;
  }

  .apply-form .campaign-form-wrap .checkbox-item .checkbox-text,
  .apply-form .campaign-form-wrap .form-item.privacy-policy-wrap .privacy-policy-content {
    font-size: 1rem;
  }

  .section-register .submit-buttons-wrap button {
    width: 100%;
    font-size: 1.125rem;
  }

  footer {
    padding: 20px;
    font-size: .875rem;
  }

  .modal-content .close {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 15px;
    right: 15px;
  }

  .modal-content .close img {
    width: 15px;
  }

  .modal-body {
    padding: 30px 20px;
  }

  .modal-body::before {
    display: none;
  }

  .modal-body .textBox .top h2 {
    font-size: 1.5rem;
  }

  .modal-body .textBox .top p {
    font-size: 1.125rem;
  }

  .modal-body .textBox .bottom p {
    font-size: 1rem;
  }

  .modal-body .textBox .top {
    margin-bottom: 20px;
  }

  .modal-body .imgBox {
    width: 100%;
    ;
  }
}

@media(max-width:420px) {

  .filpCard .card.front h3,
  .speaker-list li h3,
  .filpCard .card.back ul li {
    font-size: 1rem;
  }

  .filpCard .card.front,
  .filpCard .card.back {
    padding: 20px 15px;
  }

  .filpCard .card.back ul li::before {
    top: 5px;
  }
}


@media(max-width:375px) {}

@media(max-width:320px) {}