@charset "utf-8";

* {
  outline: none;
  margin: 0px;
  padding: 0px;
  border: none;
  text-decoration: none;
  font-family: 'Poppins';
  font-weight: normal;
  font-style: normal;
  font-display: swap;
  box-sizing: border-box;
}


/* Default Theme: LIGHT MODE */
:root {
  --bg-color: #fff;
  --text-color: #000;
  --border-color: #c2c2c2;
  --subtext-color: #363636;
  --clr-red: #dd2519;
  --clr-purple: #291670;
  --txt-white: #fff;
}

/* Light Theme Overrides */
[data-theme="dark"] {
  --bg-color: #000000;
  --text-color: #ffffff;
  --border-color: #c2c2c2;
  --subtext-color: #363636;
}

body {
  text-decoration: none;
  background-color: var(--bg-color);
  font-family: 'Poppins';
  font-size: 14px;
  color: var(--text-color);
}

html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

.smooth-scroll-wrapper {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  will-change: transform;
}

a {
  text-decoration: none;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
}

p {
  height: auto;
  font-size: 1em;
  color: var(--text-color);
  line-height: 1.5;
  font-family: 'Poppins';
  font-weight: normal;
  font-style: normal;
  font-display: swap;
  box-sizing: border-box;
}

li {
  font-size: 16px;
  font-weight: normal;
}

.fa-rotate-90 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
  transform: rotate(90deg);
}



@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-Light.eot');
  src: url('../fonts/Poppins-Light.eot?#iefix') format('embedded-opentype'),
    url('../fonts/Poppins-Light.woff2') format('woff2'),
    url('../fonts/Poppins-Light.woff') format('woff'),
    url('../fonts/Poppins-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-Regular.eot');
  src: url('../fonts/Poppins-Regular.eot?#iefix') format('embedded-opentype'),
    url('../fonts/Poppins-Regular.woff2') format('woff2'),
    url('../fonts/Poppins-Regular.woff') format('woff'),
    url('../fonts/Poppins-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-Medium.eot');
  src: url('../fonts/Poppins-Medium.eot?#iefix') format('embedded-opentype'),
    url('../fonts/Poppins-Medium.woff2') format('woff2'),
    url('../fonts/Poppins-Medium.woff') format('woff'),
    url('../fonts/Poppins-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-SemiBold.eot');
  src: url('../fonts/Poppins-SemiBold.eot?#iefix') format('embedded-opentype'),
    url('../fonts/Poppins-SemiBold.woff2') format('woff2'),
    url('../fonts/Poppins-SemiBold.woff') format('woff'),
    url('../fonts/Poppins-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-Bold.eot');
  src: url('../fonts/Poppins-Bold.eot?#iefix') format('embedded-opentype'),
    url('../fonts/Poppins-Bold.woff2') format('woff2'),
    url('../fonts/Poppins-Bold.woff') format('woff'),
    url('../fonts/Poppins-Bold.ttf') format('truetype');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}



/************************************************** MENU **************************************************/

body.home .sexy-menu {
  position: fixed;
}

.sexy-menu.detached .header-contact {
  display: none;
}

video {
  width: 100%;
}

.sexy-menu.detached .tophead {
  display: none;
}

/* .sexy-menu.detached .logo {
  margin-top: 5px;
  width: 70%;
} */

.nav-header {
  /* background-color: #fff;
  border-radius: 50%;
  width: 125px;
  height: 119px;
  align-content: center;*/
  text-align: left;
}

/* .logo {
} */

.nav-header p {
  color: #fff;
  font-size: 1.125em;
}

/* .sexy-menu.detached .logo {
} */


.nav-menu>li>a {
  margin: 0 20px;
  display: inline-block;
  position: relative;
  color: var(--text-color);
  font-size: 1em;
  font-family: 'Poppins';
  font-weight: normal;
  font-style: normal;
  font-display: swap;
  letter-spacing: 1px;
  text-align: center;

  text-decoration: none;
  padding-bottom: 5px;
  transition: transform .35s ease, color .35s ease;
}

.nav-menu>li>a:hover {
  color: #dd2519;
  transform: translateY(-4px);
}

.nav-menu>li>a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 2px;
  background: #dd2519;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .35s cubic-bezier(.77, 0, .18, 1);
}

.nav-menu>li>a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-menu2>li>a {
  margin: 35px 44px 20px;
}

.nav-menu {
  margin-top: 14px;
}

.nav-menu>li {
  position: relative;
}

.sexy-menu.detached .header-phone {
  display: none;
}

.nav-menu>li:last-child a,
ul.header-social li:last-child,
.nav-menu2>li>a:last-child {
  margin-right: 0 !important;
}

.nav-menu>li:first-child a,
.nav-menu2>li:first-child a {
  margin-left: 0 !important;
}

.resp-show {
  display: none !important;
}

.sexy-menu.detached .nav-menu>li>a {
  margin: 15px 15px;
  color: var(--text-color);
}

.sexy-menu.detached .nav-menu {
  border-top: 0;
}

.sexy-menu.detached .header-phone {
  margin: 32px 15px !important;
}

#button {
  display: inline-block;
  background-color: #333;
  line-height: 50px;
  width: 50px;
  color: #fff;
  height: 50px;
  text-align: center;
  border-radius: 100%;
  position: fixed;
  bottom: 30px;
  right: 30px;
  transition: background-color 0.3s, opacity 0.5s, visibility 0.5s;
  opacity: 0;
  visibility: hidden;
  z-index: 9;
}

#button i {
  color: #fff;
}

#button:hover {
  cursor: pointer;
  background-color: #333;
}

#button:active {
  background-color: #555;
}

#button.show {
  opacity: 1;
  visibility: visible;
}

.carousel-indicators .active,
.carousel-indicators li {
  width: 15px !important;
  height: 15px !important;
  border: 0 !important;
}

.carousel-indicators .active {
  background: #dfc0f3 !important;
}

.carousel-indicators li {
  background: #655a8e !important;
  margin: 0 3px !important;
}

.carousel-indicators {
  bottom: 5em !important;
  right: 200px !important;
  left: unset !important;
  width: unset !important;
}

/**/
.clear {
  clear: both;
}

audio,
::selection {
  background: #dd2519 !important;
  color: #fff !important;
}

span::selection {
  -webkit-background-clip: unset !important;
  -webkit-text-fill-color: #fff !important;
  background: #dd2519 !important;
}

::-moz-selection {
  color: #fff !important;
}

.grecaptcha-badge {
  display: none !important;
}

.img-full {
  width: 100%;
  height: auto;
  display: block;
}

.img-responsive {
  max-width: 100%;
  height: auto;
}

.logo1 {
  display: none;
}

.sexy-menu.detached .navigation {
  padding-top: 5px;
  padding-bottom: 5px;
  margin-top: 0 !important;
  align-items: center;
}

.navigation {
  padding: 15px 15.5%;
}

.nav-brand img {
  width: 100%;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.sexy-menu.detached .header-call {
  margin-top: 8px;
}

/* .top-container {
  background-color: #fff;
} */

.desk-view {
  display: block !important;
}

.mob-view {
  display: none !important;
}

.hide-menu {
  display: none;
}



/************************************************** TOP MENU **************************************************/

.nav-menus-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 42px;
  padding-top: 1%;
}

.banner-contact {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--text-color);
  letter-spacing: 0;
  font-family: 'Poppins';
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/************************************************** BREDCUM **************************************************/

.bredcum-wraper {
  width: 100%;
  height: auto;
  padding: 10px 0;
  text-align: center;
  display: flex;
  margin: 0 auto;
  align-items: center;
  position: relative;
  z-index: 9;
}

.bredcum-container {
  width: auto;
  height: auto;
}

.bredcum-inner-wraper {
  display: flex;
  justify-content: center;
}

.bred-home {
  width: auto;
  height: auto;
  float: left;
}

.bred-home a,
.bred-home {
  width: auto;
  height: auto;
  float: left;
  font-family: 'Poppins';
  font-weight: normal;
  font-style: normal;
  font-display: swap;
  letter-spacing: 1px;
  line-height: 30px;
  text-transform: capitalize;
  color: var(--text-color);
}

.bred-home a {
  font-size: 1em;
}

.bred-home a:hover {
  color: var(--clr-red);
}

.bred-arrow {
  width: auto;
  height: auto;
  float: left;
  font-size: 0.85em;
  color: var(--text-color);
  line-height: 30px;
  padding-left: 8px;
  padding-right: 8px;
}

.bred-next {
  width: auto;
  height: auto;
  float: left;
  font-family: 'Poppins';
  font-weight: normal;
  font-style: normal;
  font-display: swap;
  font-size: 1em;
  letter-spacing: 1px;
  line-height: 30px;
  text-transform: capitalize;
  color: var(--text-color);
}



/************************************************** FOOTER **************************************************/

.footer-wraper {
  width: 100%;
  height: auto;
  padding: 50px 0 20px 0;
}

.footer-container {
  display: flex;
  justify-content: space-between;
}

.footer-logo-wraper {
  width: 10%;
  height: auto;
}

.footer-content-wraper {
  width: 80%;
  height: auto;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.footer-wraper-contact {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #d4d4d4;
  padding-bottom: 30px;
}

.icon-f {
  display: flex;
  gap: 8px;

  p {
    letter-spacing: 0.35px;
    color: #141414;
  }

  a {
    letter-spacing: 0.35px;
    color: #141414;
  }
}

.icon-f span {
  padding-top: 3px;
}

.footer-social-links ul {
  display: flex;
  gap: 20px;
  list-style: none;
}

.footer-social-links ul li a {
  color: var(--clr-purple);
  font-size: 1.1em;
}

.footer-wraper-links {
  display: flex;
  justify-content: space-between;
}

.footer-menu {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer-menu-title {
  border-right: 1px solid #d4d4d4;
  padding-right: 15px;
}

.footer-menu ul {
  display: flex;
  gap: 20px;
  list-style: none;
}

.footer-menu ul li {
  font-size: 1em;
}

.footer-menu ul li a {
  color: #141414;
}

.footer-bottom-container {
  text-align: right;
  font-size: 0.9em;

}

.copy-right {
  display: flex;
}


/* .footer-bottom-icons {
  width: 100%;
  height: auto;
  border-top: 1px solid #1b1b1b;
  border-bottom: 1px solid #1b1b1b;
}

.footer-mid {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: space-between;
  padding: 1em 0em;
}

.footer-social-links {
  display: flex;
  align-items: flex-end;
  gap: 15px;
}

.footer-social-links ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
  display: flex;
  align-items: center;
}

.footer-social-links ul li {
  margin-left: 1em;
  font-size: 1em;
}

.footer-social-links ul li:first-child {
  margin-left: 0;
}

.footer-social-links ul li a {
  color: var(--primary-clr);
  text-decoration: none;
  display: flex;
  font-size: 1.2em;
}

.footer-menu {
  width: auto;
  height: auto;
  display: flex;
}

.footer-address-container {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: space-between;
  padding: 25px 0px;
}

.footer-address {
  width: auto;
  height: auto;
  display: flex;
  justify-content: space-between;
}

.footer-menu ul li {
  width: auto;
  height: auto;
  float: left;
  padding: 0px 1em;
}

.icon-f {
  width: auto;
  height: auto;
  display: flex;
  align-items: flex-start;
}

.icon-f span {
  margin-right: 0.5em;
}

.footer-address-container .btm-link:nth-child(4) .icon-f {
  align-items: center;
}

.footer-menu-title {
  width: auto;
  height: auto;
  text-transform: uppercase;
  font-family: 'Poppins';
  font-weight: normal;
  font-style: normal;
  font-display: swap;
  font-size: 1em;
  letter-spacing: 1px;
  color: #e4e4e4;
  line-height: 1.8;
}

.footer-menu ul li a {
  width: auto;
  height: auto;
  text-transform: capitalize;
  font-family: 'Poppins';
  font-weight: normal;
  font-style: normal;
  font-display: swap;
  font-size: 1em;
  letter-spacing: 1px;
  color: #e4e4e4;
  line-height: 1.8;
}

.footer-menu ul li a:hover {
  color: #fff;
}

.footer-menu ul {
  width: auto;
  height: auto;
  margin: 0px;
  padding: 0px;
  list-style-type: none;
}

.footer-bottom-container {
  display: flex;
  justify-content: space-between;
}

.copy-right {
  width: auto;
  height: auto;
  float: left;
  font-family: 'Poppins';
  font-weight: normal;
  font-style: normal;
  font-display: swap;
  font-size: 0.875em;
  color: #bfbfbf;
  line-height: 60px;
  opacity: .8;
}

.copy-right span {
  font-family: 'Poppins';
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

.designed {
  width: auto;
  height: auto;
  float: right;
}

.designed-ido {
  float: right;
  height: auto;
  padding-left: 8px;
  padding-top: 15px;
  width: auto;
}

.designed p {
  width: auto;
  height: auto;
  float: right;
  font-family: 'Poppins';
  font-weight: normal;
  font-style: normal;
  font-display: swap;
  font-size: 0.875em;
  line-height: 60px;
  margin: 0;
  color: #bfbfbf;
  opacity: .8;
}

.designed p a {
  text-decoration: none;
  font-family: 'Poppins';
  font-weight: normal;
  font-style: normal;
  font-display: swap;
  font-size: 1em;
  color: #bfbfbf;
}

 */

/* .footer-wraper p {
  color: #2f2f2f;

} */

/* .footer-address-container .btm-link:nth-child(3) .icon-f:nth-child(1) {
  margin-bottom: 15px;
} */

/* .footer-logo img {
  filter: brightness(0) invert(1);
} */


/* .footer-mail-sec {
  display: flex;
  flex-direction: column;
  gap: 15px;
} */



.tc {
  text-align: center;
}

/************************************************** CONTACT FORM **************************************************/

.enquiry-cont {
  align-items: flex-start;
}

.welcome-container {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.enquiry-top {
  width: 100%;
  height: auto;
  padding: 30px 0px 70px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.enquire-pic {
  width: 53%;
  border-radius: 10px;
  overflow: hidden;
}

.enquiry-home {
  width: 44%;
  height: auto;
}

.enquiry-home-title {
  width: 100%;
  height: auto;
}

.title-enquiry {
  width: 100%;
  height: auto;
  font-size: 1.618em;
  color: var(--bg-color);
  font-family: 'Poppins';
  font-weight: 600;
  font-style: normal;
  font-display: swap;
  line-height: 1.14;
}

.title-enquiry-sub {
  font-size: 0.938em;
  color: var(--bg-color);
  font-family: 'Poppins';
  font-weight: normal;
  font-style: normal;
  font-display: swap;
  line-height: 1.5;
  margin-top: 10px;
}

.enquiry-form-outer {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 2;
  padding-top: 1.5em;
}

.enquiry-form-outer .user-box {
  position: relative;
  margin-right: 2%;
  width: 49%;
  float: left;
  margin-bottom: 15px;
}

.enquiry-form-outer .user-box:nth-child(2n + 2) {
  margin-right: 0%;
}

.enquiry-form-outer .user-box input,
.enquiry-form-outer .user-box select {
  width: 100%;
  padding: 0px 1em;
  font-size: .9em;
  color: var(--subtext-color);
  border: none;
  border: 1px solid var(--text-color);
  outline: none;
  background: transparent;
  border-radius: 10px;
  line-height: 55px;
  height: 55px;
}

.enqry-box input {
  line-height: 50px !important;
  height: 50px !important;
}

.enquiry-form-outer .user-box select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23666' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  background-size: 12px;
  padding-right: 45px;
  cursor: pointer;
}

.enquiry-form-outer .user-box select option {
  font-size: 1em;
  font-family: 'Poppins';
  font-weight: normal;
  font-style: normal;
  font-display: swap;
  padding: 20px 0;
}

.enquiry-form-outer .user-box input:focus~label,
.enquiry-form-outer .user-box input:valid~label {
  top: -7px;
  left: 0px;
  color: #fff;
  font-size: 10px;
  background-color: #000;
  padding: 0px 10px;
  line-height: 20px;
  border-radius: 5px;
  bottom: inherit;
}

.enquiry-form-outer .user-box select:focus~label,
.enquiry-form-outer .user-box select:valid~label {
  top: -7px;
  left: 0px;
  color: #fff;
  font-size: 10px;
  background-color: var(--clr-red);
  padding: 0px 10px;
  line-height: 20px;
  border-radius: 5px;
  bottom: inherit;
}

.enquiry-form-outer .user-box label {
  position: absolute;
  top: 0;
  left: 0;
  padding: 0px 1em;
  font-size: 1em;
  color: var(--subtext-color);
  pointer-events: none;
  transition: 0.5s;
  bottom: 0;
  line-height: 55px;
  background-color: transparent;
}

.enquiry-form-outer .enqry-box label {
  line-height: 50px;
}


.full-field {
  width: 100% !important;
  margin-right: 0% !important;
}

textarea:focus~.floating-label,
textarea:not(:placeholder-shown)~.floating-label,
input:not(:focus):valid~.floating-label {
  top: -7px;
  left: 0px;
  color: #fff;
  font-size: 10px;
  background-color: var(--clr-red);
  padding: 0px 10px;
  line-height: 20px;
  border-radius: 5px;
  bottom: inherit;
}

.scheme-des textarea {
  width: 100%;
  height: 185px;
  resize: none;
  padding: 10px 20px 0 20px;
  border: 1px solid #474747;
  font-size: 1em;
  color: var(--subtext-color);
  font-family: inherit;
  font-weight: normal;
  border-radius: 10px;
  background: transparent;
}

.enqry-box textarea {
  height: 100px !important;
}


.floating-label {
  position: absolute;
  pointer-events: none;
  left: 20px;
  top: 10px;
  transition: 0.2s ease all;
  color: #c3c3c3;
  font-size: 1em;
}

/* active state */
.floating-input:focus~.bar:before,
.floating-input:focus~.bar:after,
.floating-select:focus~.bar:before,
.floating-select:focus~.bar:after {
  width: 50%;
}

/* highlighter */
.highlight {
  position: absolute;
  height: 50%;
  width: 100%;
  top: 15%;
  left: 0;
  pointer-events: none;
  opacity: 0.5;
}

.submit-button {
  color: var(--bg-color);
  text-transform: uppercase;
  font-family: 'Poppins';
  font-weight: normal;
  font-style: normal;
  font-display: swap;
  font-size: 1em;
  cursor: pointer;
  transition: all 0.3s ease;
  background: var(--clr-red);
  border-radius: 10px;
  padding: 5px 20px;
}

.contact-btn:hover {
  transform: scale(1);
}

/* Wobble Horizontal */
@-webkit-keyframes hvr-wobble-horizontal {
  16.65% {
    -webkit-transform: translateX(8px);
    transform: translateX(8px);
  }

  33.3% {
    -webkit-transform: translateX(-6px);
    transform: translateX(-6px);
  }

  49.95% {
    -webkit-transform: translateX(4px);
    transform: translateX(4px);
  }

  66.6% {
    -webkit-transform: translateX(-2px);
    transform: translateX(-2px);
  }

  83.25% {
    -webkit-transform: translateX(1px);
    transform: translateX(1px);
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes hvr-wobble-horizontal {
  16.65% {
    -webkit-transform: translateX(8px);
    transform: translateX(8px);
  }

  33.3% {
    -webkit-transform: translateX(-6px);
    transform: translateX(-6px);
  }

  49.95% {
    -webkit-transform: translateX(4px);
    transform: translateX(4px);
  }

  66.6% {
    -webkit-transform: translateX(-2px);
    transform: translateX(-2px);
  }

  83.25% {
    -webkit-transform: translateX(1px);
    transform: translateX(1px);
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

.hvr-wobble-horizontal {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}

.hvr-wobble-horizontal:hover,
.hvr-wobble-horizontal:focus,
.hvr-wobble-horizontal:active {
  -webkit-animation-name: hvr-wobble-horizontal;
  animation-name: hvr-wobble-horizontal;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}

.button-out {
  display: flex;
  flex-direction: column;
  align-items: end;
}

#plus {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  width: 45px;
  height: 45px;
  cursor: pointer;
  background: var(--clr-red);
  border-radius: 50%;
  font-size: 1em;
}

#plus .desk-view {
  /* transform: rotate(90deg); */
  white-space: nowrap;
}

#popUp {
  position: fixed;
  right: 1.5%;
  bottom: 24%;
  width: 320px;
  background: #fff;
  border-radius: 10px;
  padding: 2% 1.2% 1%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  opacity: 0;
  visibility: hidden;
  transform-origin: bottom right;
  transform: translateY(30px) scale(0.8) rotate(6deg);
  filter: blur(6px);
  transition:
    transform .6s cubic-bezier(.34, 1.56, .64, 1),
    opacity .4s ease,
    filter .4s ease,
    visibility .4s;
  z-index: 10;
}

#popUp.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1) rotate(0deg);
  filter: blur(0);
}

#popUp .close {
  position: absolute;
  top: -5px;
  opacity: 1;
  left: -4%;
  color: #fff;
  font-family: inherit;
  font-weight: normal;
  font-size: 1.5em;
  cursor: pointer;
  background-color: #fff;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

#popUp .close i {
  color: var(--clr-red);
  font-size: 1em;
  margin-left: 0px;
}

.buttons {
  display: flex;
  gap: 10px;
  position: fixed;
  bottom: 160px;
  right: 45px;
  z-index: 9;
}

.whats-app-trigger {
  background-color: #25d366;
  color: white;
  border: none;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: waBounceAlways 2.5s infinite ease-in-out;
}

.whats-app-trigger svg {
  width: 25px;
  height: 25px;
}

@keyframes waBounceAlways {

  0%,
  100% {
    transform: translateY(0);
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
  }

  50% {
    transform: translateY(-10px);
    box-shadow: 0 10px 22px rgba(37, 211, 102, 0.4);
  }
}

.whats-app-trigger:hover {
  animation-play-state: paused;
  transform: scale(1.2);
}

.wa-popup-box {
  position: absolute;
  bottom: 75px;
  right: 0;
  width: 320px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
  display: none;
  overflow: hidden;
  animation: slideInUp 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.wa-popup-box.active {
  display: block;
}

.whats-app-container.popup-open .whats-app-trigger {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: scale(0);
  transition: all 0.3s ease;
}

.wa-popup-header {
  background-color: #075e54;
  color: white;
  padding: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.wa-profile-group {
  display: flex;
  align-items: center;
  gap: 12px;
}

.wa-avatar-icon {
  width: 36px;
  height: 36px;
  background: #ff6b00;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.wa-profile-text h4 {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
}

.wa-profile-text p {
  margin: 2px 0 0 0;
  font-size: 11px;
  opacity: 0.8;
  color: #fff;
}

.wa-close-popup {
  background: none;
  border: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
  opacity: 0.7;
}

.wa-close-popup:hover {
  opacity: 1;
}

.wa-popup-body {
  background: #efeae2;
  padding: 20px;
}

.wa-chat-bubble {
  background: white;
  padding: 12px;
  border-radius: 0 12px 12px 12px;
  margin-bottom: 15px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
}

.wa-chat-bubble p {
  margin: 0;
  font-size: 13px;
  color: #333;
  line-height: 1.4;
}

/* Action Button Inside Box */
.wa-submit-chat-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: #25d366;
  color: white;
  text-decoration: none;
  padding: 11px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 14px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: background 0.2s;
}

.wa-submit-chat-btn:hover {
  background-color: #20ba5a;
  color: #fff;
}

.wa-submit-chat-btn svg {
  width: 18px;
  height: 18px;
}

/* Popup Box Slide Up Entry */
@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(15px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile Screens */
@media (max-width: 480px) {
  .whats-app-container {
    bottom: 19%;
    right: 20px;
  }

  .wa-popup-box {
    width: 285px;
    right: 0;
  }
}


#plus::after {
  display: block;
  display: relative;
}

.side-form .form-group {
  margin-bottom: 12px;
}

.side-form-title {
  font-size: 1.7em;
  font-family: 'Poppins';
  font-weight: normal;
  font-style: normal;
  font-display: swap;
  color: var(--clr-red);
  line-height: 1;
  display: block;
}

/************************************************ WRAPER ***********************************************/

.main-wraper {
  width: 100%;
  height: auto;
  padding-top: 100px;
  position: relative;
}

.wraper {
  width: 100%;
  height: auto;
  padding-top: 70px;
  position: relative;
}

.d-container {
  width: 100%;
  padding-left: 16%;
  padding-right: 16%;
}

.container {
  width: 100%;
  padding-left: 5%;
  padding-right: 5%;
}

.banner-container {
  width: 100%;
  padding: 0 16%;
}

.tc {
  text-align: center;
}

/************************************************ BANNER ***********************************************/

.banner-wraper {
  position: relative;
  width: 100%;
  height: auto;
  z-index: 9;
  overflow: hidden;
  margin-top: 80px;
  padding: 0 1.5%;
}

.banner-caption {
  position: absolute;
  left: 16%;
  bottom: 5%;
}

.banner-caption-top {
  font-size: 2.286em;
  font-family: 'Poppins';
  font-weight: 500;
  font-style: normal;
  font-display: swap;
  color: var(--bg-color);
}

.banner-caption-btm {
  display: flex;
  align-items: flex-start;
  line-height: .6;
}

.banner-caption-btm-left {
  font-size: 2.286em;
  font-family: 'Poppins';
  font-weight: 500;
  font-style: normal;
  font-display: swap;
  color: var(--bg-color);
}

.banner-caption-btm-right {
  font-size: 7.384em;
  font-family: 'Poppins';
  font-weight: 600;
  font-style: normal;
  font-display: swap;
  color: var(--bg-color);
  line-height: .6;
}

.banner-slider .owl-nav {
  display: none;
}

.custom-banner-nav {
  position: absolute;
  right: 16%;
  bottom: 5%;
  display: flex;
  gap: 5px;
  z-index: 100;
}

.custom-prev,
.custom-next {
  width: 50px;
  height: 28px;
  border-radius: 10px;
  background: var(--bg-color);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: .3s;
  box-shadow: 0 8px 20px rgba(0, 0, 0, .15);
}

.custom-prev:hover,
.custom-next:hover {
  background: var(--clr-purple);
}

.custom-prev:hover img,
.custom-next:hover img {
  filter: brightness(0) invert(1);
}



/************* About Sec *************/

.abt-sec-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.abt-left {
  width: 36%;
  height: auto;
}

.abt-mid {
  width: 23%;
  height: auto;
}

.abt-content {
  width: 28%;
  height: auto;
}

.abt-wel-title {
  font-size: 1.286em;
  margin-bottom: 5px;
}

.abt-title {
  font-size: 1.714em;
  line-height: 1.1;
  color: var(--clr-purple);
  font-weight: 500;
}

.abt-content p {
  line-height: 1.8;
  color: var(--subtext-color);
  margin: 10px 0 15px 0;
}

.abt-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 25px;
  background-color: var(--clr-red, #e0241b);
  border: none;
  outline: none;
  cursor: pointer;
  overflow: hidden;
}

.abt-btn .text-container {
  position: relative;
  display: block;
  height: 1.2em;
  overflow: hidden;
}

.abt-btn .text-row {
  display: flex;
  white-space: nowrap;
}

.abt-btn .text-row.hover {
  position: absolute;
  top: 0;
  left: 0;
}

.abt-btn .text-row span {
  display: inline-block;
  height: 1.2em;
  line-height: 1.2em;
  color: #fff;
  transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
  transition-delay: calc(var(--i) * 0.025s);
}

.abt-btn .text-row.hover span {
  transform: translateY(100%);
}

.abt-btn:hover .text-row.default span {
  transform: translateY(-100%);
}

.abt-btn:hover .text-row.hover span {
  transform: translateY(0%);
}




/************* Feature Section *************/

.features-wraper {
  width: 100%;
  padding-top: 40px;
}

.features-sec-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 40px 0;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-right: 35px;
  position: relative;
}

.feature-item:last-child {
  padding-right: 0;
}

.feature-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 35px;
  width: 1px;
  background-color: #c2c2c2;
}

.feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-text {
  line-height: 1.1;
  color: #141414;
}



/************* Office Bearers *************/


/* Base Section Setup */
.office-bearers-section {
  background-color: #f6f6f6;
  padding: 50px 0;
}

.section-title {
  color: var(--clr-purple);
  font-size: 1.714em;
  font-weight: 500;
  margin-bottom: 40px;
}

.team-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
  margin-bottom: 50px;
}

.team-card {
  width: 23.5%;
  height: auto;
  background: transparent;
  display: flex;
  flex-direction: column;
}

.team-img-wrapper {
  position: relative;
  width: 100%;
  /* aspect-ratio: 4 / 3.8; */
  background-color: #e9ecef;
  overflow: hidden;
}

.team-img-wrapper .badge {
  position: absolute;
  bottom: 15px;
  left: 15px;
  background-color: var(--clr-purple);
  color: #ffffff;
  font-size: 0.943em;
  padding: 5px 12px;
}

.team-card-details {
  padding: 10px 0 0 10px;
  border-left: 2px solid var(--clr-red);
  margin-top: 10px;
}

.team-card-details .member-name {
  font-size: 1.143em;
  color: #141414;
  margin: 0 0 4px 0;
}

.team-card-details .member-designation {
  font-size: 1em;
  color: #141414;
  font-weight: 300;
}

.cta-wrapper {
  text-align: center;
  margin-top: 8%;
}

.office-bearers-section .abt-btn {
  background-color: var(--clr-purple);
}




/************* CTA section *************/

.cta-wraper {
  width: 100%;
  position: relative;
  overflow: hidden;
  margin-top: 50px;
}

.cta-inner {
  background-color: var(--clr-red);
  background-image: url(../images/home-cta-banner.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 50px 0 40px 0;
  text-align: center;
  box-sizing: border-box;
}

.cta-title {
  color: #ffffff;
  font-size: 2.963em;
  font-weight: 500;
  margin: 0 0 12px 0;
  letter-spacing: -0.5px;
  line-height: 1.1;
}

.cta-subtitle {
  color: #ffffff;
  margin: 0 0 28px 0;
}

.cta-wraper .abt-btn {
  padding: 12px 22px;
  background-color: #eeeeee;
  color: var(--clr-red);
}

.cta-wraper .abt-btn .text-row span {
  color: var(--clr-red);
}




/************************************************ Directory Page ***********************************************/


.inner-banner-wraper {
  position: relative;
  width: 100%;
  height: auto;
  z-index: 9;
  overflow: hidden;
  margin-top: 80px;
}

.innerbanner-cap-wraper {
  position: absolute;
  inset: 0;
  text-align: center;
  align-content: center;
}

.innerbanner-caption {
  font-size: 2.143em;
  font-weight: 500;
  color: #fff;
}



.school-cards-section {
  width: 100%;
  padding: 60px 0;
}

.cards-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}

.school-card {
  width: 23.5%;
  background-color: var(--clr-purple);
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-sizing: border-box;
}

.school-name {
  color: var(--txt-white);
  font-size: 1.299em;
  line-height: 1.4;
  letter-spacing: 0.2px;
  text-transform: uppercase;
  margin: 0 0 18px 0;
}

.principal-box {
  background-color: #ffffff;
  width: 75%;
  padding: 14px 10px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 25px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.designation-label {
  color: #141414;
}

.principal-name {
  color: var(--clr-purple);
  font-size: 1.095em;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.phone-container {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.phone-link {
  color: var(--txt-white);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 25px;
  transition: color 0.3s ease;
  opacity: 1;
}

.phone-link:hover {
  color: #ffffffc7;
}







/************************************************ About Page ***********************************************/


.abt-page-left {
  width: 53%;
  height: auto;
}

.abt-page-left p {
  line-height: 1.8;
  color: #363636;
  margin-top: 15px;
}

.abt-page-right {
  width: 40%;
  height: auto;
  display: flex;
  justify-content: space-between;
}

.abtpage-img {
  width: 49%;
  height: 480px;
}

.abtpage-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.mission-vision-wraper {
  padding: 50px 0;
}

.mission-vision-inner {
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 20px;
}

.vision-item,
.mission-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 12px;

  p {
    color: var(--txt-white);
    line-height: 1.6;
  }
}

.vision-item {
  background-color: #ff0000;
}

.mission-item {
  background-color: #190a85;
}

.vision-title,
.mission-title {
  background-color: var(--bg-color);
  padding: 20px;
  font-size: 1.286em;
}

.vision-title {
  color: var(--clr-red);
}

.mission-title {
  color: var(--clr-purple);
}



.advisory-board {
  max-width: 86%;
  margin: 50px auto 0;
  padding-bottom: 70px;
}

.advisory-board_grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.board-card {
  width: 18.5%;
  display: flex;
  flex-direction: column;
}

.board-card_photo-wrap {
  background: #f6f6f6;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.board-card_info {
  border-left: 2px solid var(--clr-red);
  padding: 0 0 0 12px;
  margin-top: 14px;
}

.board-card_name {
  font-size: 1.143em;
  color: #141414;
  margin: 0 0 4px 0;
}

.board-card_role {
  font-size: 1em;
  color: #141414;
  font-weight: 300;
  line-height: 1.4;
  margin: 0;
}




/************************************************ Contact Page ***********************************************/


.contact-deatails-wraper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 66%;
  margin: auto;
  border-radius: 26px;
  background-color: var(--clr-purple);
  background-image: url(../images/contact-details-bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.contact-deatails-box {
  width: 50%;
  text-align: center;
  padding: 35px 20px;

  a {
    color: #fff;
  }

  p {
    color: #fff
  }
}

.contact-deatails-box a:hover {
  color: #ffffffc9;
  letter-spacing: 1px;
}


.contact-icon img {
  filter: brightness(0) invert(1);
}

.location-btn {
  margin-top: 35px;
  text-align: center;
}

/******************** Form Section ************************/

.form-wraper {
  display: flex;
  justify-content: center;
  gap: 48px;
  align-items: center;
}

.form-container {
  width: 50%;
  height: auto;
}

.form-title {
  font-size: 2.5em;
  font-weight: 500;
  color: var(--clr-purple);
  margin: 0 0 10px 0;
  opacity: 0;
  transform: translateY(10px);
  animation: fadeUp 0.6s ease forwards;
}

.form-row {
  display: flex;
  gap: 16px;
}

.field {
  position: relative;
  margin-bottom: 22px;
  flex: 1;
  opacity: 0;
  transform: translateY(10px);
  animation: fadeUp 0.5s ease forwards;
}

.field:nth-of-type(1) {
  animation-delay: 0.18s;
}

.field:nth-of-type(2) {
  animation-delay: 0.24s;
}

.field:nth-of-type(3) {
  animation-delay: 0.30s;
}

.field:nth-of-type(4) {
  animation-delay: 0.36s;
}

.field label {
  position: absolute;
  left: 15px;
  top: 15px;
  font-size: 1em;
  font-weight: 500;
  color: var(--subtext-color);
  background: transparent;
  padding: 0 4px;
  pointer-events: none;
  transform-origin: left top;
  transition: transform 0.22s cubic-bezier(0.4, 0, 0.2, 1),
    color 0.22s ease,
    background 0.22s ease;
}

.field textarea+label {
  top: 15px;
}

.field input,
.field textarea {
  width: 100%;
  border: 1.5px solid transparent;
  border-radius: 10px;
  padding: 15px 14px 11px 14px;
  font-size: 1em;
  font-family: inherit;
  background: transparent;
  color: var(--text-color);
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.15s ease;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
  border: 1px solid var(--clr-purple);
}

.field textarea {
  resize: vertical;
  min-height: 160px;
  font-family: inherit;
  padding-top: 22px;
}

.field input:hover,
.field textarea:hover {
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
}

.field input:focus,
.field textarea:focus {
  border-color: var(--clr-purple);
  box-shadow: 0 0 0 4px rgba(74, 31, 184, 0.12);
  transform: translateY(-1px);
}

/* float label up when focused, or when the field already has a value */
.field input:focus~label,
.field input:not(:placeholder-shown)~label,
.field textarea:focus~label,
.field textarea:not(:placeholder-shown)~label {
  transform: translateY(-25px) scale(0.82);
  color: var(--clr-purple);
  background: var(--bg-color);
}

.field input:not(:focus):not(:placeholder-shown)~label,
.field textarea:not(:focus):not(:placeholder-shown)~label {
  color: var(--clr-purple);
}

/* underline sweep effect */
.field-underline {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: -1px;
  height: 2px;
  background: var(--clr-purple);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
  pointer-events: none;
}

.field input:focus~.field-underline,
.field textarea:focus~.field-underline {
  transform: scaleX(1);
}

.submit-btn {
  width: 100%;
  background: var(--clr-purple);
  color: #fff;
  font-size: 1.143em;
  font-weight: 500;
  letter-spacing: 0.2px;
  border: none;
  border-radius: 10px;
  padding: 15px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: background 0.25s ease, transform 0.15s ease, box-shadow 0.25s ease;
  opacity: 0;
  transform: translateY(10px);
  animation: fadeUp 0.5s ease 0.42s forwards;
}

.submit-btn:hover {
  background: var(--clr-purple);
  box-shadow: 0 8px 20px rgba(74, 31, 184, 0.35);
  transform: translateY(-2px);
}

.submit-btn:active {
  transform: translateY(0);
}

.submit-btn.loading {
  pointer-events: none;
  color: transparent;
}

.submit-btn.loading::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  top: 50%;
  left: 50%;
  margin: -9px 0 0 -9px;
  border: 2.5px solid rgba(255, 255, 255, 0.35);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

.submit-btn.success {
  background: #1f9d55;
}

/* ---------- RIGHT: IMAGE ---------- */
.form-photo-wrap {
  width: 40%;
  height: auto;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  opacity: 0;
  transform: translateY(14px) scale(0.98);
  animation: fadeUp 0.7s ease 0.15s forwards;
}


@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.field-error input,
.field-error textarea {
  animation: shake 0.4s ease;
  /* border-color: #d33 !important; */
}

@keyframes shake {

  0%,
  100% {
    transform: translateX(0);
  }

  20% {
    transform: translateX(-6px);
  }

  40% {
    transform: translateX(6px);
  }

  60% {
    transform: translateX(-4px);
  }

  80% {
    transform: translateX(4px);
  }
}

@media (max-width: 800px) {
  .coach-section {
    grid-template-columns: 1fr;
  }

  .coach-photo-wrap {
    order: -1;
    aspect-ratio: 16 / 10;
  }
}

@media (max-width: 480px) {
  .form-row {
    flex-direction: column;
    gap: 0;
  }
}




/************************************************ Gallery Page ***********************************************/

/* ---------- FILTER BAR ---------- */
.filter-bar {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 36px;
  padding: 14px;
  border-radius: 8px;
  flex-wrap: wrap;
}

.filter-btn {
  border: 1px solid #e5e5e5;
  background: #fff;
  color: #8c8c8c;
  font-size: 1em;
  font-weight: 500;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  padding: 10px 22px;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.15s ease;
}

.filter-btn:hover {
  color: #262626;
  border-color: #ccc;
  transform: translateY(-1px);
}

.filter-btn.active {
  background: var(--clr-red);
  border-color: var(--clr-red);
  color: #fff;
}

/* ---------- MASONRY GRID ---------- */
.gallery-grid {
  column-count: 4;
  column-gap: 14px;
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 14px;
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  background: #f0f0f0;
  cursor: pointer;
  opacity: 1;
  transform: scale(1);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.gallery-item.hidden {
  display: none;
}

.gallery-item img {
  width: 100%;
  display: block;
  transition: transform 0.4s ease, filter 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.06);
  filter: brightness(0.85);
}

.item-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  background: rgba(20, 20, 20, 0.15);
}

.gallery-item:hover .item-overlay {
  opacity: 1;
}

.play-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(0.85);
  transition: transform 0.3s ease;
}

.gallery-item:hover .play-icon {
  transform: scale(1);
}

.play-icon::after {
  content: "";
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 16px solid #e8533f;
  margin-left: 4px;
}

.zoom-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(0.85);
  transition: transform 0.3s ease;
}

.gallery-item:hover .zoom-icon {
  transform: scale(1);
}

.zoom-icon svg {
  width: 18px;
  height: 18px;
  stroke: #e8533f;
  fill: none;
  stroke-width: 2.4;
}

@media (max-width: 1000px) {
  .gallery-grid {
    column-count: 3;
    gap: 10px;
  }

  .gallery-item {
    margin-bottom: 6px;
  }

}

@media (max-width: 768px) {
  .gallery-grid {
    column-count: 2;
    gap: 6px;
  }

  .gallery-item {
    margin-bottom: 6px;
  }
}










/************* scroll animation *************/

.reveal {
  opacity: 0;
  visibility: hidden;
  transform: translateY(40px);
  /* default subtle movement */
  transition:
    opacity 0.6s ease,
    transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ACTIVE STATE */
.reveal.active {
  opacity: 1;
  visibility: visible;
  transform: translate(0, 0);
}

/* SLIDE UP */
.reveal.slide-up {
  transform: translateY(60px);
}

.reveal.slide-up.active {
  transform: translateY(0);
}

/* SLIDE RIGHT */
.reveal.slide-right {
  transform: translateX(60px);
}

.reveal.slide-right.active {
  transform: translateX(0);
}

/* SLIDE LEFT */
.reveal.slide-left {
  transform: translateX(-60px);
}

.reveal.slide-left.active {
  transform: translateX(0);
}

/* FADE IN */
.reveal.fade-in {
  opacity: 0;
  transform: scale(0.98);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.fade-in.active {
  opacity: 1;
  transform: scale(1);
}



@media (min-width: 1023px) and (max-width: 1279px) {

  body,
  li {
    font-size: 13px !important;
  }

  .d-container {
    width: 100%;
    padding-left: 4%;
    padding-right: 4%;
  }

  .whats-app {
    width: 40px;
    height: 40px;
  }

  #plus {
    font-size: 1.25em;
  }


  #popUp {
    padding: 3.5% 3% 2%;
  }

  .side-form-title {
    margin-bottom: 10px;
  }

  .enquiry-form-outer {
    padding-top: .5em;
  }


  /********************** Home *************************/

  .navigation {
    padding: 15px 12%;
  }

  .nav-menus-wrapper {
    padding-top: 1.5%;
  }

  .nav-menu>li>a {
    margin: 0 15px;
  }

  .nav-brand img {
    width: 80%;
  }

  .banner-wraper {
    margin-top: 70px;
  }

  .banner-caption {
    left: 7%;
    bottom: 8%;
  }

  .banner-caption-top {
    font-size: 2em;
  }

  .banner-caption-btm-right {
    font-size: 4em;
  }

  .custom-banner-nav {
    right: 7%;
    bottom: 7%;
  }

  .abt-sec-inner {
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
  }

  .abt-left {
    width: 50%;
  }

  .abt-mid {
    width: 45%;
  }

  .abt-content {
    width: 100%;
    text-align: center;
  }

  .abt-title br {
    display: none;
  }

  .features-sec-inner {
    justify-content: center;
    row-gap: 45px;
    column-gap: 25px;
  }

  .feature-item {
    padding-right: 15px;
    width: 31%;
  }

  .feature-text br {
    display: none;
  }

  .feature-item:nth-child(3)::after {
    display: none;
  }

  .feature-item:nth-child(3) {
    padding-right: 0;
  }

  .team-grid {
    gap: 15px;
  }

  .team-img-wrapper .badge {
    bottom: 6px;
    left: 8px;
    font-size: 0.9em;
  }

  .member-designation br {
    display: none;
  }

  .cta-title {
    font-size: 2em;
  }

  .footer-container {
    align-items: center;
  }

  .footer-content-wraper {
    width: 85%;
    gap: 20px;
  }

  .footer-wraper-contact {
    padding-bottom: 20px;
  }

  /********************* About Page *************************/

  .innerbanner-caption {
    font-size: 1.5em;
  }

  .main-wraper {
    padding-top: 40px;
  }

  .abt-page-left {
    width: 45%;
  }

  .abt-page-right {
    width: 52%;
  }

  .mission-vision-inner {
    grid-template-columns: 1fr 1fr;
  }

  .advisory-board {
    max-width: 100%;
    padding-bottom: 0;
  }

  .advisory-board_grid {
    padding: 0 4%;
    gap: 12px;
  }

  .section-title {
    margin-bottom: 25px;
  }


  /******************** Directory Page **********************/

  .cards-container {
    gap: 15px;
  }

  .school-card {
    width: 32%;
  }

  .school-cards-section {
    padding: 40px 0 0 0;
  }


  /******************** contact Page **********************/

  .contact-deatails-wraper {
    width: 75%;
  }

  .contact-deatails-box p br {
    display: none;
  }

  .form-wraper {
    gap: 25px;
  }

  .field {
    margin-bottom: 15px;
  }

  .field input,
  .field textarea {
    padding: 10px;
  }

  .field label {
    top: 12px;
  }

  .form-row {
    gap: 6px;
  }

  .form-title {
    font-size: 1.8em;
    margin: 0 0 5px 0;
  }

  .location-btn {
    margin-top: 20px;
  }

  .footer-social-links ul li a {
    font-size: 1.3em;
  }


}

@media (min-width: 1280px) and (max-width: 1359px) {

  body,
  li {
    font-size: 14px !important;
  }

  .d-container {
    width: 100%;
    padding-left: 5%;
    padding-right: 5%;
  }

  .whats-app {
    width: 50px;
    height: 50px;
    font-size: 1.5em;
  }

  #plus {
    font-size: 1.1em;
  }

  .whats-app a i {
    font-size: 1.3em;
  }

  #popUp {
    padding: 3% 2% 1.5%;
  }

  .enquiry-form-outer {
    padding-top: 1em;
  }

  /*********************** Home page ****************************/

  .navigation {
    padding: 15px 15%;
  }

  .nav-menus-wrapper {
    padding-top: 1.5%;
  }

  .banner-caption {
    left: 14%;
    bottom: 8%;
  }

  .banner-caption-btm-right {
    font-size: 5em;
  }

  .custom-banner-nav {
    right: 15%;
    bottom: 7%;
  }

  .abt-content {
    width: 34%;
  }

  .feature-item {
    padding-right: 20px;
  }

  .team-grid {
    column-gap: 23px;
    row-gap: 30px;
  }

  .footer-content-wraper {
    gap: 20px;
  }

  .footer-wraper-contact {
    padding-bottom: 20px;
  }


  /****************** About Page ******************/

  .abt-page-right {
    width: 42%;
  }

  .main-wraper {
    padding-top: 60px;
  }

  .advisory-board {
    max-width: 90%;
    padding-bottom: 40px;
  }

  .advisory-board_grid {
    gap: 20px;
  }

  .board-card_role br {
    display: none;
  }


  /****************** Directory Page ******************/

  .school-card {
    width: 31%;
  }


}





@media (min-width: 1360px) and (max-width: 1399px) {

  body,
  li {
    font-size: 14px !important;
  }

  .d-container {
    width: 100%;
    padding-left: 7%;
    padding-right: 7%;
  }

  .whats-app {
    width: 50px;
    height: 50px;
    font-size: 1.75em;
  }

  #plus {
    font-size: 1.1em;
  }

  .whats-app a i {
    font-size: 1.2em;
  }

  #popUp {
    padding: 2.5% 2% 1.5%;
  }

  .enquiry-form-outer {
    padding-top: 1em;
  }


  /*********************** Home page ****************************/

  .navigation {
    padding: 15px 15%;
  }

  .nav-menus-wrapper {
    padding-top: 1.5%;
  }

  .banner-caption {
    left: 14%;
    bottom: 8%;
  }

  .banner-caption-btm-right {
    font-size: 5em;
  }

  .custom-banner-nav {
    right: 15%;
    bottom: 7%;
  }

  .abt-content {
    width: 34%;
  }

  .feature-item {
    padding-right: 20px;
  }

  .team-grid {
    column-gap: 23px;
    row-gap: 30px;
  }

  .footer-content-wraper {
    gap: 20px;
  }

  .footer-wraper-contact {
    padding-bottom: 20px;
  }


  /****************** About Page ******************/

  .abt-page-right {
    width: 42%;
  }

  .main-wraper {
    padding-top: 60px;
  }

  .advisory-board {
    max-width: 90%;
    padding-bottom: 40px;
  }

  .advisory-board_grid {
    gap: 20px;
  }

  .board-card_role br {
    display: none;
  }


  /****************** Directory Page ******************/

  .school-card {
    width: 31%;
  }


}

@media (min-width: 1400px) and (max-width: 1441px) {
  body {
    font-size: 15px !important;
  }

  li {
    font-size: 15px !important;
  }

  .d-container {
    width: 100%;
    padding-left: 6%;
    padding-right: 6%;
  }

  .whats-app {
    width: 50px;
    height: 50px;
    font-size: 1.75em;
  }

  #plus {
    font-size: 1.1em;
  }

  .whats-app a i {
    font-size: 1.2em;
  }

  #popUp {
    padding: 2.5% 2% 1.5%;
  }

  .enquiry-form-outer {
    padding-top: 1em;
  }


  /*********************** Home page ****************************/

  .nav-menus-wrapper {
    padding-top: 1.5%;
  }

  .banner-caption-btm-right {
    font-size: 5em;
  }

  .banner-caption {
    bottom: 8%;
  }

  .custom-banner-nav {
    bottom: 7%;
  }

  .abt-content {
    width: 34%;
  }

  .feature-item {
    padding-right: 20px;
  }

  .team-grid {
    gap: 23px;
  }

  .cta-wrapper {
    margin-top: 5%;
  }


  /******************* About Page *************************/

  .main-wraper {
    padding-top: 60px;
  }

  .abt-page-right {
    width: 42%;
  }

  .advisory-board_grid {
    gap: 20px;
  }


  .school-card {
    width: 32%;
  }


}

@media (min-width: 1441px) and (max-width: 1599px) {

  li,
  body {
    font-size: 15px !important;
  }

  .d-container {
    width: 100%;
    padding-left: 10%;
    padding-right: 10%;
  }

  .whats-app {
    width: 50px;
    height: 50px;
    font-size: 1.75em;
  }

  #plus {
    font-size: 1.1em;
  }

  /*********************** Home page ****************************/

  .nav-menus-wrapper {
    padding-top: 1.5%;
  }

  .banner-caption-btm-right {
    font-size: 5em;
  }

  .banner-caption {
    bottom: 8%;
  }

  .custom-banner-nav {
    bottom: 7%;
  }

  .abt-content {
    width: 34%;
  }

  .feature-item {
    padding-right: 20px;
  }

  .team-grid {
    gap: 23px;
  }

  .cta-wrapper {
    margin-top: 5%;
  }


  /******************* About Page *************************/

  .main-wraper {
    padding-top: 60px;
  }

  .abt-page-right {
    width: 42%;
  }

  .advisory-board_grid {
    gap: 20px;
  }


  .school-card {
    width: 32%;
  }

}

@media (min-width:1600px) and (max-width:1680px) {
  body {
    font-size: 15px !important;
  }

  li {
    font-size: 15px !important;
  }

  .d-container {
    width: 100%;
    padding-left: 8%;
    padding-right: 8%;
  }

  .whats-app {
    width: 50px;
    height: 50px;
    font-size: 1.75em;
  }

  #plus {
    width: 50px;
    font-size: 1.1em;
  }

  .whats-app a i {
    font-size: 1.2em;
  }


  /*********************** Home page ****************************/

  .nav-menus-wrapper {
    padding-top: 1.5%;
  }

  .banner-caption-btm-right {
    font-size: 5em;
  }

  .banner-caption {
    bottom: 8%;
  }

  .custom-banner-nav {
    bottom: 7%;
  }

  .abt-content {
    width: 34%;
  }


  /******************* About Page *************************/

  .main-wraper {
    padding-top: 60px;
  }

  .abt-page-right {
    width: 42%;
  }

  .advisory-board_grid {
    gap: 20px;
  }

  .cards-container {
    gap: 18px;
  }

  .school-card {
    width: 23.8%;
  }


}


@media (min-width: 1681px) {}




@media (max-width: 768px) {

  .header-contact {
    display: none;
  }

  .submenu-indicator-chevron {
    border-color: transparent #fff #fff transparent !important;
  }

  .nav-dropdown {
    min-width: 100% !important;
  }

  .sexy-menu.detached {
    opacity: 1 !important;
    position: unset !important;
  }

  .navigation-portrait li {
    font-size: 18px !important;
  }

  .nav-brand img {
    display: flex;
    align-items: center;
  }

  .navigation-portrait .nav-brand {
    /* font-size: 18px; */
    line-height: 0 !important;
  }

  .navigation {
    padding: 0 16%;
  }

  .nav-header {
    background: transparent;
    padding: 5px 10px;
    border-radius: 10px;
    width: 100%;
    text-align: center;
  }

  .nav-header p {
    color: #394a44;
  }

  .logo img {
    width: 80%;
    max-width: 200px;
    display: block;
    margin: 0 auto;
    transition: width 0.4s ease;
  }

  /* .navigation {
    background-color: #0b3c5d;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    padding: 10px 3%;
  } */


  .desk-view {
    display: none !important;
  }

  .mob-view {
    display: block !important;
  }

  .nav-menu>li>a {
    color: #fff !important;
    text-align: left;
  }

  .nav-toggle,
  .navigation-hidden .nav-header {
    display: block !important;
  }


  /******************** Mobile NavBar *********************/

  .hide-menu {
    position: fixed;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
    background: var(--clr-purple);
    /* border: 1px solid var(--bg-color); */
    border-bottom: none;
    border-radius: 12px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    z-index: 99999;
    padding: 12px 0;
  }

  .hide-menu a {
    width: 25%;
    line-height: 1;
    font-size: .9em;
    display: inline-block;
    float: left;
    text-align: center;
    font-family: 'Poppins';
    font-weight: normal;
    font-style: normal;
    font-display: swap;
    /* color: rgba(0, 0, 0, 0.822); */
    color: rgb(250, 250, 250);
  }

  .hide-menu a i {
    display: block;
    justify-content: center;
    /* background-color: #394a44; */
    -webkit-background-clip: text;
    /* -webkit-text-fill-color: transparent; */
    margin: 0 auto 5px;
    font-size: 1.5em;
  }

  .hide-menu a:hover {
    color: #fff;
  }


  /* The Raised Center Section */
  .center-notch {
    position: relative;
    width: 80px;
    height: 65px;
    background: #fff;
    border: 1px solid var(--clr-red);
    border-radius: 50%;
    top: -35px;
    /* Lifts it above the bar */
    display: flex;
    justify-content: center;
    align-items: center;
  }

  /* Inner circle to hide the "cut" line of the main bar */
  .center-button {
    width: 60px;
    height: 60px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  /* The purple/pink square icon in the middle */
  .info-box {
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, #8a2be2, #c71585);
    /* background: linear-gradient(90deg, #f6bc8b 0%, #f6bc8b 40%, #f0d5b1 75%, #f0d5b1 100%); */
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-weight: bold;
    font-size: 28px;
    font-family: serif;
    box-shadow: 0 0 15px rgba(138, 43, 226, 0.5);
  }


  /******************** Mobile NavBar *********************/




  .sexy-menu.detached .header-phone a {
    margin: 12px 20px !important;
  }

  .sexy-menu.detached {
    position: fixed !important;
    top: 0px !important;
    /* top: inherit !important; */
    /* height: 100vh; */
    background-color: transparent !important;
    backdrop-filter: unset !important;
  }

  #button.show {
    display: none;
  }

  .buttons {
    right: 20px;
    flex-direction: column;
    gap: 30px;
  }

  .banner-num {
    display: none;
  }

  .banner-contact,
  .banner-mail {
    padding: 0;
    background-color: transparent;
    margin-left: 0;
    color: #fff;
  }

  .banner-contact i {
    color: #fff;
  }

  .nav-menu {
    flex-direction: column;
  }

  #popUp {
    padding: 3% 4% 3%;
  }

  .sexy-menu.detached .logo {
    /* width: 100%; */
    margin-top: 0;
  }

  .sexy-menu.detached .navigation {
    padding-top: 0;
    padding-bottom: 10px;
  }

  .sexy-menu.detached .nav-header {
    width: 100%;
    display: none;
  }

  .top-container {
    padding: 0 8px;
  }

  /* .navigation-portrait .nav-menus-wrapper.nav-menus-wrapper-open .nav-toggle {
    opacity: 0;
  } */

  .nav-menus-wrapper {
    align-items: flex-end;
  }

  .nav-menus-wrapper-close-button {
    margin: 0 10px 0 0 !important;
  }

  .main-wraper {
    padding-top: 40px;
  }

  .wraper {
    padding-top: 40px;
  }

  .smooth-scroll-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    will-change: transform;
  }

  .enquiry-form-outer {
    padding-top: 1em;
  }

  /***************** Home Page *******************/

  .banner-wraper {
    margin-top: 0;
    padding: 0;
  }

  .custom-banner-nav {
    display: none;
  }

  .banner-caption {
    left: 50%;
    bottom: 8%;
    transform: translateX(-50%);
    width: 100%;
    text-align: center;
  }

  .banner-caption-top,
  .banner-caption-btm-left {
    font-size: 2em;
  }

  .banner-caption-btm-right {
    font-size: 2em;
  }

  .banner-caption-btm {
    justify-content: center;
    gap: 3px;
  }

  .abt-sec-inner {
    flex-direction: column;
    gap: 20px;
  }

  .abt-left,
  .abt-content {
    width: 100%;
    text-align: center;
  }

  .abt-mid {
    display: none;
  }

  .features-sec-inner {
    justify-content: center;
    padding: 0;
    gap: 30px;
  }

  .feature-item {
    gap: 12px;
    padding-right: 0;
    width: 45%;
    flex-direction: column;
    text-align: center;
  }

  .feature-text br {
    display: none;
  }

  .feature-item:not(:last-child)::after {
    display: none;
  }

  .features-wraper {
    padding-bottom: 40px;
  }

  .office-bearers-section {
    padding: 40px 0;
  }

  .section-title {
    font-size: 1.5em;
    margin-bottom: 20px;
  }

  .team-grid {
    gap: 15px;
    margin-bottom: 15px;
  }

  .team-card-details .member-name {
    font-size: 1.1em;
  }

  .team-card-details .member-designation br {
    display: none;
  }

  .cta-title {
    font-size: 2em;
  }

  .cta-inner {
    background-position: unset;
    padding: 30px 20px;
  }

  .footer-wraper {
    padding: 40px 0 80px 0;
  }

  .footer-logo-wraper {
    display: none;
  }

  .btm-link {
    display: none;
  }

  .footer-icons {
    display: block;
  }

  .footer-content-wraper {
    width: 100%;
    gap: 20px;
  }

  .footer-wraper-contact {
    justify-content: center;
    padding-bottom: 20px;
  }

  .footer-menu {
    display: none;
  }

  .footer-wraper-links {
    display: unset;
  }

  .footer-bottom-container {
    display: flex;
    justify-content: space-between;
    font-size: 0.85em;
  }

  .nav-menu>li>a::after {
    display: none;
  }


  /******************************** About Page *************************************/

  .inner-banner-wraper {
    margin-top: 0;
  }

  .innerbanner-caption {
    font-size: 2em;
  }


  .abt-page-left {
    width: 100%;
    text-align: center;
  }

  .abt-page-right {
    width: 100%;
    flex-direction: column;
  }

  .abtpage-img {
    width: 100%;
  }

  .abtpage-img img {
    width: 100%;
  }

  .mission-vision-wraper {
    padding: 40px 0;
  }

  .mission-vision-inner {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .vision-item,
  .mission-item {
    gap: 10px;
    padding: 15px;
    flex-direction: column;
    text-align: center;
  }

  .vision-title,
  .mission-title {
    padding: 8px 20px;
    font-size: 1.286em;
  }

  .abtpage-img2 {
    display: none;
  }

  .advisory-board {
    max-width: 100%;
    margin: 40px auto 0;
    padding-bottom: 0;
  }

  .advisory-board_grid {
    gap: 15px;
  }

  .board-card_name {
    font-size: 1.1em;
  }

  .board-card_role br {
    display: none;
  }

  .team-img-wrapper .badge {
    bottom: 5px;
    left: 8px;
    font-size: 0.9em;
  }



  /******************************** Directory Page *************************************/

  .school-cards-section {
    padding: 40px 0 0 0;
  }

  /******************************** Gallery Page *************************************/

  .filter-bar {
    margin-bottom: 15px;
    padding: 14px 0;
  }

  .filter-btn {
    font-size: 1em;
    padding: 8px 14px;
  }

  /******************************** Contact Page *************************************/

  .contact-deatails-wraper {
    width: 100%;
    background-position: unset;
    flex-direction: column;
  }

  .contact-deatails-box {
    width: 100%;
    padding: 20px 18px;
  }

  /* .contact-deatails-box:nth-child(1) {
    order: 2;
  }

  .contact-deatails-box:nth-child(2) {
    order: 1;
  }

  .contact-deatails-box:nth-child(3) {
    order: 3;
  } */

  .form-wraper {
    gap: 25px;
    flex-direction: column;
  }

  .form-photo-wrap {
    display: none;
  }

  .form-container {
    width: 100%;
  }

  .form-title {
    font-size: 2em;
    text-align: center;
  }

}

@media (max-width: 380px) {

  .filter-btn {
    font-size: .9em;
    padding: 8px 12px;
  }

}



@media (max-width:420px) {
  body {
    font-size: 14px !important;
  }

  p {
    font-size: 1em;
  }

  .d-container {
    padding-left: 5%;
    padding-right: 5%
  }

  /* .nav-brand img {
        width: 50%;
    } */

  .sexy-menu {
    height: 75px;
  }

  .whats-app {
    right: -5px;
    bottom: 35vh;
  }

  .whats-app img {
    width: 40px;
  }

  #popUp {
    z-index: 9999
  }


  .side-form .form-group {
    margin-bottom: 8px;
  }

  #popUp {
    width: 280px;
    padding: 6% 7% 5% 7%;
    bottom: 14%;
  }

  .whats-app-trigger {
    width: 40px;
    height: 40px;
  }

  .whats-app-trigger svg {
    width: 24px;
    height: 24px;
  }

  #plus {
    width: 40px;
    height: 40px;
    font-size: 1.2em;
  }


  .team-img-wrapper .badge {
    bottom: 3px;
    left: 5px;
    font-size: 0.8em;
    padding: 4px 12px;
  }

  .vision-title,
  .mission-title {
    font-size: 1em;
  }

  .advisory-board_grid {
    padding: 0 5%;
  }

}

@media (max-width:460px) {}


@media (min-width:421px) and (max-width:460px) {

  body {
    font-size: 14px !important;
  }

  p {
    line-height: 1.8;
    font-size: 1em
  }

  .d-container {
    padding-left: 3%;
    padding-right: 3%
  }

  .nav-brand img {
    width: 85%;
  }

  .sexy-menu {
    height: 75px;
  }

  .whats-app {
    right: -5px;
    bottom: 35vh;
  }

  .whats-app img {
    width: 40px;
  }

  #popUp {
    z-index: 9999
  }


  .side-form .form-group {
    margin-bottom: 8px;
  }

  #popUp {
    width: 320px;
    padding: 8% 6% 4%;
    bottom: 14%;
  }

  .advisory-board_grid {
    padding: 0 4%;
  }
}

@media (max-width:560px) {

  .innerbanner-caption {
    font-size: 1.5em;
  }

  .school-card {
    width: 100%;
  }

  .team-card {
    width: 47%;
  }

  .board-card {
    width: 47.5%;
  }

}


@media (min-width:461px) and (max-width:560px) {

  body {
    font-size: 14px !important;
  }

  p {
    line-height: 1.8;
    font-size: 1em
  }

  .d-container {
    padding-left: 3%;
    padding-right: 3%
  }

  .sexy-menu {
    height: 75px;
  }

  #popUp {
    padding: 5% 5% 3%;
  }

  .whats-app {
    right: -5px;
    bottom: 35vh;
  }

  .whats-app img {
    width: 40px;
  }

  .footer-address-container {
    display: none;
  }

  #popUp {
    z-index: 9999
  }

  .side-form .form-group {
    margin-bottom: 8px;
  }

  .abt-title br {
    display: none;
  }

  .advisory-board_grid {
    padding: 0 4%;
  }


}


@media (min-width:561px) and (max-width:680px) {

  body {
    font-size: 14px !important;
  }

  p {
    font-size: 1em
  }

  .d-container {
    padding-left: 3%;
    padding-right: 3%
  }

  .sexy-menu {
    height: 75px;
  }

  .whats-app {
    right: -5px;
    bottom: 35vh;
  }

  .whats-app img {
    width: 40px;
  }

  .footer-address-container {
    display: none;
  }

  #popUp {
    z-index: 9999
  }

  .side-form .form-group {
    margin-bottom: 8px;
  }

  #popUp {
    padding: 4% 5% 4%;
    bottom: 13%;
  }


  .abt-title br {
    display: none;
  }

  .team-card {
    width: 31.5%;
  }

  .cards-container {
    gap: 12px;
  }

  .school-card {
    width: 48%;
  }

  .contact-deatails-wraper {
    background-position: center;
    flex-direction: row;
  }

  .contact-deatails-box {
    width: 50%;
    padding: 35px 0px;
  }

  .contact-deatails-box p br {
    display: none;
  }

  .advisory-board_grid {
    padding: 0 4%;
  }

  .board-card {
    width: 31.5%;
  }

}

@media (min-width:681px) and (max-width: 768px) {

  body {
    font-size: 14px !important;
  }

  .d-container {
    padding-left: 3%;
    padding-right: 3%
  }

  .nav-brand img {
    width: 100%;
    margin: 0 auto;
  }

  .innerpage .nav-brand img {
    width: 75%;
    margin: 0 auto;
  }

  .sexy-menu {
    height: 75px;
  }

  .whats-app {
    right: -5px;
    bottom: 35vh;
  }

  .whats-app img {
    width: 40px;
  }

  .footer-address-container {
    display: none;
  }

  #popUp {
    z-index: 9999
  }

  .side-form .form-group {
    margin-bottom: 8px;
  }

  #popUp {
    width: 320px;
    padding: 4% 3.5% 4%;
    bottom: 13%;
  }

  /******************/

  .banner-caption-top,
  .banner-caption-btm-left {
    font-size: 3em;
  }

  .banner-caption-btm-right {
    font-size: 3em;
  }

  .abt-title br {
    display: none;
  }

  .team-card {
    width: 31.5%;
  }

  .advisory-board_grid {
    padding: 0 4%;
  }

  .board-card {
    width: 31.5%;
  }

  .mission-vision-inner {
    grid-template-columns: 1fr 1fr;
  }

  .cards-container {
    gap: 15px;
  }

  .school-card {
    width: 48%;
  }

  .contact-deatails-wraper {
    background-position: center;
    flex-direction: row;
  }

  .contact-deatails-box {
    width: 50%;
    padding: 35px 0px;
  }

}



@media (min-width:769px) and (max-width:991px) {
  body {
    font-size: 14px !important;
  }

  .d-container {
    width: 100%;
    padding-left: 3%;
    padding-right: 3%
  }

  .nav-menu>li>a {
    margin: 7px 12px;
    font-size: .8em
  }

  .sexy-menu.detached .nav-brand img {
    margin-top: 0px;
    width: 40%;
  }

  .header-phone {
    padding: 5px 10px;
    border-radius: 10px;
    margin: 7px 0 0 7px !important
  }

  .sexy-menu.detached .nav-menu>li>a {
    margin: 21px 10px;
  }

  .sexy-menu.detached .header-phone {
    margin: 16px 18px !important;
  }

  .side-btn {
    font-size: .9em;
    right: -50px;
    line-height: 20px;
    letter-spacing: 1px;
  }

  #button {
    height: 40px;
    width: 40px;
    line-height: 40px;
    right: 15px;
  }

  .whats-app-trigger {
    width: 45px;
    height: 45px;
  }

  .whats-app-trigger svg {
    width: 26px;
    height: 26px;
  }

  #plus {
    bottom: 57%;
  }

  .whats-app {
    width: 40px;
  }

  #popUp {
    padding: 5% 3% 3%;
  }


  /********************************/

  .navigation {
    padding: 15px 8%;
  }

  .nav-brand img {
    width: 70%;
  }

  .banner-wraper {
    margin-top: 70px;
  }

  .banner-caption {
    left: 7%;
    bottom: 8%;
  }

  .banner-caption-top {
    font-size: 1.8em;
  }

  .banner-caption-btm-left {
    font-size: 1.8em;
  }

  .banner-caption-btm-right {
    font-size: 3em;
  }

  .custom-banner-nav {
    right: 7%;
    bottom: 7%;
  }

  .abt-sec-inner {
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
  }

  .abt-left {
    width: 50%;
  }

  .abt-mid {
    width: 45%;
  }

  .abt-content {
    width: 100%;
    text-align: center;
  }

  .abt-title br {
    display: none;
  }

  .features-sec-inner {
    justify-content: center;
    row-gap: 45px;
    column-gap: 25px;
  }

  .feature-item {
    padding-right: 15px;
    width: 31%;
  }

  .feature-text br {
    display: none;
  }

  .feature-item:nth-child(3)::after {
    display: none;
  }

  .feature-item:nth-child(3) {
    padding-right: 0;
  }

  .team-grid {
    gap: 15px;
  }

  .team-card {
    width: 31.5%;
  }

  .team-img-wrapper .badge {
    bottom: 6px;
    left: 8px;
    font-size: 0.9em;
  }

  .member-designation br {
    display: none;
  }

  .cta-title {
    font-size: 2em;
  }

  .cta-inner {
    background-position: unset;
  }

  .footer-container {
    flex-direction: column;
  }

  .footer-logo-wraper {
    width: 100%;
    text-align: center;
  }

  .footer-content-wraper {
    width: 100%;
  }

  .icon-f {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-menu-title {
    font-size: .9em;
    padding-right: 10px;
  }

  .footer-menu ul li {
    font-size: .9em;
  }

  .footer-menu {
    gap: 10px;
  }


  /********************* About Page *************************/

  .inner-banner-wraper {
    margin-top: 70px;
  }

  .innerbanner-caption {
    font-size: 2em;
  }

  .main-wraper {
    padding-top: 40px;
  }

  .abt-page-left {
    width: 100%;
    text-align: center;
  }

  .abt-page-right {
    width: 80%;
  }

  .vision-item,
  .mission-item {
    flex-direction: column;
    text-align: center;
  }

  .vision-title,
  .mission-title {
    padding: 8px 30px;
  }

  .advisory-board {
    max-width: 100%;
    padding-bottom: 0;
  }

  .advisory-board_grid {
    padding: 0 3%;
  }

  .board-card {
    width: 30.5%;
  }

  .section-title {
    margin-bottom: 25px;
  }

  .footer-icons {
    display: flex;
    align-items: center;
  }

  .school-card {
    width: 48%;
  }

  .school-cards-section {
    padding: 40px 0 0 0;
  }

  .contact-deatails-wraper {
    width: 100%;
  }

  .contact-deatails-box p br {
    display: none;
  }

  .form-wraper {
    gap: 25px;
  }

  .field {
    margin-bottom: 15px;
  }

  .field input,
  .field textarea {
    padding: 10px;
  }

  .field label {
    top: 12px;
  }

  .form-row {
    gap: 6px;
  }

  .form-title {
    font-size: 1.8em;
    margin: 0 0 5px 0;
  }

  .form-photo-wrap {
    width: 45%;
  }

  .field textarea {
    min-height: 140px;
  }

  .location-btn {
    margin-top: 20px;
  }

  .footer-bottom-container {
    font-size: 0.8em;
  }

}

@media (min-width:992px) and (max-width:1022px) {
  body {
    font-size: 14px !important;
  }

  .d-container {
    width: 100%;
    padding-left: 4%;
    padding-right: 4%
  }

  .nav-brand img {
    width: 56%;
    margin-top: 12px;
  }

  .nav-menu>li>a {
    margin: 10px 12px;
    font-size: .9em;
  }

  .sexy-menu.detached .nav-brand img {
    margin-top: 0px;
    width: 40%;
  }

  .header-phone {
    padding: 5px 10px;
    border-radius: 10px;
    margin: 10px 7px !important;
    margin-bottom: 0 !important;
  }

  .sexy-menu.detached .nav-menu>li>a {
    margin: 21px 10px;
  }

  .sexy-menu.detached .header-phone {
    margin: 16px 18px !important;
  }

  .whats-app img {
    width: 40px;
  }

  #button {
    height: 40px;
    width: 40px;
    line-height: 40px;
    right: 15px;
  }

  .whats-app-trigger {
    width: 48px;
    height: 48px;
  }

  .whats-app-trigger svg {
    width: 28px;
    height: 28px;
  }

  #plus {
    bottom: 57%;
  }

  #popUp {
    padding: 4% 2.5% 3%;
  }

  /********************** Home *************************/

  .navigation {
    padding: 15px 8%;
  }

  .nav-brand img {
    width: 70%;
  }

  .banner-caption {
    left: 7%;
    bottom: 8%;
  }

  .banner-caption-top {
    font-size: 1.8em;
  }

  .banner-caption-btm-left {
    font-size: 1.8em;
  }

  .banner-caption-btm-right {
    font-size: 3em;
  }

  .custom-banner-nav {
    right: 7%;
    bottom: 7%;
  }

  .abt-sec-inner {
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
  }

  .abt-left {
    width: 50%;
  }

  .abt-mid {
    width: 45%;
  }

  .abt-content {
    width: 100%;
    text-align: center;
  }

  .abt-title br {
    display: none;
  }

  .features-sec-inner {
    justify-content: center;
    row-gap: 45px;
    column-gap: 25px;
  }

  .feature-item {
    padding-right: 15px;
    width: 31%;
  }

  .feature-text br {
    display: none;
  }

  .feature-item:nth-child(3)::after {
    display: none;
  }

  .feature-item:nth-child(3) {
    padding-right: 0;
  }

  .team-grid {
    gap: 15px;
  }

  .team-img-wrapper .badge {
    bottom: 6px;
    left: 8px;
    font-size: 0.9em;
  }

  .member-designation br {
    display: none;
  }

  .cta-title {
    font-size: 2em;
  }

  .cta-inner {
    background-position: unset;
  }

  .footer-container {
    align-items: center;
  }

  .footer-content-wraper {
    width: 85%;
    gap: 20px;
  }

  .footer-wraper-contact {
    padding-bottom: 20px;
  }

  /********************* About Page *************************/


  .innerbanner-caption {
    font-size: 2em;
  }

  .main-wraper {
    padding-top: 40px;
  }

  .abt-page-left {
    width: 100%;
    text-align: center;
  }

  .abt-page-right {
    width: 80%;
  }

  .mission-vision-inner {
    grid-template-columns: 1fr 1fr;
  }

  .vision-item,
  .mission-item {
    flex-direction: column;
    text-align: center;
    padding: 25px;
  }

  .vision-title,
  .mission-title {
    padding: 8px 30px;
  }

  .advisory-board {
    max-width: 100%;
    padding-bottom: 0;
  }

  .advisory-board_grid {
    padding: 0 3%;
  }

  .board-card {
    width: 30.5%;
  }

  .section-title {
    margin-bottom: 25px;
  }

  .school-card {
    width: 48%;
  }

  .school-cards-section {
    padding: 40px 0 0 0;
  }


  /******************** contact Page **********************/

  .contact-deatails-wraper {
    width: 75%;
  }

  .contact-deatails-box p br {
    display: none;
  }

  .form-wraper {
    gap: 25px;
  }

  .field {
    margin-bottom: 15px;
  }

  .field input,
  .field textarea {
    padding: 10px;
  }

  .field label {
    top: 12px;
  }

  .form-row {
    gap: 6px;
  }

  .form-title {
    font-size: 1.8em;
    margin: 0 0 5px 0;
  }

  .location-btn {
    margin-top: 20px;
  }


  .footer-bottom-container {
    font-size: 0.8em;
  }

}




@media (max-width:992px) {
  #button {
    display: none;
  }
}