@charset "UTF-8";
*,
*::before,
*::after {
  padding: 0;
  margin: 0;
  list-style: none;
  box-sizing: border-box;
}

:root {
  --headerheight: 150px;
  --headerpadding: 15px;
  --headerfixed: 100px;
  --headerstripfixed: 0px;
  --footerstrip: 66px;
  --sectionpadding: 50px 0 60px;
  --paddingleftright: 0px;
  --borderwidth: 1px;
  --primary: #fff;
  --secondary: #000;
  --prime: #040635;
  --white: #fff;
  --black: #000;
  --text: #666;
  --triangle: 10px;
  --triangle2: 20px;
  --gradient: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 54%);
  --gradient2: linear-gradient(90deg, var(--secondary) 0%, var(--primary) 54%);
  --container: 1280px;
  --containerfluid: 2rem;
  --arrow: 25px;
  --arrowsize: 20px;
  --space: 11px;
}
@media (max-width: 768px) {
  :root {
    --space: 5px;
  }
}

body.overflow-hidden {
  overflow: hidden;
  margin-right: 8px;
}
@media (max-width: 991px) {
  body.overflow-hidden {
    margin-right: 0;
  }
}
body.overflow-hidden header {
  width: calc(100% - 8px);
}
@media (max-width: 991px) {
  body.overflow-hidden header {
    width: 100%;
  }
}

body, html {
  font-size: 16px;
  line-height: 1.5;
  font-family: Circular;
  font-weight: 400;
}

body.hidden {
  overflow: hidden;
  margin-right: 8px;
}

a[href] {
  text-decoration: none;
  cursor: pointer;
  font-size: 18px;
}
@media (max-width: 1300px) {
  a[href] {
    font-size: 16px;
  }
}

.container {
  max-width: var(--container);
  width: 100%;
  margin: 0 auto;
}
@media (max-width: 1300px) {
  .container {
    padding: 0 25px;
  }
}
@media (max-width: 991px) {
  .container {
    padding: 0 20px;
  }
}
@media (max-width: 768px) {
  .container {
    padding: 0 15px;
  }
}

.container-fluid {
  padding: 0 2rem;
  display: block;
  margin: 0 auto;
}
@media (max-width: 1152px) {
  .container-fluid {
    padding: 0 1rem;
  }
}
@media (max-width: 991px) {
  .container-fluid {
    padding: 0 15px;
  }
}

h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
  text-transform: uppercase;
}

h1, h2, h3 {
  font-family: Baloo;
}

h4, h5 {
  font-weight: 600;
}

h6 {
  font-weight: 500;
}

h1 {
  font-size: 64px;
  line-height: 1;
}

h2 {
  font-size: 48px;
  line-height: 1.25;
}

h3 {
  font-size: 36px;
  line-height: 1.25;
}
@media (max-width: 1024px) {
  h3 {
    font-size: 32px;
  }
}
@media (max-width: 768px) {
  h3 {
    font-size: 28px;
  }
}
@media (max-width: 520px) {
  h3 {
    font-size: 26px;
  }
}
@media only screen and (max-width: 365px) {
  h3 {
    font-size: 22px;
  }
}

.heading h3 {
  font-size: 36px;
  line-height: 1.25;
}
@media (max-width: 1024px) {
  .heading h3 {
    font-size: 32px;
  }
}
@media (max-width: 768px) {
  .heading h3 {
    font-size: 28px;
  }
}
@media (max-width: 520px) {
  .heading h3 {
    font-size: 26px;
  }
}
@media only screen and (max-width: 365px) {
  .heading h3 {
    font-size: 22px;
  }
}

h4 {
  font-size: 24px;
  line-height: 1.1;
}
@media (max-width: 768px) {
  h4 {
    font-size: 18px;
  }
}

h5 {
  font-size: 20px;
  line-height: 1;
}
@media (max-width: 1300px) {
  h5 {
    font-size: 18px;
  }
}

h6 {
  font-size: 18px;
  line-height: 24px;
  font-family: Baloo;
  text-transform: none;
}
@media (max-width: 1024px) {
  h6 {
    font-size: 16px;
    line-height: 22px;
  }
}

.pr-4 {
  padding-right: 4rem;
}

.text-center {
  text-align: center;
}

.grid {
  display: grid;
}

.flex {
  display: flex;
  flex-wrap: wrap;
}

img {
  max-width: 100%;
}

.invert-img {
  transform: scaleX(-1);
}

input, button, select {
  font-family: inherit;
  font-size: inherit;
}

input {
  border-radius: 0;
}
input::-webkit-outer-spin-button, input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

video {
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.owl-prev img {
  transform: scaleX(-1);
}

button {
  border: none;
  background: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
}

.item-md {
  position: relative;
}
.item-md figure {
  overflow: hidden;
  line-height: 0;
}
.item-md figure img {
  transition: 0.5s ease;
}
.item-md::before, .item-md::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  pointer-events: none;
  z-index: 1;
}
.item-md::after {
  content: none;
}
.item-md figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
}
.item-md .link-md {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
}

.model {
  position: fixed;
  top: 0;
  bottom: 0;
  z-index: 7;
  width: 100%;
  max-width: 435px;
}
.model .close {
  position: absolute;
  top: 0;
  right: 0;
}

.model2 {
  position: fixed;
  top: 0;
  bottom: 0;
  z-index: 7;
  width: 100%;
  max-width: 435px;
}
.model2 .close {
  position: absolute;
  top: 0;
  right: 0;
}

.overlay {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  z-index: 6;
  opacity: 0;
  background: rgba(0, 0, 0, 0.6);
  transform: translateY(100%);
  transition: opacity 1s ease;
  cursor: pointer;
}
@media (max-width: 991px) {
  .overlay {
    z-index: 2;
  }
}
.overlay.is-open {
  opacity: 1;
  transform: translateY(0%);
}

.overlay2 {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  z-index: 6;
  opacity: 0;
  background: rgba(27, 182, 240, 0.8705882353);
  transform: translateY(100%);
  transition: opacity 1s ease;
  cursor: pointer;
}
@media (max-width: 991px) {
  .overlay2 {
    z-index: 2;
  }
}
@media (max-width: 675px) {
  .overlay2 {
    display: none;
  }
}
.overlay2.is-open {
  opacity: 1;
  transform: translateY(0%);
}

.overlay3 {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  z-index: 6;
  opacity: 0;
  background: rgba(0, 0, 0, 0.6509803922);
  transform: translateY(100%);
  transition: opacity 1s ease;
  cursor: pointer;
}
@media (max-width: 991px) {
  .overlay3 {
    z-index: 2;
  }
}
@media (max-width: 675px) {
  .overlay3 {
    display: none;
  }
}
.overlay3.is-open {
  opacity: 1;
  transform: translateY(0%);
}

.custom-select {
  max-width: 100%;
  cursor: pointer;
  display: block;
  font-family: inherit;
  height: var(--selectheight);
  position: relative;
  transition: all 0.2s ease-in-out;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  white-space: nowrap;
  padding: 0 var(--paddingleftright);
  --arrow: 20px;
  --arrowspace: 8px;
}
@media (max-width: 540px) {
  .custom-select {
    --arrow: 18px;
  }
}
.custom-select.has-icon {
  --iconsize: 24px;
  --iconurl: url(../../icon/calendar.svg);
  --iconspace: 10px;
}
@media (max-width: 540px) {
  .custom-select.has-icon {
    --iconsize: 18px;
  }
}
.custom-select.has-icon::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  background: none;
}
.custom-select.has-icon::after {
  left: 5px;
  width: var(--iconsize);
  background-image: var(--iconurl);
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: 0 50%;
}
.custom-select.has-icon .current {
  width: calc(100% - var(--arrow) - var(--iconsize) - var(--arrowspace) - var(--iconspace));
  padding-left: calc(var(--iconsize) + var(--iconspace));
  padding-right: 3px;
}
.custom-select.has-icon2 {
  --iconurl: url(../../icon/trophy.svg);
  --iconsize: 24px;
  --iconspace: 10px;
}
.custom-select.has-icon2::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  background: none;
}
.custom-select.has-icon2::after {
  left: 5px;
  width: var(--iconsize);
  background-image: var(--iconurl);
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: 0 50%;
}
.custom-select.has-icon2 .current {
  width: calc(100% - var(--arrow) - var(--iconsize) - var(--arrowspace) - var(--iconspace));
  padding-left: calc(var(--iconsize) + var(--iconspace));
}
.custom-select::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: var(--arrow);
  background-image: url(../../icon/arrow-down-white.svg);
  background-position: calc(100% - var(--paddingleftright)) 50%;
  background-repeat: no-repeat;
  background-size: 100% auto;
}
.custom-select .current {
  display: block;
  width: calc(100% - var(--arrow) - var(--arrowspace));
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: var(--inputsize);
  color: var(--labelbefore);
  font-size: var(--labelfontbefore);
  font-weight: var(--font);
}
.custom-select .current.selected {
  color: var(--color);
}
.custom-select .list {
  text-align: left;
  background-color: #fff;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
  overflow: hidden;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  opacity: 0;
  transform-origin: 50% 0;
  z-index: 7;
  max-height: 180px;
  overflow-y: auto;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  pointer-events: none;
}
.custom-select .list::-webkit-scrollbar {
  width: 4px;
  background: none;
}
.custom-select .list::-webkit-scrollbar-track {
  box-shadow: none;
}
.custom-select .list::-webkit-scrollbar-thumb {
  background-color: var(--text);
  border-radius: 5px;
}
.custom-select .list li {
  display: block;
  line-height: 1.2;
  padding: 8px 10px;
  white-space: nowrap;
  font-size: 14px;
}
@media (max-width: 540px) {
  .custom-select .list li {
    padding: 8px;
  }
}
.custom-select .list li.selected {
  background: #FBC740;
  color: #000;
}
.custom-select .list li.selected:hover {
  background: #1BB6F0;
  color: var(--white);
}
.custom-select .list li:hover {
  background: #e2e2e2;
}
.custom-select.open .list {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1) translateY(0);
}

.form {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 35px 0;
  --theme: #000;
  --label: rgb(256 256 256 / .6);
  --color: #000;
  --font: 300;
  --borderbefore: rgb(256 256 256 / .6);
  --borderafter: #fff;
  --sectionbackground: #fff;
}
@media (max-width: 675px) {
  .form {
    gap: 25px 0;
  }
}
.form .form-group {
  --inputsize: 42px;
  --lrgap: 15px;
  --tbgap: 20px;
  position: relative;
  flex: 0 1 100%;
  --selectheight: var(--inputsize);
}
.form .form-group.flex50 {
  flex: 0 1 48%;
}
@media (max-width: 675px) {
  .form .form-group.flex50 {
    flex: 0 1 100%;
  }
}
.form .form-group label {
  font-weight: var(--font);
  position: absolute;
  top: 0;
  left: 0;
  color: var(--theme);
  line-height: calc(var(--inputsize) - 1px);
  transition: 0.3s ease;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  pointer-events: none;
}
.form .form-group input, .form .form-group textarea {
  height: var(--inputsize);
  border: none;
  border-bottom: 1px solid var(--theme);
  resize: none;
  border-radius: 0px !important;
  width: 100%;
  background: none;
  color: var(--color);
  font-size: inherit;
  font-family: inherit;
}
.form .form-group input.valid, .form .form-group textarea.valid {
  border-color: var(--border);
}
.form .form-group input:focus, .form .form-group input.valid, .form .form-group textarea:focus, .form .form-group textarea.valid {
  outline: none;
}
.form .form-group input:focus ~ label, .form .form-group input.valid ~ label, .form .form-group textarea:focus ~ label, .form .form-group textarea.valid ~ label {
  line-height: 0px;
  font-size: 14px;
  color: var(--black);
}
.form .form-group textarea {
  min-height: var(--inputsize);
  padding-top: 10px;
  line-height: 1.2;
}
.form .form-group select:focus {
  outline: none;
}
.form .form-group select ~ label {
  position: absolute;
  top: 100%;
  left: 0%;
  color: #fff;
  translate: 0 0;
  font-size: 16px;
  opacity: 0;
  transition: 0.6s ease;
}
.form .form-group select.valid {
  color: var(--color);
}
.form .form-group select.valid ~ label {
  opacity: 1;
}
.form .form-group.message-bx textarea {
  min-height: 86px;
  height: 100%;
  padding-top: 15px;
}
.form .form-group.message-bx label {
  top: 12px;
  translate: 0 0;
}
.form .form-group.message-bx textarea {
  padding-right: 15px;
}
.form .form-group.message-bx textarea::-webkit-scrollbar {
  width: 2px;
  background: none;
}
.form .form-group.message-bx textarea::-webkit-scrollbar-track {
  box-shadow: none;
}
.form .form-group.message-bx textarea::-webkit-scrollbar-thumb {
  background-color: var(--white);
  border-radius: 15px;
}
.form .form-group.message-bx textarea:focus ~ label, .form .form-group.message-bx textarea.valid ~ label {
  top: 0;
  font-size: 14px;
  translate: 0 -50%;
}
.form .form-group.captcha-box {
  --size: 120px;
}
.form .form-group.captcha-box input {
  width: calc(100% - var(--size));
}
.form .form-group.captcha-box input:focus ~ .captcha-question, .form .form-group.captcha-box input.valid ~ .captcha-question {
  border-color: var(--border);
}
.form .form-group.captcha-box .captcha-question {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  height: var(--inputsize);
  width: var(--size);
  font-weight: 600;
  border-bottom: 1px solid var(--theme);
  text-align: center;
  color: var(--theme);
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.form .sbmt-btn {
  display: inline-flex;
  align-items: center;
  gap: 0 6px;
  color: var(--black);
  height: 44px;
  line-height: 44px;
  border-radius: 25px;
  overflow: hidden;
  background: var(--gradient);
  padding: 0 50px;
  position: relative;
  z-index: 0;
  text-transform: uppercase;
  transition: 0.7s;
  font-weight: 500;
  font-weight: 600;
  margin-left: auto;
  margin-right: auto;
}
.form .sbmt-btn svg, .form .sbmt-btn path {
  transition: 0.7s;
}
.form .sbmt-btn::before, .form .sbmt-btn::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  transition: 0.7s;
  z-index: -1;
}
.form .sbmt-btn::before {
  background: var(--gradient);
}
.form .sbmt-btn::after {
  background: var(--gradient2);
  opacity: 0;
}
.form .sbmt-btn:hover::before {
  opacity: 0;
}
.form .sbmt-btn:hover::after {
  opacity: 1;
}

.banner {
  position: relative;
  overflow: hidden;
  position: relative;
}
.banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  background: none;
}
.banner::before {
  background: linear-gradient(360deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.23) 100%), linear-gradient(180deg, rgba(0, 0, 0, 0) 24.5%, rgba(0, 0, 0, 0.44) 100%);
  z-index: 2;
}
.banner .bg {
  line-height: 0;
}
.banner .bg video, .banner .bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.banner .banner-wrapper {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
}

.play-btn {
  --btnsize: 51px;
  --border: 1px;
  --bordercolor: var(--white);
  --playbtncolor: var(--white);
  height: var(--btnsize);
  width: var(--btnsize);
  border-radius: 50%;
  border: var(--border) solid var(--bordercolor);
  position: relative;
  background: none;
}
.play-btn::before {
  width: 100%;
  height: 100%;
  top: 50%;
  right: 0;
  bottom: 0;
  left: 50%;
  position: absolute;
  content: "";
  transform: translateX(-50%) translateY(-50%);
  background: var(--bordercolor);
  border-radius: 50%;
  display: block;
  animation: pulse-border 1500ms ease-out infinite;
}
@keyframes pulse-border {
  0% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 0.5;
  }
  100% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}
.play-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  width: 0;
  height: 0;
  border-top: calc(var(--btnsize) / 8) solid transparent;
  border-bottom: calc(var(--btnsize) / 8) solid transparent;
  border-left: calc(var(--btnsize) / 5.6) solid var(--playbtncolor);
}

.blue {
  background: #1BB6F0;
}

.yellow {
  background: #FBC740;
}

.btn {
  padding: 6px 16px;
  border-radius: 50px;
  text-transform: capitalize;
  font-size: 18px;
}

.whiteBtn {
  background: var(--white);
  color: var(--black);
  transition: 0.5s ease;
}
.whiteBtn:hover {
  background-color: #FBC740;
}

.blueBtn {
  background: #FBC740;
  color: #000;
  transition: 0.5s ease;
  padding: 10px 30px;
}
.blueBtn:hover {
  background-color: #1BB6F0;
}

.yellowBtn {
  background: #FBC740;
  color: #000;
  transition: 0.5s ease;
}
.yellowBtn:hover {
  background-color: #fff;
}

.tab-nav {
  cursor: default;
}
.tab-nav [data-tab] {
  cursor: pointer;
  caret-color: transparent;
}

.tab-nav-content {
  position: relative;
}
.tab-nav-content .tabs:not(.active) {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  opacity: 0;
  height: 0;
  overflow: hidden;
}

@keyframes wiggle {
  0% {
    transform: rotate(-8deg) scale(0.8);
  }
  50% {
    transform: rotate(0) scale(1);
  }
  100% {
    transform: rotate(8deg) scale(0.8);
  }
}
@keyframes wiggle2 {
  0% {
    transform: rotate(-8deg);
  }
  100% {
    transform: rotate(8deg);
  }
}
.website-content * {
  font-family: "Poppins", serif;
  letter-spacing: 0px;
  font-weight: normal;
}
.website-content > :first-child {
  margin-top: 0 !important;
}
.website-content h1 {
  font-family: Baloo;
}
.website-content h1 {
  font-size: 32px;
  margin-bottom: 45px;
  text-align: center;
}
.website-content h2 {
  font-size: 30px;
}
.website-content h3, .website-content h4 {
  font-size: 24px;
  line-height: 1.21;
  text-transform: none;
  font-weight: 600;
}
.website-content h4 {
  font-size: 22px;
}
.website-content h5 {
  font-size: 20px;
}
.website-content h6 {
  font-size: 18px;
}
.website-content h2, .website-content h3, .website-content h4 {
  margin: 40px 0 18px;
}
.website-content h5, .website-content h6 {
  margin: 28px 0 18px;
}
.website-content p, .website-content li {
  color: var(--text);
  text-align: justify;
}
.website-content a {
  color: var(--black);
}
.website-content a:hover {
  text-decoration: underline;
}
.website-content p, .website-content ul {
  margin-bottom: 20px;
}
.website-content ul {
  padding-left: 18px;
}
.website-content ul li {
  position: relative;
  padding-left: 28px;
}
.website-content ul li:not(:last-child) {
  margin-bottom: 6px;
}
.website-content ul li::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  width: 10px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--primary);
}

.privacy-secA {
  margin-top: calc(var(--headerfixed) + 10px);
  padding: 3rem 0;
}
.privacy-secA .container {
  max-width: 990px;
}

p {
  line-height: 1.5;
  font-size: 18px;
}
@media (max-width: 520px) {
  p {
    font-size: 14px;
    line-height: 1.5;
  }
}

.iframe-secA {
  padding-top: 125px;
}

.overlay2 {
  background: rgb(27, 182, 240) url(/assets/images/home/notice-bg.png);
}
.overlay2 figure {
  position: fixed;
  bottom: 5%;
  left: 3%;
  transform: translate(-12%, 5%);
  width: 285px;
  animation: wiggle 2s ease infinite forwards;
}
.overlay2 figure img {
  width: 100%;
}

#admissionCaptchaId {
  overflow: hidden !important;
}
#admissionCaptchaId > div {
  margin: 20px auto;
}
#admissionCaptchaId > div iframe {
  width: 300px !important;
}

#normalCaptchaId, #subscribeCaptchaId {
  overflow: hidden !important;
}
#normalCaptchaId > div iframe, #subscribeCaptchaId > div iframe {
  width: 300px !important;
}

.banner.home-banner .bg {
  height: 100vh;
}
@media (max-width: 768px) {
  .banner.home-banner .bg {
    height: 560px;
  }
}
@media (max-width: 540px) {
  .banner.home-banner .bg {
    height: 320px;
  }
}
.banner.home-banner .bg .banner-wrapper {
  bottom: 0%;
  text-align: center;
}
.banner.home-banner .bg .banner-wrapper .content h1 {
  color: var(--white);
  text-transform: unset;
  margin-bottom: 60px;
}
@media (max-width: 991px) {
  .banner.home-banner .bg .banner-wrapper .content h1 {
    margin-bottom: 20px;
    font-size: 45px;
  }
}
@media (max-width: 768px) {
  .banner.home-banner .bg .banner-wrapper .content h1 {
    margin-bottom: 5px;
    font-size: 35px;
  }
}
@media (max-width: 540px) {
  .banner.home-banner .bg .banner-wrapper .content h1 {
    font-size: 28px;
  }
}
.banner.home-banner .bg .banner-wrapper .content button.scroll-btn {
  animation: scroll 1.5s ease-in-out infinite forwards;
  margin-bottom: 25px;
}
@keyframes scroll {
  0% {
    transform: translateY(10px);
  }
  50% {
    transform: translateY(20px);
  }
  100% {
    transform: translateY(10px);
  }
}
@media (max-width: 540px) {
  .banner.home-banner .bg .banner-wrapper .content button.scroll-btn img {
    width: 40px;
  }
}

.admission-secA .flex {
  background-color: #1BB6F0;
  justify-content: center;
  align-items: center;
}
@media (max-width: 991px) {
  .admission-secA .flex {
    align-items: unset;
  }
}
@media (max-width: 768px) {
  .admission-secA .flex {
    flex-direction: column;
    align-items: center;
  }
}
.admission-secA .flex .left-sec, .admission-secA .flex .right-sec {
  flex: 1;
}
.admission-secA .flex .left-sec {
  line-height: 0;
}
@media (max-width: 768px) {
  .admission-secA .flex .left-sec {
    width: 100%;
  }
}
.admission-secA .flex .left-sec figure {
  height: 100%;
}
.admission-secA .flex .left-sec figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.admission-secA .flex .right-sec figcaption {
  padding: 50px 85px;
}
@media (max-width: 991px) {
  .admission-secA .flex .right-sec figcaption {
    padding: 30px;
  }
}
@media (max-width: 540px) {
  .admission-secA .flex .right-sec figcaption {
    padding: 30px 20px;
  }
}
.admission-secA .flex .right-sec figcaption h3 {
  font-size: 32px;
  text-transform: none;
  color: #fff;
  padding-bottom: 20px;
}
@media (max-width: 991px) {
  .admission-secA .flex .right-sec figcaption h3 {
    font-size: 28px;
    padding-bottom: 15px;
  }
}
@media (max-width: 540px) {
  .admission-secA .flex .right-sec figcaption h3 {
    font-size: 24px;
    padding-bottom: 10px;
  }
}
.admission-secA .flex .right-sec figcaption ul {
  color: #fff;
  padding-left: 30px;
}
@media (max-width: 991px) {
  .admission-secA .flex .right-sec figcaption ul {
    padding-left: 25px;
  }
}
@media (max-width: 540px) {
  .admission-secA .flex .right-sec figcaption ul {
    padding-left: 20px;
  }
}
.admission-secA .flex .right-sec figcaption ul li {
  padding-bottom: 15px;
  font-size: 18px;
  position: relative;
}
@media (max-width: 991px) {
  .admission-secA .flex .right-sec figcaption ul li {
    padding-bottom: 10px;
  }
}
@media (max-width: 540px) {
  .admission-secA .flex .right-sec figcaption ul li {
    font-size: 14px;
    line-height: 1.2;
  }
}
.admission-secA .flex .right-sec figcaption ul li::before {
  content: "•";
  margin-right: 11px;
  font-size: 25px;
  position: absolute;
  left: -24px;
  top: -7px;
}
@media (max-width: 540px) {
  .admission-secA .flex .right-sec figcaption ul li::before {
    font-size: 20px;
    top: -3px;
  }
}

.admission-secB .flex {
  background-color: #FBC740;
  justify-content: center;
  align-items: center;
}
@media (max-width: 991px) {
  .admission-secB .flex {
    align-items: unset;
  }
}
@media (max-width: 768px) {
  .admission-secB .flex {
    flex-direction: column-reverse;
  }
}
.admission-secB .flex .left-sec, .admission-secB .flex .right-sec {
  flex: 1;
}
.admission-secB .flex .left-sec {
  line-height: 0;
}
@media (max-width: 768px) {
  .admission-secB .flex .left-sec {
    width: 100%;
  }
}
.admission-secB .flex .left-sec figure {
  height: 100%;
}
.admission-secB .flex .left-sec figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.admission-secB .flex .right-sec figcaption {
  padding: 50px 85px;
}
@media (max-width: 991px) {
  .admission-secB .flex .right-sec figcaption {
    padding: 30px;
  }
}
@media (max-width: 540px) {
  .admission-secB .flex .right-sec figcaption {
    padding: 30px 20px;
  }
}
.admission-secB .flex .right-sec figcaption h3 {
  font-size: 32px;
  text-transform: none;
  color: #000;
  padding-bottom: 20px;
}
@media (max-width: 991px) {
  .admission-secB .flex .right-sec figcaption h3 {
    font-size: 28px;
    padding-bottom: 15px;
    line-height: 1.2;
  }
}
@media (max-width: 540px) {
  .admission-secB .flex .right-sec figcaption h3 {
    font-size: 24px;
    padding-bottom: 10px;
    line-height: 1;
  }
}
.admission-secB .flex .right-sec figcaption ul {
  color: #000;
  padding-left: 30px;
}
@media (max-width: 991px) {
  .admission-secB .flex .right-sec figcaption ul {
    padding-left: 25px;
  }
}
@media (max-width: 540px) {
  .admission-secB .flex .right-sec figcaption ul {
    padding-left: 20px;
  }
}
.admission-secB .flex .right-sec figcaption ul li {
  padding-bottom: 15px;
  position: relative;
}
@media (max-width: 991px) {
  .admission-secB .flex .right-sec figcaption ul li {
    padding-bottom: 10px;
  }
}
@media (max-width: 540px) {
  .admission-secB .flex .right-sec figcaption ul li {
    font-size: 14px;
    line-height: 1.2;
  }
}
.admission-secB .flex .right-sec figcaption ul li::before {
  content: "•";
  margin-right: 11px;
  font-size: 25px;
  position: absolute;
  left: -24px;
  top: -7px;
}
@media (max-width: 540px) {
  .admission-secB .flex .right-sec figcaption ul li::before {
    font-size: 20px;
    top: -3px;
  }
}
.admission-secB .flex .right-sec figcaption .top-buttons {
  padding-top: 30px;
  justify-content: start;
  align-items: center;
  gap: 10px;
}
@media (max-width: 768px) {
  .admission-secB .flex .right-sec figcaption .top-buttons {
    justify-content: center;
    gap: 10px;
  }
}
.admission-secB .flex .right-sec figcaption .top-buttons .regisBtns {
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 5px;
  color: #000;
  transition: 0.3s ease;
  padding: 5px 10px;
  border-radius: 50px;
  font-size: 14px;
  background: var(--white);
}
@media (max-width: 540px) {
  .admission-secB .flex .right-sec figcaption .top-buttons .regisBtns {
    border-radius: 50px;
    border: 1px solid #000;
    font-size: 14px;
  }
}
.admission-secB .flex .right-sec figcaption .top-buttons .regisBtns:hover {
  color: var(--white);
  background: #1BB6F0;
}
.admission-secB .flex .right-sec figcaption .top-buttons .regisBtns:hover svg path {
  fill: var(--white);
}
.admission-secB .flex .right-sec figcaption .top-buttons .regisBtns svg {
  transition: 0.3s ease;
  width: 25px;
  height: 25px;
}

.admission-secC {
  padding: 60px 0 0;
}
@media (max-width: 768px) {
  .admission-secC {
    padding: 50px 0 0;
  }
}
@media (max-width: 540px) {
  .admission-secC {
    padding: 40px 0 0;
  }
}
.admission-secC .container .heading {
  text-align: center;
}
.admission-secC .container .heading h3 {
  text-transform: none;
}
.admission-secC .container .content.flex {
  padding: 45px 100px 0;
  justify-content: center;
  gap: 20px;
}
@media (max-width: 991px) {
  .admission-secC .container .content.flex {
    padding: 40px 0px 0;
    align-items: unset;
  }
}
@media (max-width: 768px) {
  .admission-secC .container .content.flex {
    flex-direction: column;
  }
}
@media (max-width: 540px) {
  .admission-secC .container .content.flex {
    padding: 20px 0 0;
  }
}
.admission-secC .container .content.flex .card {
  flex: 1;
  background: #1BB6F0;
  padding: 30px 40px;
  border-radius: 15px;
  color: #fff;
}
@media (max-width: 991px) {
  .admission-secC .container .content.flex .card {
    padding: 25px 35px;
  }
}
@media (max-width: 540px) {
  .admission-secC .container .content.flex .card {
    padding: 20px;
  }
}
.admission-secC .container .content.flex .card .count {
  display: flex;
  justify-content: end;
}
.admission-secC .container .content.flex .card .count span {
  font-size: 48px;
  font-family: Baloo;
}
@media (max-width: 991px) {
  .admission-secC .container .content.flex .card .count span {
    font-size: 40px;
  }
}
.admission-secC .container .content.flex .card .card-detail {
  padding-top: 20px;
  min-height: 126px;
}
@media (max-width: 991px) {
  .admission-secC .container .content.flex .card .card-detail {
    min-height: 140px;
  }
}
@media (max-width: 540px) {
  .admission-secC .container .content.flex .card .card-detail {
    min-height: -moz-fit-content;
    min-height: fit-content;
    padding-top: 0;
  }
}

.admission-secD {
  padding: 60px 0 0;
}
@media (max-width: 768px) {
  .admission-secD {
    padding: 50px 0 0;
  }
}
@media (max-width: 540px) {
  .admission-secD {
    padding: 40px 0 0;
  }
}
.admission-secD .container.flex {
  justify-content: center;
  align-items: center;
  gap: 30px;
}
@media (max-width: 991px) {
  .admission-secD .container.flex {
    flex-direction: column-reverse;
  }
}
.admission-secD .container.flex figure, .admission-secD .container.flex figcaption {
  flex: 1;
}
@media (max-width: 991px) {
  .admission-secD .container.flex figure {
    width: 100%;
    padding: 0 30px;
  }
}
@media (max-width: 768px) {
  .admission-secD .container.flex figure {
    padding: 0 10px;
  }
}
.admission-secD .container.flex figure img {
  width: 100%;
  border-radius: 15px;
}
.admission-secD .container.flex figcaption {
  padding: 0 40px;
}
@media (max-width: 991px) {
  .admission-secD .container.flex figcaption {
    padding: 0 30px;
  }
}
@media (max-width: 768px) {
  .admission-secD .container.flex figcaption {
    padding: 0 10px;
  }
}
.admission-secD .container.flex figcaption h3 {
  text-transform: none;
  padding-bottom: 15px;
}
.admission-secD .container.flex figcaption p {
  padding-bottom: 10px;
}

.admission-secE {
  padding: 60px 0;
}
@media (max-width: 768px) {
  .admission-secE {
    padding: 50px 0;
  }
}
@media (max-width: 540px) {
  .admission-secE {
    padding: 40px 0;
  }
}
.admission-secE .container {
  text-align: center;
}
.admission-secE .container h3 {
  padding-bottom: 10px;
}
.admission-secE .container p {
  padding-bottom: 25px;
}
.admission-secE .container .button .feeBtn {
  width: -moz-fit-content;
  width: fit-content;
  align-items: center;
  margin: 0 auto;
  gap: 5px;
  color: #000;
  transition: 0.3s ease;
  padding: 5px 15px;
  border: 1px solid #000;
  border-radius: 50px;
}
@media (max-width: 540px) {
  .admission-secE .container .button .feeBtn {
    font-size: 14px;
  }
}
.admission-secE .container .button .feeBtn:hover {
  color: #666;
  border-color: #666;
}
@media (max-width: 540px) {
  .admission-secE .container .button .feeBtn svg {
    width: 30px;
  }
}

h3 {
  text-transform: none;
}

.register-secB {
  padding: 60px 0 0;
}
@media (max-width: 768px) {
  .register-secB {
    padding: 50px 0 0;
  }
}
@media (max-width: 540px) {
  .register-secB {
    padding: 30px 0 0;
  }
}
.register-secB .container .heading {
  margin: 0 auto;
  text-align: center;
}
.register-secB .container .faqs {
  padding: 50px 0 0 0;
  max-width: 60%;
  margin: 0 auto;
}
@media (max-width: 991px) {
  .register-secB .container .faqs {
    max-width: 90%;
  }
}
@media (max-width: 768px) {
  .register-secB .container .faqs {
    padding: 40px 0 0 0;
  }
}
@media (max-width: 540px) {
  .register-secB .container .faqs {
    padding: 20px 0 0 0;
    max-width: 100%;
  }
}
.register-secB .container .faqs .col {
  border: 1px solid #666;
  flex: 0 1 70%;
  border-radius: 20px;
  margin-bottom: 20px;
}
.register-secB .container .faqs .col.active {
  border-color: #000;
}
.register-secB .container .faqs .col.active .title .icon {
  rotate: -90deg;
}
.register-secB .container .faqs .col.active .title h6 {
  color: #000;
}
.register-secB .container .faqs .col .title {
  display: flex;
  flex-wrap: wrap;
  overflow: hidden;
  align-items: center;
  padding: 15px 25px;
  cursor: pointer;
}
@media (max-width: 540px) {
  .register-secB .container .faqs .col .title {
    padding: 10px 15px;
  }
}
.register-secB .container .faqs .col .title h6 {
  font-size: 16px;
  line-height: 1.5;
  flex: 1;
  color: var(--text);
  padding-right: 1rem;
}
@media (max-width: 540px) {
  .register-secB .container .faqs .col .title h6 {
    line-height: 1.2;
  }
}
.register-secB .container .faqs .col .title .icon {
  flex: 0 1 auto;
  width: 20px;
  height: 20px;
  background-image: url(../../icon/dark-down.svg);
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: 0 50%;
  transition: 0.5s ease;
}
.register-secB .container .faqs .col .title h6 {
  color: #666;
  transition: 0.5s ease;
  font-family: "Poppins", serif;
}
.register-secB .container .faqs .col article .content-desc {
  padding: 0 25px 30px;
}
@media (max-width: 540px) {
  .register-secB .container .faqs .col article .content-desc {
    padding: 0 15px 20px;
  }
}
.register-secB .container .faqs .col article .content-desc * {
  color: #666;
}
.register-secB .container .faqs .col article .content-desc p:not(:last-child) {
  padding-bottom: 10px;
}
.register-secB .container .faqs .col article .content-desc p a {
  color: #1BB6F0 !important;
  text-decoration: underline;
}
@media (max-width: 540px) {
  .register-secB .container .faqs .col article .content-desc h5 {
    font-size: 16px;
    padding-bottom: 10px;
  }
}
.register-secB .container .faqs .col article .content-desc h5:not(:last-child) {
  font-size: 18px;
  text-transform: none;
  padding-bottom: 20px;
}
@media (max-width: 540px) {
  .register-secB .container .faqs .col article .content-desc h5:not(:last-child) {
    font-size: 16px;
    padding-bottom: 10px;
  }
}
.register-secB .container .faqs .col article .content-desc ul {
  padding-left: 20px;
}
@media (max-width: 540px) {
  .register-secB .container .faqs .col article .content-desc ul {
    padding-left: 10px;
  }
}
.register-secB .container .faqs .col article .content-desc ul:not(:last-child) {
  padding: 0 0 10px 20px;
}
.register-secB .container .faqs .col article .content-desc ul li {
  position: relative;
}
.register-secB .container .faqs .col article .content-desc ul li::before {
  content: "•";
  margin-right: 11px;
  font-size: 25px;
  position: absolute;
  left: -24px;
  top: -7px;
  color: #1BB6F0;
}
@media (max-width: 540px) {
  .register-secB .container .faqs .col article .content-desc ul li::before {
    font-size: 14px;
    left: -12px;
    top: -1px;
  }
}
@media (max-width: 540px) {
  .register-secB .container .faqs .col article .content-desc ul li {
    font-size: 14px;
    line-height: 1.2;
  }
}/*# sourceMappingURL=process.css.map */