@import url(../css/main-font.css);

/********************Header**********************/
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 25px 0 10px 0;
  background-color: #ffffff;
  z-index: 1000;
  -webkit-transition: 0.2s;
  -moz-transition: 0.2s;
  -ms-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}
.main-header.compact {
  top: -85px;
}
.main-header.shadow-bar {
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
}
.root {
  padding-top: 163px;
}
.header-logo {
  display: flex;
  align-items: center;
  gap: 16px;
}
.hl-img {
  width: 52px;
  height: 52px;
}
.hl-name {
  color: #662d91;
  font-size: 20px;
  font-weight: 700;
}
.hl-desc {
  font-size: 11.85px;
  color: var(--grey-400);
  font-weight: 500;
  margin-top: 6px;
  white-space: nowrap;
}
.lang-dropdown-btn {
  display: flex;
  align-items: center;
  width: auto;
  height: 38px;
  background-color: rgba(102, 45, 145, 0.0784313725);
  border-radius: 100px;
  padding: 0 8px 0 12px;
  gap: 8px;
}
.lang-dropdown-btn img {
  width: 22px;
  height: 22px;
  border-radius: 100%;
}
.lang-dropdown-btn span {
  font-size: 12px;
  font-weight: 500;
}
.lang-dropdown-btn i {
  position: relative;
  top: 3px;
  font-size: 8px;
  color: #919191;
}
.nav-menu {
  display: flex;
  align-items: center;
  height: 60px;
}
.nm-list {
  display: flex;
  align-items: center;
  gap: 37px;
  height: 100%;
}
.nm-list li {
  height: 100%;
}
.nml-link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 0 5px;
}
.nml-link span {
  position: relative;
  z-index: 1;
  font-size: 15px;
  font-weight: 500;
  color: var(--grey-500);
}
.nml-link:before {
  content: "";
  display: block;
  width: calc(100% + 20px);
  height: 60%;
  background-color: var(--violet-50);
  position: absolute;
  top: 0;
  left: -10px;
  z-index: 1;
  -webkit-transform: translateY(40%) scale(0);
  transform: translateY(40%) scale(0);
  border-radius: 8px;
  transition: 0.12s;
}
.nml-link:hover span {
  color: var(--violet-500);
}
.nml-link:hover::before {
  -webkit-transform: translateY(40%) scale(1);
  transform: translateY(40%) scale(1);
}
.lang-flag {
  width: 22px;
  height: 22px;
}
.dropdown-menu {
  border: none;
  background-color: var(--violet-50);
  border-radius: 15px;
  overflow: hidden;
}
.dropdown-item:hover {
  background-color: rgba(0, 0, 0, 0.0470588235);
}
.dropdown-item:focus {
  background-color: var(--violet-500);
  color: #fff;
}
.full-shadow {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3333333333);
  z-index: 500;
}
.menu-toggler {
  display: none;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  font-size: 1.75rem;
}
.nvp-mobile-logo {
  display: none;
  text-align: center;
  margin-bottom: 2rem;
  margin-top: 10px;
}
.nvp-mobile-logo img {
  width: 100px;
}
.nvp-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  font-size: 43px;
  color: #999;
  position: absolute;
  top: -4px;
}
[dir="ltr"] .nvp-close {
  right: 8px;
}
[dir="rtl"] .nvp-close {
  left: 8px;
}
.sec {
  position: relative;
  z-index: 2;
}
.sec.top-clouds::before,
.sec.top-clouds::after,
.sec.bottom-clouds::before,
.sec.bottom-clouds::after {
  content: "";
  display: none;
  width: 100%;
  height: 62px;
  position: absolute;
  left: 0;
  background-size: 1440px 62px;
  background-repeat: repeat-x;
  animation: clouds-anim 28s linear infinite;
}
.sec.top-clouds::before {
  display: block;
  top: -62px;
}
.sec.bottom-clouds::after {
  display: block;
  bottom: -62px;
}
.sec.pink {
  background-color: var(--violet-50);
}
.sec.pink.bottom-clouds::after {
  background-image: url("../img/clouds-pink-bottom.svg");
}
.sec.yellow {
  background-color: #fff7f1;
}
.sec.yellow.top-clouds::before {
  background-image: url("../img/clouds-yellow-top.svg");
}
.sec.yellow.bottom-clouds::after {
  background-image: url("../img/clouds-yellow-bottom.svg");
}
.sec.purple {
  background-color: var(--violet-500);
  color: #fff;
  padding: 40px 0;
}
.sec.purple.top-clouds::before {
  background-image: url("../img/clouds-purple-top.svg");
}
.sec.purple.bottom-clouds::after {
  background-image: url("../img/clouds-purple-bottom.svg");
}
.sec.white {
  background-color: #ffffff;
  padding: 40px 0;
}
.sec.white.top-clouds::before {
  background-image: url("../img/clouds-white-top.svg");
}
.sec.sub {
  z-index: 0;
  padding: 180px 0;
}
@keyframes clouds-anim {
  from {
    background-position-x: 0;
  }
  to {
    background-position-x: 1440px;
  }
}
.main-slider .item {
  padding: 70px 0;
}
.msc-title {
  font-size: 30px;
  font-weight: 700;
}
.msc-title span {
  color: var(--violet-500);
}
.msct-dots {
  display: inline-block;
  width: 26px;
  height: 26px;
  background-image: url("../img/mini-dots.svg");
  position: relative;
  top: 3px;
}
[dir="ltr"] .msct-dots {
  margin-left: 5px;
  margin-right: 0;
}
[dir="rtl"] .msct-dots {
  margin-left: 0;
  margin-right: 5px;
}
.msc-desc {
  font-size: 14px;
  color: #6e6e6e;
  max-width: 441px;
  line-height: 2;
  margin-top: 28px;
}
.rotate-90 {
  transform: rotate(90deg);
}
.rotate-180 {
  transform: rotate(180deg);
}
[dir="ltr"] .rotate-90 {
  transform: rotate(-90deg);
}
[dir="ltr"] .rotate-180 {
  transform: rotate(-180deg);
}
.ms-pic-parent {
  position: relative;
  aspect-ratio: 1/1;
  height: 400px;
}
.ms-pic-parent img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ms-pic-parent::before {
  content: "";
  display: block;
  position: absolute;
  top: -1%;
  width: 22%;
  aspect-ratio: 1/1;
  background-image: url("../img/dots.svg");
  z-index: 9;
}
[dir="ltr"] .ms-pic-parent::before {
  left: 11%;
}
[dir="rtl"] .ms-pic-parent::before {
  right: 11%;
}
.msp-main-pic {
  position: relative;
  width: 80%;
  height: 100%;
  border: 5px solid #fff;
  border-radius: 500px 500px 40px 40px;
  overflow: hidden;
  margin: 0 auto;
  z-index: 10;
}
.msp-bottom-pic {
  position: absolute;
  bottom: -10%;
  width: 58%;
  height: 58%;
  border: 5px solid #fff;
  border-radius: 100%;
  overflow: hidden;
  z-index: 11;
}
[dir="ltr"] .msp-bottom-pic {
  right: 0%;
}
[dir="rtl"] .msp-bottom-pic {
  left: 0%;
}
.msp-leafs span {
  position: absolute;
  aspect-ratio: 1/1;
  animation: spin-anim 8s infinite linear;
  z-index: 9;
}
.msp-leafs span.l1 {
  width: 37%;
  background-image: url("../img/dandelion.svg");
  top: 17%;
}
[dir="ltr"] .msp-leafs span.l1 {
  left: -9%;
}
[dir="rtl"] .msp-leafs span.l1 {
  right: -9%;
}
.msp-leafs span.l2 {
  width: 30%;
  background-image: url("../img/dandelion.svg");
  top: 35%;
  animation-duration: 13s;
}
[dir="ltr"] .msp-leafs span.l2 {
  right: -33%;
}
[dir="rtl"] .msp-leafs span.l2 {
  left: -33%;
}
.msp-leafs span.l3 {
  width: 47%;
  background-image: url("../img/leaf.svg");
  bottom: 0;
  animation: leaf-anim 4s infinite;
  transform-origin: left bottom;
}
[dir="ltr"] .msp-leafs span.l3 {
  left: -15%;
}
[dir="rtl"] .msp-leafs span.l3 {
  right: -15%;
}
@keyframes spin-anim {
  from {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes leaf-anim {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  50% {
    -webkit-transform: rotate(20deg);
    transform: rotate(20deg);
  }
  100% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
}
.msp-stars {
  color: #fff;
}
.msp-stars .icon-star-fill {
  position: absolute;
}
.msp-stars .icon-star-fill:nth-child(1) {
  font-size: 37px;
  top: 0;
  transform: rotate(-25deg);
  -webkit-transform: rotate(-25deg);
  -moz-transform: rotate(-25deg);
  -ms-transform: rotate(-25deg);
  -o-transform: rotate(-25deg);
}
[dir="ltr"] .msp-stars .icon-star-fill:nth-child(1) {
  right: 0;
}
[dir="rtl"] .msp-stars .icon-star-fill:nth-child(1) {
  left: 0;
}
.msp-stars .icon-star-fill:nth-child(2) {
  font-size: 26px;
  top: 4%;
  transform: rotate(-40deg);
  -webkit-transform: rotate(-40deg);
  -moz-transform: rotate(-40deg);
  -ms-transform: rotate(-40deg);
  -o-transform: rotate(-40deg);
}
[dir="ltr"] .msp-stars .icon-star-fill:nth-child(2) {
  right: -12%;
}
[dir="rtl"] .msp-stars .icon-star-fill:nth-child(2) {
  left: -12%;
}
.msp-stars .icon-star-fill:nth-child(3) {
  font-size: 28px;
  top: 12%;
  transform: rotate(-9deg);
  -webkit-transform: rotate(-9deg);
  -moz-transform: rotate(-9deg);
  -ms-transform: rotate(-9deg);
  -o-transform: rotate(-9deg);
}
[dir="ltr"] .msp-stars .icon-star-fill:nth-child(3) {
  right: -4%;
}
[dir="rtl"] .msp-stars .icon-star-fill:nth-child(3) {
  left: -4%;
}
.msp-stars .icon-star-fill:nth-child(4) {
  font-size: 23px;
  bottom: 18%;
  transform: rotate(-40deg);
  -webkit-transform: rotate(-40deg);
  -moz-transform: rotate(-40deg);
  -ms-transform: rotate(-40deg);
  -o-transform: rotate(-40deg);
}
[dir="ltr"] .msp-stars .icon-star-fill:nth-child(4) {
  right: -18%;
}
[dir="rtl"] .msp-stars .icon-star-fill:nth-child(4) {
  left: -18%;
}
.msp-stars .icon-star-fill:nth-child(5) {
  font-size: 18px;
  bottom: 42%;
  transform: rotate(20deg);
  -webkit-transform: rotate(20deg);
  -moz-transform: rotate(20deg);
  -ms-transform: rotate(20deg);
  -o-transform: rotate(20deg);
}
[dir="ltr"] .msp-stars .icon-star-fill:nth-child(5) {
  left: -3%;
}
[dir="rtl"] .msp-stars .icon-star-fill:nth-child(5) {
  right: -3%;
}
.msp-stars .icon-star-fill:nth-child(6) {
  font-size: 19px;
  bottom: -13%;
  transform: rotate(5deg);
  -webkit-transform: rotate(5deg);
  -moz-transform: rotate(5deg);
  -ms-transform: rotate(5deg);
  -o-transform: rotate(5deg);
}
[dir="ltr"] .msp-stars .icon-star-fill:nth-child(6) {
  left: 23%;
}
[dir="rtl"] .msp-stars .icon-star-fill:nth-child(6) {
  right: 23%;
}
.msp-heart {
  position: absolute;
  bottom: -20%;
  background-image: url("../img/heart-purple.svg");
  aspect-ratio: 1/1;
  width: 25%;
  z-index: 8;
}
[dir="ltr"] .msp-heart {
  left: 35%;
}
[dir="rtl"] .msp-heart {
  right: 35%;
}
.msp-flower {
  position: absolute;
  bottom: 7%;
  background-image: url("../img/flower-red.svg");
  aspect-ratio: 1/1;
  width: 16%;
  z-index: 12;
  animation: spin-anim 22s infinite linear;
}
[dir="ltr"] .msp-flower {
  right: -7%;
}
[dir="rtl"] .msp-flower {
  left: -7%;
}
.msp-letters span {
  position: absolute;
  aspect-ratio: 44/41;
  animation: letters-anim infinite;
}
.msp-letters .a {
  width: 13%;
  background-image: url("../img/letter-a.svg");
  top: 42%;
  z-index: 12;
  animation-duration: 3s;
  animation-delay: 0.3s;
}
[dir="ltr"] .msp-letters .a {
  right: 2%;
}
[dir="rtl"] .msp-letters .a {
  left: 2%;
}
.msp-letters .b {
  width: 14%;
  background-image: url("../img/letter-b.svg");
  top: 16%;
  z-index: 8;
  animation-duration: 2s;
  animation-delay: 0.2s;
}
[dir="ltr"] .msp-letters .b {
  right: 3%;
}
[dir="rtl"] .msp-letters .b {
  left: 3%;
}
.msp-letters .c {
  width: 18%;
  background-image: url("../img/letter-c.svg");
  top: 26%;
  z-index: 8;
  animation-duration: 3s;
  animation-delay: 0.6s;
}
[dir="ltr"] .msp-letters .c {
  right: -10%;
}
[dir="rtl"] .msp-letters .c {
  left: -10%;
}
@keyframes letters-anim {
  0% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(15%) rotate(20deg);
  }
  100% {
    transform: translateY(0) rotate(0);
  }
}
.owl-dot span {
  -webkit-transition: 0.2s !important;
  -moz-transition: 0.2s !important;
  -ms-transition: 0.2s !important;
  -o-transition: 0.2s !important;
  transition: 0.2s !important;
  background-color: var(--grey-100) !important;
  margin: 4px !important;
}
.owl-dot.active span {
  width: 30px !important;
  background-color: var(--violet-500) !important;
}

.sec-title {
  text-align: center;
  max-width: 404px;
  margin: 0 auto 5rem auto;
}

.st-label {
  display: block;
  font-size: 15px;
  color: var(--violet-500);
  font-weight: 700;
  margin-bottom: 10px;
}

.st-title {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
}

.ent-item {
  text-align: center;
}
.ent-item:hover .enti-pic img {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
}

.enti-pic {
  position: relative;
  overflow: hidden;
  margin-bottom: 10px;
  border-radius: 18px 18px 0 0;
}
.enti-pic img {
  width: 100%;
  height: 292px;
  object-fit: cover;
  border-radius: 18px 18px 0 0;
  -webkit-transition: 0.2s;
  -moz-transition: 0.2s;
  -ms-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}
.enti-pic::after {
  content: "";
  display: block;
  background-image: url("../img/clouds-sm.svg");
  position: absolute;
  bottom: -25px;
  left: 0;
  width: 100%;
  height: 50px;
  background-size: 100% 100%;
}

.entc-title {
  color: var(--grey-900);
  font-weight: 700;
  font-size: 17px;
  margin-bottom: 1rem;
}

.entc-desc {
  color: #6e6e6e;
  font-size: 14px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  line-clamp: 4;
  -webkit-box-orient: vertical;
}

.entc-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  color: var(--violet-500);
  font-weight: 700;
  padding: 8px 15px;
  border-radius: 50px;
  -webkit-transition: 0.2s;
  -moz-transition: 0.2s;
  -ms-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
  margin-top: 1rem;
}
.entc-link:hover {
  background-color: var(--violet-50);
}
.entc-link span {
  font-size: 14px;
}
.entc-link i {
  font-size: 12px;
  transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  position: relative;
  top: 2px;
}

[dir="ltr"] .entc-link i {
  transform: rotate(-90deg);
  -webkit-transform: rotate(-90deg);
  -moz-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  -o-transform: rotate(-90deg);
}

.sec-my {
  margin: 10rem 0;
}
.ent-sec::before,
.ent-sec:after {
  content: "";
  display: block;
  position: absolute;
  z-index: 1;
}
.ent-sec::before {
  width: 272px;
  height: 307px;
  background-image: url("../img/rocket-with-line.svg");
  top: 0;
  left: 0;
}
.ent-sec::after {
  width: 103px;
  height: 409px;
  background-image: url("../img/line-effect.svg");
  top: 100px;
  right: 0;
}
.ent-sec .row {
  position: relative;
  z-index: 2;
}
.edu-item {
  text-align: center;
  max-width: 264px;
  margin: 0 auto;
}
.edu-pic {
  height: 273px;
}
.edu-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--grey-900);
  margin: 2rem 0 1rem;
}
.edu-desc {
  font-size: 13px;
  color: #6e6e6e;
  line-height: 1.8;
}
.edu-icons {
  color: #fac403;
}
.edu-icons i {
  position: absolute;
  font-size: 58px;
  z-index: 1;
}
.edu-icons i.icon-tornado {
  top: 30%;
  animation: spin-anim 1s infinite linear;
}
[dir="ltr"] .edu-icons i.icon-tornado {
  right: 100px;
}
[dir="rtl"] .edu-icons i.icon-tornado {
  left: 100px;
}
.edu-icons i.icon-leaf {
  top: 30%;
  animation: shake-anim 0.6s infinite linear;
}
[dir="ltr"] .edu-icons i.icon-leaf {
  left: 100px;
}
[dir="rtl"] .edu-icons i.icon-leaf {
  right: 100px;
}
@keyframes shake-anim {
  0% {
    transform: rotate(0);
    -webkit-transform: rotate(0);
    -moz-transform: rotate(0);
    -ms-transform: rotate(0);
    -o-transform: rotate(0);
  }
  50% {
    transform: rotate(30deg);
    -webkit-transform: rotate(30deg);
    -moz-transform: rotate(30deg);
    -ms-transform: rotate(30deg);
    -o-transform: rotate(30deg);
  }
  100% {
    transform: rotate(0);
    -webkit-transform: rotate(0);
    -moz-transform: rotate(0);
    -ms-transform: rotate(0);
    -o-transform: rotate(0);
  }
}
.ac-label {
  display: block;
  font-weight: 700;
  font-size: 15px;
  color: var(--violet-500);
  margin-bottom: 10px;
}
.ac-title {
  font-weight: 700;
  font-size: 24px;
  line-height: 1.6;
}
.act-parent {
  max-width: 380px;
}
.ac-desc {
  color: #6e6e6e;
  font-size: 14px;
  line-height: 1.9;
  margin-top: 2rem;
}
.ac-desc span {
  font-weight: 500;
  color: var(--grey-900);
}
.about-content {
  max-width: 570px;
}
.ac-ing-label {
  display: flex;
  align-items: center;
  color: #6e6e6e;
  gap: 10px;
}
.ac-ing-label i {
  font-size: 24px;
}
.ac-ing-label span {
  font-size: 13px;
  padding-bottom: 5px;
}

/************video-player*************/
.video-player {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  aspect-ratio: 16/9;
  width: 100%;
}
.video-player video {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.vp-control {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
}
.vp-control:hover .vpc-btn {
  box-shadow: 0 0 0 20px rgba(102, 45, 145, 0.4);
}
.vpc-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  background-color: var(--violet-500);
  color: #fff;
  font-size: 14px;
  border-radius: 100%;
  -webkit-transition: 0.2s;
  -moz-transition: 0.2s;
  -ms-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}
.ac-video-col {
  max-width: 480px;
}
.acvc-grid {
  display: flex;
  gap: 15px;
  margin-top: 15px;
}
.acvcg-item {
  flex: 1;
}
.acvcgi-box {
  display: flex;
  align-items: center;
  background-color: var(--violet-50);
  border-radius: 20px;
  height: 90px;
  padding: 0 20px;
}
.acvcgi-box i {
  flex-shrink: 0;
  font-size: 30px;
  color: var(--violet-500);
}
[dir="ltr"] .acvcgi-box i {
  margin-left: 0;
  margin-right: 12px;
}
[dir="rtl"] .acvcgi-box i {
  margin-left: 12px;
  margin-right: 0;
}
.acvcgi-box .title {
  font-size: 15px;
  font-weight: 500;
  color: var(--grey-900);
  display: block;
}
.acvcgi-box .desc {
  font-size: 12px;
  color: #6e6e6e;
}

/****************about-sec*************/
.about-sec .container {
  position: relative;
  z-index: 2;
}
.about-sec::after {
  content: "";
  display: block;
  width: 98px;
  height: 357px;
  background-image: url("../img/about-line.svg");
  position: absolute;
  top: 0;
  right: 0;
}
.ac-icons i {
  position: absolute;
  z-index: 1;
}
.ac-icons i.icon-sun {
  color: #535353;
  top: 20%;
  font-size: 60px;
  animation: scale-anim 0.5s infinite linear;
}
[dir="ltr"] .ac-icons i.icon-sun {
  right: 10%;
}
[dir="rtl"] .ac-icons i.icon-sun {
  left: 10%;
}
.ac-icons i.icon-bee {
  color: var(--grey-900);
  top: 60%;
  font-size: 45px;
  animation: bee-anim 3s infinite;
}
[dir="ltr"] .ac-icons i.icon-bee {
  right: 15%;
}
[dir="rtl"] .ac-icons i.icon-bee {
  left: 15%;
}
@keyframes scale-anim {
  0% {
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
  }
  50% {
    transform: scale(1.3);
    -webkit-transform: scale(1.3);
    -moz-transform: scale(1.3);
    -ms-transform: scale(1.3);
    -o-transform: scale(1.3);
  }
  100% {
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
  }
}
@keyframes bee-anim {
  0% {
    transform: rotate(-30deg);
    top: 60%;
  }
  50% {
    transform: rotate(30deg);
    top: 70%;
  }
  100% {
    transform: rotate(-30deg);
    top: 60%;
  }
}
.sp-top {
  text-align: center;
  margin-bottom: 4rem;
}
.spt-label {
  display: block;
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 12px;
}
.spt-title {
  font-weight: 700;
  font-size: 23px;
}
.dash-box {
  height: 100%;
  background-image: url("data:image/svg+xml,%3csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='100%25' height='100%25' fill='none' rx='26' ry='26' stroke='%23F0EAF4FF' stroke-width='1' stroke-dasharray='5%2c 8' stroke-dashoffset='54' stroke-linecap='square'/%3e%3c/svg%3e");
  padding: 24px;
  border-radius: 26px;
}
.sb-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.badge {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #5d2984;
  height: 43px;
  padding: 0 24px;
  border-radius: 18px;
  color: #fff;
  gap: 8px;
}
.badge i {
  font-size: 9px;
}
.badge.rounded {
  border-radius: 100px !important;
}
.badge.rounded span {
  font-size: 13px;
  font-weight: 500;
  padding-bottom: 2px;
}
.sb-desc {
  font-size: 14px;
  color: #f0eaf4;
  line-height: 1.7;
  margin-top: 24px;
}
.sp-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}
.sp-icons i {
  position: absolute;
  animation: shake-anim 0.6s infinite linear;
  z-index: 1;
}
.sp-icons i.icon-rocket {
  top: 50%;
  font-size: 53px;
}
[dir="ltr"] .sp-icons i.icon-rocket {
  right: 50px;
}
[dir="rtl"] .sp-icons i.icon-rocket {
  left: 50px;
}
.sp-icons i.icon-flower {
  top: 10%;
  font-size: 47px;
}
[dir="ltr"] .sp-icons i.icon-flower {
  left: 70px;
}
[dir="rtl"] .sp-icons i.icon-flower {
  right: 70px;
}
.sp-icons i.icon-leaf {
  bottom: 30%;
  font-size: 53px;
}
[dir="ltr"] .sp-icons i.icon-leaf {
  left: 50px;
}
[dir="rtl"] .sp-icons i.icon-leaf {
  right: 50px;
}

.sec .container {
  position: relative;
  z-index: 2;
}

/************************sec.yellow************************/
.comment-bubble {
  position: relative;
  aspect-ratio: 360/241;
  z-index: 1;
  max-width: 380px;
  margin: 0 auto;
}
.comment-bubble:hover::after {
  transform: scale(1.05);
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -ms-transform: scale(1.05);
  -o-transform: scale(1.05);
}
.comment-bubble .icon-quote {
  display: block;
  position: absolute;
  top: -30px;
  font-size: 55px;
  transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
}
[dir="ltr"] .comment-bubble .icon-quote {
  left: 30px;
}
[dir="rtl"] .comment-bubble .icon-quote {
  right: 30px;
}
.comment-bubble::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  z-index: 1;
  -webkit-transition: 0.2s;
  -moz-transition: 0.2s;
  -ms-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}
.comment-bubble.blue i {
  color: #00b3e0;
}
.comment-bubble.blue::after {
  background-image: url("../img/q-blue.png");
}
.comment-bubble.yellow i {
  color: #fac403;
}
.comment-bubble.yellow::after {
  background-image: url("../img/q-yellow.png");
}
.comment-bubble.purple i {
  color: #8557a7;
}
.comment-bubble.purple::after {
  background-image: url("../img/q-purple.png");
}

.cb-inner {
  position: relative;
  z-index: 2;
  padding: 42px 30px;
}

.cb-message {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  line-clamp: 5;
  -webkit-box-orient: vertical;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.9;
}

.cb-rate {
  display: flex;
  align-items: center;
  gap: 10px;
  position: absolute;
  bottom: 55px;
  z-index: 2;
}
[dir="ltr"] .cb-rate {
  left: 30px;
}
[dir="rtl"] .cb-rate {
  right: 30px;
}
.cb-rate i {
  font-size: 20px;
  animation: star-anim 0.8s linear infinite;
}

@keyframes star-anim {
  0% {
    transform: scale(1) rotate(0);
  }
  50% {
    transform: scale(1.1) rotate(20deg);
  }
  100% {
    transform: scale(1) rotate(0);
  }
}
.sys-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6rem;
}

.syst-label {
  display: block;
  font-weight: 500;
  color: var(--violet-500);
  font-size: 15px;
  margin-bottom: 12px;
}
.syst-title {
  font-size: 24px;
  font-weight: 700;
}
.syst-more {
  display: flex;
  align-items: center;
  padding: 3px 10px;
  gap: 5px;
  border-radius: 50px;
  -webkit-transition: 0.2s;
  -moz-transition: 0.2s;
  -ms-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}
.syst-more span {
  font-size: 14px;
  color: #6e6e6e;
  padding-bottom: 3px;
}
.syst-more i {
  font-size: 10px;
  color: var(--grey-500);
  transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
}
.syst-more:hover {
  background-color: var(--violet-50);
}
.syst-more:hover span,
.syst-more:hover i {
  color: var(--violet-500);
}
[dir="ltr"] .syst-more i {
  transform: rotate(-90deg);
  -webkit-transform: rotate(-90deg);
  -moz-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  -o-transform: rotate(-90deg);
}
.comment-info {
  display: flex;
  align-items: center;
  padding-right: 100px;
  gap: 14px;
  margin-top: 15px;
}
.ci-photo {
  width: 62px;
  height: 62px;
  border: 3px solid #fff;
  border-radius: 100%;
  overflow: hidden;
  flex-shrink: 0;
}
.ci-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ci-name {
  font-size: 15px;
  font-weight: 700;
  color: #414141;
  margin-bottom: 5px;
}
.ci-age {
  font-size: 13px;
  color: var(--grey-400);
}
.sys-designs svg {
  position: absolute;
  z-index: 0;
}
.sysd-rline {
  width: 39px;
  height: 219px;
  top: 20%;
  right: 0;
}
.sysd-lline {
  width: 56px;
  height: 219px;
  top: 40%;
  left: 0;
}
.sysd-e1 {
  top: 30%;
  right: 3%;
  animation: shake-anim 0.6s infinite linear;
}
.sysd-e2 {
  bottom: 15%;
  left: 4%;
  animation: shake-anim 0.6s infinite linear;
}

/********************Footer**********************/
.main-footer {
  font-size: 13px;
  color: var(--grey-400);
}
.f-logo {
  display: inline-block;
  width: 141px;
}
.f-logo img {
  width: 100%;
}
.f-desc {
  line-height: 1.9;
  margin-top: 22px;
  max-width: 300px;
}
.f-s-label {
  margin-top: 13px;
}
.f-socials {
  display: flex;
  align-items: center;
  margin-top: 17px;
  gap: 12px;
}
.f-socials i {
  color: #919191;
  font-size: 19px;
}
.f-socials a:hover i {
  color: var(--violet-500);
}
.f-title {
  font-size: 16px;
  color: var(--grey-900);
  font-weight: 700;
  margin-bottom: 26px;
}
.f-address {
  display: flex;
  margin-bottom: 20px;
  gap: 6px;
}
.f-address i {
  font-size: 17px;
  position: relative;
  top: 4px;
}
.f-ad-frame {
  border-radius: 18px;
  border: 2px solid var(--violet-50);
}
.f-link {
  display: flex;
  gap: 6px;
}
.f-link span {
  font-size: 14px;
  color: #6e6e6e;
}
.f-link i {
  font-size: 17px;
  position: relative;
  top: 4px;
  color: var(--grey-400);
}

a.f-link:hover span,
a.f-link:hover i {
  color: var(--violet-500);
}

.f-menu li {
  margin-bottom: 17px;
}
.f-menu li:last-child {
  margin-bottom: 0;
}
.f-copyright {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--grey-400);
  gap: 4px;
  border-top: 1px solid rgba(204, 204, 204, 0.5019607843);
  padding-top: 20px;
  margin-top: 50px;
}
.f-copyright i {
  font-size: 16px;
  position: relative;
  top: 1px;
}
.f-copyright p {
  font-size: 13px;
  font-weight: 500;
}
.f-copyright a {
  color: var(--violet-500);
  font-weight: 700;
}

[dir="ltr"] .f-pd {
  padding-left: 25px;
  padding-right: 0;
}
[dir="rtl"] .f-pd {
  padding-left: 0;
  padding-right: 25px;
}
.cs-modal .modal-content {
  border: 2px solid var(--violet-500);
  border-radius: 18px;
  box-shadow: 0 0 0 15px rgba(209, 59, 214, 0.2392156863);
}
.cms-ctn {
  padding: 2rem;
}
.cmsc-title {
  text-align: center;
  font-size: 20px;
  font-weight: 500;
}
.cmsc-desc {
  margin-top: 1.3rem;
  font-size: 16px;
  color: #414141;
  line-height: 2;
  text-align: center;
}
.cmsc-social {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 16px;
}
.cmsc-social i {
  font-size: 18px;
}
.cmsc-social .text {
  font-size: 14px;
  color: #535353;
  font-weight: 500;
  width: 90px;
}
.cmsc-social .addr {
  font-size: 14px;
  color: var(--violet-500);
}
.ltr {
  direction: ltr;
}
.cmsc-foot {
  font-size: 16px;
  color: var(--grey-500);
  font-weight: 500;
  text-align: center;
}
.cmsc-logo {
  display: block;
  width: 130px;
  margin: 0 auto 2rem auto;
}

/***********************page-top-sec***********************/
.pageTopSec {
  width: 100%;
  height: 248px;
  margin-bottom: 120px;
}
.pageTopSec.faqTopSec {
  margin-bottom: 50px;
}
.pageTopSec .bgImg {
  width: 100%;
  height: auto;
  position: relative;
  top: -1px;
}
.pageTopSec .pageTopBox {
  background: var(--violet-50);
  padding: 64px 0 70px 0;
}
.pg_title {
  text-align: center;
}
.goalsBox img {
  display: block;
  width: 180px;
  height: auto;
  margin: 0 auto 24px auto;
}
.pg_title strong {
  color: var(--violet-500);
  font-size: 19px;
  font-weight: 700;
}
.pg_title .titleTxt {
  width: 100%;
  max-width: 468px;
  margin: 22px auto 0 auto;
  color: var(--grey-500);
  font-size: 13.25px;
  font-weight: 400;
  line-height: 1.6;
}
.pg_title .titleTxt.titleTxt2 {
  max-width: 607px;
}
.pg_title .breadcrumb {
  margin: 12px auto 0 auto;
  width: max-content;
  max-width: 100%;
}
[dir="rtl"] .pg_title .breadcrumb-item + .breadcrumb-item::before {
  float: right;
  padding-left: var(--bs-breadcrumb-item-padding-x);
}
.pg_title .breadcrumb-item,
.pg_title .breadcrumb-item.active {
  color: var(--grey-500);
  font-size: 13.25px;
  font-weight: 400;
}
.pageTopSec .top-icons {
  color: var(--violet-100);
}
.pageTopSec .top-icons i {
  position: absolute;
  z-index: 1;
}
.pageTopSec .top-icons .icon-note {
  right: 4%;
  top: 50px;
  font-size: 66px;
  transform: rotate(16.133deg);
  animation: leaf-anim 3s infinite;
}
.pageTopSec .top-icons .icon-cal {
  font-size: 50px;
  right: 20%;
  top: 160px;
  transform: rotate(-30.513deg);
  animation: spin-anim 8s infinite linear;
}
.pageTopSec .top-icons .icon-abc {
  left: 20%;
  top: 130px;
  font-size: 60px;
  transform: rotate(22.966deg);
  animation: letters-anim 5s infinite;
}
.pageTopSec .top-icons .icon-lamp {
  top: 60px;
  left: 3%;
  font-size: 55px;
  transform: rotate(-24.942deg);
  animation: scale-anim 2s infinite linear;
}

/***********************videoSec***********************/
.videoSec {
  margin-bottom: 150px;
}
.videoSec .videoSlider {
  margin-top: 40px;
}
.videoSec .videoSlider .owl-dots,
.videoSec .videoSlider .owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: 35px;
}
.videoSec .vp-control {
  background: rgba(43, 19, 61, 0.65);
  backdrop-filter: blur(5px);
}
.videoSec .vp-control {
  padding: 24px;
  justify-content: space-between;
  gap: 24px;
}
[dir="rtl"] .videoSec .vp-control .vpc-title {
  text-align: right;
}
.videoSec .vp-control .vpc-title p {
  color: var(--grey-100);
  font-size: 16.8px;
  font-weight: 700;
  margin-bottom: 12px;
}
.videoSec .vp-control .vpc-title h2 {
  color: #fff;
  font-weight: 700;
  font-size: 16.8px;
}
.videoSec .vp-control .btnBox,
.videoSec .vp-control .btnBox:after,
.videoSec .vp-control .btnBox:before {
  border-radius: 50%;
  border: 1px solid;
}
.videoSec .vp-control .btnBox {
  width: 108px;
  min-width: 108px;
  height: 108px;
  position: relative;
  border-color: #b99ecc4d;
  display: flex;
  align-items: center;
  justify-content: center;
}
.videoSec .vp-control .vpc-btn {
  position: relative;
  z-index: 4;
}
.videoSec .vp-control .btnBox:after,
.videoSec .vp-control .btnBox:before {
  position: absolute;
  content: "";
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-color: #b99ecc;
}
.videoSec .vp-control .btnBox:after {
  width: 84px;
  height: 84px;
  opacity: 0.25;
}
.videoSec .vp-control .btnBox:before {
  width: 66px;
  height: 66px;
  opacity: 0.35;
}
.vp-control:hover .vpc-btn {
  box-shadow: 0 0 0 35px rgba(149, 122, 170, 0.315);
}

/***********************Gallery***********************/
.gallerySec {
  padding-bottom: 120px;
  background: #f6f2fd;
}
.gallerySec:before {
  background-image: url("../img/clouds-gray-top.svg");
}
.tabHeader {
  width: 100%;
  padding: 4px 32px;
  margin: 32px auto;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0px 6px 0px 0px #e5e5e5;
}
.galryTab .tabHeader {
  max-width: 860px;
}
.plansTab .tabHeader {
  max-width: 610px;
}
.tabHeader ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 10px 0;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  transform: translate3d(0, 0, 0);
  will-change: transform;
}
.tabHeader ul::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
.tabHeader ul::-webkit-scrollbar-track {
  background-color: #fff;
}
.tabHeader ul::-webkit-scrollbar-thumb {
  border: none;
}
.tabHeader a {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  align-self: stretch;
  width: max-content;
  min-width: 0;
  padding: 8px 32px;
  border-radius: 14px;
  color: var(--grey-400);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: normal;
word-spacing: normal;
}
.tabHeader a.active {
  border-radius: 14px;
  background: var(--violet-50);
  box-shadow: 0px 4px 0px 0px #b99ecc;
  color: var(--violet-500);
}
.tabHeader a:hover {
  color: var(--violet-500);
}
.galryTab .glryRow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin: 45px auto;
}
.galryTab .glryRow .glryItem {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 265px;
  width: 23.8%;
  height: 290px;
  padding: 16px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0px 6px 0px 0px #e5e5e5;
}
.galryTab .glryRow .glryItem:hover {
  box-shadow: 0px 4px 0px 0px #b99ecc;
}
.galryTab .glryRow .glryItem img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 4px;
  flex: 1 0 0;
  align-self: stretch;
}

/***********************faqSec***********************/
.reservSec .reservRow {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 90px;
}
.reservSec .reservRow1 .resrvRght {
  width: 44%;
}
[dir="rtl"] .reservSec .reservRow1 .resrvRght {
  padding-left: 40px;
}
[dir="ltr"] .reservSec .reservRow1 .resrvRght {
  padding-right: 40px;
}
.reservSec .reservRow1 .resrvLeft {
  width: 56%;
}
.reservSec .reservRow2 .resrvRght {
  width: 49%;
}
.reservSec .reservRow2 .resrvLeft {
  width: 51%;
}
[dir="rtl"] .reservSec .reservRow2 .resrvLeft {
  padding-right: 40px;
}
[dir="ltr"] .reservSec .reservRow2 .resrvLeft {
  padding-left: 40px;
}
.reservSec .reservRow .text {
  margin-bottom: 40px;
}
.reservSec .reservRow .text h2 {
  margin-bottom: 24px;
  color: var(--violet-500);
  font-size: 19px;
  font-weight: 700;
}
.reservSec .reservRow .text p {
  color: var(--grey-500);
  font-size: 13.25px;
  width: 100%;
  max-width: 468px;
}
.reservSec .resrvRght .resrvIcons {
  position: relative;
  width: 65px;
  height: 60px;
}
[dir="rtl"] .reservSec .resrvRght .resrvIcons {
  margin: 0px 10px 45px auto;
  transform: scaleX(-1);
}
[dir="ltr"] .reservSec .resrvRght .resrvIcons {
  margin: 0px auto 45px 10px;
}
.reservSec .resrvRght .resrvIcons i {
  top: 0;
  right: 0;
  position: absolute;
  z-index: 1;
  font-size: 45px;
  animation: bee-anim 3s infinite;
  color: var(--grey-900);
}
.reservSec .reservRow .resrvImg {
  width: 100%;
  max-width: 466px;
  height: auto;
  margin: 0 auto;
}
.reservSec .resrvLeft .resrvImg {
  max-width: 475px;
  margin-top: 5px;
}
.reservSec .reservRow .reservFrm {
  padding: 32px;
  border-radius: 32px;
  background: #fff;
  box-shadow: 0px 6px 0px 0px #e5e5e5;
}
.rsrvFrmHed {
  border-bottom: 1px solid var(--grey-50);
  padding-bottom: 20px;
  margin-bottom: 22px;
}
.rsrvFrmHed h3 {
  color: var(--grey-300);
  font-size: 15px;
  font-weight: 700;
}
.kidzinoFrm .frmLabel {
  color: var(--grey-900);
  font-size: 13.25px;
  font-weight: 500;
  margin-bottom: 10px;
}
[dir="rtl"] .kidzinoFrm .frmLabel {
  padding-right: 8px;
}
[dir="ltr"] .kidzinoFrm .frmLabel {
  padding-left: 8px;
}
.kidzinoFrm .frmLabel span {
  color: var(--grey-400);
  font-size: 11.85px;
  font-weight: 500;
}
.kidzinoFrm input[type="text"],
.kidzinoFrm input[type="email"],
.kidzinoFrm textarea,
.kidzinoFrm select {
  border-radius: 18px;
  background-color: #f0f2f5;
  border: 1px solid #f0f2f5;
}
.kidzinoFrm textarea {
  padding: 24px;
}
[dir="rtl"] .kidzinoFrm select {
  background-position: left 0.75rem center;
  padding: 0.375rem 0.75rem 0.375rem 2.25rem;
}
.kidzinoFrm input[type="text"],
.kidzinoFrm input[type="email"],
.kidzinoFrm select {
  height: 58px;
}
.kidzinoFrm input[type="text"]:focus,
.kidzinoFrm input[type="email"]:focus,
.kidzinoFrm textarea:focus,
.kidzinoFrm select:focus {
  overflow: unset;
  box-shadow: none;
  border-color: var(--violet-400);
  background-color: #f0f2f5;
}
.kidzinoFrm .frmChkRow {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 15px;
}
.kidzinoFrm .frmChkRow .form-check {
  border-radius: 18px;
  background: #f0f2f5;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 50%;
  height: 58px;
  border: 1px solid #f0f2f5;
}
[dir="rtl"] .kidzinoFrm .frmChkRow .form-check {
  padding: 0 15px 0 0;
}
[dir="ltr"] .kidzinoFrm .frmChkRow .form-check {
  padding: 0 0 0 15px;
}
.kidzinoFrm .frmChkRow .form-check label {
  width: calc(100% - 20px);
  color: var(--grey-800);
  font-size: 13.25px;
  font-weight: 500;
  height: 100%;
  display: flex;
  align-items: center;
}
[dir="rtl"] .kidzinoFrm .frmChkRow .form-check label {
  padding: 0 8px 0 15px;
}
[dir="ltr"] .kidzinoFrm .frmChkRow .form-check label {
  padding: 0 15px 0 8px;
}
.kidzinoFrm .frmChkRow .form-check .form-check-input {
  float: unset;
  margin-left: 0;
}
.kidzinoFrm .frmChkRow input:checked {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%23662D91'/%3e%3c/svg%3e");
  border-color: #662d91;
  background-color: transparent;
  box-shadow: none;
  outline: unset;
}
.kidzinoFrm .frmChkRow .form-check:has(input:checked) {
  border-color: var(--violet-500);
}
.kidzinoFrm .bDayRow {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 8px;
}
.kidzinoFrm .bDayRow .day {
  width: 30%;
}
.kidzinoFrm .bDayRow .month {
  width: 40%;
}
.kidzinoFrm .bDayRow .year {
  width: 30%;
}

/****************rsrvCalndar*****************/
.rsrvCalndar {
  margin-top: 35px;
  direction: rtl;
}
.rsrvCalndar .label-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--grey-50);
}
[dir="ltr"] .rsrvCalndar .label-row {
  flex-direction: row-reverse;
}
.rsrvCalndar .label {
  color: var(--grey-300);
  font-size: 15px;
  font-weight: 700;
}
[dir="ltr"] .rsrvCalndar .label {
  direction: ltr;
}
.rsrvCalndar .month-header {
  min-width: 215px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.rsrvCalndar .month-header button,
.rsrvCalndar .week-nav button,
.rsrvCalndar .time-nav button {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  color: var(--grey-800);
}
.rsrvCalndar .month-header button {
  font-size: 20px;
}
.rsrvCalndar .week-nav button,
.rsrvCalndar .time-nav button {
  font-size: 16px;
}
.rsrvCalndar .month-header button:disabled,
.rsrvCalndar .week-nav button:disabled,
.rsrvCalndar .time-nav button:disabled {
  opacity: 0.3;
  cursor: default;
}
.rsrvCalndar .month-header .month-name {
  color: var(--grey-800);
  text-align: center;
  font-size: 15px;
  font-weight: 700;
}
.rsrvCalndar .week-nav {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  gap: 10px;
}
.rsrvCalndar .week-slider {
  display: flex;
  overflow-x: hidden;
  gap: 12px;
  padding-bottom: 10px;
  flex: 1;
}
.rsrvCalndar .day-item {
  flex-shrink: 0;
  cursor: pointer;
  transition: 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  width: 55px;
  height: 80px;
  padding: 30px 0px;
  border-radius: 50px;
  background: #fff;
}
.rsrvCalndar .weekday {
  color: var(--grey-500);
  text-align: center;
  font-size: 13px;
  font-weight: 500;
}
.rsrvCalndar .daynum {
  color: var(--grey-800);

  text-align: center;
  font-size: 16.75px;
  font-weight: 700;
}
.rsrvCalndar .day-item.selected {
  background: var(--violet-400);
  box-shadow: 0px 6px 0px 0px #5d2984;
}
.rsrvCalndar .day-item.disabled {
  opacity: 0.4;
  pointer-events: none;
  cursor: not-allowed;
}
.rsrvCalndar .day-item.holiday {
  color: red;
  font-weight: bold;
}
.rsrvCalndar .day-item.selected .weekday,
.rsrvCalndar .day-item.selected .daynum {
  color: #fff;
}
.rsrvCalndar .time-nav {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 25px auto;
}
.rsrvCalndar .time-buttons {
  display: flex;
  justify-content: flex-start;
  overflow-x: auto;
  flex-wrap: nowrap;
  gap: 10px;
  padding-bottom: 8px;
  flex: 1;
}
.rsrvCalndar .time-buttons::-webkit-scrollbar {
  display: none;
}
.rsrvCalndar .time-button {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex: 1 0 0;
  min-width: 65px;
  height: 43px;
  border-radius: 50px;
  border: 1px solid var(--grey-50);
  background: var(--grey-50);
  color: var(--grey-800);
  cursor: pointer;
  font-size: 13px;
  font-weight: 500;
}
.rsrvCalndar .time-button.selected {
  background: var(--violet-50);
  box-shadow: 0px 4px 0px 0px #b99ecc;
}
.rsrvCalndar .rsrvBtnBx {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  border-radius: 18px;
  border: 1px solid var(--violet-500);
  background: var(--violet-50);
  width: 100%;
  height: 52px;
}
[dir="ltr"] .rsrvCalndar .rsrvBtnBx {
  direction: ltr;
}
.rsrvCalndar .rsrvBtnBx .reserve-btn {
  display: flex;
  width: 107px;
  height: 52px;
  padding: 0 32px 7px 32px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border-radius: 18px;
  background: var(--violet-500);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
}
[dir="rtl"] .rsrvCalndar .rsrvBtnBx .reserve-btn {
  margin: 0 auto 0 0;}
[dir="ltr"] .rsrvCalndar .rsrvBtnBx .reserve-btn {
  margin: 0 0 0 auto;
}
.rsrvCalndar .rsrvBtnBx .reserve-btn:hover {
  background: var(--color-primary-darken);
}
.rsrvCalndar .rsrvBtnBx .confirmation-box {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 6px;
}
[dir="rtl"] .rsrvCalndar .rsrvBtnBx .confirmation-box {
  padding-right: 24px;
}
[dir="ltr"] .rsrvCalndar .rsrvBtnBx .confirmation-box {
  padding-left: 24px;
}
.rsrvCalndar .rsrvBtnBx .confirmation-box strong {
  color: var(--grey-800);
  font-size: 13px;
  font-weight: 700;
}
.rsrvCalndar .rsrvBtnBx .confirmation-box hr {
  border-top: 0;
  border-left: 2px solid var(--grey-800);
  margin: 0;
  opacity: 1;
  height: 12px;
  width: 1px;
  margin-top: 2px;
  display: block;
}
.rsrvCalndar .rsrvBtnBx .confirmation-box p {
  color: var(--grey-500);
  font-size: 13px;
  font-weight: 500;
}

/***********************faqSec***********************/
.faqSec {
  padding: 50px 0 90px 0;
}
.faqAcordion {
  width: 100%;
}
.faqSec .faqAcordion {
  margin: 50px auto;
}
.faqAcordion .accordion-flush .accordion-item {
  border-radius: 12px;
  border: none;
  background: transparent;
}
.faqSec .faqAcordion .accordion-flush .accordion-item {
  margin-bottom: 16px;
}
.faqAcordion .accordion-button,
.faqAcordion
  .accordion-flush
  > .accordion-item
  > .accordion-header
  .accordion-button.collapsed {
  border-radius: 18px;
  background: #fff;
  box-shadow: 0px 6px 0px 0px #e5e5e5;
  padding: 24px 32px 24px 44px;
  outline: 0;
  color: var(--grey-800);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.8;
}
[dir="rtl"] .faqAcordion .accordion-button,
[dir="rtl"]
  .faqAcordion
  .accordion-flush
  > .accordion-item
  > .accordion-header
  .accordion-button.collapsed {
  text-align: right;
}
.accordion-button::after {
  background: unset;
  background-image: unset;
  content: "\e945";
  color: var(--Gray-900);
  font-size: 24px;
  font-family: "icomoon";
  transition: all 0.6s;
  font-weight: 500;
  position: absolute;
  top: 16px;
  left: 14px;
  margin: unset;
}
[dir="rtl"] .accordion-button::after {
  left: 14px;
}
.faqAcordion .accordion-flush .accordion-item .accordion-button {
  border-radius: 12px;
}
.faqAcordion .accordion-button:not(.collapsed) {
  background: var(--violet-400);
  box-shadow: 0px 6px 0px 0px #5d2984;
  color: #fff;
}
.faqAcordion .accordion-button:not(.collapsed)::after {
  color: var(--Gray-white);
  content: "\e93f";
  transform: unset;
  background: unset;
  background-image: unset;
}
.faqAcordion .accordion-body {
  padding: 15px 25px;
  background: transparent;
  line-height: 1.7;
  margin-top: 12px;
  color: var(--grey-400);
  font-size: 14px;
  font-weight: 500;
}

/*********************eduPlanSec*********************/
.eduPlanSec {
  padding: 10px 0 90px 0;
}
.eduPlanRow {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 80px;
}
.eduPlanRow .eduPlanInfo {
  width: calc(100% - 428px);
}
[dir="rtl"] .eduPlanRow1 .eduPlanInfo,
[dir="ltr"] .eduPlanRow2 .eduPlanInfo {
  padding-left: 80px;
}
[dir="ltr"] .eduPlanRow1 .eduPlanInfo,
[dir="rtl"] .eduPlanRow2 .eduPlanInfo {
  padding-right: 80px;
}
.eduPlanRow .eduPlanTxt strong {
  color: var(--violet-500);
  font-size: 19px;
  font-weight: 700;
  display: block;
  margin-bottom: 15px;
}
.eduPlanRow .eduPlanTxt p {
  color: #6e6e6e;
  font-size: 13.25px;
  line-height: 180%;
}
.eduPlanRow .eduPlanUl {
  margin-top: 40px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 15px;
  flex-wrap: wrap;
}
.eduPlanRow .eduPlanUl li {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 5px;
  padding: 12px 8px;
  width: 48%;
  max-width: 250px;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0px 6px 0px 0px #e5e5e5;
}
.eduPlanRow .eduPlanUl li img {
  width: 24px;
  height: auto;
}
.eduPlanRow .eduPlanUl li p {
  color: var(--grey-900);
  font-size: 15px;
  font-weight: 500;
  min-width: max-content;
}
.eduPlanRow .eduPlanImg {
  width: 428px;
}
.eduPlanRow .eduPlanImg img {
  width: 100%;
  height: auto;
}

/*********************planTabSec*********************/
.planTabSec {
  padding: 10px 0 90px 0;
}
.plansTab .faqAcordion {
  margin: 40px auto;
}
.plansTab .faqAcordion .accordion-flush .accordion-item {
  margin-bottom: 16px;
}

/***********************contctSec***********************/
.contctSec {
  padding: 10px 0 150px 0;
}
.contctSec .contactWay {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 30px;
  margin: 0 auto 80px auto;
}
.contctSec .contactWay li {
  width: 33%;
  max-width: 360px;
  height: 236px;
}
.contctSec .contactWay .svgImg {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 0;
}
.contctSec .contactWay .content {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
  text-align: center;
  padding: 10px 10px 15px 10px;
}
.contctSec .contactWay .content img {
  width: 68px;
  height: auto;
  margin: 0 auto 5px auto;
}
.contctSec .contactWay .content strong {
  color: var(--grey-800);
  font-size: 16.75px;
  font-weight: 700;
}
.contctSec .contactWay .content p {
  color: var(--grey-500);
  font-size: 14px;
  font-weight: 500;
}
.contctSec .socialNetwrk {
  margin: 0 auto 80px auto;
}
.contctSec .socialNetwrk strong {
  display: block;
  margin-bottom: 25px;
  color: var(--grey-800);
  text-align: center;
  font-size: 16.75px;
  font-weight: 700;
}
.contctSec .socialNetwrk ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}
.contctSec .socialNetwrk ul a {
  width: 63px;
  height: max-content;
  display: block;
}
.contctSec .socialNetwrk ul img {
  width: 100%;
  height: auto;
  z-index: 0;
  transition: all 2s;
}
.contctSec .socialNetwrk ul span {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: 28px;
  color: #fff;
  display: block;
  margin-top: -3px;
}
.contctSec .socialNetwrk ul a:hover img {
  transform: rotate(360deg);
}
.contctSec .contactRow {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 25px;
}
.contctSec .contactFrm {
  width: 50%;
  padding: 32px;
  border-radius: 32px;
  background: #fff;
  box-shadow: 0px 6px 0px 0px #e5e5e5;
}
.contctSec .contactMap {
  width: 50%;
  height: 580px;
  border-radius: 32px;
  border: 8px solid #fff;
  background: #fff;
  box-shadow: 0px 6px 0px 0px #e5e5e5;
}
.contctSec .contactMap iframe {
  width: 100%;
  height: 100%;
  border-radius: 32px;
}

/***********************aboutSec***********************/
.bioSec {
  padding-bottom: 150px;
}
.bioSec .bioRow {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.bioSec .bioRow .bioText {
  width: calc(100% - 248px);
}
[dir="rtl"] .bioSec .bioRow .bioText {
  padding-left: 100px;
}
[dir="ltr"] .bioSec .bioRow .bioText {
  padding-right: 100px;
}
.bioSec .bioText strong {
  color: var(--violet-500);
  font-size: 19px;
  font-weight: 700;
  display: block;
  margin-bottom: 12px;
}
.bioSec .bioText p {
  color: #6e6e6e;
  font-size: 13.25px;
  line-height: 180%;
}
.bioSec .bioRow .bioImg {
  width: 248px;
  height: 295px;
  border-radius: 32px;
}
.bioSec .bioRow .bioImg img {
  width: 100%;
  height: 100%;
  border-radius: 32px;
  object-fit: cover;
}
.abutSlider {
  margin: 45px auto;
}
.abutSlider .item {
  max-width: 360px;
  height: 302px;
}
.abutSlider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 14px;
}
.abutSlider.owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: 35px;
}
.goalsBox {
  width: 100%;
  padding: 60px;
  border-radius: 32px;
  background: #fff;
  box-shadow: 0px 6px 0px 0px #e5e5e5;
}
.goalsBox .goalsText {
  color: #6e6e6e;
  text-align: center;
  font-size: 13.25px;
  line-height: 180%;
  margin-top: 30px;
}
.goalsBox ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 40px;
}
.goalsBox ul li {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 12px;
  background: #f6f2fd;
  box-shadow: 0px 6px 0px 0px #e5e5e5;
}
.goalsBox ul span {
  font-size: 24px;
  color: var(--violet-500);
}
.goalsBox ul p {
  color: var(--grey-900);
  font-size: 13.25px;
  font-weight: 500;
  width: max-content;
  line-height: 1;
}
.aboutSec {
  padding-bottom: 120px;
  background: #f6f2fd;
}
.aboutSec:before {
  background-image: url("../img/clouds-gray-top.svg");
}

/***********************cmntVidSldr***********************/
.comntsSec {
  padding-bottom: 150px;
}
.comntsSec .cmntVidSldr {
  margin: 40px auto 80px auto;
}
.cmntVidSldr .owl-item {
  width: 208px;
  height: 318px;
}
.cmntVidSldr .item {
  width: 100%;
  height: 100%;
}
.cmntVidSldr .video-player {
  width: 100%;
  height: 100%;
  border-radius: 18px;
}
.cmntVidSldr .vp-control {
  align-items: flex-end;
  justify-content: space-between;
  padding: 20px 14px;
  top: unset;
  bottom: 0;
  border-radius: 0px 0px 18px 18px;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 51%,
    rgba(0, 0, 0, 0.49) 70.71%,
    #000000e0 100%
  );
}
.cmntVidSldr .vp-control .vpc-btn {
  width: 24px;
  height: 24px;
  font-size: 16px;
  background: transparent;
}
.cmntVidSldr .vp-control:hover .vpc-btn {
  box-shadow: unset;
  color: var(--violet-500);
}
.cmntVidSldr .vp-control .vpc-title {
  min-height: 24px;
}
.cmntVidSldr .vp-control .vpc-title p {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
}
.cmntVidSldr.owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: 35px;
}

.comntsSec .comntHedBx {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}
.comntsSec .comntHedBx h2 {
  color: var(--grey-900);
  font-size: 19px;
  font-weight: 700;
}
.comntsSec .comntHedBx .left {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 15px;
}
.comntsSec .comntHedBx .cmntMdlBtn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 52px;
  padding: 14px 32px;
  border-radius: 18px;
  background: var(--violet-500);
  color: #fff;
}
.comntsSec .comntHedBx .cmntMdlBtn span {
  font-size: 22px;
  display: block;
}
.comntsSec .comntHedBx .cmntMdlBtn p {
  font-size: 14px;
  font-weight: 600;
}
.comntsSec .comntHedBx .cmntMdlBtn:hover {
  background: var(--color-primary-darken);
}
.comntsSec .comntList {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 20px 18px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.comntsSec .comntList .comntBox {
  width: 49.3%;
  padding: 32px;
  border-radius: 32px;
  background: #fff;
  box-shadow: 0px 6px 0px 0px #e5e5e5;
}
.comntsSec .comntBox .hed {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 20px;
}
.comntsSec .comntBox .hed .name strong {
  color: var(--grey-700);
  font-size: 15px;
  font-weight: 700;
  display: block;
  margin-bottom: 6px;
}
.comntsSec .comntBox .hed .name span {
  color: var(--grey-400);
  font-size: 13.25px;
  line-height: 170%;
  display: block;
}
.comntsSec .comntBox .hed p {
  color: var(--grey-400);
  font-size: 11.85px;
  font-weight: 500;
  line-height: 170%;
}
.comntsSec .comntBox .text {
  color: var(--grey-700);
  font-size: 13.25px;
  font-weight: 500;
  line-height: 180%;
}

/**********************kidzinoMdl*********************/
.kidzinoMdl .modal-content {
  padding: 32px;
  border-radius: 32px;
}
.kidzinoMdl .modal-header {
  padding: 0 0 20px 0;
}
.kidzinoMdl .modal-body {
  padding: 20px 0 0 0;
}
.kidzinoMdl .modal-title {
  color: var(--grey-300);
  font-size: 15px;
  font-weight: 700;
}
.kidzinoMdl .modal-header .btn-close {
  width: 12px;
  height: 12px;
  background-size: 12px 12px;
}
[dir="rtl"] .kidzinoMdl .modal-header .btn-close {
  margin: 0 auto 0 0;
}
[dir="ltr"] .kidzinoMdl .modal-header .btn-close {
  margin: 0 0 0 auto;
}
.kidzinoMdl .planDetail li {
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}
.kidzinoMdl .planDetail li:last-child {
  margin-bottom: 0;
}
.kidzinoMdl .planDetail li p {
  color: var(--grey-600);
  font-size: 14px;
  font-weight: 600;
}
.kidzinoMdl .planDetail li span {
  font-size: 22px;
  color: var(--turqoise-500);
}

/***********************tripSec***********************/
.tripSec {
  padding-bottom: 150px;
}
.tripSec .tripsList {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 80px;
}
.tripSec .tripCard {
  width: 32%;
  padding: 24px;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0px 6px 0px 0px #e5e5e5;
}
.tripSec .tripCard .tripCrdTop {
  width: 100%;
  height: 310px;
}
.tripSec .tripCard .tripCrdTop:before {
  content: "";
  width: 100%;
  height: 41px;
  position: absolute;
  left: 0;
  bottom: -1px;
  background-image: url("../img/glry-card-cloud.svg");
  background-size: 328px 41px;
  background-repeat: repeat-x;
  display: block;
  z-index: 3;
}
.tripSec .tripCard .glryRow {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 1px;
  flex-wrap: wrap;
  width: 100%;
  height: 100%;
}
.tripSec .tripCard .glryRow a {
  display: block;
  width: 33%;
  height: 33%;
}
.tripSec .tripCard .glryRow img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
[dir="rtl"] .tripSec .tripCard .glryRow a:nth-child(1),
[dir="rtl"] .tripSec .tripCard .glryRow a:nth-child(1) img,
[dir="rtl"] .tripSec .tripCard .glryItem:nth-child(1) .plus {
  border-radius: 0 12px 0 0;
}
[dir="rtl"] .tripSec .tripCard .glryRow a:nth-child(3),
[dir="rtl"] .tripSec .tripCard .glryRow a:nth-child(3) img,
[dir="rtl"] .tripSec .tripCard .glryItem:nth-child(3) .plus {
  border-radius: 12px 0 0 0;
}

[dir="ltr"] .tripSec .tripCard .glryRow a:nth-child(1),
[dir="ltr"] .tripSec .tripCard .glryRow a:nth-child(1) img,
[dir="ltr"] .tripSec .tripCard .glryItem:nth-child(1) .plus {
  border-radius: 12px 0 0 0;
}
[dir="ltr"] .tripSec .tripCard .glryRow a:nth-child(3),
[dir="ltr"] .tripSec .tripCard .glryRow a:nth-child(3) img,
[dir="ltr"] .tripSec .tripCard .glryItem:nth-child(3) .plus {
  border-radius: 0 12px 0 0;
}
.tripSec .tripCard .glryItem .plus {
  display: none;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(2px);
}
.tripSec .tripCard .glryItem .plus .plusDiv {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tripSec .tripCard .glryItem .plusDiv div {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  width: 26px;
  height: 26px;
  border-radius: 50%;
}
.tripSec .tripCard .glryItem .plus span {
  color: black;
  font-size: 20px;
}
.tripSec .tripCard .glryItem:hover .plus {
  display: block;
}
.tripSec .tripCard .tripCrdTxt {
  text-align: center;
}
.tripSec .tripCard .tripCrdTxt strong {
  display: block;
  margin-bottom: 12px;
  color: var(--grey-900);
  font-size: 16.75px;
  font-weight: 700;
}
.tripSec .tripCard .tripCrdTxt p {
  color: #6e6e6e;
  font-size: 13.25px;
  line-height: 180%;
}
.tripSec .tripCard .tripFeature {
  margin-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 32px;
  border-radius: 24px;
  background: var(--violet-50);
  box-shadow: 0px 6px 0px 0px #b99ecc;
}
.tripSec .tripCard .tripFeature li {
  text-align: center;
}
.tripSec .tripCard .tripFeature p {
  color: var(--grey-900);
  font-size: 13.25px;
  font-weight: 700;
}
.tripSec .tripCard .tripFeature span {
  color: var(--grey-400);
  font-size: 11.85px;
}
.tripSec .tripCard .tripFeature i {
  opacity: 0.15;
  border-left: 1px dashed #262626;
  width: 1px;
  height: 29px;
  display: block;
}

/*******************signupSec***********************/
.signupSec {
  padding-bottom: 150px;
}
.signupSec .regFeesBx {
  margin-bottom: 100px;
}
.signupSec .regFeesBx .regFeeList {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 20px;
  margin-top: 60px;
}
.signupSec .regFeeList .regFeeCrd {
  width: 33%;
  padding: 0px 32px 32px 32px;
  border-radius: 32px;
  background: #fff;
  box-shadow: 0px 6px 0px 0px #e5e5e5;
}
.signupSec .regFeeList .regFeeCrd:hover {
  box-shadow: 0px 6px 0px 0px #b99ecc;
}
.signupSec .regFeeCrd ul li {
  margin-bottom: 15px;
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 15px;
}
.signupSec .regFeeCrd ul li:last-child {
  margin-bottom: 0;
}
.signupSec .regFeeCrd ul p {
  color: var(--grey-600);
  font-size: 14px;
  font-weight: 600;
  margin-top: -1px;
}
.signupSec .regFeeCrd ul span {
  font-size: 22px;
}
.signupSec .regFeeCrd ul .blue span {
  color: var(--turqoise-500);
}
.signupSec .regFeeCrd ul .red span {
  color: var(--red-500);
}
.signupSec .regFeeCrd .regPlanPric {
  margin: 28px 0;
  padding-bottom: 28px;
  border-bottom: 2px dashed #ccccccd2;
  text-align: center;
}
.signupSec .regFeeCrd .regPlanPric strong {
  color: var(--grey-800);
  font-size: 24px;
  font-weight: 700;
  display: block;
  margin-bottom: 5px;
}
.signupSec .regFeeCrd .regPlanPric p {
  color: var(--grey-400);
  font-size: 11.85px;
  font-weight: 500;
}
.signupSec .regFeesBx .regPlanName {
  text-align: center;
  min-height: 66px;
}
.signupSec .regFeesBx .regPlanName img {
  width: 144px;
  height: auto;
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
}
.signupSec .regFeesBx .regPlanName h2 {
  color: var(--violet-500);
  font-size: 15px;
  font-weight: 700;
  z-index: 2;
  padding-top: 15px;
}

.signupSec .regProcess {
  margin-bottom: 100px;
}
.signupSec .regProcess .processUl {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin-top: 60px;
  gap: 20px;
}
.signupSec .regProcess .processUl li {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 32px;
}
.signupSec .regProcess .processImg {
  display: flex;
  width: 119px;
  height: 119px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0px 6px 0px 0px #e5e5e5;
}
.signupSec .regProcess .processImg:hover {
  box-shadow: 0px 6px 0px 0px #b99ecc;
}
.signupSec .regProcess .processImg:after {
  position: absolute;
  content: "";
  width: 190%;
  top: 60px;
  border-bottom: 2px dashed #d0bedd;
}
[dir="rtl"] .signupSec .regProcess .processImg:after {
  right: 100%;
}
[dir="ltr"] .signupSec .regProcess .processImg:after {
  left: 100%;
}
.signupSec .regProcess li:last-child .processImg:after {
  display: none;
}
.signupSec .regProcess .processImg img {
  width: 45px;
  height: auto;
}
.signupSec .regProcess .processTxt {
  text-align: center;
}
.signupSec .regProcess .processTxt strong {
  color: var(--grey-700);
  font-size: 15px;
  font-weight: 700;
  display: block;
  margin-bottom: 5px;
}
.signupSec .regProcess .processTxt p {
  color: var(--grey-400);
  font-size: 13.25px;
  font-weight: 400;
}

.signupSec .howToPay ul {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 20px;
  margin-top: 50px;
}
.signupSec .howToPay ul li {
  width: 33%;
  border-radius: 32px;
  background: #fff;
  box-shadow: 0px 6px 0px 0px #e5e5e5;
  text-align: center;
  padding: 45px;
}
.signupSec .howToPay ul li:hover {
  box-shadow: 0px 6px 0px 0px #b99ecc;
}
.signupSec .howToPay ul img {
  width: 62px;
  height: auto;
  display: block;
  margin: 0 auto 10px auto;
}
.signupSec .howToPay ul strong {
  color: var(--grey-900);
  font-size: 15px;
  font-weight: 600;
  display: block;
  margin-bottom: 12px;
}
.signupSec .howToPay ul p {
  color: var(--grey-400);
  font-size: 13.25px;
}

.floutRegBtn {
  display: none;
  position: fixed;
  left: 0;
  bottom: 80px;
  z-index: 8;
}
.floutRegBtn .btn {
  width: 177px;
  height: 52px;
}

/*********************regFrmSec*********************/
.regFrmSec {
  padding: 90px 0 150px 0;
}
.regFrmSec .formSteps {
  width: 100%;
  max-width: 516px;
  margin: 10px auto;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 110px;
}
.regFrmSec .formSteps li {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 15px;
  align-items: center;
}
.regFrmSec .formSteps li:after {
  content: "";
  position: absolute;
  top: 17px;
  width: 200px;
  height: 11px;
  background: #fff;
  z-index: 0;
}
[dir="rtl"] .regFrmSec .formSteps li:after {
  right: 39px;
}
[dir="ltr"] .regFrmSec .formSteps li:after {
  left: 39px;
}
.regFrmSec .formSteps li:last-child::after {
  display: none;
}
.regFrmSec .formSteps li .numbr {
  width: 40px;
  min-width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 2;

  border-radius: 12px;
  background: #fff;
  box-shadow: 0px 4px 0px 0px #e5e5e5;
}
.regFrmSec .formSteps li .numbr i {
  color: var(--grey-900);
  font-size: 14px;
  font-weight: 700;
}
.regFrmSec .formSteps li .numbr span {
  font-size: 22px;
  color: #fff;
  display: none;
}
.regFrmSec .formSteps li p {
  color: var(--grey-300);
  font-size: 14px;
  font-weight: 600;
  min-width: max-content;
}
.regFrmSec .formSteps li.active .numbr {
  background: var(--violet-100);
  box-shadow: 0px 4px 0px 0px #662d91;
}
.regFrmSec .formSteps li.passed .numbr {
  background: var(--violet-400);
  box-shadow: 0px 4px 0px 0px #662d91;
}
.regFrmSec .formSteps li.active p,
.regFrmSec .formSteps li.passed p {
  color: var(--violet-400);
}
.regFrmSec .formSteps li.passed:after {
  background: var(--violet-200);
}
.regFrmSec .formSteps li.passed .numbr i {
  display: none;
}
.regFrmSec .formSteps li.passed .numbr span {
  display: block;
}
.regFrmSec .regFrmBox {
  margin-top: 50px;
  width: 100%;
  border-radius: 32px;
  background: #fff;
  box-shadow: 0px 6px 0px 0px #e5e5e5;
  padding: 45px 40px;
}
[dir="rtl"] .regFrmSec .regFrmBox .regNextBtn {
  margin: 0 auto 0 0;
}
[dir="ltr"] .regFrmSec .regFrmBox .regNextBtn {
  margin: 0 0 0 auto;
}
.regFrmSec .regFrmBox .regNextBtn:disabled {
  background: #dedede;
  color: var(--grey-200);
  opacity: 1;
}
.regFrmSec .regFrmHed {
  width: 100%;
  padding-bottom: 20px;
  margin-bottom: 25px;
  border-bottom: 1px solid var(--grey-50);
}
.regFrmSec .regFrmHed h2 {
  color: var(--grey-300);
  font-size: 15px;
  font-weight: 700;
}
.regFrmSec .regBtnRow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 15px;
}
.regFrmSec .regBtnRow .regPrevBtn {
  border-radius: 18px;
  background: transparent;
  border: 1px solid var(--violet-500);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  height: 52px;
  padding: 0 32px;
  color: var(--violet-500);
}
.regFrmSec .regBtnRow .regPrevBtn i {
  font-size: 22px;
}
[dir="ltr"] .regFrmSec .regBtnRow .regPrevBtn i {
  transform: rotate(180deg);
}
.regFrmSec .regBtnRow .regPrevBtn span {
  font-size: 13px;
  font-weight: 600;
  display: block;
  margin-top: -5px;
}
.regFrmSec .regBtnRow .regPrevBtn:hover {
  background: rgba(0, 0, 0, 0.0470588235);
}
[dir="rtl"] .regFrmSec .regCheck {
  padding-left: 0;
  padding-right: 1.5em;
}
.regFrmSec .regCheck input,
.regFrmSec .planChkList input {
  border: 2px solid var(--violet-500);
  box-shadow: none;
  outline: none;
}
[dir="rtl"] .regFrmSec .regCheck input {
  float: unset;
  margin-left: unset;
  margin-right: -1.5rem;
}
.regFrmSec .regCheck label {
  color: var(--grey-800);
  font-size: 13.25px;
  font-weight: 500;
  line-height: 1.7;
  margin-top: -3px;
}
.regFrmSec .regCheck input:checked {
  box-shadow: none;
  outline: none;
  background-color: var(--violet-500);
  background-size: 0.9rem 0.9rem;
}
.regFrmSec .planChkList input:checked {
  box-shadow: none;
  outline: none;
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2.5' fill='%23662d91'/%3e%3c/svg%3e");
}

.regFrmSec .planChkList {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 15px;
  margin-top: 15px;
}
.regFrmSec .planChkList .form-check {
  width: 33%;
  height: 95.5px;
  border-radius: 18px;
  background: #f0f2f5;
  border: 1px solid #f0f2f5;
  display: flex;
  align-items: center;
}
[dir="rtl"] .regFrmSec .planChkList .form-check {
  padding: 0 22px 0 0;
}
[dir="ltr"] .regFrmSec .planChkList .form-check {
  padding: 0 0 0 24px;
}
.regFrmSec .planChkList input {
  float: unset;
  border: 1px solid var(--grey-200);
  background-color: transparent;
}
[dir="rtl"] .regFrmSec .planChkList input {
  margin-left: auto;
}
[dir="ltr"] .regFrmSec .planChkList input {
  margin-left: 0;
}
.regFrmSec .planChkList label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: calc(100% - 20px);
  height: 100%;
  position: relative;
}
[dir="rtl"] .regFrmSec .planChkList label {
  padding: 0 13px 0 22px;
}
[dir="ltr"] .regFrmSec .planChkList label {
  padding: 0 16px 0 13px;
}
.regFrmSec .planChkList label strong {
  color: var(--grey-800);
  font-size: 15px;
  font-weight: 600;
  display: block;
  margin-bottom: 5px;
}
.regFrmSec .planChkList label p {
  color: var(--grey-400);
  font-size: 13.25px;
  font-weight: 500;
}
.regFrmSec .planChkList label i {
  color: var(--grey-800);
  font-size: 13.25px;
  font-weight: 500;
}
.regFrmSec .planChkList label span {
  position: relative;
  z-index: 2;
  cursor: pointer;
  font-size: 20px;
  color: var(--grey-400);
}
.regFrmSec .planChkList label span:hover {
  color: var(--violet-500);
}
.regFrmSec .planChkList .form-check:has(input:checked) {
  border-color: var(--violet-500);
}

.regInfo {
  margin-bottom: 35px;
}
.regInfo .regInfoTitl {
  padding: 0 10px;
  margin-bottom: 12px;
}
.regInfo .regInfoTitl strong,
.aprovalInfo strong {
  display: block;
  color: var(--grey-900);
  font-size: 15px;
  font-weight: 700;
}
.regInfo .regInfoBx {
  padding: 20px;
  border-radius: 28px;
  background: #f0f2f5;
}
.regInfo .regInfoBx ul {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 30px 10px;
}
.kidInfo .regInfoBx li {
  width: 24%;
}
.parentInfo .regInfoBx li {
  width: 32%;
}
.kidInfo .regInfoBx li:nth-last-child(1),
.kidInfo .regInfoBx li:nth-last-child(2) {
  width: 49%;
}
.regInfo .regInfoBx li span,
.aprovalInfo .infoBx span {
  color: var(--grey-400);
  display: block;
  font-size: 13.25px;
  margin-bottom: 5px;
}
.regInfo .regInfoBx li p,
.aprovalInfo .infoBx p {
  color: var(--grey-600);
  font-size: 13.25px;
  font-weight: 600;
}
.aprovalInfo {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 30px;
}
.aprovalInfo .aprovalBx {
  width: 48%;
}
.aprovalInfo strong {
  margin-bottom: 12px;
  padding: 0 10px;
}
.aprovalInfo .infoBx {
  padding: 20px;
  border-radius: 28px;
  background: #f0f2f5;
}

/***********************successSec***********************/
.successSec {
  padding: 80px 0 200px 0;
}
.successSec .successBox {
  width: 100%;
  max-width: 478px;
  margin: 1px auto;
  border-radius: 32px;
  background: #fff;
  box-shadow: 0px 6px 0px 0px #e5e5e5;
  padding: 40px;
  text-align: center;
}
.successSec .successBox img {
  width: 127px;
  margin: 0 auto 20px auto;
}
.successSec .successBox h2,
.notFoundSec .notFoundBx h2 {
  color: var(--grey-800);
  font-size: 15px;
  font-weight: 700;
}
.successSec .successBox p,
.notFoundSec .notFoundBx p {
  color: var(--grey-500);
  font-size: 13.25px;
  margin: 25px auto 40px auto;
}
.successSec .successBox a {
  width: max-content;
  margin: 0 auto;
}

/********************notFoundSec********************/
.notFoundSec {
  padding: 80px 0 200px 0;
}
.notFoundSec .notFundRow {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.notFoundSec .notFoundBx {
  padding-top: 40px;
}
.notFoundSec .notFoundBx img {
  width: 251px;
  height: auto;
  margin-bottom: 30px;
}
.notFoundSec .notFoundBx p {
  width: 100%;
  max-width: 272px;
}
.notFoundSec .notFoundBx a {
  width: max-content;
}
.notFoundSec .notFoundImg {
  width: 95%;
  height: auto;
  max-width: 550px;
}

/***********************Media***********************/
@media (max-width: 1600px) {
  [dir="ltr"] .sp-icons i.icon-rocket {
    right: 10px;
  }
  [dir="rtl"] .sp-icons i.icon-rocket {
    left: 10px;
  }
  .sp-icons i.icon-flower {
    top: 10%;
    font-size: 47px;
  }
  [dir="ltr"] .sp-icons i.icon-flower {
    left: 20px;
  }
  [dir="rtl"] .sp-icons i.icon-flower {
    right: 20px;
  }
  [dir="ltr"] .sp-icons i.icon-leaf {
    left: 10px;
  }
  [dir="rtl"] .sp-icons i.icon-leaf {
    right: 10px;
  }
  .edu-icons i {
    font-size: 48px;
  }
  .edu-icons i.icon-tornado {
    top: 5%;
  }
  [dir="ltr"] .edu-icons i.icon-tornado {
    right: 30px;
  }
  [dir="rtl"] .edu-icons i.icon-tornado {
    left: 30px;
  }
  .edu-icons i.icon-leaf {
    top: 15%;
  }
  [dir="ltr"] .edu-icons i.icon-leaf {
    left: 30px;
  }
  [dir="rtl"] .edu-icons i.icon-leaf {
    right: 30px;
  }
  [dir="ltr"] .ac-icons i.icon-sun {
    right: 30px;
  }
  [dir="rtl"] .ac-icons i.icon-sun {
    left: 30px;
  }
  [dir="ltr"] .ac-icons i.icon-bee {
    right: 80px;
  }
  [dir="rtl"] .ac-icons i.icon-bee {
    left: 80px;
  }
}
@media (max-width: 1500px) {
  .about-sec::after {
    opacity: 0.3;
  }
}
@media (max-width: 1399px) {
  .cb-message {
    font-size: 12px;
    line-height: 1.8;
  }
  .cb-inner {
    padding: 34px 28px;
  }
  .cb-rate {
    bottom: 50px;
  }
  .comment-info {
    padding-right: 0;
    justify-content: center;
    margin-top: 0;
  }

  .nav-menu {
    height: 60px;
  }
  .nm-list {
    gap: 25px;
  }
  .nml-link {
    padding: 0 4px;
  }
  .nml-link span {
    font-size: 14px;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  .comntsSec .comntList .comntBox {
    width: 49.1%;
  }
  .galryTab .glryRow .glryItem {
    width: 264px;
    height: 275px;
  }
  .pageTopSec .top-icons .icon-lamp {
    left: 10%;
  }
  .pageTopSec .top-icons .icon-note {
    right: 10%;
  }
  .pageTopSec .top-icons .icon-cal {
    right: 28%;
  }
  .pageTopSec .top-icons .icon-abc {
    left: 28%;
  }
}
@media (max-width: 1199px) {
  .main-footer,
  .f-link span {
    font-size: 12px;
  }
  .sp-icons i.icon-rocket {
    top: 0;
    font-size: 47px;
  }
  [dir="ltr"] .sp-icons i.icon-rocket {
    right: 50px;
  }
  [dir="rtl"] .sp-icons i.icon-rocket {
    left: 50px;
  }
  .sp-icons i.icon-flower {
    top: 0;
    font-size: 40px;
  }
  [dir="ltr"] .sp-icons i.icon-flower {
    left: 20%;
  }
  [dir="rtl"] .sp-icons i.icon-flower {
    right: 20%;
  }
  .sp-icons i.icon-leaf {
    bottom: 0;
    font-size: 47px;
  }
  [dir="ltr"] .sp-icons i.icon-leaf {
    left: 30%;
  }
  [dir="rtl"] .sp-icons i.icon-leaf {
    right: 30%;
  }
  .ac-icons i.icon-sun {
    top: -40px;
  }
  [dir="ltr"] .ac-icons i.icon-sun {
    right: 30px;
  }
  [dir="rtl"] .ac-icons i.icon-sun {
    left: 30px;
  }
  .ac-icons i.icon-bee {
    top: auto;
    bottom: 0;
    animation: scale-anim 3s infinite;
  }
  [dir="ltr"] .ac-icons i.icon-bee {
    right: 50%;
  }
  [dir="rtl"] .ac-icons i.icon-bee {
    left: 50%;
  }
  .edu-item {
    max-width: 100%;
    margin-bottom: 2.5rem;
    padding: 0 1rem;
  }
  .ent-item {
    margin-bottom: 2.5rem;
  }
  .ms-pic-parent {
    height: 300px;
  }
  .msc-title {
    font-size: 25px;
  }
  .msp-stars .icon-star-fill {
    font-size: 20px !important;
  }
  .msct-dots {
    width: 20px;
    height: 20px;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .galryTab .glryRow {
    gap: 18px 14px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .signupSec .regFeeList .regFeeCrd {
    padding: 0 20px 25px 20px;
  }
  .signupSec .regFeeCrd .regPlanPric {
    margin-top: 20px;
    padding-bottom: 20px;
  }
  .tripSec .tripCard {
    padding: 18px;
  }
  .tripSec .tripCard .tripCrdTop {
    height: 265px;
  }
  .tripSec .tripCard .tripFeature {
    padding: 10px 25px;
  }
  .comntsSec .comntList .comntBox {
    width: 49%;
  }
  .contctSec .contactWay li {
    height: 198px;
  }
  [dir="ltr"] .eduPlanRow1 .eduPlanInfo,
  [dir="rtl"] .eduPlanRow2 .eduPlanInfo {
    padding-right: 40px;
  }
  [dir="rtl"] .eduPlanRow1 .eduPlanInfo,
  [dir="ltr"] .eduPlanRow2 .eduPlanInfo {
    padding-left: 40px;
  }
  .galryTab .glryRow .glryItem {
    width: 23.5%;
    height: 230px;
  }
}
@media (max-width: 991px) {
  
.main-header.compact {
  top: 0;
}
  .notFoundSec .notFoundBx {
    width: 100%;
    text-align: center;
  }
  .notFoundSec .notFoundBx a {
    margin: 0 auto;
  }
  .notFoundSec .notFoundBx p {
    margin: 20px auto 30px auto;
  }
  .regFrmSec .planChkList {
    flex-wrap: wrap;
  }
  .regFrmSec .regBtnRow .regPrevBtn {
    height: 42px;
    border-radius: 14px;
    padding: 0 24px;
  }
  .signupSec .regProcess .processImg:after {
    height: 100%;
  }
  [dir="rtl"] .signupSec .regProcess .processTxt {
    text-align: right;
  }
  [dir="ltr"] .signupSec .regProcess .processTxt {
    text-align: left;
  }
  .signupSec .regProcess .processImg:after {
    top: 100%;
    width: 1px;
    border-bottom: none;
    border-left: 2px dashed #d0bedd;
  }
  .signupSec .regProcess .processUl {
    display: block;
  }
  .signupSec .regProcess .processUl li {
    width: 100%;
    flex-direction: row;
  }
  .signupSec .regFeesBx .regFeeList {
    flex-wrap: wrap;
    gap: 25px 15px;
  }
  .tripSec .tripCard {
    width: 48.8%;
  }
  .tripSec .tripsList {
    gap: 18px 12px;
  }
  .contctSec .contactWay .content img {
    margin: 0 auto;
  }
  .contctSec .contactWay {
    flex-wrap: wrap;
  }
  .contctSec .contactRow {
    flex-direction: column;
  }
  .contctSec .contactFrm {
    width: 100%;
  }
  .contctSec .contactMap {
    width: 100%;
    height: 350px;
  }
  .pageTopSec.faqTopSec {
    margin-bottom: 0;
  }
  .eduPlanRow {
    gap: 35px;
    margin-bottom: 55px;
  }
  .eduPlanRow1 {
    flex-direction: column-reverse;
  }
  .eduPlanRow2 {
    flex-direction: column;
  }
  [dir="rtl"] .eduPlanRow1 .eduPlanInfo,
  [dir="ltr"] .eduPlanRow2 .eduPlanInfo {
    width: 100%;
    padding-left: 0;
  }
  [dir="ltr"] .eduPlanRow1 .eduPlanInfo,
  [dir="rtl"] .eduPlanRow2 .eduPlanInfo {
    width: 100%;
    padding-right: 0;
  }
  .reservSec .reservRow {
    margin-bottom: 50px;
  }
  .reservSec .reservRow1 {
    flex-direction: column;
  }
  .reservSec .reservRow2 .resrvRght,
  .reservSec .reservRow1 .resrvRght,
  .reservSec .reservRow1 .resrvLeft,
  .reservSec .reservRow2 .resrvLeft {
    width: 100%;
  }
  [dir="rtl"] .reservSec .reservRow1 .resrvRght {
    padding-left: 0;
  }
  [dir="ltr"] .reservSec .reservRow1 .resrvRght {
    padding-right: 0;
  }
  .reservSec .reservRow .resrvImg {
    display: none;
  }
  .reservSec .reservRow .text {
    margin-bottom: 25px;
  }
  .reservSec .resrvRght .resrvIcons {
    height: 2px;
  }
  [dir="rtl"] .reservSec .resrvRght .resrvIcons {
    margin: 0px 2px 60px auto;
  }
  [dir="ltr"] .reservSec .resrvRght .resrvIcons {
    margin: 0px auto 60px 2px;
  }
  .reservSec .reservRow2 {
    flex-direction: column-reverse;
  }
  [dir="rtl"] .reservSec .reservRow2 .resrvLeft {
    padding-right: 0;
  }
  [dir="ltr"] .reservSec .reservRow2 .resrvLeft {
    padding-left: 0;
  }
  .reservSec .reservRow .text h2 {
    margin-bottom: 12px;
  }
  .videoSec .vp-control .btnBox:after {
    display: none;
  }
  .f-pd {
    padding: 0 !important;
  }
  .f-socials {
    justify-content: center;
  }
  .f-desc {
    margin-left: auto;
    margin-right: auto;
  }
  .f-logo-area {
    text-align: center;
    margin-top: 2rem;
  }
  .sec.sub {
    padding: 100px 0 170px 0;
  }
  .sys-top {
    display: block;
    text-align: center;
  }
  .syst-title {
    font-size: 19px;
  }
  .syst-more {
    position: absolute;
    bottom: -80px;
    left: 50%;
    transform: translateX(-50%);
    border: 1px solid var(--violet-50);
    padding: 6px 14px;
    border-radius: 50px;
  }
  .sp-icons {
    opacity: 0.4;
  }
  .sp-icons i {
    font-size: 30px !important;
  }
  .act-parent {
    max-width: 100%;
  }
  .ac-title {
    font-size: 20px;
  }
  .ac-icons i.icon-bee {
    bottom: -55px;
  }
  [dir="ltr"] .ac-icons i.icon-bee {
    right: 40px;
  }
  [dir="rtl"] .ac-icons i.icon-bee {
    left: 40px;
  }
  .about-content {
    max-width: 100%;
    margin-bottom: 2rem;
  }
  .ac-video-col {
    margin: 0 auto;
  }
  .edu-icons {
    opacity: 0.5;
  }
  .edu-pic {
    height: 170px;
  }
  .ent-sec::before,
  .ent-sec:after {
    opacity: 0.2;
  }
  .sec-title {
    margin-bottom: 3rem;
  }
  .st-title {
    font-size: 20px;
  }
  .sec-my {
    margin: 7rem 0;
  }

  .sec.white {
    padding-top: 0 !important;
  }
  .nvp-mobile-logo {
    display: block;
  }
  .main-header {
    padding: 13px 0;
  }
  .root {
    padding-top: 74px;
  }
  .hl-img {
    width: 40px;
    height: 40px;
  }
  .menu-toggler {
    display: flex;
  }
  .nav-parent {
    position: fixed;
    top: 0;
    width: 250px;
    height: 100%;
    background-color: #fff;
    padding: 1.5rem 0;
    overflow: auto;
    -webkit-transition: 0.2s;
    transition: 0.2s;
    z-index: 999;
  }
  [dir="ltr"] .nav-parent {
    left: -250px;
  }
  [dir="rtl"] .nav-parent {
    right: -250px;
  }
  [dir="ltr"] .nav-parent.open {
    left: 0;
  }
  [dir="rtl"] .nav-parent.open {
    right: 0;
  }
  .nav-parent.open ~ .full-shadow {
    display: block;
  }
  .nav-menu {
    display: block;
    height: auto;
  }
  .nm-list {
    display: block;
  }
  .nm-list li:last-child .nml-link {
    border: none;
  }
  .nml-link {
    display: block;
    padding-top: 13px;
    padding-bottom: 13px;
    border-bottom: 1px solid #f3f3f3;
    height: auto;
  }
  [dir="ltr"] .nml-link {
    padding-left: 20px;
    padding-right: 0;
  }
  [dir="rtl"] .nml-link {
    padding-left: 0;
    padding-right: 20px;
  }
  .nml-link span {
    font-size: 1rem;
    color: #333;
  }
  .nml-link::before {
    display: none;
  }
  .nml-link:active {
    background-color: rgba(102, 45, 145, 0.1176470588);
  }
  .nml-link:active span {
    color: var(--violet-500) !important;
  }
  .nml-link:hover span {
    color: inherit;
  }
}
@media (min-width: 576px) and (max-width: 991px) {
  .signupSec .regProcess .processImg {
    min-width: 119px;
  }
  [dir="rtl"] .signupSec .regProcess .processImg:after {
    right: 58px;
  }
  [dir="ltr"] .signupSec .regProcess .processImg:after {
    left: 58px;
  }
  .signupSec .regProcess .processUl li {
    margin-bottom: 30px;
  }
  .signupSec .regFeeList .regFeeCrd {
    width: 48%;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .notFoundSec .notFoundImg {
    width: 415px;
    max-width: unset;
  }
  .notFoundSec .notFundRow {
    align-items: center;
  }
  .regFrmSec .planChkList .form-check {
    width: 45%;
  }
  .signupSec .howToPay ul {
    gap: 14px;
  }
  .signupSec .howToPay ul li {
    padding: 24px 20px;
  }
  .comntsSec .comntList .comntBox {
    width: 48.7%;
  }
  .contctSec .contactWay {
    gap: 25px;
  }
  .contctSec .contactWay li {
    width: 47%;
    height: 215px;
  }
  .pageTopSec.eduTopSec {
    margin-bottom: 50px;
  }
  .eduPlanSec {
    padding-bottom: 40px;
  }
  .eduPlanRow .eduPlanImg {
    width: 360px;
  }
  .videoSec .vp-control .btnBox {
    width: 84px;
    min-width: 84px;
    height: 84px;
  }
  .vp-control:hover .vpc-btn {
    box-shadow: 0 0 0 20px rgba(149, 122, 170, 0.315);
  }
  .galryTab .glryRow .glryItem {
    width: 31.8%;
    height: 210px;
  }
  .galryTab .tabHeader ul {
    gap: 20px;
  }
}
@media (max-width: 767px) {
  .regInfo .regInfoBx {
    border-radius: 20px;
    padding: 25px 15px;
  }
  .aprovalInfo {
    flex-wrap: wrap;
  }
  .aprovalInfo .aprovalBx {
    width: 100%;
  }
  .aprovalInfo .infoBx {
    border-radius: 18px;
    padding: 15px;
  }
  .kidInfo .regInfoBx li:nth-last-child(1),
  .kidInfo .regInfoBx li:nth-last-child(2),
  .parentInfo .regInfoBx li,
  .kidInfo .regInfoBx li {
    width: max-content;
    min-width: 48%;
    max-width: 100%;
  }
  .notFoundSec {
    padding: 70px 0 140px 0;
  }
  .notFoundSec .notFundRow {
    flex-direction: column-reverse;
  }
  .notFoundSec .notFoundImg {
    width: 350px;
    max-width: 100%;
    margin: 0 auto;
  }
  .cmntVidSldr .owl-item {
    height: 330px;
    max-width: 230px;
  }
  .regFrmSec .planChkList .form-check {
    width: 100%;
  }
  .regFrmSec .formSteps {
    max-width: 100%;
    gap: 16px;
  }
  .regFrmSec .formSteps li:after {
    width: 75px;
    height: 8px;
    top: 16px;
  }
  .regFrmSec .formSteps li .numbr {
    width: 35px;
    min-width: 35px;
    height: 35px;
  }
  .regFrmSec .formSteps li .numbr i {
    font-size: 13px;
  }
  .regFrmSec .formSteps li p {
    font-size: 12px;
  }
  .signupSec .howToPay ul {
    display: block;
  }
  .signupSec .howToPay ul li {
    width: 100%;
    margin-bottom: 20px;
    padding: 30px 20px;
  }
  .signupSec .regFeeCrd .regPlanPric {
    padding-bottom: 18px;
    margin-top: 18px;
  }
  .signupSec .regFeeCrd ul p {
    font-size: 13px;
  }
  .comntsSec .comntList .comntBox {
    width: 100%;
  }
  .bioSec .bioRow {
    flex-direction: column-reverse;
    justify-content: center;
    gap: 20px;
  }
  .bioSec .bioRow .bioImg {
    margin: 0 auto;
    width: 100%;
    max-width: 248px;
    height: 245px;
  }
  .bioSec .bioRow .bioImg img {
    object-position: top;
  }
  .bioSec .bioRow .bioText {
    width: 100%;
    text-align: center;
  }
  [dir="rtl"] .bioSec .bioRow .bioText {
    padding-left: 0;
  }
  [dir="ltr"] .bioSec .bioRow .bioText {
    padding-right: 0;
  }
  .abutSlider .item {
    height: 230px;
  }
  .goalsBox img {
    width: 150px;
  }
  .goalsBox .goalsText {
    margin-top: 20px;
  }
  .goalsBox ul {
    margin-top: 30px;
    gap: 16px 12px;
  }
  .goalsBox ul li {
    padding: 10px 12px;
  }
  .goalsBox ul p {
    font-size: 12px;
  }
  .goalsBox ul span {
    font-size: 20px;
  }
  .goalsBox {
    padding: 30px 20px;
  }
  .contctSec .contactWay .content strong {
    font-size: 15px;
  }
  .contctSec .contactWay .content p {
    font-size: 13px;
  }
  .eduPlanSec {
    padding-bottom: 0;
  }
  .eduPlanRow .eduPlanTxt {
    text-align: center;
  }
  .eduPlanRow .eduPlanUl {
    justify-content: center;
  }
  .eduPlanRow .eduPlanImg {
    margin: 0 auto;
    width: 100%;
    max-width: 280px;
  }
  .plansTab .faqAcordion {
    margin: 1px auto 20px auto;
  }
  .reservSec .reservRow .text {
    text-align: center;
  }
  .reservSec .reservRow .text p {
    margin: 0 auto;
  }
  .faqAcordion .accordion-body {
    padding: 9px 18px;
  }
  .faqAcordion .accordion-button,
  .faqAcordion
    .accordion-flush
    > .accordion-item
    > .accordion-header
    .accordion-button.collapsed {
    font-size: 14px;
    padding: 20px 14px 20px 31px;
  }
  .accordion-button::after {
    font-size: 20px;
    left: 10px;
  }
  .pageTopSec .top-icons .icon-note {
    font-size: 35px;
    top: 22px;
  }
  .pageTopSec .top-icons .icon-cal {
    font-size: 38px;
  }
  .pageTopSec .top-icons .icon-lamp {
    font-size: 32px;
    top: 30px;
  }
  .pageTopSec .top-icons .icon-abc {
    font-size: 42px;
  }
  .pageTopSec {
    margin-bottom: 30px;
  }
  .videoSec {
    margin-bottom: 100px;
  }
  .videoSec .vp-control .btnBox {
    width: 90px;
    min-width: 90px;
    height: 90px;
  }
  .tabHeader {
    padding: 4px 15px;
  }
  .tabHeader ul {
    gap: 5px;
  }
  .tabHeader a {
    padding: 6px 16px;
    font-size: 14px;
  }
  .galryTab .glryRow {
    gap: 14px 7px;
  }
  .galryTab .glryRow .glryItem {
    padding: 5px;
  }
  .galryTab .glryRow .glryItem img {
    border-radius: 7px;
  }
  .main-footer,
  .f-link span {
    font-size: 14px;
  }
  .sysd-e1 {
    top: 35%;
  }
  .sysd-e2 {
    bottom: 6%;
  }
  .cb-message {
    font-size: 13px;
  }
  .spt-label {
    font-size: 14px;
    margin-bottom: 10px;
  }
  .spt-title {
    font-size: 19px;
  }
  .badge {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 38px;
    padding: 0 18px;
    gap: 6px;
  }
  .badge i {
    font-size: 8px;
  }
  .badge.rounded span {
    font-size: 11px;
    padding-bottom: 1px;
  }
  .ms-pic-parent {
    height: 200px;
    margin-top: 3rem;
  }
  .msp-stars .icon-star-fill {
    font-size: 14px !important;
  }
  .ms-content {
    text-align: center;
  }
  .msc-title {
    font-size: 20px;
  }
  .msct-dots {
    width: 15px;
    height: 15px;
    top: 0px;
  }

  .main-header {
    padding: 10px 0;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
  }
  .root {
    padding-top: 58px;
  }
  .header-logo {
    gap: 10px;
  }
  .hl-name {
    font-size: 16px;
  }
  .hl-desc {
    font-size: 10px;
  }
  .hl-img {
    width: 32px;
    height: 32px;
  }
  .lang-dropdown-btn span {
    display: none;
  }
  .ha-btn {
    padding: 0 30px;
    height: 38px;
    border-radius: 20px;
    font-weight: 400;
    padding-bottom: 5px;
    font-size: 12px;
  }
}
@media (min-width: 480px) and (max-width: 767px) {
  .galryTab .glryRow .glryItem {
    width: 31.9%;
    height: 170px;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  .signupSec .regFeeList .regFeeCrd {
    padding: 0 15px 20px 15px;
  }
  .tripSec .tripCard {
    padding: 20px 15px;
  }
  .tripSec .tripCard .tripFeature {
    padding: 10px 16px;
  }
  .tripSec .tripCard .tripCrdTop {
    height: 225px;
  }
  .contctSec .contactWay {
    gap: 15px;
  }
  .contctSec .contactWay li {
    width: 48%;
    height: 166px;
  }
  .contctSec .contactWay .content img {
    width: 55px;
  }
}
@media (max-width: 575px) {
  [dir="rtl"] .signupSec .regProcess .processImg:after {
    right: 50%;
  }
  [dir="ltr"] .signupSec .regProcess .processImg:after {
    left: 50%;
  }
  .floutRegBtn {
    left: 15px !important;
  }
  .floutRegBtn .btn {
    width: 150px;
    padding: 0 14px 4px 14px;
  }
  .regFrmSec .regFrmBox {
    padding: 35px 20px;
  }
  .signupSec .regProcess .processImg {
    width: 90px;
    min-width: 90px;
    height: 90px;
  }
  .signupSec .regProcess .processImg:after {
    right: 44px;
  }
  .signupSec .regProcess .processImg img {
    width: 35px;
  }
  .signupSec .regProcess .processUl li {
    margin-bottom: 25px;
    gap: 20px;
  }
  .signupSec .regFeeList .regFeeCrd,
  .tripSec .tripCard {
    width: 100%;
  }
  .comntsSec .comntHedBx {
    flex-direction: column;
    justify-content: center;
    gap: 30px;
  }
  .contctSec .contactFrm {
    padding: 25px 20px;
  }
  .contctSec .socialNetwrk ul {
    flex-wrap: wrap;
    gap: 10px 13px;
  }
  .contctSec .socialNetwrk ul a {
    width: 52px;
  }
  .contctSec .socialNetwrk ul span {
    font-size: 22px;
  }
  .contctSec .contactWay li {
    width: 100%;
  }
  .eduPlanRow .eduPlanUl li img {
    width: 22px;
  }
  .eduPlanRow .eduPlanUl li p {
    font-size: 13px;
  }
  .reservSec .reservRow .reservFrm {
    padding: 20px;
  }
  .rsrvCalndar .month-header .month-name {
    font-size: 14px;
  }
  .rsrvCalndar .month-header {
    min-width: 165px;
  }
}
@media (max-width: 479px) {
  .abutSlider .item {
    max-width: 100%;
  }
  .eduPlanRow .eduPlanUl li {
    max-width: unset;
    width: 50%;
    flex: 48%;
  }
  .galryTab .glryRow .glryItem {
    width: 48.8%;
    height: 170px;
  }
  .cmsc-title {
    font-size: 18px;
  }
  .cmsc-social .text {
    width: 70px;
  }
  .acvc-grid {
    display: block;
  }
  .cmsc-desc {
    font-size: 14px;
  }
  .acvcg-item {
    margin-bottom: 1rem;
  }
  .acvcgi-box {
    height: auto;
    padding: 10px;
  }
}
@media (max-width: 419px) {
  .ha-btn {
    padding: 0 20px;
    font-size: 11px;
  }
}
