@keyframes shimmer {
  100% {
    transform: translateX(100%);
  }
}
@keyframes hide-show {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}
.hamburger {
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
@media (min-width: 992px) {
  .hamburger {
    display: none;
  }
}
.hamburger-icon {
  display: inline-block;
  width: 22px;
  height: 16px;
  position: relative;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  cursor: pointer;
}
@media (min-width: 992px) {
  .hamburger-icon {
    width: 30px;
    height: 24px;
  }
}
.hamburger-icon span {
  display: block;
  position: absolute;
  height: 2px;
  width: 50%;
  background: var(--hamburger-background, #fff);
  opacity: 1;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.25s ease-in-out;
  -moz-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}
.hamburger-icon span:nth-child(even) {
  left: 50%;
  border-radius: 0 3px 3px 0;
}
.hamburger-icon span:nth-child(odd) {
  left: 0;
  border-radius: 3px 0 0 3px;
}
.hamburger-icon span:nth-child(1), .hamburger-icon span:nth-child(2) {
  top: 0;
}
.hamburger-icon span:nth-child(3), .hamburger-icon span:nth-child(4) {
  top: 8px;
}
@media (min-width: 992px) {
  .hamburger-icon span:nth-child(3), .hamburger-icon span:nth-child(4) {
    top: 10px;
  }
}
.hamburger-icon span:nth-child(5), .hamburger-icon span:nth-child(6) {
  top: 16px;
}
@media (min-width: 992px) {
  .hamburger-icon span:nth-child(5), .hamburger-icon span:nth-child(6) {
    top: 20px;
  }
}
.hamburger.active {
  background-color: transparent;
}
.hamburger.active .hamburger-icon span {
  background: var(--hamburger-background, #fff);
}
.hamburger.active .hamburger-icon span:nth-child(1) {
  left: 1px;
  top: 8px;
}
@media (min-width: 992px) {
  .hamburger.active .hamburger-icon span:nth-child(1) {
    left: 3px;
    top: 7px;
  }
}
.hamburger.active .hamburger-icon span:nth-child(2) {
  left: calc(50% - 3px);
  top: 8px;
}
@media (min-width: 992px) {
  .hamburger.active .hamburger-icon span:nth-child(2) {
    top: 7px;
  }
}
.hamburger.active .hamburger-icon span:nth-child(3) {
  left: -50%;
  opacity: 0;
}
.hamburger.active .hamburger-icon span:nth-child(4) {
  left: 100%;
  opacity: 0;
}
.hamburger.active .hamburger-icon span:nth-child(5) {
  left: 0;
  top: 16px;
}
@media (min-width: 992px) {
  .hamburger.active .hamburger-icon span:nth-child(5) {
    left: 2px;
    top: 17px;
  }
}
.hamburger.active .hamburger-icon span:nth-child(6) {
  left: calc(50% - 2px);
  top: 16px;
}
@media (min-width: 992px) {
  .hamburger.active .hamburger-icon span:nth-child(6) {
    left: calc(50% - 2px);
    top: 17px;
  }
}
.hamburger.active .hamburger-icon span:nth-child(1), .hamburger.active .hamburger-icon span:nth-child(6) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
.hamburger.active .hamburger-icon span:nth-child(2), .hamburger.active .hamburger-icon span:nth-child(5) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.hamburger.active .hamburger-icon--custom span {
  background-color: var(--hamburger-background-custom, #007CC7);
}

.header {
  background-color: var(--header-background-color, #007CC7);
  position: relative;
}
.header .wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header__left {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}
.header__logo {
  background: #fff;
  box-shadow: 0 26px 49.41px 31.59px rgba(12, 12, 12, 0.24);
  border-radius: 0 0 45px 0;
  padding: 18px 35px 18px 25px;
  margin-bottom: 11px;
  transition: all 0.5s;
}
@media (min-width: 992px) {
  .header__logo {
    margin-bottom: -23px;
    padding: 35px 60px 35px 30px;
    border-radius: 0 0 100px 0;
  }
}
@media (min-width: 1200px) and (max-width: 1599.98px) {
  .header__logo {
    border-radius: 0 0 45px 0;
    padding: 25px 30px 25px 30px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .header__logo {
    padding: 25px 35px 25px 25px;
    border-radius: 0 0 45px 0;
  }
}
.header__logo .logo {
  width: 200px;
  display: block;
  transition: all 0.5s;
}
@media (min-width: 992px) {
  .header__logo .logo {
    width: 385px;
  }
}
@media (min-width: 1200px) and (max-width: 1599.98px) {
  .header__logo .logo {
    width: 250px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .header__logo .logo {
    width: 300px;
  }
}
.header__social {
  display: none;
}
@media (min-width: 992px) {
  .header__social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .header__social {
    display: none;
  }
}
.header__social-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.header__social-item {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s;
}
.header__social-item-icon {
  width: 40px;
  height: 40px;
}
@media (min-width: 1200px) and (max-width: 1599.98px) {
  .header__social-item {
    width: 30px;
    height: 30px;
  }
}
.header__right--mobile {
  margin-right: 20px;
}
.header__right--desktop {
  display: none;
}
@media (min-width: 992px) {
  .header__right--desktop {
    margin-right: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .header__right--desktop {
    gap: 20px;
  }
}
.header__right-link {
  color: var(--header-link-color, #fff);
  text-decoration: underline;
  font-size: var(--header-link-font-size, 2.4rem);
}
.header__right-link:hover {
  color: var(--header-link-hover-color, #fff);
}
@media (max-width: 1599.98px) {
  .header__right-item .btn-xl {
    padding: 1.5rem 2rem;
  }
}
.header .menu-mobile {
  width: var(--header-menu-mobile-width, 450px);
  max-width: 100%;
  background: var(--header-menu-mobile-background, #fff);
  position: fixed;
  height: 100%;
  top: 0;
  left: var(--header-menu-mobile-left, -450px);
  z-index: var(--header-menu-mobile-z-index, 999);
  transition: all 0.3s ease-in-out;
  overflow: auto;
}
.header .menu-mobile.active {
  left: 0;
}
.header .menu-mobile .logo-mobile {
  border-bottom: var(--header-menu-mobile-border-bottom-width, 3px) solid var(--header-menu-mobile-border-bottom-color, #D9D9D9);
  position: relative;
  padding: 25px 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: var(--header-menu-mobile-height, 100px);
}
.header .menu-mobile .logo-mobile img {
  height: auto;
  max-width: var(--header-menu-mobile-logo-max-width, 200px);
}
.header .menu-mobile .logo-mobile .btn-close-menu {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
}
.header .menu-mobile .box-scroll {
  overflow: auto;
  height: calc(100% - var(--header-menu-mobile-height, 100px));
}
.header .menu-mobile .nav > li {
  width: 100%;
  position: relative;
  padding: 20px 25px;
  border-bottom: var(--header-menu-mobile-border-bottom-width, 3px) solid var(--header-menu-mobile-border-bottom-color, #D9D9D9);
}
.header .menu-mobile .nav > li > a {
  color: var(--header-menu-mobile-link-color, #007CC7);
  display: block;
  font-size: var(--header-menu-mobile-link-font-size, 2.4rem);
}
.header .menu-mobile .nav > li > a[aria-expanded=true]:before {
  transform: rotate(180deg);
  top: 5px;
  transition: all 0.2s ease-in-out;
}
.header .menu-mobile .nav > li > a[aria-expanded=true] i {
  transform: rotate(-180deg);
  transition: all 0.2s ease-in-out;
}
.header .menu-mobile .nav > li > a[data-toggle=collapse]:before {
  content: "";
  border: 6px solid transparent;
  border-top-color: #d0d0d0;
  position: absolute;
  right: 0;
  top: 11px;
  transition: all 0.2s ease-in-out;
}
.header .menu-mobile .nav > li > a i {
  position: absolute;
  right: 0;
  top: 8px;
  transition: all 0.2s ease-in-out;
}
.header .menu-mobile .nav > li.active > a {
  color: #08f;
}
.header .menu-mobile .nav > li .sub-menu {
  padding-left: 15px;
  border-left: 1px solid #dfdfdf;
  list-style: none;
  margin-top: 10px;
}
.header .menu-mobile .nav > li .sub-menu li {
  position: relative;
}
.header .menu-mobile .nav > li .sub-menu li a {
  font-size: 1.6rem;
  color: var(--header-color);
  line-height: 22px;
  display: block;
  padding: 0;
  margin: 0 0 17px;
}
.header .menu-mobile .nav > li .sub-menu li a[data-toggle=collapse]:before {
  content: "";
  border: 6px solid transparent;
  border-top-color: #d0d0d0;
  position: absolute;
  right: 0;
  top: 11px;
  transition: all 0.2s ease-in-out;
}
.header .menu-mobile .nav > li .sub-menu li a[aria-expanded=true]:before {
  transform: rotate(180deg);
  top: 4px;
  transition: all 0.2s ease-in-out;
}
.header .menu-mobile .nav > li .sub-menu li a[aria-expanded=true] i {
  transform: rotate(-180deg);
  transition: all 0.2s ease-in-out;
}
.header .menu-mobile .nav > li .sub-menu li a span {
  display: block;
  font-weight: 400;
  font-size: 15px;
  color: #8f8f8f;
}
.header .menu-mobile .nav > li .sub-menu li a i {
  position: absolute;
  right: 0;
  top: 2px;
  transition: all 0.2s ease-in-out;
}
.header .menu-mobile .nav > li .sub-menu li:last-child a {
  margin: 0;
}
.header .menu-mobile .nav > li .show-sub .sub-menu {
  margin-top: 0;
}

footer {
  position: relative;
  padding-top: 0;
}
footer .background__desktop {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}
@media (max-width: 991.98px) {
  footer .background__desktop {
    display: none;
  }
}
footer .background__left {
  position: absolute;
  width: 687px;
  height: 659px;
  left: 0px;
  bottom: 0px;
}
@media (max-width: 991.98px) {
  footer .background__left {
    display: none;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  footer .background__left {
    width: 500px;
    height: 400px;
  }
}
footer .background__right {
  position: absolute;
  width: 553px;
  height: 631px;
  right: 0px;
  bottom: 0px;
}
@media (max-width: 991.98px) {
  footer .background__right {
    display: none;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  footer .background__right {
    width: 230px;
    height: 300px;
  }
}
@media (min-width: 1200px) and (max-width: 1599.98px) {
  footer .background__right {
    width: 353px;
    height: 431px;
  }
}
footer .background__mobile {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}
@media (min-width: 992px) {
  footer .background__mobile {
    display: none;
  }
}
footer .card {
  max-width: 990px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 992px) {
  footer .card {
    border-width: 13px 13px 1px 13px;
    border-style: solid;
    border-color: var(--card-border-color, #007CC7);
    box-shadow: 0 15px 22.41px 4.59px rgba(96, 96, 96, 0.71);
    border-radius: 82px 82px 0 0;
  }
}
footer .card__header {
  background-color: var(--card-header-background-color, #007CC7);
  padding: 30px 20px 20px;
  text-align: center;
  text-transform: uppercase;
}
@media (min-width: 992px) {
  footer .card__header {
    padding-top: 80px;
    padding-bottom: 30px;
    border-radius: 40px 40px 0 0;
  }
}
footer .card__header__title {
  font-size: var(--card-header-title-font-size, 3.5rem);
  color: var(--card-header-title-color, #fff);
  margin: 0;
}
@media (min-width: 992px) {
  footer .card__header__title {
    --card-header-title-font-size: 7.9rem;
  }
}
footer .card__body {
  text-align: center;
  padding-top: 15px;
  background-color: var(--card-body-background-color, #fff);
  font-size: var(--card-body-font-size, 1.5rem);
}
@media (min-width: 768px) and (max-width: 991.98px) {
  footer .card__body {
    font-size: var(--card-body-font-size, 1.6rem);
  }
}
@media (min-width: 992px) {
  footer .card__body {
    --card-body-font-size: 3.8rem;
  }
}
footer .card__body__description {
  color: var(--card-body-description-color, #007CC7);
}
footer .card__body__description a {
  display: block;
}
footer .card__body__description .name {
  color: var(--card-body-description-name-color, #FD4A00);
  font-weight: 600;
}
footer .card__body__qr {
  margin-top: 30px;
}
footer .card__body__qr .qr-box {
  width: 100%;
  max-width: 150px;
  border-radius: 8px 8px 0 0;
  margin: 0 auto;
  background-color: #FD4A00;
  color: #fff;
  padding: 5px;
}
@media (min-width: 768px) and (max-width: 991.98px) {
  footer .card__body__qr .qr-box {
    max-width: 220px;
    padding: 15px;
  }
}
@media (min-width: 992px) {
  footer .card__body__qr .qr-box {
    max-width: 300px;
    border-radius: 21px 21px 0 0;
    padding: 15px;
  }
}
footer .card__body__qr .qr-box .label {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 5px;
}
@media (min-width: 768px) and (max-width: 991.98px) {
  footer .card__body__qr .qr-box .label {
    margin-bottom: 10px;
    font-size: 1.4rem;
  }
}
@media (min-width: 992px) {
  footer .card__body__qr .qr-box .label {
    font-size: 2.2rem;
  }
}
footer .card__body__qr img {
  border: 2px solid #007CC7;
  box-shadow: 0 10px 16px rgba(12, 12, 12, 0.27);
  border-radius: 2px;
  width: 55px;
  height: auto;
}
@media (min-width: 768px) and (max-width: 991.98px) {
  footer .card__body__qr img {
    width: 100px;
  }
}
@media (min-width: 992px) {
  footer .card__body__qr img {
    width: 120px;
    border-width: 8px;
  }
}

/* Popover */
.popover--intro, .popover--team {
  max-width: 780px;
  width: 100%;
  border: 8px solid #007CC7;
  border-radius: 63px;
}
@media (max-width: 767.98px) {
  .popover--intro, .popover--team {
    max-width: 320px;
  }
}
.popover--intro.bs-popover-top > .arrow, .bs-popover-top.popover--team > .arrow {
  bottom: calc((20px + 8px) * -1);
}
.popover--intro.bs-popover-top > .arrow::before, .bs-popover-top.popover--team > .arrow::before {
  bottom: 0;
  border-width: 20px 20px 0;
  border-top-color: #007CC7;
}
.popover--intro.bs-popover-top > .arrow::after, .bs-popover-top.popover--team > .arrow::after {
  bottom: 8px;
  border-width: 20px 20px 0;
  border-top-color: #fff;
}
.popover--intro.bs-popover-bottom > .arrow, .bs-popover-bottom.popover--team > .arrow {
  top: calc((20px + 8px) * -1);
}
.popover--intro.bs-popover-bottom > .arrow::before, .bs-popover-bottom.popover--team > .arrow::before {
  top: 0;
  border-width: 0 20px 20px 20px;
  border-bottom-color: #007CC7;
}
.popover--intro.bs-popover-bottom > .arrow::after, .bs-popover-bottom.popover--team > .arrow::after {
  top: 8px;
  border-width: 0 20px 20px 20px;
  border-bottom-color: #fff;
}
.popover--intro .popover-body, .popover--team .popover-body {
  padding: 50px;
  width: 100%;
  font-size: 2.4rem;
}
@media (max-width: 991.98px) {
  .popover--intro, .popover--team {
    border-width: 2px;
    border-radius: 20px;
    max-width: 320px;
  }
  .popover--intro.bs-popover-top > .arrow, .bs-popover-top.popover--team > .arrow {
    bottom: calc((10px + 2px) * -1);
  }
  .popover--intro.bs-popover-top > .arrow::before, .bs-popover-top.popover--team > .arrow::before {
    bottom: 0;
    border-width: 10px 10px 0;
    border-top-color: #007CC7;
  }
  .popover--intro.bs-popover-top > .arrow::after, .bs-popover-top.popover--team > .arrow::after {
    bottom: 2px;
    border-width: 10px 10px 0;
    border-top-color: #fff;
  }
  .popover--intro.bs-popover-top .popover-body, .bs-popover-top.popover--team .popover-body {
    padding: 20px;
    font-size: 1.4rem;
  }
  .popover--intro.bs-popover-bottom > .arrow, .bs-popover-bottom.popover--team > .arrow {
    top: calc((10px + 2px) * -1);
  }
  .popover--intro.bs-popover-bottom > .arrow::before, .bs-popover-bottom.popover--team > .arrow::before {
    top: 0;
    border-width: 0 10px 10px 10px;
    border-bottom-color: #007CC7;
  }
  .popover--intro.bs-popover-bottom > .arrow::after, .bs-popover-bottom.popover--team > .arrow::after {
    top: 2px;
    border-width: 0 10px 10px 10px;
    border-bottom-color: #fff;
  }
  .popover--intro.bs-popover-bottom .popover-body, .bs-popover-bottom.popover--team .popover-body {
    padding: 20px;
    font-size: 1.4rem;
  }
}

.popover--team {
  width: 100%;
  max-width: 720px;
}
@media (max-width: 767.98px) {
  .popover--team {
    max-width: 320px;
  }
}
.popover--team .info-team__name {
  color: #FD4A00;
  font-weight: 600;
  font-size: 4rem;
  margin-bottom: 0;
}
@media (max-width: 991.98px) {
  .popover--team .info-team__name {
    font-size: 2.5rem;
  }
}
.popover--team .info-team__job {
  font-size: 3rem;
  color: #007CC7;
}
@media (max-width: 991.98px) {
  .popover--team .info-team__job {
    font-size: 2rem;
  }
}

._table, .section-tuitionFee .modal__body .table {
  --table-border-color: transparent;
  --table-border-width: 0;
  --table-border-style: solid;
  --table-border-radius: 0;
  --table-background-color: transparent;
  --item-border-color: transparent;
  --item-border-width: 0;
  --item-border-style: solid;
  --item-height: 50px;
  --item-padding: 10px 0;
  border: var(--table-border-width) var(--table-border-style) var(--table-border-color);
  border-radius: var(--table-border-radius);
  background-color: var(--table-background-color);
  font-size: var(--table-font-size, 1.6rem);
  font-weight: var(--table-font-weight, 400);
}
@media (min-width: 768px) {
  ._table, .section-tuitionFee .modal__body .table {
    font-size: var(--font-size-base, 1.6rem);
  }
}
._table__row {
  display: flex;
}
._table__row:first-child .table__row__item {
  border-top: none;
  min-height: var(--item-height);
}
._table__row__item {
  padding: var(--item-padding);
  text-align: center;
  border-top: var(--item-border-width) var(--item-border-style) var(--item-border-color);
  border-right: var(--item-border-width) var(--item-border-style) var(--item-border-color);
  width: 60%;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  min-height: var(--item-height);
}
._table__row__item:first-child {
  width: 40%;
}
._table__row__item:last-child {
  border-right: none;
}
._table__row__item span {
  display: block;
  font-size: var(--item-font-size-small, 1.4rem);
}

/* Home page */
@media (min-width: 992px) {
  .section-intro {
    background-image: url("../images/background/intro-bottom.png");
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: 100%;
    padding-bottom: 50px;
  }
}
.section-intro .section-title .heading__title span {
  font-size: 3.3rem;
  line-height: 40px;
  display: block;
}
@media (max-width: 991.98px) {
  .section-intro .background {
    display: none;
  }
}
.section-intro .background--1 {
  position: absolute;
  width: 350px;
  height: 350px;
  left: 120px;
  top: 120px;
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .section-intro .background--1 {
    width: 150px;
    height: 150px;
    left: 0;
    top: 200px;
  }
}
@media (min-width: 1200px) and (max-width: 1599.98px) {
  .section-intro .background--1 {
    width: 150px;
    height: 150px;
    top: 200px;
    left: 100px;
  }
}
.section-intro .background--2 {
  position: absolute;
  width: 156px;
  height: 129px;
  top: 0;
  right: 280px;
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .section-intro .background--2 {
    right: 30px;
  }
}
@media (min-width: 1200px) and (max-width: 1599.98px) {
  .section-intro .background--2 {
    right: 160px;
  }
}
.section-intro .background--3 {
  position: absolute;
  width: 281px;
  height: 232px;
  top: 240px;
  right: 115px;
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .section-intro .background--3 {
    width: 155px;
    height: 130px;
    right: 30px;
    top: 300px;
  }
}
@media (min-width: 1200px) and (max-width: 1599.98px) {
  .section-intro .background--3 {
    width: 200px;
    height: 180px;
    right: 20px;
    top: 280px;
  }
}
@media (min-width: 992px) {
  .section-intro .wrapper {
    max-width: 1000px;
    margin-right: auto;
    margin-left: auto;
  }
}
.section-intro .intro__item, .section-intro .intro__item--bottom .box, .section-intro .intro__item--top .box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  text-align: center;
}
.section-intro .intro__item__title {
  font-family: "Bemio", sans-serif;
  font-size: var(--intro-item-title-font-size, 1.6rem);
  color: var(--intro-item-title-color, #FD4A00);
  text-transform: uppercase;
}
@media (min-width: 992px) {
  .section-intro .intro__item__title {
    font-size: var(--intro-item-title-font-size, 4rem);
  }
}
.section-intro .intro__item__description {
  width: 100%;
}
.section-intro .intro__item__description .thumb {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-top: 7px;
}
@media (min-width: 992px) {
  .section-intro .intro__item__description .thumb {
    margin-top: 24px;
  }
}
.section-intro .intro__item__description .thumb img {
  max-width: 125px;
}
@media (min-width: 992px) {
  .section-intro .intro__item__description .thumb img {
    max-width: 380px;
  }
}
.section-intro .intro__item__description .description {
  margin-top: 10px;
  font-size: var(--intro-item-description-font-size, 1rem);
  color: var(--intro-item-description-color, #007CC7);
  font-weight: var(--intro-item-description-font-weight, 600);
}
@media (min-width: 992px) {
  .section-intro .intro__item__description .description {
    display: none;
  }
}
.section-intro .intro__item__logo {
  cursor: pointer;
}
.section-intro .intro__item__logo--2 {
  width: 20px;
}
@media (min-width: 992px) {
  .section-intro .intro__item__logo--2 {
    width: 60px;
  }
}
.section-intro .intro__item + .intro__item, .section-intro .intro__item--bottom .box + .intro__item, .section-intro .intro__item--bottom .intro__item + .box, .section-intro .intro__item--bottom .box + .box, .section-intro .intro__item--top .box + .intro__item, .section-intro .intro__item--top .intro__item + .box, .section-intro .intro__item--top .box + .box {
  margin-top: 5px;
}
@media (min-width: 992px) {
  .section-intro .intro__item + .intro__item, .section-intro .intro__item--bottom .box + .intro__item, .section-intro .intro__item--bottom .intro__item + .box, .section-intro .intro__item--bottom .box + .box, .section-intro .intro__item--top .box + .intro__item, .section-intro .intro__item--top .intro__item + .box, .section-intro .intro__item--top .box + .box {
    margin-top: 18px;
  }
}
.section-intro .intro__item--top {
  border-radius: 225px 225px 35px 35px;
  border: 1px solid var(--intro-item-top-border-color, #FF7200);
  padding: 5px;
}
@media (min-width: 992px) {
  .section-intro .intro__item--top {
    border-width: 3px;
    padding: 15px;
  }
}
.section-intro .intro__item--top .box {
  box-shadow: 0 38px 84.87px 38.13px rgba(12, 12, 12, 0.14);
  border-radius: 225px 225px 35px 35px;
  padding: 20px 25px 10px;
  width: 100%;
}
@media (min-width: 992px) {
  .section-intro .intro__item--top .box {
    padding: 45px 110px 35px 110px;
  }
}
.section-intro .intro__item--bottom {
  border-radius: 20px 20px 50px 50px;
  border: 1px solid var(--intro-item-bottom-border-color, #FF7200);
  padding: 5px;
  background: inherit;
}
@media (min-width: 992px) {
  .section-intro .intro__item--bottom {
    border-radius: 30px 30px 175px 175px;
    border-width: 3px;
    padding: 15px;
    width: calc(100% - 60px);
    margin-left: auto;
    margin-right: auto;
  }
}
.section-intro .intro__item--bottom .box {
  box-shadow: 0 38px 84.87px 38.13px rgba(12, 12, 12, 0.14);
  border-radius: 20px 20px 50px 50px;
  padding: 10px 20px;
  width: 100%;
}
@media (min-width: 992px) {
  .section-intro .intro__item--bottom .box {
    border-radius: 30px 30px 175px 175px;
    padding: 35px 100px 60px 100px;
  }
}

.section-customer {
  padding-top: 15px;
  padding-bottom: 30px;
  background-image: url("../images/background/customer.png");
  background-repeat: no-repeat;
  background-position: bottom;
}
@media (max-width: 991.98px) {
  .section-customer {
    background-image: url("../images/background/customer-mobile.png");
  }
}
@media (min-width: 992px) {
  .section-customer {
    padding-top: 60px;
    padding-bottom: 100px;
    background-size: cover;
  }
}
.section-customer .item {
  position: relative;
  padding: var(--customer-item-padding, 30px 15px);
  background: var(--customer-item-background, #007CC7);
  border-radius: var(--customer-item-border-radius, 25px);
  color: var(--customer-item-color, #fff);
  max-width: var(--customer-item-max-width, 310px);
  font-size: var(--customer-item-font-size, 1.4rem);
}
@media (min-width: 992px) {
  .section-customer .item {
    --customer-item-max-width: 43%;
    --customer-item-padding: 80px 35px 50px;
    --customer-item-font-size: var(--font-size-largest, 2.4rem);
    --customer-item-border-radius: 60px;
  }
}
.section-customer .item__icon {
  position: absolute;
  left: 0;
  top: -6px;
  width: 46px;
  height: 31px;
}
@media (min-width: 992px) {
  .section-customer .item__icon {
    width: 135px;
    height: auto;
  }
}
.section-customer .item__icon img {
  width: 100%;
  height: 100%;
}
.section-customer .item__name {
  font-weight: 700;
  padding: 12px 20px;
  background-color: #FD4A00;
  text-align: center;
  box-shadow: 0px 10px 16px rgba(12, 12, 12, 0.27);
  border-radius: 15px;
  position: absolute;
  bottom: 0;
  transform: translateY(50%);
}
.section-customer .item + .item {
  margin-top: 36px;
}
.section-customer .item:nth-child(1) {
  margin-left: 15px;
}
@media (min-width: 992px) {
  .section-customer .item:nth-child(1) {
    margin-left: 35px;
  }
}
.section-customer .item:nth-child(2) {
  margin-right: 15px;
  margin-left: auto;
}
@media (min-width: 992px) {
  .section-customer .item:nth-child(2) {
    margin-right: 85px;
  }
}
@media (max-width: 767.98px) {
  .section-customer .item:nth-child(2) .item__name {
    width: 100%;
    padding-left: 10px;
    padding-right: 10px;
    font-size: 12px;
    white-space: nowrap;
  }
}
.section-customer .item:nth-child(3) {
  margin-left: 30px;
}
@media (min-width: 992px) {
  .section-customer .item:nth-child(3) {
    margin-left: 110px;
  }
}

.section-team {
  padding-top: 50px;
  padding-bottom: 10px;
  background-color: var(--section-team-background-color, #e8f6f7);
}
@media (min-width: 992px) {
  .section-team {
    padding-top: 80px;
    padding-bottom: 200px;
  }
}
.section-team .section-title .heading__title {
  color: #FD4A00;
}
@media (min-width: 992px) {
  .section-team .section-title .heading__title {
    font-size: 5.7rem;
  }
}
@media (max-width: 991.98px) {
  .section-team .section-title .heading__title > span {
    display: block;
  }
}
.section-team .section-title .heading__description {
  color: #007CC7;
  font-weight: 600;
}
.section-team .team__list {
  --team-gap: 5px;
  --team-border: 4px;
  --team-border-radius: 18px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--team-gap);
}
@media (min-width: 992px) {
  .section-team .team__list {
    --team-gap: 20px;
    --team-border: 15px;
    --team-border-radius: 68px;
  }
}
.section-team .team__item {
  width: calc(25% - var(--team-gap));
}
.section-team .team__item__image {
  border: var(--team-border) solid #007CC7;
  border-radius: var(--team-border-radius);
  overflow: hidden;
}

.section-price {
  background-color: var(--section-price-background-color, #E9F6F7);
  padding-top: 35px;
  padding-bottom: 50px;
}
@media (min-width: 992px) {
  .section-price {
    padding-bottom: 100px;
    background-image: url("../images/background/price.png");
    background-repeat: no-repeat;
    background-size: cover;
  }
}
.section-price .background {
  display: none;
}
@media (min-width: 992px) {
  .section-price .background {
    display: block;
  }
  .section-price .background__1 {
    position: absolute;
    width: 253px;
    height: 199px;
    left: 30%;
    bottom: 0;
    z-index: 2;
  }
  .section-price .background__2 {
    position: absolute;
    width: 230px;
    height: 147px;
    left: 45%;
    bottom: 0;
  }
}
.section-price .price__list {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  padding-left: 35px;
  padding-right: 35px;
  max-width: 1500px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 992px) {
  .section-price .price__list {
    flex-direction: row;
    padding-left: 15px;
    padding-right: 15px;
  }
}
.section-price .price__item {
  --price-item-width: 100%;
  --price-item-image-width: 135px;
  position: relative;
  width: var(--price-item-width);
}
@media (min-width: 992px) {
  .section-price .price__item {
    width: calc(var(--price-item-width) / 2);
    --price-item-image-width: 360px;
  }
}
.section-price .price__item__header .heading__title {
  font-size: 3.3rem;
  text-align: center;
  text-transform: uppercase;
}
@media (min-width: 992px) {
  .section-price .price__item__header .heading__title {
    font-size: 6.25rem;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .section-price .price__item__header .heading__title {
    font-size: 3.5rem;
  }
}
@media (min-width: 1200px) and (max-width: 1599.98px) {
  .section-price .price__item__header .heading__title {
    font-size: 5rem;
  }
}
@media (min-width: 992px) {
  .section-price .price__item__body {
    font-size: 3.25rem;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .section-price .price__item__body {
    font-size: 2.5rem;
  }
}
.section-price .price__item__body p[class] {
  font-size: 1.4rem;
  text-transform: uppercase;
  font-weight: 700;
}
@media (min-width: 992px) {
  .section-price .price__item__body p[class] {
    font-size: 4.15rem;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .section-price .price__item__body p[class] {
    font-size: 2.25rem;
  }
}
.section-price .price__item__button {
  display: none;
}
@media (min-width: 992px) {
  .section-price .price__item__button {
    display: block;
    text-align: center;
  }
  .section-price .price__item__button .btn {
    font-weight: 700;
    font-size: 23.5px;
    line-height: 29px;
    margin-top: -15px;
  }
}
.section-price .price__item--left .wrap {
  padding: 20px 10px 100px;
  padding-bottom: calc(var(--price-item-image-width) / 2 + 30px);
  background: var(--price-item-background, #fff);
  box-shadow: 0px 38px 84.87px 38.13px rgba(12, 12, 12, 0.21);
  border-radius: 30px 30px 200px 200px;
}
@media (min-width: 992px) {
  .section-price .price__item--left .wrap {
    box-shadow: 0px 38px 84.87px 38.13px rgba(12, 12, 12, 0.21);
    border-radius: 60px 240px 240px 60px;
    padding: 50px 40px;
    padding-right: calc(var(--price-item-image-width) / 2);
  }
}
@media (min-width: 992px) {
  .section-price .price__item--center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: var(--price-item-image-width);
    z-index: 1;
  }
}
.section-price .price__item--center .wrap .thumb {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: var(--price-item-image-width);
  z-index: 1;
}
.section-price .price__item--right .wrap {
  padding-top: calc(var(--price-item-image-width) / 2);
  background: var(--price-item-background, #fff);
  border: 5px solid #FF9600;
  border-radius: 120px 120px 30px 30px;
  overflow: hidden;
}
@media (min-width: 992px) {
  .section-price .price__item--right .wrap {
    border-width: 10px;
    border-radius: 240px 60px 60px 240px;
    padding: 0;
  }
}
@media (min-width: 992px) {
  .section-price .price__item--right .wrap .price__item__header {
    padding-left: calc(var(--price-item-image-width) / 2);
  }
}
.section-price .price__item--right .wrap .price__item__body {
  padding: 20px;
  background-color: #007CC7;
  color: #fff;
}
@media (min-width: 992px) {
  .section-price .price__item--right .wrap .price__item__body {
    padding-left: calc(var(--price-item-image-width) / 2 + 15px);
  }
}
.section-price .price__item--right .wrap .price__item__footer .btn {
  position: absolute;
  bottom: 0;
  transform: translateY(50%);
}
.section-price .price__item ._table__row:first-child {
  font-weight: var(--table-font-weight, 600);
}
@media (min-width: 992px) {
  .section-price .price__item ._table__row:first-child ._table__row__item {
    font-size: 3.4rem;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .section-price .price__item ._table__row:first-child ._table__row__item {
    font-size: 2.5rem;
  }
}
.section-price .price__item ._table__row__item {
  --item-height: 20px;
  --item-padding: 0 10px;
  color: #007CC7;
  font-size: var(--table-font-size, 1.6rem);
}
@media (min-width: 992px) {
  .section-price .price__item ._table__row__item {
    --table-font-size: 4.8rem;
    --item-font-size-small: 2.25rem;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .section-price .price__item ._table__row__item {
    --table-font-size: 2rem;
    --item-font-size-small: 1.5rem;
  }
}
.section-price .price__item ._table__row__item:first-child {
  border-right: 1px solid #007CC7;
}
.section-price .price__item ._table__row__item:last-child {
  font-weight: var(--table-font-weight, 600);
}
.section-price .price__item ._table__row__item small {
  font-size: var(--item-font-size-small, 0.85rem);
}

.section-information {
  background: var(--information-background, #E9F6F7);
  padding-top: 10px;
  padding-bottom: 10px;
}
@media (min-width: 992px) {
  .section-information {
    padding-bottom: 0;
  }
}
.section-information .background {
  display: none;
}
@media (min-width: 768px) {
  .section-information .background {
    display: block;
  }
}
.section-information .background__left {
  position: absolute;
  left: 0;
  top: 0;
  max-width: 135px;
  height: auto;
}
.section-information .information__content {
  --information-gap: 15px;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  flex-direction: column;
  gap: var(--information-gap);
  padding-left: 20px;
  padding-right: 20px;
}
@media (min-width: 768px) {
  .section-information .information__content {
    flex-direction: row;
    padding-left: 0;
    padding-right: 0;
    overflow: hidden;
  }
}
.section-information .information__content__item {
  width: 100%;
}
@media (min-width: 768px) {
  .section-information .information__content__item {
    width: calc(50% - var(--information-gap) / 2);
  }
}
@media (min-width: 768px) {
  .section-information .information__content__item--left {
    z-index: 2;
    padding-left: 100px;
    padding-top: 180px;
    padding-bottom: 145px;
  }
}
@media (min-width: 1200px) and (max-width: 1599.98px) {
  .section-information .information__content__item--left {
    --information-description-font-size: 2.5rem;
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
.section-information .information__content__item--left .heading__title {
  text-align: center;
  color: var(--information-title-color, #FD4A00);
}
@media (min-width: 768px) {
  .section-information .information__content__item--left .heading__title {
    font-size: var(--information-title-font-size, 5.7rem);
    text-align: left;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .section-information .information__content__item--left .heading__title {
    --information-title-font-size: 3.5rem;
  }
}
@media (min-width: 1200px) and (max-width: 1599.98px) {
  .section-information .information__content__item--left .heading__title {
    --information-title-font-size: 4.5rem;
  }
}
.section-information .information__content__item--left .heading__description {
  color: var(--information-description-color, #007CC7);
}
@media (min-width: 768px) {
  .section-information .information__content__item--left .heading__description {
    font-size: var(--information-description-font-size, 2.9rem);
  }
}
.section-information .information__content__item--right {
  order: -1;
}
@media (min-width: 768px) {
  .section-information .information__content__item--right {
    order: 1;
    position: absolute;
    top: 0;
    right: -10%;
    width: 100%;
    max-width: 1000px;
  }
}
@media (min-width: 1200px) and (max-width: 1599.98px) {
  .section-information .information__content__item--right {
    top: 50%;
    max-width: 750px;
    transform: translateY(-50%);
  }
}

.section-why {
  background: var(--why-background, #E9F6F7);
  padding-top: 30px;
}
@media (min-width: 768px) {
  .section-why .heading__title {
    font-size: var(--why-heading-font-size, 5.7rem);
  }
}
.section-why .background {
  --backround-width: 100px;
}
@media (min-width: 768px) {
  .section-why .background {
    --backround-width: 300px;
  }
}
.section-why .background--desktop {
  display: none;
}
@media (min-width: 768px) {
  .section-why .background--desktop {
    display: block;
  }
}
.section-why .background--mobile {
  display: block;
}
@media (min-width: 768px) {
  .section-why .background--mobile {
    display: none;
  }
}
.section-why .background__left {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  height: 100%;
  width: var(--backround-width);
}
.section-why .background__right {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  height: 100%;
  width: var(--backround-width);
}
.section-why .why__content {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 30px;
  padding-right: 30px;
  z-index: 2;
  color: var(--why-color, #007CC7);
  padding-bottom: 20px;
}
@media (min-width: 768px) {
  .section-why .why__content {
    font-size: var(--why-font-size, 2.9rem);
  }
}
.section-why .why__content__item {
  --space-between: 10px;
  width: var(--why-item-width, 50%);
  height: auto;
}
@media (min-width: 768px) {
  .section-why .why__content__item {
    --space-between: 35px;
  }
  .section-why .why__content__item p {
    margin-bottom: 50px;
  }
}
.section-why .why__content__item--left {
  padding-right: var(--space-between);
  border-right: 3px solid var(--why-border-color, #FD4A00);
  text-align: right;
}
.section-why .why__content__item--right {
  padding-left: var(--space-between);
}
.section-why .why__content__item .description {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.section-about {
  background: var(--about-background, #E9F6F7);
  padding-top: 30px;
}
@media (min-width: 992px) {
  .section-about {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .section-about .container {
    max-width: 1500px;
  }
}
@media (min-width: 992px) and (min-width: 1200px) and (max-width: 1599.98px) {
  .section-about .container {
    padding-left: 100px;
    padding-right: 100px;
  }
}
.section-about .background {
  display: none;
}
@media (min-width: 992px) {
  .section-about .background {
    display: block;
  }
  .section-about .background__left {
    position: absolute;
    top: 10%;
    left: 0;
  }
}
@media (min-width: 992px) {
  .section-about .heading__title {
    font-size: var(--about-heading-font-size, 5.7rem);
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .section-about .heading__title {
    --about-heading-font-size: 3.5rem;
  }
}
@media (min-width: 1200px) and (max-width: 1599.98px) {
  .section-about .heading__title {
    --about-heading-font-size: 4.5rem;
  }
}
.section-about .about__content {
  --about-gap: 25px;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: var(--about-gap);
  color: var(--about-content-color, #007CC7);
}
@media (min-width: 992px) {
  .section-about .about__content {
    flex-direction: row;
    --about-gap: 50px;
    align-items: center;
  }
}
.section-about .about__content__item {
  position: relative;
  text-align: center;
}
@media (min-width: 992px) {
  .section-about .about__content__item {
    width: calc(50% - var(--about-gap) / 2);
    font-size: var(--about-item-font-size, 2.9rem);
  }
}
@media (min-width: 992px) {
  .section-about .about__content__item--left {
    text-align: left;
    z-index: 6;
  }
}
.section-about .about__content__item--right {
  --about-thumb-width: 200px;
  order: -1;
}
@media (min-width: 992px) {
  .section-about .about__content__item--right {
    order: 2;
    --about-thumb-width: 100%;
  }
  .section-about .about__content__item--right .background__left {
    top: 0;
  }
}
.section-about .about__content__item--right .thumb {
  max-width: var(--about-thumb-width);
  margin: 0 auto;
}

.section-learn {
  background-color: #007CC7;
  padding-top: 30px;
  padding-bottom: 100px;
}
@media (min-width: 992px) {
  .section-learn {
    padding-top: 100px;
    background-image: url("../images/background/learn.png");
    background-size: cover;
    box-shadow: inset 0px 20px 20px 0px #0a73a4;
  }
  .section-learn .container {
    max-width: 1500px;
  }
}
@media (min-width: 992px) and (min-width: 1200px) and (max-width: 1599.98px) {
  .section-learn .container {
    padding-left: 100px;
    padding-right: 100px;
  }
}
.section-learn .heading__title {
  text-transform: uppercase;
}
@media (min-width: 992px) {
  .section-learn .heading__title {
    font-size: var(--learn-heading-font-size, 5.7rem);
  }
}
@media (max-width: 1199.98px) {
  .section-learn .heading__title .yellow {
    color: var(--heading-yellow-color, #fff);
  }
}
.section-learn .heading__description {
  color: #F7EBD9;
}
@media (min-width: 992px) {
  .section-learn .heading__description {
    font-size: var(--learn-description-font-size, 3.45rem);
  }
}
.section-learn .background__bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  transform: translateY(70px);
  z-index: 3;
  width: 100%;
}
.section-learn .background__bottom--desktop {
  display: none;
}
@media (min-width: 992px) {
  .section-learn .background__bottom--desktop {
    display: block;
    transform: translateY(150px);
    max-height: 300px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .section-learn .background__bottom--desktop {
    transform: translateY(50px);
  }
}
.section-learn .background__bottom--mobile {
  display: block;
}
@media (min-width: 992px) {
  .section-learn .background__bottom--mobile {
    display: none;
  }
}
.section-learn .learn__list {
  --lear-gap: 10px;
  position: relative;
  z-index: 3;
  display: flex;
  flex-wrap: wrap;
  gap: var(--lear-gap);
}
@media (min-width: 992px) {
  .section-learn .learn__list {
    --lear-gap: 50px;
  }
}
.section-learn .learn__item {
  --learn-width-item: calc(50% - var(--lear-gap) / 2);
  --learn-item-border-width: 5px;
  --learn-item-border-style: solid;
  width: var(--learn-width-item);
}
@media (min-width: 992px) {
  .section-learn .learn__item {
    --learn-width-item: calc(25% - var(--lear-gap));
    --learn-item-border-width: 10px;
  }
}
.section-learn .learn__item__icon {
  border-radius: 50%;
  border: var(--learn-item-border-width) var(--learn-item-border-style) var(--learn-item-border, #FFBA00);
  background-color: var(--learn-item-background, #FFBA00);
}
.section-learn .learn__item__icon img {
  width: 100%;
}
.section-learn .learn__item__box {
  border: var(--learn-item-border-width) var(--learn-item-border-style) var(--learn-item-border, #FFBA00);
  border-radius: 45px 45px 15px 15px;
  background-color: var(--learn-item-background, #fff);
  margin-top: -25px;
  overflow: hidden;
  text-align: center;
}
@media (min-width: 992px) {
  .section-learn .learn__item__box {
    border-radius: 70px 70px 25px 25px;
    margin-top: -50px;
  }
}
.section-learn .learn__item__title {
  padding: 20px 5px 5px;
  text-transform: uppercase;
  color: var(--learn-item-title-color, #007CC7);
  font-size: var(--learn-item-title-font-size, 1.3rem);
  font-weight: 600;
}
@media (min-width: 992px) {
  .section-learn .learn__item__title {
    --learn-item-title-font-size: 2.45rem;
    padding: 35px 10px 5px;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    min-height: 45px;
    display: -webkit-box !important;
  }
}
@media (min-width: 1200px) and (max-width: 1599.98px) {
  .section-learn .learn__item__title {
    --learn-item-title-font-size: 1.5rem;
  }
}
.section-learn .learn__item__description {
  padding: 5px;
  background-color: var(--learn-item-description-background, #007CC7);
  color: var(--learn-item-description-color, #fff);
  font-size: var(--learn-item-description-font-size, 1rem);
  overflow: hidden;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  min-height: 65px;
  display: -webkit-box !important;
}
@media (min-width: 992px) {
  .section-learn .learn__item__description {
    --learn-item-description-font-size: 1.75rem;
    padding: 10px 25px 0;
    min-height: 83px;
  }
}
@media (min-width: 1200px) and (max-width: 1599.98px) {
  .section-learn .learn__item__description {
    --learn-item-description-font-size: 1.25rem;
    padding-bottom: 0;
    min-height: 83px;
  }
}

.section-enroll {
  background-image: url("../images/background/enroll-mobile.png");
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 30px;
  padding-bottom: 30px;
}
@media (min-width: 992px) {
  .section-enroll {
    background-image: url("../images/background/enroll-bg.png");
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .section-enroll .container {
    max-width: 1000px;
    position: relative;
    z-index: 3;
  }
  .section-enroll .heading__title {
    font-size: var(--enroll-heading-font-size, 5.7rem);
  }
}
@media (max-width: 767.98px) {
  .section-enroll .container {
    padding-left: 10px;
    padding-right: 10px;
  }
}
.section-enroll .background {
  display: none;
}
@media (min-width: 992px) {
  .section-enroll .background {
    display: block;
  }
  .section-enroll .background__left {
    position: absolute;
    top: 10%;
    left: 0;
    z-index: 2;
    max-height: 680px;
    width: auto;
    max-width: 400px;
  }
  .section-enroll .background__right {
    position: absolute;
    top: 5%;
    right: 0;
    z-index: 2;
    max-width: 300px;
  }
  .section-enroll .background__bottom {
    position: absolute;
    max-width: 248px;
    max-height: 205px;
    right: 15%;
    bottom: -5%;
    z-index: 4;
  }
}
@media (min-width: 992px) and (max-width: 1599.98px) {
  .section-enroll .background__bottom {
    bottom: -15%;
  }
}
.section-enroll .enroll__list {
  --enroll-gap: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: var(--enroll-gap);
}
@media (min-width: 992px) {
  .section-enroll .enroll__list {
    --enroll-gap: 20px;
  }
}
.section-enroll .enroll__item {
  width: calc(50% - var(--enroll-gap) / 2);
  background: var(--enroll-item-background, #AAE0E5);
  border-radius: 10px;
  text-align: center;
  padding: 10px 0;
  font-size: var(--enroll-item-font-size, 1.2rem);
}
@media (min-width: 992px) {
  .section-enroll .enroll__item {
    --enroll-item-font-size: 2.8rem;
    padding: 30px;
    --enroll-item-name-font-size: 4.05rem;
    --enroll-item-description-font-size: 2.45rem;
    --enroll-item-icon-width: 60px;
    --enroll-item-icon-height: 60px;
    --enroll-item-button-callnow-font-size: 4.05rem;
    --enroll-item-button-gap: 15px;
  }
}
.section-enroll .enroll__item__name {
  color: var(--enroll-item-name, #007CC7);
  margin-bottom: 5px;
  font-weight: 600;
}
.section-enroll .enroll__item .name {
  font-size: var(--enroll-item-name-font-size, 1.5rem);
  margin-bottom: 0;
  font-weight: 600;
}
@media (max-width: 767.98px) {
  .section-enroll .enroll__item .name {
    line-height: 18px;
  }
}
.section-enroll .enroll__item__description {
  color: var(--enroll-item-description, #007CC7);
  font-size: var(--enroll-item-description-font-size, var(--enroll-item-font-size));
}
.section-enroll .enroll__item__description ul {
  list-style: none;
  text-align: left;
  padding-left: 20px;
}
.section-enroll .enroll__item__button {
  padding-left: 5px;
  padding-right: 5px;
}
.section-enroll .enroll__item__button .button-callnow {
  display: flex;
  align-items: center;
  gap: var(--enroll-item-button-gap, 5px);
  border: 3px solid var(--enroll-item-button-border, #007CC7);
  border-radius: var(--enroll-item-button-border-radius, 8px);
  overflow: hidden;
  max-width: 350px;
  margin: 0 auto;
}
.section-enroll .enroll__item__button .button-callnow .icon {
  width: var(--enroll-item-icon-width, 35px);
  height: var(--enroll-item-icon-height, 35px);
  padding: 5px;
  background-color: #007CC7;
}
.section-enroll .enroll__item__button .button-callnow .text {
  font-size: var(--enroll-item-button-callnow-font-size, 1.9rem);
  font-weight: 600;
}
.section-enroll .enroll__item__button .btn {
  position: relative;
  z-index: 5;
  text-transform: uppercase;
  font-weight: 600;
  background: var(--enroll-item-button-background, #FF672C);
  box-shadow: 0px 10px 16px rgba(12, 12, 12, 0.27);
}
@media (max-width: 991.98px) {
  .section-enroll .enroll__item__button .btn-xl {
    padding: 12px 20px;
  }
}

/**tuition-fee page**/
.section-package {
  margin-top: 25px;
  margin-bottom: 50px;
}
@media (min-width: 768px) {
  .section-package {
    margin-top: 50px;
  }
}
.section-package .wrapper {
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
  background-color: var(--package-background-color, #007CC7);
  border-width: 10px 0;
  border-style: solid;
  border-color: #FCBE00;
  /* Fee */
  z-index: 6;
  box-shadow: 0px 15px 22.41px 4.59px rgba(96, 96, 96, 0.71);
}
@media (min-width: 768px) {
  .section-package .wrapper {
    border-width: 13px;
    border-radius: 72px;
  }
}
.section-package .section-title {
  padding-top: 15px;
  padding-bottom: 10px;
  background-color: var(--package-heading-bg, #fff);
  margin-bottom: 0;
}
.section-package .section-title .heading__title {
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .section-package .section-title .heading__title {
    font-size: 7.25rem;
  }
}
.section-package .table {
  --table-border-color: transparent;
  --table-border-width: 0;
  --table-border-style: solid;
  --table-border-radius: 0;
  --table-background-color: transparent;
  --item-border-color: transparent;
  --item-border-width: 0;
  --item-border-style: solid;
  --item-height: 50px;
  --item-padding: 10px 0;
  border: var(--table-border-width) var(--table-border-style) var(--table-border-color);
  border-radius: var(--table-border-radius);
  background-color: var(--table-background-color);
  font-size: var(--table-font-size, 1.6rem);
  font-weight: var(--table-font-weight, 400);
}
@media (min-width: 768px) {
  .section-package .table {
    font-size: var(--table-font-size, 1.6rem);
  }
}
.section-package .table tr {
  display: flex;
}
.section-package .table tr:first-child .table__row__item {
  border-top: none;
  min-height: var(--item-height);
}
.section-package .table tr td {
  padding: var(--item-padding);
  text-align: center;
  border-top: var(--item-border-width) var(--item-border-style) var(--item-border-color);
  border-right: var(--item-border-width) var(--item-border-style) var(--item-border-color);
  width: 60%;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  min-height: var(--item-height);
}
.section-package .table tr td:first-child {
  width: 40%;
}
.section-package .table tr td:last-child {
  border-right: none;
}
.section-package .table tr td span {
  display: block;
  font-size: var(--item-font-size-small, 1.4rem);
}
.section-package .table tr th {
  border-right: var(--item-border-width) var(--item-border-style) var(--item-border-color);
}
.section-package .table tr th:last-child {
  border-right: none;
}
.section-package .table {
  --table-color: #fff;
  --table-border-color: red;
  --table-border-width: 0;
  --table-border-style: solid;
  --table-border-radius: 0;
  --table-background-color: #007CC7;
  --table-font-size: 1.3rem;
  --item-color: #fff;
  --item-border-color: rgba(255, 255, 255, 0.3);
  --item-border-width: 3px;
  --item-border-style: solid;
  --item-background-color: #007CC7;
  --item-font-size: 2.9rem;
  --item-height: 30px;
  --item-padding: 5px 0;
  width: 100%;
  color: var(--table-color);
}
@media (min-width: 768px) {
  .section-package .table {
    --table-thead-font-size: 3.3rem;
    --item-label-font-size: 2.7rem;
    --table-font-size: 2.7rem;
    --item-font-size-small: 4.15rem;
  }
}
@media (max-width: 991.98px) {
  .section-package .table:first-child {
    border-bottom: 20px solid var(--table-background-color);
  }
}
@media (min-width: 768px) {
  .section-package .table {
    border-left: 20px solid var(--table-background-color);
    border-right: 20px solid var(--table-background-color);
  }
}
@media (min-width: 768px) {
  .section-package .table:not(:first-child) thead tr th {
    margin-top: 0;
  }
}
.section-package .table ._table__row {
  gap: 15px;
  width: 100%;
}
.section-package .table ._table__row__item {
  width: 50%;
  border: none;
}
@media (min-width: 768px) {
  .section-package .table ._table__row__item {
    font-size: 3.3rem;
  }
}
.section-package .table ._table__row__item:first-child {
  align-items: flex-end;
}
.section-package .table ._table__row__item:last-child {
  align-items: flex-start;
}
.section-package .table thead tr th {
  font-family: "Bemio", sans-serif;
  font-size: var(--table-thead-font-size, 1.6rem);
  text-align: center;
  text-transform: uppercase;
  color: var(--table-thead-color, #FFE681);
  font-weight: var(--table-thead-font-weight, 400);
  margin-top: 30px;
  padding-top: 15px;
  padding-bottom: 45px;
}
@media (min-width: 768px) {
  .section-package .table thead tr th {
    padding-top: 15px;
    padding-bottom: 10px;
  }
}
.section-package .table tbody tr td {
  padding: 30px 10px;
}
@media (min-width: 768px) {
  .section-package .table tbody tr td {
    padding: 50px;
  }
}
.section-package .table tbody tr td:last-child {
  align-items: flex-start;
  text-align: left;
}
.section-package .table caption.section-title {
  caption-side: top;
}
.section-package .table caption.heading__title {
  text-align: center;
  background-color: var(--table-caption-bg, #FD4A00);
  caption-side: top;
}
@media (max-width: 767.98px) {
  .section-package .table caption.heading__title > span {
    display: block;
  }
}
@media (min-width: 768px) {
  .section-package .table caption.heading__title {
    font-size: 3.85rem;
    padding: 20px 0;
    line-height: 47px;
  }
}
@media (min-width: 768px) {
  .section-package .table p {
    margin-bottom: 0;
  }
}
.section-package .table p:not([class]) + p:not([class]) {
  margin-top: 10px;
}
@media (min-width: 768px) {
  .section-package .table p:not([class]) + p:not([class]) {
    margin-top: 25px;
  }
}
.section-package .table .label {
  font-size: var(--item-label-font-size, 1.6rem);
  font-weight: 700;
  width: 100%;
}
.section-package .table .label.sub-label {
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .section-package .table .label.sub-label {
    margin-top: 30px;
  }
}
.section-package .table .label-large {
  margin-bottom: 25px;
}
@media (min-width: 768px) {
  .section-package .table .label-large {
    font-size: 4.15rem;
  }
}
@media (min-width: 768px) {
  .section-package .table .label-desktop {
    font-size: 3.3rem;
    margin-bottom: 25px;
  }
}
.section-package .table tr td {
  width: 50%;
  vertical-align: top;
  justify-content: flex-start;
}
.section-package .table tr td:first-child {
  width: 50%;
}
.section-package .table tr td span {
  font-weight: 400;
}
.section-package .table .btn-xl {
  padding: 12px 20px;
  font-size: 1.3rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #FD4A00;
  margin-top: 25px;
}
@media (min-width: 768px) {
  .section-package .table .btn-xl {
    font-size: 2.7rem;
    padding: 20px 40px;
  }
}

.section-recruitment {
  margin-top: 50px;
  margin-bottom: 50px;
}
.section-recruitment .wrapper {
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
  background-color: var(--recruitment-background-color, #602B7A);
  border-width: 10px 0;
  border-style: solid;
  border-color: #FCBE00;
  box-shadow: 0px 15px 22.41px 4.59px rgba(96, 96, 96, 0.71);
}
@media (min-width: 992px) {
  .section-recruitment .wrapper {
    border-width: 13px;
    border-radius: 72px;
  }
}
.section-recruitment .section-title {
  background-color: var(--recruitment-heading-bg, #fff);
  margin-bottom: 0;
  padding: 15px 0 10px 0;
}
@media (min-width: 768px) {
  .section-recruitment .section-title {
    padding-top: 35px;
    padding-bottom: 30px;
  }
}
.section-recruitment .section-title .heading__title {
  margin-bottom: 0;
}
.section-recruitment .section-title .heading__title--thumb {
  display: block;
  width: 200px;
  margin: 0 auto;
}
@media (min-width: 992px) {
  .section-recruitment .section-title .heading__title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    font-size: 6.25rem;
  }
  .section-recruitment .section-title .heading__title--thumb {
    width: 100%;
    max-width: 370px;
    margin: 0;
  }
}
.section-recruitment .section-title .heading__subtitle {
  display: none;
}
@media (min-width: 992px) {
  .section-recruitment .section-title .heading__subtitle {
    display: block;
    text-align: center;
    font-weight: 600;
    font-size: 2.75rem;
    color: #007CC7;
  }
}
.section-recruitment .table {
  --table-border-color: transparent;
  --table-border-width: 0;
  --table-border-style: solid;
  --table-border-radius: 0;
  --table-background-color: transparent;
  --item-border-color: transparent;
  --item-border-width: 0;
  --item-border-style: solid;
  --item-height: 50px;
  --item-padding: 10px 0;
  border: var(--table-border-width) var(--table-border-style) var(--table-border-color);
  border-radius: var(--table-border-radius);
  background-color: var(--table-background-color);
  font-size: var(--table-font-size, 1.6rem);
  font-weight: var(--table-font-weight, 400);
}
@media (min-width: 768px) {
  .section-recruitment .table {
    font-size: var(--table-font-size, 1.6rem);
  }
}
.section-recruitment .table tr {
  display: flex;
}
.section-recruitment .table tr:first-child .table__row__item {
  border-top: none;
  min-height: var(--item-height);
}
.section-recruitment .table tr td {
  padding: var(--item-padding);
  text-align: center;
  border-top: var(--item-border-width) var(--item-border-style) var(--item-border-color);
  border-right: var(--item-border-width) var(--item-border-style) var(--item-border-color);
  width: 60%;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  min-height: var(--item-height);
}
.section-recruitment .table tr td:first-child {
  width: 40%;
}
.section-recruitment .table tr td:last-child {
  border-right: none;
}
.section-recruitment .table tr td span {
  display: block;
  font-size: var(--item-font-size-small, 1.4rem);
}
.section-recruitment .table tr th {
  border-right: var(--item-border-width) var(--item-border-style) var(--item-border-color);
}
.section-recruitment .table tr th:last-child {
  border-right: none;
}
.section-recruitment .table {
  --table-color: #fff;
  --table-border-color: red;
  --table-border-width: 0;
  --table-border-style: solid;
  --table-border-radius: 0;
  --table-background-color: #602B7A;
  --table-font-size: 1.3rem;
  --item-color: #fff;
  --item-border-color: rgba(255, 255, 255, 0.3);
  --item-border-width: 3px;
  --item-border-style: solid;
  --item-background-color: #602B7A;
  --item-font-size: 2.9rem;
  --item-height: 50px;
  --item-padding: 20px;
  --item-font-size-small: 1.3rem;
  margin-top: 10px;
  width: 100%;
  color: var(--table-color);
}
@media (min-width: 768px) {
  .section-recruitment .table {
    margin-top: 20px;
    border-left: 20px solid var(--table-background-color);
    border-right: 20px solid var(--table-background-color);
    --item-height: 80px;
    --table-thead-font-size: 3.3rem;
    --item-label-font-size: 2.7rem;
    --table-font-size: 2.7rem;
    --item-font-size-small: 2.7rem;
    --item-padding: 25px 40px 25px 60px;
  }
}
.section-recruitment .table thead tr:nth-child(1) th {
  color: var(--table-thead-color, #FFE681);
  border-color: var(--item-border-color);
  text-align: center;
  vertical-align: middle;
  border-bottom: none;
  border: 0;
  border-right: var(--item-border-width) var(--item-border-style) var(--item-border-color);
  padding: 0 5px;
  height: var(--item-height);
  line-height: var(--item-height);
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  text-transform: uppercase;
  font-family: "Bemio", sans-serif;
  font-size: var(--table-thead-font-size, 1.6rem);
  font-weight: 400;
}
.section-recruitment .table thead tr:nth-child(1) th:last-child {
  border-right: 0;
}
.section-recruitment .table tr td {
  width: 50%;
  position: relative;
  z-index: 2;
}
@media (min-width: 1200px) {
  .section-recruitment .table tr td {
    text-align: left;
    flex-direction: row;
  }
  .section-recruitment .table tr td .description {
    position: relative;
    z-index: 2;
  }
}
.section-recruitment .table tr td img {
  width: 120px;
}
@media (min-width: 1200px) {
  .section-recruitment .table tr td img {
    position: absolute;
    top: 0;
    width: 210px;
    z-index: 1;
  }
}
.section-recruitment .table tr td:first-child {
  width: 50%;
}
@media (min-width: 1200px) {
  .section-recruitment .table tr:nth-child(odd) td {
    justify-content: flex-end;
  }
  .section-recruitment .table tr:nth-child(odd) td img {
    left: -30px;
    top: -22px;
  }
  .section-recruitment .table tr:nth-child(even) td {
    justify-content: flex-start;
  }
  .section-recruitment .table tr:nth-child(even) td img {
    right: -30px;
    top: -11px;
  }
  .section-recruitment .table tr:nth-child(1) td img {
    width: 205px;
  }
  .section-recruitment .table tr:nth-child(2) td img {
    width: 230px;
  }
  .section-recruitment .table tr:nth-child(3) td img {
    width: 200px;
  }
  .section-recruitment .table tr:nth-child(4) td img {
    width: 200px;
  }
}

.section-value {
  margin-top: 50px;
  margin-bottom: 50px;
}
.section-value .wrapper {
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
  background-color: var(--value-background-color, #fff);
  border-width: 10px 0;
  border-style: solid;
  border-color: #FCBE00;
  box-shadow: 0px 15px 22.41px 4.59px rgba(96, 96, 96, 0.71);
}
@media (min-width: 992px) {
  .section-value .wrapper {
    border-width: 13px;
    border-radius: 72px;
  }
}
.section-value .heading__title {
  padding: 20px 0 10px 0;
}
@media (min-width: 768px) {
  .section-value .heading__title {
    font-size: 7.25rem;
  }
}
@media (max-width: 991.98px) {
  .section-value .heading__title span > span {
    display: block;
  }
}
.section-value .table {
  --table-border-color: transparent;
  --table-border-width: 0;
  --table-border-style: solid;
  --table-border-radius: 0;
  --table-background-color: transparent;
  --item-border-color: transparent;
  --item-border-width: 0;
  --item-border-style: solid;
  --item-height: 50px;
  --item-padding: 10px 0;
  border: var(--table-border-width) var(--table-border-style) var(--table-border-color);
  border-radius: var(--table-border-radius);
  background-color: var(--table-background-color);
  font-size: var(--table-font-size, 1.6rem);
  font-weight: var(--table-font-weight, 400);
}
@media (min-width: 768px) {
  .section-value .table {
    font-size: var(--table-font-size, 1.6rem);
  }
}
.section-value .table tr {
  display: flex;
}
.section-value .table tr:first-child .table__row__item {
  border-top: none;
  min-height: var(--item-height);
}
.section-value .table tr td {
  padding: var(--item-padding);
  text-align: center;
  border-top: var(--item-border-width) var(--item-border-style) var(--item-border-color);
  border-right: var(--item-border-width) var(--item-border-style) var(--item-border-color);
  width: 60%;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  min-height: var(--item-height);
}
.section-value .table tr td:first-child {
  width: 40%;
}
.section-value .table tr td:last-child {
  border-right: none;
}
.section-value .table tr td span {
  display: block;
  font-size: var(--item-font-size-small, 1.4rem);
}
.section-value .table tr th {
  border-right: var(--item-border-width) var(--item-border-style) var(--item-border-color);
}
.section-value .table tr th:last-child {
  border-right: none;
}
.section-value .table {
  --table-color: #fff;
  --table-border-color: red;
  --table-border-width: 0;
  --table-border-style: solid;
  --table-border-radius: 0;
  --table-background-color: #007CC7;
  --table-font-size: 1.3rem;
  --item-color: #fff;
  --item-border-color: rgba(255, 255, 255, 0.3);
  --item-border-width: 1px;
  --item-border-style: solid;
  --item-background-color: #007CC7;
  --item-font-size: 1.1rem;
  --item-height: 45px;
  --item-padding: 5px 0;
  --item-font-size-small: 1.3rem;
  width: 100%;
  color: var(--table-color);
  font-size: var(--item-font-size);
}
@media (min-width: 992px) {
  .section-value .table {
    --item-border-width: 3px;
    --item-height: 95px;
    --table-thead-font-size: 2.9rem;
    --item-label-font-size: 2.9rem;
    --item-font-size: 2.7rem;
    --table-font-size: 2.7rem;
    --item-font-size-small: 2.9rem;
    --item-padding:30px 0;
  }
}
@media (min-width: 992px) {
  .section-value .table tr:first-child td {
    border-top: 15px solid var(--table-background-color);
  }
  .section-value .table tr:first-child td:first-child {
    border-top: 15px solid #FCB800;
  }
}
.section-value .table tr td:first-child {
  font-family: "Bemio", sans-serif;
  background: #FCB800;
  font-size: var(--item-font-size);
  text-transform: uppercase;
  color: #FD4A00;
}
@media (min-width: 992px) {
  .section-value .table tr td {
    width: 19%;
  }
  .section-value .table tr td:first-child {
    width: 24%;
  }
}
.section-value .table tr.item-price-total {
  background: #07C1BE;
}
.section-value .table tr.item-price-total td {
  color: #fff;
  background: #07C1BE;
}
.section-value .table tr.item-discount {
  background: #FD4A00;
}
.section-value .table tr.item-discount td {
  color: #fff;
  background: #FD4A00;
}
.section-value .table tr.item-after-discount {
  background: #FD4A00;
}
.section-value .table tr.item-after-discount td {
  --item-border-color: #fe804c;
  color: #FD4A00;
  background: #fff;
}

/**Modal**/
.section-tuitionFee .modal-dialog {
  margin-top: 150px;
  max-width: 1400px;
}
@media (max-width: 767.98px) {
  .section-tuitionFee .modal-dialog {
    margin-top: 120px;
    margin-left: 0;
    margin-right: 0;
  }
}
.section-tuitionFee .modal-dialog-centered {
  justify-content: center;
}
.section-tuitionFee .modal {
  --modal-border: 13px;
}
@media (max-width: 767.98px) {
  .section-tuitionFee .modal {
    --modal-border: 10px;
    --tuitionFee-title-font-size: 2.45rem;
  }
}
.section-tuitionFee .modal .close, .section-tuitionFee .modal__close {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  transform: translate(10px, -35%);
  cursor: pointer;
  width: 100px;
  height: 100px;
}
@media (max-width: 767.98px) {
  .section-tuitionFee .modal .close, .section-tuitionFee .modal__close {
    width: 60px;
    height: 60px;
    transform: translate(0px, -40px);
  }
}
.section-tuitionFee .modal__content {
  background-color: var(--modal-background, #4c4f4f);
  border: var(--modal-border) solid var(--modal-border-color, #FCBE00);
  box-shadow: 0px 15px 22.41px 4.59px rgba(96, 96, 96, 0.71);
  border-radius: var(--modal-border-radius, 72px);
}
@media (max-width: 767.98px) {
  .section-tuitionFee .modal__content {
    border-left: 0;
    border-right: 0;
    --modal-border-radius: 0;
  }
}
.section-tuitionFee .modal__header .heading__title {
  font-size: var(--tuitionFee-title-font-size, 7.25rem);
  background-color: var(--white, #fff);
  border-top-left-radius: calc(var(--table-border-radius, 72px) - var(--modal-border, 10px));
  border-top-right-radius: calc(var(--table-border-radius, 72px) - var(--modal-border, 10px));
}
@media (max-width: 767.98px) {
  .section-tuitionFee .modal__header .heading__title {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    padding-top: 15px;
    padding-bottom: 10px;
  }
}
.section-tuitionFee .modal__body--desktop {
  display: none;
}
@media (min-width: 576px) {
  .section-tuitionFee .modal__body--desktop {
    display: block;
  }
}
.section-tuitionFee .modal__body--mobile {
  display: block;
}
@media (min-width: 576px) {
  .section-tuitionFee .modal__body--mobile {
    display: none;
  }
}
.section-tuitionFee .modal__body .table {
  --table-color: #fff;
  --table-border-color: red;
  --table-border-width: 0;
  --table-border-style: solid;
  --table-border-radius: 72px;
  --table-background-color: #007CC7;
  --item-color: #fff;
  --item-border-color: rgba(255, 255, 255, 0.3);
  --item-border-width: 3px;
  --item-border-style: solid;
  --item-background-color: #007CC7;
  --item-font-size: 2.9rem;
  --item-height: 130px;
  --item-padding: 10px 0;
  width: 100%;
  color: var(--table-color);
}
@media (max-width: 767.98px) {
  .section-tuitionFee .modal__body .table {
    --item-border-width: 1px;
    --item-heading-font-size: 1.6rem;
    --item-font-size: 1.3rem;
    --item-height: 60px;
    --table-border-radius: 0;
    --item-font-size-small: 1.1rem;
  }
  .section-tuitionFee .modal__body .table:first-child {
    border-bottom: var(--modal-border) solid var(--modal-border-color, #FCBE00);
  }
}
.section-tuitionFee .modal__body .table + .table {
  margin-top: 40px;
}
.section-tuitionFee .modal__body tr {
  background-color: var(--item-background-color);
}
.section-tuitionFee .modal__body tr:first-child td {
  border-top-color: var(--item-border-color);
}
.section-tuitionFee .modal__body tr td {
  border-color: var(--item-border-color);
  color: var(--item-color);
  text-align: center;
  vertical-align: middle;
  border-bottom: none;
  border: 0;
  border-right: var(--item-border-width) var(--item-border-style) var(--item-border-color);
  border-top: var(--item-border-width) var(--item-border-style) var(--item-border-color);
  padding: 0 5px;
  height: var(--item-height);
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  font-size: var(--item-font-size);
  font-weight: 700;
}
.section-tuitionFee .modal__body tr td:last-child {
  border-right: 0;
}
.section-tuitionFee .modal__body tr td:empty {
  border-top: none;
}
.section-tuitionFee .modal__body tr td:empty ~ td {
  background: #07C1BE;
  border-top: 0;
  border-right: var(--item-border-width) var(--item-border-style) #51d4d1;
}
.section-tuitionFee .modal__body tr td span {
  display: block;
}
.section-tuitionFee .modal__body tr td small {
  font-size: var(--item-font-size-small, 1.6rem);
  display: block;
}
@media (min-width: 992px) {
  .section-tuitionFee .modal__body tr td {
    padding: 0 10px;
  }
}
.section-tuitionFee .modal__body thead tr:nth-child(1) {
  background-color: var(--modal-color, #FCBE00);
}
.section-tuitionFee .modal__body thead tr:nth-child(1) th {
  color: #FD4A00;
  border-color: var(--item-border-color);
  text-align: center;
  vertical-align: middle;
  border-bottom: none;
  border: 0;
  border-right: var(--item-border-width) var(--item-border-style) #fdd14c;
  padding: 0 5px;
  height: var(--item-height);
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  font-size: var(--item-font-size);
  text-transform: uppercase;
  font-family: "Bemio", sans-serif;
  font-size: var(--item-heading-font-size, 3.3rem);
  font-weight: 400;
}
.section-tuitionFee .modal__body thead tr:nth-child(1) th:last-child {
  border-right: 0;
}
.section-tuitionFee .modal__body tbody:last-child tr:last-child td:first-child {
  border-bottom-left-radius: calc(var(--table-border-radius, 60px) - var(--modal-border, 10px));
}
@media (max-width: 767.98px) {
  .section-tuitionFee .modal__body tbody:last-child tr:last-child td:first-child {
    border-bottom-left-radius: 0;
  }
}
.section-tuitionFee .modal__body tbody:last-child tr:last-child td:last-child {
  border-bottom-right-radius: calc(var(--table-border-radius, 60px) - var(--modal-border, 10px));
}
@media (max-width: 767.98px) {
  .section-tuitionFee .modal__body tbody:last-child tr:last-child td:last-child {
    border-bottom-right-radius: 0;
  }
}

/*# sourceMappingURL=stylesheet.css.map */
