@charset "UTF-8";
@import url("https://fonts.googleapis.com/css?family=Noto+Sans+TC:400,700,900&display=swap");
@import url("https://fonts.googleapis.com/css?family=Open+Sans:400,800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Exo:wght@400;500;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Lato:wght@400;900&display=swap");
/*-------------------------------------------*\
	_common.scss

  Index
  - 1.title
  - 2.more
  - 3.img-slide
  - 4.anmiate
\*-------------------------------------------*/
.id-title {
  position: relative;
  z-index: 5;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0 0 3rem 2rem;
  font-weight: bolder;
  font-family: "Noto Sans TC", sans-serif;
  font-weight: 700;
}
.id-title-h2 {
  position: absolute;
  color: #023698;
  font-size: 1.25em;
}
.id-title-s {
  position: relative;
  display: inline-block;
  opacity: 0.6;
}
.id-title-s svg {
  position: absolute;
  display: inline;
  left: 0;
  top: -24px;
  width: 644px;
  height: 108px;
  max-height: 48px;
  max-width: 80%;
  width: initial;
}

@media (min-width: 576px) {
  .id-title {
    margin-bottom: 5rem;
  }
  .id-title-h2 {
    font-size: 1.85em;
  }
  .id-title-s svg {
    max-height: 70px;
    top: -35px;
  }
}
@media (min-width: 768px) {
  .id-title-s svg {
    max-height: 80px;
    top: -40px;
  }
}
@media (min-width: 1400px) {
  .id-title {
    margin-bottom: 6rem;
  }
  .id-title-s {
    font-size: 1em;
  }
  .id-title-s svg {
    max-height: 105px;
    top: -53px;
  }
}
.more-btn {
  display: flex;
  justify-content: center;
  font-family: "Exo", sans-serif;
  font-weight: bold;
}
.more-btn a {
  position: relative;
  z-index: 0;
  display: flex;
  justify-content: center;
  background: #023698;
  color: #fff;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.more-btn a:before, .more-btn a:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-clip-path: inset(0 100% 0 0);
          clip-path: inset(0 100% 0 0);
}
.more-btn a:before {
  background: #cbaa40;
  transition: all 0.75s ease-in-out;
}
.more-btn a:after {
  background: #001a4b;
  transition: all 0.5s ease-in-out;
}
.more-btn a span {
  position: relative;
  z-index: 1;
  min-width: 175px;
  padding: 1rem 0;
  text-align: center;
}
.more-btn a span:before {
  content: "";
  position: absolute;
  right: 1.5rem;
  top: calc(50% - 10px);
  width: 20px;
  height: 20px;
  background: url(../../images/more-icon.svg) no-repeat center center/cover #fff;
  border-radius: 50%;
  transition: all 0.5s ease-in-out;
}
@media (min-width: 374px) {
  .more-btn a span {
    min-width: 220px;
    padding: 1.25rem 0;
  }
  .more-btn a span:before {
    width: 26px;
    height: 26px;
    top: calc(50% - 13px);
  }
}
@media (min-width: 1200px) {
  .more-btn a span {
    min-width: 290px;
    padding: 1.5rem 0;
    font-size: 1rem;
  }
  .more-btn a span:before {
    width: 32px;
    height: 32px;
    top: calc(50% - 16px);
  }
}
@media (min-width: 1400px) {
  .more-btn a span {
    min-width: 340px;
  }
}
.more-btn a:hover span {
  color: #cbaa40;
}
.more-btn a:hover span:before {
  background-color: #cbaa40;
  transition: all 0.5s ease-in-out;
}
.more-btn a:hover:before {
  -webkit-clip-path: inset(0 0 0 0);
          clip-path: inset(0 0 0 0);
  transition: all 0.5s ease-in-out;
}
.more-btn a:hover:after {
  -webkit-clip-path: inset(0 0 0 0);
          clip-path: inset(0 0 0 0);
  transition: all 0.75s ease-in-out;
}

.color-reverse a {
  border: 1px solid #fff;
}
.color-reverse a:before {
  background: #cbaa40;
}
.color-reverse a:after {
  background: #fff;
}
.color-reverse a span {
  color: #fff;
}
.color-reverse a span:before {
  background: #fff;
}
.color-reverse a span:after {
  border-top: 2px solid #023698;
  border-right: 2px solid #023698;
}
.color-reverse a:hover span {
  color: #023698;
}

.slide-img {
  position: relative;
}
.slide-img:before, .slide-img:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 100%;
}
.slide-img:before {
  background: #cbaa40;
  z-index: 1;
}
.slide-img:after {
  background: #023698;
  z-index: 2;
}
.slide-img.active:before {
  animation: img-slide 0.6s cubic-bezier(0.91, 0.31, 0.24, 0.89) forwards 0.6s;
  animation-fill-mode: both;
}
.slide-img.active:after {
  animation: img-slide 0.6s cubic-bezier(0.91, 0.31, 0.24, 0.89) forwards;
  animation-fill-mode: both;
}

@keyframes img-slide {
  0% {
    width: 100%;
  }
  100% {
    width: 0;
  }
}
@keyframes clipInLeft {
  0% {
    opacity: 0;
    -webkit-clip-path: inset(0 100% 0 0);
            clip-path: inset(0 100% 0 0);
  }
  100% {
    opacity: 1;
    -webkit-clip-path: inset(0 0% 0 0);
            clip-path: inset(0 0% 0 0);
  }
}
.clipInLeft {
  animation-name: clipInLeft;
}

@keyframes clipInTop {
  0% {
    opacity: 0;
    -webkit-clip-path: inset(0 0 100% 0);
            clip-path: inset(0 0 100% 0);
  }
  100% {
    opacity: 1;
    -webkit-clip-path: inset(0 0 0% 0);
            clip-path: inset(0 0 0% 0);
  }
}
.before-clip:before, .before-clip:after {
  animation: clipInTop 1s ease-in-out 0.5s forwards;
}

/*
animation-name: 動畫名稱;
animation-duration: 動畫作用時間;
animation-timing-function: ease-in-out 動畫補間時運用的計算公式;
animation-delay: 動畫需間隔多久後才開始;
animation-iteration-count: 動畫作用次數;
animation-direction: 動畫作用的方向;
*/
.gloelite {
  opacity: 0;
}
.gloelite path {
  fill: none;
  stroke: #fff;
  stroke-width: 0.5px;
  stroke-dasharray: 0;
}
.gloelite.active {
  opacity: 1 !important;
}
.gloelite.active path {
  stroke: #023698;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  animation: gloelite 5s linear 1s forwards;
}

@keyframes gloelite {
  0% {
    stroke-dashoffset: 1000;
  }
  100% {
    stroke-dashoffset: 0;
  }
}
.delay1s {
  animation-delay: 0.1s;
}

.duration1s {
  animation-duration: 0.1s;
}

.timing1s {
  animation-timing-function: 0.1s;
}

.delay2s {
  animation-delay: 0.2s;
}

.duration2s {
  animation-duration: 0.2s;
}

.timing2s {
  animation-timing-function: 0.2s;
}

.delay3s {
  animation-delay: 0.3s;
}

.duration3s {
  animation-duration: 0.3s;
}

.timing3s {
  animation-timing-function: 0.3s;
}

.delay4s {
  animation-delay: 0.4s;
}

.duration4s {
  animation-duration: 0.4s;
}

.timing4s {
  animation-timing-function: 0.4s;
}

.delay5s {
  animation-delay: 0.5s;
}

.duration5s {
  animation-duration: 0.5s;
}

.timing5s {
  animation-timing-function: 0.5s;
}

.delay6s {
  animation-delay: 0.6s;
}

.duration6s {
  animation-duration: 0.6s;
}

.timing6s {
  animation-timing-function: 0.6s;
}

.delay7s {
  animation-delay: 0.7s;
}

.duration7s {
  animation-duration: 0.7s;
}

.timing7s {
  animation-timing-function: 0.7s;
}

.delay8s {
  animation-delay: 0.8s;
}

.duration8s {
  animation-duration: 0.8s;
}

.timing8s {
  animation-timing-function: 0.8s;
}

.delay9s {
  animation-delay: 0.9s;
}

.duration9s {
  animation-duration: 0.9s;
}

.timing9s {
  animation-timing-function: 0.9s;
}

.delay10s {
  animation-delay: 1s;
}

.duration10s {
  animation-duration: 1s;
}

.timing10s {
  animation-timing-function: 1s;
}

.delay11s {
  animation-delay: 1.1s;
}

.duration11s {
  animation-duration: 1.1s;
}

.timing11s {
  animation-timing-function: 1.1s;
}

.delay12s {
  animation-delay: 1.2s;
}

.duration12s {
  animation-duration: 1.2s;
}

.timing12s {
  animation-timing-function: 1.2s;
}

.delay13s {
  animation-delay: 1.3s;
}

.duration13s {
  animation-duration: 1.3s;
}

.timing13s {
  animation-timing-function: 1.3s;
}

.delay14s {
  animation-delay: 1.4s;
}

.duration14s {
  animation-duration: 1.4s;
}

.timing14s {
  animation-timing-function: 1.4s;
}

.delay15s {
  animation-delay: 1.5s;
}

.duration15s {
  animation-duration: 1.5s;
}

.timing15s {
  animation-timing-function: 1.5s;
}

.delay16s {
  animation-delay: 1.6s;
}

.duration16s {
  animation-duration: 1.6s;
}

.timing16s {
  animation-timing-function: 1.6s;
}

.delay17s {
  animation-delay: 1.7s;
}

.duration17s {
  animation-duration: 1.7s;
}

.timing17s {
  animation-timing-function: 1.7s;
}

.delay18s {
  animation-delay: 1.8s;
}

.duration18s {
  animation-duration: 1.8s;
}

.timing18s {
  animation-timing-function: 1.8s;
}

.delay19s {
  animation-delay: 1.9s;
}

.duration19s {
  animation-duration: 1.9s;
}

.timing19s {
  animation-timing-function: 1.9s;
}

.delay20s {
  animation-delay: 2s;
}

.duration20s {
  animation-duration: 2s;
}

.timing20s {
  animation-timing-function: 2s;
}

.delay21s {
  animation-delay: 2.1s;
}

.duration21s {
  animation-duration: 2.1s;
}

.timing21s {
  animation-timing-function: 2.1s;
}

.delay22s {
  animation-delay: 2.2s;
}

.duration22s {
  animation-duration: 2.2s;
}

.timing22s {
  animation-timing-function: 2.2s;
}

.delay23s {
  animation-delay: 2.3s;
}

.duration23s {
  animation-duration: 2.3s;
}

.timing23s {
  animation-timing-function: 2.3s;
}

.delay24s {
  animation-delay: 2.4s;
}

.duration24s {
  animation-duration: 2.4s;
}

.timing24s {
  animation-timing-function: 2.4s;
}

.delay25s {
  animation-delay: 2.5s;
}

.duration25s {
  animation-duration: 2.5s;
}

.timing25s {
  animation-timing-function: 2.5s;
}

.delay26s {
  animation-delay: 2.6s;
}

.duration26s {
  animation-duration: 2.6s;
}

.timing26s {
  animation-timing-function: 2.6s;
}

.delay27s {
  animation-delay: 2.7s;
}

.duration27s {
  animation-duration: 2.7s;
}

.timing27s {
  animation-timing-function: 2.7s;
}

.delay28s {
  animation-delay: 2.8s;
}

.duration28s {
  animation-duration: 2.8s;
}

.timing28s {
  animation-timing-function: 2.8s;
}

.delay29s {
  animation-delay: 2.9s;
}

.duration29s {
  animation-duration: 2.9s;
}

.timing29s {
  animation-timing-function: 2.9s;
}

.delay30s {
  animation-delay: 3s;
}

.duration30s {
  animation-duration: 3s;
}

.timing30s {
  animation-timing-function: 3s;
}

.delay31s {
  animation-delay: 3.1s;
}

.duration31s {
  animation-duration: 3.1s;
}

.timing31s {
  animation-timing-function: 3.1s;
}

.delay32s {
  animation-delay: 3.2s;
}

.duration32s {
  animation-duration: 3.2s;
}

.timing32s {
  animation-timing-function: 3.2s;
}

.delay33s {
  animation-delay: 3.3s;
}

.duration33s {
  animation-duration: 3.3s;
}

.timing33s {
  animation-timing-function: 3.3s;
}

.delay34s {
  animation-delay: 3.4s;
}

.duration34s {
  animation-duration: 3.4s;
}

.timing34s {
  animation-timing-function: 3.4s;
}

.delay35s {
  animation-delay: 3.5s;
}

.duration35s {
  animation-duration: 3.5s;
}

.timing35s {
  animation-timing-function: 3.5s;
}

.delay36s {
  animation-delay: 3.6s;
}

.duration36s {
  animation-duration: 3.6s;
}

.timing36s {
  animation-timing-function: 3.6s;
}

.delay37s {
  animation-delay: 3.7s;
}

.duration37s {
  animation-duration: 3.7s;
}

.timing37s {
  animation-timing-function: 3.7s;
}

.delay38s {
  animation-delay: 3.8s;
}

.duration38s {
  animation-duration: 3.8s;
}

.timing38s {
  animation-timing-function: 3.8s;
}

.delay39s {
  animation-delay: 3.9s;
}

.duration39s {
  animation-duration: 3.9s;
}

.timing39s {
  animation-timing-function: 3.9s;
}

.delay40s {
  animation-delay: 4s;
}

.duration40s {
  animation-duration: 4s;
}

.timing40s {
  animation-timing-function: 4s;
}

/*-------------------------------------------*\
	_banner
\*-------------------------------------------*/
.banner-wrap {
  position: relative;
  z-index: -1;
  min-height: 500px;
  overflow: hidden;
}
.banner-person {
  position: absolute;
  bottom: 1rem;
  left: calc(50% - 185px);
  width: 205px;
  animation: clipInTop 1.5s ease-in-out 1.5s forwards;
}
@media (min-width: 992px) {
  .banner-person {
    left: 31%;
    width: 21.2%;
  }
}
.banner-slogan {
  animation: clipInRight 1.5s ease-in-out 2s forwards;
  opacity: 0;
  transform: translateX(25%);
  -webkit-clip-path: inset(0 100% 0 0);
          clip-path: inset(0 100% 0 0);
  position: absolute;
  top: 11rem;
  padding: 0 2.5rem;
}
@media (min-width: 576px) {
  .banner-slogan {
    max-width: 500px;
    left: calc(50% - 250px);
  }
}
@media (min-width: 992px) {
  .banner-slogan {
    left: 50%;
    top: unset;
    bottom: 49%;
    max-width: 50%;
    padding: 0 8rem 0 3rem;
  }
}
.banner-data {
  animation: clipInRight 2s ease-in-out 1s forwards;
  position: absolute;
  top: 50%;
  width: 100%;
  padding: 1.5rem 1.5rem 1.5rem 55%;
  background: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, #cbaa40 50%);
  color: #fff;
  font-size: 0.75rem;
  line-height: 1.5;
}
@media (min-width: 576px) {
  .banner-data {
    font-size: 0.95rem;
  }
}
@media (min-width: 768px) {
  .banner-data {
    font-size: 1rem;
  }
}
@media (min-width: 992px) {
  .banner-data {
    padding: 2rem 10% 2rem 55%;
    font-size: 1.1rem;
    background: linear-gradient(to right, rgba(0, 0, 0, 0) 10%, #cbaa40 60%);
  }
}
@media (min-width: 1200px) {
  .banner-data {
    padding: 3rem 15% 3rem 54%;
    font-size: 1.2rem;
  }
}
@media (min-width: 1600px) {
  .banner-data {
    padding: 3rem 15% 3rem 53%;
    font-size: 1.25rem;
  }
}
.banner-bg {
  min-width: 1000px;
  margin-top: 70px;
  margin-left: calc(50% - 500px);
}
@media (min-width: 992px) {
  .banner-bg {
    margin: 0;
  }
  .banner-bg img {
    width: 100%;
  }
}
@media (min-width: 1400px) {
  .banner-bg {
    width: 102%;
    margin-top: -20px;
    margin-left: -1%;
  }
}
@media (min-width: 1600px) {
  .banner-bg {
    margin-top: -100px;
  }
}

@keyframes clipInTop {
  0% {
    opacity: 0;
    transform: translateY(-15%);
    -webkit-clip-path: inset(0 0 100% 0);
            clip-path: inset(0 0 100% 0);
  }
  99% {
    opacity: 1;
    transform: translateY(0%);
    -webkit-clip-path: inset(0 0 0% 0);
            clip-path: inset(0 0 0% 0);
  }
  100% {
    opacity: 1;
    transform: translateY(0%);
    -webkit-clip-path: none;
            clip-path: none;
  }
}
@keyframes clipInRight {
  0% {
    opacity: 0;
    transform: translateX(25%);
    -webkit-clip-path: inset(0 100% 0 0);
            clip-path: inset(0 100% 0 0);
  }
  99% {
    opacity: 1;
    transform: translateX(0%);
    -webkit-clip-path: inset(0 0 0% 0);
            clip-path: inset(0 0 0% 0);
  }
  100% {
    opacity: 1;
    transform: translateX(0%);
    -webkit-clip-path: none;
            clip-path: none;
  }
}
/*-------------------------------------------*\
	_about.scss
\*-------------------------------------------*/
.at-wrap {
  position: relative;
  padding: 5rem 0;
}
@media (min-width: 576px) {
  .at-wrap {
    padding: 7rem 0 6rem;
  }
}
@media (min-width: 1200px) {
  .at-wrap {
    max-width: 1180px;
    margin: 0 auto;
    padding: 6rem 0 7rem;
  }
}
@media (min-width: 1400px) {
  .at-wrap {
    max-width: 1340px;
    padding: 10rem 0 14rem;
  }
}
@media (min-width: 1600px) {
  .at-wrap {
    max-width: 1500px;
  }
}
.at-content {
  display: block;
}
@media (min-width: 1200px) {
  .at-content {
    display: flex;
    align-items: flex-start;
  }
}
.at-right {
  flex: 53%;
}
.at-img {
  position: relative;
  margin: 0 2rem;
  box-shadow: -150px 60px 0 #4070cb;
}
.at-img figure:before {
  padding-bottom: 80.3%;
}
@media (min-width: 768px) {
  .at-img figure:before {
    padding-bottom: 70%;
  }
}
@media (min-width: 1200px) {
  .at-img {
    flex: 47%;
    box-shadow: -200px 100px 0 #4070cb;
  }
}
@media (min-width: 1400px) {
  .at-img {
    box-shadow: -250px 120px 0 #4070cb;
  }
}
.at-text {
  margin-top: 60px;
  padding: 2rem;
  line-height: 1.5;
  text-align: justify;
  font-weight: bold;
}
@media (min-width: 768px) {
  .at-text {
    margin-top: 80px;
  }
}
@media (min-width: 1200px) {
  .at-text {
    margin-top: 0;
    padding: 0 2rem;
  }
}
.at-link {
  margin-bottom: 2rem;
}
.at-link ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin: 0 auto;
  padding: 0 2rem;
  max-width: 375px;
}
.at-link ul li {
  position: relative;
  width: 50%;
}
.at-link ul li:nth-child(1), .at-link ul li:nth-child(2) {
  border-bottom: 1px solid #e5e5e5;
}
.at-link ul li:nth-child(1):after, .at-link ul li:nth-child(3):after {
  content: "";
  position: absolute;
  display: inline-block;
  height: 90%;
  border-right: 1px solid #e5e5e5;
}
.at-link ul li:nth-child(3):after {
  bottom: 0;
}
@media (min-width: 576px) {
  .at-link ul {
    flex-wrap: nowrap;
    max-width: 100%;
    padding: 0;
  }
  .at-link ul li {
    width: initial;
  }
  .at-link ul li:nth-child(1), .at-link ul li:nth-child(2) {
    border-bottom: 0;
  }
  .at-link ul li:not(:last-child):after {
    content: "";
    position: absolute;
    display: inline-block;
    height: 80% !important;
    bottom: 10%;
    border-right: 1px solid #e5e5e5;
  }
}

/*-------------------------------------------*\
	_products.scss
\*-------------------------------------------*/
.ps-wrap {
  position: relative;
  z-index: 1;
  padding: 6rem 0 5rem;
  margin-bottom: 2rem;
  background: #023698;
}
@media (min-width: 576px) {
  .ps-wrap {
    padding: 7rem 0 5rem;
  }
}
@media (min-width: 1200px) {
  .ps-wrap {
    padding: 8rem 0 5.5rem;
  }
}
@media (min-width: 1400px) {
  .ps-wrap {
    padding: 10rem 0 7rem;
  }
}
.ps-wrap .id-title {
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  margin: 0 3rem 2rem;
  border: 1px solid rgba(2, 54, 152, 0);
}
@media (min-width: 400px) {
  .ps-wrap .id-title {
    margin: 0 3rem 2rem;
  }
}
@media (min-width: 576px) {
  .ps-wrap .id-title {
    margin: 0 6rem 5rem;
  }
}
@media (min-width: 768px) {
  .ps-wrap .id-title {
    margin: 0 7.5rem 6rem;
  }
}
@media (min-width: 992px) {
  .ps-wrap .id-title {
    margin: 0 9.5rem 6.5rem;
  }
}
@media (min-width: 1200px) {
  .ps-wrap .id-title {
    margin: 0 10.5rem 6.5rem;
  }
}
@media (min-width: 1800px) {
  .ps-wrap .id-title {
    max-width: 1420px;
    margin: 0 auto 6.5rem !important;
  }
}
.ps-wrap .id-title-h2 {
  color: #fff;
}
.ps-wrap .id-title-s {
  display: inline-flex;
  flex-direction: row-reverse;
  width: 100%;
}
.ps-wrap .id-title-s svg {
  max-width: 331px;
  width: 100%;
  left: unset;
  right: 0;
}
@media (min-width: 576px) {
  .ps-wrap .id-title-s svg {
    max-width: 407px;
  }
}
@media (min-width: 768px) {
  .ps-wrap .id-title-s svg {
    max-width: 552px;
  }
}
@media (min-width: 1400px) {
  .ps-wrap .id-title-s svg {
    max-width: 725px;
  }
}
.ps-wrap .gloelite path {
  stroke: #023698 !important;
}
.ps-wrap .gloelite.active path {
  stroke: #fff !important;
}
.ps-bottom {
  margin: 1rem 3rem 0rem;
}
.ps-bottom .more-btn a {
  background: #fff;
  color: #023698;
}
.ps-bottom .more-btn a span:before {
  background: url(../../images/more-icon-hover.svg) no-repeat center center/cover #023698;
}
.ps-bottom .more-btn a:hover {
  background: #023698;
}
.ps-bottom .more-btn a:hover span:before {
  background: url(../../images/more-icon.svg) no-repeat center center/cover #cbaa40;
}
@media (min-width: 400px) {
  .ps-bottom {
    margin: 1rem 3rem 0rem;
  }
}
@media (min-width: 576px) {
  .ps-bottom {
    margin: 1rem 6.5rem 0rem;
  }
}
@media (min-width: 768px) {
  .ps-bottom {
    margin: 1rem 7.5rem 0rem;
  }
}
@media (min-width: 992px) {
  .ps-bottom {
    margin: 1rem 9.5rem 0rem;
  }
}
@media (min-width: 1200px) {
  .ps-bottom {
    margin: 2rem 10.5rem 1rem;
  }
}
@media (min-width: 1800px) {
  .ps-bottom {
    max-width: 1420px;
    margin: 2rem auto 1rem !important;
  }
}
.ps-text {
  margin-bottom: 3rem;
  color: #fff;
  font-family: "Noto Sans TC", sans-serif;
  line-height: 1.5;
  font-size: 0.9rem;
}
@media (min-width: 576px) {
  .ps-text {
    margin-bottom: 4rem;
  }
}
.ps-owl {
  position: relative;
  z-index: 2;
  max-width: 1440px;
  margin: 0 auto;
}
.ps-owl-wrap {
  position: relative;
  margin-top: 3.5rem;
  padding: 0 4rem;
}
@media (min-width: 400px) {
  .ps-owl-wrap {
    padding: 0 5rem;
  }
}
@media (min-width: 576px) {
  .ps-owl-wrap {
    padding: 0 6rem;
  }
}
@media (min-width: 768px) {
  .ps-owl-wrap {
    padding: 0 7rem;
  }
}
@media (min-width: 992px) {
  .ps-owl-wrap {
    padding: 0 9rem;
  }
}
@media (min-width: 1200px) {
  .ps-owl-wrap {
    padding: 0 10rem;
  }
}
.ps-owl-wrap:before {
  content: "";
  display: block;
  position: absolute;
  z-index: 1;
  left: 0;
  top: calc(50% - 0px);
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.375);
}
.ps-owl .item {
  padding: 0.5rem;
}
.ps-owl .item a {
  display: inline-block;
  width: 100%;
}
.ps-owl .item a figure:before {
  padding-top: 83%;
}
.ps-owl .item a:hover img {
  transform: scale(1.2);
}
.ps-owl .owl-nav [class*=owl-] {
  background: url(../../images/owl-prev.svg) no-repeat center center #023698 !important;
  background-size: contain !important;
  border: 1px solid #fff !important;
}
@media (min-width: 1200px) {
  .ps-owl .owl-nav [class*=owl-] {
    border: 2px solid #fff !important;
  }
}
.ps-owl .owl-nav [class*=owl-]:hover {
  background-color: #4070cb !important;
  background-size: contain !important;
}

.ps-lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 26, 75, 0.85);
  z-index: -1;
  opacity: 0;
  transition: 0.5s;
}
.ps-lightbox figure {
  position: relative;
  margin: 2rem;
}
.ps-lightbox figure:before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 48px;
  height: 48px;
  background: url(../../images/lightbox-closebtn.svg) no-repeat center center;
  background-size: cover;
}
@media (min-width: 768px) {
  .ps-lightbox figure {
    margin: 2rem 5rem;
  }
  .ps-lightbox figure:before {
    right: -70px;
    top: -70px;
    width: 70px;
    height: 70px;
  }
}
.ps-lightbox:target {
  z-index: 14;
  opacity: 1;
  transition: 0.5s;
}

/*-------------------------------------------*\
	_contact.scss
\*-------------------------------------------*/
.ct-wrap {
  padding: 3rem 0 5rem;
}
@media (min-width: 576px) {
  .ct-wrap {
    padding: 5rem 0 5rem;
  }
}
@media (min-width: 1400px) {
  .ct-wrap {
    padding: 7rem 0 6rem;
  }
}
@media (min-width: 1200px) {
  .ct-wrap .id-title {
    margin: 0 calc((100% - 1180px + 4rem)/2) 5rem;
  }
}
@media (min-width: 1400px) {
  .ct-wrap .id-title {
    margin: 0 calc((100% - 1340px + 4rem)/2) 6rem;
  }
}
@media (min-width: 1600px) {
  .ct-wrap .id-title {
    margin: 0 calc((100% - 1500px + 4rem)/2) 6rem;
  }
}
.ct-subtitle {
  padding: 0 2rem 2rem;
  font-family: "Noto Sans TC", sans-serif;
  line-height: 1.5;
}
@media (min-width: 576px) {
  .ct-subtitle {
    padding: 0 2rem 3rem;
  }
}
@media (min-width: 1200px) {
  .ct-subtitle {
    padding: 0 calc((100% - 1180px + 4rem)/2) 3rem;
  }
}
@media (min-width: 1400px) {
  .ct-subtitle {
    padding: 0 calc((100% - 1340px + 4rem)/2) 3rem;
  }
}
@media (min-width: 1600px) {
  .ct-subtitle {
    padding: 0 calc((100% - 1500px + 4rem)/2) 3rem;
  }
}
.ct-content {
  position: relative;
  padding: 0 1.75rem;
  margin: 0 auto 2rem;
  border-top: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
}
.ct-content:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 150px;
  width: 100%;
  border-top: 1px solid #e5e5e5;
}
@media (min-width: 992px) {
  .ct-content:before {
    display: none;
  }
}
.ct-content .ct-form:nth-child(2) textarea {
  height: 150px;
}
@media (min-width: 576px) {
  .ct-content {
    margin: 0 auto 3rem;
  }
}
@media (min-width: 992px) {
  .ct-content {
    padding: 0 2.25rem;
    display: flex;
  }
  .ct-content .ct-form:nth-child(1) {
    flex: 1;
  }
  .ct-content .ct-form:nth-child(2) {
    flex: 1;
  }
  .ct-content .ct-form:nth-child(2) textarea {
    max-height: inherit !important;
    height: calc(54px * 4);
  }
}
@media (min-width: 1200px) {
  .ct-content {
    padding: 0 calc((100% - 1180px + 4rem)/2);
  }
  .ct-content .ct-form:nth-child(2) textarea {
    height: calc(70px * 4);
  }
}
@media (min-width: 1400px) {
  .ct-content {
    padding: 0 calc((100% - 1340px + 4rem)/2);
  }
}
@media (min-width: 1600px) {
  .ct-content {
    padding: 0 calc((100% - 1500px + 4rem)/2);
  }
}
.ct-submit {
  display: flex;
  flex-direction: row-reverse;
  padding: 6px 2rem;
  margin: 0 auto;
}
@media (min-width: 1200px) {
  .ct-submit {
    padding: 6px calc((100% - 1180px + 4rem)/2);
  }
}
@media (min-width: 1400px) {
  .ct-submit {
    padding: 6px calc((100% - 1340px + 4rem)/2);
  }
}
@media (min-width: 1600px) {
  .ct-submit {
    padding: 6px calc((100% - 1500px + 4rem)/2);
  }
}
.ct-submit input, .ct-submit a {
  min-width: 175px;
  padding: 0.75rem;
  border: 0;
  -webkit-appearance: none;
  border-radius: 0;
  box-sizing: border-box;
  background: url(../../images/submit-icon.svg) no-repeat right 2rem center #023698;
  color: #fff;
  font-family: "Exo", sans-serif;
  font-weight: bold;
  letter-spacing: 1px;
  line-height: 1.4;
}
@media (min-width: 374px) {
  .ct-submit input, .ct-submit a {
    min-width: 220px;
    padding: 1rem;
  }
}
@media (min-width: 1200px) {
  .ct-submit input, .ct-submit a {
    padding: 1.35rem;
    min-width: 290px;
  }
}
@media (min-width: 1400px) {
  .ct-submit input, .ct-submit a {
    min-width: 340px;
  }
}
.ct-submit input:hover, .ct-submit a:hover {
  background-color: #cbaa40;
}

.ct-form {
  display: block;
}
.ct-group {
  position: relative;
  display: inline-flex;
  width: 100%;
}
.ct-group label {
  position: absolute;
  line-height: 0;
  width: 0;
  height: 0;
  color: transparent;
}
.ct-group label.required:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 10px;
  height: 10px;
  background: #a57e01;
}
@media (min-width: 576px) {
  .ct-half {
    width: calc(50% - 8px);
  }
  .ct-half + .ct-half {
    margin-left: 6px;
  }
  .ct-half + .ct-half + .ct-half {
    margin-left: 2px;
  }
  .ct-half + .ct-half + .ct-half + .ct-half {
    margin-left: 6px;
  }
  .ct-half + .ct-half + .ct-half + .ct-half + .ct-half {
    margin-left: 2px;
  }
  .ct-half + .ct-half + .ct-half + .ct-half + .ct-half + .ct-half {
    margin-left: 6px;
  }
}
.ct-input {
  width: 100%;
  max-width: 100%;
  padding: 0.95rem;
  border: 0;
  outline: 1px solid #e5e5e5;
  -webkit-appearance: none;
  border-radius: 0;
  box-sizing: border-box;
  font-family: "Noto Sans TC", sans-serif;
  transition: all 0.3s ease-in-out;
}
.ct-input::placeholder {
  color: #979191;
  transition: all 0.3s ease-in-out;
}
.ct-input:focus {
  color: #023698;
  background: #fcf8ee;
  transition: all 0.3s ease-in-out;
}
.ct-input:focus::placeholder {
  color: #023698;
  transition: all 0.3s ease-in-out;
}
@media (min-width: 992px) {
  .ct-input {
    max-height: 54px;
  }
}
@media (min-width: 1200px) {
  .ct-input {
    padding: 0.95rem 2rem;
    height: 70px;
    max-height: 70px;
  }
}
.ct-input[readonly] {
  background: #f4f4f4;
}
.ct-input[readonly]:focus {
  outline: 2px solid #e5e5e5;
}
.ct-select {
  width: 100%;
  padding: 0.95rem 2.5rem 0.95rem 0.95rem;
  border: 0;
  outline: 2px solid #e5e5e5;
  -webkit-appearance: none;
  border-radius: 0;
  box-sizing: border-box;
  background: url(../../images/select-arrow-triangle.svg) no-repeat center right 1.25rem #fff;
  color: #979191;
  transition: all 0.3s ease-in-out;
}
@media (min-width: 1200px) {
  .ct-select {
    font-size: 1.2rem;
  }
}
.ct-select:focus {
  outline: 2px solid #023698;
  transition: all 0.3s ease-in-out;
}