/* Template 3 */
.template3_Toggle {
  display: flex;
  gap: 16px;
}

.t3Item {
  background-color: #999;
  padding: 50px 50px;
  width: 200px;
  transition: all 0.3s ease;
  cursor: pointer;
  overflow: hidden;
  flex-shrink: 0;
  position: relative;
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.t3Item:hover,
.t3Item.expanded {
  width: 400px;
  background-color: #999;
}

.t3Item .img>img {
  border-radius: 100% !important;
  height: 60px !important;
  width: 60px;
  margin: auto;
}

.t3Item .content h3 {
  font-family: 'Noto Sans TC';
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
  line-height: 32px;
  color: #4A4A4A;
  margin: 30px 0 30px;
  text-align: center;
}

.t3Item .content p {
  font-family: 'Noto Sans TC';
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: #4A4A4A;
  opacity: 0;
  height: 0;
  transition: opacity 0.3s ease, height 0.3s ease;
  overflow: hidden;
}

.t3Item:hover .content h3,
.t3Item.expanded .content h3 {
  text-align: left;
}

.t3Item:hover .content p,
.t3Item.expanded .content p {
  opacity: 1;
  height: auto;
}

.t3Item.expanded .img>img {
  border-radius: 0px !important;
  width: 100%;
  height: auto !important;
}

@media only screen and (max-width: 768px) {
  .template3_Toggle {
    display: block;
  }

  .t3Item {
    margin-bottom: 30px;
  }

  .t3Item,
  .t3Item.expanded {
    width: 100%;
  }
}

/* Template 5 */
.t5Content {
  display: flex;
  align-items: center;
  padding: 0 10%;
}

.t5Content .img,
.t5Content .inner {
  width: calc(100%/2);
}

.t5Content .img img {
  margin: 0 auto;
}

.t5Content .inner {
  text-align: center;
  padding: 50px 50px;
}

.t5Content .inner h3 {
  font-family: 'Noto Sans TC';
  font-style: normal;
  font-weight: 500;
  font-size: 24px;
  line-height: 36px;
  color: #FFFFFF;
  margin: 0 0 80px;
}

.t5Content .inner p {
  font-family: 'Noto Sans TC';
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: #FFFFFF;
}

.t5sc .swiper-button-next:after,
.t5sc .swiper-button-prev:after {
  font-size: 14px !important;
  color: #fff;
  background-color: rgba(74, 74, 74, .6);
  width: 36px;
  height: 28px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Template 8 */
.t8sc .t8Content {
  background-repeat: no-repeat;
  background-size: contain;
  padding: 40px 40px;
}

/* Template 9 */
.t9sc .swiper-slide {
  flex: 0 0 74%;
}

.t9sc .t9Content {
  filter: brightness(0.5);
}

.t9sc.ctrl {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 12%;
  height: 50px;
  margin: auto auto -10% 0;
}

.t9sc.ctrl .swiper-button-lock {
  display: block;
}

.t9sc.ctrl .swiper-button-next:after,
.t9sc.ctrl .swiper-button-prev:after {
  font-size: 25px !important;
  color: #fff;
  background-color: rgba(74, 74, 74, .6);
  width: 36px;
  height: 36px;
  border-radius: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.t9Faq .e-n-accordion-item {
  background-color: #d9d9d9;
  border-radius: 50px;
}

/* Template 10 */
@media only screen and (min-width: 768px) {
  .vtw h2.elementor-heading-title.elementor-size-default {
    writing-mode: sideways-lr;
  }
}

/* Template 11 */
.t11Faq {
  background-color: #D9D9D9;
  border-radius: 100px;
  padding: 15px 20px;
  margin-bottom: 20px;
}

.t11FaqTitle {
  position: relative;
  display: flex;
  align-items: center;
  padding-left: 100px;
  height: 70px;
}

.t11FaqTitle h3 {
  color: #4A4A4A;
  font-family: 'Noto Sans TC';
  font-style: normal;
  font-weight: 400;
  font-size: 24px;
  line-height: 36px;
  position: relative;
  z-index: 14;
}

.t11FaqTitle:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 70px;
  height: 70px;
  border-radius: 70px;
  background-color: #f7f7f7;
  transition: width 0.3s ease;
  z-index: 13;
}

.t11FaqContent {
  display: none;
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 500;
  font-size: 40px;
  line-height: 60px;
  color: #4A4A4A;
  transition: max-height 0.3s ease;
}

.t11Faq.open {
  border-radius: 30px;
  padding: 40px 40px;
}

.t11Faq.open .t11FaqTitle:before {
  width: 100%;
}

.t11Faq.open .t11FaqContent {
  display: block;
  padding-top: 24px;
}