:root {
  --orange: #ff9986;
  --pink: #ff78c2;
  --blue: #00ffff;
  --green: #abea0d;
  --yellow: #ffff00;
  --gray: #DFE0DF;
  --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: #ffb86e;
  text-decoration: none;
}

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

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


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

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

.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: #8F9396;
}

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

/* 基本框 */
.main-box {
  position: relative;
  padding: 2rem 3rem 1rem;
  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 .right-icon {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translate(-50%, -50%);
  font-size: 30px;
  color: var(--orange);
}

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


.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,
.green-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: var(--orange);
}

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

.green-btn {
  background-color: #00c2ac;
}


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

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

.green-btn:hover,
.green-btn:focus {
  background-color: #1ea767;
  color: #fff;
}

.outline-btn {
  display: block;
  color: var(--orange);
  border: 2px solid var(--orange);
  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(--orange);
}

/* 行數限制基本設定 */
.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;
}

.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: 700;
  color: #ffffff;
  border-radius: 12px;
  margin: 1rem 0;
  background: #25BD68;
  background: -moz-linear-gradient(30deg, #ff78c2 0%, #4c88e7 100%);
  background: -webkit-linear-gradient(30deg, #ff78c2 0%, #4c88e7 100%);
  background: linear-gradient(30deg, #ff78c2 0%, #4c88e7 100%);
}

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

.gdBox {
  position: relative;
  padding: 6px;
  border-radius: 50px;
  background: -webkit-linear-gradient(120deg, #ff78c2 0%, #ffd864 50%, #00ffff 100%);
  background: linear-gradient(120deg, #ff78c2 0%, #ffd864 50%, #00ffff 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: 45px;
  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 h4 {
  font-size: 1.5rem;
  text-align: center;
  margin-bottom: 0;
}

.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);
}

/*--------------------------------------------------------------
# campaign
--------------------------------------------------------------*/
.campaign .box {
  min-height: 108px;
  position: relative;
  border: 2px solid #a972cb;
  padding: 1.5rem 1rem;
  transition: all 0.3s ease-in-out;
  margin-bottom: 1.5rem;
  border-radius: 10px;
  overflow: hidden;
}

.campaign .box:hover {
  color: #fff;
  background-color: #a972cb;
  box-shadow: 5px 5px 0 var(--gray);
  transform: translateY(-3px)
}

.campaign:nth-child(2) .box{
  border-color:#ef6eae;
}

.campaign:nth-child(2) .box:hover{
  background-color:#ef6eae;  
}

.campaign:nth-child(3) .box{
  border-color:#ff7f82;
}

.campaign:nth-child(3) .box:hover{
  background-color:#ff7f82;
}

.campaign:nth-child(4) .box{
  border-color:#ffa260;
}

.campaign:nth-child(4) .box:hover{
  background-color:#ffa260;
}

.campaign:nth-child(5) .box{
  border-color:#e4cb58;
}

.campaign:nth-child(5) .box:hover{
  background-color:#e4cb58;
}

.campaign:nth-child(6) .box{
  border-color:#8fc866;
}

.campaign:nth-child(6) .box:hover{
  background-color:#8fc866;
}

.campaign:nth-child(7) .box{
  border-color:#19bc8b;
}

.campaign:nth-child(7) .box:hover{
  background-color:#19bc8b;
}

.campaign:nth-child(8) .box{
  border-color:#3da9fc;
}

.campaign:nth-child(8) .box:hover{
  background-color:#3da9fc;
}

.campaign .box h4 {
  text-align: center;
  margin-bottom: 0;
}


/*--------------------------------------------------------------
# speaker 詳見獨立css
--------------------------------------------------------------*/
.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: linear-gradient(90deg, rgba(244, 248, 105, 0.5) 0%, rgba(244, 248, 105, 0.5) 100%), url("../img/bg.jpg") center center no-repeat;
  background-size: cover;
  border-radius: 30px;
}

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

.job-box {
  position: relative;
  background-color: #ffffff;
  padding: 1.5rem 2rem;
  border-radius: 20px;
  transition: all 0.2s;
  margin: 0 10px;
}

.job-box:hover {
  background-color: #fbfaf0;
}

.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: var(--pink);
  margin-right: 5px;
  margin-left: 5px;
}


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

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

.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 #f88f70;
}

/*--------------------------------------------------------------
#  map
--------------------------------------------------------------*/
.map {
  position: relative;
  background-color: #ffffff;
}

.map::before {
  content: "";
  position: absolute;
  top: 20%;
  left: 5%;
  width: 400px;
  height: 400px;
  border-radius: 15rem;
  background: linear-gradient(197.37deg, #7450DB -0.38%, rgba(138, 234, 240, 0) 101.89%), linear-gradient(115.93deg, #3E88F6 4.86%, rgba(62, 180, 246, 0.33) 38.05%, rgba(62, 235, 246, 0) 74.14%), radial-gradient(56.47% 76.87% at 6.92% 7.55%, rgba(62, 136, 246, 0.7) 0%, rgba(62, 158, 246, 0.182) 52.16%, rgba(62, 246, 246, 0) 100%), linear-gradient(306.53deg, #2EE4E3 19.83%, rgba(46, 228, 227, 0) 97.33%);
  background-blend-mode: color-dodge, color, screen, luminosity, darken, lighten;
  filter: blur(50px);
}

.map-img {
  display: block;
  width: 100%;
  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: url(../img/list-icon.svg);
  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);
}

