@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+TC:wght@200..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Cormorant:ital,wght@0,300..700;1,300..700&family=Noto+Serif+TC:wght@200..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap");
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #DEDBD4;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  opacity: 1;
  visibility: visible;
  transition: opacity 1.5s ease-in-out, visibility 1.5s ease-in-out;
}
.preloader.hide {
  opacity: 0;
  visibility: hidden;
}
.preloader .loader {
  width: 48px;
  height: 48px;
  border: 3px solid #7A9283;
  border-bottom-color: transparent;
  border-radius: 50%;
  display: inline-block;
  box-sizing: border-box;
  animation: rotation 2s linear infinite;
}

@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.font-deco {
  font-family: "Cormorant", "Noto Serif TC", serif;
  color: white;
  font-size: 13px;
  text-transform: uppercase;
}

.aboutArea {
  padding-top: 100px;
  display: flex;
  flex-direction: column;
  width: 100%;
  overflow: hidden;
}
.aboutArea section.section1 {
  background-color: #d9d9d9;
  border-radius: 0 0 250px 0;
  position: relative;
}
@media (max-width: 767px) {
  .aboutArea section.section1 {
    border-radius: 0 0 150px 0;
  }
}
.aboutArea section.section1 .wrap {
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  padding: 125px 40px 280px 40px;
}
@media (max-width: 768px) {
  .aboutArea section.section1 .wrap {
    padding: 80px 40px 110px 40px;
  }
}
.aboutArea section.section1 .topDeco {
  position: absolute;
  top: 150px;
  right: 100px;
  z-index: 2;
}
@media (max-width: 768px) {
  .aboutArea section.section1 .topDeco {
    transform: scale(0.8);
    right: -10px;
    top: 15vw;
    transform-origin: right top;
  }
}
@media (max-width: 575px) {
  .aboutArea section.section1 .topDeco {
    transform: scale(0.5);
    right: -10px;
    top: 30vw;
    transform-origin: right top;
  }
}
.aboutArea section.section1 .topDeco #scene {
  overflow: visible;
}
.aboutArea section.section1 .bottomDeco {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 1;
}
@media (max-width: 768px) {
  .aboutArea section.section1 .bottomDeco {
    transform: scale(0.5);
    right: -10px;
    bottom: 0;
    transform-origin: right bottom;
  }
}
.aboutArea section.section1 .titleBox {
  width: 100%;
  display: flex;
  flex-direction: column;
  font-family: "Noto Serif TC", "Cormorant", serif;
  color: #2c4c47;
  gap: 20px;
  margin-bottom: 190px;
}
.aboutArea section.section1 .titleBox span {
  font-size: clamp(70px, 6vw, 100px);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
}
.aboutArea section.section1 .titleBox .inner {
  display: flex;
  align-items: center;
}
.aboutArea section.section1 .titleBox h1 {
  font-size: 40px;
  display: flex;
  flex-direction: column-reverse;
  font-weight: 700;
  flex-shrink: 0;
  margin-right: 5px;
}
.aboutArea section.section1 .titleBox .lineDot {
  display: flex;
  align-items: center;
  width: 105px;
  height: 1px;
  background-color: #2c4c47;
  position: relative;
}
.aboutArea section.section1 .titleBox .lineDot::after {
  content: "";
  display: block;
  position: absolute;
  right: -20px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #2c4c47;
}
@media (max-width: 768px) {
  .aboutArea section.section1 .titleBox {
    margin-top: 0;
    margin-bottom: 65px;
  }
  .aboutArea section.section1 .titleBox span {
    font-size: 17px;
    order: 2;
  }
  .aboutArea section.section1 .titleBox .inner {
    order: 1;
  }
  .aboutArea section.section1 .titleBox h1 {
    margin-right: 10px;
  }
  .aboutArea section.section1 .titleBox .lineDot {
    width: 40px;
  }
  .aboutArea section.section1 .titleBox .lineDot::after {
    right: -10px;
    width: 4px;
    height: 4px;
  }
}
.aboutArea section.section1 .contentBox {
  margin-top: 160px;
  position: relative;
}
@media (max-width: 768px) {
  .aboutArea section.section1 .contentBox {
    margin-top: 115px;
  }
}
.aboutArea section.section1 .contentBox .mySwiper {
  position: relative;
  padding-bottom: 60px;
}
@media (max-width: 768px) {
  .aboutArea section.section1 .contentBox .mySwiper {
    padding-bottom: 40px;
  }
}
.aboutArea section.section1 .contentBox .mySwiper .swiper-pagination {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 30px;
  z-index: 2;
  right: 0;
  padding-right: 20px;
}
@media (max-width: 768px) {
  .aboutArea section.section1 .contentBox .mySwiper .swiper-pagination {
    transform: scale(0.6);
    transform-origin: right center;
  }
}
.aboutArea section.section1 .contentBox .mySwiper .swiper-pagination .swiper-pagination-bullet {
  width: 80px;
  height: 1px;
  background-color: #2c4c47;
  opacity: 1;
  border-radius: 0;
  position: relative;
  margin: 0;
}
.aboutArea section.section1 .contentBox .mySwiper .swiper-pagination .swiper-pagination-bullet .progress {
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 100%;
  background-color: #2c4c47;
  transition: width 0.6s ease-in-out;
}
.aboutArea section.section1 .contentBox .mySwiper .swiper-pagination .swiper-pagination-bullet::after {
  content: "";
  position: absolute;
  right: -15px;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background-color: transparent;
  border-radius: 50%;
  border: 1px solid #2c4c47;
}
.aboutArea section.section1 .contentBox .mySwiper .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active .progress {
  width: 100%;
  height: 4px;
  border-radius: 10px;
  transform: translateY(-1px);
}
.aboutArea section.section1 .contentBox .mySwiper .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active::after {
  opacity: 1;
  background-color: #2c4c47;
}
.aboutArea section.section1 .contentBox .imgBox {
  width: 100%;
  height: 645px;
  border-radius: 0 170px 0 0;
  overflow: hidden;
  margin: 0 auto;
}
.aboutArea section.section1 .contentBox .imgBox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 768px) {
  .aboutArea section.section1 .contentBox .imgBox {
    height: 88vw;
    border-radius: 0 50px 0 0;
  }
}
.aboutArea section.section1 .contentBox .des {
  margin-top: 90px;
  max-width: 650px;
  text-align: justify;
  display: flex;
  flex-direction: column;
  gap: 32px;
  line-height: 30px;
}
@media (max-width: 768px) {
  .aboutArea section.section1 .contentBox .des {
    margin-top: 60px;
  }
}
.aboutArea section.section1 .contentBox .des .destop {
  display: block;
}
.aboutArea section.section1 .contentBox .des .mobile {
  display: none;
}
.aboutArea section.section1 .contentBox .des p {
  font-family: "Cormorant", "Noto Serif TC", serif;
}
.aboutArea section.section1 .contentBox .des p:nth-of-type(1) {
  font-weight: 600;
  font-size: 26px;
  color: #2c4c47;
}
.aboutArea section.section1 .contentBox .des p:nth-of-type(2) {
  font-size: 18px;
}
@media (max-width: 768px) {
  .aboutArea section.section1 .contentBox .des p {
    font-size: 16px;
    text-align: center;
  }
  .aboutArea section.section1 .contentBox .des .destop {
    display: none;
  }
  .aboutArea section.section1 .contentBox .des .mobile {
    display: block;
  }
}
.aboutArea section.section2 {
  padding-bottom: 360px;
  position: relative;
}
@media (max-width: 768px) {
  .aboutArea section.section2 {
    padding-bottom: 170px;
    margin-top: 0px;
  }
}
.aboutArea section.section2 .wrap {
  max-width: 1400px;
  padding: 0 40px;
  margin: 0 auto;
  width: 100%;
}
.aboutArea section.section2 .titleBox {
  position: absolute;
  top: 13.5vw;
  right: 0;
  max-width: 42vw;
  width: 100%;
  color: #2c4c47;
  font-family: "Noto Serif TC", "Cormorant", serif;
}
.aboutArea section.section2 .titleBox .line {
  width: 100%;
  height: 1px;
  background-color: #2c4c47;
}
.aboutArea section.section2 .titleBox .title {
  margin-top: 15px;
  font-size: 40px;
  letter-spacing: 1px;
  font-weight: 600;
}
.aboutArea section.section2 .titleBox span {
  font-size: 26px;
  margin-top: 15px;
  text-transform: uppercase;
  font-weight: 600;
}
@media (max-width: 992px) {
  .aboutArea section.section2 .titleBox {
    left: 0;
    top: 65px;
    width: 42vw;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
  }
  .aboutArea section.section2 .titleBox .title {
    font-size: 32px;
  }
  .aboutArea section.section2 .titleBox span {
    font-size: 22px;
  }
}
@media (max-width: 575px) {
  .aboutArea section.section2 .titleBox .title {
    font-size: 26px;
  }
  .aboutArea section.section2 .titleBox span {
    font-size: 18px;
  }
}
.aboutArea section.section2 .contentBox {
  padding-top: 25vw;
  position: relative;
}
@media (max-width: 768px) {
  .aboutArea section.section2 .contentBox {
    margin-top: 0px;
    padding-top: 165px;
  }
}
.aboutArea section.section2 .contentBox .imgBox {
  width: 100%;
  height: 645px;
  border-radius: 0 170px 0 0;
  overflow: hidden;
  margin: 0 auto;
}
.aboutArea section.section2 .contentBox .imgBox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.aboutArea section.section2 .contentBox .imgBox .imgDeco {
  position: absolute;
  z-index: 1;
  left: -110px;
  bottom: 16%;
}
@media (max-width: 768px) {
  .aboutArea section.section2 .contentBox .imgBox {
    height: 58vw;
    border-radius: 0 50px 0 0;
  }
  .aboutArea section.section2 .contentBox .imgBox .imgDeco {
    transform: scale(0.27);
    transform-origin: left bottom;
    left: -30px;
    bottom: 48vw;
  }
}
.aboutArea section.section2 .contentBox .des {
  margin-top: 48px;
  max-width: 775px;
  text-align: justify;
  display: flex;
  flex-direction: column;
  gap: 25px;
  line-height: 30px;
}
.aboutArea section.section2 .contentBox .des .destop {
  display: block;
}
.aboutArea section.section2 .contentBox .des .mobile {
  display: none;
}
.aboutArea section.section2 .contentBox .des p {
  font-family: "Cormorant", "Noto Serif TC", serif;
}
.aboutArea section.section2 .contentBox .des p:nth-of-type(1) {
  font-weight: 600;
  font-size: 26px;
  color: #2c4c47;
}
.aboutArea section.section2 .contentBox .des p:nth-of-type(1)::before {
  content: "( ";
}
.aboutArea section.section2 .contentBox .des p:nth-of-type(1)::after {
  content: " )";
}
.aboutArea section.section2 .contentBox .des p:nth-of-type(2) {
  font-size: 18px;
}
@media (max-width: 768px) {
  .aboutArea section.section2 .contentBox .des p {
    text-align: center;
  }
  .aboutArea section.section2 .contentBox .des .destop {
    display: none;
  }
  .aboutArea section.section2 .contentBox .des .mobile {
    display: block;
  }
}
.aboutArea section.section2 .contentBox .swiper-pagination {
  position: absolute;
  bottom: -50px;
  left: 0;
  display: flex;
  align-items: center;
  gap: 30px;
}
.aboutArea section.section2 .contentBox .swiper-pagination .swiper-pagination-bullet {
  width: 120px;
  height: 2px;
  background-color: rgba(44, 76, 71, 0.3);
  border-radius: 0;
  position: relative;
  margin: 0;
}
.aboutArea section.section2 .contentBox .swiper-pagination .swiper-pagination-bullet .progress {
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 100%;
  background-color: #2c4c47;
  transition: width 0.6s ease-in-out;
}
.aboutArea section.section2 .contentBox .swiper-pagination .swiper-pagination-bullet::after {
  content: "";
  position: absolute;
  right: -15px;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background-color: #2c4c47;
  border-radius: 50%;
  opacity: 0.3;
  transition: opacity 0.3s ease-in-out;
}
.aboutArea section.section2 .contentBox .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active .progress {
  width: 100%;
}
.aboutArea section.section2 .contentBox .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active::after {
  opacity: 1;
}
.aboutArea section.section2 .doctorCard {
  margin-top: 132px;
  padding: 0;
}
@media (max-width: 768px) {
  .aboutArea section.section2 .doctorCard {
    margin-top: 70px;
  }
}
@media (max-width: 575px) {
  .aboutArea section.section2 .doctorCard {
    width: calc(100% + 80px);
  }
}
.aboutArea section.section2 .doctorCard .cardBox {
  display: flex;
  gap: 30px;
}
.aboutArea section.section2 .doctorCard .swiper-wrapper {
  padding-bottom: 50px;
}
@media (max-width: 768px) {
  .aboutArea section.section2 .doctorCard .swiper-wrapper .swiper-slide,
  .aboutArea section.section2 .doctorCard .swiper-wrapper .swiper-slide-active {
    width: 44vw;
  }
}
.aboutArea section.section2 .doctorCard .swiper-pagination {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 20px;
  gap: 30px;
  z-index: 2;
}
@media (max-width: 768px) {
  .aboutArea section.section2 .doctorCard .swiper-pagination {
    transform: scale(0.6);
  }
}
.aboutArea section.section2 .doctorCard .swiper-pagination .swiper-pagination-bullet {
  width: 120px;
  height: 1px;
  background-color: #2c4c47;
  opacity: 1;
  border-radius: 0;
  position: relative;
  margin: 0;
}
.aboutArea section.section2 .doctorCard .swiper-pagination .swiper-pagination-bullet .progress {
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 100%;
  background-color: #2c4c47;
  transition: width 0.6s ease-in-out;
}
.aboutArea section.section2 .doctorCard .swiper-pagination .swiper-pagination-bullet::after {
  content: "";
  position: absolute;
  right: -15px;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background-color: transparent;
  border-radius: 50%;
  border: 1px solid #2c4c47;
}
.aboutArea section.section2 .doctorCard .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active .progress {
  width: 100%;
  height: 4px;
  border-radius: 10px;
  transform: translateY(-1px);
}
.aboutArea section.section2 .doctorCard .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active::after {
  opacity: 1;
  background-color: #2c4c47;
}
.aboutArea section.section2 .doctorCard .inner {
  width: 25%;
}
.aboutArea section.section2 .doctorCard .imgBox {
  width: 100%;
  height: 372px;
  margin-bottom: 30px;
  border-radius: 0 50px 0 0;
  overflow: hidden;
}
.aboutArea section.section2 .doctorCard .imgBox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 768px) {
  .aboutArea section.section2 .doctorCard .imgBox {
    height: 55vw;
  }
}
.aboutArea section.section2 .doctorCard .cardText {
  width: 100%;
  font-size: 22px;
  color: #2c4c47;
  font-family: "Noto Serif TC", "Cormorant", serif;
}
.aboutArea section.section2 .doctorCard .cardText .department::after {
  content: "";
  display: flex;
  width: 100%;
  height: 2px;
  background-color: #2c4c47;
  margin: 17px 0;
}
@media (max-width: 768px) {
  .aboutArea section.section2 .doctorCard .cardText .department::after {
    margin: 8px 0;
    height: 1px;
  }
}
@media (max-width: 768px) {
  .aboutArea section.section2 .doctorCard .cardText .department {
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  .aboutArea section.section2 .doctorCard .cardText .doctor {
    font-size: 16px;
  }
}
.aboutArea section.section3 {
  position: relative;
  background-color: #efedea;
  width: 100%;
}
.aboutArea section.section3 .wrap {
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
}
.aboutArea section.section3 .marquee {
  position: absolute;
  top: -50px;
  width: 100vw;
  max-width: 100%;
  height: 200px;
  overflow-x: hidden;
}
.aboutArea section.section3 .marquee .track {
  position: absolute;
  white-space: nowrap;
  will-change: transform;
  animation: marquee 32s linear infinite;
}
.aboutArea section.section3 .marquee .content {
  display: flex;
  font-family: "Jost", "Cormorant", serif;
  font-size: 120px;
  color: #2c4c47;
  letter-spacing: 28px;
}
@media (max-width: 768px) {
  .aboutArea section.section3 .marquee .content {
    font-size: 60px;
    letter-spacing: 8px;
  }
}
.aboutArea section.section3 .marquee .content img {
  height: 100%;
  width: 900px;
}
@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.aboutArea section.section3 .titleBox {
  position: absolute;
  top: 13.5vw;
  right: 0;
  max-width: 42vw;
  width: 100%;
  color: #2c4c47;
  font-family: "Noto Serif TC", "Cormorant", serif;
}
.aboutArea section.section3 .titleBox .line {
  width: 100%;
  height: 1px;
  background-color: #2c4c47;
}
.aboutArea section.section3 .titleBox .title {
  margin-top: 15px;
  font-size: 40px;
  letter-spacing: 1px;
  font-weight: 600;
}
.aboutArea section.section3 .titleBox span {
  font-size: 26px;
  margin-top: 15px;
  text-transform: uppercase;
  font-weight: 600;
}
@media (max-width: 992px) {
  .aboutArea section.section3 .titleBox {
    left: 0;
    top: 65px;
    width: 42vw;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
  }
  .aboutArea section.section3 .titleBox .title {
    font-size: 32px;
  }
  .aboutArea section.section3 .titleBox span {
    font-size: 22px;
  }
}
@media (max-width: 575px) {
  .aboutArea section.section3 .titleBox .title {
    font-size: 26px;
  }
  .aboutArea section.section3 .titleBox span {
    font-size: 18px;
  }
}
.aboutArea section.section3 .uniqueCard {
  padding: 25vw 40px 14.5vw 40px;
}
@media (max-width: 1440px) {
  .aboutArea section.section3 .uniqueCard {
    padding: 400px 20px 200px;
  }
}
@media (max-width: 992px) {
  .aboutArea section.section3 .uniqueCard {
    padding: 300px 20px 150px;
  }
}
@media (max-width: 768px) {
  .aboutArea section.section3 .uniqueCard {
    padding: 200px 20px 100px;
  }
}
@media (max-width: 576px) {
  .aboutArea section.section3 .uniqueCard {
    padding: 160px 20px 80px;
  }
}
.aboutArea section.section3 .uniqueCard .swiper {
  overflow: hidden;
  position: relative;
  max-width: 1240px;
  margin: 0 auto;
  width: 100%;
  padding-top: 20px;
}
.aboutArea section.section3 .uniqueCard .swiper .swiper-wrapper {
  transform-style: unset !important;
  display: flex;
  align-items: center;
}
.aboutArea section.section3 .uniqueCard .swiper .swiper-button-next,
.aboutArea section.section3 .uniqueCard .swiper .swiper-button-prev {
  position: absolute;
  top: 30%;
  width: 40px;
  height: 40px;
  margin-top: 0;
  z-index: 20;
}
@media (max-width: 575px) {
  .aboutArea section.section3 .uniqueCard .swiper .swiper-button-next,
  .aboutArea section.section3 .uniqueCard .swiper .swiper-button-prev {
    top: 26%;
    transform: scale(0.5);
  }
}
.aboutArea section.section3 .uniqueCard .swiper .swiper-button-prev {
  left: calc(50% - 280px);
}
@media (max-width: 768px) {
  .aboutArea section.section3 .uniqueCard .swiper .swiper-button-prev {
    left: 0;
  }
}
.aboutArea section.section3 .uniqueCard .swiper .swiper-button-next {
  right: calc(50% - 280px);
}
@media (max-width: 768px) {
  .aboutArea section.section3 .uniqueCard .swiper .swiper-button-next {
    right: 0;
  }
}
.aboutArea section.section3 .uniqueCard .swiper .swiper-slide {
  transition: opacity 0.3s ease;
  display: flex;
  justify-content: center;
}
.aboutArea section.section3 .uniqueCard .swiper .swiper-slide:not(.swiper-slide-active) {
  opacity: 0.5;
  transform: scale(0.7);
  margin-top: -95px;
}
.aboutArea section.section3 .uniqueCard .swiper .swiper-slide:not(.swiper-slide-active) .cardItem .imgBox {
  transform: scale(1.11);
}
.aboutArea section.section3 .uniqueCard .swiper .swiper-slide.swiper-slide-active {
  opacity: 1;
  transform: scale(1);
}
.aboutArea section.section3 .uniqueCard .swiper .swiper-slide.swiper-slide-active .cardItem .imgBox {
  transform: scale(1);
}
.aboutArea section.section3 .uniqueCard .swiper .swiper-slide .cardItem {
  position: relative;
}
.aboutArea section.section3 .uniqueCard .swiper .swiper-slide .cardItem::before, .aboutArea section.section3 .uniqueCard .swiper .swiper-slide .cardItem::after {
  content: "";
  position: absolute;
  background-color: #2c4c47;
  border-radius: 50%;
  z-index: 2;
}
.aboutArea section.section3 .uniqueCard .swiper .swiper-slide .cardItem .imgBox {
  position: relative;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  overflow: hidden;
  border: 2.25px solid #2c4c47;
  margin-bottom: 56px;
  transition: transform 0.5s ease;
}
.aboutArea section.section3 .uniqueCard .swiper .swiper-slide .cardItem .imgBox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.aboutArea section.section3 .uniqueCard .swiper .swiper-slide .cardItem .cardText,
.aboutArea section.section3 .uniqueCard .swiper .swiper-slide .cardItem .des {
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
@media (max-width: 576px) {
  .aboutArea section.section3 .uniqueCard .swiper .swiper-slide .cardItem {
    width: 250px;
  }
  .aboutArea section.section3 .uniqueCard .swiper .swiper-slide .cardItem .imgBox {
    width: 250px;
    height: 250px;
    margin-bottom: 25px;
  }
}
.aboutArea section.section3 .uniqueCard .swiper .swiper-slide.swiper-slide-active {
  opacity: 1;
}
.aboutArea section.section3 .uniqueCard .swiper .swiper-slide.swiper-slide-active .cardItem .cardText,
.aboutArea section.section3 .uniqueCard .swiper .swiper-slide.swiper-slide-active .cardItem .des {
  opacity: 1;
  visibility: visible;
}
.aboutArea section.section3 .uniqueCard .swiper .swiper-slide.swiper-slide-active .cardDeco {
  opacity: 1;
}
.aboutArea section.section3 .uniqueCard .swiper .cardDeco {
  position: absolute;
  bottom: 250px;
  left: -115px;
  opacity: 0;
  z-index: 2;
}
@media (max-width: 992px) {
  .aboutArea section.section3 .uniqueCard .swiper .cardDeco {
    bottom: 220px;
    left: -95px;
  }
}
@media (max-width: 575px) {
  .aboutArea section.section3 .uniqueCard .swiper .cardDeco {
    transform: scale(0.6);
  }
}
.aboutArea section.section3 .cardBox {
  display: flex;
  flex-wrap: wrap;
}
.aboutArea section.section3 .cardItem {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 460px;
}
.aboutArea section.section3 .cardItem .imgBox {
  width: 400px;
  height: 400px;
  border-radius: 50%;
  overflow: hidden;
  border: 2.25px solid #2c4c47;
  margin-bottom: 56px;
}
.aboutArea section.section3 .cardItem .imgBox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.aboutArea section.section3 .cardItem .cardText .inner {
  display: flex;
  gap: 10px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  letter-spacing: 1px;
  font-weight: 700;
  color: #2c4c47;
}
.aboutArea section.section3 .cardItem .cardText .inner .title {
  font-size: 40px;
  font-family: "Noto Serif TC", "Cormorant", serif;
}
@media (max-width: 992px) {
  .aboutArea section.section3 .cardItem .cardText .inner .title {
    font-size: 26px;
  }
}
@media (max-width: 768px) {
  .aboutArea section.section3 .cardItem .cardText .inner .title {
    font-size: 20px;
  }
}
.aboutArea section.section3 .cardItem .cardText .inner .eng {
  font-size: 34px;
  text-transform: uppercase;
  font-family: "Cormorant", "Noto Serif TC", serif;
}
@media (max-width: 992px) {
  .aboutArea section.section3 .cardItem .cardText .inner .eng {
    font-size: 26px;
  }
}
.aboutArea section.section3 .cardItem .cardText .inner::after {
  content: "";
  width: 100%;
  height: 2px;
  display: flex;
  background-color: #2c4c47;
}
.aboutArea section.section3 .cardItem .cardText .des {
  font-family: "Noto Serif TC", "Cormorant", serif;
  font-size: 18px;
  text-align: center;
  line-height: 30px;
}
@media (max-width: 992px) {
  .aboutArea section.section3 .cardItem .cardText .des {
    font-size: 16px;
  }
}
@media (max-width: 575px) {
  .aboutArea section.section3 .cardItem .cardText .des {
    font-size: 15px;
  }
}
.aboutArea section.section3 .swiper-button-next::after,
.aboutArea section.section3 .swiper-button-prev::after {
  display: none;
}
.aboutArea section.section3 .swiper-3d {
  perspective: 1280px;
}
.aboutArea section.section4 {
  position: relative;
  background-color: #efedea;
  width: 100%;
}
.aboutArea section.section4 .wrap {
  margin: 0 auto;
  width: 100%;
}
.aboutArea section.section4 .titleBox {
  position: absolute;
  z-index: 2;
  top: 8vw;
  right: 0;
  max-width: 42vw;
  width: 100%;
  color: #fff;
  font-family: "Noto Serif TC", "Cormorant", serif;
}
.aboutArea section.section4 .titleBox .line {
  width: 100%;
  height: 1px;
  background-color: #fff;
}
.aboutArea section.section4 .titleBox .title {
  margin-top: 15px;
  font-size: 40px;
  letter-spacing: 1px;
  font-weight: 600;
}
.aboutArea section.section4 .titleBox span {
  font-size: 26px;
  margin-top: 15px;
  text-transform: uppercase;
  font-weight: 600;
}
@media (max-width: 992px) {
  .aboutArea section.section4 .titleBox {
    left: 0;
    top: 65px;
    width: 42vw;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
  }
  .aboutArea section.section4 .titleBox .title {
    font-size: 32px;
  }
  .aboutArea section.section4 .titleBox span {
    font-size: 22px;
  }
}
@media (max-width: 575px) {
  .aboutArea section.section4 .titleBox .title {
    font-size: 26px;
  }
  .aboutArea section.section4 .titleBox span {
    font-size: 18px;
  }
}
.aboutArea section.section4 .swiper {
  width: 100%;
  height: 1240px;
  z-index: 1;
}
@media (max-width: 1024px) {
  .aboutArea section.section4 .swiper {
    height: 1080px;
  }
}
@media (max-width: 768px) {
  .aboutArea section.section4 .swiper {
    height: 700px;
  }
}
.aboutArea section.section4 .swiper .swiper-slide .imgBox {
  width: 100%;
  height: 1240px;
  position: relative;
}
.aboutArea section.section4 .swiper .swiper-slide .imgBox::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0) 50%);
}
.aboutArea section.section4 .swiper .swiper-slide .imgBox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.aboutArea section.section4 .swiper .swiper-slide .contentBox {
  position: absolute;
  z-index: 1;
  top: 430px;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 100%;
  max-width: 1400px;
}
@media (max-width: 768px) {
  .aboutArea section.section4 .swiper .swiper-slide .contentBox {
    top: auto;
    bottom: 70px;
  }
}
.aboutArea section.section4 .swiper-pagination {
  position: absolute;
  top: 8vw;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 100%;
  max-width: 1400px;
  padding: 0 40px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 50px;
  z-index: 2;
}
@media (max-width: 1024px) {
  .aboutArea section.section4 .swiper-pagination {
    top: 200px;
  }
}
@media (max-width: 768px) {
  .aboutArea section.section4 .swiper-pagination {
    top: 170px;
  }
}
.aboutArea section.section4 .swiper-pagination .swiper-pagination-bullet {
  width: auto;
  top: 15px;
  height: 50px;
  background: transparent;
  opacity: 0.6;
  margin: 0;
  position: relative;
  transition: opacity 0.3s ease;
}
@media (max-width: 1024px) {
  .aboutArea section.section4 .swiper-pagination .swiper-pagination-bullet {
    height: 28px;
  }
}
@media (max-width: 575px) {
  .aboutArea section.section4 .swiper-pagination .swiper-pagination-bullet {
    height: 15px;
  }
}
.aboutArea section.section4 .swiper-pagination .swiper-pagination-bullet:not(:last-child)::before {
  content: "";
  position: absolute;
  left: 0;
  top: 15px;
  width: 2px;
  height: 70px;
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 0;
}
@media (max-width: 1024px) {
  .aboutArea section.section4 .swiper-pagination .swiper-pagination-bullet:not(:last-child)::before {
    height: 50px;
  }
}
@media (max-width: 575px) {
  .aboutArea section.section4 .swiper-pagination .swiper-pagination-bullet:not(:last-child)::before {
    height: 30px;
  }
}
.aboutArea section.section4 .swiper-pagination .swiper-pagination-bullet:not(:last-child) .progress {
  position: absolute;
  left: 0;
  top: 15px;
  width: 2px;
  height: 0;
  background-color: #fff;
  transition: height 0.6s ease-in-out;
}
.aboutArea section.section4 .swiper-pagination .swiper-pagination-bullet::after {
  content: "";
  position: absolute;
  left: -6px;
  top: -6px;
  width: 12px;
  height: 12px;
  background-color: transparent;
  border: 1px solid #fff;
  border-radius: 50%;
  opacity: 0.3;
  transition: opacity 0.3s ease-in-out, background-color 0.3s ease-in-out;
}
@media (max-width: 768px) {
  .aboutArea section.section4 .swiper-pagination .swiper-pagination-bullet::after {
    width: 8px;
    height: 8px;
    left: -4px;
  }
}
.aboutArea section.section4 .swiper-pagination .swiper-pagination-bullet span {
  position: absolute;
  left: 30px;
  top: -12px;
  display: flex;
  align-items: center;
  font-size: 25px;
  letter-spacing: 1px;
  color: #fff;
  font-family: "Noto Serif TC", "Cormorant", serif;
  transform: rotate(0deg);
  white-space: nowrap;
}
@media (max-width: 768px) {
  .aboutArea section.section4 .swiper-pagination .swiper-pagination-bullet span {
    font-size: 16px;
  }
}
.aboutArea section.section4 .swiper-pagination .swiper-pagination-bullet span::before {
  content: "";
  width: 25px;
  height: 1px;
  background-color: #fff;
  margin-right: 15px;
  transition: width 0.3s ease;
}
@media (max-width: 768px) {
  .aboutArea section.section4 .swiper-pagination .swiper-pagination-bullet span::before {
    width: 18px;
  }
}
.aboutArea section.section4 .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  opacity: 1;
}
.aboutArea section.section4 .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active:not(:last-child) .progress {
  border-radius: 10px;
  transform: translateX(-0.5px);
  width: 3px;
  height: 70px;
}
@media (max-width: 1024px) {
  .aboutArea section.section4 .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active:not(:last-child) .progress {
    height: 50px;
  }
}
@media (max-width: 575px) {
  .aboutArea section.section4 .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active:not(:last-child) .progress {
    height: 30px;
  }
}
.aboutArea section.section4 .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active::after {
  opacity: 1;
  background-color: #fff;
}
.aboutArea section.section4 .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active span {
  font-size: 30px;
}
@media (max-width: 768px) {
  .aboutArea section.section4 .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active span {
    font-size: 18px;
  }
}
.aboutArea section.section4 .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active span::before {
  width: 65px;
}
@media (max-width: 768px) {
  .aboutArea section.section4 .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active span::before {
    width: 45px;
  }
}
.aboutArea section.section4 .picContent {
  padding: 0 40px;
}
.aboutArea section.section4 .picContent .inner {
  width: 424px;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  background-color: rgba(250, 250, 250, 0.8);
  padding: 30px 40px;
  border-radius: 0 0 55px 0;
  margin: 0;
  backdrop-filter: blur(8px);
}
@media (max-width: 768px) {
  .aboutArea section.section4 .picContent .inner {
    width: 100%;
  }
}
.aboutArea section.section4 .picContent .name {
  position: relative;
  padding-bottom: 10px;
}
.aboutArea section.section4 .picContent .name::after {
  content: "";
  width: 100%;
  height: 1px;
  display: block;
  background-color: #000;
  position: absolute;
  bottom: 0;
}
.aboutArea section.section4 .picContent .name span {
  font-weight: 600;
  font-family: "Noto Serif TC", "Cormorant", serif;
}
.aboutArea section.section4 .picContent .name span:nth-child(1) {
  font-size: 38px;
  margin-right: 5px;
}
.aboutArea section.section4 .picContent .name span:nth-child(2) {
  font-size: 26px;
}
@media (max-width: 768px) {
  .aboutArea section.section4 .picContent .name span:nth-child(1) {
    font-size: 26px;
  }
  .aboutArea section.section4 .picContent .name span:nth-child(2) {
    font-size: 18px;
  }
}
.aboutArea section.section4 .picContent .content {
  margin-top: 10px;
}
.aboutArea section.section4 .picContent .content p {
  font-family: "Noto Serif TC", "Cormorant", serif;
  color: #676767;
  font-size: 18px;
  line-height: 30px;
  letter-spacing: 1px;
}
@media (max-width: 768px) {
  .aboutArea section.section4 .picContent .content p {
    font-size: 16px;
    line-height: 28px;
  }
}

@media (max-width: 1024px) {
  .aboutArea {
    padding-top: 58px;
  }
}
footer.footerAreaPC {
  margin-top: -135px !important;
}