@keyframes ani-fadeIn-Y {
  0% {
    transform: translateY(40px);
  }
  100% {
    transform: translateY(0px);
  }
}
@keyframes ani-fadeIn-Y-rev {
  0% {
    transform: translateY(-40px);
  }
  100% {
    transform: translateY(0px);
  }
}
@keyframes ani-fadeIn-X {
  0% {
    opacity: 0;
    transform: translateX(40px);
  }
  100% {
    opacity: 1;
    transform: translateX(0px);
  }
}
@keyframes ani-fadeIn-X-rev {
  0% {
    opacity: 0;
    transform: translateX(-40px);
  }
  100% {
    opacity: 1;
    transform: translateX(0px);
  }
}
html {
  font-size: 10px !important;
  overflow-x: hidden;
  scroll-behavior: auto !important;
}

body {
  font-family: "Rubik", "PingFang TC", "Noto Sans TC", "LiHei Pro", "Microsoft JhengHei", "Microsoft YaHei", sans-serif !important;
  line-height: 1.4;
  font-size: 1.6rem;
  color: #000;
  position: relative;
  background-color: #F2F6F7;
}
@media screen and (max-width: 767px) {
  body {
    font-size: 1.4rem;
    overflow-x: hidden;
  }
}

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

h1, h2, h3 {
  font-weight: bold;
}

ul, ol {
  margin-bottom: 0px;
  line-height: 1.6;
}
ul li, ol li {
  margin-bottom: 10px;
}
ul li:last-child, ol li:last-child {
  margin-bottom: 0px;
}
ul li a.link, ol li a.link {
  color: #000;
}
ul li a.link:hover, ol li a.link:hover {
  color: #005584;
}

hr {
  border: none;
  border-top: 5px dashed rgba(0, 0, 0, 0.2);
  opacity: 1;
  margin: 40px 0;
}

a {
  text-decoration: none !important;
  color: #005584;
}
a:hover {
  color: #005584;
}

a.link {
  text-decoration: underline !important;
}

a, button, .form-control {
  outline: none !important;
  border: none;
}
a:focus, a:active, button:focus, button:active, .form-control:focus, .form-control:active {
  outline: none !important;
}

.btn {
  font-size: 1.8rem;
  padding: 16px;
  border-radius: 0px;
  min-width: 180px;
  height: 60px;
  font-weight: bold;
  box-shadow: 0px 5px 10px rgba(95, 250, 255, 0.2);
  transition: all ease-in-out 0.3s;
  border-radius: 50px;
  border: none !important;
  position: relative;
}
.btn:hover {
  box-shadow: 0px 5px 15px rgba(95, 250, 255, 0.4) !important;
  transform: translateY(-10px);
}
.btn-sm {
  padding: 13px 15px;
  border-radius: 50px;
  font-size: 1.6rem;
  height: 50px;
  min-width: 150px;
}
.btn-primary {
  background-image: linear-gradient(135deg, #00ADA9, #20AEE5);
  border: none;
}
.btn-primary:hover, .btn-primary:focus, .btn-primary:active, .btn-primary:not(:disabled):not(.disabled):active, .btn-primary:not(:disabled):not(.disabled).active {
  background-image: linear-gradient(135deg, #00ADA9, #20AEE5);
}
.btn-primary.disabled, .btn-primary:disabled {
  background-image: linear-gradient(135deg, #00ADA9, #20AEE5);
}
.btn i, .btn img {
  margin-right: 5px;
  vertical-align: middle;
}
.btn img {
  height: 16px;
}
@media screen and (max-width: 767px) {
  .btn {
    font-size: 1.6rem;
    min-width: 180px;
  }
}

input.form-control::-moz-placeholder {
  color: #999;
  opacity: 1; /* Firefox */
}

input.form-control::placeholder {
  color: #999;
  opacity: 1; /* Firefox */
}

.form-control {
  border-radius: 0px;
  height: 40px;
  padding: 10px;
  border: 1px solid #ccc;
  font-size: 1.4rem;
  color: #000;
}
.form-control:focus {
  box-shadow: none;
  border-color: #aaa;
}

select.form-control {
  background-image: url("../img/ic_angle.svg");
  background-size: 12px 6px;
  background-repeat: no-repeat;
  background-position: top 17px right 10px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  padding: 0 30px 0 10px;
  height: 40px;
  width: 100%;
  display: block;
}

input[type=file].form-control,
textarea.form-control {
  height: auto;
}

.form-group {
  margin-bottom: 15px;
}
.form-group label {
  color: #666;
  font-size: 1.4rem;
  margin-bottom: 5px;
}
.form-group .text {
  color: #333;
  margin-top: 5px;
}
.form-group.has-error label, .form-group.has-error .text {
  color: #E5004F !important;
}
.form-group.has-error .form-control {
  border-color: #E5004F !important;
}
@media screen and (max-width: 767px) {
  .form-group .form-control {
    padding: 10px;
  }
}

.form-inline .form-check, .form-inline .form-radio {
  margin-top: 5px;
  margin-bottom: 5px;
  justify-content: flex-start;
}
@media screen and (max-width: 767px) {
  .form-inline .form-check, .form-inline .form-radio {
    width: calc(33.3333333333% - 10px);
  }
}
@media screen and (max-width: 450px) {
  .form-inline .form-check, .form-inline .form-radio {
    width: calc(50% - 10px);
  }
}

hr {
  border-color: #d8d8d8;
  opacity: 1;
}

.func-tool {
  margin-top: 30px;
  text-align: center;
}
.func-tool .btn {
  width: calc(50% - 10px);
  max-width: 150px;
}
.func-tool .btn + .btn {
  margin-left: 10px;
}
.func-tool .btn-default {
  background: #fff;
}

.mt-40 {
  margin-top: 40px;
}

.tip {
  color: #666;
}

.text-sm, .text-xs {
  font-weight: 400;
  line-height: 1.6;
}

.text-sm {
  font-size: 1.6rem !important;
}
@media screen and (max-width: 767px) {
  .text-sm {
    font-size: 1.4rem !important;
  }
}

.text-xs {
  font-size: 1.4rem !important;
}
@media screen and (max-width: 767px) {
  .text-xs {
    font-size: 1.2rem !important;
  }
}

.text-bold {
  font-weight: bold !important;
}

.text-primary {
  color: #005584 !important;
}

.text-success {
  color: #00ADA9 !important;
}

.text-danger {
  color: #E5004F !important;
}

.text-warning {
  color: #E2941F !important;
}

.pic {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
.pic img {
  width: 100%;
}

.card {
  border: none;
  border-radius: 10px;
  position: relative;
  z-index: 2;
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1);
  padding: 0px;
  text-align: center;
  transition: all ease-in-out 0.3s;
}
.card .title {
  font-size: 2.4rem;
}
@media screen and (max-width: 767px) {
  .card .title {
    font-size: 1.8rem;
  }
}
.card .con {
  font-size: 1.6rem;
  text-align: left;
}
.card-highlight {
  padding: 40px 38px;
  height: 100%;
}
.card-highlight .title {
  margin-bottom: 20px;
  color: #005584;
  font-weight: 700;
  opacity: 1 !important;
  font-size: 3.2rem;
}
.card-highlight .text {
  text-align: left;
  line-height: 1.9;
}
.card-highlight .text ul {
  margin-top: 10px;
}
@media screen and (max-width: 767px) {
  .card-highlight {
    height: auto;
    margin-bottom: 30px;
    padding: 30px;
  }
  .card-highlight .title {
    font-size: 2rem;
  }
}
.card-point {
  padding: 10px;
  background: none;
  box-shadow: none;
  border: 1px solid #E6F1F3;
  margin-bottom: 30px;
}
.card-point .card-body {
  padding: 30px 20px;
  background: #F0FBFD;
  border-radius: 10px;
  color: #333;
}
.card-point .card-body .title {
  margin-top: 15px;
  font-size: 2rem;
  font-weight: 700;
}
.card-point .card-body .text {
  margin-top: 10px;
  line-height: 1.9;
}
@media screen and (max-width: 767px) {
  .card-point .card-body {
    padding: 30px;
  }
  .card-point .card-body .title {
    font-size: 1.8rem;
  }
}
.card-step {
  margin-top: 40px;
}
.card-step .title {
  display: inline-block;
  text-align: left;
  padding: 12px 30px;
  width: 190px;
  color: #fff;
  border-radius: 10px;
  background-image: linear-gradient(to right, #20aee5, rgba(32, 174, 229, 0));
  font-size: 2rem;
  line-height: 1.6;
  margin-left: 30px;
  margin-top: -30px;
  font-weight: bold;
}
.card-step .text {
  text-align: left;
  padding: 30px 60px;
  font-weight: 500;
  height: 100px;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .card-step {
    margin-bottom: 20px;
  }
  .card-step .title {
    font-size: 1.8rem;
  }
}

.board {
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1);
  background: #fff;
  display: flex;
  align-items: center;
}
.board .pic {
  width: 170px;
  padding: 40px;
}
.board .con {
  padding-left: 20px;
}
.board .con .title {
  letter-spacing: 2px;
  font-weight: 700;
}
.board .con .title a {
  color: #000;
}
.board .con .title a:hover {
  color: #005584;
}
.board .con .text {
  margin-top: 10px;
}
.board-info {
  background: rgba(255, 255, 255, 0.6);
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  flex-direction: column;
  align-items: flex-start;
  color: #333;
  margin-top: 40px;
  box-shadow: none;
}
.board-info .title {
  text-align: left;
  font-size: 2rem;
  font-weight: 700;
}
.board-info .text {
  margin-top: 20px;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .board {
    display: flex;
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }
  .board .con {
    padding-left: 0px;
  }
  .board-info {
    padding: 30px;
    margin-top: 15px;
  }
  .board-info .title {
    font-size: 1.8rem;
  }
}

.partner-area {
  display: flex;
  gap: 30px;
  overflow-x: auto;
}
.partner-area img {
  height: 100px;
}

header {
  position: fixed;
  top: 20px;
  left: 0px;
  width: 100%;
  z-index: 1050;
  height: 90px;
  transition: all ease-in-out 0.3s;
  display: flex;
  align-items: center;
  background: transparent;
}
header .container {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.6);
  -webkit-backdrop-filter: blur(40px);
          backdrop-filter: blur(40px);
  padding: 15px 40px;
  border-radius: 80px;
}
header a.logo img {
  height: 40px;
}
header nav ul {
  padding: 0px;
  margin: 0 0 0 20px;
  list-style: none;
  display: flex;
  font-size: 1.6rem;
  font-weight: bold;
}
header nav ul li {
  position: relative;
  padding: 0px 20px;
  margin-bottom: 0px;
  letter-spacing: 2px;
}
header nav ul li a {
  color: #005584;
  text-align: center;
  display: block;
}
header nav ul li:hover a {
  opacity: 0.8;
}
header a.btn {
  margin-left: auto;
}
header a.nav-menu {
  display: none;
  position: absolute;
  top: 22px;
  right: 20px;
}
@media screen and (max-width: 991px) {
  header {
    height: auto;
    padding: 0px 15px;
  }
  header a.logo img {
    height: 35px;
  }
  header .container {
    display: block;
    border-radius: 35px;
    padding: 15px 30px;
  }
  header nav {
    display: none;
  }
  header nav.active {
    display: block;
  }
  header nav ul {
    display: block;
    font-size: 1.4rem;
    flex-direction: column;
    margin: 0px;
    padding-top: 15px;
  }
  header nav ul li {
    padding: 0px;
    margin: 0px;
  }
  header nav ul li a {
    color: #333;
    padding: 15px;
  }
  header a.btn-primary {
    width: 120px;
    min-width: unset;
    position: absolute;
    right: 50px;
    top: 8px;
  }
  header a.nav-menu {
    display: block;
  }
}

main section.mainview {
  padding-top: 100px;
  position: relative;
}
main section.mainview::before {
  content: "";
  display: block;
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 200px;
  background-image: linear-gradient(180deg, #b6d7e6 50%, rgba(182, 215, 230, 0));
}
main section.mainview img {
  width: 100%;
}
main section.area {
  padding: 120px 0 0 0;
  transition: all ease-in-out 0.3s;
  position: relative;
}
@media screen and (max-width: 767px) {
  main section.area {
    padding: 60px 0 0 0;
  }
}
main section.area h2 {
  font-size: 4rem;
  margin-bottom: 40px;
  color: #005584;
  text-align: center;
  display: inline-block;
  position: relative;
  padding: 0 30px;
}
main section.area h2::after {
  content: "";
  display: block;
  border: 1px solid #fff;
  height: 46px;
  width: 100%;
  background-image: linear-gradient(-135deg, rgba(122, 209, 191, 0.2), rgba(128, 219, 183, 0.1), rgba(128, 219, 183, 0.5), rgba(122, 209, 191, 0.7));
  border-radius: 5px;
  position: absolute;
  bottom: -10px;
  left: 0px;
  z-index: -1;
  box-shadow: 0px 10px 30px rgba(242, 246, 247, 0.6) inset;
}
@media screen and (max-width: 767px) {
  main section.area h2 {
    font-size: 2.8rem;
    padding: 0 20px;
  }
  main section.area h2::after {
    height: 30px;
  }
}
main section.area h3 {
  display: inline-block;
  padding: 8px 20px;
  background: #005584;
  border-radius: 40px;
  color: #fff;
  font-size: 2.4rem;
  font-weight: 500;
  letter-spacing: 2px;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  main section.area h3 {
    font-size: 2rem;
  }
}
main section.area p {
  margin: 0 0 20px 0;
  line-height: 1.9;
}
main section.area > .container > .text-center h2 {
  opacity: 0;
  transition: all ease-in-out 0.3s;
}
main section.area .sub-area {
  padding-top: 60px;
  position: relative;
}
main section.area .sub-area h2 {
  opacity: 0;
}
main section.area .sub-area .card .icon, main section.area .sub-area .card .title {
  opacity: 0;
  transition: all ease-in-out 0.3s;
}
@media screen and (max-width: 767px) {
  main section.area .sub-area {
    padding-top: 40px;
  }
}
main section.area .card .title {
  opacity: 0;
  transition: all ease-in-out 0.3s;
}
main section.area .dec {
  position: absolute;
  z-index: -1;
}
main section.area.active > .container > .text-center h2 {
  animation: ani-fadeIn-Y ease-in-out 1s forwards;
  opacity: 1;
}
main section.area.active .sub-area.active h2 {
  animation: ani-fadeIn-Y ease-in-out 1s forwards;
  opacity: 1;
}
main section.area.active .sub-area.active .card .icon, main section.area.active .sub-area.active .card .title {
  animation: ani-fadeIn-Y ease-in-out 1s forwards;
  opacity: 1;
}
main section.area.active .sub-area.active .card-step .title {
  animation: ani-fadeIn-X-rev ease-in-out 1s forwards;
}
main section.area#area_project .dec, main section.area#area_emfeel .dec, main section.area#area_timeline .dec {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  filter: blur(30px);
  background: #E7FBFF;
  opacity: 0.8;
}
main section.area#area_project .dec {
  bottom: 0px;
  left: 25%;
}
main section.area#area_emfeel .dec {
  top: 120px;
  right: calc(100% - 1320px);
}
main section.area#area_timeline .dec1 {
  top: 150px;
  left: 20%;
  background: #D4EBF9;
}
main section.area#area_timeline .dec2 {
  top: 250px;
  right: 20%;
}
main section.area#area_highlight .card-point .card-body {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
main section.area#area_highlight .card-point .card-body .text {
  text-align: left;
}
main section.area#area_highlight .dec1 {
  width: 250px;
  height: 250px;
  border-radius: 50%;
  filter: blur(30px);
  background: #E7FBFF;
  opacity: 0.8;
  left: -50px;
  top: 600px;
  background-image: linear-gradient(rgba(132, 214, 245, 0.3), #acc3d7);
}
main section.area#area_highlight .dec2 {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  filter: blur(30px);
  background: #E7FBFF;
  opacity: 0.8;
  right: 0px;
  top: 200px;
  background: #D4EBF9;
}
main section.area#area_apply .sub-area .row .col-md-4:nth-child(1) .card-point .card-body,
main section.area#area_apply .sub-area .row .col-md-4:nth-child(2) .card-point .card-body,
main section.area#area_apply .sub-area .row .col-md-4:nth-child(3) .card-point .card-body {
  height: 320px;
}
main section.area#area_apply .sub-area .row .col-md-4:nth-child(4) .card-point .card-body,
main section.area#area_apply .sub-area .row .col-md-4:nth-child(5) .card-point .card-body {
  height: 250px;
}
main section.area#area_apply .dec1 {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  filter: blur(30px);
  background: #E7FBFF;
  opacity: 0.8;
  background-image: linear-gradient(rgba(132, 214, 245, 0.3), #acc3d7);
  top: 300px;
  left: 10%;
}
main section.area#area_apply .dec2 {
  width: 230px;
  height: 230px;
  border-radius: 50%;
  filter: blur(30px);
  background: #E7FBFF;
  opacity: 0.8;
  background-image: linear-gradient(rgba(132, 214, 245, 0.3), #acc3d7);
  top: 550px;
  right: 10%;
}
main section.area#area_apply .dec3 {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  filter: blur(30px);
  background: #E7FBFF;
  opacity: 0.8;
  background: #B0D3E6;
  top: 150px;
  left: -150px;
  opacity: 0.5;
}
main section.area#area_apply .dec4 {
  width: 260px;
  height: 260px;
  border-radius: 50%;
  filter: blur(30px);
  background: #E7FBFF;
  opacity: 0.8;
  background: #D4EBF9;
  top: 55%;
  right: -150px;
}
@media screen and (max-width: 767px) {
  main section.area#area_apply .sub-area .row .col-md-4:nth-child(1) .card-point .card-body,
  main section.area#area_apply .sub-area .row .col-md-4:nth-child(2) .card-point .card-body,
  main section.area#area_apply .sub-area .row .col-md-4:nth-child(3) .card-point .card-body,
  main section.area#area_apply .sub-area .row .col-md-4:nth-child(4) .card-point .card-body,
  main section.area#area_apply .sub-area .row .col-md-4:nth-child(5) .card-point .card-body {
    height: auto;
  }
}

footer {
  margin-top: 80px;
  padding: 80px 0;
  font-size: 1.4rem;
  line-height: 2;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
footer .container {
  display: flex;
  gap: 30px;
}
footer .con .title {
  font-size: 2rem;
  margin-bottom: 15px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 2px;
  color: #333;
}
footer .con p {
  margin: 0px;
}
footer .con a {
  color: #000;
}
footer .con a.link {
  text-decoration: underline !important;
}
footer .con a:hover {
  color: #005584;
  opacity: 0.7;
}
footer .copyright {
  margin-left: auto;
  font-size: 1.2rem;
  color: #666;
  align-self: flex-end;
  letter-spacing: 1.5px;
}
@media screen and (max-width: 767px) {
  footer {
    padding: 60px 0;
    margin-top: 60px;
  }
  footer .container {
    flex-direction: column;
    text-align: center;
  }
  footer a.logo img {
    height: 100px;
  }
  footer .con .title {
    font-size: 1.8rem;
  }
  footer .copyright {
    text-align: center;
    margin: unset;
    align-self: center;
  }
}/*# sourceMappingURL=main.css.map */