@font-face {
  font-family: Helvetica;
  font-weight: 300;
  src: url('../assets/fonts/Helvetica-Light.ttf') format('truetype');
  font-display: swap;
}

@font-face {
  font-family: Helvetica;
  font-weight: 400;
  src: url('../assets/fonts/Helvetica.ttf') format('truetype');
  font-display: swap;
}

@font-face {
  font-family: Helvetica;
  font-weight: 700;
  src: url('../assets/fonts/Helvetica-Bold.ttf') format('truetype');
  font-display: swap;
}

/* General styles */
:root {
  --enter-white: #ffffff;
  --enter-black: #191919;
  --enter-light-black: #0a090d;
  --enter-grey: #cccccc;
  --enter-dark-grey: #212121;
  --enter-light-grey: #a6a6a6;
  --enter-pink: #f2a7bb;
  --enter-light-pink: #d991a4;
  --enter-blue: #002fa7;
  --enter-light-blue: #1546c3;
  --enter-dark-blue: #001b61;
  --enter-dark-green: #39402e;
  --enter-dark-red: #590f14;
}

html {
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
  height: -webkit-fill-available;
  scroll-behavior: smooth;
  overscroll-behavior: none;
}

body {
  font-family: Helvetica, "Noto Sans TC", sans-serif;
  font-optical-sizing: auto;
  font-size: 16px;
  font-weight: 300;
  color: var(--enter-white);
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

.container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 16px;
  position: relative;
  width: calc(100% - 32px);
  height: 100%;
  max-width: 1440px;
  margin: 0 auto;
  z-index: 2;
}

h1 {
  font-size: 16vh;
  margin: 0;
}

h2 {
  display: flex;
  align-items: baseline;
  gap: 36px;
  font-size: 60px;
  margin: 0;
}

h2 span {
  position: relative;
  top: -8px;
  font-size: 18px;
  font-weight: 300;
  letter-spacing: 2px;
}

.heading {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--enter-dark-grey);
  padding: 50px 0;
}

.grecaptcha-badge {
  display: none;
}

@media (max-width: 991.98px) {
  h1 {
    font-size: min(12vh, 20vw);
  }
}

@media (max-width: 767.98px) {
  h2 {
    flex-direction: column;
    gap: 4px;
    font-size: 36px;
  }

  h2 span {
    top: 0;
    font-size: 16px;
  }
}

/* header styles */
header {
  position: fixed;
  width: 100%;
  height: 75px;
  background-color: var(--enter-white);
  z-index: 999;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
}

header .container {
  position: relative;
  width: 100%;
  max-width: calc(100% - 146px);
  margin: 0 auto;
  padding-left: 73px;
  padding-right: 73px;
  justify-content: flex-end;
  align-items: center;
  flex-direction: row;
}

header .logo {
  position: absolute;
  left: 64px;
  top: 50%;
  transform: translateY(-50%);
  width: 73px;
  height: 73px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

header .logo__icon {
  width: 50px;
  height: 30px;
  position: relative;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-top: 4px;
}

header .logo__icon span {
  display: block;
  height: 6px;
  background-color: var(--enter-blue);
}

header .logo__label {
  font-weight: 700;
  font-size: 20px;
  color: var(--enter-black);
  margin-top: 4px;
}

header .header__links {
  display: flex;
  align-items: center;
  height: 36px;
  gap: 16px;
}

header .header__link {
  display: flex;
  align-items: center;
  height: 100%;
  text-decoration: none;
  color: var(--enter-light-black);
}

header .header__link:hover>div:first-child>div,
header .header__link:hover>div:last-child {
  border-color: var(--enter-blue);
  color: var(--enter-blue);
}

header .header__link>div:first-child {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 8px;
  height: 100%;
}

header .header__link>div:first-child>div {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 14px;
  height: 14px;
  border: 1px solid var(--enter-light-black);
  border-radius: 50%;
  font-weight: 900;
  font-size: 14px;
  color: var(--enter-light-black);
}

header .header__link>div:last-child {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  font-weight: 600;
  font-size: 14px;
  color: var(--enter-light-black);
  text-transform: uppercase;
}

header .social__links {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 90px;
  height: 36px;
  gap: 12px;
}

header .social__links a {
  display: flex;
}

header .social__links a img {
  width: 24px;
}

@media (max-width: 1520px) {
  header .container {
    max-width: calc(100% - 64px);
    padding-left: 32px;
    padding-right: 32px;
  }

  header .logo {
    left: 32px;
  }
}

@media (max-width: 1199.98px) {
  header .container {
    max-width: calc(100% - 32px);
    padding-left: 16px;
    padding-right: 16px;
  }

  header .logo {
    left: 16px;
  }
}

@media (max-width: 767.98px) {
  header .header__link>div:first-child {
    display: none;
  }

  header .social__links {
    width: 64px;
    gap: 10px;
  }
}

@media (max-width: 575.98px) {
  header .header__links {
    gap: 12px;
  }

  header .header__link>div:last-child {
    font-size: 12px;
  }

  header .container {
    max-width: calc(100% - 12px);
    padding-left: 0;
    padding-right: 12px;
  }

  header .logo {
    left: 8px;
  }
}

@media (max-width: 499.98px) {
  header .social__links {
    display: none;
  }

  header .header__link>div:last-child {
    font-size: 11px;
  }

  header .logo {
    left: 8px;
    width: 54.75px;
    height: 54.75px;
  }

  header .logo__icon {
    width: 37.5px;
    height: 22.5px;
  }

  header .logo__icon span {
    height: 4.5px;
  }

  header .logo__label {
    font-size: 15px;
    margin-top: 3px;
  }

  header .header__link:last-child>div:last-child {
    padding-right: 0;
  }
}

/* footer styles */
footer {
  width: 100%;
  height: auto;
  background-color: var(--enter-grey);
  border-top: 2px solid var(--enter-light-black);
}

footer .container {
  position: relative;
  display: flex;
  flex-direction: row;
  width: 1000px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0;
}

footer .container .footer__item {
  position: relative;
  padding: 16px 8px;
}

footer .container .footer__item::before {
  position: absolute;
  left: 0;
  top: 0;
  width: 2px;
  height: 100%;
  background-color: var(--enter-light-black);
  content: '';
}

footer .container .footer__item:last-child:after {
  position: absolute;
  right: 0;
  top: 0;
  width: 2px;
  height: 100%;
  background-color: var(--enter-light-black);
  content: '';
}

footer .container .footer__item {
  padding: 0 16px;
  height: 55px;
  min-width: 100px;
}

footer .container .footer__item a {
  font-weight: 400;
  color: var(--enter-light-black);
  text-decoration: none;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

footer .container .footer__item a:hover {
  color: var(--enter-blue);
}

@media (max-width: 767.98px) {
  footer .container .footer__item a {
    font-size: 12px;
  }

  footer .container .footer__item {
    height: 40px;
    min-width: 50px;
    padding: 0 12px;
  }

  body.ios footer .container .footer__item {
    padding-bottom: 8px;
  }
}

@media (max-width: 575.98px) {
  footer .container .footer__item a {
    font-size: 11px;
  }
}

/* contact-us styles */
.contact-us {
  padding: 90px 0;
}

.contact .heading {
  padding: 90px 0 30px;
  justify-content: flex-start;
}

.contact .heading h2 {
  font-size: 38px;
  gap: 15px;
}

.contact .heading h2 span {
  font-weight: 700;
  font-size: 28px;
  top: -3px;
}

.contact-us form label {
  font-weight: 500;
  letter-spacing: 0.5px;
}

.contact-us form input,
.contact-us form textarea {
  width: 500px;
  max-width: calc(100% - 32px);
  background-color: var(--enter-white);
  border-radius: 5px;
  border: 1px solid var(--enter-white);
  color: var(--enter-black);
  margin-top: 6px;
  padding: 1px 16px;
}

.contact-us form textarea {
  border-radius: 8px;
  padding-top: 8px;
  padding-bottom: 8px;
}

.contact-us form input {
  height: 30px;
}

.contact-us form input[type="submit"] {
  width: 534px;
  max-width: 100%;
  height: 34px;
  cursor: pointer;
  background-color: transparent;
  border: 2px solid var(--enter-white);
  color: var(--enter-white);
  font-weight: 500;
}

.contact-us form input[type="submit"]:hover {
  background-color: var(--enter-white);
  color: var(--enter-black);
}

.contact-us .wpcf7-not-valid-tip {
  color: var(--enter-light-pink);
  margin-top: 4px;
}

.contact-us .wpcf7 form .wpcf7-response-output {
  margin: 2em 0 1em;
  border-width: 1px;
  min-height: 30px;
  display: flex;
  align-items: center;
  border-radius: 16px;
  border-width: 2px;
  font-weight: 500;
}

.contact-us .wpcf7 form.invalid .wpcf7-response-output,
.contact-us .wpcf7 form.unaccepted .wpcf7-response-output,
.contact-us .wpcf7 form.payment-required .wpcf7-response-output {
  border-color: var(--enter-light-pink);
  max-width: 350px;
}

.contact-us .logo {
  position: absolute;
  right: 5%;
  top: -45px;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.contact-us .logo__icon {
  width: 180px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-us .logo__icon span {
  display: block;
  height: 22.5px;
  background-color: var(--enter-white);
  margin-bottom: 22.5px;
}

.contact-us .logo__icon span:last-child {
  margin-bottom: 0;
}

.contact-us .logo__label {
  font-weight: 700;
  font-size: 72px;
  color: var(--enter-white);
  margin-top: 4px;
  margin-left: -2px;
}

.contact-us .contact-us__form {
  max-width: 100%;
}

.contact-us .contact-us__content {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-evenly;
}

.contact-us .contact-us__footer {
  display: flex;
  flex-wrap: wrap;
  height: fit-content;
  max-width: 425px;
  gap: 40px 60px;
  margin-bottom: calc(8px + 1em);
}

.contact-us .footer__item:nth-child(1),
.contact-us .footer__item:nth-child(4) {
  min-width: 114.34px;
}

.contact-us .footer__item:nth-child(2),
.contact-us .footer__item:nth-child(5) {
  min-width: 75.48px;
}

.contact-us .contact-us__footer a {
  color: var(--enter-white);
  line-height: 1;
  text-underline-offset: 8px;
  font-size: 14px;
}

.contact-us .screen-reader-response {
  display: none;
}

.contact-us .wpcf7-form-control-wrap {
  display: flex;
  flex-direction: column;
}

@media (max-width: 1062.98px) {
  .contact-us .contact-us__content {
    justify-content: flex-start;
    padding-left: 5%;
  }

  .contact-us .contact-us__footer {
    margin-top: 30px;
  }
}

@media (max-width: 991.98px) {
  .contact-us .contact-us__content .wpcf7 {
    max-width: 100%;
  }
}

@media (max-width: 767.98px) {
  .contact-us {
    padding: 60px 0;
  }

  .contact .heading h2 {
    font-size: 36px;
    gap: 4px;
  }

  .contact .heading h2 span {
    font-size: 16px;
    font-weight: 300;
    left: 2px;
    top: 0;
  }

  .contact-us .contact-us__content {
    padding-left: 2%;
  }

  .contact-us form {
    font-size: 14px;
  }

  .contact-us .logo {
    top: -22.5px;
    right: 16px;
  }

  .contact-us .logo__icon {
    width: 120px;
  }

  .contact-us .logo__icon span {
    height: 15px;
    margin-bottom: 15px;
  }

  .contact-us .logo__label {
    font-size: 48px;
  }

  .contact-us .contact-us__footer {
    gap: 22px;
  }

  .contact-us form input,
  .contact-us form textarea {
    font-size: 12px;
  }
}

@media (max-width: 575.98px) {
  .contact-us .logo {
    display: none;
  }

  .contact-us .contact-us__content {
    padding-left: 0;
  }
}

.contact .heading {
  background-color: #000000;
}

.contact .contact-us {
  background-color: #000000;
  padding: 0 0 90px;
}

.wpcf7 form.init .wpcf7-response-output,
.wpcf7 form.resetting .wpcf7-response-output,
.wpcf7 form.submitting .wpcf7-response-output {
  display: none;
}