@import url(//fonts.googleapis.com/css?family=Roboto:400,300,100,700,100italic,300italic,400italic,700italic);
@import url(//fonts.googleapis.com/earlyaccess/notosanstc.css);
html {
  position: relative;
  min-height: 100%;
}

body:lang(zh_t) {
  font-family: 'Noto Sans TC', "Microsoft JhengHei", PMingLiU, MingLiU,serif;
  font-size: 0.9em;
}

body:lang(zh_s) {
  font-family: 'Tahoma', "Microsoft JhengHei", PMingLiU, MingLiU,serif;
  font-size: 0.9em;
}

body:lang(en) {
  font-family: 'Roboto',Helvetica,Arial,sans-serif;
  font-size: 1em;
}

body {
  background: #fff;
  font-family: 'Noto Sans TC','Roboto', sans-serif;
  font-weight: 400;
  color: #64686d;
  line-height: 20px;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  font-family: 'Roboto', sans-serif;
  color: #237b82;
}

p {
  font-size: 1.1em;
}

.content-container {
  margin-bottom: 120px;
  margin-top: 200px;
}

a {
  color: #45aed6;
  -webkit-transition: color 400ms, background-color 400ms;
  -moz-transition: color 400ms, background-color 400ms;
  -o-transition: color 400ms, background-color 400ms;
  transition: color 400ms, background-color 400ms;
}
a:hover, a:focus {
  text-decoration: none;
  color: #2a95be;
}

hr {
  border-top: 1px solid #e5e5e5;
  border-bottom: 1px solid #fff;
}

.gradiant {
  background-image: -moz-linear-gradient(90deg, #2caab3 0%, #2c8cb3 100%);
  background-image: -webkit-linear-gradient(90deg, #2caab3 0%, #2c8cb3 100%);
  background-image: -ms-linear-gradient(90deg, #2caab3 0%, #2c8cb3 100%);
}

.gradiant-horizontal {
  background-image: -moz-linear-gradient(4deg, #2caab3 0%, #2c8cb3 100%);
  background-image: -webkit-linear-gradient(4deg, #2caab3 0%, #2c8cb3 100%);
  background-image: -ms-linear-gradient(4deg, #2caab3 0%, #2c8cb3 100%);
}

.section-header {
  margin-bottom: 10px;
}
.section-header .section-title {
  color: #237b82;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 0px;
  margin: 0 0 20px;
}

.btn {
  border-width: 0;
  border-bottom-width: 3px;
  border-radius: 3px;
  min-width: 150px;
}
.btn.btn-primary {
  background: #ffb001;
  border-color: #ff7d49;
  border-radius: 20px;
}
.btn.btn-primary:hover, .btn.btn-primary:focus {
  background: #ff7d49;
}
.btn.btn-secondary {
  background: #2caab3;
  border-color: rgba(127, 210, 217, 0.7);
  border-radius: 20px;
}
.btn.btn-secondary:hover, .btn.btn-secondary:focus {
  background: rgba(127, 210, 217, 0.7);
}

.column-title {
  margin-top: 0;
  padding-bottom: 15px;
  border-bottom: 1px solid #eee;
  margin-bottom: 15px;
  position: relative;
}
.column-title:after {
  content: " ";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 50%;
  border-bottom: 1px solid #ffb001;
}

ul.nostyle {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}
ul.nostyle i {
  color: #ffb001;
}

.scaleIn {
  -webkit-animation-name: scaleIn;
  animation-name: scaleIn;
}

@-webkit-keyframes scaleIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes scaleIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
}
/*************************
*******Header******
**************************/
#header .top {
  position: relative;
  text-align: center;
  background: #FFFFFF;
  padding: 30px 0 10px;
}
@media (min-width: 768px) {
  #header .top {
    padding: 30px 0 10px;
  }
}

.navbar-main {
  /* border-color: #e7e7e7; */
  /* border-color: #F8F8F8; */
  border-radius: 0;
  border: none;
  background-color: #fff;
  color: #2caab3;
}

@media (max-width: 991.98px) {
  .navbar-main {
    background-color: #2caab3;
    color: white;
  }

  .navbar-main .navbar-nav > li > a {
    color: white !important;
  }

  .navbar-main .nav > li > a {
    color: white !important;
  }

  .nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
    background-color: #2caab3;
    color: white;
  }

  .dropdown-toggle::after {
    display: none;
  }
}
@media (min-width: 768px) {
  .navbar-nav > li > a {
    padding: 0;
    margin: 0px 20px;
  }
}
.navbar-main .navbar-nav > li > a {
  color: #2caab3 !important;
  text-transform: uppercase;
  font-weight: 400;
  font-size: 16px;
  -webkit-transition: none;
  transition: none;
}

.navbar-main .dropdown-menu {
  background-color: #2caab3;
  border-radius: 0.5rem;
  border: 0;
}

.navbar-main .dropdown-menu a {
  padding: 10px 20px;
  color: #FFF;
  display: block;
}

.navbar-main .dropdown-item:hover {
  color: #45aed6;
}

a.anchor {
  display: block;
  position: relative;
  top: -200px;
  visibility: hidden;
}
@media (max-width: 991.98px) {
  a.anchor {
    top: -150px;
  }
}

.full-height {
  height: 100%;
}

@media (max-width: 991.98px) {
  .md-space {
    margin-bottom: 40px;
  }
}

.navbar.navbar-default {
  border: 0;
  border-radius: 0;
  margin-bottom: 0;
}
.navbar.navbar-default .navbar-toggle {
  margin-top: 32px;
}
.navbar.navbar-default .navbar-brand {
  height: auto;
  padding: 22px 0px 5px;
  margin-right: 0.5em;
}
.navbar.navbar-default .navbar-toggler {
  margin-top: 30px;
}

@media (max-width: 767.98px) {
  #navbarResponsive {
    clear: both;
    width: 100%;
  }
}
#main-menu.navbar-default .navbar-nav > li > a {
  margin-top: 0.05em;
  margin-bottom: 0.05em;
  margin-left: 0.6em;
  margin-right: 0.6em;
}

@media (min-width: 768px) {
  #main-menu.navbar-default {
    background: rgba(255, 255, 255, 0.9);
    -webkit-box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.1);
    padding-top: 0;
  }
  #main-menu.navbar-default .navbar-nav > li > a {
    padding-top: 40px;
    padding-bottom: 10px;
    margin-left: 0.1em;
    margin-right: 0.1em;
  }
  #main-menu.navbar-default .navbar-nav > li.active > a, #main-menu.navbar-default .navbar-nav > li.open > a, #main-menu.navbar-default .navbar-nav > li:hover > a {
    background: transparent;
    padding-top: 37px;
    border-top: 3px solid #45aed6;
  }
  #main-menu.navbar-default .dropdown-menu {
    min-width: 220px;
    background-color: rgba(69, 174, 214, 0.1);
    border: 0;
    border-radius: 0;
    box-shadow: none;
    -webkit-box-shadow: none;
    background-clip: inherit;
  }
  #main-menu.navbar-default .dropdown-menu > a {
    border-left: 3px solid transparent;
  }
  #main-menu.navbar-default .dropdown-menu .active, #main-menu.navbar-default .dropdown-menu .open, #main-menu.navbar-default .dropdown-menu :hover {
    border-left-color: #45aed6;
    color: #45aed6;
    background-color: transparent;
  }
  #main-menu.navbar-default .dropdown-menu .dropdown-item {
    padding-top: 5px;
    padding-bottom: 5px;
    font-size: 0.9em;
  }
}
/***********************
********* Footer ******
************************/
#footer {
  padding-top: 12px;
  padding-bottom: 30px;
  color: #fff;
  background: #2caab3;
  position: absolute;
  left: 0;
  bottom: 0;
  height: 100px;
  width: 100%;
  overflow: hidden;
}
#footer a {
  color: #fff;
}
#footer a:hover {
  color: #45aed6;
}
#footer ul {
  list-style: none;
  padding: 0;
  margin: 0 -7.5px;
}
#footer ul > li {
  display: inline-block;
  margin: 0 7.5px;
}

@media only screen and (min-width: 768px) {
  #footer .social-icons {
    float: right;
  }
}
.form-control {
  box-shadow: none;
  -webkit-box-shadow: none;
}

.help-block {
  color: #ff5722;
}

.page-title {
  color: #237b82;
  margin-top: 25px;
  margin-bottom: 25px;
}

.step-title {
  color: #237b82;
  background-color: rgba(40, 170, 179, 0.15);
  padding: 15px 10px;
  margin-bottom: 20px;
  font-size: 1.15em;
  text-align: center;
}

.text-info {
  color: #2caab3;
}

.bg-info {
  background-color: #2caab3 !important;
}

#err-alert {
  margin-top: 200px;
}

.qr-code {
  width: 100px;
  position: fixed;
  right: 0;
  bottom: 0;
}
@media only screen and (min-width: 768px) {
  .qr-code {
    width: 200px;
  }
}

.logo_l {
  width: 250px;
}

.logo_s {
  width: 140px;
}

body {
  background-color: rgba(127, 210, 217, 0.7);
}

#main-slider {
  overflow: hidden;
  margin-top: 120px;
}
#main-slider .item {
  height: 600px;
  background-repeat: no-repeat;
  background-position: 50% 0;
  background-size: cover;
}
#main-slider .slider-inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(100% - env(safe-area-inset-bottom));
  color: #fff;
}
#main-slider .slider-inner .text-md-center {
  margin-top: 400px;
}
#main-slider .slider-inner h2 {
  font-size: 2em;
  line-height: 1.5;
  color: #fff;
}
#main-slider .slider-inner h2 > span {
  color: #ff7d49;
}
#main-slider .slider-inner h2:lang(en) {
  line-height: 1.1;
}
#main-slider .slider-inner p {
  font-size: 1.25em;
}
#main-slider .slider-inner .white-bg-text {
  background-color: rgba(44, 170, 179, 0.62);
  height: 100%;
  padding-left: 50px;
  padding-right: 50px;
}
#main-slider .slider-inner .bottom-bg-text {
  background-color: rgba(44, 170, 179, 0.62);
  padding-top: 30px;
  padding-bottom: 30px;
}
@media (max-width: 991.98px) {
  #main-slider .slider-inner .bottom-bg-text {
    padding: 30px;
  }
}
#main-slider .slider-inner .btn {
  margin-top: 10px;
}
#main-slider .owl-prev, #main-slider .owl-next {
  position: absolute;
  top: 50%;
  background-color: transparent;
  color: #fff;
  font-size: 30px;
  display: none;
  margin-top: -35px;
  height: 70px;
  width: 70px;
  line-height: 70px;
  text-align: center;
  border-radius: 100px;
  z-index: 5;
  -webkit-transition: background-color 400ms;
  transition: background-color 400ms;
}
#main-slider .owl-prev:hover, #main-slider .owl-next:hover {
  background-color: #45aed6;
  display: none;
}
#main-slider .owl-prev {
  left: -35px;
  text-indent: 14px;
  display: none;
}
#main-slider .owl-next {
  right: -35px;
  text-indent: -14px;
}

#service-section {
  padding: 5em 0;
  text-align: center;
  background: #FFDD94;
}

.section-subcontent {
  text-align: center;
  padding-bottom: 30px;
  font-size: 1.25em;
}

.service-item {
  margin-bottom: 40px;
}
.service-item .icon-wrapper {
  padding: 40px;
}
@media (max-width: 767.98px) {
  .service-item .icon-wrapper {
    padding: 20px 100px;
  }
}

#bar {
  width: 0%;
  max-width: 100%;
  height: 4px;
  background: #45aed6;
}

#cta {
  padding: 50px 0;
  background-color: #eeeeee;
}
#cta h2 {
  margin-top: 0;
}
#cta .btn {
  margin-top: 40px;
}

#cta2 {
  background: #242a33 url(../images/cta2/cta2-bg.jpg) no-repeat 50% 50%;
  background-size: cover;
  color: #fff;
  padding-top: 70px;
}
#cta2 .btn {
  margin-top: 10px;
}
#cta2 h2 {
  color: #fff;
  font-size: 44px;
  line-height: 1;
}
#cta2 h2 > span {
  color: #45aed6;
}

#features {
  padding: 5em 0;
}
#features .media.service-box:first-child {
  margin-top: 80px;
}

/* Start: Recommended Isotope styles */
/**** Isotope Filtering ****/
.isotope-item {
  z-index: 2;
}

.isotope-hidden.isotope-item {
  pointer-events: none;
  z-index: 1;
}

/**** Isotope CSS3 transitions ****/
.isotope {
  -webkit-transition-duration: 0.8s;
  -moz-transition-duration: 0.8s;
  -ms-transition-duration: 0.8s;
  -o-transition-duration: 0.8s;
  transition-duration: 0.8s;
  -webkit-transition-property: height, width;
  -moz-transition-property: height, width;
  -ms-transition-property: height, width;
  -o-transition-property: height, width;
  transition-property: height, width;
}
.isotope .isotope-item {
  -webkit-transition-duration: 0.8s;
  -moz-transition-duration: 0.8s;
  -ms-transition-duration: 0.8s;
  -o-transition-duration: 0.8s;
  transition-duration: 0.8s;
  -webkit-transition-property: -webkit-transform, opacity;
  -moz-transition-property: -moz-transform, opacity;
  -ms-transition-property: -ms-transform, opacity;
  -o-transition-property: -o-transform, opacity;
  transition-property: transform, opacity;
}
.isotope.no-transition {
  -webkit-transition-duration: 0s;
  -moz-transition-duration: 0s;
  -ms-transition-duration: 0s;
  -o-transition-duration: 0s;
  transition-duration: 0s;
}
.isotope.no-transition .isotope-item {
  -webkit-transition-duration: 0s;
  -moz-transition-duration: 0s;
  -ms-transition-duration: 0s;
  -o-transition-duration: 0s;
  transition-duration: 0s;
}
.isotope .isotope-item.no-transition {
  -webkit-transition-duration: 0s;
  -moz-transition-duration: 0s;
  -ms-transition-duration: 0s;
  -o-transition-duration: 0s;
  transition-duration: 0s;
}
.isotope.infinite-scrolling {
  -webkit-transition: none;
  -moz-transition: none;
  -ms-transition: none;
  -o-transition: none;
  transition: none;
}

/**** disabling Isotope CSS3 transitions ****/
/* End: Recommended Isotope styles */
/* disable CSS transitions for containers with infinite scrolling*/
#about {
  padding: 5em 0;
  background-color: #f5f5f5;
}
#about .equipment-list {
  font-size: 1.5em;
  line-height: 50px;
}
#about .equipment-title {
  font-size: 1.4em;
}
#about .section-header .section-title {
  margin-bottom: 60px;
}

#work-process {
  padding: 5em 0 50px;
  background: #2caab3;
  background-size: cover;
  color: #fff;
  text-align: center;
}
#work-process h1 {
  color: #fff;
}
#work-process h5 {
  color: #fff;
  margin-bottom: 50px;
  margin-top: 20px;
}
#work-process .icon-circle > span {
  border-style: solid;
  border-width: 3px;
  border-color: #f5f5f5;
  border-radius: 50%;
  background-color: #2caab3;
  position: absolute;
  width: 35px;
  height: 35px;
  line-height: 30px;
  top: -18px;
  left: calc(50% - 17.5px);
  color: #f5f5f5;
  font-size: 1.1em;
}

#class-description {
  padding: 5em 0;
}
#class-description .card {
  border: 0px;
  margin-bottom: 20px;
}
#class-description .card-header {
  background-color: #2caab3;
  box-shadow: 0 8px 6px -6px #333;
  color: white;
  font-size: 18px;
}
#class-description .card-block {
  padding: 20px;
}
#class-description .nav-pills .nav-link.active, #class-description .nav-pills .show > .nav-link {
  background-color: rgba(127, 210, 217, 0.7);
}
#class-description a {
  color: white;
}
#class-description .logo {
  max-height: 32px;
  float: left;
  margin: 0px 15px 0px 0px;
}
#class-description .header-card {
  color: white;
  background-color: #ffc107;
  border-radius: 10px;
  padding: 5px;
  margin-bottom: 10px;
}
#class-description h5 {
  margin-bottom: 20px;
  margin-top: 20px;
}
#class-description h4 {
  color: #fff;
  margin-bottom: 0;
}
#class-description small {
  display: block;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.7);
}
#class-description .btns {
  margin-top: 10px;
}

#teacher-section {
  padding: 5em 0;
  text-align: center;
  background: #FFDD94;
}
#teacher-section .section-header .section-title {
  margin-bottom: 60px;
}

.team-member {
  padding: 13px;
  background: #eeeeee;
  border: 2px solid #eeeeee;
  transition: border-color 400ms;
  -webkit-transition: border-color 400ms;
}
.team-member .team-img {
  margin: -15px -15px 0 -15px;
}
.team-member .team-info {
  padding-bottom: 10px;
  border-bottom: 1px solid #dbdbdb;
  margin-bottom: 10px;
}
.team-member:hover {
  border-color: #45aed6;
}
.team-member:hover .social-icons > li > a {
  background: #45aed6;
}

.divider {
  margin-top: 50px;
  margin-bottom: 50px;
  background-image: -moz-linear-gradient(180deg, #ffffff 0%, #e3e3e3 49%, #ffffff 100%);
  background-image: -webkit-linear-gradient(180deg, #ffffff 0%, #e3e3e3 49%, #ffffff 100%);
  background-image: -ms-linear-gradient(180deg, #ffffff 0%, #e3e3e3 49%, #ffffff 100%);
  width: 95%;
  height: 1px;
}

.tab-content {
  border: 1px solid #eee;
  border-top: 0;
  border-radius: 0 0 3px 3px;
}

.price-block {
  padding: 10px 30px;
}

#pricing {
  padding: 5em 0 70px;
  background-color: #FFDD94;
}
#pricing .section-title {
  color: #ff7d49;
}
#pricing .section-subtitle {
  font-size: 1.3em;
}
#pricing ul.pricing {
  list-style: none;
  padding: 0;
  margin: 70px 0 30px;
  border: 1px solid #eee;
  border-radius: 20px 20px 15px 15px;
  padding: 15px;
  text-align: center;
  font-size: 1.25em;
  color: #333;
}
#pricing ul.pricing li {
  display: block;
  padding: 10px;
}
#pricing ul.pricing li.plan-header {
  background: #eee;
  border-radius: 20px 20px 0 0;
  margin: -15px -15px 10px;
  padding: 15px 15px 30px;
  border: 0;
}
#pricing ul.pricing li.plan-header .price-duration {
  position: relative;
  margin-top: -63px;
  top: -10px;
  display: inline-block;
  width: 124px;
  height: 124px;
  background-image: -moz-linear-gradient(90deg, #ffb001 0%, #ff7d49 100%);
  background-image: -webkit-linear-gradient(90deg, #ffb001 0%, #ff7d49 100%);
  background-image: -ms-linear-gradient(90deg, #ffb001 0%, #ff7d49 100%);
  color: #fff;
  border-radius: 100px;
  border: 5px solid #f6f6f6;
}
#pricing ul.pricing li.plan-header .price-duration > span {
  display: block;
  line-height: 1;
}
#pricing ul.pricing li.plan-header .price-duration > span.price {
  font-size: 22px;
  font-weight: 700;
  margin-top: 36px;
}
#pricing ul.pricing li.plan-header .price-duration > span.duration {
  margin-top: 5px;
}
#pricing ul.pricing li.plan-header .plan-name {
  margin-top: 10px;
  font-size: 24px;
  color: #272727;
  font-weight: bold;
  line-height: 1;
  text-transform: uppercase;
}
#pricing ul.pricing.featured {
  background: #f5f5f5;
  color: #333;
  border: 0;
  font-size: 1.25em;
}
#pricing ul.pricing.featured li.plan-header {
  background-image: -moz-linear-gradient(90deg, #ffb001 0%, #ff7d49 100%);
  background-image: -webkit-linear-gradient(90deg, #ffb001 0%, #ff7d49 100%);
  background-image: -ms-linear-gradient(90deg, #ffb001 0%, #ff7d49 100%);
}
#pricing ul.pricing.featured li.plan-header .plan-name {
  color: #fff;
}
#pricing ul.pricing:lang(en) .btn {
  font-size: 0.8em;
}

#contact {
  width: 100%;
  min-height: 1050px;
  background: #f5f5f5;
  z-index: 1;
  padding: 5em 0 0px;
}
#contact .section-title {
  color: #2caab3;
  margin-bottom: 30px;
}
#contact .contact-form {
  padding: 0 20px;
}
#contact .contact-form h3 {
  margin-top: 0;
}
#contact .contact-form button {
  margin-top: 10px;
}
#contact .logo-row {
  margin-top: 80px;
}
#contact .logo-second {
  margin-top: 0px;
}

.menu-title:lang(en) {
  font-size: 0.7em;
}

.menu-title:lang(zh) {
  font-size: 0.8em;
}

.contact-image {
  width: 90%;
}

.contact-reminder {
  text-align: center;
  margin-top: 20px;
  font-size: 1.2em;
  color: #2caab3;
  font-weight: 600;
}

@media only screen and (max-width: 600px) {
  #main-slider #item_teacher {
    background-position: 16% 10px;
  }
  #main-slider #item_class {
    background-position: 53% 10px;
    max-height: 100px;
  }
  #main-slider .slider-inner h2 {
    font-size: 1.8em;
  }
  #main-slider .slider-inner h2:lang(en) {
    font-size: 1.6em;
  }
  #main-slider .slider-inner p:lang(en) {
    font-size: 1.1em;
  }

  .section-header .section-title {
    font-size: 2.2em;
  }

  #features {
    padding: 3em 0;
  }

  #service-section {
    padding: 3em 0;
  }
  #service-section .section-subcontent {
    padding-bottom: 0px;
  }

  #pricing {
    padding: 3em 0 70px;
  }

  #about {
    padding: 3em 0;
  }
  #about .section-header .section-title {
    margin-bottom: 40px;
  }

  #work-process {
    padding: 3em 0 50px;
  }

  #class-description {
    padding: 3em 0;
  }

  #teacher-section {
    padding: 3em 0;
  }
  #teacher-section .teacher-name {
    font-size: 1.4em;
  }
  #teacher-section .section-header .section-title {
    margin-bottom: 40px;
  }

  #contact {
    padding: 3em 0 0px;
    min-height: 1280px;
  }
  #contact .logo-row {
    margin-top: 40px;
  }
  #contact .logo-second {
    margin-top: 40px;
  }
}

/*# sourceMappingURL=index.css.map */
