:root {
  --theme: #005483;
  --theme-dark: #2d1b69;
  --theme-light: #b3b1ff;
  --light-green: #00acb9;
  --highlight-blue: #2e2ecc;
  --text: #474747;
  --text-marine: #0c0c3a;
  --fz1: 52px;
  --fz2: 40px;
  --fz3: 30px;
  --fz4: 24px;
  --fz5: 18px;

  /* btn animation */
  /*Color mode HSL(hue, saturation, lightness)*/
  --body-color: #393937;
  --accent-color: #03e9f4;
  --white-color: #fff;
  --box-shadow: 0 0 5px #03e9f4, 0 0 15px #03e9f4, 0 0 30px #03e9f4,
      0 0 50px #03e9f4;
  /*========== Font and typography ==========*/
  /*.5rem = 8px | 1rem = 16px ...*/
  --body-font: "Montserrat", sans-serif;
  --normal-font-size: 1rem;
}

@media (max-width: 991px) {
  :root {
    --fz1: 42px;
    --fz2: 28px;
    --fz3: 24px;
    --fz4: 20px;
  }
}

.go-top {
  width: 60px;
  /* height: 175px; */
  cursor: pointer;
  position: fixed;
  right: 2%;
  bottom: 4%;
  background-color: #1f1f1f;
  border-radius: 10px;
  z-index: 999;
  text-align: center;
  color: #fff;
  font-weight: bolder;
  line-height: 22px;
  font-size: 20px;
  padding: 10px 10px;
  border-width: 0 5px 5px 0;
  border-style: solid;
  border-color: var(--light-green);
  -webkit-box-shadow: 2px 2px 5px #ffffff;
          box-shadow: 2px 2px 5px #ffffff;
  color: #ffffff;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  -webkit-transform: translateY(0px);
      -ms-transform: translateY(0px);
          transform: translateY(0px);
}

.go-top:hover,
.go-top:active {
  color: #ffffff;
  border-width: 0 2px 2px 0;
  -webkit-box-shadow: 0px 0px 2px #ffffff;
          box-shadow: 0px 0px 2px #ffffff;
}

.go-top:focus,
.go-top:visited {
  color: #ffffff;
  background-color: #333333;
}

.go-top-icon {
  width: 100%;
  margin-bottom: 5px;
}

.gotop-text {}

@media (max-width: 991px) {
  .go-top {
    width: 50px;
    padding: 5px;
    right: 0%;
    bottom: 2%;
  }

  .go-top:hover,
  .go-top:active {}

  .go-top:focus,
  .go-top:visited {}

  .go-top-icon {
    margin-bottom: 0;
  }

  .gotop-text {
    display: none;
  }
}


p {
  font-weight: bolder;
  font-size: var(--fz5);
}

.sec-title,
.title {
  line-height: 1.3;
  font-size: var(--fz2);
  color: var(--theme);
  font-weight: 600;
  margin-bottom: 25px;
  padding: 0;
  text-align: center;
  text-shadow: 1px 1px 6px #ffffff;
}

.kv {
  /* background: radial-gradient(ellipse at center, rgba(10, 30, 60, 0.4) 0%, rgba(5, 10, 20, 0.8) 100%); */
  background-color: #00208d;
  background-image: url(../images/kv/kv-bg2.png), url(../images/kv/kv-bg.webp);
  background-size: cover, 100%;
  background-position: center, center;
  background-repeat: no-repeat, no-repeat;
  position: relative;
  overflow: hidden;
  min-height: 600px;
  max-height: 720px;
  padding: 0 0 20px;
  -webkit-box-shadow:
    0 0 80px rgba(5, 62, 224, 0.2),
    inset 0 0 60px rgba(0, 0, 0, 0.5);
          box-shadow:
    0 0 80px rgba(5, 62, 224, 0.2),
    inset 0 0 60px rgba(0, 0, 0, 0.5);
}

.circuit-svg {
  display: block;
  -webkit-filter: drop-shadow(0 0 2px rgba(5, 62, 224, 0.5));
          filter: drop-shadow(0 0 2px rgba(5, 62, 224, 0.5));
  width: 100%;
}

/* 電路路徑基礎樣式 */
.circuit-svg path {
  fill: none;
  /* stroke: #1a3d5c; */
  stroke-width: 2;
  opacity: 0.4;
}

/* 流動路徑樣式 */
.circuit-svg .flow-path {
  stroke: #00d4ff;
  stroke-width: 2.5;
  opacity: 0;
  -webkit-filter: drop-shadow(0 0 4px #00d4ff);
          filter: drop-shadow(0 0 4px #00d4ff);
}

/* 節點基礎樣式 */
.circuit-svg circle {
  fill: #053ee0;
  -webkit-filter: drop-shadow(0 0 3px #053ee0);
          filter: drop-shadow(0 0 3px #053ee0);
}

/* 激活節點樣式 */
.circuit-svg circle.active {
  fill: #00d4ff;
  -webkit-filter: drop-shadow(0 0 10px #00d4ff) drop-shadow(0 0 20px #00d4ff);
          filter: drop-shadow(0 0 10px #00d4ff) drop-shadow(0 0 20px #00d4ff);
}

/* 電流粒子 */
.circuit-svg .particle {
  fill: #00d4ff;
  -webkit-filter: drop-shadow(0 0 6px #00d4ff);
          filter: drop-shadow(0 0 6px #00d4ff);
  opacity: 0;
}

/* 背景網格效果 */
@-webkit-keyframes gridPulse {

  0%,
  100% {
    opacity: 0.03;
  }

  50% {
    opacity: 0.08;
  }
}
@keyframes gridPulse {

  0%,
  100% {
    opacity: 0.03;
  }

  50% {
    opacity: 0.08;
  }
}

.circuit-svg .grid-bg {
  -webkit-animation: gridPulse 8s ease-in-out infinite;
          animation: gridPulse 8s ease-in-out infinite;
}



/* kv bg animation */
.kv-glow-container {
  width: 100%;
  max-width: 96%;
  margin: 0 auto;
  position: absolute;
  top: 28%;
  left: 2%;
}

.main-textbox {}

@-webkit-keyframes particleAnimation {
    0% {
        -webkit-transform: translateY(98vh) scale(0.1);
                transform: translateY(98vh) scale(0.1);
    }
    100% {
        -webkit-transform: translateY(-5vh) scale(1);
                transform: translateY(-5vh) scale(1);
    }
}

@keyframes particleAnimation {
    0% {
        -webkit-transform: translateY(98vh) scale(0.1);
                transform: translateY(98vh) scale(0.1);
    }
    100% {
        -webkit-transform: translateY(-5vh) scale(1);
                transform: translateY(-5vh) scale(1);
    }
}

.main-textbox .bubbles {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
}
.main-textbox .bubbles span {
  height: 12px;
  width: 12px;
  -webkit-animation: particleAnimation linear infinite;
          animation: particleAnimation linear infinite;
  -webkit-animation-duration: calc(80s / var(--i));
          animation-duration: calc(80s / var(--i));
  background-color: #00acb979;
  border-radius: 10rem;
  /* box-shadow: 0 0 0 5px rgba(0, 215, 255, 0.1), 0 0 50px #00d7ff, 0 0 100px #00d7ff; */
  position: relative;
}
.main-textbox .bubbles span:nth-child(even) {
  background-color: #00acb9b0;
  /* box-shadow: 0 0 0 5px rgba(250, 47, 181, 0.2), 0 0 50px #fa2fb5, 0 0 100px #fa2fb5; */
}


.kv-text {
  width: 100%;
  max-width: 750px;
  margin: auto;
  position: relative;
  text-align: center;
}

.kv-text::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: -o-radial-gradient(#0793b4 0%, transparent 66%);
  background: radial-gradient(#0793b4 0%, transparent 66%);
  left: -10%;
  top: -45%;
}

/* .kv-text .kv-text-img {
  width: 100%;
  position: relative;
  z-index: 1;
} */

@-webkit-keyframes ZoomKv {
  0% {
    -webkit-filter: brightness(1.05) saturate(130%);
    filter: brightness(1.05) saturate(130%);
  }

  5% {
      -webkit-transform: scale(1.05);
      transform: scale(1.05);
      -webkit-filter: brightness(1.05) saturate(130%);
      filter: brightness(1.05) saturate(130%);
  }
  10% {
      -webkit-transform: scale(1);
      transform: scale(1);
  }
}

@keyframes ZoomKv {
  0% {
    -webkit-filter: brightness(1.05) saturate(130%);
    filter: brightness(1.05) saturate(130%);
  }

  5% {
      -webkit-transform: scale(1.05);
      transform: scale(1.05);
      -webkit-filter: brightness(1.05) saturate(130%);
      filter: brightness(1.05) saturate(130%);
  }
  10% {
      -webkit-transform: scale(1);
      transform: scale(1);
  }
}

@-webkit-keyframes FloatKv {
  0%, 100% {
      -webkit-transform: translate(0,0);
              transform: translate(0,0);
  }
  50% {
      -webkit-transform: translate(10px,-10px);
              transform: translate(10px,-10px);
  }
}

@keyframes FloatKv {
  0%, 100% {
      -webkit-transform: translate(0,0);
              transform: translate(0,0);
  }
  50% {
      -webkit-transform: translate(10px,-10px);
              transform: translate(10px,-10px);
  }
}

@keyframes FloatKv {
  0%, 100% {
      -webkit-transform: translate(0,0);
              transform: translate(0,0);
  }
  50% {
      -webkit-transform: translate(10px,-10px);
              transform: translate(10px,-10px);
  }
}

/* @keyframes rotateKv {
  0% {
      transform:translate(0, 0);
  }
  100% {
      transform:translate(800px, -800px);
  }
} */

.kv-text img {
  /* filter: drop-shadow(2px 4px 10px #26e0ff); */
  position: relative;
  z-index: 1;
}

.kv-text .top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 2px;
  z-index: 1;
}
.kv-text .top img {
  -webkit-animation: ZoomKv 6s infinite linear;
          animation: ZoomKv 6s infinite linear;
  -webkit-animation-delay: var(--d);
          animation-delay: var(--d);
}

.kv-text .sub {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  gap: 2px;
  top: 10px;
  z-index: 2;
  max-width: 510px;
  margin: auto;
  /* animation: ZoomKv 4.5s infinite linear; */
}

.kv-text .sub img {}

.kv-text .kv-text-img1 {

width: 16%;}
.kv-text .kv-text-img2 {

width: 14%;}
.kv-text .kv-text-img3 {

width: 14%;}
.kv-text .kv-text-img4 {

width: 14%;}
.kv-text .kv-text-img5 {

width: 14%;}
.kv-text .kv-text-img6 {

width: 14%;}
.kv-text .kv-text-img7 {

width: 14%;}
.kv-text .kv-text-img8 {

width: 14%;}
.kv-text .kv-text-img9 {

width: 14%;}
.kv-text .kv-text-img10 {
  width: 14%;
}
.kv-text .kv-text-img11 {
  width: 14%;
}
.kv-text .kv-text-img12 {
  width: 2%;  
  -webkit-animation: FloatKv 8s infinite linear;  
          animation: FloatKv 8s infinite linear;
}
.kv-text .kv-text-img13 {
  width: 2%;
  -webkit-animation: FloatKv 5s infinite linear;
          animation: FloatKv 5s infinite linear;
}

.kv-text .kv-text-img14 {
  width: 16%;
  position: absolute;
  left: 0;
  top: 5%;
  z-index: 0;
}

.kv-text .kv-text-img15 {
    position: absolute;
    left: -2%;
    top: 60%;
    width: 116px;
    -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
            transform: rotate(0deg);
    /* animation: rotateKv 5s infinite linear; */
}


.kv-text .kv-text-img::before {
  content: '';
  background-color: #00acb955;
  width: 80px;
  height: 300px;
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  -webkit-transform: translate(0, 0);
      -ms-transform: translate(0, 0);
          transform: translate(0, 0);
  position: absolute;
  left: 0;
}

.main-textbox .description {
  font-size: 38px;
  color: #ffffff;
  text-align: center;
  margin-top: 2rem;
  text-shadow: 0 0 10px #00065b;
  position: relative;
  z-index: 1;
}

.main-textbox .description::before {
  content: '';
}

.kv-deco-certificate {
  width: 18%;
  max-width: 140px;
  position: relative;
  top: -54px;
  margin-left: 5%;
  margin-bottom: -8%;
}

.kv-text-deco {}

.text_ani img {
  -webkit-animation: text_ani 2.5s infinite ease;
          animation: text_ani 2.5s infinite ease;
  -webkit-animation-delay: calc(0.3s * var(--i));
          animation-delay: calc(0.3s * var(--i));
}

@-webkit-keyframes text_ani {

  0%,
  25% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  12.5% {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
  }
}

@keyframes text_ani {

  0%,
  25% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  12.5% {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
  }
}


.kv-title {
  position: relative;
  -webkit-filter: drop-shadow(2px 4px 6px var(--theme));
          filter: drop-shadow(2px 4px 6px var(--theme));
}

/* .kv-title .h1-text {
  font-size: 2px;
  writing-mode: vertical-lr;
  position: absolute;
  bottom: 5px;
  left: 10px;
 } */

.W1,
.W2,
.W3,
.W4,
.W5,
.W6,
.W7,
.W8,
.W9 {
  position: relative;
  display: inline-block;
}

.W2,
.W3,
.W4,
.W5,
.W6,
.W7,
.W8 {
  width: 5.4vw;
}

.W1 {
  width: 5.95vw;
  /* 114.67 */
}

.W2 {}

.W3 {}

.W4 {
  max-width: 103.27px;
}

.W5 {
  max-width: 104.92px;
}

.W6 {
  max-width: 104.75px;
}

.W7 {
  max-width: 106.57px;
}

.W8 {
  max-width: 102.04px;
}

.W9 {
  width: 1.4vw;
  max-width: 26.85px;
  margin-left: 0.5vw;
}


.kv-subtitle {
  font-size: 40px;
  font-weight: bolder;
  -webkit-filter: drop-shadow(2px 4px 6px var(--theme));
          filter: drop-shadow(2px 4px 6px var(--theme));
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
  margin-top: 20px;
}

.kv-subtitle .text03 {
  color: var(--text);
}

.kv-subtitle .text04 {}

.kv-subtitle .text05 {
  color: var(--theme);
  position: relative;
}

.kv-subtitle .text05::before {
  content: " ";
  position: absolute;
  width: 20px;
  height: 20px;
  bottom: 0;
  right: 0;
}

.kv-btn {
  display: block;
  color: #fff;
  font-weight: 800;
  padding: 10px 20px 10px 10px;
  font-size: var(--fz4);
  max-width: 230px;
  width: 100%;
  border-radius: 0px;
  border-width: 0px;
  margin: 1.5rem auto 0;
  background-color: #00007088;
  position: relative;
  z-index: 1;
}

.kv-btn:hover,
.kv-btn:focus {
  /* background: linear-gradient(179deg, #605cff 10%, #b3b1ff 80%); */
  color: #fff;
}


.kv-btn-deco {
  width: 100%;
  max-width: 30px;
}

.kv-desc {
  font-size: 40px;
  font-weight: bolder;
  color: var(--text);
  margin-top: 20px;
}

.kv-desc-head {}

.kv-desc-last {}

.kv-desc1,
.kv-desc2,
.kv-desc3,
.kv-desc4,
.kv-desc5 {
  word-break: keep-all;
  display: inline-block;
}

.kv-desc1 {}

.kv-desc2 {}

.kv-desc3 {}

.kv-desc4 {
  color: var(--theme);
}

.kv-desc5 {
  color: var(--theme);
  position: relative;
  display: inline-block;
  text-align: center;
  padding-left: 3px;
}

.kv-desc5::before {
  content: " ";
  position: absolute;
  width: 100%;
  height: 22px;
  bottom: 8px;
  left: -3px;
  right: 0;
  background-color: var(--light-green);
  z-index: -1;
}

.kv-deco-robot {}

.kv-deco-robot1,
.kv-deco-robot2,
.kv-deco-robot3,
.kv-deco-robot4,
.kv-deco-robot5 {
  position: absolute;
  width: 60%;
}

.kv-deco-robot1 {
  width: 100%;
  max-width: 146px;
  left: -56px;
  top: -106px;
}

.kv-deco-robot2 {
  max-width: 136px;
  left: -108px;
  bottom: 58px;
}

.kv-deco-robot3 {
  max-width: 180px;
  right: -56px;
  top: -30px;
}

.kv-deco-robot4 {
  max-width: 163px;
  right: -46px;
  bottom: 163px;
}

@-webkit-keyframes robot-float {
  0% {
    -webkit-transform: translate3d(0, -3%, 0);
    transform: translate3d(0, -3%, 0);
    visibility: visible;
  }

  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes robot-float {
  0% {
    -webkit-transform: translate3d(0, -3%, 0);
    transform: translate3d(0, -3%, 0);
    visibility: visible;
  }

  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.kv-deco-robot5 {
  width: 60%;
  max-width: 300px;
  bottom: -53%;
  z-index: 1;
  -webkit-animation: robot-float var(--speed) infinite alternate linear;
          animation: robot-float var(--speed) infinite alternate linear;
  -webkit-animation-delay: var(--delay);
          animation-delay: var(--delay);
  /* transform-origin: 50% 50%; */
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
}

.kv-deco-robot-bg {
  position: absolute;
  left: -10%;
  right: 0;
  top: -17px;
  bottom: 0;
  width: 120%;
}




@media screen and (max-width: 1400px) {
  .kv {
    background-size: cover, 110%;
  }

  .circuit-svg {}

  /* kv bg animation */
  .kv-ball {}

  .kv-glow-container {}

  .kv-text {}

  .kv-text::before {}

  .kv-text img {}

  .kv-text .top {}
  .kv-text .top img {}

  .kv-text .sub {}

  .kv-text .sub img {}

  .kv-text .sub img {}

  .kv-text .kv-text-img1 {}
  .kv-text .kv-text-img2 {}
  .kv-text .kv-text-img3 {}
  .kv-text .kv-text-img4 {}
  .kv-text .kv-text-img5 {}
  .kv-text .kv-text-img6 {}
  .kv-text .kv-text-img7 {}
  .kv-text .kv-text-img8 {}
  .kv-text .kv-text-img9 {}
  .kv-text .kv-text-img10 {}
  .kv-text .kv-text-img11 {}
  .kv-text .kv-text-img12 {}
  .kv-text .kv-text-img13 {}

  .kv-text .kv-text-img14 {}

  .kv-text .kv-text-img15 {}


  .kv-text .kv-text-img::before {}

  .main-textbox .description {}

  .kv-text-deco {}

  .text_ani img {}

  .kv-title {}

  .kv-deco-certificate {}

  .kv-deco-robot {}

  .kv-deco-robot1 {
    max-width: 90px;
    top: 106px;
  }

  .kv-deco-robot2 {
    max-width: 90px;
  }

  .kv-deco-robot3 {
    max-width: 100px;
  }

  .kv-deco-robot4 {
    max-width: 100px;
  }

  .kv-deco-robot5 {}

  .kv-deco-robot-bg {}
}


@media screen and (max-width: 1200px) {
  .kv {
    background-position: center, 50% 50%;
    background-size: cover, 123%;
  }

  .circuit-svg {}

  /* kv bg animation */
  .kv-ball {}

  .kv-glow-container {}

  .kv-text {}

  .kv-text-deco {}

  .text_ani img {}

  .kv-title {}

  .kv-deco-certificate {
    max-width: 100px;
    top: 0px;
    right: 10px;
  }

  .W2,
  .W3,
  .W4,
  .W5,
  .W6,
  .W7,
  .W8 {}

  .kv-text-deco {}

  .kv-title {}

  .kv-title .text01 {}

  .kv-title .text02 {}

  .kv-subtitle {}

  .kv-subtitle .text03 {}

  .kv-subtitle .text04 {}

  .kv-subtitle .text05 {}

  .kv-btn {}

  .kv-btn:hover,
  .kv-btn:focus {}

  .kv-btn-deco {}

  .kv-desc {
    font-size: 36px;
  }

  .kv-desc1 {}

  .kv-desc2 {}

  .kv-desc3 {}

  .kv-desc4 {}

  .kv-desc5 {}

  .kv-deco-robot1,
  .kv-deco-robot2,
  .kv-deco-robot3,
  .kv-deco-robot4,
  .kv-deco-robot5 {}

  .kv-deco-robot-bg {}

  .kv-deco-robot {}

  .kv-deco-robot1 {
    top: 110px;
    left: -20px;
  }

  .kv-deco-robot2 {}

  .kv-deco-robot3 {}

  .kv-deco-robot4 {
    bottom: 53px;
    right: -76px;
  }

  .kv-deco-robot5 {
    margin-left: 8%;
  }

}


@media screen and (max-width: 991px) {
  .kv {
    /* background-position: center, 27% 50%;
    background-size: cover, 130%; */
    background-position: center, -10% 10%;
    background-size: cover, 115%;
    min-height: 550px;
    padding-bottom: 30px;
  }

  .circuit-svg {
    width: 119%;
    margin-left: -3%;
  }

  /* kv bg animation */
  .kv-ball {}

  .kv-glow-container {
    width: 82%;
    left: 7%;
  }
  
  .main-textbox .description {
    font-size: 24px;
  }

  .kv-text {}

   .kv-text .kv-text-img1 {}
    .kv-text .kv-text-img2 {}
    .kv-text .kv-text-img3 {}
    .kv-text .kv-text-img4 {}
    .kv-text .kv-text-img5 {}
    .kv-text .kv-text-img6 {}
    .kv-text .kv-text-img7 {}
    .kv-text .kv-text-img8 {}
    .kv-text .kv-text-img9 {}
    .kv-text .kv-text-img10 {}
    .kv-text .kv-text-img11 {}
    .kv-text .kv-text-img12 {}
    .kv-text .kv-text-img13 {}

    .kv-text .kv-text-img14 {}

    .kv-text .kv-text-img15 {
      left: 0%;
      top: 51%;
      width: 56px;
    }

  .kv-text-deco {}

  .text_ani img {}

  .kv-title {}

  .kv-deco-certificate {
    position: relative;
    max-width: 100px;
    top: 0px;
    right: 2px;
    width: 16%;
  }

  .W1,
  .W2,
  .W3,
  .W4,
  .W5,
  .W6,
  .W7,
  .W8,
  .W9 {}

  .W2,
  .W3 {
    width: 11vw;
  }

  .W4,
  .W5,
  .W6,
  .W7,
  .W8 {
    width: 12vw;
  }

  .W1 {
    width: 14vw;
  }

  .W9 {
    width: 4vw;
  }

  .kv-text-deco {}

  .kv-title {}

  .kv-title .text01 {}

  .kv-title .text02 {}

  .kv-subtitle {
    margin-top: 10px;
  }

  .kv-subtitle .text03 {}

  .kv-subtitle .text04 {}

  .kv-subtitle .text05 {}

  .kv-btn {
    display: block;
    margin: auto;
    margin-top: 2%;
    margin-bottom: 5%;
    font-size: 24px;
  }

  .kv-btn:hover,
  .kv-btn:focus {}

  .kv-btn-deco {}

  .kv-desc {
    font-size: 30px;
  }

  .kv-desc-head {}

  .kv-desc-last {}

  .kv-desc1 {}

  .kv-desc2 {}

  .kv-desc3 {
    display: inline-block;
    margin-right: 20%;
  }

  .kv-desc4 {}

  .kv-desc5 {}

  .kv-deco-robot1,
  .kv-deco-robot2,
  .kv-deco-robot3,
  .kv-deco-robot4,
  .kv-deco-robot5 {
    margin-left: 0;
  }

  .kv-deco-robot1 {
    position: relative;
  }

  .kv-deco-robot {
    text-align: center;
  }

  .kv-deco-robot1 {
    max-width: 80px;
  }

  .kv-deco-robot2 {
    max-width: 80px;
    bottom: 0;
  }

  .kv-deco-robot3 {
    max-width: 80px;
    top: 0;
  }

  .kv-deco-robot4 {
    max-width: 80px;
    bottom: -70px;
  }

  .kv-deco-robot5 {
    max-width: 160px;
    position: relative;
  }

  .kv-deco-robot-bg {
    width: 100%;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    opacity: 0;
  }

}



@media screen and (max-width: 667px) {
  .kv {
    padding-bottom: 20px;
    padding-left: 10px;
    padding-right: 10px;
    min-height: 450px;
  }

  .circuit-svg {
    width: 155%;
    margin-left: -20%;
  }

  /* kv bg animation */
  .kv-ball {}

  /* .kv-glow-container {} */

  .kv-text {}

  .kv-text-deco {}

  .text_ani img {}

  .kv-title {}

  .kv-deco-certificate {
    position: absolute;
    right: 10px;
    top: 100px;
    width: 18%;
  }

  .W1,
  .W2,
  .W3,
  .W4,
  .W5,
  .W6,
  .W7,
  .W8,
  .W9 {}

  .W2,
  .W3,
  .W4,
  .W5,
  .W6,
  .W7,
  .W8 {
    width: 14vw;
  }

  .W1 {
    width: 16vw;
  }

  .W9 {}

  .kv-text-deco {}

  .kv-title {}

  .kv-title .text01 {}

  .kv-title .text02 {}

  .kv-subtitle {}

  .kv-subtitle .text03 {}

  .kv-subtitle .text04 {}

  .kv-subtitle .text05 {}

  .kv-btn {}

  .kv-btn:hover {}

  .kv-btn:focus {}

  .kv-btn-deco {}

  .kv-desc {
    font-size: 24px;
    margin-top: 10px;
  }

  .kv-desc-head {}

  .kv-desc-last {}

  .kv-desc1 {}

  .kv-desc2 {}

  .kv-desc3 {}

  .kv-desc4 {}

  .kv-desc5 {}

  .kv-deco-robot1 {}

  .kv-deco-robot2 {}

  .kv-deco-robot3 {}

  .kv-deco-robot4 {}

  .kv-deco-robot5 {
    max-width: 140px;
    margin-top: 10px;
  }

  .kv-deco-robot {}

  .kv-deco-robot-bg {}

}

@media screen and (max-width: 480px) {
  .kv {
    padding-bottom: 10px;
    padding-left: 10px;
    padding-right: 10px;
    min-height: 350px;
  }

  .circuit-svg {
    width: 200%;
    margin-left: -30%;
  }
}




/* forward1 前言1 */
.section-forward1 {
  position: relative;
  background-color: #d8d8d8;
  background-image: url('../images/bg-forward.webp');
  background-size: 100%;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  padding: 7% 15px 7%;
  overflow: hidden;
}

.section-forward1:before {
  content: '';
  background: -webkit-gradient(linear, left bottom, left top, from(#d8d8d8), color-stop(60%, rgba(216, 216, 216, 0)));
  background: -o-linear-gradient(bottom, #d8d8d8 0%, rgba(216, 216, 216, 0) 60%);
  background: linear-gradient(to top, #d8d8d8 0%, rgba(216, 216, 216, 0) 60%);
  width: 100%;
  height: 50px;
  position: absolute;
  top: -50px;
  left: 0;
}

.section-forward1 .container {
  position: relative;
  z-index: 1;
}

.section-forward1-title {
  text-align: center;
  /* font-size: 40px; */
  color: var(--theme);
  margin-bottom: 2rem;
}

.forward-course-table {}

.forward-course-table table {
  position: relative;
  background-color: #b9d9eb;
  margin: 0 auto;  
  font-size: var(--fz5);
}

.forward-course-table table::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 65px;
  height: 102px;
  background-image: url('../images/deco-table1.svg');
  background-repeat: no-repeat;
  background-size: 100%;
}

.forward-course-table table::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 65px;
  height: 102px;
  background-image: url('../images/deco-table2.svg');
  background-repeat: no-repeat;
  background-size: 100%;
}

.forward-course-table table tr td:first-child,
.forward-course-table table tr td:last-child {
  padding-left: 40px;
  padding-right: 40px;
}

.forward-course-table table tr:last-of-type {}


.forward-course-table table th {
  background-color: #005483;
  color: #ffffff;
  padding: 10px;
  border-color: #005483;
}

.forward-course-table table td {
  padding: 15px 10px;
}


@media screen and (max-width: 991px) {
  .section-forward1 {
    margin-bottom: 0;
    padding: 30px 0px 10px;
  }

  .section-forward1 .container {}

  .section-forward1 .forward-course {}

  .section-forward1-title {}

.forward-course-table {}

.forward-course-table table {
  font-size: 16px;
  background-color: transparent;
}

.forward-course-table table::before {
  width: 36px;
  height: 70px;
}

.forward-course-table table::after {
  width: 36px;
  height: 64px;
}

.forward-course-table table tr {
  display: flex;
  flex-direction: column;
  border: 1px solid #ffffff;
  /* border-bottom: 8px solid #d8d8d8; */
  margin-bottom: 10px;
  background-color: #b9d9eb;
}

.forward-course-table table tr:first-child {
  border-width: 0;
}

.forward-course-table table tr td:first-child,
.forward-course-table table tr td:last-child {
  padding-left: 15px;
  padding-right: 15px;
}

.forward-course-table table tr:last-of-type {}


.forward-course-table table th {
  display: none;
}

.forward-course-table table td {
  padding: 8px 15px;  
  border-width: 0;
}

.forward-course-table table td br {
  display: none;
  margin-left: 5px;
}

.forward-course-table table tr td:first-child::before {
  content: "課程模組";
  display: inline-block;
  margin-right: 10px;
  background-color: #005483;
  color: #ffffff;
  text-align: center;
  margin-bottom: 5px;
  padding: 1px 5px;
  font-size: 15px;
  width: 80px;
}
.forward-course-table table tr td:nth-child(2)::before {
  content: "能力";
  display: inline-block;
  margin-right: 10px;
  color: #005483;
  border: 1px solid #005483;
  text-align: center;
  margin-bottom: 5px;
  padding: 1px 5px;
  font-size: 15px;
  width: 80px;
}
.forward-course-table table tr td:nth-child(3)::before {
  content: "對應職缺";
  display: inline-block;
  margin-right: 10px;
  color: #005483;
  border: 1px solid #005483;
  text-align: center;
  margin-bottom: 5px;
  padding: 1px 5px;
  font-size: 15px;
  width: 80px;
}

}





/* forward2 前言2 */
.section-forward2 {
  position: relative;
  background-color: #d8d8d8;
  padding: 60px 15px 40px;
  overflow: hidden;
  /* background-image: url('../images/bg-forward.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat; */
}

.section-forward2 .container {}

.forward-form {
  width: 100%;
}

.forward-form canvas {
  margin: auto;
  height: 50vh
}

@media screen and (max-width: 991px) {
  .section-forward2 {
    margin-bottom: 0;
    padding: 3% 0;
  }

  .section-forward2 .forward-form {
    margin-top: 3%;
    margin-left: -15px;
    margin-right: -15px;
    overflow-y: auto;
    width: 108%;
  }
  .forward-form canvas {
    max-width: 100%;
    width: 100%;
  }
}




.section-forward3 {
  position: relative;
  background-color: #d8d8d8;
  background-image: url('../images/bg-plan.webp');
  background-position: 100% 100%;
  background-repeat: no-repeat;
  background-size: 100%;
  padding: 3% 0px 5%;
  overflow: hidden;
}

.section-forward3 .container {}

.forward-Conclusion {}

.forward-Conclusion .title {}

.conclusion-block {
  background-color: #ffffff9a;
}

.conclusion-block .list {}
.conclusion-block .list::after {
  content: '}';
  position: absolute;
  right: -40px;
  top: 28px;
  font-size: 160px;
  color: #ffffff;
  font-family: cursive, math, serif;
  text-shadow: 0 0 5px #00000045;
}

.conclusion-block .list .conclusion-list-item {
  background-color: #ffffff;
  position: relative;
  padding: 10px 10px 10px 30px;
  margin: 15px 10px 15px 0px;
  font-weight: bolder;
  font-size: var(--fz4)
}

.conclusion-block .list .conclusion-list-item::before {
  content: '';
  width: 49px;
  height: 18px;
  position: absolute;
  left: -25px;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  background-image: url('../images/deco-conclusion1.svg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.conclusion-block .list .conclusion-list-item:nth-of-type(even)::before {
  background-image: url('../images/deco-conclusion2.svg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.conclusion-main {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.conclusion-main .text {
  width: 100%;
  padding: 36px 15px;
  font-size: var(--fz4);
  font-weight: bolder;
  overflow: hidden;
}

.conclusion-main .text .light {
  color: var(--theme);
}

.conclusion-main .text::before {
  content: '';
  width: 100%;
  height: 36px;
  position: absolute;
  top: -5px;
  left: -6px;
  background-image: url('../images/deco-conclusion3.svg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.conclusion-main .text::after {
  content: '';
  width: 100%;
  height: 36px;
  position: absolute;
  bottom: 0px;
  left: -6px;
  background-image: url('../images/deco-conclusion3.svg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

@media screen and (max-width: 991px) {
  .section-forward3 {}

  .section-forward3 .container {}

  .forward-Conclusion {}

  .forward-Conclusion .title {}

  .conclusion-block {
    margin-left: 0;
    margin-right: 0;
  }

  .conclusion-block .list {
    margin-bottom: 1rem;
  }

  .conclusion-block .list::after {
    content: none;
  }

  .conclusion-block .list .conclusion-list-item {}

  .conclusion-block .list .conclusion-list-item::before {}

  .conclusion-block .list .conclusion-list-item:nth-of-type(even)::before {}

  .conclusion-main {}

  .conclusion-main .text {
    padding: 50px 15px;
  }

  .conclusion-main .text .light {}

  .conclusion-main .text::before {
    left: 0;
  }

  .conclusion-main .text::after {
    left: 0;
  }
}










/* FORM */
.section-form {
  position: relative;
  padding: 50px 15px;
  background-color: #005483;
  color: #ffffff;
  overflow: hidden;
}
.section-form::after {
  content: '';
}

.form-deco {}

.form-deco img {}

.form-cover {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.form-cover .checkbox {
  color: #333333;
}

.form-cover .checkbox.form-check {
  padding-left: 0;
}

.form-cover .checkbox label {
  display: flex;
  /* flex-wrap: wrap; */
}

.form-cover .checkbox .checkBoxDescription {
  color: #ffffff;
}

.checkbox .cr {
  background-color: #00335077;
  min-width: 26px;
}

.checkbox .cr,
.radio .cr {
  border-color: #ffffff;
}

.radio .cr .cr-icon,
.cr i:before {
  color: #ffffff;
}

.form-cover .checkbox .checkBoxDescription a {
  color: #00d7e7;
}

.form-cover .form-row {
  width: 100%;
}

.form-cover .form-row .form-control {
  border-radius: 0;
  color: #333333;
}

.btn-challenge {
  border-radius: 0;
  width: 100%;
  padding: 15px;
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
}

.btn-challenge:hover,
.btn-challenge:focus,
.btn-challenge:active {
  -webkit-transform: translateY(3px);
      -ms-transform: translateY(3px);
          transform: translateY(3px);
  -webkit-box-shadow: 0 0 2px transparent;
          box-shadow: 0 0 2px transparent;
}

@media (max-width: 768px) {
  .section-form {
    padding: 40px 15px;
  }

  .form-deco {}

  .form-deco img {}

  .form-cover {}

  .form-cover .form-row .form-control {}

  .btn-challenge {
    min-width: 200px;
  }
}












/* 完整 AI 學習地圖 */
.section-map {
  background-color: #d8d8d8;
  background-image: url('../images/bg-map.webp');
  background-size: 100%;
  background-position: 0 50%;
  background-repeat: no-repeat;
  background-attachment: fixed;
  padding: 5% 0;
  overflow: hidden;
}

.section-map-title {}

.section-map-info {
  text-align: center;
  margin-bottom: 1rem;
}


.map-timeline-cover {}

.map-timeline {
  position: relative;
  padding: 20px 0;
}

.map-timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 4px;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(#06b6d4), to(#0891b2));
  background: -o-linear-gradient(top, #06b6d4, #0891b2);
  background: linear-gradient(to bottom, #06b6d4, #0891b2);
}

.map-timeline .timeline-item {
  margin-bottom: 80px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.map-timeline .timeline-item.reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.map-timeline .timeline-dot {
  position: absolute;
  left: 50%;
  top: 25px;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 20px;
  height: 20px;
  background: #06b6d4;
  border: 4px solid #d8d8d8;
  border-radius: 50%;
  z-index: 10;
}

.map-timeline .timeline-side {
  width: calc(50% - 20px);
}

.map-timeline .timeline-side .timeline-side-head {
  border-bottom: 1px solid #333333;
  padding-bottom: 15px;
  font-size: var(--fz3);
}

.map-timeline .timeline-side .stage-number {
  font-family: system-ui, sans-serif;
  font-size: 2rem;
}

.map-timeline .timeline-side-list {
  font-weight: bolder;
  line-height: 2;
}

.map-timeline .timeline-side-list li {
  list-style: decimal;
}

.map-timeline .content-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  max-height: 190px;
  font-size: 16px;
}

.map-timeline .timeline-item:nth-child(1) .content .content-list {}

.map-timeline .timeline-item:nth-child(2) .content .content-list {
  max-height: 150px;
}

.map-timeline .timeline-item:nth-child(3) .content .content-list {}

.map-timeline .timeline-item:nth-child(4) .content .content-list {
  max-height: unset;
}


.map-timeline .content-list li {
  word-wrap: break-word;
  white-space: break-spaces;
  word-break: break-word;
}

.map-timeline .timeline-side.left {
  /* Left side */
}

.map-timeline .timeline-side.right {
  /* Right side */
}

.map-timeline .content {
  background: white;
  -webkit-box-shadow: 0 4px 15px rgba(8, 145, 178, 0.8);
          box-shadow: 0 4px 15px rgba(8, 145, 178, 0.8);
  padding: 30px;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  height: 100%;
}

.map-timeline .content:hover {
  -webkit-box-shadow: 0 8px 25px rgba(6, 182, 212, 0.2);
          box-shadow: 0 8px 25px rgba(6, 182, 212, 0.2);
  -webkit-transform: translateY(-5px);
      -ms-transform: translateY(-5px);
          transform: translateY(-5px);
}

.map-timeline .content h2 {
  color: #06b6d4;
  font-size: 1.4rem;
  margin-bottom: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}

.map-timeline .content h3 {
  color: #2d3748;
  font-size: 1.1rem;
  margin: 15px 0 10px;
}

.map-timeline .content ul {
  list-style: none;
  padding: 0;
  margin: 10px 0 15px;
}

.map-timeline .content li {
  padding: 6px 0;
  color: #555;
  line-height: 1.6;
  margin-left: 28px;
}

.map-timeline .content li:last-child {
  border-bottom: none;
}

.map-timeline .content li small {
  display: block;
  word-wrap: break-word;
  white-space: break-spaces;
  word-break: break-word;
}

.map-timeline .btn {
  display: block;
  max-width: 220px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 15px;
  padding: 10px 24px;
  background: -webkit-gradient(linear, left top, right top, from(#06b6d4), to(#0891b2));
  background: -o-linear-gradient(left, #06b6d4, #0891b2);
  background: linear-gradient(90deg, #06b6d4, #0891b2);
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border: none;
  border-radius: 0;
  cursor: pointer;
}

.map-timeline .btn:hover {
  -webkit-transform: scale(1.05);
      -ms-transform: scale(1.05);
          transform: scale(1.05);
  -webkit-box-shadow: 0 4px 12px rgba(6, 182, 212, 0.4);
          box-shadow: 0 4px 12px rgba(6, 182, 212, 0.4);
}

.map-timeline .side-text {
  color: #333333;
  line-height: 1.8;
}

.map-timeline .side-text .head {
  font-size: var(--fz3);
}

.map-timeline .side-text h4 {
  color: #06b6d4;
  font-size: 1.1rem;
  margin-bottom: 12px;
}

.map-timeline .side-text p {
  margin-bottom: 10px;
}

@media (max-width: 1300px) and (min-width: 992px) {
  .map-timeline .content li small {
    max-width: 185px;
  }
}

@media (max-width: 991px) {
  /* 完整 AI 學習地圖 */
.section-map {
  padding: 5% 0;
}

.section-map-title {}

.section-map-info {
  text-align: left;
  margin-bottom: 0.5rem;
}


.map-timeline-cover {}

.map-timeline {}

.map-timeline::before {}

.map-timeline .timeline-item {
  margin-bottom: 20px;
}

.map-timeline .timeline-item.reverse {}

.map-timeline .timeline-dot {}

.map-timeline .timeline-side {}

.map-timeline .timeline-side .timeline-side-head {}

.map-timeline .timeline-side .stage-number {}

.map-timeline .timeline-side-list {}

.map-timeline .timeline-side-list li {}

.map-timeline .content-list {  
  max-height: unset;
}

.map-timeline .timeline-item:nth-child(1) .content .content-list {}

.map-timeline .timeline-item:nth-child(2) .content .content-list {
  max-height: unset;
}

.map-timeline .timeline-item:nth-child(3) .content .content-list {}

.map-timeline .timeline-item:nth-child(4) .content .content-list {}


.map-timeline .content-list li {}

.map-timeline .timeline-side.left {}

.map-timeline .timeline-side.right {}

.map-timeline .content {}

.map-timeline .content:hover {}

.map-timeline .content h2 {}

.map-timeline .content h3 {}

.map-timeline .content ul {}

.map-timeline .content li {}

.map-timeline .content li:last-child {}

.map-timeline .content li small {
  display: inline-block;
}

.map-timeline .btn {}

.map-timeline .btn:hover {}

.map-timeline .side-text {}

.map-timeline .side-text .head {
}

.map-timeline .side-text h4 {}

.map-timeline .side-text p {}

  .map-timeline .timeline-item,
  .map-timeline .timeline-item.reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }

  .map-timeline .timeline-side .stage-number {}

  .map-timeline .timeline::before {
    left: 20px;
  }

  .map-timeline .timeline-dot {
    left: 8px;
  }

  .map-timeline::before {
    -webkit-transform: translateX(0%);
        -ms-transform: translateX(0%);
            transform: translateX(0%);
    left: 5px;
  }

  .map-timeline .timeline-side {
    width: calc(100% - 25px);
    margin-left: 25px;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 1.8rem;
  }

  .map-timeline::before {}

  .map-timeline .content h2 {
    font-size: 1.1rem;
  }

  .map-timeline .side-text {
    font-size: 0.9rem;
  }

  .map-timeline .side-text .head {}
}







/* section-student */
.section-student {
  background-image: url('../images/bg-student.webp');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 5% 0 4%;
  overflow: hidden;
}

.section-student-title {}

.student-swiper .swiper {
  padding-bottom: 50px;
}

.student-swiper .swiper .swiper-wrapper {}

.swiper-slide {}

.student-card {
  max-width: 400px;
  margin: 5px auto;
  -webkit-box-shadow: 5px 5px 0 #0053838a;
          box-shadow: 5px 5px 0 #0053838a;
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition: -webkit-transform 0.5 linear;
  transition: -webkit-transform 0.5 linear;
  -o-transition: transform 0.5 linear;
  transition: transform 0.5 linear;
}

.student-card:hover {
  -webkit-transform: translateY(3px);
      -ms-transform: translateY(3px);
          transform: translateY(3px);
  -webkit-box-shadow: 0px 0px 0 #0053838a;
          box-shadow: 0px 0px 0 #0053838a;
}

.st-card-header {
  padding: 6% 6% 0;
  background-color: #ffffff;
  text-align: center;
}

.st-card-header img {
  width: 100%;
  max-width: 400px;
  border-bottom: 6px solid var(--accent-color);
}

.st-card-body {
  background-color: #ffffff;
  padding: 20px 15px;
}

.st-card-body .st-name {}

.st-card-body .st-desc {
  line-height: 1.5;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 6;
  overflow: hidden;
  position: relative;
  word-wrap: break-word;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  overflow: hidden;
  min-height: 160px;
}

.st-card-body .st-link {
  color: #06b6d4;
  font-weight: bolder;
  line-height: 1;
  display: block;
  max-width: 100px;
  vertical-align: bottom;
  margin-left: auto;
  text-align: right;
}
.st-card-body .st-link:hover {
  -webkit-filter: brightness(0.5);
          filter: brightness(0.5);
}

.st-card-body .st-link .arrow {
  width: 30px;
}

.section-student .swiper-pagination {}

@media (max-width: 768px) {
  .section-student {
    padding: 6% 0 5%;
  }

  .section-student-title {}

  .student-swiper .swiper {}

  .student-swiper .swiper .swiper-wrapper {}

  .swiper-slide {}

  .student-card {}

  .st-card-header {}

  .st-card-header img {}

  .st-card-body {}

  .st-card-body .st-name {}

  .st-card-body .st-desc {}

  .st-card-body .st-link {}

  .st-card-body .st-link .arrow {}

  .section-student .swiper-pagination {}
}




/* section feat */
.section-feat {
  position: relative;
  padding: 60px 30px;
  background-color: #005483;
  background-image: url('../images/bg-plan.webp');
  background-position: 100% 100%;
  background-repeat: no-repeat;
  background-size: 100%;
  /* background-image: linear-gradient( #3d3968 0%, #382363 100%), radial-gradient(#ffffff 0%, #ffffff00 50%,#ffffff00 100%); */
  color: #ffffff;
}

.section-feat-title {
  color: #ffffff;
  font-size: var(--fz2);
  font-weight: bolder;
  margin-bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 15px;
  text-shadow: 1px 1px 5px #05ccdb;
}

.section-feat-subtitle {
  text-align: center;
  margin-bottom: 1.5rem;
}

.feat-row {}

.feat-card {
  max-width: 500px;
  margin: 3% auto;
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
  transition: transform .3s linear;
}

.feat-card:hover {
  -webkit-transform: translateY(3px);
      -ms-transform: translateY(3px);
          transform: translateY(3px);
}

.feat-card-header {}

.feat-card-header .feat-img {
  width: 100%;
}

.feat-card-body {
  background-color: #ffffff;
  color: #333333;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: bolder;
}

.feat-list {
  line-height: 2;
  height: 150px;
  margin: 2% 0;
}

.feat-list .feat-item {
  list-style: disc;
}

.feat-btn {
  background-color: #003857;
  color: #00acb9;
  max-width: 220px;
  width: 100%;
  padding: 10px 15px;
  margin: 3% auto;
  display: block;
  text-align: center;
  font-weight: bolder;
}

/* btn animation start */
.button-animation {
  position: relative;
  /* display: inline-block; */
  padding: 20px 30px;
  color: var(--accent-color);
  text-transform: uppercase;
  overflow: hidden;
  letter-spacing: 4px;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}

.button-animation span {
  position: absolute;
  display: block;
}

.button-animation span:nth-child(1) {
  top: 0;
  left: -100%;
  width: 100%;
  height: 2px;
  background: -webkit-gradient(linear, left top, right top, from(transparent), to(var(--accent-color)));
  background: -o-linear-gradient(left, transparent, var(--accent-color));
  background: linear-gradient(90deg, transparent, var(--accent-color));
  -webkit-animation: btn-anim1 1s linear infinite;
          animation: btn-anim1 1s linear infinite;
}

@-webkit-keyframes btn-anim1 {
  0% {
    left: -100%;
  }

  50%,
  100% {
    left: 100%;
  }
}

@keyframes btn-anim1 {
  0% {
    left: -100%;
  }

  50%,
  100% {
    left: 100%;
  }
}

.button-animation span:nth-child(2) {
  top: -100%;
  right: 0;
  width: 2px;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(transparent), to(var(--accent-color)));
  background: -o-linear-gradient(top, transparent, var(--accent-color));
  background: linear-gradient(180deg, transparent, var(--accent-color));
  -webkit-animation: btn-anim2 1s linear infinite;
          animation: btn-anim2 1s linear infinite;
  -webkit-animation-delay: 0.25s;
          animation-delay: 0.25s;
}

@-webkit-keyframes btn-anim2 {
  0% {
    top: -100%;
  }

  50%,
  100% {
    top: 100%;
  }
}

@keyframes btn-anim2 {
  0% {
    top: -100%;
  }

  50%,
  100% {
    top: 100%;
  }
}

.button-animation span:nth-child(3) {
  bottom: 0;
  right: -100%;
  width: 100%;
  height: 2px;
  background: -webkit-gradient(linear, right top, left top, from(transparent), to(var(--accent-color)));
  background: -o-linear-gradient(right, transparent, var(--accent-color));
  background: linear-gradient(270deg, transparent, var(--accent-color));
  -webkit-animation: btn-anim3 1s linear infinite;
          animation: btn-anim3 1s linear infinite;
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}

@-webkit-keyframes btn-anim3 {
  0% {
    right: -100%;
  }

  50%,
  100% {
    right: 100%;
  }
}

@keyframes btn-anim3 {
  0% {
    right: -100%;
  }

  50%,
  100% {
    right: 100%;
  }
}

.button-animation span:nth-child(4) {
  bottom: -100%;
  left: 0;
  width: 2px;
  height: 100%;
  background: -webkit-gradient(linear, left bottom, left top, from(transparent), to(var(--accent-color)));
  background: -o-linear-gradient(bottom, transparent, var(--accent-color));
  background: linear-gradient(360deg, transparent, var(--accent-color));
  -webkit-animation: btn-anim4 1s linear infinite;
          animation: btn-anim4 1s linear infinite;
  -webkit-animation-delay: 0.75s;
          animation-delay: 0.75s;
}

@-webkit-keyframes btn-anim4 {
  0% {
    bottom: -100%;
  }

  50%,
  100% {
    bottom: 100%;
  }
}

@keyframes btn-anim4 {
  0% {
    bottom: -100%;
  }

  50%,
  100% {
    bottom: 100%;
  }
}

.button-animation:hover {
  background-color: var(--accent-color);
  color: var(--white-color);
  border-radius: 5px;
  -webkit-box-shadow: var(--box-shadow);
          box-shadow: var(--box-shadow);
}
/* btn animation end */


@media (max-width: 768px) {
  .section-feat {
    padding: 40px 15px;
  }

  .section-feat-title {}

  .section-feat-subtitle {}

  .feat-row {}

  .feat-card {}

  .feat-card-header {}

  .feat-card-header .feat-img {}

  .feat-card-body {}

  .feat-list {
    height: unset;
  }

  .feat-list .feat-item {}

  .feat-btn {}
}