/*==================================================================
| Designer: Longteng Education Co.                                 |
| Author Web: https://www.ltedu.com.tw/                            |
| Designer: Elaine Chu                                             |
==================================================================*/

@charset "UTF-8";
@import url(https://fonts.googleapis.com/icon?family=Material+Icons);
@import url(https://fonts.googleapis.com/css?family=Lusitana);
@import url(https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@400;500&family=Noto+Serif+TC:wght@500;700&display=swap);

@font-face {
  font-family: 'Font Awesome 6 Free';
  font-style: normal;
  font-weight: 900;
  font-display: block;
  src: url("../webfonts/fa-solid-900.woff2");
}

:root {
  --font-Sans: 'Noto Sans TC', sans-serif;
  --font-Serif: 'Noto Serif TC', serif;
  --font-Size: 1.2em;
  --font-Title: 3rem;
  --font-p: 1.5rem;
  --normal-Blue: #38a1db;
  --normal-Yellow: #fac03d;
}

* {
  color: #000;
  font-family: var(--font-Sans);
  font-weight: 500;
}

html {
  padding: 0;
  overflow-x: hidden;
}

body {
  font-size: 1.1em;
  margin: 0;
  position: relative;
}

.affix {
  position: fixed !important;
  top: 0;
  z-index: 3;
}

@media (min-width: 768px) {
  .col-md-1-5 {
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
  }
}

header {
  background: #fff;
  z-index: 1;
  position: relative;
}

header.affix {
  box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);
}

.nav {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav li.active a {
  border-bottom: 2px solid white;
  color: black;
}

.nav__logo {
  display: inline-block;
  padding: 20px;
  font-weight: 600;
}

.nav__logo a {
  background: url(../images/logo.svg) no-repeat center center;
  width: 160px;
  height: 40px;
  display: block;
  text-indent: -9999em;
}

.nav__toggle {
  display: none;
}

.menu {
  list-style: none;
  padding-inline-start: 0;
  margin: 0;
}

.menu__item {
  display: inline-block;
  font-weight: 300;
  margin: 0px;
  padding: 5px 10px;
  transition: 0.2s ease;
}

.menu__item a {
  color: #000;
  text-decoration: none;
  cursor: pointer;
  cursor: pointer;
  padding: 10px 15px;
  border-radius: 25px;
}

.menu__item a:hover {
  background: var(--normal-Yellow);
  transition: 0.2s ease;
}

.actions {
  margin-right: 10px;
}

.actions .menu__item a:hover {
  background: var(--normal-Blue);
}

.actions .btn-action {
  color: #fff;
  background: var(--normal-Blue);
  border: var(--normal-Blue) 2px solid;
}

.actions .menu__item a.btn-action:hover {
  color: #136794;
  background: #fff;
}

.actions .btn-login {
  color: #000;
  background: #fff;
  border: var(--normal-Blue) 2px solid;  
}

.actions .menu__item a.btn-login:hover {
  background: var(--normal-Yellow);
}


@media only screen and (max-width: 1100px) {
  header {
    padding: 10px 0;
  }

  .nav {
    transition: 0.3s ease;
    display: block;
  }

  .nav.display {
    width: 100vw;
    height: 100vh;
    position: fixed;
    display: block;
    background: rgb(255, 255, 255, .97);
    left: 0;
    right: 0;        
    z-index: 3;
  }

  .nav__logo {
    display: inline-block;
    padding: 15px;
    align-self: center;
  }

  .nav__toggle {
    display: block;
    float: right;
    padding: 22px 30px;
    cursor: pointer;
    transition: 0.3 ease;
  }

  .nav.display .nav__toggle {
    position: absolute;
    right: 0;
    top: 10px;
  }

  .nav__toggle:hover {
    color: #D444DD;
    transition: 0.3s ease;
  }

  .menu {
    width: 100%;
    padding-inline-start: 20px;
  }

  .main.menu {
    display: none;
  }

  .nav.display .main.menu {
    display: block;
  }

  .menu.actions {
    width: auto;
  }

  .menu__item {
    opacity: 0;
    text-align: left;
    padding: 10px 15px;
    margin: 0px;
    transition: 0.3s ease;
  }

  .menu__item a {
    color: #000;
    display: block;
    padding: 10px;
    text-decoration: none;
    cursor: pointer;
    transition: 0.3s ease;
  }

  .menu__item a:hover {
    transition: 0.3s ease;
    transform: translateX(5px);
    color: #000;
  }

  .menu.actions {
    padding-inline-start: 0;
    margin-right: 0;
    float: right;
  }

  .menu.actions .menu__item {
    opacity: 1;
  }

  .nav.display .menu.actions {
    position: absolute;
    top: 10px;
    right: 75px;
  }

  .menu__item.display {
    display: block;
    -webkit-animation: showMenuItems 0.6s ease;
    animation: showMenuItems 0.6s ease;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
  }

  .actions .btn-login {
    display: none;
  }

  .menu__item.display:nth-child(1) {
    -webkit-animation-delay: 0.1s;
    animation-delay: 0.1s;
  }

  .menu__item.display:nth-child(2) {
    -webkit-animation-delay: 0.2s;
    animation-delay: 0.2s;
  }

  .menu__item.display:nth-child(3) {
    -webkit-animation-delay: 0.3s;
    animation-delay: 0.3s;
  }

  .menu__item.display:nth-child(4) {
    -webkit-animation-delay: 0.4s;
    animation-delay: 0.4s;
  }

  .menu__item.display:nth-child(5) {
    -webkit-animation-delay: 0.5s;
    animation-delay: 0.5s;
  }

  .menu__item.display:nth-child(6) {
    -webkit-animation-delay: 0.6s;
    animation-delay: 0.6s;
  }
}

@-webkit-keyframes showMenuItems {
  0% {
    opacity: 0;
    transform: translate3d(40px, 0, 0);
  }

  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes showMenuItems {
  0% {
    opacity: 0;
    transform: translate3d(40px, 0, 0);
  }

  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@media (max-width: 470px) {
  .menu.actions {
    position: absolute;
    right: 55px;
    top: 10px;
  }

  .nav.display .menu.actions {
    right: 55px;
  }
}

@media (max-width: 400px) {
  .menu__item a {
    font-size: 1rem;
  }

  .nav__logo a {
    width: 140px;
    height: 35px;
  }
}

@media (max-width: 375px) {
  .nav__logo a {
    width: 120px;
  }

  .menu__item a {
    font-size: 1rem;
  }

  .nav__toggle {
    padding: 20px 25px;
  }

  .menu.actions {
    right: 50px;
  }
}

section {
  padding: 2rem 0;
  min-height: 100vh;
  position: relative;
}

section .row {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

img {
  max-width: 100%;
}

#intro {
  overflow: hidden;
  background: url(../images/bg-intro.png) no-repeat bottom, var(--normal-Blue);
  background-size: cover;
  padding: 0;
}
#intro .row {
  position: relative;
  z-index: 1;
  height: 100vh;
}
#intro [class*="col-"] {
  text-align: center;
  position: relative;
  height: 100%;
}

.container {
  max-width: 70%;
}

section {
  padding: 5rem 0;
}

h1 {
  background: url(../images/title-web.png) no-repeat center;
  background-size: contain;
  text-indent: -999em;
  display: block;
  width: 100%;
  height: 35vh;
  margin: auto;
  margin-right: -13%;
  margin-top: 8%;
}

.slogan {
  background: url(../images/slogan.png) no-repeat center;
  background-size: contain;
  text-indent: -999em;
  display: block;
  width: 800px;
  height: 275px;
  margin: -6rem auto 0;
  margin-right: 3%;
}

.girl {
  position: absolute;
  bottom: 0;
  left: 60px;
}

.daniel {
  /* position: absolute; */
  position: relative;
  z-index: 1;
  bottom: -10%;
  right: 15%;
  height: 96vh;
}

.daniel2 {
  position: absolute;
  bottom: -50px;
  right: 10%;
  height: 65vh;
}

.deco-txt {
  position: absolute;
  /* position: relative; */
  z-index: 2;
  bottom: 150px;
  height: 35vh;
  right: 7%;
  left: -15%;
  -webkit-filter: drop-shadow(1px 1px 10px #247dad);
  -moz-filter: drop-shadow(1px 1px 10px #247dad);
  -ms-filter: drop-shadow(1px 1px 10px #247dad);
  -o-filter: drop-shadow(1px 1px 10px #247dad);
}

@media (max-width:1740px) {    
  .girl {
    height: 40vh;
  }
}
@media (max-width:1440px) {
  .daniel {    
    right: 2%;
  }  
  .daniel2 {     
    right: 3%;
  }
  .deco-txt {
    height: auto;
    left: -6%;
  }
  .slogan {
    width: 50vw;
    margin-right: 0;
  }
}

@media (max-width: 1280px) {
  section {
    padding: 2.5rem 0;
  }

  .container {
    max-width: 95%;
  }
    
  .daniel2 {   
    height: 40vh;
  }
}
@media (max-width:1190px) {
  .slogan {
    height: 180px;
  }
  .daniel {   
    bottom: -12%;
    height: auto;
  }
}
@media (max-width:991px) {
  .daniel {
    bottom: -15%;
  }
}
@media (max-width: 768px) {
  #intro {
    height: auto;
    min-height: auto;
  }
  #intro .row {
    height: auto;
  }
  h1 {
    margin-right: auto;
  }
  .slogan {
    width: 100%;
    height: 200px;
  }
  .container {
    padding-right: 10px;
    padding-left: 10px;
  }
  .daniel {
      bottom: -10%;
      height: 70vh;
      width: auto;
  }
  .girl {
    height: 18vh;
    left: 30px;
  }  
  .deco-txt {
    height: auto;
    width: 75%;
    margin: auto;
    left: 0;
    right: 0;
    bottom: 50px;
  }
}
@media (max-width:600px) {
  .slogan {
    width: 100%;
    height: 150px;
  }
  .girl {
    display: none;
  }  
  .daniel2 {   
    height: 30vh;
  }
}
   
@media (max-width:550px) {
  .slogan {
    height: 100px;
  }
} 


p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.btn-cta {
  background: url(../images/btn-cta.png) no-repeat center;
  background-size: contain;
  text-indent: -999em;
  display: block;
  width: 400px;
  height: 90px;
  margin: auto;
  margin-right: 20%;
}

.btn-cta:hover {
  background: url(../images/btn-cta-hover.png) no-repeat center;
  background-size: contain;
}

.btn-cta-2 {
  background: url(../images/btn-cta-2.png) no-repeat center;
  background-size: contain;
  text-indent: -999em;
  display: block;
  width: 350px;
  height: 70px;
  margin: auto;
}

.btn-cta-2:hover {
  background: url(../images/btn-cta-2-hover.png) no-repeat center;
  background-size: contain;
}
.btn-cta-3 {
  background: url(../images/btn-cta-3.png) no-repeat center;
  background-size: contain;
  text-indent: -999em;
  display: block;
  width: 450px;
  height: 120px;
  margin: auto;
}

.btn-cta-3:hover {
  background: url(../images/btn-cta-3-hover.png) no-repeat center;
  background-size: contain;
}

@media (max-width:1440px) {  
  .btn-cta-2,
  .btn-cta {
    width: 280px;
    height: 75px;
  }
}
@media (max-width:768px) {
  .btn-cta {
    margin-right: auto; 
  }
  .btn-cta-2,
  .btn-cta {
    width: 280px;
    height: 85px;
  }
}
@media (max-width:768px) {
  .btn-cta {
    margin-right: auto; 
  }
  .btn-cta-2 {
    width: 330px;
    height: 85px;
  }
  .btn-cta {
    width: 280px;
    height: 85px;
  }
}
@media (max-width:480px) {
  .btn-cta-3 {
    width: 320px;
    height: 85px;
  }
}
@media (max-width:375px) {
  .btn-cta,
  .btn-cta-2,
  .btn-cta-3 {
    width: 90%;
    height: 85px;
  }
}
h2 {
  font-size: 2.4rem;
  font-weight: 600;
  margin-bottom: 2rem;
}

h3 {
  font-size: 1.7rem;
  font-weight: 700;
}


@media (max-width: 1280px) {
  h1 {
    font-size: 2.2rem;
    font-weight: 600;
  }

  h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
  }

  h3 {
    font-size: 1.3rem;
  }

  p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
  }

}

@media (max-width: 500px) {
  h1 {
    font-size: 2.6rem;
  }

  h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }

  h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }

  p {
    font-size: 1rem;
    margin-bottom: 1.2rem;
  }
}

@media (max-width: 400px) {
  h1 {
    font-size: 2.6rem;
  }

  h2 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
  }

  h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
  }

  p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
  }
}

section .nav {
  text-align: center;
  display: block;
}

section .nav.nav-pills {
  text-align: left;
}

section .nav.nav-pills+p {
  margin-top: 1.5rem;
}

section .nav li {
  display: inline-block;
}

section .nav-item a {
  display: flex;
  align-self: center;
  color: #000;
  border: #000 solid 1px;
  margin-bottom: 5px;
}

section .nav-pills .nav-link.active {
  color: #000;
  background: var(--normal-Yellow);
  border-color: var(--normal-Yellow);
}

section .nav-item a span {
  margin-right: 5px;
}

section .nav-pills .nav-link.active span {
  color: #000;
}

section .btn-link {
  color: var(--normal-Blue);
  font-size: 2rem;
  font-weight: 600;
  background: transparent;
  text-transform: none;
  border: none;
  padding: 0;
  border-radius: 0;
}

section .btn-link:hover {
  color: #000;
}

/* mouse */
.mouse {
  position: absolute;
  color: #fff;
  font-size: 1em;
  user-select: none;
  pointer-events: none;
  animation: animate 7.5s linear infinite;
  z-index: 999;
}

.mouse::before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

@keyframes animate {
  0% {
    transform: rotate(360deg);
  }

  100% {
    transform: rotate(0deg);
  }
}

.mouse span {
  position: absolute;
  top: -100px;
  text-transform: uppercase;
  display: inline-block;
  transform-origin: 0 100px;
}

/* circle */
.circle-wrap {
  position: absolute;
  right: 13%;
  top: 11%;
  border: #fff solid 2px;
  border-radius: 50%;
  padding: 8px;
}

.circle {
  margin: 0 auto;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  font-weight: bold;
  animation: spinZ 20s linear infinite;
  text-align: center;
}

.circle span {
  color: #fff;
  position: absolute;
  display: inline-block;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  text-transform: uppercase;
  font-size: 14px;
  transition: all 0.5s cubic-bezier(0, 0, 0, 1);
}

@keyframes spinZ {
  0% {
    transform: rotateZ(360deg);
  }

  100% {
    transform: rotateZ(0deg);
  }
}
@media (max-width:1520px) { 
  .circle-wrap {
    border: #fff solid 1px;
    right: 13%;
    top: 13%;
  }
  .circle {
    width: 100px;
    height: 100px;
  }
  .circle span {
    font-size: 12px;
  }
}
@media (max-width:1440px) {
  .circle-wrap {
      right: 9%;
      top: 13%;
  }
}
@media (max-width:1190px) {
  .circle-wrap {
      right: 4%;
      top: 23%;
  }
}
@media (max-width:991px) {
  .circle-wrap {
      left: 8%;
      right: auto;
      top: 10%;
  }
}
@media (max-width:768px) {
  .circle-wrap {
    left: 10%;
    right: auto;
    top: 5%;
  }
}
/*marquee*/
#intro .marquee_container {
  transform: rotate(-10deg);
  transform-origin: center;
  position: absolute;
  right: -10%;
  bottom: 11%;
  z-index: 1;
}

.marquee_container {
  position: absolute;
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  background: var(--normal-Yellow);
  padding: 0.2rem 0;
}

.marquee {
  display: inline-block;
  animation: marquee 15s linear infinite;
}

@keyframes marquee {
  from {
    transform: translate3d(-100%, 0, 0);
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

.marquee span {
  display: inline-block;
  margin-right: 10px;
}

@media (max-width:1440px) {    
  #intro .marquee_container {
    bottom: 8%;
  }
}

@media (max-width:1120px) {    
  #intro .marquee_container {
    bottom: 5%;
  }
}
@media (max-width:768px) {
  #intro .marquee_container {
    bottom: 2%;
    transform: rotate(-10deg);
  }
}
@media (max-width:650px) {
  #intro .marquee_container {
    bottom: 0%;
  }
}

footer p {
  font-size: 1rem;
}

@media (max-width: 1280px) {
  footer {
    text-align: center;
  }

  footer img {
    max-width: 200px;
    margin: auto;
    display: block;
  }

  section .nav.nav-pills {
    text-align: center;
  }

  section .nav.nav-pills .nav-link {
    padding: .5rem;
    font-size: 1rem;
  }

  section .btn-link {
    font-size: 1.5rem;
  }

}

@media (max-width: 414px) {
  section .nav.nav-pills .nav-link {
    display: flex;
    align-items: center;
  }

}

@media (max-width: 375px) {
  section .btn-link {
    font-size: 1.2rem;
    font-weight: 600;
  }

  section .nav.nav-pills .nav-link {
    font-size: .9rem;
  }

  section .nav.nav-pills+p {
    margin-top: .5rem;
  }
}

/* top */
.btn-top,
.btn-top:hover {
  background: #fff;
  display: block;
  color: #000;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  position: fixed;
  z-index: 1;
  opacity: 0;
  text-indent: 4px;
  transition: all 0.2s linear;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.btn-top {
  bottom: 35px;
  right: 35px;
}

.btn-top:hover {
  color: #fff;
  background: #000;
}

.btn-top:hover span {
  color: #fff;
}

.btn-top.show {
  opacity: 1;
  cursor: pointer;
}

.btn-top:hover {
  text-decoration: none;
}

.btn-top span {
  line-height: 2.3rem;
}

@media(max-width:767px) {
  .btn-top {
    bottom: 20px;
    right: 20px;
  }
}

@media(max-width:645px) {
  .btn-top {
    bottom: 10px;
    right: 10px;
  }
}

/* description */
#description {
  background: url(../images/bg-description.png) no-repeat top, var(--normal-Yellow);
  background-size: cover;
  text-align: center;
  overflow: hidden;
}
#description .container {
  position: relative;
  z-index: 1;
}
.title-bk {
  color: #fff;
  background: url(../images/bg-title-bk.png) no-repeat center;
  background-size: contain;
  padding: 20px;
}

.title-y {
  color: #000;
  background: url(../images/bg-title-y.png) no-repeat center;
  background-size: contain;
  padding: 20px;
}

.title-wt {
  color: #000;
  background: url(../images/bg-title-wt.png) no-repeat center;
  background-size: contain;
  padding: 20px;
}

#description p {
  font-size: 1.6rem;
  font-weight: 500;
}
@media (max-width:991px) {
  #description p {
    font-size: 1.2rem;
  }
}
@media (max-width:768px) {
  #description p {
    font-size: 1.2rem;
  }
}
@media (max-width:600px) {
  #description p {
    font-size: 1rem;
  }
}
#time {
  background: url(../images/bg-grid.png) no-repeat;
  background-size: cover;
  text-align: center;
}

#time p {
  font-size: 1.8rem;
  font-weight: 700;
}

#time .row {
  align-items: baseline;
}

#time .row p {
  font-size: 1.2rem;
  font-weight: 500;
  margin-top: 10px
}

#time img {
  -webkit-filter: drop-shadow(1px 1px 10px rgb(0, 0, 0, .6));
  -moz-filter: drop-shadow(1px 1px 10px rgb(0, 0, 0, .6));
  -ms-filter: drop-shadow(1px 1px 10px rgb(0, 0, 0, .6));
  -o-filter: drop-shadow(1px 1px 10px rgb(0, 0, 0, .6));
}
@media (max-width:1750px) {
  #time .row p {
    font-size: 1rem;
  }
}
@media (max-width:1650px) {
  #time .row p {
    font-size: 1.3rem;
  }
}
@media (max-width:1590px) {
  #time .row p {
    font-size: 1.2rem;
  }
}
@media (max-width:1485px) {
  #time .row p {
    font-size: 1.4rem;
  }
}
@media (max-width:1280px) {
  #time .row p {
    font-size: 1rem;
  }
}
@media (max-width:1175px) {
  #time .row p {
    font-size: 1.2rem;
  }
}
@media (max-width:780px) {
  #time .row p {
    font-size: 1rem;
  }
}
@media (max-width:575px) {
  #time .row p {
    font-size: 1.1rem;
  }
}
#award {
  background: url(../images/bg-award.png) no-repeat top, var(--normal-Blue);
  background-size: cover;
  text-align: center;
}

#award h2 {
  position: relative;
  z-index: 1;
}

#award p {
  color: #fff;
  font-size: 1.6rem;
}

.bg-y {
  color: #000;
  background: #FFE400;
}
#award .bg-y {
  padding: 5rem 2rem 2rem;
  margin-top: -5rem;
  color: #000;
}
#award .card {
  position: relative;
  padding: 20px;
  padding-top: 80px;
  border-radius: 20px;
}

#award .card p {
  color: #000;
  margin-bottom: 10px;
  border-radius: 20px;
}

#award .card img {
  height: 140px;
  max-width: fit-content;
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  top: -80px;
}

#award .row {
  margin-top: 130px;
  margin-bottom: 50px;
}
.bg-blue {
    background: rgba(0, 61, 158, 0.8);
    padding: 11rem 2rem 2rem;
    margin-top: -12rem;
}
#award .btn-cta {
  margin: auto;
  margin-top: -2rem;
}
@media (max-width:1024px) {
  #award p {
    font-size: 1.2rem;
  }
  #award .card {
    padding-top: 40px;
  }
  #award .card img {
    height: 100px;
  }
  
  .bg-blue {
    padding: 5rem 2rem 2rem;
  }
}
@media (max-width:1024px) {
  #award .card {
    margin-bottom: 100px;
  }
}
@media (max-width:400px) {
  #award .bg-y {
    padding: 3rem 2rem 2rem;
    margin-top: -3rem;
  }
}

#notice {
  background: url(../images/bg-grid.png) no-repeat;
  background-size: cover;
  text-align: center;
}

#notice h2 {
  position: relative;
  z-index: 2;
}

#notice .card {
  margin-top: -4.5rem;
  padding-top: 2rem;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.902);
}

#notice .card-body {
  padding: 2rem;
}

#notice ul {
  list-style-type: decimal;
  text-align: left;
}

#notice ul li {
  font-size: 1.5rem;
  line-height: 2.6rem;
}

#notice {
  overflow: hidden;
}

#notice .marquee_container {
  transform: rotate(-10deg);
  transform-origin: center;
  position: absolute;
  right: -40%;
  bottom: 8%;
}

#notice .marquee_container.bk {
  transform: rotate(-40deg);
  background: #000;
  right: -40%;
  bottom: 10%;
}

#notice .marquee_container.bk span {
  color: var(--normal-Yellow);
}
@media (max-width:1440px) {
  #notice .marquee_container {
    right: -10%;
    bottom: 8%;
  }
  #notice .marquee_container.bk {
    right: -20%;
  }
}
@media (max-width:1200px) {
  #notice .marquee_container {
    right: -10%;
    bottom: 3%;
  }
}
@media (max-width:1280px) {
  #notice ul li {
    font-size: 1.4rem;
    line-height: 2.2rem;
  }
}
@media (max-width:1024px) {
  #notice ul li {
    font-size: 1.2rem;
    line-height: 2rem;
  }
}

@media (max-width:768px) {
  #notice .marquee_container {
    bottom: 2%;
  }
  #notice .card {
    padding-top: 3rem;
  }      
  #notice .card-body {
    padding: 1rem;
  }
}
@media (max-width:600px) {
  #notice .marquee_container {
    bottom: 0;
    right: -5%;
  }
  #notice .marquee_container.bk {
    right: -30%;
    bottom: 0;
  }
}
@media (max-width:350px) {
  #notice .marquee_container {
    bottom: -10px;
    right: -5%;
  }
}
/* timeline */
#timeline {
  background: url(../images/bg-tineline.png) no-repeat bottom, var(--normal-Yellow);
  background-size: contain;
  text-align: center;
}

.timeline {
  margin: 2rem 0;
}

.timeline>.column {
  display: flex;
  flex-direction: column;
  position: relative;
  margin: 1rem;
}

.timeline>.column::before {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  transform: translatex(-50%);
  border: 1px solid rgba(49, 49, 49, 0.5);
  height: calc(100% / 5 * 4);
  /* z-index: -1; */
}

.timeline .date {
  text-align: left;
  display: block;
  padding: 10px 0;
  border-bottom: #444 solid 1px;
  margin: 0 20px;
}

.timeline .column .title {
  text-align: left;
}

/* .timeline>.column>.row:nth-child(odd) .date::before {
  content: "";
  position: absolute;
  left: -20px;
  border: 10px solid rgba(0, 0, 0, 0);
  border-right-color: #fff;
} */

.timeline>.column>.row {
  display: flex;
}

/* row text */
.timeline>.column>.row>.text {
  flex: 1 1 calc(50% - 50px);
  position: relative;
  background: #fff;
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175);
}

.timeline>.column>.row h3 {
  color: #fff;
  background-color: black;
  padding: 1rem;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}

.timeline>.column>.row p {
  padding: 1rem;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}

/* row icon */
.timeline>.column>.row>.icon {
  flex: 1 1 100px;
}

.timeline>.column>.row>.icon>div {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  margin: 10px auto;
  background: #fff;
  box-shadow: 0 1rem 3rem rgb(0 0 0 / 18%);
  position: relative;
}

.timeline>.column>.row>div i {
  display: block;
  font-size: 1.5rem;
  color: rgb(0, 85, 255);
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* row time */
.timeline>.column>.row>.time {
  flex: 1 1 calc(50% - 50px);
  padding-top: 1rem;
  opacity: 0;
}

.timeline>.column>.row {
  align-items: inherit;
}

.timeline>.column>.row:nth-child(odd) {
  flex-direction: row-reverse;
}

.timeline>.column>.row:nth-child(odd)>div:last-child {
  text-align: end;
}

.timeline>.column>.row:nth-child(odd) h3::before {
  content: "";
  position: absolute;
  left: -20px;
  border: 10px solid rgba(0, 0, 0, 0);
  border-right-color: black;
}

.timeline>.column>.row:nth-child(even) h3::after {
  content: "";
  position: absolute;
  right: -20px;
  border: 10px solid rgba(0, 0, 0, 0);
  border-left-color: black;
}


/* mobile version */
@media (max-width: 768px) {
  .timeline>.column::before {
    left: 35px;
    height: 100%;
    /* height: calc(100% / 5 * 4); */
    /* top: 50px; */
  }

  .timeline>.column>.row {
    flex-flow: column wrap;
    height: 250px;
    margin-bottom: 2rem;
  }

  .timeline>.column>.row:nth-child(odd) {
    flex-direction: column;
  }

  .timeline>.column>.row:nth-child(odd)>.time:last-child {
    text-align: start;
    display: none;
  }

  .timeline>.column>.row>.icon {
    order: 1;
    flex: 1 1 100%;
    padding-top: 10px;
    width: 100px;
  }

  .timeline>.column>.row>.time {
    order: 2;
    flex: 1 1 50px;
    width: calc(100% - 100px);
    display: none;
  }

  .timeline>.column>.row>.text {
    order: 3;
    flex: 1 1 calc(100% - 50px);
    width: calc(100% - 100px);
    padding: 10px;
  }

  .timeline>.column>.row:nth-child(even) h3::before {
    content: "";
    position: absolute;
    left: -20px;
    border: 10px solid rgba(0, 0, 0, 0);
    border-right-color: black;
  }

  .timeline>.column>.row:nth-child(even) h3::after {
    border: none;
  }
  .timeline>.column>.row p {
    text-align: left;
  }
}

@media (max-width:395px) {
  .timeline>.column>.row {
      margin-bottom: 4rem;
  }
  
}

#rank {
    background: hsl(0, 0%, 94%);
    position: relative;
    overflow: hidden;
    text-align: center;
}
/* #rank .title-bk {
    padding: 40px;
} */
#rank .title-bk span {
  color: #fff;
  font-size: 1.2rem;
  display: block;
  margin-top: 15px;
}

#rank .bg-y {
  margin: 5rem 0;
  padding: 3rem 2rem;
  font-size: 2rem;
}
#rank .container {
    position: relative;
    z-index: 1;
    padding: 24px;
}

#confetti-canvas {
    position: absolute;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 2 !important;
    display: block;
}
@media (max-width:768px) {
  #rank .title-bk span {
    margin: 0;
  }
  #rank .bg-y {
    font-size: 1.2rem;
  }
}

/* FAQ */
#FAQ {
  background: url(../images/bg-FAQ.png) no-repeat top, #E9E4E3;
  background-size: cover;
  text-align: center;
  overflow: hidden;
}

#FAQ .card .btn,
#FAQ .card p {
  text-align: left;
}
#FAQ .card p {
    font-size: 1.4rem;
}
#FAQ .card-header {
  color: #4c4c4c;
  font-size: 1.6rem;
  background: rgba(255, 255, 255, 0.8);
  padding: .75rem 1.25rem;
}
#FAQ .card-header:hover {
  text-decoration: none;
}
#FAQ .card-header[aria-expanded="true"] {
  color: #000;
  background: #fff;
}

#FAQ .card {
  background: transparent;
  border: none;
}
#FAQ .card +.card {
  margin-top: 1rem;
}

#FAQ .marquee_container {
  transform: rotate(-10deg);
  transform-origin: center;
  position: absolute;
  right: -20%;
  bottom: 8%;
}

@media (max-width:1240px) {
  #FAQ .card-header {
    font-size: 1.4rem;
  }
  #FAQ .card p {
    font-size: 1.2rem;
  }
  #FAQ .marquee_container {
    right: -3%;
    bottom: 4%;
  }
}
@media (max-width:768px) {
  #FAQ .card-header {
    font-size: 1.2rem;
  }
  #FAQ .card p {
    font-size: 1rem;
  }
  #FAQ .marquee_container {
    right: -2%;
    bottom: 1%;
  }
}
@media (max-width:500px) {
  #FAQ .marquee_container {
    right: -1%;
    bottom: -1%
  }
}

/* chart */

.highcharts-figure,
.highcharts-data-table table {
    min-width: 300px;
    max-width: 900px;
    margin: 2em auto;
}

#container {
    height: 400px;
}

.highcharts-data-table table {
    font-family: Verdana, sans-serif;
    border-collapse: collapse;
    border: 1px solid var(--highcharts-neutral-color-10, #e6e6e6);
    margin: 10px auto;
    text-align: center;
    width: 100%;
    max-width: 500px;
}

.highcharts-data-table caption {
    padding: 1em 0;
    font-size: 1.2em;
    color: var(--highcharts-neutral-color-60, #666);
}

.highcharts-data-table th {
    font-weight: 600;
    padding: 0.5em;
}

.highcharts-data-table td,
.highcharts-data-table th,
.highcharts-data-table caption {
    padding: 0.5em;
}

.highcharts-data-table thead tr,
.highcharts-data-table tbody tr:nth-child(even) {
    background: var(--highcharts-neutral-color-3, #f7f7f7);
}

.highcharts-description {
    margin: 0.3rem 10px;
}
