:root {
  --orange: #ff6d00;
  --pink: #f72585;
  --blue: #00dbeb;
  --green: #35e95f;
  --yellow: #ffd166;
  --gray: #DFE0DF;
  --purple: #c471ed;
  --txt-gray: #999999;

  --shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/

html {
  scroll-behavior: smooth;
}

body {
  font-size: 18px;
  line-height: 1.8;
  color: #333333;
  font-family: 'Roboto', 'Noto Sans TC', Arial, '微軟正黑體', '新細明體', Helvetica, sans-serif;
}

a {
  color: var(--pink);
  text-decoration: none;
  transition: all 0.2s;
}

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

section {
  padding: 4rem 2rem;
  overflow: hidden;
}

@media (max-width:576px) {
  section {
    padding: 3rem 1rem;
  }
}


/* 內頁 */
.sec-inner {
  padding-top: 10rem;
  background-color: #f7ebfd;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top;
}

.inner-b {
  background-image: url(../img/web-bg03.png);
}

.inner-c {
  background-color: hsla(60, 100%, 88%, 1);
  background-image:
    radial-gradient(at 80% 0%, hsla(189, 100%, 56%, 1) 0px, transparent 50%),
    radial-gradient(at 25% 70%, hsla(355, 100%, 93%, 1) 0px, transparent 50%),
    radial-gradient(at 15% 12%, hsla(343, 100%, 85%, 1) 0px, transparent 50%);
}

.inner-d {
  background-image: url(../img/web-bg02.jpg);
}


/* 大標 */
.main-title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 4rem;
  font-weight: 700;
}

.main-title small {
  font-size: 18px;
  color: #c19ee0;
}

/* 漸層標題 */
.gdtitle {
  text-align: center;
  font-weight: 700;
  line-height: 1.5;
  background: -webkit-linear-gradient(120deg, #6360ff 0%, #ce5bff 50%, #00ffff 100%);
  background: linear-gradient(120deg, #6360ff 0%, #ce5bff 50%, #00ffff 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  padding: 5px 0 10px;
}

/* 基本框 */
.main-box {
  position: relative;
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: var(--shadow);
  margin-bottom: 2rem;
  background-color: #ffffff;
}


.arrow-box {
  position: relative;
  padding: 20px 60px 20px 30px;
  border-radius: 20px;
  box-shadow: var(--shadow);
  margin-bottom: 2rem;
  background-color: #ffffff;
  transition: 0.2s;
}

.arrow-box:hover {
  transform: translateY(-5px);
  box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
}

.arrow-box .bx-right-arrow-alt {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(-50%, -50%);
  font-size: 45px;
  color: var(--orange);
}


.arrow-box p {
  color: #8F9396;
  margin-bottom: 5px;
}

.arrow-box h5 {
  font-weight: 400;
}

.arrow-box:hover h5 {
  color: var(--green);
}

@media (max-width:576px) {
  .arrow-box .bx-right-arrow-alt {
    font-size: 32px;
  }

  .partner-page .social-links a {
    margin-right: 2px;
  }
}


/* 按鈕 */
.ticket-btn,
.gray-btn,
.light-btn {
  display: inline-block;
  color: #fff;
  font-size: 18px;
  padding: 5px 15px;
  border-radius: 20px;
  width: 180px;
  transition: all 0.2s;
}

.ticket-btn {
  background-color: #ff758f;
}

.gray-btn {
  background-color: #8F9396;
}

.light-btn {
  background-color: #cb5df1;
}


.ticket-btn:hover,
.ticket-btn:focus {
  background-color: #ff4d6d;
  color: #fff;
}

.gray-btn:hover,
.gray-btn:focus {
  color: #fff;
}

.light-btn:hover,
.light-btn:focus {
  background-color: #9f21e3;
  color: #fff;
}

.outline-btn {
  display: block;
  color: var(--purple);
  border: 2px solid var(--purple);
  background-color: #fff;
  text-align: center;
  font-size: 18px;
  padding: 8px 10px;
  border-radius: 25px;
  transition: all 0.2s;
}

.outline-btn:hover,
.outline-btn:focus {
  color: #fff;
  background-color: var(--purple);
}

/* 行數限制基本設定 */
.txtlimit {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  /* Limit the Text line */
  -webkit-line-clamp: 1;
}


/* 範圍 a */
.a-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}


/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}


/*--------------------------------------------------------------
# foreword
--------------------------------------------------------------*/
.foreword {
  margin-top: -10rem;
  background-color: #d4e6fa;
}

.foreword h2 {
  font-weight: 700;
  text-align: center;
  margin: 2rem 0;
}

.about-icon {
  max-width: 200px;
  display: block;
  margin: 0 auto;
}

.icon-title {
  font-size: 22px;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 0.1rem;
  text-shadow: 0 1px 6px #666;
  border-radius: 20px;
  margin: 1rem 0;
  background: #25BD68;
  background: -moz-linear-gradient(120deg, #c879ff 0%, #ffb7ff 50%, #3bf4fb 100%);
  background: -webkit-linear-gradient(120deg, #c879ff 0%, #ffb7ff 50%, #3bf4fb 100%);
  background: linear-gradient(120deg, #c879ff 0%, #ffb7ff 50%, #3bf4fb 100%);
}

@media (max-width:576px) {
  .foreword h1 {
    font-size: 34px;
  }
}

.gdBox {
  position: relative;
  padding: 6px;
  border-radius: 45px;
  background: -webkit-linear-gradient(60deg, #ffe0e9 0%, #ffffff 50%, #cbeef3 100%);
  background: linear-gradient(60deg, #ffe0e9 0%, #ffffff 50%, #cbeef3 100%);
  margin-bottom: 2rem;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
}


.gdBox__wrap {
  border-radius: 40px;
  /* background-color: #ffffff; */
  padding: 2rem;
}


/*--------------------------------------------------------------
# social-link
--------------------------------------------------------------*/
.social-links {
  margin-bottom: 1rem;
}

.social-links .social-icon {
  font-size: 18px;
  display: inline-block;
  border: 1px solid var(--pink);
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
  background-color: #fff;
}

.social-links .social-icon:hover {
  background-color: rgba(0, 0, 0, 0.1);
}

/*--------------------------------------------------------------
# share
--------------------------------------------------------------*/
.social-links .dropdown {
  border: 1px solid var(--green);
  padding: 0 10px;
  border-radius: 20px;
  background-color: #fff;
}

.social-links .dropdown-menu {
  font-size: 15px;
  min-width: auto;
  border-radius: 0 0 20px 20px;
  border: none;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 10px -5px, rgba(0, 0, 0, 0.04) 0px 10px 10px -5px;
  background-color: #EDFEF0;

}

.social-links .dropdown-item:focus,
.dropdown-item:hover {
  background-color: transparent;
  color: var(--orange);
  font-weight: 700;
}

/*--------------------------------------------------------------
# summit
--------------------------------------------------------------*/
.summit {
  background-color: #efefef;
}

.summit h4 {
  font-weight: 400;
  line-height: 36px;
}

.cfp_card {
  position: relative;
  background: #fff;
  box-shadow: var(--shadow);
  border-radius: 15px;
  padding: 1.2rem 1rem;
  margin-bottom: 30px;
  overflow: hidden;
  transition: all 0.2s ease-in-out;
}

.cfp_card:hover {
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px, rgb(51, 51, 51) 0px 0px 0px 3px;
}

.cfp_card:hover img {
  transition: all 0.2s ease-in-out;
  transform: scale(1.1);
}




/*--------------------------------------------------------------
# speaker 詳見獨立css
--------------------------------------------------------------*/
#speaker {
  background-image: url(../img/web-bg03.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: bottom;
}


.subtitle {
  color: #4e148c;
  text-align: center;
  text-transform: uppercase;
  font-size: 26px;
  letter-spacing: 1px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  grid-template-rows: 16px 0;
  grid-gap: 22px;
  margin-bottom: 2rem;
}

.subtitle:after,
.subtitle:before {
  content: " ";
  display: block;
  border-bottom: 1px solid #6247aa;
}

.rg-bg {
  background-color: hsla(0, 0%, 100%, 1);
  background-image: radial-gradient(at 91% 63%, hsla(304, 80%, 77%, 1) 0px, transparent 50%), radial-gradient(at 48% 42%, hsla(65, 100%, 56%, 1) 0px, transparent 50%), radial-gradient(at 3% 48%, hsla(183, 85%, 53%, 1) 0px, transparent 50%);
}



/*--------------------------------------------------------------
# job
--------------------------------------------------------------*/
.job {
  padding: 4rem 1rem;
  background-color: hsla(206, 56%, 87%, 1);
  background-image: radial-gradient(at 25% 0%, hsla(285, 100%, 74%, 0.71) 0px, transparent 50%), radial-gradient(at 100% 100%, hsla(189, 100%, 56%, 0.55) 0px, transparent 50%);
}

.job .main-title small {
  color: #cb5df1;
}

.job .outline-btn {
  margin-top: 4rem;
}

.job-box {
  position: relative;
  border: 1px solid #cb5df1;
  background-color: rgba(123, 30, 122, 0.45);
  padding: 1.5rem 2rem;
  border-radius: 20px;
  transition: all 0.2s;
  margin: 0 10px;
}

.job-box:hover {
  background-color: rgba(123, 30, 122, 0.7);
}


.carousel-job .carousel-indicators {
  bottom: -3rem;
}

.carousel-job .carousel-indicators {
  margin: 0 auto;
}

.carousel-job .carousel-indicators li {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #ffffff;
  margin-right: 5px;
  margin-left: 5px;
}


.job-list {
  list-style: none;
  padding-left: 20px;
  margin: 0;
}

.job-list li {
  position: relative;
  color: #ffffff;
}

.job-list li::before {
  content: "";
  position: absolute;
  left: -15px;
  top: 11px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 0 5px 10px;
  border-color: transparent transparent transparent #ffd166;
}

/*--------------------------------------------------------------
#  map
--------------------------------------------------------------*/
.map {
  position: relative;
  background-color: #ffffff;
  background-image: url(../img/web-bg04.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top;
}



.map-img {
  display: block;
  width: 100%;
  border: 1px solid #d0c9ea;
  /* border-radius: 15px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px; */
}

.map h2 {
  font-weight: 700;
}

.map h2 small {
  font-size: 20px;
}

.map .ticket-btn {
  text-align: center;
  margin-top: 2rem;
  width: 200px;
}

@media (max-width:576px) {
  .map-img {
    margin-bottom: 20px;
  }

  .map::before {
    opacity: 0.5;
  }

  .map h2 {
    font-size: 1.8rem;
  }
}

/*--------------------------------------------------------------
#  partners
--------------------------------------------------------------*/
.partners {
  position: relative;
}

.partners h5 {
  position: relative;
  font-size: 20x;
  font-weight: 400;
  padding-left: 20px;
}

.partners h5::before {
  content: "✦";
  position: absolute;
  width: 15px;
  top: 0;
  left: 0;
}

.logo-wrap {
  position: relative;
  margin-bottom: 15px;
}

.logo-wrap img {
  width: 100%;
  transition: all 0.2s ease-in-out;
}

.logo-wrap:hover img {
  transform: scale(1.1);
}