@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@100;300;400;500;700;900&display=swap");
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  outline: none;
  font-family: "Noto Sans TC", sans-serif;
  font-size: 20px;
}

body {
  background-color: #101028;
  margin: 0;
  padding: 0;
  font-weight: 500;
  outline: none;
}

.menu {
  width: 50px;
  height: 50px;
  background-color: red;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 20000;
}

nav {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 1000000;
}

nav .btn {
  margin: 0 4px;
}

@media screen and (max-width: 769px) {
  nav {
    display: none;
  }
}

.container {
  max-width: 1920px;
  margin: auto;
  position: relative;
  padding: 25px 80px;
}

@media screen and (max-width: 769px) {
  .container {
    padding: 25px 0;
  }
}

.footer {
  position: absolute;
  bottom: 0;
  text-align: center;
  width: 100%;
  font-size: 14px;
  padding: 10px;
  font-weight: 300;
}

@media screen and (max-width: 768px) {
  .footer {
    font-size: 12px;
  }
}

.footer .break {
  display: none;
}

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

.btn {
  display: inline-block;
  padding: 2px 35px;
  border-radius: 20px;
  border: solid 2px #76BFD0;
  color: #76BFD0;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  text-decoration: none;
  background-color: #101028;
  -webkit-box-shadow: 0px 0px 20px #58B9CC;
          box-shadow: 0px 0px 20px #58B9CC;
}

.btn:hover {
  background-color: rgba(194, 226, 234, 0.3);
}

.btn.active {
  background-color: #ED66A5;
  border: none;
  color: #fff;
  -webkit-box-shadow: 0px 0px 20px #EB337B;
          box-shadow: 0px 0px 20px #EB337B;
}

.btn.active:hover {
  background-color: none !important;
}

.box-btn {
  display: inline-block;
  padding: 6px 18px;
  background-color: #76BFD0;
  border-radius: 5px;
  color: #fff;
  cursor: pointer;
  text-decoration: none;
  -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
          box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
}

.box-btn i {
  margin-left: 5px;
}

h1 {
  color: #fff;
  font-size: 3.125rem;
  font-weight: bold;
  margin: 10px 0;
  text-shadow: 0 0 20px #EB337B;
}

.frame {
  padding: 35px;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -1;
  left: 0;
  top: 0;
  pointer-events: none;
}

@media screen and (max-width: 768px) {
  .frame {
    padding: 0;
  }
}

.frame .inner {
  width: 100%;
  height: 100%;
  border: 10px solid;
  border-image-slice: 1;
  border-width: 5px;
  border-image-source: linear-gradient(to right, #ED66A5, transparent 33%, transparent 67%, #76BFD0);
}

.card {
  border-radius: 5px;
  display: inline-block;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(57, 146, 167, 0.7)), to(rgba(57, 146, 167, 0.5)));
  background: linear-gradient(rgba(57, 146, 167, 0.7), rgba(57, 146, 167, 0.5));
  color: #76BFD0;
  font-size: 1rem;
}

.card .title {
  font-size: 1.875rem;
  font-weight: 300;
  margin: 0;
  text-shadow: 0 0 20px #58B9CC;
}

.card .hr {
  width: 100%;
  height: 2.2px;
  background: -webkit-gradient(linear, left top, right top, from(#76BFD0), to(transparent));
  background: linear-gradient(to right, #76BFD0, transparent);
  margin: 3px 0;
}

#nav-M {
  display: none;
}

@media (max-width: 991px) {
  #nav-M {
    display: block;
    z-index: 1010000;
  }
  .nav-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -1;
    background-color: #101028;
    opacity: 0;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
  }
  .nav-wrapper ul {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    width: 100%;
    margin: 0;
    list-style: none;
    padding: 0;
  }
  .nav-wrapper ul li {
    display: block;
    float: none;
    width: 100%;
    margin-bottom: 10px;
    text-align: center;
  }
  .nav-wrapper ul li:nth-child(1) a {
    -webkit-transition-delay: 0.1s;
            transition-delay: 0.1s;
  }
  .nav-wrapper ul li:nth-child(2) a {
    -webkit-transition-delay: 0.2s;
            transition-delay: 0.2s;
  }
  .nav-wrapper ul li:nth-child(3) a {
    -webkit-transition-delay: 0.3s;
            transition-delay: 0.3s;
  }
  .nav-wrapper ul li:not(:first-child) {
    margin-left: 0;
  }
  .nav-wrapper ul li a {
    padding: 10px 0 24px 10px;
    opacity: 0;
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 1.2px;
    -webkit-transform: translateX(-20px);
            transform: translateX(-20px);
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
    text-decoration: none;
  }
  .nav-wrapper ul li:before {
    display: inline-block;
    content: "";
    width: 2px;
    height: 18px;
    background-color: #fff;
  }
  .navBtn {
    position: fixed;
    right: 10px;
    top: 10px;
    display: block;
    width: 48px;
    height: 48px;
    cursor: pointer;
    z-index: 9999999;
    border-radius: 50%;
  }
  .navBtn i {
    display: block;
    width: 20px;
    height: 2px;
    background-color: #ED66A5;
    border-radius: 2px;
    margin-left: 14px;
  }
  .navBtn i:nth-child(1) {
    margin-top: 16px;
  }
  .navBtn i:nth-child(2) {
    margin-top: 4px;
    opacity: 1;
  }
  .navBtn i:nth-child(3) {
    margin-top: 4px;
  }
}

#phoneNav:checked + .navBtn {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

#phoneNav:checked + .navBtn i {
  background-color: #fff;
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: -webkit-transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease;
}

#phoneNav:checked + .navBtn i:nth-child(1) {
  -webkit-transform: translateY(6px) rotate(180deg);
          transform: translateY(6px) rotate(180deg);
}

#phoneNav:checked + .navBtn i:nth-child(2) {
  opacity: 0;
}

#phoneNav:checked + .navBtn i:nth-child(3) {
  -webkit-transform: translateY(-6px) rotate(90deg);
          transform: translateY(-6px) rotate(90deg);
}

#phoneNav:checked ~ .nav-wrapper {
  z-index: 99000;
  opacity: 1;
}

#phoneNav:checked ~ .nav-wrapper ul li a {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.hidden {
  display: none;
}
/*# sourceMappingURL=main.css.map */