.noto-sans-regular {
  font-family: "Noto Sans TC", sans-serif;
  font-weight: 400;
}

.noto-sans-medium {
  font-family: "Noto Sans TC", sans-serif;
  font-weight: 500;
}

.noto-sans-semibold {
  font-family: "Noto Sans TC", sans-serif;
  font-weight: 600;
}

.noto-sans-bold {
  font-family: "Noto Sans TC", sans-serif;
  font-weight: 700;
}

.noto-sans-black {
  font-family: "Noto Sans TC", sans-serif;
  font-weight: 900;
}

.noto-serif-regular {
  font-family: "Noto Serif TC", sans-serif;
  font-weight: 300;
}

.noto-serif-medium {
  font-family: "Noto Serif TC", sans-serif;
  font-weight: 500;
}

.noto-serif-semibold {
  font-family: "Noto Serif TC", sans-serif;
  font-weight: 600;
}

.noto-serif-bold {
  font-family: "Noto Serif TC", sans-serif;
  font-weight: 700;
}

.lora-regular {
  font-family: "Lora", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.fade {
  -webkit-transition: all linear 0.2s;
  transition: all linear 0.2s;
}
.fade:hover {
  -webkit-transition: all linear 0.2s;
  transition: all linear 0.2s;
}

@-webkit-keyframes fadeOutAnimation {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes fadeOutAnimation {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@-webkit-keyframes pulse {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  50% {
    -webkit-transform: translate(0, 4px);
            transform: translate(0, 4px);
  }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}
@keyframes pulse {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  50% {
    -webkit-transform: translate(0, 4px);
            transform: translate(0, 4px);
  }
  100% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}
:root {
  --contact-row-info-w: 40%;
  --contact-row-form-w: 60%;
  --contact-row-info-px: 4vw;
  --contact-row-info-pt: 4vmin;
  --contact-row-form-px: 6vw;
  --contact-row-form-pt: 6vmin;
  --contact-row-pb: 3vmin;
  --contact-info-row-gap: 2vmin;
  --contact-row-info-block-title-mr: 2vw;
  --contact-form-mt: 6vmin;
  --contact-form-max-w: 688px;
  --contact-form-group-mb: 2.5vmin;
  --form-btn-py: 8px;
  --form-btn-px: 34px;
  --footer-font-size: 18px;
}

.page-contact .img-bg-box {
  background-image: url(../images/contact/banner.webp);
}

.page-contact .main {
  background: none;
  background-color: #17587A;
}

.contact {
  color: #fff;
}
.contact .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.contact .row .row__info,
.contact .row .row__form {
  padding-bottom: var(--contact-row-pb);
}
.contact .row .row__info {
  padding-top: var(--contact-row-info-pt);
  padding-right: var(--contact-row-info-px);
  padding-left: var(--contact-row-info-px);
  width: var(--contact-row-info-w);
}
.contact .row .row__info .block-title-lg {
  position: relative;
  margin-right: var(--contact-row-info-block-title-mr);
}
.contact .row .row__form {
  padding-top: var(--contact-row-form-pt);
  padding-left: var(--contact-row-form-px);
  width: var(--contact-row-form-w);
}

.row__info {
  background-image: url(../images/contact/bg-01.webp);
  background-size: cover;
}
.row__info .info-row {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: var(--contact-info-row-gap);
}
.row__info .address-row .label, .row__info .info-row .label {
  margin-bottom: 2px;
}
.row__info .row__info-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
}

.row__form {
  position: relative;
  overflow: hidden;
  background-image: url(../images/contact/bg-02.webp);
  background-size: cover;
}
.row__form .row__form-inner {
  max-width: var(--contact-form-max-w);
}
.row__form form {
  margin-top: var(--contact-form-mt);
}
.row__form .form-group {
  margin-bottom: var(--contact-form-group-mb);
}
.row__form .form-group label {
  display: block;
  margin-bottom: 6px;
  letter-spacing: 6px;
  color: #fff;
}
.row__form .form-group label span {
  display: inline-block;
}
.row__form .form-group label .en {
  font-size: 15px;
  letter-spacing: 2px;
}
.row__form .form-group label .required-mark {
  float: right;
  font-size: 12px;
  letter-spacing: 4px;
}
.row__form .form-control {
  color: #000;
}
.row__form .form-control option {
  color: #000;
  background-color: #fff;
}
.row__form input.form-control,
.row__form select.form-control,
.row__form textarea.form-control {
  border-width: 0;
  background-color: rgba(244, 244, 244, 0.6);
  border-radius: 2px;
}
.row__form textarea.form-control {
  width: 100% !important;
  height: 196px;
}
.row__form .statement {
  color: rgba(255, 255, 255, 0.5);
}
.row__form .link {
  border-top-right-radius: 25px;
}
.row__form .map {
  margin: 0 auto;
  width: 1500px;
  height: 600px;
  -webkit-box-shadow: 8px 8px 10px rgba(0, 0, 0, 0.4);
          box-shadow: 8px 8px 10px rgba(0, 0, 0, 0.4);
  border-top-left-radius: 0.8rem;
  border-top-right-radius: 0.8rem;
  overflow: hidden;
}
.row__form .map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
.row__form .icon {
  position: absolute;
  top: 1.5rem;
  left: 0;
}
.row__form .info-block {
  position: absolute;
  top: calc(1.5rem + 70px);
  left: 0;
}
.row__form .statement-block {
  float: right;
}
.row__form .btn-row .btn {
  padding: var(--form-btn-py) var(--form-btn-px);
}

.page-contact .footer .container,
.page-contact .footer .social-row {
  display: none;
}

.btn-row {
  text-align: right;
}

@media (max-width: 1400px) {
  :root {
    --contact-form-max-w: 94%;
    --contact-row-info-px: 2vw;
    --contact-row-form-px: 3vw;
  }
}
@media screen and (max-width: 767px), screen and (orientation: portrait) {
  :root {
    --contact-row-form-w: 100%;
    --contact-row-form-inner-w: 94%;
    --contact-row-form-px: 0;
    --footer-font-size: 14px;
  }
  .contact .row .row__info {
    display: none;
  }
  .row__form {
    background-image: url(../images/contact/bg-02-m.webp);
  }
  .row__form .row__form-inner {
    width: var(--contact-row-form-inner-w);
    margin: 0 auto;
  }
  .btn-row {
    text-align: center;
  }
  .btn-dark-gray {
    background-color: #10425B;
    color: #fff;
  }
  .page-contact .footer .container,
  .page-contact .footer .social-row {
    display: block;
  }
  .page-contact .footer .block-title {
    display: none !important;
  }
}
@media (max-width: 540px) {
  :root {
    --form-group-gap: 0;
  }
  .row-flex {
    display: block;
  }
  .row-flex .form-group {
    width: 100%;
  }
}
@media (orientation: landscape) and (max-height: 550px) {
  :root {
    --footer-font-size: 14px;
  }
}