/*!
Theme Name: Iyra International School
Theme URI: 
Author: Webskitters
Author URI: https://www.webskitters.com/
Description: Award-Winning Web Design &amp; Development Company - Webskitters
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: iyra-international-school
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

Iyra International School is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Generic
	- Normalize
	- Box sizing
# Base
	- Typography
	- Elements
	- Links
	- Forms
## Layouts
# Components
	- Navigation
	- Posts and pages
	- Comments
	- Widgets
	- Media
	- Captions
	- Galleries
# plugins
	- Jetpack infinite scroll
# Utilities
	- Accessibility
	- Alignments

--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Generic
--------------------------------------------------------------*/

/* Normalize
--------------------------------------------- */

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

/* Document
	 ========================================================================== */

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Manrope:wght@200..800&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap");

/* font-family: "Raleway", sans-serif; */
/* font-family: "Manrope", sans-serif; */
/* font-family: "Lato", sans-serif; */

/* body,
html {
    overflow-x: hidden;
} */
/* body,html{
    width: 100%;
} */
body {
  margin: 0;
  padding: 0;
  font-family: var(--body-font);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  width: 100%;
  font-weight: 500;
  font-style: normal;
  color: var(--body-color);
  font-size: 16px;
  line-height: 1.75;
  letter-spacing: -0.02em;
  background-color: var(--white-color);
  display: flex;
  flex-direction: column;
  min-height: 100dvh;
  overflow-x: hidden;
}

:root {
  scroll-behavior: inherit;
  --body-font: "Raleway", sans-serif;
  --manrope-font: "Manrope", sans-serif;
  --lato-font: "Lato", sans-serif;
  --body-color: #545454;
  --heading-color: #262524;
  --orange-color: #f36d26;
  --brown-color: #56433f;
  --white-color: #fff;
  --black-color: #000;
  --crimson-color: #9c1c4c;
  --green-color: #438a40;
  --blue-color: #11abd8;
}

b,
strong {
  font-weight: 700;
}

p {
  margin: 0 0 22px 0;
}

p:last-child {
  margin-bottom: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 22px 0;
  padding: 0;
  color: var(--heading-color);
  font-weight: 700;
}

h1:last-child,
h2:last-child,
h3:last-child,
h4:last-child,
h5:last-child,
h6:last-child {
  margin-bottom: 0;
}

h1,
.h1-title {
  font-weight: 300;
  font-size: 125px;
  line-height: 1.03;
}

h2,
.h2-title {
  font-weight: 700;
  font-size: 60px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

h3,
.h3-title {
  font-weight: 700;
  font-size: 50px;
  line-height: 1.2;
}

h4,
.h4-title {
  letter-spacing: -0.02em;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.2;
}

h5,
.h5-title {
  font-size: 20px;
  line-height: 1.2;
  font-weight: 700;
}

a {
  margin: 0;
  padding: 0;
  text-decoration: none !important;
  outline: none !important;
  color: var(--orange-color);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

a:hover {
  color: var(--brown-color);
}

img {
  max-width: 100%;
}

input[type="text"],
input[type="tel"],
input[type="password"],
input[type="email"],
input[type="number"],
input[type="date"],
select {
  background-color: transparent;
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
  border-radius: 100px;
  color: var(--body-color);
  border: 1px solid var(--body-color);
  height: 60px;
  padding: 0 27px;
  outline: none !important;
  font-weight: 500;
  background-color: var(--white-color);
}

input[type="text"]:focus,
input[type="tel"]:focus,
input[type="password"]:focus,
input[type="email"]:focus,
input[type="number"]:focus,
input[type="date"]:focus,
textarea:focus,
select:focus {
  border-color: var(--orange-color);
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

textarea {
  background-color: transparent;
  -webkit-appearance: none;
  appearance: none;
  border-radius: 10px;
  border: 1px solid var(--body-color);
  padding: 12px 16px;
  width: 100%;
  color: var(--body-font);
  height: 158px;
  outline: none !important;
  resize: none;
  height: 200px;
  padding: 18px 22px;
  background-color: var(--white-color);
}

select {
  border: 1px solid var(--body-color);
  width: 100%;
  padding: 0 27px;
  background: url(images/sel-arr.svg) no-repeat calc(100% - 20px) center transparent;
  background-size: 15px;
  padding-right: 40px;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
  background-color: var(--white-color);
}

select::-ms-expand {
  display: none;
}

input[type="submit"] {
  background: #56433f;
  color: var(--white-color);
  height: 55px;
  border: none;
  -webkit-appearance: none;
  appearance: none;
  border-radius: 60px;
  padding-left: 30px;
  padding-right: 30px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  outline: none !important;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  min-width: 170px;
  border: 1px solid #56433f;
}

input[type="submit"]:hover {
  background: transparent;
  color: #56433f;
}

::-webkit-input-placeholder {
  opacity: 0.7;
  color: #000;
}

:-ms-input-placeholder {
  opacity: 0.7;
  color: #000;
}

::-moz-placeholder {
  opacity: 0.7;
  color: #000;
}

:-moz-placeholder {
  opacity: 0.7;
  color: #000;
}

/* images alignment for wordpress content pages */
.alignright {
  float: right;
  margin: 0 0 20px 20px;
}

.alignleft {
  float: left;
  margin: 0 20px 20px 0;
}

.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 20px;
  float: none;
  clear: both;
}

/* custom checkbox */

.form_input_check label {
  position: relative;
  margin: 0;
  padding-left: 40px;
  display: inline-block;
}

.form_input_check label span {
  margin: 0;
  padding: 0;
}

.form_input_check label input[type="checkbox"] {
  visibility: hidden;
  display: none;
}

.form_input_check label input[type="checkbox"]+span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0px;
  width: 22px;
  height: 22px;
  border: 1px solid #3e3e42;
  background: transparent;
}

.form_input_check label input[type="checkbox"]+span::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0px;
  width: 22px;
  height: 22px;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  background: url(images/tick.svg) no-repeat center center;
  background-size: 15px;
}

.form_input_check label input[type="checkbox"]:not(:checked)+span::after {
  opacity: 0;
  -webkit-transform: scale(0);
  transform: scale(0);
}

/* .form_input_check input[type="checkbox"]:checked + span::before {
      
    } */

.form_input_check label input[type="checkbox"]:checked+span:after {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}

/* custom radio */

.form_input_radio label {
  position: relative;
  margin: 0;
  padding-left: 30px;
  display: inline-block;
}

.form_input_radio label span {
  margin: 0;
  padding: 0;
}

.form_input_radio label input[type="radio"] {
  visibility: hidden;
  display: none;
}

.form_input_radio label input[type="radio"]+span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1px;
  width: 22px;
  height: 22px;
  border: 2px solid #000000;
  border-radius: 100%;
  background: #fff;
}

.form_input_radio label input[type="radio"]+span::after {
  content: "";
  width: 12px;
  height: 12px;
  background: #4b0049;
  position: absolute;
  top: 6px;
  left: 5px;
  border-radius: 100%;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.form_input_radio label input[type="radio"]:not(:checked)+span::after {
  opacity: 0;
  -webkit-transform: scale(0);
  transform: scale(0);
}

/* .form_input_radio input[type="radio"]:checked + span::before {
      
    } */

.form_input_radio label input[type="radio"]:checked+span:after {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}

/* custom radio end */

/* back to top */

#scroll {
  position: fixed;
  right: 20px;
  bottom: 20px;
  cursor: pointer;
  width: 55px;
  height: 55px;
  background-color: #bdd653;
  display: none;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  line-height: 68px;
  text-align: center;
  cursor: pointer;
  display: inline-block;
  -webkit-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.2);
  z-index: 9;
}

#scroll:hover {
  background: #88a725;
}

#scroll i {
  color: #fff;
  font-size: 44px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

#scroll:hover i {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-transform: translateY(-6px);
  transform: translateY(-6px);
}

/* navbar*/

.navbar-brand {
  padding: 0;
  margin: 0;
  /* width: 170px; */
  display: inline-block;
  padding: 27px 25px 18px 18px;
  background-color: #fffdf8;
  border-radius: 20px;
  position: relative;
}

.navbar {
  background: none;
  margin: 0;
  padding: 0;
  min-height: inherit;
  height: inherit;
  border: none;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  border-radius: 0;
}

.navbar-nav li {
  position: relative;
  list-style: none;
}

.navbar-nav>li {
  margin: 0 20px;
  padding: 29px 0;
  position: relative;
  display: inline-flex;
  align-items: center;
}

.navbar-nav>li:last-child {
  margin-right: 0;
}

.navbar-nav>li:first-child {
  margin-left: 0;
}

.navbar-nav>li>a {
  color: var(--heading-color);
  font-weight: 600;
  font-size: 15px;
  line-height: 1.2;
  position: relative;
  display: inline-flex;
  align-items: center;
}

.navbar-nav>li>a:after {
  content: "";
  display: block;
  width: 0;
  height: 2px;
  background: var(--orange-color);
  /* opacity: 0; */
  position: absolute;
  bottom: -10px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.navbar-nav>li.current-menu-item>a,
.navbar-nav>li>a:hover,
.navbar-nav>li.menu-item-has-children:hover>a {
  color: var(--orange-color);
}

.navbar-nav>li>a:hover:after,
.navbar-nav>li.menu-item-has-children:hover>a:after {
  width: 100%;
}

/* navbar submenu*/

.sub-menu {
  background: var(--white-color);
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 8px;
  overflow: hidden;
  width: 250px;
  padding: 0;
}

.sub-menu>li>a {
  color: var(--black-color);
  display: block;
  width: 100%;
  padding: 14px 15px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
  border: 1px solid rgba(0, 0, 0, 0.08);
  text-transform: capitalize;
}

.sub-menu>li {
  width: 100%;
  display: block;
}

.sub-menu>li>a:hover,
.sub-menu>li.menu-item-has-children:hover>a,
.sub-menu>li.current-menu-item>a {
  background: var(--black-color);
  color: var(--white-color);
}

.navbar-nav>li:last-child>.sub-menu {
  right: 0;
  left: inherit;
  padding: 0;
}

/* 2nd level submenu */
.navbar-nav>li>.sub-menu .sub-menu {
  position: absolute;
  left: 100%;
  top: 0;
}

/* for push-menu */
.navbar-collapse .navbar-toggler {
  display: none;
}

#navoverlay {
  display: block;
  pointer-events: none;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  margin: 0;
  padding: 0;
  z-index: 99;
  -webkit-transition: background-color 0.5s linear;
  transition: background-color 0.5s linear;
  backdrop-filter: blur(0);
}

/* for push-menu end*/

/* Common */

.cmn-btn {
  font-weight: 600;
  color: var(--white-color);
  line-height: 1;
  padding: 19px 34px;
  display: inline-flex;
  align-items: center;
  /* justify-content: center; */
  background-color: var(--brown-color);
  border-radius: 60px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.cmn-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: var(--orange-color);
  border-radius: 60px;
  z-index: -1;
  transition: all 0.3s ease-in-out;
}

.cmn-btn:hover:before {
  width: 100%;
}

.cmn-btn span {
  display: inline-block;
  margin-left: 6px;
  max-width: 20px;
}

.cmn-btn span img {
  width: 100%;
}

ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.cmn-btn:hover {
  color: var(--white-color);
}

/* Custom css start */

.navbar-brand img {
  width: 100%;
}

/* .navbar-brand-wrp::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background-color: var(--orange-color);
    border-radius: 20px;
    transform: rotate(5.02deg);
    width: 100%;
    height: 100%;
    z-index: -1;
} */
.navbar-brand-wrp {
  position: relative;
  padding: 14px 12px 13px 11px;
  max-width: 190px;
  margin-top: 3px;
  z-index: 1;
}

.logo-shape {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.main-head {
  transition: all 0.3s ease-in-out;
}

.bnr-sec-main {
  position: relative;
  min-height: 960px;
  padding: 70px 0 0;
  display: flex;
  flex-direction: column;
  /* overflow: hidden; */
}

.bnr-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.bnr-video video {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-wrapper {
  margin-top: -33px;
}

.navbar {
  align-items: flex-start;
}

.nav-btn-wrp {
  display: flex;
  align-items: center;
  margin-left: auto;
  padding-top: 13px;
}

.header-btn {
  margin-left: 30px;
}

.bnr-cont-wrp {
  position: relative;
  z-index: 1;
}

.bnr-shape {
  width: 100%;
  height: 100%;
  /* object-fit: cover; */
  position: absolute;
  top: 0;
  left: 0;
}

.bnr-cont-shape {
  width: 767px;
  min-height: 645px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  padding: 7% 4% 4% 9%;
}

.bnr-txt-tag {
  background-color: var(--white-color);
  line-height: 1;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 13px;
  border-radius: 60px;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 18px;
}

.bnr-txt-tag p {
  margin-bottom: 0;
  padding: 0 6px;
}

.bnr-txt-tag span {
  font-family: var(--manrope-font);
  display: inline-block;
  line-height: 0.5;
  margin-top: 3px;
}

.bnr-cont-main {
  z-index: 1;
  position: relative;
  width: 100%;
}

.welcome-wrp {
  color: var(--white-color);
}

.welcome-wrp span {
  font-family: var(--lato-font);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 24px;
  letter-spacing: 0.48em;
  display: block;
  margin-bottom: 4px;
}

.welcome-wrp h1 {
  color: var(--white-color);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 0.8;
  margin-bottom: 8px;
}

.welcome-wrp p {
  font-size: 57px;
  font-weight: 700;
  text-transform: capitalize;
  line-height: 1.1;
  margin-bottom: 10px;
}

.year-scl {
  color: var(--white-color);
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 16px;
}

.cmn-btn.wh {
  background-color: var(--white-color);
  color: var(--heading-color);
}

.bnr-shape-wrp {
  /* transform: translateY(1%); */
  margin-top: auto;
  overflow: hidden;
  transform: translateY(3px);
}

.bnr-top-shape {
  width: 100%;
  z-index: 1;
  position: relative;
  display: block;
  transform: translateY(89%);
}

.bnr-btm-shape {
  width: 110%;
  z-index: 1;
  position: relative;
  display: block;
  /* margin-bottom: -88px; */
  transform: translateY(3%);
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 2%);
  height: auto;
}

.col-ftr {
  padding: 0px 12px;
}

.row-ftr {
  margin: 0px -12px;
  display: flex;
  flex-wrap: wrap;
}

.list-ftr {
  column-gap: 20px;
  column-count: 2;
}

.list-ftr.no-colmn {
  column-count: 1;
}

.list-ftr li p {
  margin-bottom: 2px;
}

.list-ftr li {
  margin-bottom: 6px;
}

.list-ftr li:last-child {
  margin-bottom: 0;
}

.list-ftr li a {
  letter-spacing: -0.02em;
  font-weight: 500;
  color: var(--body-color);
}

.list-ftr li a:hover {
  color: var(--orange-color);
}

.list-social {
  margin-left: auto;
  display: flex;
  align-items: center;
  margin-left: 17px;
}

.list-social li {
  margin-right: 6px;
}

.list-social li:last-child {
  margin-right: 0;
}

.list-social li a {
  border: 1px solid #212121;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 43px;
  width: 43px;
  border-radius: 100%;
}

.list-social li a img {
  max-width: 19px;
}

.list-social li a:hover {
  border-color: var(--orange-color);
  background-color: var(--orange-color);
}

.list-social li a:hover img {
  filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(0%) hue-rotate(288deg) brightness(102%) contrast(102%);
}

.shape-topftr {
  position: relative;
  width: 100%;
  margin-top: -1px;
}

.dot-shape-ftr {
  position: absolute;
  bottom: -9%;
  right: 12%;
  max-width: 176px;
  z-index: 11;
  /* pointer-events: none; */
}

.list-ftr.no-colmn li span {
  display: inline-block;
  word-break: break-all;
}

.footer {
  padding-top: 10.5vw;
  background: linear-gradient(81.43deg, #b7cdeb 18.72%, #91cafe 63.81%);
  /* transform: matrix(-1, 0, 0, 1, 0, 0); */
  position: relative;
  z-index: 1;
  flex-grow: 1;
}

.shape-ftr {
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  opacity: 0.2;
}

.lower-ftrinr {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.lower-ftrinr>p {
  font-size: 18px;
  margin-bottom: 0;
  font-weight: 400;
}

.lower-ftrinr>p a {
  color: var(--body-color);
}

.lower-ftrinr>p a:hover {
  color: var(--orange-color);
}

.lower-ftr {
  padding: 22px 0;
  border-top: 1px solid #8bb6de;
}

.ftr-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 19px;
  color: var(--heading-color);
}

.ftr-logo {
  display: inline-block;
  width: 100%;
  max-width: 151px;
  margin-bottom: 40px;
}

.ftr-logo img {
  width: 100%;
}

.ftrpara {
  font-weight: 500;
}

.upper-ftr {
  padding-bottom: 65px;
  /* padding-top: 70px; */
}

.inr-ftr.full {
  max-width: 100%;
}

.seacrh-form {
  position: relative;
  z-index: 1;
  height: 55px;
}

.seacrh-form input[type="email"] {
  background-color: var(--white-color);
  padding-left: 27px;
  padding-right: 70px;
  border-radius: 60px;
  color: var(--body-color);
  height: 100%;
}

.seacrh-form input[type="email"]::-webkit-input-placeholder {
  color: #545454;
}

.seacrh-form input[type="email"]:-ms-input-placeholder {
  color: #545454;
}

.seacrh-form input[type="email"]::-moz-placeholder {
  color: #545454;
}

.seacrh-form input[type="email"]:-moz-placeholder {
  color: #545454;
}

.seacrh-form input[type="submit"]:hover {
  background-color: var(--orange-color);
}

.seacrh-form input[type="submit"] {
  padding: 0;
  height: 45px;
  min-width: 45px;
  background-color: #56433f;
  font-size: 0;
  position: absolute;
  top: 50%;
  right: 4px;
  transform: translateY(-50%);
  border-radius: 100%;
  background-image: url(images/submit-arw.svg);
  background-repeat: no-repeat;
  background-size: 20px;
  background-position: center;
}

.ftr-form span {
  font-weight: 700;
  color: var(--heading-color);
  display: inline-block;
  margin-bottom: 13px;
}

.inr-ftr {
  max-width: 369px;
}

.ftr-one {
  width: 35%;
}

.ftr-three {
  width: 24%;
}

.ftr-two {
  width: 41%;
}

.rgt-btn {
  margin-left: auto;
  padding-left: 20px;
  flex-shrink: 0;
}

.wrap-news {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 37px;
}

.new-sec .cmn-hdr-tag {
  max-width: 626px;
}

.cmn-hdr-tag {
  max-width: 784px;
}

.cmn-hdr-tag.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.cmn-hdr-tag h2 {
  margin-bottom: 10px;
  text-transform: capitalize;
}

.cmn-hdr-tag h2 span {
  color: var(--orange-color);
}

.cmn-hdr-tag p {
  margin-bottom: 0;
}

.list-date {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.list-date li {
  margin-right: 25px;
  font-weight: 600;
  color: var(--orange-color);
}

.list-date li span {
  display: inline-block;
}

.list-date li img {
  max-width: 14px;
  margin-right: 8px;
}

.list-date li:last-child {
  margin-right: 0;
}

.read-more {
  display: inline-flex;
  align-items: center;
  font-size: 18px;
  font-weight: 600;
}

.read-more:hover {
  color: var(--blue-color);
}

.read-more:hover img {
  filter: brightness(0) saturate(100%) invert(76%) sepia(47%) saturate(7219%) hue-rotate(156deg) brightness(95%) contrast(87%);
}

.read-more img {
  width: 100%;
  max-width: 16px;
  margin-left: 6px;
}

.down-news h3 {
  font-size: 20px;
  margin-bottom: 15px;
}

.down-news h3 a {
  color: var(--heading-color);
  display: inline-block;
  line-height: 1.5;
}

.down-news h3 a:hover {
  color: var(--orange-color);
}

.down-news>p {
  margin-bottom: 10px;
}

.news-blog {
  padding-top: 50.61%;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px 10px 0 0;
  overflow: hidden;
}

.news-blog:hover img {
  transform: scale(1.1);
}

.news-blog img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s ease-in-out;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.down-news {
  padding-top: 24px;
  padding-left: 32px;
  padding-right: 100px;
  padding-bottom: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.inr-news {
  display: flex;
  flex-direction: column;
  background: var(--white-color);
  box-shadow: 0px 20px 50px rgba(0, 0, 0, 0.08);
  border-radius: 10px;
  height: 100%;
}

.new-sec {
  padding-bottom: 90px;
  padding-top: 112px;
  position: relative;
  z-index: 2;
}

.col-under {
  width: 100%;
  margin-bottom: 27px;
}

.wrap-under {
  display: flex;
  background: var(--white-color);
  box-shadow: 0px 20px 50px rgba(0, 0, 0, 0.08);
  border-radius: 10px;
  transition: 0.3s ease-in-out;
}

.wrap-under:hover {
  box-shadow: 10px 10px #f9d9c7;
}

.rgt-under,
.lft-under {
  width: 100%;
}

.rgt-under .down-news {
  padding-top: 24px;
  padding-left: 24px;
  padding-right: 40px;
  padding-bottom: 24px;
}

.rgt-under .list-date li {
  margin-right: 10px;
}

.lft-under .news-blog {
  padding-top: 0;
  border-radius: 10px 0 0 10px;
  height: 100%;
}

.blue-shape {
  position: absolute;
  left: 0;
  max-width: 150px;
  bottom: 23%;
}

.green-shape {
  position: absolute;
  right: 30%;
  max-width: 67px;
  top: 10px;
}

.abt-ts {
  position: relative;
  width: 100%;
  margin-top: -2px;
  padding-bottom: 20px;
}

.top-white-shape {
  position: relative;
  width: 100%;
  padding-top: 20px;
}

.about-us-sec {
  background: #ffece1;
  position: relative;
  padding-bottom: 70px;
  padding-top: 30px;
}

.experience-card {
  position: relative;
  z-index: 1;
  padding: 10px;
  border: 1px solid transparent;
  border-radius: 10px;
  height: 100%;
  pointer-events: none;
  transition: all 0.3s ease-in-out;
}

.experience-card:hover {
  border-color: #9c1c4c;
}

.ani-circle {
  height: 12px;
  width: 12px;
  border-radius: 100%;
  position: absolute;
  top: 0;
  z-index: 2;
}

.ani-circle.dot-orange {
  background-color: #f36d26;
  offset-path: rect(0% auto 100% auto);
  animation: rotate1 23s linear infinite;
}

.ani-circle.dot-sky {
  background-color: #11abd8;
  offset-path: rect(0% auto 100% auto);
  animation: rotate2 25s linear infinite;
}

.ani-circle.dot-green {
  background-color: #458a40;
  offset-path: rect(0% auto 100% auto);
  animation: rotate3 30s linear infinite;
}

.ani-circle.dot-blue {
  background-color: #add5e9;
  offset-path: rect(0% auto 100% auto);
  animation: rotate4 35s linear infinite;
}

@keyframes rotate1 {
  0% {
    offset-distance: 0%;
  }

  100% {
    offset-distance: 100%;
  }
}

@keyframes rotate2 {
  0% {
    offset-distance: 0%;
  }

  100% {
    offset-distance: 100%;
  }
}

@keyframes rotate3 {
  0% {
    offset-distance: 0%;
  }

  100% {
    offset-distance: 100%;
  }
}

@keyframes rotate4 {
  0% {
    offset-distance: 0%;
  }

  100% {
    offset-distance: 100%;
  }
}

.inr-testitm .ani-circle.dot-orange {
  offset-path: circle(60px at 50% 50%);
  animation: rotate3 3.5s linear infinite;
}

.inr-testitm .ani-circle.dot-sky {
  offset-path: circle(60px at 50% 50%);
  animation: rotate3 4s linear infinite;
}

.inr-testitm .ani-circle.dot-green {
  offset-path: circle(60px at 50% 50%);
  animation: rotate3 4.5s linear infinite;
}

.inr-testitm .ani-circle.dot-blue {
  offset-path: circle(60px at 50% 50%);
  animation: rotate3 5s linear infinite;
}

.dot-wrap-animation {
  position: relative;
  z-index: 1;
  padding: 10px;
  border: 1px solid #9c1c4c;
  border-radius: 10px;
  height: 100%;
  pointer-events: none;
}

/* .ved-two-right-inr .dot-wrap-animation , */
.each-larning-space .dot-wrap-animation,
.each-jointeam-inr .dot-wrap-animation,
.wraper-hover-line .dot-wrap-animation,
.wrap-hover-box .dot-wrap-animation {
  position: absolute;
  height: auto;
  width: auto;
  top: -10px;
  bottom: -10px;
  left: -10px;
  right: -10px;
  opacity: 0;
  transition: 0.3s ease-in-out;
}

.each-larning-space:hover .dot-wrap-animation,
.each-jointeam-inr:hover .dot-wrap-animation,
.wraper-hover-line:hover .dot-wrap-animation,
.wrap-hover-box:hover .dot-wrap-animation {
  opacity: 1;
}

.inr-about-img .ani-circle.dot-orange {
  offset-path: none;
  animation: none;
}

.inr-about-img .ani-circle.dot-blue,
.inr-about-img .ani-circle.dot-sky {
  offset-path: none;
  animation: none;
}

.inr-about-img .ani-circle.dot-green {
  offset-path: none;
  animation: none;
}

.destroted-outer .ani-circle.dot-green,
.destroted-outer .ani-circle.dot-blue,
.destroted-outer .ani-circle.dot-sky,
.destroted-outer .ani-circle.dot-orange,
.leader-img-wqr .ani-circle.dot-green,
.leader-img-wqr .ani-circle.dot-blue,
.leader-img-wqr .ani-circle.dot-sky,
.leader-img-wqr .ani-circle.dot-orange,
.ved-two-right-inr .ani-circle.dot-green,
.ved-two-right-inr .ani-circle.dot-blue,
.ved-two-right-inr .ani-circle.dot-sky,
.ved-two-right-inr .ani-circle.dot-orange,
.destroted-outer .ani-circle.dot-green,
.destroted-outer .ani-circle.dot-blue,
.destroted-outer .ani-circle.dot-sky,
.destroted-outer .ani-circle.dot-orange {
  offset-path: none;
  animation: none;
}

.ved-two-right-inr>svg {
  position: absolute;
  top: -10px;
  left: -4px;
  right: 0;
  bottom: 0;
  height: 104%;
  width: 100%;
}

.destroted-outer>svg,
.leader-img-wqr>svg,
.destroted-outer>svg,
.inr-about-img>svg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
}

.jointeam-slider .slick-list,
.learning-slider .slick-list,
.gallery-top-slider .slick-list,
.strengths-slider .slick-list {
  padding: 10px 8px;
}

.abt-img {
  overflow: hidden;
  border-radius: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.abt-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.inr-about-img {
  padding: 12px;
  display: flex;
  max-width: 612px;
  align-items: center;
  border-radius: 300px;
  justify-content: center;
  /* border: 1px solid #9C1C4C; */
  position: relative;
  /* height: 750px; */
}

.ranbow-img {
  position: absolute;
  bottom: 94px;
  left: -64px;
  z-index: 1;
}

.list-conter {
  display: flex;
  /* align-items: center; */
  margin: 0px -10px;
  flex-wrap: wrap;
}

.list-conter li {
  padding: 0px 25px;
}

.list-conter li p {
  font-size: 20px;
  font-weight: 600;
  color: var(--black-color);
  margin-bottom: 0;
  line-height: 1.4;
}

.list-conter li span {
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 0;
  display: inline-block;
}

.counter-wrap {
  padding-top: 28px;
  margin-top: 30px;
  border-top: 1px solid #dfc9aa;
  margin-bottom: 30px;
}

.row-about {
  align-items: center;
}

.abt-dots {
  position: absolute;
  top: 4%;
  right: 12%;
  max-width: 137px;
}

.dark-red {
  color: #9c1c4c;
}

.green-dark {
  color: #438a40;
}

.sky-dark {
  color: #11abd8;
}

.star-yellow {
  max-width: 229px;
  margin-bottom: 16px;
}

.strengths-main-wrap .cmn-hdr-tag {
  max-width: 1074px;
  margin-bottom: 10px;
}

.strengths-main-wrap .cmn-hdr-tag p {
  max-width: 778px;
  margin: 0 auto;
}

.strengths-sec-main {
  padding: 80px 0 100px;
  position: relative;
  overflow: hidden;
}

.strengths-card {
  padding: 12px;
  border-radius: 10px;
  border: 1px solid transparent;
  transition: all 0.3s ease-in-out;
  position: relative;
  height: 100%;
}

.strengths-card:hover {
  border: 1px solid var(--card-border);
}

.strengths-card-inner {
  border-radius: 10px;
  padding: 30px 20px 50px 32px;
  display: flex;
  flex-direction: column;
  min-height: 327px;
  height: 100%;
  background-color: var(--card-bg);
}

.strengths-ico-wrp {
  max-width: 64px;
  position: relative;
  z-index: 1;
  margin-bottom: 20px;
}

.strengths-cont {
  margin-top: auto;
}

.strengths-circle {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -1;
  background-color: var(--circle-bg);
}

.strengths-card .ani-circle {
  opacity: 0;
}

.strengths-card:hover .ani-circle {
  opacity: 1;
}

.strengths-card:hover {
  background-color: var(--white-color);
}

.strengths-slider-btn {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  border: 1px solid #8e8e8e;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 25px;
  margin: 0 4px;
}

.strengths-slider-btn:hover {
  background-color: #add5e9;
}

.strengths-slider-btn img {
  width: 100%;
}

.strengths-slider-btn-wrp {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 18px;
}

.strengths-main-wrap {
  position: relative;
}

.strengths-shape-1 {
  position: absolute;
  top: 10%;
  left: -7%;
  z-index: -1;
  pointer-events: none;
  max-width: 94px;
}

.strengths-shape-2 {
  position: absolute;
  bottom: 7%;
  right: -11%;
  z-index: -1;
  pointer-events: none;
  max-width: 86px;
}

.line {
  position: absolute;
  top: 70px;
  left: 0;
  z-index: -1;
  pointer-events: none;
  width: 96%;
}

.gallery-top-slider-card-inn {
  position: relative;
  padding-top: 48%;
  border-radius: 10px;
  overflow: hidden;
}

.gal-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-top-slider-card {
  padding: 15px;
  border-radius: 10px;
  border: 1px solid #9c1c4c;
  position: relative;
}

.dot-blue {
  background-color: #add5e9;
}

.gallery-card {
  position: relative;
  padding-top: 66%;
  border-radius: 10px;
  overflow: hidden;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.gallery-btm-each-slider {
  padding: 0 10px;
}

.gallery-btm-slider .slick-list {
  margin: 0 -10px;
}

.gallery-top-slider-main {
  margin-bottom: 28px;
}

.gal-btn {
  background-color: var(--white-color);
  width: 65px;
  height: 65px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
}

.gal-btn:hover {
  background-color: #add5e9;
}

.gal-btn img {
  width: 12px;
}

.gal-btn-wrp {
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-btm-slider-main {
  position: relative;
}

.gal-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.gal-btn.gal-btn-left {
  left: -33px;
}

.gal-btn.gal-btn-rgt {
  right: -33px;
}

.video-ico {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #add5e9;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  box-shadow: 7px 6px 0px #272323;
}

.video-ico img {
  width: 32px;
}

.gallery-sec-main {
  position: relative;
  /* overflow: hidden; */
}

.gal-btm-shape {
  position: absolute;
  bottom: -31%;
  left: 0;
  width: 100%;
  z-index: -2;
}

.gal-btn-inn {
  margin-top: 65px;
  text-align: center;
}

.gal-shape-1 {
  position: absolute;
  top: 9%;
  left: -6%;
  z-index: -1;
  max-width: 172px;
  pointer-events: none;
}

.gallery-main-wrp {
  position: relative;
}

.gal-shape-2 {
  position: absolute;
  top: 17%;
  right: -13%;
  z-index: -1;
  pointer-events: none;
}

.gal-shape-3 {
  position: absolute;
  top: -18%;
  left: -5%;
  z-index: 2;
  pointer-events: none;
}

.sticky-logo {
  width: 102px;
  height: 102px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: var(--white-color);
  padding: 13px;
  margin: 14px 0;
}

.sticky-logo:hover {
  background-color: var(--orange-color);
}

.sticky-logo-wrp {
  position: fixed;
  right: 50px;
  width: auto;
  display: inline-block;
  bottom: 40px;
  z-index: 999;
}

.container.full {
  max-width: 1742px;
}

/* new css */
.inr-testitm h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--heading-color);
}

.inr-testitm .dot-wrap-animation {
  height: 122px;
  width: 122px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  margin: 0 auto 23px;
}

.wrap-testimg {
  height: 102px;
  width: 102px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  overflow: hidden;
}

.inr-testitm {
  text-align: center;
  padding: 30px;
  border-radius: 10px;
  background-color: var(--white-color);
  position: relative;
}

.inr-testitm:before {
  content: "";
  width: 100%;
  height: 100%;
  top: 10px;
  right: -10px;
  bottom: -10px;
  left: 10px;
  border-radius: 10px;
  background-color: #ffdbc6;
  opacity: 0;
  transition: 0.3s ease-in-out;
  position: absolute;
  z-index: -1;
}

.slider-test .slick-slide {
  padding: 0px 12px;
}

.slider-test .slick-list {
  margin: 0px -12px;
  padding: 36px 0 !important;
}

.slider-test .slick-center .inr-testitm:before {
  opacity: 1;
}

.row-video .inr-testitm {
  border-radius: 10px;
  transition: 0.3s ease-in-out;
}

.row-video .inr-testitm:hover {
  box-shadow: 0px 0px 50px rgba(182, 190, 205, 0.25);
}

.row-video .inr-testitm:hover:after {
  display: block;
}

.row-video .inr-testitm:after {
  content: "";
  transition: 0.3s ease-in-out;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  box-shadow: 10px 10px #ffdbc6;
  border-radius: 10px;
  display: none;
}

.slider-test .slick-center .inr-testitm {
  box-shadow: 0px 20px 50px rgba(182, 190, 205, 0.25);
}

.cmn-slider-btn.lft {
  margin-left: -100px;
}

.cmn-slider-btn.rgt {
  margin-right: -100px;
}

.cmn-slider-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 55px;
  width: 55px;
  background-color: #e3f5fd;
  border-radius: 100%;
  box-shadow: 0px 6px 0px 0px #b9e7fc;
  pointer-events: all;
}

.cmn-slider-btn:hover {
  background-color: #add5e9;
  box-shadow: 0px 6px 0px 0px #72aecc;
}

.btn-wrap-slider {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  z-index: 1;
  pointer-events: none;
  left: 0;
  right: 0;
}

.inrtestimorial {
  position: relative;
  z-index: 1;
}

.cmn-slider-btn img {
  max-width: 8px;
}

.wrap-testimg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rgt-flowers {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  max-width: 124px;
}

.testimorial-sec {
  position: relative;
  z-index: 1;
}

.inr-programpart {
  border-radius: 10px;
  padding: 7px;
  height: 100%;
  background-color: var(--white-color);
  display: flex;
  flex-direction: column;
}

.program-sec {
  background-color: #e5f0fa;
}

.program-img {
  position: relative;
  z-index: 1;
  padding-top: 62.92%;
  border-radius: 10px;
  overflow: hidden;
}

.program-img img {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: 0.3s ease-in-out;
}

.program-down h3 a {
  color: var(--heading-color);
  display: inline-block;
  line-height: 1.5;
}

.program-down h3 {
  font-size: 24px;
  margin-bottom: 7px;
}

.program-down h3 a:hover {
  color: var(--orange-color);
}

.program-img:hover img {
  transform: scale(1.1);
}

.program-down {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  padding-top: 20px;
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 20px;
}

.row-under {
  margin-bottom: -27px;
}

.row-news {
  align-items: center;
}

/* .wrap-hover-box .dot-wrap-animation{
 border: transparent;
 transition: 0.3s ease-in-out;
 height: 100%;
}
.wrap-hover-box .dot-wrap-animation .ani-circle{
   display: none;
     transition: 0.3s ease-in-out;
}
.wrap-hover-box:hover .dot-wrap-animation{
    border: 1px solid #9C1C4C;
}
.wrap-hover-box:hover .dot-wrap-animation .ani-circle{
display: block;
} */
.wrap-hover-box {
  height: 100%;
  position: relative;
}

.wrap-hover-box:hover:before {
  opacity: 1;
}

/* .wrap-hover-box:before {
    pointer-events: none;
    position: absolute;
    top: -10px;
    bottom: -10px;
    left: -10px;
    right: -10px;
    content: '';
    border: 1px solid #9C1C4C;
    opacity: 0;
    transition: 0.3s ease-in-out;
    border-radius: 10px;
} */

.read-more {
  margin-top: auto;
}

.plus-img {
  position: absolute;
  bottom: 14%;
  left: 11%;
  max-width: 60px;
}

.program-sec {
  position: relative;
  z-index: 1;
}

.col-program {
  margin-bottom: 24px;
}

.row-program {
  margin-bottom: -24px;
}

.gap-btn {
  padding-bottom: 80px;
  padding-top: 160px;
  position: relative;
}

.snake-img {
  position: absolute;
  bottom: -9%;
  left: 13%;
}

.prgtop-sh {
  width: 100%;
}

.greenflowers-img {
  position: absolute;
  top: 0px;
  right: 200px;
  max-width: 160px;
}

.program-shape-img {
  width: 100%;
}

.bgftr-full {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  z-index: -1;
  object-position: top center;
}

.btn-gap-cmn {
  padding-bottom: 350px;
  margin-bottom: -300px;
  /* background-color: red; */
}

.ftr-shape {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 10;
}

.gallery-main-wrp .cmn-hdr-tag {
  margin-bottom: 30px;
}

.header-btn .mb-rs-btn {
  display: none;
}

/* 13.10.25 */
.inner-banner-sec {
  position: relative;
}

.content-banner-inner {
  padding-top: 200px;
  padding-bottom: 30px;
}

.inner-banner-sec:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  pointer-events: none;
  background: linear-gradient(270deg,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, 0.3) 64.17%,
      rgba(0, 0, 0, 0.9) 100%);
}

.cmn-bnr-img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  z-index: -1;
  object-fit: cover;
}

.program-main-wrp {
  position: relative;
}

.learning-sec .cmn-hdr-tag {
  max-width: 742px;
}

.learning-sec {
  padding: 100px 0;
}

.vision-education-inr {
  max-width: 1232px;
}

.vision-education-inr .gallery-top-slider-card-inn {
  padding-top: 80%;
}

.row-vision-education {
  --bs-gutter-y: 40px;
  align-items: center;
}

.ved-right-wrp {
  width: 100%;
  height: 100%;
  padding-left: 10px;
}

.ved-right-wrp .cmn-hdr-tag {
  margin-bottom: 0;
}

.row-vision-education .ved-left-col {
  width: 53.5%;
}

.row-vision-education .ved-right-col {
  width: 46.5%;
}

.each-ved-two span {
  max-width: 82px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 15px;
}

.each-ved-two span img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.each-ved-two h3 {
  margin-bottom: 10px;
}

.each-vedtwo-para-wrp p {
  margin-bottom: 0;
}

.ved-two-left-inr>*:not(:last-child) {
  margin-bottom: 70px;
}

.ved-two-left-inr {
  max-width: 590px;
}

.ved-two-right-inr {
  max-width: 496px;
  margin-left: auto;
  position: relative;
  padding: 0 20px 0 2px;
}

.learning-that-sec .ved-two-right-inr img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ved-two {
  padding: 40px 0 110px 0;
  position: relative;
}

.last-section-color {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 80%;
  top: 0;
  transform: translateY(50%);
  background-color: #fef7f8;
  pointer-events: none;
}

.ved-two-inr {
  position: relative;
}

.ved-two-inr .strengths-shape-2 {
  bottom: 0;
  z-index: 1;
}

.mission-vission-backshape {
  position: absolute;
  top: -15%;
  left: 0;
  width: 100%;
  pointer-events: none;
}

.ved-two-right-inr>img {
  mask-image: url("images/egg-shape.png");
  mask-repeat: no-repeat;
  mask-size: auto 100%;
  mask-position: top left;
}

.egglips img {
  width: auto;
  height: auto;
  object-fit: contain;
}

.vision-education-sec {
  position: relative;
  z-index: 1;
}

.egglips {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: auto;
  height: calc(100% + 30px);
  max-width: none;
}

.destroted-inn {
  width: 100%;
  height: 100%;
}

.destroted-inn>img {
  mask-image: url("images/destroted-shape.png");
  mask-repeat: no-repeat;
  mask-size: auto 100%;
  mask-position: center;
}

.destroted-outer {
  position: relative;
  padding: 13px;
}

.destroted-outer span img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.destroted-outer span {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

.meet-leader-sec {
  padding: 28px 0 100px 0;
  background-color: #e5f0fa;
  position: relative;
}

.each-leaders {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.leader-shape {
  mask-image: url("images/leader-shape.png");
  mask-repeat: no-repeat;
  mask-size: 100%;
  mask-position: center;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.leader-img-wqr {
  padding: 13px 21px 5px 5px;
  position: relative;
  width: 100%;
}

/* .leader-img-wqr::before{
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    background-image: url("images/leader-line.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
} */

.leader-shape-wrp {
  position: absolute;
  right: 0;
  top: 36px;
  width: 79px;
  height: 74px;
  mask-image: url("images/leader-green-shaep.png");
  mask-repeat: no-repeat;
  mask-size: auto 100%;
  mask-position: center;
}

.leader-shape-wrp::before {
  content: "";
  position: absolute;
  top: 3px;
  right: 2px;
  background-image: url("images/leader-shape-line.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
  z-index: 1;
  width: calc(100% - 2px);
  height: calc(100% - 2px);
}

.row-leaders {
  --bs-gutter-x: 30px;
  --bs-gutter-y: 60px;
}

.leader-img-wqr {
  margin-bottom: 10px;
}

.leader-text-wrp h3 {
  margin-bottom: 5px;
}

.leader-text-wrp>span {
  color: var(--heading-color);
  margin-bottom: 10px;
  display: block;
}

.leader-text-wrp {
  padding: 0 12px;
}

.row-leaders>*:nth-child(4n + 1) .leader-shape-wrp {
  background-color: #89cc86;
}

.row-leaders>*:nth-child(4n + 2) .leader-shape-wrp {
  background-color: #e1e3f6;
}

.row-leaders>*:nth-child(4n + 3) .leader-shape-wrp {
  background-color: #ff5b45;
}

.row-leaders>*:nth-child(4n + 4) .leader-shape-wrp {
  background-color: #ffbe65;
}

.meet-leader-inr .strengths-shape-2 {
  bottom: inherit;
  /* right: 0; */
  top: 67px;
  z-index: 1;
}

.meet-leader-inr {
  position: relative;
}

.our-story-shape {
  position: absolute;
  bottom: -15%;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  /* pointer-events: none; */
}

.where-learning-shape {
  bottom: 0;
}

.our-story-sec {
  padding: 45px 0 90px 0;
}

.our-story-sec .vision-education-inr {
  position: relative;
}

.our-story-sec .destroted-inn>img {
  mask-image: url(images/ourstory-shape.png);
}

.our-story-sec .destroted-outer {
  padding: 12px 6px 0 25px;
}

.our-story-sec .destroted-inn {
  position: relative;
  z-index: 1;
}

.our-story-sec .cmn-hdr-tag p {
  margin-bottom: 20px;
}

.our-story-sec .cmn-hdr-tag>*:last-child {
  margin-bottom: 0;
}

.where-learning-sec {
  padding: 247px 0 70px 0;
  position: relative;
  z-index: 1;
  background-color: #fef6f8;
}

.wherelearning-head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  max-width: inherit;
}

.wherelearning-head h2 {
  margin-bottom: 0;
}

.wherelearning-head .wherelearning-para-wrp>*:not(:last-child) {
  margin-bottom: 10px;
}

.where-learning-sec .wherelearning-head-wrp {
  max-width: 482px;
}

.where-learning-sec .wherelearning-para-wrp {
  max-width: 622px;
  margin-left: 20px;
}

.where-learning-inr {
  position: relative;
}

.each-learnig-inr {
  border-radius: 15px;
  overflow: hidden;
}

.each-learnig-outer:hover::before {
  opacity: 1;
}

.each-learnig-inr img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.learning-slider .each-learning {
  padding: 12px;
}

.learning-slider .slick-list {
  margin: -12px;
}

.where-experience-sec .destroted-inn>img {
  mask-image: url(images/experience-shape.png);
  width: 100%;
}

.where-experience-sec .ved-left-col {
  width: 44.7%;
}

.where-experience-sec .ved-right-col {
  width: 55.3%;
}

.where-experience-sec .ved-right-wrp {
  max-width: 640px;
  margin-left: auto;
}

.experience-ul {
  margin-bottom: 0;
  padding-left: 0;
  list-style: none;
}

.experience-ul li {
  padding-left: 32px;
  position: relative;
  color: var(--heading-color);
  font-size: 20px;
  font-weight: 500;
  text-transform: capitalize;
}

.experience-ul li::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 0;
  background-image: url("images/experimental-tic.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
  width: 21px;
  height: 21px;
}

.experience-ul>*:not(:last-child) {
  margin-bottom: 15px;
}

.cmn-underline-part>*:not(:last-child) {
  padding-bottom: 30px;
  margin-bottom: 30px;
  border-bottom: 1px dashed #969696;
}

.where-experience-sec .vision-education-inr {
  max-width: inherit;
}

.cmn-underline-part p {
  max-width: 575px;
}

.rainbow-shape {
  position: absolute;
  bottom: 36px;
  left: -9px;
  max-width: 151px;
  z-index: 1;
  pointer-events: none;
}

.where-experience-sec .destroted-outer .strengths-shape-2 {
  bottom: auto;
  top: 0;
}

.learning-that-sec .egglips {
  display: none;
}

.learning-that-sec .ved-two-right-inr>img {
  mask-image: none;
  border-radius: 20px;
  position: relative;
}

.learning-that-sec .ved-two-right-outer {
  position: relative;
  margin-top: 40px;
}

.learning-that-sec .ved-two-right-inr {
  max-width: inherit;
}

.learning-that-sec .ved-two-right-outer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-color: #ead1db;
  border-radius: 20px;
  width: 100%;
  height: 100%;
  transform: rotate(-3deg);
}

.learning-that-sec .ved-two-right-inr {
  padding: 0;
  /* padding: 10px; */
  /* border: 1px solid #9C1C4C; */
  /* border-radius: 5px; */
}

.learning-that-sec .ved-two-left-inr>*:not(:last-child) {
  margin-bottom: 25px;
}

.learning-that-sec .each-ved-two {
  display: flex;
}

.learning-that-sec .each-ved-two span {
  margin-bottom: 0;
  flex: 0 0 auto;
  height: 76px;
  margin-right: 40px;
}

.learning-that-sec .ved-two-left-inr {
  max-width: inherit;
}

.learning-that-sec .ved-two-left-inr .cmn-hdr-tag {
  max-width: 590px;
}

.learning-that-sec {
  padding-top: 185px;
}

.learning-that-sec .last-section-color {
  transform: translateY(48%);
}

.learning-that-sec .mission-vission-backshape {
  top: -19%;
}

.cbsc-excelence {
  max-width: 630px;
}

.circulam-sec .ved-right-wrp {
  position: relative;
}

.circulam-sec .ved-right-wrp .strengths-shape-2 {
  bottom: -28%;
  right: -30%;
}

.cbscexcelence-sec {
  padding-top: 100px;
}

.cbscexcelence-sec .last-section-color {
  transform: translateY(47%);
}

.smart-classroom-sec .row-vision-education {
  /* align-items: flex-start; */
}

.smart-classroom-sec .cbsc-excelence {
  padding-top: 69px;
  margin-left: auto;
}

.cbsc-excelence .cmn-hdr-tag p {
  margin-bottom: 30px;
}

.smart-classroom-sec .ved-right-wrp .cmn-hdr-tag>*:last-child {
  margin-bottom: 0;
}

.cmn-underline-part .cmn-hdr-tag h2 {
  margin-bottom: 20px;
}

.key-heighlights-sec {
  padding-top: 220px;
}

.key-heighlights-sec .mission-vission-backshape {
  top: -35%;
}

.key-heighlights-sec .last-section-color {
  transform: translateY(26%);
}

.cmn-hdr-tag>*:last-child {
  margin-bottom: 0 !important;
}

.jointeam-sec {
  position: relative;
}

.strengths-cont .h5-title {
  text-transform: capitalize;
}

.content-banner-inner h1 {
  text-transform: capitalize;
  color: var(--white-color);
}

.content-banner-inner {
  position: relative;
}

.vision-education-inr {
  position: relative;
}

.about-shape-1 {
  position: absolute;
  top: -10px;
  right: -20px;
  max-width: 60px;
  pointer-events: none;
  z-index: -1;
}

.ved-right-wrp {
  position: relative;
}

.about-shape-2 {
  position: absolute;
  bottom: -3%;
  right: -4%;
  max-width: 23px;
}

.last-section-color .mission-vission-backshape {
  top: 2px;
  transform: translateY(-100%);
  width: 100%;
  max-height: 580px;
  object-position: top;
}

.story-shape-1 {
  position: absolute;
  top: 10%;
  right: -19%;
  max-width: 60px;
  z-index: -1;
}

.ved-two.learning-that-sec.key-heighlights-sec .last-section-color {
  background: #fef6f8;
}

.growth-shape-1 {
  position: absolute;
  bottom: 5%;
  right: -4%;
  max-width: 28px;
  pointer-events: none;
}

.smart-classroom-sec .cbsc-excelence {
  /* padding-right: 110px; */
  /* max-width: 660px; */
}

.vision-shape-1 {
  position: absolute;
  bottom: -13%;
  left: -10%;
  max-width: 24px;
}

.bnr-btm-sec {
  padding-top: 30px;
}

.destroted-inn>img {
  width: 100%;
}

.wraper-hover-line {
  position: relative;
}

/* .wraper-hover-line::before{
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: calc(100% + 10px);
    height: calc(100% + 10px);
    border: 1px solid #9C1C4C;
    border-radius: 5px;
    opacity: 0;
    transition: 0.3s all;
} */

/* .wraper-hover-line:hover::before{
    opacity: 1;
} */

.learning-slider-outer {
  position: relative;
}

.learning-left,
.learning-right,
.jointeam-left,
.jointeam-right {
  background-color: #e3f5fd;
}

.learning-left:hover,
.learning-right:hover,
.jointeam-left:hover,
.jointeam-right:hover {
  background-color: #add5e9;
}

.strengths-shape-repeat {
  bottom: inherit;
  top: 67px;
  z-index: 1;
  right: 5%;
}

.our-story-sec .destroted-inn>img {
  width: 100%;
}

.row-vision-education .ved-left-col {
  width: 50.6%;
}

.row-vision-education .ved-right-col {
  width: 49.4%;
}

.jointeam-sec {
  position: relative;
}

.join-ourteam-sec .last-section-color {
  background-color: #ffece1;
  transform: translateY(2%);
  bottom: 0;
  top: auto;
  height: 74%;
}

.jointeam-inr {
  position: relative;
  padding-top: 20px;
}

.jointeam-inr .cmn-hdr-tag {
  max-width: 670px;
  margin-bottom: 40px;
}

.each-jointeam-inr-wrp {
  position: relative;
  padding: 0 5px 5px 0;
  height: 100%;
}

.each-jointeam-inr {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  background-color: #ffe5d1;
  border-radius: 10px;
  padding: 34px 21px 38px 32px;
  position: relative;
}

.each-jointeam-inr-wrp::before {
  content: "";
  position: absolute;
  bottom: 0px;
  right: 0px;
  width: 100%;
  height: 100%;
  background-color: #e5be9f;
  z-index: -1;
  border-radius: 10px;
}

.each-jointeam-inr-wrp {
  position: relative;
}

.jointeam-icon {
  position: relative;
  width: 50px;
  height: 50px;
  flex: 0 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.jointeam-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  position: relative;
}

.each-jointeam-inr .dot-wrap-animation {}

.jointeam-icon::before {
  content: "";
  position: absolute;
  top: -15px;
  right: -10px;
  width: 47px;
  height: 47px;
  border-radius: 50%;
  background-color: #fff1e7;
}

.join-ourteam-sec {
  position: relative;
  padding: 260px 0 85px 0;
}

.jointeam-slider-wrp {
  position: relative;
}

.jointeam-icon {
  margin-bottom: 20px;
}

.jointeam-btn-wrp {
  display: flex;
  flex-wrap: wrap;
  margin-top: auto;
}

.jointeam-btn-wrp>*:not(:last-child) {
  margin-right: 10px;
}

.jointeam-btn-wrp .read-more {
  color: #252523;
}

.jointeam-btn-wrp .read-more img {
  transform: 0.3s rotateX("angle");
}

.jointeam-btn-wrp .read-more:hover {
  color: var(--orange-color);
}

.jointeam-btn-wrp .read-more:hover img {
  filter: brightness(0) saturate(100%) invert(49%) sepia(65%) saturate(1844%) hue-rotate(345deg) brightness(98%) contrast(95%);
}

.jointeam-slider .slick-list {
  margin: -13px;
}

.jointeam-slider .slick-track {
  display: flex;
}

.jointeam-slider .each-jointeam {
  padding: 13px;
  height: inherit;
}

/* 
.each-jointeam-inr::after{
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 1px solid #9C1C4C;
    border-radius: 5px;
    width: calc(100% + 20px);
    height: calc(100% + 20px);
    transition: 0.3s all;
    opacity: 0;
    pointer-events: none;
} */

/* .each-jointeam-inr:hover::after{
    opacity: 1;
} */

.join-ourteam-sec .strengths-shape-2 {
  bottom: auto;
  right: auto;
  top: 0;
  left: 10%;
  z-index: 1;
}

.each-jointeam-inr h3 {
  margin-bottom: 15px;
}

.jointeam-para-wrp {
  margin-bottom: 10px;
}

.jointeam-para-wrp>*:not(:last-child) {
  margin-bottom: 5px;
}

/* remove after merge */
.last-section-color .mission-vission-backshape {
  transform: translateY(-100%);
}

/* remove afrer merge */

.learning-sec {
  position: relative;
}

.learning-sec-inr {
  position: relative;
}

.learning-sec-inr .cmn-hdr-tag {
  max-width: 930px;
  margin-bottom: 40px;
}

.learning-sec-inr .cmn-hdr-tag p {
  max-width: 780px;
  margin: 0 auto;
}

.row-larning-spaces {
  --bs-gutter-y: 24px;
}

.each-larning-space {
  width: 100%;
  height: 100%;
  position: relative;
  /* border: 1px solid #9C1C4C;
    padding: 8px;
    border-radius: 5px; */
  transition: 0.3s all;
  border-radius: 10px;
  /* overflow: hidden; */
}

/* .each-larning-space::before{
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: calc(100% + 8px);
    height: calc(100% + 8px);
    border-radius: 5px;
    border: 1px solid #9C1C4C;
    opacity: 0;
} */

.larningspace-ing {
  border-radius: 10px;
  width: 100%;
  overflow: hidden;
}

.larningspace-ing img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.larningspace-text {
  transition: 0.3s all;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  margin: 0 auto;
  padding: 32px 39px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(360deg,
      rgba(0, 0, 0, 0.6) 0%,
      rgba(0, 0, 0, 0) 100%);
  transition: 0.3s all;
  opacity: 0;
  border-radius: 10px;
}

.larningspace-text>* {
  color: var(--white-color);
}

.each-larning-space:hover .larningspace-text {
  opacity: 1;
}

.each-larning-space:hover::before {
  opacity: 1;
}

.larningspace-btn-wrp {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 30px;
}

.larningspace-btn-wrp>*:not(:last-child) {
  margin-right: 10px;
}

.learning-sec-inr .abt-dots {
  right: -4%;
  top: 18%;
  z-index: -1;
}

.learning-sec-inr .plus-img {
  left: auto;
  right: -10%;
  bottom: 17%;
}

.learning-sec-inr .snake-img {
  left: -10%;
  z-index: 11;
  bottom: -25%;
}

.ved-three {
  position: absolute;
  top: -10px;
  right: 39%;
  max-width: 39px;
}

.meet-leader-inr .cmn-hdr-tag {
  margin-bottom: 30px;
}

.where-learning-inr .cmn-hdr-tag {
  margin-bottom: 40px;
}

.full-width {
  width: 100%;
}

.snake-img.lft-small {
  left: 8%;
  bottom: -30%;
}

.video-sec {
  position: relative;
  padding-top: 20px;
  padding-bottom: 100px;
}

.video-sec .blue-shape {
  bottom: 8%;
}

.col-video {
  margin-bottom: 40px;
}

.wrap-lowers {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
}

/* News & Events start */

.events-sec {
  position: relative;
}

.events-sec .last-section-color {
  background-color: #fef7f8;
  height: 60%;
  transform: translateY(120%);
}

.events-sec .last-section-color .mission-vission-backshape {
  transform: translateY(-80%);
}

.news-cmn-gap {
  padding: 60px 0 100px;
}

.events-main-wrp {
  position: relative;
}

.sortby-drop select {
  border: 1px solid #56433f;
  border-radius: 4px;
  height: 44px;
  color: var(--body-color);
  background-image: url(images/drop-arr.svg);
  background-size: 10px;
  font-weight: 500;
  cursor: pointer;
  padding: 0 56px 0 20px;
}

.events-main-wrp .wrap-news {
  align-items: flex-end;
}

.events-main-wrp .inr-programpart {
  box-shadow: 0px 20px 50px rgba(0, 0, 0, 0.15);
  border-radius: 10px;
}

.events-main-wrp .program-down h3 {
  font-size: 20px;
  margin-bottom: 15px;
}

.events-main-wrp .program-down {
  padding-left: 22px;
}

.cmn-btn.trans {
  background-color: transparent;
  border: 1px solid var(--brown-color);
  color: var(--brown-color);
  min-width: 173px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.cmn-btn.trans:hover {
  color: var(--white-color);
}

.event-btn {
  text-align: center;
  margin-top: 30px;
}

.events-shape-1 {
  position: absolute;
  top: 3%;
  left: -10%;
  max-width: 58px;
  z-index: 1;
}

.events-shape-2 {
  position: absolute;
  top: 19%;
  right: -10%;
  max-width: 30px;
  z-index: 1;
}

.inner-banner-sec {
  min-height: 650px;
  display: flex;
  flex-direction: column;
}

.achievements-main-wrp {
  position: relative;
}

.achievements-main-wrp .cmn-hdr-tag {
  margin-bottom: 30px;
}

.achievements-cont h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 10px;
  transition: all 0.3s ease-in-out;
}

.achievements-card {
  height: 100%;
  background: var(--white-color);
  box-shadow: 0px 20px 50px rgba(0, 0, 0, 0.15);
  border-radius: 10px;
  text-align: center;
  padding: 30px 16px;
  transition: all 0.3s ease-in-out;
}

.achievements-prize {
  margin-bottom: 30px;
}

.achievements-cont {
  font-weight: 500;
  transition: all 0.3s ease-in-out;
}

.achievements-card-outer {
  padding: 10px;
  border: 1px solid transparent;
  border-radius: 10px;
  position: relative;
  transition: all 0.3s ease-in-out;
  height: 100%;
}

.achievements-card-outer:hover {
  border-color: #9c1c4c;
}

.achievements-card-outer .ani-circle {
  opacity: 0;
}

.achievements-card-outer:hover .ani-circle {
  opacity: 1;
}

.achievements-card-outer:hover .achievements-card {
  background-color: #9c1c4c;
}

.achievements-card-outer:hover .achievements-card .achievements-cont,
.achievements-card-outer:hover .achievements-card .achievements-cont h3 {
  color: var(--white-color);
}

.achievements-row {
  --bs-gutter-x: 4px;
  --bs-gutter-y: 4px;
}

.achievements-sec .last-section-color {
  background-color: #fef7f8;
  height: 50%;
  transform: translateY(130%);
}

.achievements-sec {
  position: relative;
}

.content-banner-inner h1 {
  text-transform: capitalize;
}

.experience-sec {
  position: relative;
}

.experience-main-wrp {
  position: relative;
}

.experience-main-wrp .cmn-hdr-tag {
  max-width: 1024px;
  margin-bottom: 30px;
}

.experience-main-wrp .cmn-hdr-tag p {
  margin: 0 auto;
  max-width: 790px;
}

.enlightenment-card {
  padding: 10px;
  border: 1px solid transparent;
  border-radius: 10px;
  position: relative;
  transition: all 0.3s ease-in-out;
  z-index: 2;
}

.enlightenment-card:hover {
  border-color: #9c1c4c;
}

.enlightenment-card:hover .ani-circle {
  opacity: 1;
}

.enlightenment-card .ani-circle {
  opacity: 0;
}

.enlightenment-card-inn {
  position: relative;
  padding-top: 82%;
  border-radius: 10px;
  overflow: hidden;
}

.enlightenment-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-ico.enlightenment-video-ico {
  width: 60px;
  height: 60px;
  box-shadow: 4px 4px 0px #79ab77;
  background-color: #b4d7b3;
  z-index: 2;
}

.video-ico.enlightenment-video-ico img {
  width: 17px;
}

.enlightenment-card-inn::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(40, 39, 39, 0) 47.43%, #282727 100%);
  z-index: 1;
}

.enlightenment-cont h3 {
  font-weight: 700;
  font-size: 20px;
  color: var(--white-color);
  margin-bottom: 10px;
}

.enlightenment-cont {
  font-size: 17px;
  color: var(--white-color);
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  text-align: center;
  z-index: 2;
  padding: 18px;
}

.enlightenment-row {
  --bs-gutter-x: 4px;
  --bs-gutter-y: 4px;
}

.experience-sec .last-section-color {
  height: 90%;
  transform: translateY(70%);
  bottom: 0;
}

.experience-sec .last-section-color .mission-vission-backshape {
  max-height: 500px;
}

.enlightenment-shape-1 {
  position: absolute;
  top: 14%;
  right: -5%;
}

.enlightenment-shape-2 {
  position: absolute;
  bottom: -10%;
  left: -14%;
  z-index: 1;
}

.photo-sec {
  position: relative;
}

.photo-main-wrp {
  position: relative;
}

.photo-main-wrp .cmn-hdr-tag {
  margin-bottom: 30px;
}

.photo-card {
  padding: 10px;
  border: 1px solid transparent;
  border-radius: 10px;
  position: relative;
  transition: all 0.3s ease-in-out;
  z-index: 2;
}

.photo-card:hover {
  border-color: #9c1c4c;
}

.photo-card:hover .ani-circle {
  opacity: 1;
}

.photo-card .ani-circle {
  opacity: 0;
}

.photo-card-inn {
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
}

.photo-card-inn img {
  width: 100%;
  height: 100%;
}

.photo-row {
  --bs-gutter-x: 4px;
  --bs-gutter-y: 4px;
}

.photo-shape-01 {
  position: absolute;
  top: 20%;
  right: -7%;
  max-width: 26px;
}

.photo-shape-02 {
  position: absolute;
  bottom: 11%;
  left: -8%;
  max-width: 60px;
}

.photo-sec .last-section-color .mission-vission-backshape {
  max-height: 290px;
}

.photo-sec .last-section-color {
  height: 60%;
  transform: translateY(100%);
}

/* News & Events end */

.vision-shape-2 {
  position: absolute;
  bottom: 6%;
  left: 0%;
  z-index: 1;
}

.enquiry-sec {
  position: relative;
}

.enquiry-main-wrp {
  position: relative;
}

.enquiry-main-wrp .cmn-hdr-tag {
  margin-bottom: 50px;
}

.form-field label {
  font-weight: 700;
  color: var(--heading-color);
  font-size: 20px;
  display: block;
  margin-bottom: 12px;
  line-height: 1.1;
  text-transform: capitalize;
}

.sbt-btn {
  margin-top: 24px;
  text-align: center;
}

.form-row {
  --bs-gutter-x: 24px;
  --bs-gutter-y: 24px;
}

.enquiry-sec .last-section-color {
  height: 40%;
  bottom: 0;
  top: auto;
}

.enquiry-shape-1 {
  position: absolute;
  top: 30%;
  right: -10%;
  max-width: 26px;
}

.enquiry-shape-2 {
  position: absolute;
  top: 6%;
  left: -8%;
  max-width: 58px;
}

input[type="date"] {
  text-transform: uppercase;
}

.input-file {
  position: relative;
  width: 100%;
  background-color: var(--white-color);
  height: 200px;
  border: 1px solid var(--body-color);
  border-radius: 10px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-direction: column;
  cursor: pointer;
}

.input-file input {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  cursor: pointer;
  opacity: 0;
}

.upload-wrap p {
  margin-bottom: 8px;
  line-height: 1;
}

.upload-wrap span {
  display: block;
  line-height: 1;
  margin-bottom: 16px;
}

.upload-wrap {
  text-align: center;
  font-weight: 500;
  padding: 30px 15px;
}

.input-file:hover .cmn-btn::before {
  width: 100%;
}

.input-file:hover .cmn-btn {
  color: var(--white-color);
}

.jointeam-left {
  margin-left: -100px;
}

.jointeam-right {
  margin-right: -100px;
}

.news-ourteam-sec {
  position: relative;
}

.news-inr {
  position: relative;
}

.news-ourteam-sec .last-section-color {
  background-color: #e5f0fa;
}

.news-inr .cmn-hdr-tag {
  max-width: 744px;
  margin-bottom: 30px;
}

.news-filter-lnk {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 20px;
  color: var(--heading-color);
  opacity: 0.3;
}

.news-col-left-wrp {
  padding: 27px 20px 47px;
  background: var(--white-color);
  box-shadow: 0px 0px 50px rgba(182, 190, 205, 0.25);
  border-radius: 10px;
}

.news-col-left-wrp h3 {
  font-size: 20px;
}

.news-filter-list li {
  line-height: 1;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px dashed #daeaf7;
}

.news-filter-list li:last-child {
  margin: 0;
}

.news-filter-lnk:hover,
.news-filter-lnk.active {
  opacity: 1;
}

.news-col-left-wrp-outer {
  position: relative;
  padding: 0 6px 6px 0;
  z-index: 1;
}

.news-col-left-wrp-outer::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  border-radius: 10px;
  background-color: #ffdbc6;
  width: 99%;
  height: 99%;
  z-index: -1;
}

.news-row {
  --bs-gutter-x: 36px;
}

.news-inn-col .inr-programpart {
  padding: 0 0 20px 0;
}

.news-inn-col .program-img {
  border-radius: 10px 10px 0 0;
}

.news-inn-row {
  --bs-gutter-x: 24px;
  --bs-gutter-y: 24px;
}

.news-inn-col .program-down h3 a {
  font-size: 20px;
}

.news-inn-col .program-img {
  padding-top: 87.12%;
}

.news-inn-col .program-down {
  padding-right: 13px;
}

.news-ourteam-sec.bnr-btm-sec {
  padding-bottom: 100px;
}

.pagination-wrp {
  margin-top: 40px;
  text-align: center;
}

.pagination-wrp .pagination {
  justify-content: center;
  align-items: center;
}

.page-link {
  width: 40px;
  height: 40px;
  border: 1px solid var(--brown-color);
  border-radius: 5px;
  background-color: transparent;
  color: var(--brown-color);
  font-size: 18px;
  font-weight: 600;
  padding: 5px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-link:hover,
.page-item.current .page-link {
  background-color: var(--brown-color);
  color: var(--white-color);
}

.page-item {
  padding: 0 10px;
}

.news-ourteam-sec .last-section-color {
  bottom: 0;
  height: 17%;
  transform: none;
  top: auto;
}

.news-ourteam-sec .last-section-color .mission-vission-backshape {
  max-height: 880px;
}

.news-shape-01 {
  position: absolute;
  top: 30%;
  right: -7%;
  max-width: 26px;
}

.news-shape-02 {
  position: absolute;
  bottom: 34%;
  left: 0%;
  max-width: 100px;
}

.news-shape-03 {
  position: absolute;
  bottom: 4%;
  left: 0%;
  max-width: 100px;
}

.news-ourteam-sec .dot-shape-ftr {
  bottom: -4%;
}

.news-filter-lnk span {
  padding-left: 12px;
}

.tour-sec {
  position: relative;
  padding: 70px 0 100px;
}

.tour-sec-inr {
  position: relative;
}

.cmn-hdr-tag {
  max-width: 1144px;
  margin-bottom: 25px;
}

.tour-col .enlightenment-card-inn::before {
  display: none;
}

.tour-col .enlightenment-card-inn {
  padding-top: 112%;
}

.tour-sec-inr .gal-shape-1 {
  top: 20%;
  left: -4%;
}

.tour-sec-inr .abt-dots {
  position: absolute;
  top: 32%;
  right: -3%;
  max-width: 137px;
}

.tour-row {
  --bs-gutter-x: 4px;
  --bs-gutter-y: 4px;
  justify-content: center;
}

.cmn-sub-head {
  font-size: 20px;
  color: var(--black-color);
  font-weight: 700;
  margin-bottom: 16px;
}

.upload-wrap .cmn-btn.trans {
  pointer-events: none;
}

.ved-two-right-outer .full-width {
  border-radius: 20px;
}

.building-row .cbsc-excelence {
  max-width: 650px;
}

.building-row .cmn-hdr-tag {
  max-width: 630px;
  padding-bottom: 20px;
  margin-bottom: 20px;
}

.building-row .ved-two-col-left {
  width: 52%;
}

.building-row .ved-two-col-right {
  width: 48%;
}

.ved-two.learning-that-sec.key-heighlights-sec.building-sec {
  background-color: #e5f0fa;
  padding: 0;
}

.building-shape-01 {
  width: 100%;
  max-height: 530px;
}

.ved-two-inr.buiding-inr {
  margin-top: -70px;
  padding-bottom: 100px;
  position: relative;
}

.building-row .experience-ul>*:not(:last-child) {
  margin-bottom: 10px;
}

.building-shape-02 {
  width: 100%;
  max-height: 530px;
}

.building-row .cmn-underline-part .cmn-hdr-tag h2 {
  margin-bottom: 10px;
}

.building-shape-1 {
  position: absolute;
  top: -13%;
  left: -16%;
  max-width: 120px;
}

.building-shape-2 {
  position: absolute;
  bottom: -5%;
  right: -7%;
  max-width: 60px;
}

.row-ved-two.futures-row .ved-two-right-inr {
  margin-left: 0;
}

.row-ved-two.futures-row .ved-two-col-right {
  width: 47%;
}

.row-ved-two.futures-row .ved-two-col-left {
  width: 53%;
}

.row-ved-two.futures-row .cbsc-excelence {
  max-width: 700px;
}

.row-ved-two.futures-row .cmn-hdr-tag {
  max-width: 620px;
  padding-bottom: 20px;
  margin-bottom: 20px;
}

.row-ved-two.futures-row .experience-ul>*:not(:last-child) {
  margin-bottom: 10px;
}

.ved-two.futures-sec {
  margin-top: -110px;
}

.row-vision-education.guidelines-row .ved-left-col {
  width: 48.6%;
}

.row-vision-education.guidelines-row .ved-right-col {
  width: 51.4%;
}

.ved-two.learning-that-sec.key-heighlights-sec.mitigation-sec .last-section-color {
  top: auto;
  bottom: 0;
}

.mitigation-shape {
  position: absolute;
  top: -70%;
  right: -10%;
  max-width: 28px;
}

.row-vision-education.overview-row .ved-right-wrp {
  padding-left: 25px;
}

.row-vision-education.overview-row .cmn-hdr-tag p {
  margin-bottom: 18px;
}

.vision-education-sec.circulam-sec.overview-sec .snake-img.lft-small {
  left: auto;
  bottom: -37%;
  right: 11%;
}

.curriculum-main-wrp {
  position: relative;
}

.curriculum-main-wrp .cmn-hdr-tag p {
  max-width: 895px;
  margin: 0 auto;
}

.curriculum-main-wrp .cmn-hdr-tag {
  margin-bottom: 30px;
}

.curriculum-col .strengths-card-inner {
  padding: 30px;
}

.curriculum-row {
  --bs-gutter-x: 4px;
  --bs-gutter-y: 4px;
}

.strengths-card-inner-wrp {
  position: relative;
  z-index: 1;
  padding: 0 5px 5px 0;
  height: 100%;
}

.strengths-card-inner-wrp::before {
  content: "";
  width: 97%;
  height: 97%;
  bottom: 0;
  right: 0;
  position: absolute;
  background-color: transparent;
  border-radius: 10px;
  z-index: -1;
  transition: all 0.3s ease-in-out;
}

.strengths-card:hover .strengths-card-inner-wrp::before {
  background-color: var(--card-bg-hover);
}

.curriculum-col .strengths-card {
  padding: 9px;
}

.curriculum-col .strengths-card:hover {
  border: 1px solid #9c1c4c;
}

.curriculum-shape {
  position: absolute;
  top: 25%;
  left: -8%;
  max-width: 32px;
}

.primary-row .cmn-underline-part .cmn-hdr-tag h2 {
  margin-bottom: 15px;
}

.cmn-hdr-tag strong {
  color: var(--black-color);
  font-size: 20px;
  margin-bottom: 12px;
  display: block;
}

.primary-row .cmn-underline-part>*:not(:last-child) {
  padding-bottom: 20px;
  margin-bottom: 20px;
}

.primary-row .experience-ul>*:not(:last-child) {
  margin-bottom: 10px;
}

.vision-education-sec.where-experience-sec.bnr-btm-sec.foundation-sec.primary-sec {
  padding-bottom: 70px;
}

.ved-two.learning-that-sec.key-heighlights-sec.building-sec.middle-sec .ved-two-inr.buiding-inr {
  margin-top: -60px;
  padding-bottom: 20px;
}

.ved-two.futures-sec.secondary-sec {
  margin-top: -30px;
}

.row-vision-education.overview-row.environment-row .ved-right-wrp {
  padding-left: 7px;
}

.row-vision-education.overview-row.environment-row .ved-left-col {
  width: 47%;
}

.row-vision-education.overview-row.environment-row .ved-right-col {
  width: 53%;
}

.row-vision-education.overview-row.environment-row .cmn-hdr-tag p {
  max-width: 563px;
}

.objective-sec {
  padding: 110px 0 200px;
}

.vision-education-sec.where-experience-sec.bnr-btm-sec.foundation-sec.impact-sec .last-section-color {
  background-color: #e5f0fa;
  transform: translateY(20%);
  height: 100%;
}

.objective-main-wrp {
  position: relative;
  z-index: 2;
}

.vision-education-sec.where-experience-sec.bnr-btm-sec.foundation-sec.impact-sec {
  padding-bottom: 100px;
  z-index: inherit;
}

.impact-wrp {
  display: flex;
  align-items: center;
  font-size: 20px;
  font-weight: 700;
  color: var(--heading-color);
  text-transform: capitalize;
}

.impact-wrp span {
  margin-right: 32px;
}

.impact-list li {
  margin-bottom: 25px;
}

.row.row-vision-education.impact-row .ved-right-col {
  width: 54%;
}

.row.row-vision-education.impact-row .ved-left-col {
  width: 46%;
}

.impact-shape-01 {
  position: absolute;
  top: -4%;
  left: -17%;
  max-width: 130px;
}

.impact-shape-2 {
  position: absolute;
  top: 15%;
  right: -13%;
  max-width: 52px;
}

.vision-education-sec.circulam-sec.overview-sec.programs-sec {
  padding-top: 60px;
}

.vision-education-sec.where-experience-sec.bnr-btm-sec.foundation-sec.impact-sec .last-section-color .mission-vission-backshape {
  width: 100%;
  max-height: 880px;
}

.row-vision-education.impact-row .ved-two-left-inr {
  max-width: 570px;
}

.vision-education-sec.where-experience-sec.bnr-btm-sec.foundation-sec.impact-sec.assessment-sec .impact-shape-01 {
  top: 2%;
  left: -14%;
  max-width: 50px;
}

.vision-education-sec.where-experience-sec.bnr-btm-sec.foundation-sec.impact-sec.assessment-sec .impact-shape-2 {
  top: 1%;
  right: -13%;
  max-width: 122px;
}

.feedback-shape {
  position: absolute;
  top: 15%;
  left: -11%;
  max-width: 67px;
  z-index: -1;
}

.row-vision-education.impact-row.assessment-row .foundation-wrp {
  max-width: 490px;
}

.guide-shape {
  position: absolute;
  bottom: -50%;
  left: -10%;
  max-width: 28px;
}

.objective-sec.download-sec {
  padding: 110px 0 100px;
}

.vision-education-sec.where-experience-sec.bnr-btm-sec.foundation-sec.impact-sec.inside-sec .vision-education-inr {
  margin-top: -110px;
}

.vision-education-sec.where-experience-sec.bnr-btm-sec.foundation-sec.impact-sec.inside-sec .impact-shape-2 {
  max-width: 150px;
  top: 9%;
}

.pdf-download-sec {
  position: relative;
}

.pdf-download-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.pdf-download-col-rgt .cmn-btn {
  padding: 15px 24px;
  min-width: 200px;
}

.pdf-download-col-rgt .cmn-btn span {
  margin: 0 12px 0 0;
}

.pdf-download-col-left {
  width: 68%;
}

.pdf-download-col-rgt {
  width: 32%;
  text-align: end;
}

.pdf-download-col-left .cmn-hdr-tag {
  margin-bottom: 0;
}

.pdf-download-main-wrp {
  padding: 58px 58px 58px 74px;
  background-color: #ffe9de;
  border-radius: 20px;
  box-shadow: 7px 6px 0px #ecccbc;
}

/* 15.10.25 start */
.strengths-slider .slick-slide {
  height: auto;
}

.strengths-slider .slick-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.strengths-card {
  height: 100%;
}

.strengths-cont {
  margin-top: 20px;
}

/* .mask-part .abt-img {
  border-radius: 0;
  mask-image: url("images/abt-mask.png");
  mask-repeat: no-repeat;
  mask-size: auto 100%;
  mask-position: center;
} */

.ftr-one {
  width: 33%;
}

/* .ftr-three {
  width: 30%;
} */
.prgtop-sh {
  margin-top: -3px;
}

.inr-ftr {
  max-width: 371px;
}

/* 15.10.25 end */

/* 17.10.25 start */
.bnr-shape-mb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 10px;
  display: none;
}

/* 17.10.25 end */
/* 27.10.25 */
span.gfield_required.gfield_required_text {
  padding-left: 10px;
  font-weight: 500;
}

.error404 .page-content .search-form input[type=search],
.enquiry-main-wrp .gform-theme-field-control.gform_drop_area,
.enquiry-main-wrp .gform-theme--foundation .gfield .ginput_password,
.enquiry-main-wrp .gform-theme--foundation .gfield textarea,
.enquiry-main-wrp .gform-theme--foundation .gfield input,
.enquiry-main-wrp .gform-theme--foundation .gfield select,
.enquiry-main-wrp .gform-theme--framework .gfield--input-type-datepicker .ginput_container_date input {
  width: 100%;
  appearance: none;
  border-radius: 100px;
  color: var(--body-color);
  border: 1px solid var(--body-color);
  height: 60px;
  outline: none;
  font-weight: 500;
  background-color: var(--white-color);
  padding: 11px 27px;
  font-size: 16px;
  resize: none;
  background-size: 18px;
  background-position: right 24px center;
}

.enquiry-main-wrp .gform-theme-field-control.gform_drop_area,
.enquiry-main-wrp .gform-theme--foundation .gfield textarea {
  height: 203px;
  padding: 22px 27px;
  border-radius: 10px;
}

.enquiry-main-wrp .gform_button_select_files {
  background-color: transparent;
  border: 1px solid var(--brown-color);
  color: var(--brown-color);
  min-width: 173px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.enquiry-main-wrp .gform_drop_instructions {
  margin-bottom: 8px;
}

.enquiry-main-wrp .gform-theme.gform-theme--framework.gform_wrapper .gform-footer.gform_footer {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.enquiry-main-wrp .gform-theme.gform-theme--framework.gform_wrapper .gform-footer.gform_footer input[type="submit"].gform_button {
  background: #56433f;
  color: var(--white-color);
  height: 55px;
  border: none;
  -webkit-appearance: none;
  appearance: none;
  border-radius: 60px;
  padding-left: 30px;
  padding-right: 30px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  outline: none !important;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  min-width: 170px;
  border: 1px solid #56433f;
}

.enquiry-main-wrp .gform-theme.gform-theme--framework.gform_wrapper .gform-footer.gform_footer input[type="submit"].gform_button:hover {
  background: transparent;
  color: #56433f;
}

.enquiry-main-wrp .gform_wrapper label {
  font-weight: 700;
  color: var(--heading-color);
  font-size: 20px;
  display: block;
  margin-bottom: 12px;
  line-height: 1.1;
  text-transform: capitalize;
}

.enquiry-main-wrp .ginput_container.ginput_container_fileupload .gform_drop_area.gform-theme-field-control .gform_button_select_files {
  background-color: transparent;
  border: 1px solid var(--brown-color);
  color: var(--brown-color);
  min-width: 173px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  padding: 21px 23px;
  border-radius: 60px;
}

/* 27.10.25 */

/* 29-oct-2025  */
.about-us-sec .abt-img img {
  height: auto;
  aspect-ratio: 585 / 772;
}

.vision-education-sec .destroted-inn>img {
  aspect-ratio: 223/ 215;
}

.ved-two-inr .ved-two-right-inr>img {
  aspect-ratio: 43/ 56;
  object-fit: cover;
}

.sample-sec,
.error-404.not-found {
  padding: 100px 0;
}

.sample-sec .entry-title,
.not-found .page-title {
  font-size: 60px;
  text-align: center;
}

.not-found .page-content>p {
  text-align: center;
  width: 100%;
}

.page-template-default .inner-banner-sec,
.error404 .inner-banner-sec {
  display: none;
}

.sample-sec .entry-title {
  margin-bottom: 50px;
}

.error404 .site-main,
.page-template-default .site-main {
  position: relative;
}

.error-img-wpr img {
  width: 100%;
}

.error-img-wpr {
  max-width: 300px;
  margin: 0 auto 50px;
}



/* 29-oct-2025  */

/* 29-10-25 starts */

.join-team-carrier-sec .cmn-hdr-tag {
  max-width: 470px;
}

.join-team-carrier-sec .strengths-card-inner {
  padding: 50px 20px 38px 32px;
  transition: 0.3s all;
}

.join-team-carrier-sec .strengths-circle {
  top: -15px;
}

.join-team-carrier-sec .strengths-cont {
  margin-bottom: 10px;
}

.jointeam-each-btn {
  display: flex;
  align-items: center;
  font-weight: 600;
  color: #252523;
}

.jointeam-each-btn span {
  margin-left: 7px;
  max-width: 20px;
  flex: 0 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s all;
}

.jointeam-each-btn span img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: 0.3s all;
}

.jointeam-each-btn:hover {
  color: var(--orange-color);
}

.jointeam-each-btn:hover img {
  filter: brightness(0) saturate(100%) invert(61%) sepia(71%) saturate(3580%) hue-rotate(334deg) brightness(97%) contrast(94%);
}

.join-team-btn-wrp {
  display: flex;
  flex-wrap: wrap;
}

.join-team-btn-wrp>*:not(:last-child) {
  margin-right: 10px;
}

.join-team-carrier-sec .strengths-card-inner-wrp::before {
  background-color: var(--card-bg-hover);
}

.join-team-carrier-sec .strengths-card:hover .strengths-card-inner-wrp::before {
  background: none;
}

.join-team-carrier-sec .strengths-card-inner-wrp {
  transition: 0.3s all;
}

.join-team-carrier-sec .strengths-card:hover .strengths-card-inner-wrp {
  padding: 0;
  box-shadow: 0px 20px 50px rgba(0, 0, 0, 0.15);
  border-radius: 10px;
}

.join-team-carrier-sec .strengths-card:hover .strengths-card-inner {
  background-color: var(--card-bg-hover);
  color: var(--white-color);
}

.join-team-carrier-sec .strengths-card:hover .strengths-cont .h5-title {
  color: var(--white-color);
}

.join-team-carrier-sec .strengths-card:hover .strengths-ico-wrp img {
  filter: brightness(0) invert(1);
}

.join-team-carrier-sec .strengths-card:hover .jointeam-each-btn {
  color: var(--white-color);
}

.join-team-carrier-sec .strengths-card:hover .jointeam-each-btn span {
  filter: brightness(0) invert(1);
}

.join-team-carrier-sec .strengths-card>* {
  transition: 0.3s all;
}

.pagination-team-wrp {
  margin-top: 75px;
}

.pagination-team-wrp ul {
  padding-left: 0;
  margin-bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.pagination-team-wrp ul>*:not(:last-child) {
  margin-right: 17px;
}

.prev-pagination {
  display: flex;
  align-items: center;
  color: var(--body-color);
  padding-right: 10px;
}

.next-pagination {
  padding: 0 0 0 10px;
}

.prev-pagination span {
  margin-right: 5px;
}

.prev-pagination:hover {
  color: var(--orange-color);
}

.prev-pagination:hover span {
  filter: brightness(0) saturate(100%) invert(61%) sepia(71%) saturate(3580%) hue-rotate(334deg) brightness(97%) contrast(94%);
}

.next-pagination span {
  margin: 0 0 0 5px;
}

.round-pagination {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #A8A8A8;
  color: var(--body-color);
  display: flex;
  justify-content: center;
  align-items: center;
}

.round-pagination:hover,
.active-pagination {
  background-color: var(--orange-color);
  color: var(--white-color);
  border: 1px solid var(--orange-color);
}

.round-none-pagination,
.round-none-pagination:hover {
  border: none;
  background: none;
  color: var(--body-color);
  width: inherit;
  height: inherit;
  line-height: 1;
}

.join-team-carrier-sec .last-section-color {
  transform: translateY(61%);
  z-index: -1;
}

.join-team-carrier-sec .strengths-shape-2 {
  bottom: auto;
  top: 0;
}

.join-team-carrier-sec .strengths-shape-left {
  top: auto;
  right: auto;
  left: -17%;
}

.carrierdetails-inr-sec .cmn-hdr-tag {
  max-width: inherit;
}

.jobdetails-incarrierdetails ul {
  padding-left: 0;
  margin-bottom: 0;
}

.jobdetails-incarrierdetails ul>*:not(:last-child) {
  margin-bottom: 16px;
}

.jobdetails-incarrierdetails ul li {
  display: flex;
  align-items: center;
}

.jobdetails-incarrierdetails ul li p {
  color: var(--heading-color);
  margin-bottom: 0;
  font-weight: 500;
}

.jobdetails-incarrierdetails ul li span {
  margin-right: 15px;
  width: 20px;
  height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 0 0 auto;
}

.jobdetails-incarrierdetails ul li span img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.jobdetails-incarrierdetails ul li .ammount-jobdetails {
  margin-left: 8px;
  color: var(--body-color);
}

.jobdetails-incarrierdetails {
  margin-bottom: 35px;
}

.carrierdetails-richtext h3 {
  margin-top: 35px;
  text-transform: capitalize;
}

.carrierdetails-richtext ul li {
  position: relative;
  padding-left: 32px;
  color: var(--heading-color);
}

.carrierdetails-richtext ul li::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 0;
  width: 20px;
  height: 20px;
  background-image: url("images/richtext-tics.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
}

.carrierdetails-richtext ul>*:not(:last-child) {
  margin-bottom: 15px;
}

.carrierdetails-inr-sec .strengths-shape-left {
  bottom: auto;
  top: 15%;
}

.carrierdetails-inr-sec .snake-img {
  left: -15%;
  bottom: 15%;
}

.carrierdetails-inr-sec .last-section-color {
  transform: translateY(63%) scaleX(-1);
}

.carrierdetails-inr-sec {
  padding-bottom: 70px;
}

.jobdetails-ammount-part {
  display: flex;
  align-items: center;
}

.jobdetails-incarrierdetails h3 {
  text-transform: capitalize;
}

.join-team-carrier-sec .strengths-ico-wrp img {
  filter: brightness(0) saturate(100%) invert(12%) sepia(6%) saturate(233%) hue-rotate(349deg) brightness(101%) contrast(94%);
}

/* 29-10-25 ends */


/* S.Mv Css Start 30-10-25 */
.page-template-nep-development .smart-classroom-sec .destroted-inn img {
  aspect-ratio: 293 / 325;
}

.page-template-nep-development .smart-classroom-sec .strengths-shape-2 {
  right: 2%;
}

.page-template-nep-development .smart-classroom-sec .destroted-outer span {
  height: 100%;
}

.page-template-nep-development .ved-two.learning-that-sec .row.row-ved-two {
  align-items: center;
}

.page-template-school-events .events-sec .wrap-hover-box .program-down {
  padding: 14px;
}

.page-template-school-events .wrap-hover-box .list-date {
  margin: -5px -6px 10px;
}

.page-template-school-events .wrap-hover-box .list-date li {
  padding: 5px 6px;
  margin: 0;
}

.page-template-school-events .wrap-hover-box .list-date li img {
  width: 13px;
  margin-right: 2px;
}

.page-template-school-events .wrap-hover-box .list-date li span {
  font-size: 12px;
}

.objective-sec.download-sec {
  padding: 0 0 60px;
  background-color: #fef7f8;
}

.objective-main-wrp.guide-main-wrp {
  margin-top: -350px;
}

.page-template-curriculum-guide-pdf .objective-main-wrp.guide-main-wrp .cmn-hdr-tag {
  max-width: 1204px;
}

.page-template-curriculum-guide-pdf .foundation-sec.vision-education-sec.impact-sec {
  background: #e5f0fa;
  padding-bottom: 0;
}

.vision-education-sec.where-experience-sec.bnr-btm-sec.foundation-sec.impact-sec {
  padding-bottom: 0;
}

.page-template-curriculum-guide-pdf .vision-education-sec {
  padding-top: 0;
}

#nextelementForm {
  max-width: 900px;
  width: 100%;
  border-radius: 15px;
  position: relative;
}

#nextelementForm::before {
  position: absolute;
  content: '';
  top: 9px;
  left: -31px;
  width: calc(100% + 30px);
  height: calc(100% + 0px);
  background-color: #f36d26;
  border-radius: 15px;
  z-index: -1;
  transform: rotate(-4deg);
}

#nextelementForm .query-frm-row {
  display: flex;
  flex-wrap: wrap;
  margin: -10px;
}

#nextelementForm .form-group {
  width: 50%;
  padding: 10px;
}

#nextelementForm .form-group:nth-child(9) {
  width: 100%;
}

#nextelementForm .form-group>label {
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 500;
}

.query-frm-radio-wpr {
  display: flex;
  flex-wrap: wrap;
}

.query-frm-radio-wpr .query-frm-radio-clm {
  margin: 0 25px 5px 0;
}

.query-frm-radio-wpr .query-frm-radio-clm input[type="radio"] {
  display: none;
}

.query-frm-radio-wpr .query-frm-radio-clm label {
  padding-left: 30px;
  position: relative;
  font-size: 16px;
}

.query-frm-radio-wpr .query-frm-radio-clm label:after {
  position: absolute;
  content: '';
  top: 4px;
  left: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1px solid var(--orange-color);
}

.query-frm-radio-wpr .query-frm-radio-clm label:before {
  position: absolute;
  content: '';
  top: 8px;
  left: 4px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--orange-color);
  transform: scale(0);
  transition: 0.4s;
}

.query-frm-radio-wpr .query-frm-radio-clm input[type="radio"]:checked+label:before {
  transform: scale(1);
}

#nextelementForm .form-group.submit {
  width: 100%;
  text-align: center;
}

#nextelementForm .form-group.submit .submit-btn {
  font-weight: 600;
  color: var(--white-color);
  line-height: 1;
  padding: 19px 34px;
  display: inline-flex;
  align-items: center;
  background-color: var(--brown-color);
  border-radius: 60px;
  position: relative;
  overflow: hidden;
  z-index: 1;
  border: 0;
  width: 100%;
  justify-content: center;
  transition: 0.4s;
}

#nextelementForm .form-group.submit .submit-btn:hover {
  background-color: var(--orange-color);
}

#nextelement-message {
  text-align: center;
  font-size: 22px;
  margin: 0;
}

.prev.round-pagination,
.next.round-pagination {
  border: 0;
  width: initial;
  height: initial;
}

.prev.round-pagination:hover {
  color: var(--black-color);
  background-color: transparent;
}

.next.round-pagination:hover {
  background-color: transparent;
  color: var(--black-color);
}

.next.round-pagination span {
  width: 10px;
  margin-left: 3px;
}

.prev.round-pagination span {
  width: 10px;
  margin-right: 3px;
}


/* S.Mv Css End 30-10-25 */


/* .program-sec .prgtop-sh {
  filter: brightness(0) invert(1);
} */

.destroted-inn>img {
  object-fit: cover;
}


.leader-text-wrp .read-more-btn {
  color: #fff;
  width: 100%;
}

span.round-pagination {
  pointer-events: none;
}

a.prev.round-pagination,
a.next.round-pagination {
  width: auto;
}

section.vision-education-sec.where-experience-sec.bnr-btm-sec .abt-img {
  position: relative;
  padding-top: 123%;
  width: 100%;
}

section.vision-education-sec.where-experience-sec.bnr-btm-sec .abt-img img {
  position: absolute;
  top: 0;
  left: 0;
}

.vision-education-sec.circulam-sec .destroted-inn>img {
  aspect-ratio: 293/ 215;
}

.vision-education-sec.learning-beyond-sec-main .vision-education-inr .destroted-inn>img {
  aspect-ratio: 303/ 215;
}

.download-shape-1 {
  position: absolute;
  top: -23%;
  right: 23%;
  max-width: 113px;
}

.download-shape-2 {
  position: absolute;
  top: 54%;
  left: -7%;
  max-width: 56px;
}

.pdf-download-sec {
  position: relative;
  padding-bottom: 100px;
  margin-top: -60px;
}

.pdf-download-main-wrp {
  position: relative;
}

.list-date {
  flex-wrap: wrap;
}

.photo-card {
  height: 100%;
}

.photo-card-inn img {
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

/* div#nextelementForm>* {
  z-index: 2;
  position: relative;
} */

.leader-img-wqr>svg {
  height: auto;
  z-index: 2;
  top: -11px;
}

.leader-img-wqr {
  position: relative;
  padding-top: 100%;
}

.leader-img-wqr .leader-shape {
  position: absolute;
  top: 50%;
  left: 50%;
  width: calc(100% - 26px);
  mask-position: top;
  transform: translate(-50%, -50%);
}

/* .leader-img-wqr {
    height: 330px;
} */
.bnr-shape {
  opacity: 0.35;
}

.bnr-video .bnr-shape-wrp {
  display: none;
}

.enquery-popup-inn {
  position: relative;
  z-index: 6;
  background-color: var(--white-color);
  padding: 20px;
  overflow: hidden;
  border-radius: 20px;
}

#nextelementForm {
  padding: 0;
}

.photo-card-inn {
  overflow: hidden;
  position: relative;
  padding-top: 57.3%;
}

/* section.vision-education-sec.where-experience-sec.smart-classroom-sec .destroted-inn>img {
  height: 100%;
}

section.vision-education-sec.where-experience-sec.smart-classroom-sec .destroted-inn {
  width: 100%;
  height: 650px;
} */
.enquiry-main-wrp .gfield_description.gform_fileupload_rules {
  display: none;
}

.gform_confirmation_message_2.gform_confirmation_message {
  font-size: 40px;
  line-height: 1.4;
  text-align: center;
  padding: 22px 30px;
  color: var(--heading-color);
  border-radius: 10px;
  font-weight: 500;
  font-family: var(--lato-font);
  position: relative;
  z-index: 1;
  background: #fff;
  box-shadow: 0 0 17px -1px rgba(0, 0, 0, 0.3);
}

/* .gform_confirmation_message_2.gform_confirmation_message::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: -1;
} */

.page-id-638 .enquiry-sec.news-cmn-gap.documentation-sec .mission-vission-backshape {
  max-height: 330px;
}

.gform_confirmation_wrapper::after {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  background-color: var(--orange-color);
  width: 100%;
  height: 100%;
  transform: rotate(-3deg);
  border-radius: 20px;
}

.gform_confirmation_wrapper {
  max-width: 840px;
  position: relative;
  margin: 0 auto;

}

.content-banner-inner h1 {
  font-size: 90px;
}

.content-banner-inner h1 br {
  display: none;
}

.page-id-939 .curriculum-row,
.page-id-939 .pagination-team-wrp {
  display: none;
}
.careers-wrap {
    max-width: 610px;
    margin: 0 auto;
}
.careers-wrap img{
  width: 100%;
}
.banner_image{
  object-fit: cover;
  object-position: bottom;
}

/* 6/11/25 work start */
.timelineflow-container {
  position: relative;
  width: 100%;
  max-width: 1000px;
  margin: 60px auto;
  font-family: var(--manrope-font);
}

.timelineflow-container::before {
  content: "";
  position: absolute;
  left: 50%;
  width: 3px;
  background: var(--orange-color);
  top: 0;
  bottom: 0;
}

.timelineflow-step {
  position: relative;
  width: 50%;
  padding: 20px 30px;
  box-sizing: border-box;
  left: 0;
  text-align: right;
}

.timelineflow-step:nth-child(even) {
  left: 50%;
}

.timelineflow-step::before {
  content: "";
  width: 18px;
  height: 18px;
  background: var(--white-color);
  border: 4px solid var(--orange-color);
  border-radius: 50%;
  position: absolute;
  top: 20px;
  right: -11px;
  z-index: 2;
}

.timelineflow-step:nth-child(even):before {
  left: -7px;
  right: auto;
}

.timelineflow-step-content {
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0px 3px 15px rgba(0,0,0,0.15);
}

.timelineflow-step-content h3 {
    font-size: 25px;
    margin: 0 0 13px;
    color: var(--heading-color);
    font-weight: 700;
}

.timelineflow-step-content p {
  margin: 0;
  color: var(--body-color);
  line-height: 1.6;
}

.navbar-brand {
    padding: 15px;
}

.navbar-brand-wrp {
    max-width: 270px;
}

.ftr-logo {
    max-width: 220px;
}
/* 6/11/25 work end */
/* ========== responsive css =========== */

@media (min-width: 3000px) {
  .gal-btm-shape {
    max-height: 100%;
  }
}

@media (min-width: 1400px) {
  .container {
    padding: 0 12px;
    margin: 0 auto;
    max-width: 1344px;
  }
}

@media (min-width: 1025px) {

  /* navbar*/
  .navbar-nav .clickD {
    /* display: none; */
    position: relative;
    /* right: 0; */
    /* top: 17px; */
    width: 10px;
    height: 10px;
    background: url(images/sort-down.png) center center no-repeat;
    display: block;
    background-size: 9px;
    cursor: pointer;
    margin-left: 9px;
    margin-top: 2px;
  }

  .navbar-nav>li:hover .clickD {
    filter: brightness(0) saturate(100%) invert(52%) sepia(7%) saturate(7258%) hue-rotate(342deg) brightness(97%) contrast(96%);
  }

  .navbar-nav li.menu-item-has-children:hover>.sub-menu {
    display: block;
  }
}

@media (max-width: 1699px) {
  .navbar-nav>li {
    margin: 0 12px;
  }

  .navbar-nav>li>a {
    font-size: 15px;
  }

  .container.full {
    max-width: 100%;
  }

  .navbar-brand-wrp {
    max-width: 190px;
  }

  .page-wrapper {
    margin-top: -35px;
  }

  h1,
  .h1-title {
    font-size: 110px;
  }

  .welcome-wrp h1 {
    letter-spacing: 0.04em;
  }

  .welcome-wrp p {
    font-size: 50px;
  }

  .strengths-shape-2 {
    bottom: -3%;
    right: 1%;
  }

  .gal-shape-2 {
    top: 0%;
    right: -5%;
  }

  .sticky-logo {
    width: 80px;
    height: 80px;
    padding: 15px;
    margin: 13px 0;
  }

  .where-learning-sec {
    padding: 190px 0 40px 0;
  }

  .join-ourteam-sec {
    padding: 150px 0 85px 0;
  }

  .snake-img.lft-small {
    left: 2%;
  }

  .navbar-nav>li {
    padding: 28px 0;
  }

  .building-shape-1 {
    top: -9%;
    left: -8%;
    max-width: 90px;
  }

  .building-shape-2 {
    bottom: -2%;
    right: -3%;
    max-width: 50px;
  }

  .ved-two-inr.buiding-inr {
    padding-bottom: 80px;
  }

  .mitigation-shape {
    top: -65%;
    right: -2%;
    max-width: 22px;
  }

  .impact-shape-01 {
    top: -4%;
    left: -5%;
    max-width: 89px;
  }

  .impact-shape-2 {
    top: 9%;
    right: -1%;
    max-width: 40px;
  }

  .objective-sec {
    padding: 90px 0 140px;
  }

  .vision-education-sec.where-experience-sec.bnr-btm-sec.foundation-sec.impact-sec.assessment-sec .impact-shape-2 {
    top: 6%;
    right: -6%;
    max-width: 82px;
  }

  .vision-education-sec.where-experience-sec.bnr-btm-sec.foundation-sec.impact-sec.assessment-sec .impact-shape-01 {
    top: 4%;
    left: -7%;
    max-width: 43px;
  }

  .feedback-shape {
    top: 0%;
    left: -4%;
    max-width: 53px;
  }

  /* 29-10-25 starts */

  .join-team-carrier-sec .strengths-shape-left,
  .carrierdetails-inr-sec .snake-img {
    left: -5%;
  }


  /* 29-10-25 ends */

  /* 6/11/25 work start */
  .navbar-brand {
    padding: 15px;
}

.navbar-brand-wrp {
    max-width: 270px;
}
  /* 6/11/25 work end */
}

@media (max-width: 1599px) {

  /* new css */
  .navbar-brand-wrp {
    max-width: 270px;
  }

  .ranbow-img {
    max-width: 100px;
    left: -9px;
  }

  .cmn-slider-btn.lft {
    margin-left: -30px;
  }

  .cmn-slider-btn.rgt {
    margin-right: -30px;
  }

  .about-shape-2 {
    bottom: -3%;
    right: 1%;
    max-width: 17px;
  }

  .learning-that-sec {
    padding-top: 80px;
  }

  .growth-shape-1 {
    bottom: 5%;
    right: 2%;
    max-width: 21px;
  }

  .vision-shape-1 {
    left: -2%;
    max-width: 14px;
  }

  .circulam-sec .ved-right-wrp .strengths-shape-2 {
    bottom: -28%;
    right: -5%;
  }

  .our-story-sec {
    padding: 45px 0 40px 0;
  }

  .where-learning-sec {
    padding: 60px 0 40px 0;
  }

  .join-ourteam-sec {
    padding: 60px 0 85px 0;
  }

  .learning-sec-inr .gal-shape-1 {
    left: -2%;
  }

  .learning-sec-inr .abt-dots {
    right: -2%;
  }

  .learning-sec-inr .snake-img {
    left: 0;
    bottom: -17%;
    max-height: 250px;
  }

  .learning-sec-inr .plus-img {
    right: -2%;
  }

  .learning-sec-inr .plus-img {
    bottom: 0;
  }

  .gal-shape-2 {
    right: 0;
  }

  .navbar-nav>li {
    margin: 0 7px;
  }

  .header-btn .cmn-btn {
    padding: 17px 20px;
  }

  .navbar-nav>li>a {
    font-size: 13px;
  }

  .sub-menu>li>a {
    font-size: 14px;
  }

  .page-wrapper {
    margin-top: -45px;
  }

  .navbar-nav>li {
    padding: 30px 0;
  }

  .events-shape-1 {
    top: -5%;
    left: -1%;
    max-width: 42px;
  }

  .events-shape-2 {
    top: -1%;
    right: -1%;
    max-width: 14px;
  }

  .enlightenment-shape-1 {
    top: 16%;
    right: -2%;
    max-width: 120px;
  }

  .enlightenment-shape-2 {
    left: -3%;
    max-width: 101px;
  }

  .photo-shape-01 {
    top: 3%;
    right: -1%;
    max-width: 14px;
  }

  .photo-shape-02 {
    bottom: -8%;
    left: 1%;
    max-width: 51px;
  }

  .enquiry-shape-1 {
    top: -2%;
    right: 1%;
    max-width: 16px;
  }

  .enquiry-shape-2 {
    left: 0%;
    max-width: 46px;
  }

  .jointeam-left {
    margin-left: -40px;
  }

  .jointeam-right {
    margin-right: -40px;
  }

  .news-shape-01 {
    top: 0%;
    right: -1%;
    max-width: 13px;
  }

  .news-shape-02 {
    max-width: 80px;
  }

  .news-shape-03 {
    max-width: 80px;
  }

  .tour-sec-inr .gal-shape-1 {
    top: 30%;
    left: -2%;
    max-width: 92px;
  }

  .tour-sec-inr .abt-dots {
    top: 31%;
    right: -1%;
    max-width: 87px;
  }

  .tour-sec-inr .strengths-shape-2 {
    right: 29%;
    bottom: -13%;
    max-width: 40px;
  }

  .ved-two-inr.buiding-inr {
    margin-top: -20px;
    padding-bottom: 60px;
  }

  .building-shape-1 {
    top: -14%;
    left: 0%;
    max-width: 80px;
  }

  .building-shape-2 {
    bottom: -2%;
    right: 1%;
    max-width: 42px;
  }

  .curriculum-shape {
    top: 16%;
    left: 1%;
    max-width: 30px;
  }

  .vision-education-sec.circulam-sec.overview-sec .snake-img.lft-small {
    bottom: -43%;
    right: 7%;
    max-width: 17px;
  }

  .vision-education-sec.where-experience-sec.bnr-btm-sec.foundation-sec.impact-sec.assessment-sec .impact-shape-2 {
    top: 4%;
    right: 2%;
    max-width: 70px;
  }

  .feedback-shape {
    top: 0%;
    left: 0%;
    max-width: 48px;
  }

  .vision-education-sec.where-experience-sec.bnr-btm-sec.foundation-sec.impact-sec.assessment-sec .impact-shape-01 {
    top: -8%;
    left: 2%;
    max-width: 36px;
  }

  /* 29-10-25 starts */

  .join-team-carrier-sec .strengths-shape-left {
    left: 0;
  }

  .carrierdetails-inr-sec .strengths-shape-left {
    left: 0;
    top: 0;
  }

  .carrierdetails-inr-sec .snake-img {
    left: -3%;
    z-index: -1;
  }

  /* 29-10-25 ends */
  .download-shape-2 {
    top: 1%;
    left: -1%;
    max-width: 43px;
  }

  .objective-main-wrp.guide-main-wrp {
    margin-top: -270px;
  }

  .guide-shape {
    bottom: -44%;
    left: 1%;
    max-width: 15px;
  }
}

@media (max-width: 1399px) {

  /* new css */
  h2,
  .h2-title {
    font-size: 45px;
  }

  .list-conter li {
    padding: 0px 16px;
  }

  .rgt-under .down-news {
    padding-left: 14px;
    padding-right: 18px;
  }

  .inr-testitm {
    padding: 30px 20px;
  }

  .dot-shape-ftr {
    /* top: 13px; */
    /* right: 10%; */
    max-width: 126px;
  }

  .blue-shape {
    max-width: 100px;
    bottom: 5px;
  }

  .snake-img {
    bottom: -6%;
    max-width: 20px;
  }

  .green-shape {
    right: 22%;
    max-width: 47px;
  }

  .abt-dots {
    max-width: 97px;
  }

  .rgt-flowers {
    max-width: 74px;
  }

  .program-down h3 {
    font-size: 20px;
    margin-bottom: 4px;
  }

  .cmn-hdr-tag {
    max-width: 774px;
  }

  .gap-btn {
    padding-top: 100px;
  }

  .greenflowers-img {
    right: 130px;
    max-width: 90px;
  }

  .cmn-slider-btn.lft {
    margin-left: 0px;
  }

  .cmn-slider-btn.rgt {
    margin-right: 0px;
  }

  .inrtestimorial {
    padding: 0px 40px;
  }

  /* new css */

  /* .navbar-brand-wrp {
    max-width: 150px;
  } */

  .cmn-btn {
    padding: 15px 20px;
    font-size: 15px;
  }

  .navbar-nav>li>a {
    font-size: 13px;
  }

  .navbar-nav>li {
    margin: 0 10px;
  }

  .header-btn {
    margin-left: 20px;
  }

  .page-wrapper {
    margin-top: -30px;
  }

  h1,
  .h1-title {
    font-size: 100px;
  }

  .welcome-wrp span {
    font-size: 22px;
    letter-spacing: 0.38em;
  }

  .strengths-shape-1 {
    top: 8%;
    left: 1%;
    max-width: 74px;
  }

  .strengths-shape-2 {
    right: 10%;
  }

  .bnr-cont-shape {
    width: 740px;
    min-height: 658px;
    padding: 13% 4% 11% 9%;
  }

  .bnr-sec-main {
    min-height: 850px;
    padding: 50px 0 0;
  }

  .video-ico {
    width: 90px;
    height: 90px;
  }

  .gal-shape-3 {
    left: 0%;
  }

  .gal-shape-1 {
    top: 10%;
    left: -2%;
    max-width: 112px;
  }

  .strengths-card {
    padding: 8px;
  }

  .gal-shape-2 {
    top: 0%;
    right: 0%;
    max-width: 100px;
  }

  .row-news {
    align-items: inherit;
  }

  .ftr-one {
    width: 37%;
  }

  .ftr-two {
    width: 35%;
  }

  .ftr-three {
    width: 28%;
  }

  .gal-shape-3 {
    max-width: 50px;
  }

  .our-story-sec .strengths-shape-2 {
    right: 10px;
  }

  .wherelearning-head {
    max-width: inherit;
  }

  .where-learning-sec .wherelearning-para-wrp {
    max-width: 600px;
  }

  .row-vision-education .ved-left-col,
  .row-vision-education .ved-right-col {
    width: 50%;
  }

  .learning-sec {
    padding: 80px 0;
  }

  .meet-leader-inr .strengths-shape-2 {
    top: 17px;
  }

  .page-wrapper {
    margin-top: -46px;
  }

  .navbar-nav>li {
    padding: 29px 0;
  }

  .learning-slider-outer .btn-wrap-slider .cmn-slider-btn.rgt,
  .jointeam-slider-wrp .btn-wrap-slider .cmn-slider-btn.rgt {
    margin-right: -30px;
  }

  .jointeam-slider-wrp .btn-wrap-slider .cmn-slider-btn.lft,
  .learning-slider-outer .btn-wrap-slider .cmn-slider-btn.lft {
    margin-left: -30px;
  }

  .inner-banner-sec {
    min-height: 500px;
  }

  .experience-ul li {
    font-size: 18px;
  }

  .mitigation-shape {
    top: -46%;
    right: 3%;
    max-width: 18px;
  }

  .impact-shape-01 {
    top: -4%;
    left: -2%;
    max-width: 80px;
  }

  .impact-wrp {
    font-size: 18px;
  }

  .col-lg-3.col-leaders {
    width: 33.33%;
  }

  .pdf-download-main-wrp {
    padding: 40px;
  }

  .objective-main-wrp.guide-main-wrp {
    margin-top: -130px;
  }

  /* .leader-img-wqr {
    height: 310px;
  } */
  /* section.vision-education-sec.where-experience-sec.smart-classroom-sec .destroted-inn {
    width: 100%;
    height: 530px;
} */
  .content-banner-inner h1 {
    font-size: 80px;
  }
}

@media (max-width: 1199px) {
  .container {
    max-width: 960px;
  }

  .program-down {
    padding-left: 10px;
    padding-right: 10px;
  }

  /* navbar*/
  .navbar-toggler {
    position: relative;
    width: 33px;
    margin-left: 20px;
    height: 28px;
    padding: 0;
    outline: none !important;
    border: none !important;
    box-shadow: none !important;
  }

  .stick,
  .stick:after,
  .stick:before {
    width: 30px;
    height: 2px;
    background: #000;
    position: absolute;
    left: 0;
    top: auto;
    transition: all 0.6s;
    border-radius: 5px;
  }

  .stick:before {
    content: "";
    top: -10px;
    left: 0;
  }

  .stick:after {
    content: "";
    top: 10px;
    left: 0;
  }

  .stick.open {
    transform: translateX(-50px);
    background: transparent;
  }

  .stick.open:before {
    transform: rotate(45deg) translate(42px, -28px);
    left: 2px;
  }

  .stick.open:after {
    transform: rotate(-45deg) translate(42px, 28px);
    left: 2px;
  }

  .navbar-nav .clickD {
    top: 8px;
    right: 10px;
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }

  .navbar-nav .clickD.toggled {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
  }

  .sub-menu>li.menu-item-has-children .clickD {
    top: 8px;
    right: 10px;
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }

  .sub-menu,
  .navbar-nav>li>.sub-menu .sub-menu {
    position: relative;
    width: 100%;
    left: inherit;
    top: inherit;
    border: none;
    right: inherit;
  }

  .navbar-nav>li.menu-item-has-children {
    padding-right: 0;
  }

  .navbar-nav>li {
    margin: 0;
    padding: 0;
  }

  .navbar-nav>li>a {
    padding: 8px 20px;
    display: inline-block;
    width: 100%;
    font-size: 16px;
  }

  .navbar-nav li.menu-item-has-children>a {
    padding-right: 30px;
  }

  .sub-menu>li>a {
    padding-left: 40px;
  }

  .sub-menu .sub-menu>li>a {
    padding-left: 60px;
  }

  .sub-menu .sub-menu .sub-menu>li>a {
    padding-left: 80px;
  }

  .navbar-nav>li>a:after {
    bottom: 0;
  }

  /* navbar end*/

  /* push nav */

  .navbar-collapse {
    background: var(--white-color);
    position: fixed;
    top: 0;
    height: 100% !important;
    width: 290px;
    overflow-y: auto;
    transition: inherit !important;
    right: 0;
    margin: 0;
    display: block !important;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    -webkit-transition: transform 0.2s ease-in-out !important;
    transition: transform 0.2s ease-in-out !important;
    z-index: 9999;
  }

  .navbar-collapse.show,
  .navbar-collapse.collapsing {
    display: block !important;
    -webkit-transform: translateX(0);
    transform: translateX(0);
    -webkit-transition: transform 0.2s ease-in-out !important;
    transition: transform 0.2s ease-in-out !important;
  }

  .navbar-collapse .navbar-nav {
    margin: 80px 0 0;
    padding: 0 0 40px 0;
  }

  .navbar-collapse .navbar-toggler {
    display: block;
    right: 20px;
    top: 20px;
    position: absolute;
  }

  #navoverlay.open {
    background-color: rgba(0, 0, 0, 0.4);
    pointer-events: all;
    -webkit-transition: background-color 0.5s linear;
    transition: background-color 0.5s linear;
    backdrop-filter: blur(20px);
  }

  body.open-nav,
  html.open-nav {
    height: 100%;
    overflow: hidden;
  }

  /* push nav end */
  /* navbar*/
  .navbar-nav .clickD {
    /* display: none; */
    position: absolute;
    right: 20px;
    top: 12px;
    /* transform: translateY(-50%); */
    width: 12px;
    height: 12px;
    background: url(images/sort-down.png) center center no-repeat;
    display: block;
    background-size: 9px;
    cursor: pointer;
    margin-left: 9px;
    margin-top: 2px;
    padding: 10px;
  }

  .navbar-nav .clickD.toggled {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
  }

  .sub-menu>li.menu-item-has-children .clickD {
    top: 8px;
    right: 5px;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
  }

  .sub-menu>li.menu-item-has-children .clickD.toggled {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
  }

  .navbar-nav>li.menu-item-has-children {
    padding-right: 20px;
  }

  .sub-menu>li.menu-item-has-children>a {
    padding-right: 20px;
  }

  .sub-menu.show {
    display: block;
  }

  .navbar-nav>li {
    padding-top: 15px;
    padding-bottom: 15px;
  }

  .navbar-nav>li.current-menu-item>a:after,
  .navbar-nav>li>a:after,
  .navbar-nav>li.menu-item-has-children>a:after {
    width: 100%;
    opacity: 0;
  }

  .navbar-nav>li.current-menu-item>a:after,
  .navbar-nav>li>a:hover:after,
  .navbar-nav>li.menu-item-has-children:hover>a:after {
    width: 100%;
    opacity: 1;
  }

  /* navbar end*/
  .page-wrapper {
    margin-top: -64px;
  }

  .navbar-nav>li {
    padding-top: 0;
    padding-bottom: 0;
  }

  .navbar-nav>li>a {
    padding: 14px 20px;
  }

  .navbar-nav>li>a:hover:after {
    display: none;
  }

  .navbar-nav>li.current-menu-item>a,
  .navbar-nav>li>a:hover {
    /* background-color: var(--orange-color); */
    /* color: var(--white-color); */
  }

  h1,
  .h1-title {
    font-size: 90px;
  }

  .welcome-wrp p {
    font-size: 45px;
  }

  .welcome-wrp span {
    font-size: 20px;
    letter-spacing: 0.2em;
  }

  .bnr-sec-main {
    min-height: 740px;
  }

  .bnr-cont-shape {
    width: 720px;
    min-height: 618px;
    padding: 15% 4% 11% 12%;
  }

  .sticky-logo {
    width: 64px;
    height: 64px;
    padding: 14px;
    margin: 10px 0;
  }

  .sticky-logo-wrp {
    top: 69%;
  }

  h2,
  .h2-title {
    font-size: 40px;
  }

  .strengths-shape-2 {
    max-width: 40px;
  }

  .gal-shape-2 {
    max-width: 70px;
  }

  .gal-shape-1 {
    top: 13%;
    left: -1%;
    max-width: 72px;
  }

  .strengths-slider-btn {
    width: 55px;
    height: 55px;
    padding: 21px;
  }

  .strengths-sec-main {
    padding: 60px 0 80px;
  }

  .gal-btn {
    background-color: var(--white-color);
    width: 55px;
    height: 55px;
  }

  .video-ico {
    width: 80px;
    height: 80px;
    box-shadow: 5px 2px 0px #272323;
  }

  .video-ico img {
    width: 26px;
  }

  .gal-btn.gal-btn-rgt {
    right: -24px;
  }

  .gal-btn.gal-btn-left {
    left: -24px;
  }

  .gal-shape-3 {
    max-width: 40px;
    top: -13%;
  }

  .greenflowers-img {
    right: 120px;
    max-width: 70px;
  }

  .inr-testitm h3 {
    font-size: 18px;
  }

  .inr-testitm {
    padding: 24px 12px;
  }

  .list-conter li span {
    font-size: 30px;
  }

  .list-conter li p {
    font-size: 16px;
  }

  .list-conter li {
    padding: 0px 12px;
  }

  .list-conter {
    margin: 0px -12px;
  }

  .abt-dots {
    max-width: 67px;
  }

  .counter-wrap {
    padding-top: 20px;
    margin-top: 20px;
    margin-bottom: 16px;
  }

  .row-news {
    --bs-gutter-y: 30px;
  }

  .dot-shape-ftr {
    bottom: -2%;
    max-width: 130px;
  }

  .ftr-logo {
    /* max-width: 130px; */
    margin-bottom: 30px;
  }

  .list-ftr li a {
    font-size: 15px;
  }

  .lower-ftr {
    padding: 16px 0;
  }

  .row-program {
    margin-bottom: 0;
  }

  .gal-btm-shape {
    bottom: 0;
  }

  .learning-that-sec .each-ved-two span {
    height: 58px;
    margin-right: 20px;
  }

  .ved-two {
    padding: 40px 0 80px 0;
  }

  .experience-ul li {
    padding-left: 29px;
    font-size: 16px;
  }

  .learning-that-sec {
    padding-top: 60px;
  }

  .where-learning-sec .wherelearning-para-wrp {
    margin-left: 0;
  }

  .where-learning-sec .wherelearning-head-wrp {
    margin-bottom: 20px;
  }

  .wherelearning-head {
    text-align: center;
    align-items: center;
    justify-content: center;
  }

  .leader-shape-wrp {
    transform: scale(0.8);
    top: 10px;
    right: -10px;
  }

  .navbar-nav>li {
    display: block;
    border: 1px solid rgba(0, 0, 0, 0.08);
  }

  .navbar-nav>li:last-child {
    border: none;
  }

  .navbar-nav>li.menu-item-has-children {
    padding-right: 0;
  }

  .sub-menu {
    border-radius: 0;
  }

  .news-cmn-gap {
    padding: 60px 0 60px;
  }

  .events-shape-2 {
    top: -3%;
    right: -1%;
    max-width: 11px;
  }

  .events-main-wrp .program-down {
    padding-left: 11px;
  }

  .inner-banner-sec {
    min-height: 460px;
  }

  .enlightenment-cont h3 {
    font-size: 18px;
    margin-bottom: 6px;
  }

  .enlightenment-cont {
    font-size: 15px;
    padding: 10px;
    line-height: 1.3;
  }

  .content-banner-inner {
    padding-top: 100px;
    padding-bottom: 30px;
  }

  .photo-shape-02 {
    bottom: -3%;
    left: 1%;
    max-width: 42px;
  }

  .jointeam-left {
    margin-left: -20px;
  }

  .jointeam-right {
    margin-right: -20px;
  }

  .news-row {
    --bs-gutter-x: 20px;
  }

  .news-filter-lnk {
    font-size: 16px;
  }

  .news-inn-col .program-down h3 a {
    font-size: 18px;
  }

  .news-inn-col .inr-programpart {
    padding: 0;
  }

  .news-inn-col .program-down {
    padding-right: 10px;
  }

  .page-link {
    font-size: 16px;
  }

  .news-row {
    --bs-gutter-y: 30px;
  }

  .news-shape-03 {
    max-width: 60px;
    bottom: -3%;
  }

  .news-shape-02 {
    bottom: 0;
    left: auto;
    max-width: 60px;
    right: 0;
  }

  .news-shape-01 {
    max-width: 8px;
  }

  .tour-sec-inr .strengths-shape-2 {
    right: auto;
    left: 10%;
  }

  .vision-education-sec.where-experience-sec.bnr-btm-sec.foundation-sec {
    padding-bottom: 40px;
  }

  .curriculum-col .strengths-cont h3 {
    font-size: 18px;
  }

  .ved-two.cbscexcelence-sec.curriculum-sec {
    padding: 60px 0 80px 0;
  }

  .impact-wrp span {
    margin-right: 22px;
  }

  .impact-wrp {
    font-size: 16px;
  }

  /* 29-10-25 starts */

  .join-team-carrier-sec .curriculum-row>* {
    width: 33.33%;
  }

  .join-team-carrier-sec .strengths-shape-2 {
    right: 0;
  }

  /* 29-10-25 ends */
  #nextelementForm::before {
    top: 9px;
    left: -4px;
    width: calc(100% + 6px);
    height: calc(100% + 0px);
  }

  .content-banner-inner h1 {
    font-size: 70px;
  }
  .content-banner-inner{
    padding-top: 160px;
  }
}

@media (max-width: 1024px) {}

@media (max-width: 991px) {
  .container {
    padding: 0 20px;
  }

  h1,
  .h1-title {
    font-size: 80px;
  }

  h2,
  .h2-title {
    font-size: 36px;
  }

  h5,
  .h5-title {
    font-size: 18px;
  }

  .welcome-wrp p {
    font-size: 40px;
  }

  .bnr-cont-shape {
    padding: 15% 4% 11% 16%;
  }

  .strengths-card-inner {
    padding: 20px 15px 30px 15px;
    min-height: 310px;
  }

  .strengths-shape-1 {
    top: -8%;
    left: 2%;
    max-width: 64px;
  }

  .gallery-btm-each-slider {
    padding: 0 6px;
  }

  .gallery-btm-slider .slick-list {
    margin: 0 -6px;
  }

  .video-ico {
    width: 70px;
    height: 70px;
  }

  .video-ico img {
    width: 22px;
  }

  .gal-btn {
    width: 50px;
    height: 50px;
  }

  .gal-btn.gal-btn-rgt {
    right: -18px;
  }

  .gal-btn.gal-btn-left {
    left: -18px;
  }

  .gal-btn-inn {
    margin-top: 40px;
  }

  .gal-shape-3 {
    max-width: 30px;
  }

  .cmn-hdr-tag {
    max-width: 100%;
  }

  .row-about {
    --bs-gutter-y: 30px;
  }

  .ftr-one {
    width: 50%;
  }

  .ftr-two {
    width: 50%;
  }

  .ftr-three {
    width: 100%;
  }

  .col-ftr {
    padding: 20px 12px;
  }

  .row-ftr {
    margin: -20px -12px;
  }

  .ftr-title {
    margin-bottom: 14px;
  }

  .lower-ftrinr>p {
    font-size: 16px;
  }

  .list-social li a {
    height: 40px;
    width: 40px;
  }

  .list-social li a img {
    max-width: 17px;
    max-height: 20px;
  }

  .lower-ftr {
    padding: 10px 0;
  }

  .upper-ftr {
    padding-bottom: 40px;
  }

  .sticky-logo {
    width: 54px;
    height: 54px;
    padding: 12px;
  }

  .sticky-logo-wrp {
    top: 73%;
  }

  .list-conter li p br {
    display: none;
  }

  .new-sec {
    padding-bottom: 80px;
    padding-top: 80px;
  }

  .blue-shape {
    max-width: 80px;
  }

  .dot-shape-ftr {
    max-width: 100px;
  }

  .gal-shape-3 {
    top: -1%;
  }

  .cmn-hdr-tag p {
    font-size: 14px;
  }

  .where-experience-sec .ved-left-col {
    width: 100%;
    order: 2;
  }

  .ved-left-col .inr-about-img {
    margin: 0 auto;
  }

  .where-experience-sec .ved-right-col {
    width: 100%;
    order: 1;
  }

  .where-experience-sec .ved-right-wrp {
    max-width: 100%;
  }

  .smart-classroom-sec .cbsc-excelence {
    padding-right: 0;
    max-width: 100%;
  }

  .cmn-underline-part p {
    max-width: 100%;
  }

  .cbsc-excelence {
    max-width: 100%;
  }

  .rainbow-shape {
    max-width: 111px;
  }

  .growth-shape-1 {
    bottom: -2%;
    right: 2%;
    max-width: 14px;
  }

  .smart-classroom-sec .cbsc-excelence {
    padding-top: 40px;
  }

  .row-vision-education .ved-left-col {
    width: 100%;
  }

  .row-vision-education .ved-right-col {
    width: 100%;
  }

  .circulam-sec .ved-right-wrp .strengths-shape-2 {
    right: 5%;
  }

  .ved-two-col-left {
    order: 2;
  }

  .ved-two-right-inr {
    margin: 0 auto;
  }

  .row-ved-two {
    --bs-gutter-y: 40px;
  }

  .ved-two {
    padding: 90px 0 60px 0;
  }

  .experience-ul li::before {
    width: 18px;
    height: 18px;
  }

  .row-vision-education .ved-left-col,
  .row-vision-education .ved-right-col {
    width: 100%;
  }

  .row-vision-education .ved-right-wrp {
    max-width: inherit;
    padding-left: 0;
  }

  .our-story-sec .destroted-outer {
    max-width: 400px;
    margin: 0 auto;
  }

  .our-story-shape {
    bottom: 0;
  }

  .each-jointeam-inr {
    padding: 25px 20px 20px 20px;
  }

  .join-ourteam-sec {
    padding: 60px 0 60px 0;
  }

  .where-learning-sec {
    padding-bottom: 0;
  }

  .join-ourteam-sec .strengths-shape-2 {
    top: 10%;
    left: 5%;
  }

  /* sp ends */

  /* 14-10-25 starts */

  .row-larning-spaces>* {
    width: 50%;
  }

  .learning-sec-inr .snake-img {
    bottom: -8%;
  }

  .gal-shape-1 {
    top: 6%;
  }

  .learning-sec {
    padding: 60px 0;
  }

  .larningspace-text h3 {
    margin-bottom: 10px;
  }

  .ved-two-left-inr {
    max-width: 100%;
  }

  .ved-three {
    display: none;
  }

  .vision-education-sec {
    padding-top: 40px;
  }

  .col-leaders {
    width: 33.33%;
  }

  .row-leaders {
    justify-content: center;
  }

  .jointeam-slider-wrp .btn-wrap-slider,
  .learning-slider-outer .btn-wrap-slider {
    justify-content: center;
    position: relative;
    transform: none;
    gap: 15px;
    margin-top: 20px;
  }

  .col-video {
    width: 50%;
  }

  .ved-two .strengths-shape-2 {
    display: none;
  }

  .lower-ftrinr>p {
    font-size: 13px;
  }

  .wrap-lowers .list-ftr li a {
    font-size: 13px;
  }

  .events-sec .last-section-color {
    transform: translateY(120%);
  }

  .achievements-cont h3 {
    font-size: 20px;
  }

  .achievements-card {
    padding: 24px 10px;
  }

  .inner-banner-sec {
    min-height: 400px;
  }

  .photo-card {
    padding: 8px;
  }

  .enquiry-shape-1 {
    top: -5%;
    right: -1%;
    max-width: 12px;
  }

  .enquiry-shape-2 {
    left: 2%;
    max-width: 43px;
    top: -6%;
  }

  .tour-sec-inr .gal-shape-1 {
    top: 13%;
  }

  .tour-sec-inr .abt-dots {
    top: 16%;
  }

  .tour-sec-inr .strengths-shape-2 {
    bottom: -10%;
  }

  .building-row .ved-two-col-right {
    width: 100%;
    order: 2;
  }

  .building-row .ved-two-col-left {
    width: 100%;
    order: 1;
  }

  .row-ved-two.futures-row .ved-two-col-right {
    width: 100%;
    order: 2;
  }

  .row-ved-two.futures-row .ved-two-right-inr {
    margin: 0 auto;
  }

  .row-ved-two.futures-row .ved-two-col-left {
    width: 100%;
    order: 1;
  }

  .ved-two.futures-sec {
    margin-top: -70px;
  }

  .row.row-ved-two.building-row {
    --bs-gutter-y: 20px;
  }

  .row-ved-two.building-row .ved-two-right-outer {
    margin-top: 20px;
  }

  .row-vision-education.guidelines-row .ved-left-col {
    width: 100%;
  }

  .row-vision-education.guidelines-row .ved-right-col {
    width: 100%;
  }

  .row-vision-education.guidelines-row .rainbow-shape {
    bottom: 56px;
    left: 50px;
    max-width: 140px;
  }

  .mitigation-shape {
    top: -89%;
    right: 3%;
    max-width: 13px;
  }

  .row-ved-two.mitigation-row .ved-two-col-left {
    order: 1;
  }

  .row-ved-two.mitigation-row .ved-two-col-right {
    order: 2;
  }

  .ved-two.learning-that-sec.key-heighlights-sec.mitigation-sec {
    padding: 60px 0 60px 0;
  }

  .vision-education-sec.circulam-sec.overview-sec .snake-img.lft-small {
    bottom: -37%;
    right: 7%;
    max-width: 11px;
  }

  .curriculum-shape {
    top: 11%;
  }

  .row-vision-education.overview-row.environment-row .ved-left-col {
    width: 100%;
    order: 2;
  }

  .row-vision-education.overview-row.environment-row .ved-right-col {
    width: 100%;
    order: 1;
  }

  .row-vision-education.overview-row.environment-row .cmn-hdr-tag p {
    max-width: 100%;
  }

  .row.row-vision-education.impact-row .ved-right-col {
    width: 100%;
  }

  .row-vision-education.impact-row .ved-two-left-inr {
    max-width: 100%;
  }

  .row.row-vision-education.impact-row .ved-left-col {
    width: 100%;
  }

  .vision-education-sec.where-experience-sec.bnr-btm-sec.foundation-sec.impact-sec.assessment-sec .impact-shape-2 {
    top: -8%;
    max-width: 60px;
  }

  .row-vision-education.impact-row.assessment-row .foundation-wrp {
    max-width: 100%;
  }

  .sample-sec,
  .error-404.not-found {
    padding: 80px 0;
  }

  /* 29-10-25 starts */

  .join-team-carrier-sec .curriculum-row>* {
    width: 50%;
  }

  .join-team-carrier-sec .strengths-circle {
    top: 0;
  }

  .carrierdetails-richtext h3 {
    margin: 30px 0 20px 0;
  }

  .carrierdetails-richtext ul>*:not(:last-child) {
    margin-bottom: 10px;
  }

  .jobdetails-incarrierdetails ul>*:not(:last-child) {
    margin-bottom: 10px;
  }

  .carrierdetails-richtext ul li::before {
    width: 18px;
    height: 18px;
  }

  .carrierdetails-inr-sec .snake-img {
    display: none;
  }

  /* 29-10-25 ends */
  .col-lg-3.col-leaders {
    width: 50%;
  }

  section.ved-two.learning-that-sec.key-heighlights-sec .row-ved-two .ved-two-col-right {
    order: 2;
  }

  .download-shape-2 {
    top: -10%;
    left: -1%;
    max-width: 38px;
  }

  .vision-education-sec.where-experience-sec.bnr-btm-sec.foundation-sec.impact-sec.inside-sec .impact-shape-2 {
    max-width: 140px;
    top: -2%;
  }

  .vision-education-sec.circulam-sec.overview-sec.programs-sec.guide-sec .guide-shape {
    bottom: -16%;
    left: 1%;
    max-width: 12px;
  }

  /* .leader-img-wqr {
    height: 350px;
  } */
  #nextelementForm::before {
    top: -8px;
    left: 0;
    width: calc(100% + 0px);
    height: calc(100% + 0px);
    transform: rotate(0deg);
  }

  .gform_confirmation_message_2.gform_confirmation_message {
    font-size: 30px;
  }

  .gform_confirmation_wrapper {
    max-width: 700px;
  }

  /* 6/11/25 work start */
  .timelineflow-container {
    margin: 30px auto;
  }
  .timelineflow-step-content h3{
    font-size: 20px;
  }
  .timelineflow-container::before {
    left: 7px;
  }
  .timelineflow-step,
.timelineflow-step:nth-child(even) {
    width: 100%;
    text-align: left;
    padding-left: 40px;
    left: 0;
  }
  .timelineflow-step::before {
    left: 0 !important;
    right: auto !important;
  }
  /* 6/11/25 work end */
}

@media (max-width: 767px) {

  /* images alignment for wordpress content pages */
  .alignright,
  .alignleft,
  .aligncenter {
    float: none;
    clear: both;
    display: block;
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
    clear: both;
    margin-bottom: 24px;
  }

  .bnr-cont-shape {
    width: 536px;
    min-height: 558px;
    padding: 15% 4% 11% 12%;
  }

  h1,
  .h1-title {
    font-size: 70px;
  }

  h2,
  .h2-title {
    font-size: 32px;
  }

  .welcome-wrp p {
    font-size: 32px;
  }

  .bnr-sec-main {
    min-height: 670px;
  }

  .strengths-shape-2 {
    max-width: 38px;
    right: 8%;
    bottom: -1%;
  }

  .gal-shape-2 {
    max-width: 38px;
    top: 1%;
  }

  .gal-shape-1 {
    top: 20%;
    left: -3%;
    max-width: 58px;
  }

  .program-down h3 a {
    line-height: 1.3;
  }

  .program-down h3 {
    font-size: 18px;
  }

  .program-down {
    padding-left: 5px;
    padding-right: 5px;
  }

  .row-program {
    --bs-gutter-x: 18px;
  }

  .greenflowers-img {
    right: 100px;
    max-width: 60px;
  }

  .gap-btn {
    padding-top: 80px;
  }

  .snake-img {
    bottom: -2%;
    max-width: 11px;
  }

  .gap-btn {
    padding-top: 60px;
  }

  .down-news h3 {
    font-size: 18px;
  }

  .list-date li span {
    font-size: 15px;
  }

  .rgt-under .down-news {
    padding-left: 12px;
    padding-right: 12px;
  }

  .col-ftr {
    width: 100%;
  }

  .lower-ftrinr {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .list-social {
    /* margin: 12px 0 0; */
  }

  .down-news {
    padding-top: 20px;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 24px;
  }

  .inr-about-img {
    margin: 0 auto;
  }

  .abt-dots {
    top: 4%;
    right: 12%;
  }

  .larningspace-text {
    padding: 10px;
  }

  .gal-shape-1 {
    top: 9%;
  }

  .col-leaders {
    width: 50%;
  }

  .meet-leader-sec {
    padding: 28px 0 50px 0;
  }

  .lower-ftrinr>p {
    order: 2;
  }

  .wrap-lowers {
    margin-bottom: 10px;
  }

  .events-main-wrp .program-down h3 {
    font-size: 18px;
  }

  .list-date li {
    margin-right: 15px;
  }

  .events-main-wrp .wrap-news {
    flex-direction: column;
    align-items: flex-start;
  }

  .rgt-btn {
    padding: 16px 0 0;
    margin-left: 0;
  }

  .cmn-btn.trans {
    min-width: 143px;
  }

  .event-btn {
    margin-top: 20px;
  }

  .events-shape-2 {
    top: -1%;
  }

  .events-shape-1 {
    top: -3%;
    left: -1%;
    max-width: 31px;
  }

  .enlightenment-shape-1 {
    top: 4%;
    right: -2%;
    max-width: 100px;
  }

  .enlightenment-shape-2 {
    left: -3%;
    max-width: 81px;
    bottom: -2%;
  }

  .experience-sec .last-section-color {
    height: 70%;
    transform: translateY(50%);
  }

  .photo-shape-01 {
    top: 8%;
    right: -2%;
    max-width: 14px;
  }

  .learning-sec-inr .gal-shape-1 {
    left: -3%;
    top: 4.3%;
  }

  input[type="text"],
  input[type="tel"],
  input[type="password"],
  input[type="email"],
  select {
    height: 54px;
    padding: 0 20px;
  }

  textarea {
    height: 180px;
    padding: 16px 20px;
  }

  input[type="submit"] {
    height: 50px;
    font-size: 15px;
    min-width: 150px;
  }

  .form-field label {
    font-size: 18px;
    margin-bottom: 8px;
  }

  .form-row {
    --bs-gutter-x: 18px;
  }

  .tour-sec {
    padding: 40px 0 80px;
  }

  .tour-sec-inr .abt-dots {
    top: 23%;
  }

  .tour-sec-inr .gal-shape-1 {
    top: 21%;
  }

  .building-shape-1 {
    top: -3%;
    left: 0%;
    max-width: 67px;
  }

  .curriculum-col .strengths-card-inner {
    padding: 20px 14px;
  }

  .curriculum-col .strengths-cont h3 {
    font-size: 16px;
  }

  .vision-education-sec.circulam-sec.overview-sec .snake-img.lft-small {
    bottom: -15%;
  }

  .curriculum-shape {
    top: -2%;
  }

  .row-vision-education.impact-row .ved-two-left-inr>*:not(:last-child) {
    margin-bottom: 30px;
  }

  .objective-sec {
    padding: 60px 0 80px;
  }

  .impact-shape-2 {
    top: -2%;
    right: -1%;
    max-width: 37px;
  }

  .impact-shape-01 {
    top: -4%;
    left: 0%;
    max-width: 61px;
  }

  .feedback-shape {
    top: -4%;
  }

  /* 15.10.25 start */
  .inr-ftr {
    max-width: 100%;
  }

  /* 15.10.25 end */
  /* 27.10.25 */
  .enquiry-main-wrp .gform_wrapper label {
    font-size: 18px;
    margin-bottom: 8px;
  }

  /* 27.10.25 */
  /* 29-10-25 starts */

  .pagination-team-wrp {
    margin-top: 40px;
  }

  .carrierdetails-richtext p {
    margin-bottom: 10px;
  }

  /* 29-10-25 ends */

  /* S.Mv Css Start 30-10-25 */
  #nextelementForm .form-group {
    width: 100%;
  }

  /* S.Mv Css End 30-10-25 */
  .strengths-main-wrap .strengths-shape-1 {
    top: -5%;
    max-width: 58px;
  }

  .pdf-download-col-left {
    width: 100%;
    padding-right: 0;
    margin-bottom: 20px;
  }

  .pdf-download-col-rgt {
    width: 100%;
    text-align: start;
  }

  .objective-main-wrp.guide-main-wrp {
    margin-top: -70px;
  }

  .pdf-download-main-wrp {
    padding: 26px;
  }

  /* .leader-img-wqr {
    height: 270px;
  } */
  .strengths-main-wrap .cmn-hdr-tag.center {
    text-align: left;
  }

  .content-banner-inner h1 {
    font-size: 60px;
  }
}

@media (max-width: 575px) {

  h1,
  .h1-title {
    font-size: 55px;
  }

  h2,
  .h2-title {
    font-size: 28px;
  }

  .navbar-brand-wrp {
    max-width: 200px;
  }

  .navbar-brand {
    /* padding: 15px 18px; */
    padding: 8px;
    border-radius: 10px;
  }

  .page-wrapper {
    margin-top: -20px;
  }

  .gallery-top-slider-card {
    padding: 10px;
  }

  .gallery-top-slider-main {
    margin-bottom: 20px;
  }

  .bnr-cont-shape {
    width: 444px;
    min-height: 461px;
    padding: 90px 20px 60px 90px;
  }

  .bnr-sec-main {
    min-height: 480px;
    padding: 70px 0 0;
  }

  .welcome-wrp span {
    font-size: 18px;
  }

  .strengths-card-inner {
    min-height: 230px;
  }

  .strengths-slider-btn {
    width: 48px;
    height: 48px;
    padding: 18px;
  }

  .video-ico {
    width: 60px;
    height: 60px;
  }

  .video-ico img {
    width: 19px;
  }

  .wrap-news {
    flex-direction: column;
    align-items: flex-start;
  }

  .rgt-btn {
    margin-left: 0;
    padding: 12px 0 0;
    flex-shrink: 0;
  }

  .greenflowers-img {
    right: 90px;
    max-width: 50px;
  }

  .gap-btn {
    padding-top: 50px;
  }

  .list-conter li p {
    font-size: 15px;
  }

  .star-yellow {
    max-width: 178px;
  }

  .wrap-under {
    flex-direction: column;
  }

  .lft-under .news-blog {
    padding-top: 85%;
    border-radius: 10px 10px 0 0;
  }

  .welcome-wrp p {
    font-size: 28px;
  }

  .ranbow-img {
    max-width: 60px;
    bottom: 14px;
  }

  .list-conter li {
    width: 50%;
    margin-bottom: 15px;
  }

  .new-sec {
    padding-bottom: 60px;
    padding-top: 60px;
  }

  .down-news {
    padding-left: 10px;
    padding-right: 10px;
  }

  .about-shape-2 {
    max-width: 12px;
  }

  .experience-ul li {
    font-size: 15px;
  }

  .row-larning-spaces>* {
    width: 100%;
  }

  .larningspace-text {
    padding: 20px;
  }

  .gal-shape-1 {
    top: 4%;
  }

  .learning-sec-inr .abt-dots {
    top: 5%;
    right: -3%;
  }

  .learning-sec-inr .snake-img {
    bottom: -2%;
  }

  .leader-shape-wrp {
    transform: scale(0.6);
  }

  .leader-text-wrp {
    padding: 0;
  }

  .about-shape-1 {
    max-width: 40px;
  }

  .about-shape-2 {
    max-width: 8px;
  }

  .list-social {
    margin-left: 0;
    width: 100%;
    justify-content: center;
  }

  .wrap-lowers {
    justify-content: center;
  }

  .wrap-lowers .list-ftr.no-colmn {
    margin-bottom: 8px;
  }

  .events-shape-1 {
    top: -1%;
    left: -1%;
    max-width: 28px;
  }

  .events-sec .last-section-color {
    transform: translateY(90%);
  }

  .cmn-btn.trans {
    min-width: 123px;
  }

  .inner-banner-sec {
    min-height: 350px;
  }

  .video-ico.enlightenment-video-ico {
    width: 50px;
    height: 50px;
    box-shadow: 3px 3px 0px #79ab77;
  }

  .video-ico.enlightenment-video-ico img {
    width: 15px;
  }

  .ranbow-img {
    max-width: 100px;
    left: 51px;
  }

  .vision-shape-2 {
    max-width: 90px;
  }

  .news-col-left-wrp {
    padding: 20px 12px 30px;
  }

  .tour-sec-inr .gal-shape-1 {
    top: 11%;
  }

  .tour-sec-inr .abt-dots {
    top: 12%;
  }

  .tour-sec-inr .strengths-shape-2 {
    bottom: -3%;
  }

  .mitigation-shape {
    top: -64%;
    right: 3%;
  }

  .row-vision-education.guidelines-row .rainbow-shape {
    bottom: 16px;
    left: 30px;
    max-width: 110px;
  }

  .vision-education-sec.where-experience-sec.bnr-btm-sec.foundation-sec.impact-sec {
    padding-bottom: 50px;
  }

  .sample-sec .entry-title,
  .not-found .page-title {
    font-size: 40px;
  }

  .sample-sec .entry-title {
    margin-bottom: 40px;
  }

  .sample-sec,
  .error-404.not-found {
    padding: 70px 0;
  }

  /* 29-10-25 starts */

  .join-team-carrier-sec .curriculum-row>* {
    width: 100%;
  }

  .join-team-carrier-sec .round-pagination {
    width: 35px;
    height: 35px;
  }

  .pagination-team-wrp ul>*:not(:last-child) {
    margin-right: 10px;
  }

  .round-none-pagination,
  .round-none-pagination:hover {
    width: inherit;
    height: inherit;
  }

  /* 29-10-25 ends */
  .ved-two {
    padding: 60px 0 60px 0;
  }

  .col-lg-3.col-leaders {
    width: 100%;
  }

  /* .leader-shape {
    height: 420px;
  } */
  .download-shape-1 {
    top: -18%;
    right: 2%;
    max-width: 74px;
  }

  .vision-education-sec.where-experience-sec.bnr-btm-sec.foundation-sec.impact-sec.inside-sec .impact-shape-2 {
    max-width: 110px;
  }

  .vision-education-sec.where-experience-sec.bnr-btm-sec.foundation-sec.impact-sec.inside-sec .impact-shape-01 {
    max-width: 60px;
  }

  .pdf-download-sec {
    padding-bottom: 60px;
    margin-top: 0px;
    padding-top: 40px;
  }

  section.vision-education-sec.where-experience-sec.bnr-btm-sec.foundation-sec.impact-sec.inside-sec {
    padding-bottom: 0;
  }

  /* .leader-img-wqr {
    height: 450px;
  } */
  .bnr-video {
    position: relative;
  }

  .bnr-sec-main {
    padding: 0;
  }

  .bnr-video .bnr-shape-wrp {
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    transform: none;
  }

  .bnr-sec-main>.bnr-shape-wrp {
    display: none;
  }

  .bnr-shape {
    display: none;
  }

  .bnr-cont-shape {
    width: 100%;
    min-height: inherit;
    padding: 30px 20px;
  }

  /* .bnr-txt-tag {
    background-color: var(--body-color);
    color: var(--white-color);
  }

  .welcome-wrp,
  .welcome-wrp h1,
  .year-scl {
    color: var(--body-color);
  }

  .cmn-btn.wh {
    background-color: var(--brown-color);
    color: var(--white-color);
  }

  .cmn-btn.wh span img {
    filter: brightness(0) invert(1);
  } */
  h3,
  .h3-title {
    font-size: 40px;
  }

  .bnr-shape-mb {
    display: block;
  }

  .bnr-cont-wrp {
    padding: 30px 0;
  }

  .enquery-popup {
    padding: 20px 12px;
  }
}

@media (max-width: 479px) {
  body {
    font-size: 15px;
    line-height: 1.4;
  }

  h1,
  .h1-title {
    font-size: 40px;
  }

  h2,
  .h2-title {
    font-size: 26px;
  }

  .bnr-shape {
    display: none;
  }

  /* .bnr-cont-wrp::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    z-index: 1;
  } */

  /* .bnr-cont-wrp {
    padding: 20px 12px;
    border-radius: 10px;
    overflow: hidden;
  } */

  /* .bnr-cont-shape {
    width: 100%;
    padding: 20px;
    min-height: auto;
  } */

  .welcome-wrp p {
    font-size: 24px;
  }

  .welcome-wrp span {
    font-size: 16px;
  }

  .bnr-sec-main {
    min-height: 450px;
  }

  .cmn-btn {
    padding: 12px 16px;
    font-size: 14px;
  }

  .cmn-btn span {
    margin-left: 5px;
    max-width: 16px;
  }

  /* .header-btn .cmn-btn {
    font-size: 0;
  } */

  .header-btn .cmn-btn span {
    margin: 0;
    width: 100%;
  }

  .header-btn .cmn-btn span img {
    display: none;
  }

  .header-btn .cmn-btn span .mb-rs-btn {
    display: block;
    width: 100%;
  }

  .header-btn .cmn-btn {
    justify-content: center;
    font-size: 0;
    /* width: 44px; */
    /* height: 44px; */
    border-radius: 50%;
    padding: 8px;
  }

  .navbar-brand-wrp {
    /* max-width: 110px; */
    max-width: 180px;
    padding: 12px 10px 10px 9px;
  }

  .navbar-brand {
    /* padding: 12px 15px; */
    padding: 5px;
  }

  .container.full {
    padding: 0 12px;
  }

  .page-wrapper {
    margin-top: -44px;
  }

  .nav-btn-wrp {
    padding-top: 10px;
  }

  .strengths-sec-main {
    padding: 60px 0 60px;
  }

  .strengths-shape-2 {
    max-width: 28px;
  }

  .gallery-top-slider-card-inn {
    padding-top: 69%;
  }

  .gal-btn {
    width: 40px;
    height: 40px;
    padding: 16px;
  }

  .gallery-card {
    padding-top: 68%;
    border-radius: 6px;
  }

  .gallery-top-slider-main {
    margin-bottom: 16px;
  }

  .gallery-btm-each-slider {
    padding: 0 4px;
  }

  .gallery-btm-slider .slick-list {
    margin: 0 -4px;
  }

  .gal-shape-1 {
    top: 29%;
    left: -5%;
    max-width: 53px;
  }

  .gal-shape-2 {
    display: none;
  }

  .video-ico {
    width: 54px;
    height: 54px;
  }

  .video-ico img {
    width: 18px;
  }

  .inrtestimorial {
    padding: 0px 30px;
  }

  .list-conter li span {
    font-size: 26px;
  }

  .blue-shape {
    max-width: 60px;
  }

  .ftr-logo {
    /* max-width: 110px; */
    margin-bottom: 20px;
  }

  .dot-shape-ftr {
    max-width: 70px;
    bottom: -1%;
  }

  .cmn-slider-btn {
    height: 45px;
    width: 45px;
  }

  .read-more {
    font-size: 16px;
  }

  .each-ved-two {
    flex-direction: column;
  }

  .learning-that-sec .each-ved-two span {
    margin: 0 0 20px;
  }

  .about-shape-2 {
    bottom: -8%;
  }

  .growth-shape-1 {
    bottom: -9%;
    right: 2%;
    max-width: 10px;
  }

  .where-learning-sec {
    padding-top: 40px;
  }

  .our-story-sec {
    padding-bottom: 0;
  }

  .join-ourteam-sec {
    padding: 40px 0;
  }

  .larningspace-text {
    padding: 15px;
  }

  .learning-sec-inr .gal-shape-1 {
    top: 7%;
  }

  .learning-sec-inr .abt-dots {
    top: 9%;
  }

  .col-leaders {
    width: 100%;
  }

  .leader-img-wqr {
    max-width: 300px;
  }

  .col-video {
    width: 100%;
    margin-bottom: 20px;
  }

  .list-ftr {
    column-count: 1;
  }

  .inner-banner-sec {
    min-height: 260px;
  }

  .enlightenment-shape-1 {
    top: 11%;
    right: -2%;
    max-width: 80px;
  }

  .enlightenment-card {
    padding: 8px;
  }

  .content-banner-inner {
    padding-top: 70px;
    padding-bottom: 30px;
  }

  input[type="text"],
  input[type="tel"],
  input[type="password"],
  input[type="email"],
  select {
    height: 48px;
  }

  textarea {
    height: 160px;
  }

  .news-shape-03 {
    max-width: 50px;
    bottom: -2%;
  }

  .news-shape-02 {
    bottom: -2%;
    left: auto;
    max-width: 50px;
    right: 0;
  }

  .news-ourteam-sec .dot-shape-ftr {
    bottom: -1%;
  }

  .page-item {
    padding: 0 2px;
  }

  .page-link {
    width: 36px;
    height: 36px;
    font-size: 15px;
  }

  .page-item a span img {
    max-width: 24px;
  }

  .tour-sec-inr .gal-shape-1 {
    top: 19%;
  }

  .tour-sec-inr .abt-dots {
    top: 20%;
  }

  .building-shape-1 {
    top: -4%;
    left: 0%;
    max-width: 56px;
  }

  .row-vision-education.guidelines-row .rainbow-shape {
    bottom: 16px;
    left: 10px;
    max-width: 90px;
  }

  .curriculum-shape {
    top: -3%;
    max-width: 24px;
  }

  .impact-wrp {
    font-size: 14px;
  }

  .impact-wrp span {
    margin-right: 15px;
  }

  .row-vision-education.impact-row .ranbow-img {
    max-width: 70px;
    left: 7px;
  }

  .objective-sec {
    padding: 60px 0 60px;
  }

  .feedback-shape {
    top: 4%;
  }

  /* 17.10.25 start */
  /* .bnr-shape-mb {
    display: block;
  } */

  .bnr-txt-tag {
    font-size: 11px;
  }

  /* 17.10.25 end */

  .ranbow-img {
    max-width: 80px;
    left: 7px;
  }

  .sample-sec .entry-title {
    margin-bottom: 30px;
  }

  .sample-sec .entry-title,
  .not-found .page-title {
    font-size: 33px;
  }

  .sample-sec,
  .error-404.not-found {
    padding: 60px 0;
  }

  .error-img-wpr {
    max-width: 250px;
    margin: 0 auto 30px;
  }

  /* 29-10-25 starts */

  .prev-pagination,
  .next-pagination {
    padding: 0;
    font-size: 0;
  }

  .carrierdetails-richtext ul li::before {
    width: 15px;
    height: 15px;
    top: 2px;
  }

  .carrierdetails-richtext ul li {
    padding-left: 25px;
  }

  .jobdetails-incarrierdetails ul li {
    flex-direction: column;
    align-items: flex-start;
  }

  .jobdetails-incarrierdetails ul li span {
    margin: 0 0 10px 0;
  }

  .jobdetails-incarrierdetails ul li .ammount-jobdetails {
    margin-left: 4px;
  }

  .jobdetails-incarrierdetails ul>*:not(:last-child) {
    margin-bottom: 20px;
  }

  /* 29-10-25 ends */
  .rainbow-shape {
    max-width: 82px;
  }

  .download-shape-1 {
    top: -13%;
    right: 2%;
    max-width: 60px;
  }

  .download-shape-2 {
    top: -14%;
    left: -1%;
    max-width: 34px;
  }

  .pdf-download-main-wrp {
    padding: 20px 14px;

  }

  /* .leader-img-wqr {
    padding-top: 67%;
  } */
  .header-btn {
    position: fixed;
    bottom: 50px;
    right: 0;
    z-index: 9999;
    margin: 0;
  }

  .header-btn .cmn-btn {
    background: #ead1db;
    border-radius: 10px 0 0 10px;
    overflow: hidden;
    font-size: 16px;
    background-color: #f36d26;
    font-weight: 700;
    padding: 24px 12px;
    -webkit-writing-mode: sideways-lr;
    -ms-writing-mode: sideways-lr;
    writing-mode: sideways-lr;
  }

  .header-btn .cmn-btn span {
    max-width: 100%;
    display: none;
  }

  .sticky-logo-wrp {
    top: auto;
    bottom: 200px;
    right: 3px;
  }

  .gform_confirmation_message_2.gform_confirmation_message {
    font-size: 24px;
    padding: 18px 24px;
    ;
  }

  .content-banner-inner h1 {
    font-size: 52px;
  }
}