:root {
  --bs-body-color: $text-black;
}

.row {
  --bs-gutter-x: 2.5rem;
}

@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: "PingFang TC", "Rubik", "Noto Sans TC", "LiHei Pro", "Microsoft JhengHei", "Microsoft YaHei", sans-serif !important;
  line-height: 1.4;
  font-size: 1.6rem;
  color: #25505b;
  position: relative;
  background-color: #eff5fa;
}
@media screen and (max-width: 767px) {
  body {
    overflow-x: hidden;
  }
}

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

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: #18aaad;
}

hr {
  border: none;
  border-top: 1px solid #c3d4e6;
  opacity: 1;
  margin: 16px 0;
}

a {
  text-decoration: none;
  color: #18aaad;
  font-weight: 600;
}
a:hover {
  color: #18aaad;
}

a.link {
  text-decoration: underline;
}

a,
button {
  outline: none;
  border: none;
}
a:focus, a:active,
button:focus,
button:active {
  outline: none;
}

strong {
  color: #18aaad;
  font-weight: 600;
}

.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;
}

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

.goto-partners-list {
  color: #18aaad;
  font-weight: 600;
  cursor: pointer;
}

.btn-apply {
  display: inline-block;
  width: 224px;
  height: 78px;
  color: transparent;
  background-image: url(../img/btn-apply-default.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  border: none;
  filter: drop-shadow(0px 4px 10px rgba(32, 174, 229, 0.3));
  transition: all ease-in-out 0.3s;
}
.btn-apply:hover {
  background-image: url(../img/btn-apply-hover.png);
  color: transparent;
  filter: none;
  transform: scale(1.2);
}
.btn-apply:active {
  background-image: url(../img/btn-apply-pressed.png);
  color: transparent;
  filter: none;
}
.btn-apply.btn-sm {
  width: 149px;
  height: 52px;
}
.btn-apply.btn-sm:hover {
  transform: none;
}
@media screen and (max-width: 991px) {
  .btn-apply.btn-sm {
    width: 112px;
    height: 35px;
    background-image: url(../img/btn-apply-default-mob.png);
  }
  .btn-apply.btn-sm:hover {
    background-image: url(../img/btn-apply-pressed-mob.png);
  }
}

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

.card {
  display: block;
  border: none;
  border-radius: 10px;
  position: relative;
  padding: 24px 36px;
  border-bottom: 3px solid #7cdbec;
  box-shadow: 0px 2px 10px 0px rgba(147, 174, 211, 0.2509803922);
  transition: all ease-in-out 0.3s;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .card {
    padding: 20px 24px;
  }
}
.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-about {
  padding: 20px 40px;
}
@media screen and (max-width: 767px) {
  .card-about {
    flex-direction: column;
    padding: 20px 24px;
    text-align: left;
  }
}
.card-emfeel {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 35px 40px;
}
@media screen and (max-width: 1400px) {
  .card-emfeel {
    padding: 20px 40px;
  }
}
@media screen and (max-width: 767px) {
  .card-emfeel {
    flex-direction: column;
    padding: 20px 24px;
  }
}
.card-emfeel .pic {
  margin: 10px;
  width: 100px;
  height: 100px;
  -o-object-fit: contain;
     object-fit: contain;
}
.card-emfeel .con {
  padding-left: 54px;
}
.card-emfeel .con .title {
  font-size: 1.6rem;
  font-weight: 600;
}
.card-emfeel .con .title a {
  color: #25505b;
}
.card-emfeel .con .title a:hover {
  color: #18aaad;
}
@media screen and (max-width: 767px) {
  .card-emfeel .con .title {
    text-align: center;
  }
}
.card-emfeel .con .text {
  margin-top: 10px;
}
@media screen and (max-width: 767px) {
  .card-emfeel .con {
    margin-top: 24px;
    padding-left: 0px;
  }
}
.card-apply {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .card-apply p {
    text-align: left;
  }
}
.card-highlight {
  padding: 40px 38px;
  height: 100%;
  text-align: center;
}
.card-highlight .text {
  text-align: left;
  line-height: 1.9;
}
.card-highlight .text ul {
  margin-top: 10px;
}
@media screen and (max-width: 991px) {
  .card-highlight {
    height: auto;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 767px) {
  .card-highlight {
    padding: 30px;
  }
  .card-highlight .title {
    font-size: 2rem;
  }
}
.card-point {
  padding: 10px;
  margin-bottom: 30px;
  text-align: center;
}
.card-point .card-body {
  padding: 30px 20px;
  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;
  height: 112px;
  padding: 16px 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.card-step .title {
  position: absolute;
  display: inline-block;
  text-align: left;
  padding: 6px 12px;
  width: 174px;
  left: -16px;
  top: -24px;
  color: #005584;
  border-radius: 5px;
  background: linear-gradient(90deg, #7cdbec 0%, #cfe8f9 58.17%, #eff5fa 100%);
  font-size: 2rem;
  line-height: 1.6;
  font-weight: bold;
}
.card-step .text {
  text-align: left;
  font-weight: 600;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .card-step {
    margin-bottom: 20px;
  }
  .card-step .title {
    font-size: 1.8rem;
  }
}
.card-info {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(20px);
  flex-direction: column;
  align-items: flex-start;
  color: #333;
  margin-top: 40px;
  box-shadow: none;
  border-bottom-color: #c3d4e6;
}
.card-info .title {
  text-align: left;
  font-size: 2rem;
  font-weight: 700;
}
.card-info .text {
  margin-top: 20px;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .card-info {
    padding: 30px;
    margin-top: 15px;
  }
  .card-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);
  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-apply {
  margin-left: auto;
}
header a.nav-menu {
  display: none;
  position: absolute;
  top: 14px;
  right: 20px;
}
@media screen and (max-width: 991px) {
  header {
    height: auto;
    padding: 0px 15px;
  }
  header a.logo img {
    height: 24px;
  }
  header .container {
    display: block;
    border-radius: 35px;
    padding: 13px 16px;
  }
  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-apply {
    position: absolute;
    right: 50px;
    top: 8px;
  }
  header a.nav-menu {
    display: block;
  }
}

main section.mainview {
  position: relative;
}
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: 50px;
  color: #005584;
  text-align: center;
  display: inline-block;
  position: relative;
  padding: 0 0 0 27px;
}
main section.area h2::before {
  content: "";
  display: block;
  width: 52px;
  height: 51px;
  position: absolute;
  left: -20px;
  top: -3px;
  background-image: url(../img/title-arrow.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
main section.area h2::after {
  content: "";
  display: block;
  height: 46px;
  width: calc(100% + 60px);
  background: linear-gradient(87.63deg, rgba(127, 236, 231, 0.6) -4.2%, #cfe8f9 77.77%);
  border-radius: 5px;
  position: absolute;
  bottom: -14px;
  left: -30px;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  main section.area h2 {
    font-size: 3.2rem;
    padding: 0 0 0 29px;
  }
  main section.area h2::before {
    left: -20px;
    top: -9px;
  }
  main section.area h2::after {
    width: calc(100% + 48px);
    height: 39px;
    left: -24px;
  }
}
@media screen and (max-width: 375px) {
  main section.area h2 {
    font-size: 2.8rem;
  }
}
main section.area h3 {
  position: relative;
  margin-bottom: 20px;
  color: #005584;
  font-weight: 700;
  font-size: 3.2rem;
}
main section.area h3::before, main section.area h3::after {
  content: "";
  position: relative;
  display: inline-block;
  width: 40px;
  height: 31px;
  left: -6px;
  top: 3px;
  background-image: url(../img/subtitle-arrow.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
main section.area h3::after {
  left: 6px;
  transform: scaleX(-1);
}
@media screen and (max-width: 767px) {
  main section.area h3 {
    font-size: 1.8rem;
  }
  main section.area h3::before, main section.area h3::after {
    width: 24px;
    height: 19px;
  }
}
main section.area h3.h3-sm {
  font-size: 2rem;
  text-align: center;
  white-space: nowrap;
}
main section.area h3.h3-sm::before, main section.area h3.h3-sm::after {
  width: 32px;
  height: 25px;
}
main section.area h4 {
  display: inline-block;
  padding: 8px 20px;
  background: linear-gradient(160deg, rgba(124, 219, 236, 0.6) 24.01%, #eff5fa 57.16%, #cfe8f9 69.91%);
  border-radius: 12px;
  color: #005584;
  font-size: 2.4rem;
  font-weight: 500;
  letter-spacing: 2px;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  main section.area h4 {
    padding: 8px 16px;
    font-size: 1.8rem;
    letter-spacing: 0;
    margin-bottom: 16px;
  }
}
main section.area p {
  margin-top: 1rem;
  margin-bottom: 0;
  line-height: 1.9;
}
main section.area p:not(:last-child) {
  margin-bottom: 2rem;
}
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 .sub-area .sub-title {
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  main section.area .sub-area .sub-title {
    margin-bottom: 46px;
  }
}
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_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_apply {
  padding-bottom: 80px;
}
@media screen and (max-width: 767px) {
  main section.area#area_apply {
    padding-bottom: 60px;
  }
}

footer {
  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: #005584;
}
footer .con a.link {
  text-decoration: underline !important;
}
footer .con a:hover {
  color: #18aaad;
  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;
  }
  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;
  }
}

.card-list .col-md-4,
.card-list .col-lg-4 {
  display: flex;
  flex-direction: column;
}
.card-list .col-md-4 .card,
.card-list .col-lg-4 .card {
  flex: 1;
}

.bg {
  width: 100%;
  height: 100%;
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
.bg .circle {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  position: absolute;
}
.bg .circle.left {
  left: 0;
  top: 410px;
  width: 433px;
  height: 480px;
  background-image: url(../img/bg-circle-left.png);
}
.bg .circle.right {
  right: -38px;
  top: 61px;
  width: 572px;
  height: 651px;
  background-image: url(../img/bg-circle-right.png);
}
@media screen and (max-width: 767px) {
  .bg .circle {
    display: none;
  }
}
.bg .soft {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  position: absolute;
  left: 0;
  top: 24px;
  width: 100%;
  height: 1009px;
  background-image: url(../img/bg-soft-web.jpg);
}
@media screen and (max-width: 1400px) {
  .bg .soft {
    height: 1020px;
    background-image: url(../img/bg-soft-pad.jpg);
  }
}
@media screen and (max-width: 767px) {
  .bg .soft {
    display: none;
  }
}
.bg .bubble {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1588px;
  background-image: url(../img/bg-bubble.jpg);
}
@media screen and (max-width: 1400px) {
  .bg .bubble {
    height: 1200px;
  }
}
@media screen and (max-width: 767px) {
  .bg .bubble {
    display: none;
  }
}
.bg .highlight,
.bg .resource {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 100%;
  position: absolute;
  left: 0;
  width: 100%;
  display: none;
}
@media screen and (max-width: 767px) {
  .bg .highlight,
  .bg .resource {
    display: block;
  }
}
.bg .highlight {
  height: 945px;
  top: 0;
  background-image: url(../img/bg-mob-1.jpg);
}
.bg .resource {
  height: 981px;
  bottom: 0;
  background-image: url(../img/bg-mob-2.jpg);
}