@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@100..900&family=Noto+Sans:ital,wght@0,100..900;1,100..900&family=Noto+Serif+TC:wght@200..900&family=Saira+Condensed:wght@100;200;300;400;500;600;700;800;900&display=swap");
@import url(color.css);
@import url(button.css);

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body,
html {
  font-family: "Noto Sans TC";
}

.wrapper {
  overflow: hidden;
}

a {
  text-decoration: none;
}

a:hover {
  color: rgb(var(--kycolor-primary));
}

ul.dot-list {
  list-style: none;
}

ul.dot-list > li {
  position: relative;
}

ul.dot-list > li::before {
  content: "";
  position: absolute;
  left: -25px;
  top: 11px;
  width: 10px;
  height: 10px;
  background-color: rgb(var(--kycolor-blue-3));
  border-radius: 50%;
}

ol.num-list-lg {
  list-style: none;
  counter-reset: vision-num;
  padding-left: 35px;
}

ol.num-list-lg li + li {
  margin-top: 30px;
}

ol.num-list-lg li {
  position: relative;
}

ol.num-list-lg li::before {
  counter-increment: vision-num;
  content: counter(vision-num) " .";
  position: absolute;
  left: -35px;
  top: -5px;
  font-size: 1.5rem;
  font-family: "Noto Serif TC";
  font-style: italic;
}

.text-serif {
  font-family: "Noto Serif TC";
  font-weight: 600;
}

/* header */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.3s ease;
  backdrop-filter: blur(20px);
  border-bottom: 1px solid #bfbfc9;
  background-color: rgba(255, 255, 255, 1);
}

.site-header.is-transparent {
  background-color: rgba(255, 255, 255, 1);
}

.site-header.is-transparent nav a {
  font-size: 1.25rem;
}

.site-header.is-transparent .secondary-nav ul a {
  font-size: 1.25rem;
}

.site-header .secondary-nav ul {
  display: flex;
  list-style: none;
  justify-content: flex-end;
  margin: 0;
  padding: 0;
}

.site-header .secondary-nav ul a {
  display: flex;
  transition: all ease-in-out 0.5s;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
  position: relative;
  padding: 10px 20px;
}

.site-header .secondary-nav ul a:hover {
  padding-left: 25px;
  padding-right: 25px;
}

.site-header nav a {
  display: flex;
  transition: all ease-in-out 0.5s;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  color: #252525;
  position: relative;
  padding: 10px 0;
}

.site-header nav a::after {
  transition: all ease-in-out 0.2s;
}

.site-header nav a:hover::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 2px;
  background-color: rgba(var(--kycolor-primary), 0.6);
}

.site-header nav li.active a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 3px;
  background-color: rgba(var(--kycolor-primary), 1);
}

.site-header nav li.active a:hover::after {
  background-color: rgba(var(--kycolor-primary), 0.6);
}

.site-header.is-dark nav a {
  color: #252525;
}

.site-header .site-logo img {
  transition: all ease-in-out 0.5s;
  width: 100px;
}

.site-header .logo-b img {
  transition: all ease-in-out 0.5s;
  width: 150px;
}

.site-header.is-transparent nav a {
  color: #252525;
}

.site-header.is-transparent .site-logo img {
  width: 220px;
}

.site-header.is-transparent .logo-b img {
  width: 220px;
}

.site-header.is-light nav a {
  color: #333;
}

.site-header.is-light .site-logo img {
  filter: none;
}

.site-header hr {
  margin: 0;
}

.nav-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 5px 0 5px;
  transition: all ease-in-out 0.2s;
}

.site-header.is-transparent .nav-top {
  padding: 30px 0 20px;
}

.nav-main {
  display: grid;
  grid-template-columns: auto 1fr;
}

.nav-main nav ul {
  display: flex;
  list-style: none;
  gap: 40px;
  margin: 0;
  padding: 0;
}

/* footer */
footer {
  background-image: url(../images/footer-bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center bottom;
  color: #fff;
  padding: 60px 0;
}

.footer-top {
  display: grid;
  grid-template-columns: repeat(1, 25% 25% 1fr);
  margin-bottom: 50px;
  gap: 15px;
}

.footer-logo img {
  width: 220px;
}

.link-list ul {
  display: flex;
  flex-direction: column;
  margin: 0;
  list-style: none;
  gap: 15px;
  padding: 0;
}

.link-list ul a {
  color: #ffffff;
  text-decoration: none;
  line-height: 1;
  transition: all ease-in-out 0.3s;
}

.link-list ul a:hover {
  color: rgba(var(--kycolor-yellow-1), 1);
}

.footer-consult {
  font-family: "Noto Serif TC", "serif";
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.footer-contact {
  font-family: "Noto Serif TC", "serif";
}

.footer-contact a{
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer-contact a:hover{
  color: #dedede;
}

.footer-bottom .title {
  display: flex;
  justify-content: space-between;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  margin-bottom: 20px;
  align-items: flex-end;
}

.footer-bottom .info {
  display: flex;
  justify-content: space-between;
}

.footer-bottom .terms ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 10px;
}

.footer-bottom .terms ul li a {
  color: #fff;
  transition: all ease-in-out 0.3s;
}

.footer-bottom .terms ul li:not(:last-child) a {
  border-right: 1px solid rgba(255, 255, 255, 0.6);
  padding-right: 10px;
}

.footer-bottom .terms ul li a:hover {
  color: rgb(var(--kycolor-yellow-1));
}

.footer-bottom .social-link ul {
  display: flex;
  gap: 15px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-bottom .social-link ul a {
  display: flex;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid #fff;
  color: #fff;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
  transition: all ease-in-out 0.3s;
}

.footer-bottom .social-link ul a:hover {
  background-color: #fff;
  color: rgb(var(--kycolor-primary));
}

/* content */
.content-text {
  line-height: 2;
}

.title-01 {
  text-align: center;
  margin-bottom: 50px;
  color: rgb(var(--kycolor-grey-1));
}

.title-01 h2 {
  font-weight: 700;
}

.title-01 p {
  color: #4d4d4d;
}

.title-02{
  position: relative;
  border-bottom: 1px solid rgb(var(--kycolor-blue-3));
  padding-bottom: 10px;
  font-family: 'Noto Serif TC';
}

.title-02::after{
  content: "";
  position: absolute;
  left: -5px;
  bottom: -8px;
  height: 8px;
  width: 100px;
  background-color: rgb(var(--kycolor-blue-3));
  transform: skewX(-45deg);
}

.swiper-pagination {
  position: relative;
}

.swiper-pagination-bullet {
  background-color: #00a9e0;
  opacity: 0.3;
}

.swiper-pagination-bullet-active {
  background-color: rgba(var(--kycolor-blue-3), 1);
  opacity: 1;
}

/* banner */
.banner-l{
  max-width: 100%;
  width: 100%;
}
.top-banner, .top-banner-mobile{
  position: relative;
}

.top-banner .swiper-pagination{
position: absolute;
bottom: 10px;
}

.top-banner-mobile .swiper-pagination{
position: absolute;
bottom: 10px;
}

.top-banner .swiper-pagination-bullet, .top-banner-mobile .swiper-pagination-bullet{
  background-color: rgba(184, 184, 184,.5);
  opacity: 0.3;
}

.top-banner .swiper-pagination-bullet-active, .top-banner-mobile .swiper-pagination-bullet-active{
  background-color: rgba(var(--kycolor-primary), 0.6);
  opacity: 1;
}

/* section triangle */
.sec-triangle {
  width: 100%;
  position: relative;
  z-index: 1;
}

.sec-triangle img {
  max-width: 100%;
  display: block;
}

.sec-triangle .content {
  position: absolute;
  left: 10vw;
  top: 15%;
  width: 26%;
  z-index: 1;
}

.sec-triangle .content .text {
  position: relative;
  padding-left: 20px;
}

.sec-triangle .content .text::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 1px;
  height: 80%;
  background-color: rgb(var(--kycolor-primary));
}

/* .sec-triangle .content .text::after {
  content: "";
  position: absolute;
  width: 100px;
  height: 100px;
  left: -30px;
  top: -30px;
  background-image: url("../images/banner/pic-02.png");
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 0;
} */

.sec-triangle .content h2 {
  font-size: clamp(1.5rem, 3vw, 3rem);
  color: rgb(var(--kycolor-blue-1));
  font-weight: 900;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.sec-triangle .content h4 {
  font-size: clamp(1.15rem, 1.25vw, 1.35rem);
  font-weight: 900;
  margin-bottom: 20px;
}

.sec-triangle .content .buttons {
  padding-left: 20px;
}

.sec-triangle .items {
  position: absolute;
  right: 0;
  top: 15%;
  z-index: 1;
}

.sec-triangle .items .item-01 {
  width: 17vw;
  transform: translate(-16vw, 0vw);
}

.sec-triangle .items .item-02 {
  width: 17vw;
  transform: translate(-8vw, 3vw);
}

.sec-triangle .items .item-03 {
  width: 17vw;
  transform: translate(-4vw, 6vw);
}

.sec-triangle .items .item-04 {
  width: 17vw;
  transform: translate(-2vw, 9vw);
}

.sec-triangle .triangle {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 70%;
  height: calc(100% + 100px);
  z-index: 0;
  transform: translateX(-50%);
  clip-path: polygon(50% 0%, 100% 100%, 0% 100%);
  pointer-events: none;
  background-image: url("../images/sec-triangle/pic-01.jpg");
  background-size: cover;
  background-position: center bottom;
}

/* section */
#sec01 {
  background-image: url("../images/sec-01-02.png");
  background-size: cover;
  background-position: center bottom;
  padding: 90px 0 150px;
  color: #fff;
  overflow: hidden;
}

#sec01 .sec01-container {
  display: grid;
  grid-template-columns: 45% 1fr;
  gap: 60px;
}

#sec01 .sec01-container .cover img {
  box-shadow: -10px 10px rgb(var(--kycolor-blue-3));
}

#sec01 .sec01-container .content {
  padding-top: 20px;
}

#sec01 .subtitle {
  background-color: rgba(0, 0, 0, 0.5);
  border: 1px solid rgb(var(--kycolor-blue-3));
  display: inline-block;
  padding: 12px 15px;
  font-size: 1.15rem;
  margin-bottom: 20px;
}

#sec01 .sec01-container .content h2 {
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 900;
  margin-bottom: 20px;
  background: linear-gradient(
    122deg,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 1) 42%,
    rgba(0, 169, 224, 1) 28%,
    rgba(0, 169, 224, 1) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

#sec01 .sec01-container .content .text {
  font-family: "Noto Serif TC";
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 30px;
}

#sec01 .sec01-container .content .text > div {
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  padding-top: 20px;
}

#sec01 .sec01-container .content .links {
  display: flex;
  gap: 10px;
}

#teachers {
  padding: 90px 0;
  background-color: #efede6;
  overflow: hidden;
}

#teachers .title {
  display: grid;
  grid-template-columns: 1fr auto;
}

#teachers .title .text h5 {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 80px;
}

#teachers .title .text h5::after {
  content: "";
  height: 1px;
  background-color: #333;
}

#teachers .info {
  display: flex;
  gap: 30px;
}

#teachers .info .item {
  width: 150px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  position: relative;

  /* 置中內容 */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  /* 漸層邊框核心 */
  background: linear-gradient(#efede6, #efede6) padding-box,
    linear-gradient(135deg, #5b9cff, #7b61ff, #ff5ec4) border-box;

  border: 1px solid transparent;

  box-sizing: border-box;
}

#teachers .info .item .label {
  font-weight: 900;
  font-size: 0.9rem;
}

#teachers .info .item .data {
  color: #a01b7c;
  font-size: 2.8rem;
  font-family: "Noto Serif TC";
  font-style: italic;
}

#teachers .info .item .data span {
  font-size: 0.9rem;
  font-style: italic;
}

#teachers .teacher-swiper {
  margin-top: 50px;
}

#teachers .teacher-swiper .item {
  position: relative;
  display: grid;
  grid-template-columns: 250px 1fr;
  padding-right: 15px;
}

#teachers .teacher-swiper .item .pic {
  margin-right: -110px;
}

#teachers .teacher-swiper .item .intro {
  padding-top: 50px;
}

#teachers .teacher-swiper .item .intro .name {
  text-align: center;
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  letter-spacing: 5px;
  color: rgb(var(--kycolor-primary));
  font-weight: 700;
}

#teachers .teacher-swiper .item .intro .title {
  text-align: center;
  font-size: clamp(1.1rem, 0.5vw, 1.15rem);
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #333;
}

#teachers .teacher-swiper .item .intro p {
  font-family: "Noto Serif TC";
  line-height: 2;
}

#sec02 {
  padding: 90px 0;
  background-image: url("../images/sec-03-04.jpg");
  background-size: contain;
  background-position: left bottom;
  background-repeat: no-repeat;
  overflow: hidden;
}

#sec02 .sec02-top {
  display: grid;
  grid-template-columns: 40% 1fr;
  gap: 80px;
}

#sec02 .sec02-top .image{
  width: 100%;
}

#sec02 .title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  padding-top: 70px;
  position: relative;
  letter-spacing: 5px;
}

#sec02 .title::before {
  content: "";
  position: absolute;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: left top;
  z-index: 0;
  width: 25vw;
  height: 100px;
}

#sec02 .title span {
  position: relative;
  z-index: 1;
}

#sec02 .sec02-top .title::before {
  top: 0;
  left: -6vw;
  background-image: url("../images/sec-03-01.png");
}

#sec02 .sec02-bottom {
  padding-left: 30vw;
  margin-top: 30px;
}

#sec02 .sec02-bottom .title::before {
  top: 0px;
  left: 0;
  background-image: url("../images/sec-03-02.png");
}

#sec02 .sec02-bottom .content{
  display: flex;
  align-items: flex-end;
  flex-direction: column;
} 

#sec03 {
  padding: 90px 0;
  overflow: hidden;
}

#sec03 .sec03-top {
  display: grid;
  grid-template-columns: 55% 1fr;
  gap: 0px;
  color: #000;
  transition: all ease-in-out 0.3s;
}

.cate {
  color: rgb(var(--kycolor-blue-3));
  font-family: "Noto Serif TC";
  font-weight: 600;
}

#sec03 .sec03-top .info {
  display: flex;
  margin-bottom: 50px;
}

#sec03 .sec03-top .summary {
  font-family: "Noto Serif TC";
  font-weight: 600;
  line-height: 2;
  position: relative;
  padding-bottom: 30px;
  margin-bottom: 30px;
}

#sec03 .sec03-top .summary::after {
  content: "";
  position: absolute;
  left: 0%;
  bottom: 0;
  width: 70%;
  border-top: 1px solid #000;
}

#sec03 .sec03-list{
  margin-top: 100px;
}

#sec03 .sec03-list .sec03-item-container {
  border-top: 1px solid #dedede;
  padding: 30px 0;
}

#sec03 .sec03-list .sec03-item-container a {
  display: block;
  padding: 30px 0;
  color: #000;
  transition: all ease-in-out 0.3s;
}

#sec03 .sec03-list .sec03-item-container a:hover {
  color: #fff;
  background-color: rgba(var(--kycolor-blue-2), 0.8);
}

#sec03 .sec03-list .sec03-item-container a:hover .text p {
  color: #fff;
}

#sec03 .sec03-list .sec03-item-container a .cate{
  transition: all ease-in-out .3s;
}

#sec03 .sec03-list .sec03-item-container a:hover .cate{
  color: #fff;
}

#sec03 .sec03-item {
  display: grid;
  grid-template-columns: 150px 1fr ;
  gap: 50px;
}

#sec03 .sec03-item .info{
  line-height: 2;
}

#sec03 .sec03-item .text p {
  color: rgb(var(--kycolor-grey-1));
  transition: all ease-in-out 0.3s;
  border: 1px solid #dedede;
  border-radius: 6px;
  padding: 10px;
  margin-top: 10px;
  background-color: #f2f2f2;
}

#sec03 .card-container{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

#sec03 .card-container .card-item{
  /* background-color: #f2f2f2; */
 box-shadow: 0 0 5px 3px rgba(0,0,0, 0.05);
padding: 10px;
border-radius: 12px;
}

#sec03 .card-container .card-item .title{
  padding: 0px 0px 10px 0px;
  border-bottom: 1px solid #dedede;
  font-size: 1.15rem;
  color: rgb(var(--kycolor-grey-1));
  font-weight: 700;
  font-family: 'Noto Serif TC';
}

#sec03 .card-container .card-item .body{
  padding: 10px 0;
}

#sec03 .card-container .card-item .body p{
  font-size: 1.25rem;
  font-family: 'Noto Serif TC';
  font-weight: 700;
 color: rgb(var(--kycolor-blue-2));
}

#sec03 .card-container .card-item .body .note{
  font-size: .9rem;
  color: #666;
  font-family: 'Noto Serif TC';
}

#sec04{
  overflow: hidden;
  padding: 80px 0;
  background-color: #F9F9F9;
}

#sec04 .sec04-swiper .item{
  padding: 3px;
}
#sec04 .sec04-swiper .item a{
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  box-shadow: 0 0 3px 1px rgba(0, 0, 0, 0.05);
  height: 150px;
  transition: all ease-in-out .3s;
}
#sec04 .sec04-swiper .item a img{
  transition: all ease-in-out .3s;
}

#sec04 .sec04-swiper .item a:hover img{
  transform: scale(1.2);
}

.faq-container{
  max-width: 960px;
  margin: 0 auto;
}

.faq-container .accordion-button{
  font-size: 1.25rem;
  padding-top:20px;
  padding-bottom: 20px;
}

.faq-container .accordion-flush>.accordion-item{
  box-shadow: 0 0 10px 3px rgba(0, 0, 0, 0.02);
}

.faq-container .accordion-flush>.accordion-item + .accordion-item{
  margin-top: 5px;
}

.faq-container .accordion-item,.faq-container .accordion-flush>.accordion-item:last-child{
  border-bottom: 1px solid rgba(var(--kycolor-blue-2),.3);
}

.faq-container .accordion-button:not(.collapsed){
  background-color: #cfcce3;
  color: rgb(var(--kycolor-primary));
}

.faq-container .accordion-button:not(.collapsed)::after{
  color: #fff;
}

.faq-container .accordion-body{
  font-size: 1.15rem;
}


@media screen and (min-width: 768px) {
  .top-banner-mobile{
    display: none;
  }
}

@media screen and (min-width: 1366px) {
  /* .site-header.is-transparent {
    z-index: 0;
  } */
  /* banner */
}

@media screen and (min-width: 1400px) {
  .container {
    max-width: 1540px;
  }
}

@media screen and (min-width: 1561px) {
  #sec02 .sec02-bottom {
    padding-left: 33vw;
  }
}

@media screen and (max-width: 1560px) {
  #teachers .teacher-swiper .item {
    grid-template-columns: 200px 1fr;
  }
  #teachers .teacher-swiper .item .pic {
    margin-right: -80px;
  }
  #teachers .teacher-swiper .item .intro {
    padding-top: 20px;
  }
  #teachers .teacher-swiper .item .intro p {
    line-height: 1.8;
  }
}

@media screen and (max-width: 1365px) {
  /* banner */
  .sec-triangle {
    overflow: hidden;
  }
  /* section */
  #sec02 .sec02-top {
    grid-template-columns: 55% 1fr;
    gap: 0px;
  }
}

@media screen and (max-width: 1199px) {
  /* header */
  .site-header.is-transparent {
    padding-top: 20px;
  }
  /* footer */
  .footer-top {
    grid-template-columns: 100px 150px 1fr;
  }

  .footer-link {
    grid-template-columns: 1fr;
    gap: 10px;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
  .footer-link .link-list ul {
    justify-content: start;
    padding: 0;
    flex-wrap: wrap;
    gap: 10px 20px;
  }
  /* banner */
  .sec-triangle .content {
    left: 50px;
    top: 50px;
    width: 35%;
  }
  .sec-triangle .content h2 {
    font-size: 1.5rem;
  }
  .sec-triangle .content h4 {
    font-size: 1.15rem;
  }
  /* section */
  #sec01 {
    padding: 50px 0;
  }
  #teachers .title .text h5 {
    gap: 30px;
  }
  #teachers .info .item {
    width: 120px;
  }
  #teachers .info .item .data {
    font-size: 1.8rem;
  }
  #sec03 .sec03-top {
    grid-template-columns: 1fr;
  }
  #sec03 .sec03-top .image{
    display: none;
  }
}

@media screen and (max-width: 1023px) {
  /* header */
  .site-header.is-transparent .site-logo img {
    width: 150px;
  }
  .site-header .site-logo img {
    width: 120px;
  }
  .site-header.is-transparent .nav-top {
    padding: 10px 0 10px;
  }
  .nav-main ul {
    gap: 10px;
  }
  .site-header nav a {
    font-size: 0.8rem;
  }
  .site-header.is-transparent nav a,
  .site-header .secondary-nav ul a {
    font-size: 0.8rem;
  }

  .site-header.is-transparent .secondary-nav ul a {
    font-size: 0.8rem;
  }
  /* footer */
  .footer-consult {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .footer-bottom .info {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .xs-block {
    display: block;
  }
  /* banner */
  .sec-triangle .items {
    display: none;
  }
  .sec-triangle .content {
    width: 70%;
    left: 40px;
    top: 30px;
  }
  /* .sec-triangle .content .text::after {
    width: 40px;
    height: 40px;
    left: -10px;
    top: -10px;
  } */
  .sec-triangle .triangle {
    left: 55%;
    transform: translateX(0);
  }
  /* section */
  #sec01 .sec01-container {
    grid-template-columns: 1fr;
  }

  #sec01 .sec01-container .cover {
    display: flex;
    justify-content: center;
  }
  #teachers {
    padding: 50px 0;
  }
  #teachers .title {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  #teachers .info {
    display: flex;
    justify-content: flex-end;
  }
  #sec02 {
    padding: 50px 0;
  }
  #sec02 .sec02-top {
    grid-template-columns: 65% 1fr;
  }
  #sec02 .title {
    padding-top: 40px;
  }
  #sec02 .sec02-bottom .title::before {
    top: 0;
  }
  #sec03 {
    padding: 50px 0;
  }
  #sec03 .sec03-item {
    grid-template-columns: 120px 1fr 150px;
    gap: 15px;
  }
  #sec04{
    padding: 50px 0;
  }
}
@media screen and (max-width: 767px) {
  /* header */
  .site-header.is-transparent,
  .site-header {
    padding-top: 15px;
  }
  .site-header .site-logo img {
    width: 100px;
  }
  .site-header.is-transparent .logo-b img {
    width: 150px;
  }
  .nav-top {
    justify-content: flex-start;
    gap: 10px;
  }
  .nav-main nav ul {
    gap: 15px;
  }
  .site-header .secondary-nav {
    position: absolute;
    top: 0;
    right: 0;
  }
  .site-header .secondary-nav ul {
    gap: 0;
    overflow: hidden;
    border-bottom-left-radius: 10px;
  }
  .site-header .secondary-nav ul a {
    padding: 3px 15px;
  }
  /* footer */
  footer {
    padding: 30px 0;
    background-position: left top;
  }
  .footer-top {
    grid-template-columns: 1fr;
    margin-bottom: 30px;
  }
  .footer-bottom .title {
    flex-direction: column;
    margin-bottom: 10px;
    gap: 10px;
    align-items: flex-start;
  }
  .link-list ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-bottom: 30px;
  }
  .footer-bottom .social-link ul a {
    width: 40px;
    height: 40px;
  }
  .footer-bottom .info {
    gap: 10px;
  }
  .footer-bottom .terms ul li a {
    font-size: 0.7rem;
  }
  footer .copyright {
    font-size: 0.7rem;
  }
  /* banner */
  .top-banner{
    display: none;
  }
  .sec-triangle .content {
    position: relative;
    left: 20px;
    padding-bottom: 80px;
  }

  .sec-triangle .bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
  }
  .sec-triangle .bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 85% top;
  }
  .sec-triangle .triangle {
    width: 100%;
    left: 45%;
    height: 70%;
  }
  /* section */
  #sec01 .sec01-container .cover img {
    box-shadow: -5px 5px rgb(var(--kycolor-blue-3));
  }
  #sec01 .sec01-container .content {
    padding-top: 0;
  }
  #sec01 .sec01-container .content .text {
    grid-template-columns: 1fr;
    margin-bottom: 15px;
  }
  /* #sec01 .sec01-container .content .text > div:nth-child(2) {
    display: none;
  } */
  #teachers .title .text h5 {
    grid-template-columns: 1fr;
    gap: 10px;
    font-size: 1.1rem;
  }
  #teachers .info {
    gap: 10px;
    justify-content: center;
  }
  #teachers .info .item {
    width: 90px;
  }
  #teachers .info .item .data {
    font-size: 1.15rem;
  }
  #teachers .teacher-swiper .item {
    grid-template-columns: 150px 1fr;
  }
  #teachers .teacher-swiper .item .pic {
    margin-right: -50px;
  }
  #teachers .teacher-swiper .item .intro {
    padding-top: 10px;
  }
  #teachers .swiper-pagination {
    margin-top: 20px;
  }
  #sec02 .sec02-top {
    grid-template-columns: 1fr;
  }
  #sec02 .sec02-top .title::before {
    width: 50vw;
    left: 0;
  }
  #sec02 .sec02-bottom {
    padding-left: 0;
    margin-bottom: 100px;
  }
  #sec02 .sec02-bottom .title::before {
    width: 50vw;
  }
  #sec03 .sec03-top {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  #sec03 .sec03-item {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  #sec03 .sec03-item .image img {
    width: 100%;
  }
  #sec03 .card-container{
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 539px) {
  /* header */
  .nav-main {
    grid-template-columns: 1fr;
    gap: 15px;
    padding-left: 0;
    padding-right: 0;
  }
  .site-header .site-logo {
    display: flex;
    justify-content: center;
  }
  /* banner */
  .sec-triangle .banner-l {
    display: none;
  }
  .sec-triangle .banner-s {
    display: block;
  }
  /* footer */
  .footer-info .info .f-info-item {
    line-height: 1.5;
  }
  /* section */
}

@keyframes move-horizontal {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(200px);
  }
}

.h-move {
  animation: move-horizontal 3s ease-in-out infinite alternate;
}

@keyframes move-diagonal {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(234px, 205px);
  }
}

.v-move {
  animation: move-diagonal 4s ease-in-out infinite alternate;
}

@keyframes move-circle {
  0% {
    transform: rotate(0deg) translateX(80px) rotate(0deg);
  }
  100% {
    transform: rotate(360deg) translateX(80px) rotate(-360deg);
  }
}

.c-move {
  animation: move-circle 6s linear infinite;
}
