@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;
}

body {
  position: relative;
  overflow-x: hidden;
}

header {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 5;
  transition: 0.5s ease;
  height: var(--headerheight);
}
@media (max-width: 991px) {
  header {
    height: 100px;
  }
}
header::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: var(--prime);
}
header::after {
  bottom: auto;
  height: 0;
  z-index: -1;
  transition: 0.5s ease;
}
@media (max-width: 520px) {
  header {
    height: 80px;
  }
}
header .header-container {
  height: 100%;
  transition: 0.5s ease;
  padding-bottom: 15px;
}
@media (max-width: 991px) {
  header .header-container {
    padding-bottom: 8px;
  }
}
header .header-container .upper-container {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px var(--containerfluid) 0;
  transition: 0.5s ease;
  gap: 2rem;
}
@media (max-width: 991px) {
  header .header-container .upper-container {
    padding: 8px var(--containerfluid) 0;
  }
}
@media (max-width: 768px) {
  header .header-container .upper-container {
    padding: 6px 10px 0;
  }
}
@media (max-width: 540px) {
  header .header-container .upper-container {
    gap: 0;
  }
}
header .header-container .upper-container .colA, header .header-container .upper-container .colB {
  height: 100%;
}
header .header-container .upper-container .colA {
  flex: 0 1 auto;
}
header .header-container .upper-container .colA a.logo {
  padding: var(--headerpadding) 0;
  height: 100%;
}
header .header-container .upper-container .colA a.logo img {
  height: 100%;
}
@media (max-width: 768px) {
  header .header-container .upper-container .colA a.logo img {
    width: 130px;
  }
}
@media (max-width: 520px) {
  header .header-container .upper-container .colA a.logo img {
    width: 90px;
  }
}
header .header-container .upper-container .colB {
  flex: 1;
  display: flex;
  align-items: end;
  justify-content: center;
  flex-direction: column;
}
header .header-container .upper-container .colB .nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
@media (max-width: 991px) {
  header .header-container .upper-container .colB .nav-links {
    gap: 0;
  }
}
header .header-container .upper-container .colB .nav-links .nav-a {
  transition: 0.5s ease;
}
@media (max-width: 991px) {
  header .header-container .upper-container .colB .nav-links .nav-a li:not(.mobile-menu) {
    display: none;
  }
}
header .header-container .upper-container .colB .nav-links .nav-a .loginBtn {
  border: 1px solid #fff;
  padding: 6px 28px 6px 12px;
  border-radius: 50px;
  transition: 0.5s ease;
}
header .header-container .upper-container .colB .nav-links .nav-a .loginBtn::before {
  background-position-x: 92%;
}
header .header-container .upper-container .colB .nav-links .nav-b {
  transition: 0.5s ease;
}
@media (max-width: 991px) {
  header .header-container .upper-container .colB .nav-links .nav-b li:not(.mobile-menu) {
    display: none;
  }
}
@media (max-width: 991px) and (max-width: 540px) {
  header .header-container .upper-container .colB .nav-links .nav-b li.mail.mobile-menu {
    display: none;
  }
}
header .header-container .upper-container .colB .nav-links .nav-b > li.hasDropdown a {
  background: none;
  padding: 0;
}
header .header-container .upper-container .colB .nav-links .nav-b > li.hasDropdown > .dropdown-menu {
  min-width: -moz-fit-content;
  min-width: fit-content;
}
header .header-container .upper-container .colB .nav-links .nav-b > li.hasDropdown > .dropdown-menu ul {
  padding: 3px 7px;
}
header .header-container .upper-container .colB .nav-links .nav-b > li.hasDropdown > .dropdown-menu ul li {
  padding: 0;
}
header .header-container .upper-container .colB .nav-links .nav-b > li.hasDropdown > .dropdown-menu ul li a {
  transition: 0.3s ease;
  color: #666;
}
header .header-container .upper-container .colB .nav-links .nav-b > li.hasDropdown > .dropdown-menu ul li a:hover {
  color: var(--prime);
  background: #fff;
}
header .header-container .upper-container .colB .nav-links .nav-b .callBtn svg {
  background: #fff;
  border-radius: 50%;
  transition: 0.5s ease;
  width: 40px;
  height: 40px;
  padding: 9px;
}
header .header-container .upper-container .colB .nav-links .nav-b .callBtn svg:hover {
  background: #FBC740;
}
header .header-container .upper-container .colB .nav-links .nav-b svg {
  background: #fff;
  border-radius: 50%;
  transition: 0.5s ease;
  padding: 9px;
  width: 40px;
  height: 40px;
}
header .header-container .upper-container .colB .nav-links .nav-b svg:hover {
  background: #FBC740;
}
header .header-container .upper-container .colB .nav-links li.hasDropdown > a {
  background-image: url(../../icon/arrow-down-white.svg);
  background-repeat: no-repeat;
  background-position-y: 50%;
  background-position-x: 100%;
  background-size: var(--arrowsize) auto;
  padding-right: calc(var(--arrowsize) + var(--space));
}
header .header-container .upper-container .colB .nav-links li.hasDropdown > a.loginBtn {
  background-position-x: 85%;
}
@media (max-width: 540px) {
  header .header-container .upper-container .colB .nav-links li.hasDropdown > a.loginBtn {
    font-size: 14px;
  }
}
header .header-container .upper-container .colB .nav-links ul li {
  display: inline-block;
  vertical-align: middle;
  line-height: 1;
  color: var(--white);
  font-weight: 500;
}
header .header-container .upper-container .colB .nav-links ul li:not(:last-child) {
  margin-right: 30px;
}
@media (max-width: 540px) {
  header .header-container .upper-container .colB .nav-links ul li:not(:last-child) {
    margin-right: 15px;
  }
}
header .header-container .upper-container .colB .nav-links ul li.hasDropdown {
  position: relative;
}
header .header-container .upper-container .colB .nav-links ul li.hasDropdown:hover .dropdown-menu {
  opacity: 1;
  transform: scale3d(1, 1, 1);
}
header .header-container .upper-container .colB .nav-links ul li.hasDropdown .dropdown-menu {
  --triangle: 10px;
  position: absolute;
  top: calc(100% + var(--triangle));
  left: 50%;
  translate: -50% 0;
  transform: perspective(2000px) translate3d(0px, 0px, 50px) rotateX(-90deg) scale3d(0.86, 0.75, 1) translateY(50px);
  transform-origin: top;
  transition: 0.4s ease;
  opacity: 0;
  width: 100%;
  min-width: 185px;
  z-index: 2;
}
@media (max-width: 540px) {
  header .header-container .upper-container .colB .nav-links ul li.hasDropdown .dropdown-menu {
    min-width: 135px;
  }
}
header .header-container .upper-container .colB .nav-links ul li.hasDropdown .dropdown-menu::before {
  content: "";
  display: block;
  position: absolute;
  bottom: calc(100% - var(--triangle) / 2);
  left: 50%;
  translate: -50% 0;
  width: var(--triangle);
  height: var(--triangle);
  background: #fff;
  transform: rotate(45deg);
  z-index: -1;
}
header .header-container .upper-container .colB .nav-links ul li.hasDropdown .dropdown-menu ul {
  background: #fff;
  padding: 16px 12px;
  box-shadow: rgba(0, 0, 0, 0.01) -2px 6px 2px 3px;
  border-radius: 5px;
  text-align: left;
  white-space: nowrap;
}
@media (max-width: 540px) {
  header .header-container .upper-container .colB .nav-links ul li.hasDropdown .dropdown-menu ul {
    padding: 6px 6px;
  }
}
header .header-container .upper-container .colB .nav-links ul li.hasDropdown .dropdown-menu ul li {
  display: block;
  color: #000;
}
header .header-container .upper-container .colB .nav-links ul li.hasDropdown .dropdown-menu ul li:not(:last-child) {
  margin-right: 0;
  margin-bottom: 2px;
}
header .header-container .upper-container .colB .nav-links ul li.hasDropdown .dropdown-menu ul li a {
  font-size: 14px;
  display: block;
  color: var(--black);
  padding: 10px 14px;
  border-radius: 5px;
  overflow: hidden;
}
@media (max-width: 540px) {
  header .header-container .upper-container .colB .nav-links ul li.hasDropdown .dropdown-menu ul li a {
    padding: 5px 10px;
    font-size: 12px;
  }
}
header .header-container .upper-container .colB .nav-links ul li.hasDropdown .dropdown-menu ul li a:hover {
  background: var(--prime);
  color: var(--white);
}
header .header-container .upper-container .colB .nav-links ul li.hasDropdown .dropdown-menu ul li a:hover::before {
  opacity: 1;
}
header .header-container .upper-container .colB .nav-links ul li.hasDropdown .dropdown-menu ul li a span {
  display: block;
  width: 24px;
  line-height: 0;
}
header .header-container .upper-container .colB .nav-links ul li a:not(.btn) {
  color: var(--elementcolor);
  font-weight: 500;
}
header .header-container .upper-container .colB .nav-links ul li a:not(.btn):hover {
  color: var(--elementhover);
}
header .header-container .upper-container .colB .nav-links ul li a .svg {
  width: 23px;
  height: 23px;
}
header .header-container .upper-container .colB .nav-links ul li .ham-btn {
  width: 38px;
  height: 14px;
  --border: 2px;
  border-top: var(--border) solid var(--white);
  border-bottom: var(--border) solid var(--white);
  transition: 0.5s ease;
}
header .header-container .lower-container {
  padding: 15px 0 0 0;
}
@media (max-width: 991px) {
  header .header-container .lower-container {
    display: none;
  }
}
header .header-container .lower-container ul {
  display: flex;
  align-items: center;
  padding: 0 var(--containerfluid);
  justify-content: end;
  gap: 40px;
}
@media (max-width: 1280px) {
  header .header-container .lower-container ul {
    gap: 20px;
    padding: 0;
  }
}
header .header-container .lower-container ul li.hasDropdown {
  position: relative;
}
header .header-container .lower-container ul li.hasDropdown:hover .dropdown-menu {
  opacity: 1;
  transform: scale3d(1, 1, 1);
}
header .header-container .lower-container ul li.hasDropdown .dropdown-menu {
  --triangle: 10px;
  position: absolute;
  top: calc(100% + var(--triangle));
  left: 50%;
  translate: -50% 0;
  transform: perspective(2000px) translate3d(0px, 0px, 50px) rotateX(-90deg) scale3d(0.86, 0.75, 1) translateY(50px);
  transform-origin: top;
  transition: 0.4s ease;
  opacity: 0;
  width: 100%;
  min-width: -moz-fit-content;
  min-width: fit-content;
}
header .header-container .lower-container ul li.hasDropdown .dropdown-menu::before {
  content: "";
  display: block;
  position: absolute;
  bottom: calc(100% - var(--triangle) / 2);
  left: 50%;
  translate: -50% 0;
  width: var(--triangle);
  height: var(--triangle);
  background: #fff;
  transform: rotate(45deg);
  z-index: -1;
}
header .header-container .lower-container ul li.hasDropdown .dropdown-menu ul {
  display: block;
  background: #fff;
  padding: 12px 10px;
  box-shadow: rgba(0, 0, 0, 0.01) -2px 6px 2px 3px;
  border-radius: 5px;
  text-align: left;
  white-space: nowrap;
}
header .header-container .lower-container ul li.hasDropdown .dropdown-menu ul li {
  padding: 0;
  display: block;
  color: #000;
}
header .header-container .lower-container ul li.hasDropdown .dropdown-menu ul li a {
  display: block;
  color: #666;
  font-size: 14px;
  transition: 0.3s ease;
  padding: 4px 10px;
  border-radius: 5px;
}
header .header-container .lower-container ul li.hasDropdown .dropdown-menu ul li a:hover {
  background: #FBC740;
  color: #000;
}
header .header-container .lower-container ul li a {
  color: #fff;
  transition: 0.5s ease;
}

header.header-fixed .header-container .upper-container .colA .logo, header.header-block .header-container .upper-container .colA .logo {
  transition: none !important;
}
header.header-fixed .header-container .upper-container .colB .nav-a li button, header.header-block .header-container .upper-container .colB .nav-a li button {
  font-size: 14px;
}
header.header-fixed .header-container .upper-container .colB .nav-a li a, header.header-block .header-container .upper-container .colB .nav-a li a {
  font-size: 14px;
}
header.header-fixed .header-container .lower-container ul li a, header.header-block .header-container .lower-container ul li a {
  font-size: 14px;
}
header.header-fixed, header.header-fit, header.header-block {
  transition: 0.5s ease;
  --headerpadding: 14px;
  height: var(--headerfixed);
}
@media (max-width: 991px) {
  header.header-fixed, header.header-fit, header.header-block {
    height: 80px;
  }
}
@media (max-width: 520px) {
  header.header-fixed, header.header-fit, header.header-block {
    height: 60px;
  }
}
header.header-fixed::after, header.header-fit::after, header.header-block::after {
  height: 100%;
}
header.header-fit {
  transition: 0s;
}
header.header-fit::after {
  transition: none;
}
header.header-shadow {
  box-shadow: 0px 2px 8px 0px rgba(99, 99, 99, 0.2);
}

.model.ham-pop {
  right: 0;
  max-width: 480px;
  background-image: url("/assets/images/home/ham-bg.png"), linear-gradient(359deg, rgb(152, 227, 255), rgb(255, 255, 255) 50%);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: bottom;
  transform: translateX(100%);
  transition: 0.5s ease;
  z-index: 10;
}
.model.ham-pop.is-open {
  transform: translateX(0%);
}
.model.ham-pop .close {
  top: 17px;
  right: 22px;
}
.model.ham-pop .close svg {
  width: 18px;
}
.model.ham-pop .close svg path {
  stroke: var(--text) !important;
  stroke-width: 2 !important;
}
.model.ham-pop .model-body {
  padding: 0px 40px 30px;
  margin-top: 60px;
  height: calc(100% - 60px);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  position: relative;
}
.model.ham-pop .model-body::-webkit-scrollbar {
  width: 6px;
  background: var(--white);
}
.model.ham-pop .model-body::-webkit-scrollbar-track {
  box-shadow: none;
}
.model.ham-pop .model-body::-webkit-scrollbar-thumb {
  background-color: #5e5e5e;
  border-radius: 8px;
}
.model.ham-pop .model-body .ico {
  max-width: 70px;
  margin-bottom: 55px;
  line-height: 0;
}
.model.ham-pop .model-body .ico img, .model.ham-pop .model-body .ico svg {
  width: 100%;
  height: auto;
}
.model.ham-pop .model-body .nav-list {
  flex: 0 1 50%;
}
.model.ham-pop .model-body .nav-list > li:not(:last-child) {
  margin-bottom: 15px;
}
.model.ham-pop .model-body .nav-list > li.des_menu {
  display: none;
}
@media (max-width: 768px) {
  .model.ham-pop .model-body .nav-list > li.des_menu {
    display: block;
  }
}
.model.ham-pop .model-body .nav-list > li.desktop-non {
  display: none;
}
@media (max-width: 991px) {
  .model.ham-pop .model-body .nav-list > li.desktop-non {
    display: block;
  }
}
.model.ham-pop .model-body .nav-list > li.hasDropdown {
  position: relative;
}
.model.ham-pop .model-body .nav-list > li.hasDropdown .plu-ico {
  position: absolute;
  right: 0;
  top: 4px;
  --sizeplu: 20px;
  height: var(--sizeplu);
  width: var(--sizeplu);
}
.model.ham-pop .model-body .nav-list > li.hasDropdown .plu-ico::before {
  content: "";
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  left: 0;
  right: 0;
  height: 2px;
  width: 100%;
  background: var(--prime);
  transition: 0.5s ease;
  transform: rotate(90deg);
}
.model.ham-pop .model-body .nav-list > li.hasDropdown .plu-ico::after {
  content: "";
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  left: 0;
  right: 0;
  height: 2px;
  width: 100%;
  background: var(--prime);
  transition: 0.5s ease;
}
.model.ham-pop .model-body .nav-list > li.hasDropdown .plu-ico.active::before {
  transform: rotate(0deg);
  opacity: 0;
}
.model.ham-pop .model-body .nav-list > li.hasDropdown .dropdown-menu-ham {
  display: none;
  padding-top: 15px;
}
.model.ham-pop .model-body .nav-list > li.hasDropdown .dropdown-menu-ham ul {
  border-top: 1px solid #dadada;
  border-bottom: 1px solid #dadada;
  padding: 20px 10px;
}
.model.ham-pop .model-body .nav-list > li.hasDropdown .dropdown-menu-ham ul::-webkit-scrollbar {
  width: 4px;
  background: #fff;
}
.model.ham-pop .model-body .nav-list > li.hasDropdown .dropdown-menu-ham ul::-webkit-scrollbar-track {
  box-shadow: none;
}
.model.ham-pop .model-body .nav-list > li.hasDropdown .dropdown-menu-ham ul::-webkit-scrollbar-thumb {
  background-color: #1BB6F0;
  border-radius: 4px;
}
.model.ham-pop .model-body .nav-list > li.hasDropdown .dropdown-menu-ham ul li a {
  display: block;
  font-size: 18px;
  color: #666;
  padding: 5px 0;
}
.model.ham-pop .model-body .nav-list > li.hasDropdown .dropdown-menu-ham ul li a:hover {
  color: #000;
}
.model.ham-pop .model-body .nav-list > li > a {
  font-size: 24px;
  line-height: 1.06;
  color: #000;
  display: inline-block;
  font-family: Baloo;
  font-weight: 500;
}
.model.ham-pop .model-body .nav-list > li > a:hover {
  color: #1BB6F0;
}
.model.ham-pop .model-body .clouds {
  position: absolute;
  z-index: -1;
}
.model.ham-pop .model-body .cloud1 {
  width: 60px;
  left: 33%;
  bottom: 16%;
}
.model.ham-pop .model-body .cloud2 {
  width: 100px;
  bottom: 20%;
  left: 50%;
}
.model.ham-pop .model-body figure {
  flex: 0 1 30%;
  display: flex;
  justify-content: end;
  margin-right: -35px;
  margin-bottom: -10px;
}
.model.ham-pop .model-body figure img {
  width: 220px;
}
.model.ham-pop .model-body .bottom-list {
  flex: 0 1 20%;
  border-top: 1px solid var(--prime);
  margin-top: 2rem;
  padding-top: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.model.ham-pop .model-body .bottom-list .social-icons a {
  display: inline-flex;
  vertical-align: middle;
  align-items: center;
  justify-content: center;
  height: 40px;
  width: 40px;
  border-radius: 50%;
  line-height: 0;
  overflow: hidden;
  position: relative;
  color: var(--text);
}
.model.ham-pop .model-body .bottom-list .social-icons a::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: var(--prime);
}
.model.ham-pop .model-body .bottom-list .social-icons a::before {
  border-radius: 50%;
  transform: scale(1.5);
  z-index: -1;
  opacity: 0;
  transition: 0.2s ease;
}
.model.ham-pop .model-body .bottom-list .social-icons a:not(:last-child) {
  margin-right: 4px;
}
.model.ham-pop .model-body .bottom-list .social-icons a svg {
  width: 24px;
  height: 24px;
}
.model.ham-pop .model-body .bottom-list .social-icons a svg path {
  transition: none;
}
.model.ham-pop .model-body .bottom-list .social-icons a svg path[stroke], .model.ham-pop .model-body .bottom-list .social-icons a svg path[fill=none] {
  stroke: currentColor;
}
.model.ham-pop .model-body .bottom-list .social-icons a svg path[fill] {
  fill: currentColor;
}
.model.ham-pop .model-body .bottom-list .social-icons a:hover {
  color: #dadada;
}
.model.ham-pop .model-body .bottom-list .social-icons a:hover::before {
  transition: 0.5s ease;
  opacity: 1;
  transform: scale(1);
}

.model.enquire-pop {
  right: 0;
  transform: translateX(100%);
  transition: 0.5s ease;
  background: var(--white);
  z-index: 10;
}
.model.enquire-pop.is-open {
  transform: translateX(0%);
}
.model.enquire-pop button.close {
  top: 25px;
  right: 25px;
}
.model.enquire-pop .model-body {
  padding: 60px 35px 30px;
  height: 100%;
  overflow-y: auto;
}
.model.enquire-pop .model-body::-webkit-scrollbar {
  width: 3px;
  background: var(--white);
}
.model.enquire-pop .model-body::-webkit-scrollbar-track {
  box-shadow: none;
}
.model.enquire-pop .model-body::-webkit-scrollbar-thumb {
  background-color: #5e5e5e;
  border-radius: 8px;
}
.model.enquire-pop .model-body .title {
  text-align: center;
  margin-bottom: 2rem;
}
.model.enquire-pop .model-body .title h4 {
  font-size: 32px;
  color: var(--black);
  font-family: Baloo;
  font-weight: 500;
}
.model.enquire-pop .model-body .title p {
  color: var(--black);
  margin-top: 10px;
  font-size: 14px;
  line-height: 20px;
  max-width: 317px;
  margin-left: auto;
  margin-right: auto;
}
.model.enquire-pop .model-body .form {
  --gaptb: 15px;
}
.model.enquire-pop .model-body .form .sbmt-grp {
  width: 100%;
}
.model.enquire-pop .model-body .form .sbmt-grp a {
  text-align: center;
  text-transform: capitalize;
  padding: 10px 30px;
}
.model.enquire-pop .model-body .form .sbmt-grp a:hover {
  background: #1BB6F0;
  color: #fff;
}

.model.admissioneq-pop {
  right: 0;
  transform: translateX(100%);
  transition: 0.5s ease;
  background: var(--white);
  z-index: 10;
}
.model.admissioneq-pop.is-open {
  transform: translateX(0%);
}
.model.admissioneq-pop button.close {
  top: 25px;
  right: 25px;
}
.model.admissioneq-pop .model-body {
  padding: 60px 35px 30px;
  height: 100%;
  overflow-y: auto;
}
.model.admissioneq-pop .model-body::-webkit-scrollbar {
  width: 3px;
  background: var(--white);
}
.model.admissioneq-pop .model-body::-webkit-scrollbar-track {
  box-shadow: none;
}
.model.admissioneq-pop .model-body::-webkit-scrollbar-thumb {
  background-color: #5e5e5e;
  border-radius: 8px;
}
.model.admissioneq-pop .model-body .title {
  text-align: center;
  margin-bottom: 2rem;
}
.model.admissioneq-pop .model-body .title h4 {
  font-size: 32px;
  color: var(--black);
  font-family: Baloo;
  font-weight: 500;
  text-transform: none;
  line-height: 1;
}
.model.admissioneq-pop .model-body .title p {
  color: var(--black);
  margin-top: 10px;
  font-size: 16px;
  line-height: 20px;
  max-width: 317px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 768px) {
  .model.admissioneq-pop .model-body .title p {
    font-size: 14px;
    max-width: 300px;
  }
}
.model.admissioneq-pop .model-body .form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  --gaptb: 15px;
  --borderbefore: var(--black);
}
.model.admissioneq-pop .model-body .form .form-group {
  position: relative;
}
.model.admissioneq-pop .model-body .form .form-group::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: var(--borderbefore);
}
.model.admissioneq-pop .model-body .form .form-group::before {
  height: var(--borderwidth);
  top: unset;
}
.model.admissioneq-pop .model-body .form .form-group input, .model.admissioneq-pop .model-body .form .form-group textarea {
  border-bottom: none;
}
.model.admissioneq-pop .model-body .form .form-group.w-full {
  grid-column: span 2;
}
.model.admissioneq-pop .model-body .form .form-group select ~ label {
  top: -50%;
  color: #000;
  font-size: 12px;
}
.model.admissioneq-pop .model-body .form .form-group .custom-select::before {
  background-image: url(/assets/icon/arrow-down.svg);
  background-size: 65% auto;
}
.model.admissioneq-pop .model-body .sbmt-grp {
  width: 100%;
  padding-top: 20px;
}
.model.admissioneq-pop .model-body .sbmt-grp a {
  text-align: center;
  text-transform: capitalize;
  padding: 10px 30px;
}
.model.admissioneq-pop .model-body .sbmt-grp a:hover {
  background: #1BB6F0;
  color: #fff;
}

.model.video-pop {
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.4784313725);
  z-index: 9;
  max-width: 100%;
  transform: translateY(100%);
  transition: 0.5s ease;
}
.model.video-pop.is-open {
  transform: translateY(0%);
}
.model.video-pop .close-video {
  position: absolute;
  bottom: calc(100% + 20px);
  top: auto;
  right: -40px;
  height: 50px;
  width: 50px;
  border-radius: 50%;
  background: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.5s ease;
}
.model.video-pop .close-video:hover {
  background: var(--primary);
}
.model.video-pop .close-video svg {
  height: 35%;
  width: 35%;
}
.model.video-pop .close-video path {
  stroke-width: 2;
  stroke: var(--white);
}
.model.video-pop .model-body {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  width: 100%;
  max-width: 50%;
}
@media (max-width: 768px) {
  .model.video-pop .model-body {
    max-width: 78%;
  }
}
.model.video-pop .model-body iframe {
  width: 100%;
  aspect-ratio: 1.9;
  border: 2px solid var(--white);
  background: var(--white);
}

.ad-pop {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  max-width: 100%;
  background: none;
  transform: translateY(100%);
  transition: 0.5s ease;
  pointer-events: none;
}
.ad-pop.is-open {
  transform: translateY(0%);
  pointer-events: all;
}
.ad-pop .model-body {
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.ad-pop .model-body .ad-pop-slider {
  max-width: 500px;
  width: 100%;
  position: relative;
  padding: 0 10px;
}
@media (max-width: 540px) {
  .ad-pop .model-body .ad-pop-slider {
    max-width: 280px;
  }
}
.ad-pop .model-body .ad-pop-slider .close {
  position: absolute;
  color: var(--white);
  top: 20px;
  right: 20px;
  line-height: 0;
  background: rgba(255, 255, 255, 0.9098039216);
  border: none;
  cursor: pointer;
  z-index: 10;
  border-radius: 50%;
  padding: 5px;
}
.ad-pop .model-body .ad-pop-slider .close svg {
  width: 26px;
  height: 26px;
}
.ad-pop .model-body .ad-pop-slider .close svg path[stroke], .ad-pop .model-body .ad-pop-slider .close svg path[fill=none] {
  stroke: #000;
}
.ad-pop .model-body .ad-pop-slider .close svg path[fill]:not([fill=none]) {
  fill: #000;
}
.ad-pop .model-body figure {
  line-height: 0;
  position: relative;
  width: 100%;
  pointer-events: all;
}
.ad-pop .model-body img {
  width: 100%;
  height: auto;
  border-radius: 15px;
  display: block;
}
.ad-pop .swiper-pagination {
  bottom: -30px !important;
}

.model2.admission-pop {
  right: 0;
  transform: translateX(100%);
  transition: 0.5s ease;
  background: var(--white);
  max-width: 870px;
  z-index: 10;
}
.model2.admission-pop.is-open {
  transform: translateX(0%);
}
.model2.admission-pop button.close {
  top: 25px;
  right: 25px;
}
.model2.admission-pop button.close svg {
  width: 20px;
}
.model2.admission-pop .model-body {
  padding: 0px 35px 30px;
  margin-top: 60px;
  height: calc(100% - 60px);
  overflow-y: auto;
}
.model2.admission-pop .model-body::-webkit-scrollbar {
  width: 3px;
  background: var(--white);
}
.model2.admission-pop .model-body::-webkit-scrollbar-track {
  box-shadow: none;
}
.model2.admission-pop .model-body::-webkit-scrollbar-thumb {
  background-color: #5e5e5e;
  border-radius: 8px;
}
@media (max-width: 540px) {
  .model2.admission-pop .model-body {
    padding: 0px 15px 30px;
  }
}
.model2.admission-pop .model-body .title {
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .model2.admission-pop .model-body .title {
    margin-bottom: 1rem;
  }
}
@media (max-width: 540px) {
  .model2.admission-pop .model-body .title {
    margin-bottom: 0.5rem;
  }
}
.model2.admission-pop .model-body .title h3 {
  font-size: 36px;
  line-height: 1;
  color: var(--black);
  font-family: Baloo;
  text-transform: none;
  padding: 0 70px 0 0;
  font-weight: 500;
}
@media (max-width: 768px) {
  .model2.admission-pop .model-body .title h3 {
    font-size: 30px;
    padding: 0 50px 0 0;
  }
}
@media (max-width: 540px) {
  .model2.admission-pop .model-body .title h3 {
    padding: 0;
    font-size: 24px;
  }
}
.model2.admission-pop .model-body .inner-body .inner-content h6 {
  padding-bottom: 10px;
}
.model2.admission-pop .model-body .inner-body .inner-content ul {
  padding: 10px 20px;
}
.model2.admission-pop .model-body .inner-body .inner-content p {
  color: #666;
}
.model2.admission-pop .model-body .inner-body .inner-content p:not(:last-child) {
  padding-bottom: 10px;
}
.model2.admission-pop .model-body .inner-body .inner-content li {
  color: #666;
  position: relative;
}
@media (max-width: 540px) {
  .model2.admission-pop .model-body .inner-body .inner-content li {
    font-size: 14px;
    line-height: 1.2;
  }
}
.model2.admission-pop .model-body .inner-body .inner-content li:not(:last-child) {
  padding-bottom: 5px;
}
.model2.admission-pop .model-body .inner-body .inner-content li::before {
  content: "•";
  margin-right: 5px;
  font-size: 20px;
  position: absolute;
  left: -24px;
  top: -3px;
}
@media (max-width: 540px) {
  .model2.admission-pop .model-body .inner-body .inner-content li::before {
    font-size: 16px;
    top: 0;
  }
}
.model2.admission-pop .model-body .inner-body .inner-slider-container {
  padding: 10px 0;
  position: relative;
}
@media (max-width: 991px) {
  .model2.admission-pop .model-body .inner-body .inner-slider-container {
    padding: 10px 0 25px;
  }
}
.model2.admission-pop .model-body .inner-body .inner-slider-container .swiper-nav {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  pointer-events: none;
  padding: 0px 20px;
  z-index: 999;
}
.model2.admission-pop .model-body .inner-body .inner-slider-container .swiper-nav button {
  pointer-events: all;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #000;
  background: white;
  vertical-align: middle;
  display: block !important;
}
.model2.admission-pop .model-body .inner-body .inner-slider-container .swiper-nav button svg {
  vertical-align: middle;
}
.model2.admission-pop .model-body .inner-body .inner-slider-container .inner-slider .item figure {
  line-height: 0;
  border-radius: 15px;
  position: relative;
}
.model2.admission-pop .model-body .inner-body .inner-slider-container .inner-slider .item figure::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: linear-gradient(180deg, rgba(0, 0, 0, 0) 45%, rgba(0, 0, 0, 0.3) 100%);
}
.model2.admission-pop .model-body .inner-body .inner-slider-container .inner-slider .item figure::before {
  border-radius: 15px;
}
.model2.admission-pop .model-body .inner-body .inner-slider-container .inner-slider .item figure img {
  width: 100%;
  border-radius: 15px;
}
.model2.admission-pop .model-body .inner-body .inner-slider-container .inner-dots {
  position: absolute;
  bottom: 10%;
  z-index: 2;
  text-align: center;
  --swiper-pagination-color: #fff;
  --swiper-pagination-bullet-size: 12px;
  --swiper-pagination-bullet-inactive-color: #fff;
  --swiper-pagination-bullet-inactive-opacity: 0.6;
}
@media (max-width: 540px) {
  .model2.admission-pop .model-body .inner-body .inner-slider-container .inner-dots {
    bottom: 14%;
    --swiper-pagination-bullet-size: 8px;
  }
}

.team-pop {
  left: 50%;
  top: 20% !important;
  transform: translate(-50%, 100vh);
  bottom: 0;
  max-width: 50% !important;
  background: transparent;
  transition: 0.5s ease;
  height: -moz-fit-content;
  height: fit-content;
  z-index: 10;
}
@media (max-width: 991px) {
  .team-pop {
    max-width: 80% !important;
  }
}
@media (max-width: 540px) {
  .team-pop {
    max-width: 100% !important;
    height: 100%;
    top: 0 !important;
  }
}
.team-pop.is-open {
  transform: translate(-50%, 0);
}
.team-pop .model-body {
  padding: 30px;
  background: #fff;
  position: relative;
  max-width: 100%;
  border-radius: 15px;
  overflow-y: auto;
}
.team-pop .model-body::-webkit-scrollbar {
  width: 3px;
  background: var(--white);
}
.team-pop .model-body::-webkit-scrollbar-track {
  box-shadow: none;
}
.team-pop .model-body::-webkit-scrollbar-thumb {
  background-color: #5e5e5e;
  border-radius: 8px;
}
@media (max-width: 768px) {
  .team-pop .model-body {
    padding: 15px 10px;
  }
}
@media (max-width: 540px) {
  .team-pop .model-body {
    padding: 15px;
    border-radius: unset;
    height: 100%;
  }
}
.team-pop .model-body button.close {
  top: 25px;
  right: 25px;
}
@media (max-width: 768px) {
  .team-pop .model-body button.close {
    top: 12px;
    right: 16px;
  }
}
@media (max-width: 768px) {
  .team-pop .model-body button.close svg {
    width: 16px;
  }
}
.team-pop .model-body .team-content .flex {
  justify-content: center;
  gap: 20px;
}
@media (max-width: 768px) {
  .team-pop .model-body .team-content .flex {
    gap: 10px;
  }
}
@media (max-width: 540px) {
  .team-pop .model-body .team-content .flex {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}
.team-pop .model-body .team-content .flex figure, .team-pop .model-body .team-content .flex figcaption {
  flex: 1;
}
@media (max-width: 540px) {
  .team-pop .model-body .team-content .flex figure {
    width: 140px;
    border-radius: 50%;
  }
}
.team-pop .model-body .team-content .flex figure img {
  width: 100%;
  height: 100%;
  border-radius: 15px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 540px) {
  .team-pop .model-body .team-content .flex figure img {
    border-radius: 50%;
  }
}
.team-pop .model-body .team-content .flex figcaption h5, .team-pop .model-body .team-content .flex figcaption h6 {
  text-transform: none;
  font-family: "Poppins", serif;
}
@media (max-width: 540px) {
  .team-pop .model-body .team-content .flex figcaption h5, .team-pop .model-body .team-content .flex figcaption h6 {
    text-align: center;
  }
}
.team-pop .model-body .team-content .flex figcaption h5 {
  font-size: 24px;
}
@media (max-width: 768px) {
  .team-pop .model-body .team-content .flex figcaption h5 {
    font-size: 20px;
  }
}
.team-pop .model-body .team-content .flex figcaption h6 {
  font-size: 18px;
  padding-bottom: 10px;
  color: #666;
  border-bottom: 1px solid rgba(165, 165, 165, 0.8078431373);
}
@media (max-width: 768px) {
  .team-pop .model-body .team-content .flex figcaption h6 {
    font-size: 14px;
    line-height: 1.2;
  }
}
.team-pop .model-body .team-content .flex figcaption .content-wrap {
  margin-top: 10px;
  border-right: 1px solid #000;
  padding-top: 20px;
}
@media (max-width: 768px) {
  .team-pop .model-body .team-content .flex figcaption .content-wrap {
    margin-top: 0;
    padding-top: 10px;
  }
}
@media (max-width: 540px) {
  .team-pop .model-body .team-content .flex figcaption .content-wrap {
    border-top: none;
  }
}
.team-pop .model-body .team-content .flex figcaption .content-wrap .scroll-content {
  height: 270px;
  overflow-y: auto;
  margin: -4px;
  padding-right: 14px;
  padding-left: 5px;
  color: #666;
}
@media (max-width: 768px) {
  .team-pop .model-body .team-content .flex figcaption .content-wrap .scroll-content {
    padding-right: 10px;
    margin: -3px;
  }
}
.team-pop .model-body .team-content .flex figcaption .content-wrap .scroll-content p {
  padding-bottom: 10px;
}
@media (max-width: 768px) {
  .team-pop .model-body .team-content .flex figcaption .content-wrap .scroll-content p {
    font-size: 14px;
    line-height: 1.2;
  }
}
.team-pop .model-body .team-content .flex figcaption .content-wrap .scroll-content::-webkit-scrollbar {
  width: 8px;
  background: none;
  height: 8px;
}
@media (max-width: 540px) {
  .team-pop .model-body .team-content .flex figcaption .content-wrap .scroll-content::-webkit-scrollbar {
    width: 4px;
  }
}
.team-pop .model-body .team-content .flex figcaption .content-wrap .scroll-content::-webkit-scrollbar-thumb {
  background-color: #1BB6F0;
  border-radius: 0px;
}
.team-pop .model-body .team-content .flex figcaption .content-wrap .scroll-content::-webkit-scrollbar-track {
  box-shadow: none;
}

header.header-block {
  background-color: var(--prime);
}/*# sourceMappingURL=header.css.map */