@charset "utf-8";

/* Font Css Design */

@font-face {
  font-family: 'myFirstFont';
  src: url('../fonts/Nunito-Regular.ttf') format(TrueType);
}

@font-face {
  font-family: 'myFirstFontBold';
  src: url('../fonts/Nunito-Bold.ttf') format(TrueType);
}

@font-face {
  font-family: 'myFirstFontBlack';
  src: url('../fonts/Nunito-Black.ttf') format(TrueType);
}

@font-face {
  font-family: 'myFirstFontExtraBold';
  src: url('../fonts/Nunito-ExtraBold.ttf') format(TrueType);
}

@font-face {
  font-family: 'myFirstFontSemiBold';
  src: url('../fonts/Nunito-SemiBold.ttf') format(TrueType);
}

@font-face {
  font-family: 'myFirstFontMedium';
  src: url('../fonts/Nunito-Medium.ttf') format(TrueType);
}

@font-face {
  font-family: 'myFirstFontLight';
  src: url('../fonts/Nunito-Light.ttf') format(TrueType);
}

@font-face {
  font-family: 'myFirstFontExtraLight';
  src: url('../fonts/Nunito-ExtraLight.ttf') format(TrueType);
}


/* common css */

* {
  margin: 0px;
  padding: 0px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  width: 100%;
  height: 100%;
  margin: 0px;
  padding: 0px;
  scroll-behavior: smooth;
}

body {
  margin: 0px;
  padding: 0px;
  background: #fff;
  overflow-x: hidden;
}

p,
li {
  margin: 0px;
  padding: 0px;
  padding-bottom: 10px;
  line-height: 1.5;
  font-size: 15px;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0px;
  padding: 0px;
}

a {
  text-decoration: none;
  border: 0px;
  outline: none;
  transition: all .5s;
}

a img {
  border: none;
  outline: none;
}

a:focus {
  outline: none;
}

border {
  border-collapse: collapse;
}

hr {
  height: 1px;
  background: #333333;
  border: none;
}

.left {
  float: left;
}

.right {
  float: right;
}

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

::-moz-selection {
  color: #fff;
  background: var(--main-clr);
}

::selection {
  color: #fff;
  background: var(--main-clr);
}

button,
input,
select,
option,
textarea {
  outline: 0 !important;
  pointer-events: all;
  font-size: 100%;
}

.bg_img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

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

.heading p {
  font-family: 'myFirstFontBold';
  font-size: 15px;
  line-height: 25px;
  padding-bottom: 10px;
  text-transform: uppercase;
}

.heading h2 {
  font-family: 'myFirstFontExtraBold';
  font-size: 45px;
  line-height: 55px;
  color: var(--main-clr);
  margin-bottom: 10px;
  position: relative;
}

.heading h3 {
  font-family: 'myFirstFontExtraBold';
  font-size: 35px;
  line-height: 45px;
  color: #000;
  margin-bottom: 10px;
  position: relative;
}

.txt_center {
  text-align: center;
}

.txt_center h2::before,
.txt_center h3::before {
  left: 50%;
  transform: translateX(-50%);
}

::placeholder {
  font-family: 'myFirstFont';
  color: #000;
  opacity: 1;
  text-transform: uppercase;
}

.form_design {
  width: 80%;
  margin: 0 auto;
  font-family: 'myFirstFont';
}

.form_design :is(input:not([type=radio]):not([type=checkbox]):not([type=submit]), select, textarea) {
  border: none;
  border-radius: 0px;
  background-color: rgb(255 255 255);
  padding: 15px 8px;
  color: #000;
  width: 100%;
  font-size: 13px;
  margin: 10px 0;
  font-family: 'myFirstFontBold';
}

.form_design textarea {
  height: 100px;
}

.form_design option {
  color: #000;
}

.form_design input[type=submit] {
  cursor: pointer;
  font-family: 'myFirstFont';
  padding: clamp(12px, 1.05vw, 20px);
  color: #000;
  display: inline-block;
  transition: 0.6s;
  z-index: 2;
  position: relative;
  background: url(../images/btn_bg_img2.webp) center / 100% 100% no-repeat;
  overflow: hidden;
  border: 0;
  font-family: var(--body-font);
  text-decoration: none;
  font-size: var(--btn-font-size);
  border-radius: 0px;
  font-weight: bold;
  min-width: clamp(150px, 10.46vw, 180px);
  text-align: center;
  letter-spacing: 1px;
}

.form_design ::placeholder {
  color: #000;
  opacity: 1;
  font-family: 'myFirstFontBold';
  text-transform: capitalize;
}

.form_design .btn-main:hover {
  color: #fff;
  background: url(../images/btn_bg_img3.webp) center / 100% 100% no-repeat;
}



/* --variables-- */

:root {
  --body-font: 'myFirstFont';
  --body-font-size: 14px;
  --btn-font-size: 14px;
  --main-clr: #D13B2A;
  --main-clr-drk: #992316;
  --main-clr-sub: #FAC004;
}

body {
  font-family: 'myFirstFont';
  color: #000;
  line-height: 1.2;
  letter-spacing: 0.0000001px;
}

a {
  transition: 0.2s;
  cursor: pointer;
  color: #000;
}

a:hover {
  text-decoration: none;
  color: #000;
}

li {
  line-height: 1.5;
}

img {
  max-width: 100%;
}

[id] {
  scroll-margin-top: 200px;
}

.main_img img {
  width: 100%;
}

.clr_txt {
  color: var(--main-clr);
}

.main {
  overflow: hidden;
}




/* button css */

.btn-main {
  padding: clamp(12px, 1.05vw, 20px);
  color: #fff;
  display: inline-block;
  transition: 0.6s;
  z-index: 2;
  position: relative;
  background: url(../images/btn_bg_img1.webp) center / 100% 100% no-repeat;
  overflow: hidden;
  border: 0;
  font-family: var(--body-font);
  text-decoration: none;
  font-size: var(--btn-font-size);
  border-radius: 0px;
  font-weight: bold;
  min-width: clamp(150px, 10.46vw, 180px);
  text-align: center;
  letter-spacing: 1px;
}

.btn-main:hover {
  color: #000;
  background: url(../images/btn_bg_img2.webp) center / 100% 100% no-repeat;
}

.btn-main1 {
  background: url(../images/btn_bg_img2.webp) center / 100% 100% no-repeat;
  color: #000;
}

.btn-main1:hover {
  color: #fff;
  background: url(../images/btn_bg_img3.webp) center / 100% 100% no-repeat;
}

.btn-main2 {
  background: url(../images/btn_bg_img1.webp) center / 100% 100% no-repeat;
  color: #fff;
}

.btn-main2:hover {
  color: #fff;
  background: url(../images/btn_bg_img3.webp) center / 100% 100% no-repeat;
}






/* common paddings */
.common-padd {
  padding-top: 50px;
  padding-bottom: 50px;
}

.common-padd-top {
  padding-top: 100px;
}

.common-padd-btm {
  padding-bottom: 100px;
}

.common-padd-sm {
  padding-top: 30px;
  padding-bottom: 30px;
}




/*slick slider*/

.secSliderWrap {
  position: relative;
}

.secSliderNavWrap {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 95%;
  height: 100%;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.secSliderNav {
  pointer-events: all;
  cursor: pointer;
  width: 45px;
  height: 45px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 0px 3px 0px #00000073;
}

.secSliderNav:hover {
  background-color: var(--main-clr);
}

.secSliderNav img {
  filter: brightness(0) invert(0);
}

.secSliderNav:hover img {
  filter: brightness(0.5) invert(1);
}

.secItem {
  position: relative;
}

.slick-dots {
  position: absolute;
  bottom: -100px;
  left: 50%;
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
}

.slick-dots li button:before {
  font-family: slick;
  font-size: 6px;
  line-height: 20px;
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  content: '•';
  text-align: center;
  opacity: .25;
  color: var(--main-clr);
  -webkit-font-smoothing: antialiased;
  border: 1px solid var(--main-clr);
  border-radius: 50%;
  margin: 0 10px;
}

.slick-dots li button:before {
  font-size: 30px;
  color: transparent;
}

.slick-dots li.slick-active button:before {
  opacity: .75;
  color: var(--main-clr);
}

.slick-dots li button {
  padding: 0 2px
}

.slick-dots li {
  margin: 0 10px;
}

.slick-dotted.slick-slider {
  margin-bottom: 0px;
}





/* go to top button */
.go-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  height: 40px;
  width: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--main-clr-drk);
  color: #fff;
  border: 2px solid #fff;
  z-index: 99;
  opacity: 0;
  transition: 0.3s;
  cursor: pointer;
}

.go-to-top span {
  width: 10px;
  height: 10px;
  border-style: solid;
  border-color: #fff;
  border-width: 2px 2px 0 0;
  transform: rotate(-45deg);
  margin-top: 4px;
}

.go-to-top.show {
  opacity: 1;
}



/* animation */

.zoom {
  animation: zoom-in-zoom-out 2s ease-out infinite;
}

@keyframes zoom-in-zoom-out {

  0% {
    transform: scale(0.9, 0.9);
  }

  50% {
    transform: scale(1.02, 1.02);
  }

  100% {
    transform: scale(0.9, 0.9);
  }

}


/* header design */

.header-area {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1001;
  transition: 0.3s;
  border-top: 5px solid var(--main-clr);
}

.header-area.sticky .header-nav {
  background-color: #fff;
  box-shadow: 0 0 6px 0 #000000bd;
}

.header-nav {
  padding: 0;
  transition: 0.4s;
  background-color: #fff;
  position: relative;
}

.navbar-area-inr {
  width: 100%;
}

.site-logo {
  transition: 0.2s;
  flex-shrink: 0;
  width: 10%;
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  padding: 0 10px 10px;
}

.site-logo h2 {
  color: var(--main-clr-drk);
  font-size: 16px;
  text-transform: uppercase;
  text-shadow: 0px 0px 5px #00000042;
}

.navbar-area-menu {
  display: block;
}

.info_div {
  display: flex;
  align-items: center;
  clip-path: polygon(0% 0%, 100% 1%, 100% 100%, 3% 100%);
  background-color: #ebf8ff;
  padding: 5px 40px;
  margin-top: 0;
  margin-left: 12%;
  margin-bottom: 0px;
  width: 100%;
  overflow: hidden;
}

.site-navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
}

.site-navbar ul li a img {
  width: 13px;
  margin-left: 10px;
}

.site-navbar ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 30px;
  padding: 5px 0;
}

.site-navbar ul li {
  position: relative;
  font-size: 16px;
  padding-right: 0px;
  padding-bottom: 0;
}

.site-navbar ul li a {
  display: block;
  color: #000;
}

.site-navbar>ul>li a {
  padding: 8px 0;
  border-bottom: 2px solid #0000;
  font-family: 'myFirstFontMedium';
  font-size: 18px;
}

.site-navbar>ul>li a:hover {
  border-bottom-color: var(--main-clr);
}

.site-navbar>ul>li a.active {
  color: var(--main-clr);
  border-bottom-color: var(--main-clr);
}

.site-navbar ul ul {
  flex-direction: column;
  transform: translateY(100%);
  position: absolute;
  width: clamp(150px, 15.625vw, 300px);
  background: #fff;
  box-shadow: 0px 3px 35px 0px rgba(0, 0, 0, 0.26);
  transform-origin: top;
  z-index: 99;
  transition: 0.2s;
  align-items: flex-start;
  top: 100%;
  gap: 0;
  opacity: 0;
  pointer-events: none;
  text-align: left;
  text-transform: uppercase;
}

.site-navbar ul ul li {
  width: 100%;
  text-transform: none;
  font-weight: bold;
}

.site-navbar ul ul a {
  padding: clamp(8px, 0.5208vw, 10px);
  width: 100%;
  display: block;
  color: #222;
}

.site-navbar ul ul li a:hover {
  background: var(--main-clr);
  color: #fff;
}

.site-navbar ul li>span {
  display: none;
}

.site-navbar ul li:hover ul {
  transform: none;
  opacity: 1;
  pointer-events: all;
}

.navbar-social ul {
  margin: 0;
  padding: 2px 0 2px clamp(12px, 1.25vw, 24px);
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(10px, 0.68vw, 13px);
  border-left: 1px solid var(--main-clr);
}

.navbar-social ul li a,
.navbar-social ul li img {
  display: block;
}

.nav-toggler {
  border: 0;
  background-color: #fff0;
  cursor: pointer;
  display: none;
  padding: 5px;
}

.nav-toggler span,
.nav-toggler span:before,
.nav-toggler span:after {
  width: 28px;
  height: 2px;
  background-color: var(--main-clr);
  display: block;
  transition: .3s;
}

.nav-toggler span:before {
  content: '';
  transform: translateY(-9px);
}

.nav-toggler span:after {
  content: '';
  transform: translateY(7px);
}

.nav-toggler.toggler-open span {
  background-color: transparent;
}

.nav-toggler.toggler-open span:before {
  transform: translateY(0px) rotate(45deg);
}

.nav-toggler.toggler-open span:after {
  transform: translateY(-2px) rotate(-45deg);
}

.button_mobile {
  display: none;
}

.social_icon_div .icon img {
  width: 80%;
  margin: 0 auto;
}


.mobile_head_btn {
  display: none;
}

.nav_call {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.nav_call .call_txt p {
  padding-bottom: 0;
  transition: all 0.5s;
}

.nav_call .call_txt h3 {
  letter-spacing: 1px;
  font-size: 22px;
  transition: all 0.5s;
}

.nav_call_btn {
  margin-left: 60px;
}

.nav_call:hover .call_txt p {
  color: var(--main-clr-sub);
}

.nav_call:hover .call_txt h3 {
  color: var(--main-clr);
}






/* banner design */

.banner {
  position: relative;
  z-index: 2;
  margin-top: 80px;
  padding-bottom: 50px;
}

.bnr_img {
  width: 60%;
  margin-left: 50px;
}

.bnr_txt_img {
  width: 60%;
  margin: 0 auto;
}

.banner .row {
  position: relative;
  z-index: 3;
}

.bnr_txt_img {
  text-align: center;
}

.bnr_txt_img .btn-main {
  margin-top: 20px;
}

.bnr_img1, .bnr_img2, .bnr_img3, .bnr_img4, .bnr_img5, .bnr_img6 {
  position: absolute;
  width: 10%;
  z-index: 1;
}

.bnr_img1 {
  top: 2%;
  left: 6%;
}

.bnr_img2 {
  top: 2%;
  left: 36%;
}

.bnr_img3 {
  top: 7%;
  right: 6%;
}

.bnr_img4 {
  bottom: 25%;
  right: 6%;
}

.bnr_img5 {
  bottom: 16%;
  left: 46%;
}

.bnr_img6 {
  bottom: 16%;
  left: 6%;
}

.bnr_shape1 {
  position: absolute;
  bottom: 15px;
  left: 30%;
  width: 4%;
  -webkit-animation: sun 5s ease-in-out infinite;
  -moz-animation: sun 5s ease-in-out infinite;
  -o-animation: sun 5s ease-in-out infinite;
  animation: sun 5s ease-in-out infinite;
}

@keyframes sun {
  0%, 100% {
    transform: rotate(-10deg);
  }
  50% {
    transform: rotate(10deg);
  }   
}

.bnr_shape2 {
  position: absolute;
  bottom: 17px;
  left: 20px;
  width: 4%;
  -webkit-animation: balloon 6s ease-in-out infinite;
  -moz-animation: balloon 6s ease-in-out infinite;
  -o-animation: balloon 6s ease-in-out infinite;
  animation: balloon 6s ease-in-out infinite;
}

@keyframes balloon {
  0%, 100% {
    transform: translateY(0) rotate(-10deg);
  }
  50% {
    transform: translateX(0px) rotate(10deg);
  }
}




/* founder_sec Start */

.founder_sec {
  position: relative;
  z-index: 1;
  padding-top: 120px;
  background-color: #fffbec;
  margin-top: -80px;
}

.founder_box {
  text-align: center;
}

.founder_img {
  width: 90%;
  box-shadow: 0px -8px 0px 7px var(--main-clr);
  border-radius: 50%;
  margin: 0 auto;
}

.founder_box h3 {
  color: var(--main-clr);
  font-size: 30px;
  font-family: 'myFirstFontExtraBold';
}

.founder_txt h2 {
  color: #000;
  text-align: center;
  font-size: 30px;
  line-height: 40px;
  font-weight: 400;
  font-family: 'myFirstFontLight';
}

.founder_txt h2 span {
  font-weight: 900;
  font-family: 'myFirstFontExtraBold';
}

.founder_txt {
  padding: 40px 10px;
  background-color: #FFE388;
  border-radius: 12px;
  position: relative;
}

.founder_txt::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--main-clr);
  border-radius: 12px;
  z-index: -1;
  transform: rotate(11.878deg);
}

.founder_shape1 {
  position: absolute;
  top: 45%;
  left: 3%;
  width: 5%;
}

.founder_shape2 {
  position: absolute;
  bottom: 6%;
  left: 30%;
}

.founder_shape3 {
  position: absolute;
  bottom: 5%;
  right: 3%;
  width: 8%;
}

.bouncer {
  animation: bounce 1600ms infinite cubic-bezier(0.445, 0.05, 0.55, 0.95);
}

@keyframes bounce {
  50% {
    transform: translateY(-15px);
  }
}




/* welcome_sec Start */

.welcome_sec {
  position: relative;
}

.welcome_sec .wl_txt_top {
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 10px;
}

.welcome_sec .wl_txt_top img {
  width: 25%;
  margin-left: 15px;
}

.welcome_sec .wl_txt_top h4 {
  font-family: 'myFirstFontExtraBold';
  transform: rotate(-6.314deg);
  font-size: 18px;
}

.sec1_shape1 {
  position: absolute;
  top: 7%;
  width: 10%;
  -webkit-animation: cloud 6s ease-in-out infinite;
  -moz-animation: cloud 6s ease-in-out infinite;
  -o-animation: cloud 6s ease-in-out infinite;
  animation: cloud 6s ease-in-out infinite;
}

@keyframes cloud {
  0%, 100% {
    margin-left: 0;
  }
  50% {
    margin-left: 10%;
  }
}

.sec1_shape2 {
  position: absolute;
  top: 45%;
  right: 0%;
  transform: translateY(-50%);
  width: 8%;
  z-index: -1;
}

.sec1_shape3 {
  position: absolute;
  top: 50%;
  left: 1%;
  transform: translateY(-50%);
  width: 20%;
  z-index: -1;
}

.sec1_shape4 {
  position: absolute;
  bottom: 10%;
  right: 10%;
  width: 5%;
}

.sec1_shape5 {
  position: absolute;
  bottom: 10%;
  right: 30%;
}

.sec1_shape6 {
  position: absolute;
  bottom: -12%;
  left: 20%;
  width: 8%;
  z-index: 3;
}





/* why_sec start */

.why_sec {
  position: relative;
  overflow: hidden;
  padding-bottom: 150px;
  z-index: 2;
}

.why_sec .heading h2 {
  color: #fff;
  text-align: center;
}

.why_img img {
  height: 50px;
  width: auto;
}

.why_img {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #F3F3F3;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  position: relative;
  margin: 0 auto 10px;
}

.why_img::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: transparent;
  border-radius: 50%;
  transition: ease-in-out 0.5s;
  opacity: 1;
  border: 1px dashed var(--main-clr);
  box-sizing: border-box;
}

.why_box:hover .why_img::after {
  opacity: 1;
  animation: rotate 10s linear infinite;
  background-color: #e3af0652;
}

@keyframes rotate {
  0% {
    transform: scale(0.92) rotate(0deg);
  }
  100% {
    transform: scale(0.92) rotate(360deg);
  }
}

.why_box h3 {
  color: #fff;
  font-size: 20px;
  text-align: center;
  font-family: 'myFirstFOntExtraBold';
  transition: ease-in-out 0.3s;
}

.why_box:hover h3 {
  color: var(--main-clr-drk);
}





/* programmes_sec start */

.programmes_sec {
  position: relative;
  z-index: 1;
  padding-top: 120px;
  margin-top: -100px;
  padding-bottom: 100px;
}

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

.programmes_box {
  position: relative;
  overflow: hidden;
}

.pro_bg_img {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.pro_bg_img img {
  width: 100%;
  height: 100%;
}

.programmes_box .pro_con {
  padding: 22px 15px;
  text-align: center;
}

.programmes_box .prog_img {
  transition: ease-in-out 0.5s;
  width: 100%;
}

.programmes_box:hover .prog_img {
  transform: scale(0.95);
}

.prog_bg_img {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.programmes_box ul li {
  list-style: none;
  display: grid;
  grid-template-columns: auto auto;
  justify-content: start;
  align-items: center;
  color: #fff;
}

.programmes_box ul li .prog_icon {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #FFA29E;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  border: 1px solid #F97671;
  padding: 8px;
  margin-right: 10px;
}

.programmes_box ul li h4 {
  font-size: 16px;
}

.programmes_box h3 {
  color: #fff;
  font-size: 25px;
  line-height: 45px;
  font-family: 'myFirstFontExtraBold';
  text-align: center;
  border-bottom: 1px solid #fff;
  margin-bottom: 20px;
  transition: ease-in-out 0.5s;
}

.programmes_box:hover h3 {
  color: var(--main-clr-sub);
}

.programmes_box .btn-main {
    margin: 10px 0;
}

.prog_shape1 {
  position: absolute;
  top: 40%;
  left: 0;
  transform: translateY(-50%);
  width: 8%;
}

.prog_shape2 {
  position: absolute;
  top: 36%;
  left: 4%;
}

.prog_shape3 {
  position: absolute;
  top: 12%;
  left: 30%;
  width: 5%;
}

.prog_shape4 {
  position: absolute;
  top: 12%;
  right: 20%;
}

.prog_shape5 {
  position: absolute;
  bottom: 7%;
  right: 2%;
  width: 10%;
}





/* facility_sec start */

.desktop_facility {
  display: block;
}

.mobile_facility {
  display: none;
}

.facility_sec {
  position: relative;
  overflow: hidden;
}

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

.faci_box {
  display: grid;
  grid-template-columns: auto auto;
  align-items: center;
}

.faci_box1 {
  justify-content: end;
}

.faci_box2 {
  justify-content: start;
}

.faci_box:not(:last-child) {
  margin-bottom: 50px;
}

.faci_box1 h3 {
  text-align: right;
  font-size: 20px;
}

.faci_box2 h3 {
  text-align: left;
  font-size: 18px;
}

.faci_icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 80px;
  background-color: var(--main-clr-sub);
  border: 4px solid #F9EFCD;
  padding: 10px;
  border-radius: 50%;
}

.faci_box1 .faci_icon {
  margin-left: 15px;
}

.faci_box2 .faci_icon {
  margin-right: 15px;
}

.faci_img1 {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background-color: var(--main-clr);
  margin: 0 auto;
  position: relative;
}

.faci_img1::after {
  content: '';
  position: absolute;
  inset: 0;
  background-color: transparent;
  border-radius: 50%;
  border: 1px dashed #8B8B8B;
  box-sizing: border-box;
  animation: circle 18s linear infinite;
}

@keyframes circle {
  0% {
    transform: scale(1.09) rotate(0deg);
  }
  100% {
    transform: scale(1.09) rotate(360deg);
  }
}

.faci_img2 {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background-color: #fff;
  padding: 30px;
}

.faci_box3 {
  transform: translate(15%, 10%);
}

.faci_box4 {
  transform: translate(-15%, 10%);
}

.faci_box5 {
  text-align: center;
}

.faci_box5 .faci_icon {
  margin: 10px auto;
}

.faci_box img,
.faci_box5 img {
  transition: ease-in-out 0.5s;
}

.faci_box:hover img,
.faci_box5:hover img {
  filter: brightness(0.5) invert(1);
}

.faci_box .faci_icon,
.faci_box5 .faci_icon {
  transition: ease-in-out 0.5s;
}

.faci_box:hover .faci_icon,
.faci_box5:hover .faci_icon {
  background-color: var(--main-clr);
  border-color: #fdcbc5;
}

.faci_box h3,
.faci_box5 h3 {
  transition: ease-in-out 0.5s;
}

.faci_box:hover h3,
.faci_box5:hover h3 {
  color: var(--main-clr-sub);
}

.faci_shape1 {
  position: absolute;
  top: 20%;
  right: 0;
  width: 8%;
}

.faci_shape2 {
  position: absolute;
  right: 10%;
  bottom: 8%;
  width: 5%;
}

.faci_shape3 {
  position: absolute;
  left: 0;
  top: 10%;
  width: 9%;
}

.faci_shape4 {
  position: absolute;
  left: 0;
  top: 25%;
  width: 9%;
}

.faci_shape5 {
  position: absolute;
  right: 30%;
  bottom: 3%;
}




/* specialties_sec start */

.specialties_sec {
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}

.specialties_sec .heading h2 {
  text-align: center;
  color: #fff;
}

.speci_txt {
  display: grid;
  grid-template-columns: auto auto;
  justify-content: start;
  align-items: center;
}

.speci_txt:not(:last-child) {
  margin-bottom: 10px;
}

.speci_icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background-color: var(--main-clr);
  border-radius: 50px;
  margin-right: 10px;
}

.speci_icon h3 {
  font-size: 22px;
  color: #fff;
}

.speci_txt p {
  font-family: 'myFirstFontBold';
  padding-bottom: 0;
}

.speci_con {
  position: relative;
  padding: 50px 20px;
  margin: 0px -70px 0px 70px;
}

.sec5_img {
  position: absolute;
  top: 0%;
  left: 0%;
  z-index: -1;
  width: 100%;
  height: 100%;
}

.speci_shape1 {
  position: absolute;
  top: 40%;
  left: 47%;
  transform: translateY(-50%);
  width: 8%;
  z-index: -1;
}





/* gallery_sec start */

.gallery_sec {
  position: relative;
}

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

.gallery_box {
  position: relative;
}

.gal_icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 15%;
  transition: ease-in-out 0.5s;
  opacity: 0;
  transition: ease-in-out 0.5s;
}

.gallery_box:hover .gal_icon {
  opacity: 1;
}

.gallery_box .gal_img {
  transition: ease-in-out 0.5s;
  width: 100%;
}

.gallery_box:hover .gal_img {
  filter: grayscale(50%);
}

.sec6_shape1 {
  position: absolute;
  left: 0;
  top: 15%;
  width: 8%;
}

.sec6_shape2 {
  position: absolute;
  bottom: 10%;
  left: 4%;
  width: 5%;
}

.sec6_shape3 {
  position: absolute;
  bottom: 10%;
  right: 0%;
  width: 9%;
  z-index: -1;
}

.gallery_box:hover .gal_icon {
  opacity: 1;
}






/* care_sec start */

.care_sec {
  position: relative;
  z-index: 2;
  padding-bottom: 70px;
}

.care_sec .heading h2 {
  text-align: center;
  color: #fff;
}

.care_con {
  position: relative;
  padding: 40px 20px;
  margin: 0px 30px 0px -50px;
}


.care_img {
  position: absolute;
  top: 0%;
  left: 0%;
  z-index: -1;
  height: 100%;
  width: 100%;
}

.care_txt {
  display: grid;
  grid-template-columns: auto auto;
  justify-content: start;
  align-items: center;
}

.care_txt:not(:last-child) {
  margin-bottom: 10px;
}

.care_icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background-color: var(--main-clr);
  border-radius: 50px;
  margin-right: 10px;
}

.care_icon h3 {
  font-size: 22px;
  color: #fff;
}

.care_shape1 {
  position: absolute;
  top: 20%;
  right: 4%;
  width: 8%;
  z-index: -1;
}

.care_txt p {
  font-family: 'myFirstFontBold';
  padding-bottom: 0;
}






/* admissions_sec start */

.admissions_sec {
  position: relative;
  z-index: 1;
  margin-top: -80px;
  padding-top: 120px;
  padding-bottom: 200px;
}

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

.admi_txt:not(:last-child) {
  margin-bottom: 35px;
}

.admi_txt {
  display: grid;
  grid-template-columns: auto auto;
  justify-content: start;
  align-items: center;
  position: relative;
}

.admi_txt:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 25px;
  left: 30px;
  height: 80px;
  width: 1px;
  border-left: 1px dashed #000;
  z-index: -1;
}

.admi_icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  background-color: var(--main-clr-sub);
  border-radius: 50px;
  margin-right: 15px;
  border: 4px solid #ffecb0;
}

.admi_icon h3 {
  font-size: 20px;
}

.admi_txt h3 {
  font-size: 18px;
  padding-bottom: 0;
}

.admi_con {
  padding: 0px 50px 0px 140px;
}

.admi_form_head {
  position: relative;
  text-align: center;
  overflow: hidden;
  padding: 20px 0;
  z-index: 2;
  margin: 0 auto;
}

.form_img1 {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.form_img1 img {
  width: 100%;
  height: 100%;
}

.admi_form_head h3 {
  font-size: 24px;
  font-family: 'myFirstFontExtraBold';
}

.admi_form {
  margin: -30px 40px 0;
}

.admi_form .form_con .form_img2 {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.admi_form .form_con .form_img2 img {
  width: 100%;
  height: 100%;
}

.admi_form .form_con {
  position: relative;
  overflow: hidden;
  padding: 80px 10px 40px;
  z-index: 1;
  width: 100%;
  margin: -60px auto;
}

.admi_form .form_con .form_design {
  width: 90%;
}

.admi_form .form_con .form_design :is(input:not([type=radio]):not([type=checkbox]):not([type=submit]), select, textarea) {
  padding: 10px 8px;
  font-size: 14px;
  border-radius: 5px;
  margin: 0;
}

.admi_form .form_con .form_design input[type=submit] {
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.admi_shape1 {
  position: absolute;
  top: 2%;
  right: 15%;
}

.admi_shape2 {
  position: absolute;
  top: 50%;
  right: 4%;
  transform: translateY(-50%);
}

.admi_shape3 {
  position: absolute;
  top: 40%;
  right: 54%;
  transform: translate(-50%, -50%);
}

.admi_shape4 {
  position: absolute;
  bottom: 40%;
  left: 4%;
  transform: translateY(-50%);
}

.admi_shape5 {
  position: absolute;
  bottom: 30%;
  left: 0%;
  transform: translateY(-50%);
  width: 8%;
}

.admi_shape6 {
  width: 12%;
}





/* educator_sec start */

.educator_sec {
  position: relative;
  padding: 180px 0 50px;
  background-attachment: fixed;
  background-position: center;
  margin-top: -110px;
  background-repeat: no-repeat;
}

.educator_sec .edu_txt {
  width: 60%;
  color: #fff;
}

.educator_sec .edu_txt .heading h2 {
  color: #fff;
}





/* activities_sec start */

.activities_sec {
  position: relative;
}

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

.acti_box {
  position: relative;
  text-align: center;
  padding: 20px 10px;
}

.acti_box h3 {
  color: #fff;
  font-size: 20px;
  line-height: 40px;
  font-family: 'myFirstFontExtraBold';
  text-align: center;
  border-bottom: 1px solid #fff;
  margin-bottom: 20px;
  transition: ease-in-out 0.5s;
  margin: 0 15px;
  transition: ease-in-out 0.5s;
}

.acti_box p {
  color: #fff;
  padding-top: 15px;
}

.acti_img {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.acti_box:hover h3 {
  color: var(--main-clr-sub);
}

.acti_box .acti_main_img {
  width: 100%;
  transition: ease-in-out 0.5s;
}

.acti_box:hover .acti_main_img {
  transform: scale(0.92);
}

.acti_shape1 {
  position: absolute;
  width: 8%;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.acti_shape2 {
  position: absolute;
  width: 8%;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

.acti_shape3 {
  position: absolute;
  width: 8%;
  bottom: -5%;
  right: 30%;
  z-index: 2;
}





/* testimonial_sec start */

.testimonial_sec {
  position: relative;
  padding-bottom: 90px;
}

.testimonial_sec .item {
  margin: 0 10px;
}

.testimonial_sec .heading h2 {
  text-align: center; 
  color: #fff;
}

.testi_box {
  position: relative;
}

.testi_box .testi_txt_bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.testi_box .testi_txt_bg img {
  width: 100%;
  height: 220px;
}

.testi_box .testi_txt {
  padding: 20px 20px;
}

.testi_box .testi_txt img {
  width: 9%;
}

.testi_box .testi_txt h4 {
  font-size: 18px;
  position: relative;
  text-align: left;
  font-family: 'myFirstFontExtraBold';
  margin-left: auto;
  width: 160px;
}

.testi_box .testi_txt h4::before {
  content: '';
  position: absolute;
  height: 2px;
  width: 20px;
  left: -25px;
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--main-clr);
}

.testi_box .testi_txt p {
  font-size: 14px;
}

.testimonial_sec .secSliderNavWrap {
  width: 102%;
}

.testimonial_sec .slick-dots {
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
}

.slick-dots li button:before {
  border: 2px solid transparent;
  color: #fff;
  opacity: 1;
}

.slick-dots li.slick-active button:before {
  border: 2px solid #fff;
  color: #fff;
  opacity: 1;
}





/* faq start */

.faq {
  position: relative;
  overflow: hidden;
}

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

.faq-item {
  width: 100%;
  transition: 0.3s
}

.faq-item details {
  margin-bottom: 20px !important;
  position: relative;
  overflow: hidden;
  border-radius: 12% 12% 21% 13%;
  border: 1px solid #000;
}

.faq-item h3 {
  font-size: 100%;
  margin-bottom: 0;
  font-weight: 600;
  font-size: var(--body-font);
  font-family: myFirstFont;
}

.faq-item summary {
  list-style: none;
  padding: 15px 38px 15px 10px;
  position: relative;
  cursor: pointer;
  transition: 0.3s
}

.faq-item summary:before {
  position: absolute;
  width: 25px;
  height: 25px;
  border-color: transparent;
  background-color: var(--main-clr);
  border-radius: 50px;
  top: 14px;
  right: 14px;
  content: '+';
  transition: 0.3s;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
}

.faq-item [open] summary:before {
  content: '–';
}

.faq-item details[open] {
  margin-top: -1px;
  background-color: var(--main-clr-sub);
}

.faq-ans {
  padding: 0px 42px 15px 15px;
  position: relative;
  animation: sweep .7s ease-in-out;
}

@keyframes sweep {
  0% {
    opacity: 0;
    transform: translateY(0px);
  }

  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}

.faq-item details[open] summary~.faq-ans p a {
  color: var(--main-clr-sub);
  font-weight: bold;
}

.faq-item details[open] summary~.faq-ans p a:hover {
  color: #fff;
}

.faq_shape1 {
  position: absolute;
  left: 0;
  top: 30%;
  width: 9%;
}

.faq_shape2 {
  position: absolute;
  right: 15%;
  top: 10%;
}

.faq_shape3 {
  position: absolute;
  left: 50%;
  bottom: 10%;
  transform: translateX(-50%);
}

.faq_shape4 {
  position: absolute;
  left: 4%;
  bottom: 10%;
  width: 5%;
}






/* footer top start */

.ftr_top {
  position: relative;
  overflow: hidden;
}

.ftr_top .heading h2 {
  text-align: center;
  color: #fff;
}

.ftr_top .btn-main {
  margin: 0 auto;
  text-align: center;
}

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

.ftr_top_shape {
  position: absolute;
  top: 50%;
  right: 10%;
  transform: translateY(-50%);
  width: 5%;
}




/* footer design  */

.site-footer {
  background: #E3AF07;
  color: #000;
  overflow: hidden;
}

.site-footer a {
  color: #000;
}

.site-footer a:hover {
  color: var(--main-clr);
}

.site-footer-top {
  padding: clamp(40px, 4.17vw, 80px) 0;
}

.footer-head {
  position: relative;
  padding-bottom: 8px;
  margin-bottom: 15px;
  font-family: 'myFirstFontBold';
  text-transform: uppercase;
  font-size: 14px;
  color: #000;
}

.footer-head::after {
  background-color: var(--main-clr-drk);
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 33px;
  height: 2px;
  content: '';
}

.footer-item ul {
  padding-left: 0;
  margin: 0;
  list-style: none;
}

.footer-item1 ul {
  font-size: 14px;
  padding-top: 20px;
}

.footer-item2 li:not(:last-child) {
  margin-bottom: 10px;
}

.footer-item1-ul {
  margin-bottom: clamp(25px, 2.61vw, 50px);
  max-width: 350px;
}

.footer-item1-ul li:not(:last-child) {
  margin-bottom: 20px;
}

.footer-item1-ul li {
  position: relative;
  padding-left: 0px;
}

.footer-social {
  margin-top: clamp(23px, 2.35vw, 45px);
}

.footer-social ul {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.footer-item li a {
  font-size: 14px;
}

.social_icon_div {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.social_icon_div .icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 3px;
  transition: all ease-in-out 1s;
  border: 1px solid #fff;
}

.social_icon_div .icon img {
  width: auto;
  height: auto;
}

.social_icon_div .icon:hover {
  transform: scale(1.1);
}

.footer_logo {
  margin-bottom: 20px;
  width: 35%;
  display: block;
}

.footer-item1 p {
  width: 90% !important;
}

.footer-item p {
  width: 100%;
}

.footer-item2 ul li {
  display: grid;
  grid-template-columns: auto auto;
  align-items: start;
  justify-content: start;
  font-size: 14px;
}

.footer-item2 ul li .ftr_icon {
  margin-right: 10px;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all ease-in-out 1s;
  background-color: #000;
  border: 3px solid #000;
}

.footer-item3 .map iframe {
  width: 100%;
  height: 250px;
  border: 0px;
  border-radius: 20px;
}

.site-footer-btm {
  padding: 15px 0;
  background-color: #000;
  color: #fff;
}

.site-footer-btm p {
  padding-bottom: 0;
}

.site-footer-copyright p a {
  color: var(--main-clr);
}

.site-footer-copyright p a:hover {
  color: var(--main-clr-sub);
}

.site-footer-copyright p span {
  padding: 0 5px;
}

.site-footer-copyleft {
  text-align: left;
}

.site-footer-copyright {
  text-align: right;
}





/* Popup Design start */

#enquire_btn {
  position: fixed;
  top: 50%;
  right: -42px;
  padding: 10px 20px;
  z-index: 1000;
  rotate: -90deg;
  transition: all ease-in-out 0.5s;
  border-radius: 5px;
  background: var(--main-clr);
  box-shadow: 0px 0px 8px 0px #b8b8b8;
  transition: all ease-in-out 0.5s;
}

#enquire_btn p {
  margin: 0;
  color: #fff;
  font-size: 14px;
  text-transform: uppercase;
  padding: 0;
  font-family: myFirstFontBold;
  transition: all ease-in-out 0.5s;
}

#enquire_btn:hover p {
  color: #000;
}

#enquire_btn:hover {
  cursor: pointer;
  background-color: var(--main-clr-sub);
  box-shadow: inset 0 0 0 50px var(--main-clr-sub);
}

#enquire_btn:hover .popup_icon {
  background-color: #faa771;
}

.sidepopup {
  height: auto;
  width: 0;
  position: fixed;
  z-index: 10000;
  top: 23%;
  right: 5%;
  background-color: #fff;
  overflow-x: hidden;
  transition: 0.5s;
  border-radius: 6px;
  box-shadow: 0px 0px 6px 0px rgb(0 0 0);
  font-family: myFirstFont;
}

.sidepopup .btn-main {
  box-shadow: inset 0 0 0 50px var(--main-clr-sub);
}

.sidepopup .btn-main:hover {
  box-shadow: inset 0 0 0 50px var(--main-clr);
  color: #fff;
}

.sidepopup form {
  width: auto !important;
  padding: 20px;
  height: auto;
}

.sidepopup .from_content {
  padding: 0 20px;
}

.sidepopup .from_content .btn-custom {
  margin: 0;
  width: 100%;
}

.sidepopup .form_heading {
  text-align: center;
  color: #000;
  text-transform: uppercase;
  font-size: 20px;
  font-weight: bold;
  width: 100%;
  padding-bottom: 10px;
}

.sidepopup p {
  font-size: 14px;
  text-align: center;
  margin: 0;
  padding-bottom: 6px;
}

.sidepopup a {
  padding: 8px 8px 8px 32px;
  text-decoration: none;
  font-size: 25px;
  color: #818181;
  display: block;
  transition: 0.3s;
}

.sidepopup a:hover {
  color: #000000;
}

.sidepopup .closebtn {
  position: absolute;
  top: -5px;
  right: 5px;
  font-size: 36px;
  margin-left: 50px;
  z-index: 100;
}

.sidepopup .form_design textarea {
  height: 80px;
}

.sidepopup .form_design :is(input:not([type=radio]):not([type=checkbox]):not([type=submit]), select, textarea) {
  border: solid 1px #cfcfcf;
  border-radius: 4px;
  background-color: #fff;
  padding: 8px 12px;
  color: #424242;
  width: 100%;
  font-size: 13px;
  margin: 7px 0;
  font-family: myFirstFontBold;
}

.form-control,
.form-select {
  border: 1px solid #092966;
}

.sidepopup label {
  font-size: 14px;
  color: var(--main-clr-drk);
  font-family: myFirstFontBold;
}

.sidepopup .form_design :is(input:not([type=radio]):not([type=checkbox]):not([type=submit]), select, textarea)::placeholder {
  color: #424242;
}

.sidepopup .form_design input[type=submit] {
  background: var(--main-clr-sub);
  border: 0;
  padding: 14px 7px;
  color: #000;
  width: 100%;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}

.sidepopup .form_design input[type=submit]:hover {
  background-color: var(--main-clr);
  color: #fff;
}

.fixed_whatsapp {
  width: 55px;
  height: 55px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  position: fixed;
  top: 70%;
  right: 0px;
  z-index: 1000;
}

.fixed_whatsapp:hover,
.fixed_call:hover {
  transform: scale(1.1);
}

/* Popup Design end*/


.mob_none {
  display: block;
}

.desk-none {
  display: none;
}




/* media query start */

@media(max-width: 1920px) {

  .bnr_txt_img {
    width: 70%;
  }

  .bnr_img1, .bnr_img2, .bnr_img3, .bnr_img4, .bnr_img5, .bnr_img6 {
    width: 11%;
  }

  .bnr_img {
    width: 76%;
    margin-left: 90px;
  }

  .founder_sec {
    padding-top: 170px;
    margin-top: -110px;
  }

  .founder_txt {
    padding: 40px 20px;
  }

  .founder_box h3 {
    font-size: 40px;
  }

  .welcome_sec .wl_txt_top h4 {
    font-size: 22px;
  }

  .heading h2 {
    font-size: 55px;
    line-height: 75px;
  }

  .why_box h3 {
    font-size: 30px;
  }

  .why_img {
    width: 130px;
    height: 130px;
  }

  .why_sec {
    padding-top: 100px;
    padding-bottom: 240px;
  }

  .programmes_sec {
    margin-top: -150px;
    padding-top: 230px;
    padding-bottom: 150px;
  }

  .programmes_box h3 {
    font-size: 35px;
    line-height: 55px;
  }

  .programmes_box ul li h4 {
    font-size: 18px;
  }

  .faci_icon {
    width: 100px;
    height: 100px;
  }

  .faci_box h3, .faci_box5 h3 {
    font-size: 24px;
  }

  .speci_txt p, .care_txt p {
    font-size: 19px;
  }

  .specialties_sec {
    padding: 140px 0 220px;
  }

  .care_con {
    padding: 30px 20px;
    margin: 0px 30px 0px -70px;
  }

  .care_sec {
    padding-top: 170px;
    padding-bottom: 240px;
  }

  .care_sec .row {
    position: relative;
    z-index: 1;
  }

  .admissions_sec {
    margin-top: -120px;
  }

  .acti_box h3 {
    font-size: 25px;
    line-height: 50px;
  }

  .acti_box p {
    padding-top: 20px;
  }

  .activities_sec {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .testimonial_sec {
    padding-top: 140px;
    padding-bottom: 250px;
  }

  .testi_box .testi_txt p {
    font-size: 17px;
  }

  .testi_box .testi_txt h4 {
    font-size: 22px;
    width: 220px;
  }

  .ftr_top {
    padding-top: 90px;
  }

  .ftr_top .heading h2 {
    font-size: 50px;
    line-height: 70px;
  }

  .btn-main {
    font-size: 18px;
  }

  .faq-item h3 {
    font-size: 22px;
  }

  .faq-ans p {
    font-size: 17px;
  }

  .footer-item .footer-head {
    font-size: 22px;
  }

  .ftr_txt h4 {
    font-size: 20px;
  }

  .footer-item p, .footer-item li a, .ftr_icon p {
    font-size: 16px;
  }

  .care_shape1 {
    top: 30%;
    right: 11%;
  }

  .testi_box .testi_txt_bg img {
    width: 100%;
    height: 250px;
  }

}

@media(max-width: 1700px) {

  .why_sec {
    padding-top: 60px;
    padding-bottom: 150px;
  }

  .testimonial_sec {
    padding-top: 120px;
    padding-bottom: 180px;
  }

}

@media(max-width: 1600px) {

  .bnr_img {
    width: 70%;
  }

  .programmes_sec {
    margin-top: -130px;
    padding-top: 160px;
    padding-bottom: 90px;
  }

  .programmes_box h3 {
    font-size: 30px;
    line-height: 50px;
  }

  .faci_box h3, .faci_box5 h3 {
    font-size: 22px;
  }

  .faq-item h3 {
    font-size: 20px;
  }

  .testimonial_sec {
    padding-top: 120px;
    padding-bottom: 140px;
  }

  .admissions_sec {
    padding-top: 130px;
    padding-bottom: 140px;
  }

}

@media(max-width: 1500px) {

  .bnr_txt_img {
    width: 60%;
  }

  .bnr_img {
    width: 60%;
  }

  .bnr_img1, .bnr_img2, .bnr_img3, .bnr_img4, .bnr_img5, .bnr_img6 {
    width: 10%;
  }

  .founder_box h3 {
    font-size: 30px;
  }

  .prog_shape1 {
    z-index: -1;
  }

  .faci_box h3, .faci_box5 h3 {
    font-size: 20px;
  }

  .specialties_sec {
    padding: 60px 0 100px;
  }

  .care_sec {
    padding-top: 60px;
    padding-bottom: 120px;
  }

  .admissions_sec {
    margin-top: -100px;
  }

  .ftr_top {
    padding-top: 50px;
  }

}

@media(max-width: 1440px) {

  .bnr_txt_img {
    width: 55%;
  }

  .why_box h3 {
    font-size: 22px;
  }

  .why_img {
    width: 110px;
    height: 110px;
  }

  .why_sec {
    padding-top: 60px;
    padding-bottom: 125px;
  }

  .testimonial_sec {
    padding-top: 90px;
    padding-bottom: 100px;
  }

}

@media(max-width: 1399px)  {

  .site-navbar>ul>li a {
    font-size: 15px;
  }

  .site-navbar ul {
    gap: 25px;
  }

  .heading h2 {
    font-size: 45px;
    line-height: 65px;
  }

  .programmes_box h3 {
    font-size: 26px;
    line-height: 46px;
  }

  .programmes_box ul li h4 {
    font-size: 16px;
  }

  .btn-main {
    font-size: 15px;
  }

  .faci_box h3, .faci_box5 h3 {
    font-size: 17px;
  }

  .speci_txt p, .care_txt p {
    font-size: 15px;
  }

  .acti_box h3 {
    font-size: 20px;
    line-height: 45px;
  }

  .testi_box .testi_txt p {
    font-size: 14px;
  }

  .testi_box .testi_txt h4 {
    font-size: 18px;
    width: 200px;
  }

  .testimonial_sec {
    padding-top: 70px;
    padding-bottom: 150px;
  }

  .ftr_top .heading h2 {
    font-size: 40px;
    line-height: 60px;
  }

  .footer-item .footer-head {
    font-size: 18px;
  }

  .footer-item p, .footer-item li a, .ftr_icon p {
    font-size: 14px;
  }

  .ftr_txt h4 {
    font-size: 16px;
  }

  .why_box h3 {
    font-size: 20px;
  }

  .testi_box .testi_txt_bg img {
    width: 100%;
    height: 220px;
  }
  

}

@media(max-width: 1280px) {

  .founder_txt h2 {
    font-size: 24px;
    line-height: 34px;
  }

}

@media(max-width: 1199px) {

  .site-navbar>ul>li a {
    font-size: 13px;
  }

  .site-navbar ul {
    gap: 20px;
  }

  .nav_call .call_txt h3 {
    font-size: 20px;
  }

  .nav_call_btn {
    margin-left: 0px;
  }

  .banner {
    padding-bottom: 70px;
  }

  .speci_txt p, .care_txt p {
    font-size: 13px;
  }

  .speci_con {
    padding: 45px 20px;
    margin: 0px -60px 0px 20px;
  }

  .acti_img img {
    width: 100%;
    height: 350px;
  }

  .acti_box h3 {
    font-size: 18px;
    line-height: 40px;
  }

  .testi_txt_bg img {
    width: 100%;
    height: 340px;
  }

  .admi_con {
    padding: 0px 50px 0px 70px;
  }

  .admi_form {
    margin: -30px 10px 0;
  }

}

@media(max-width: 1024px) {



}

@media(max-width: 992px) {



}

@media(max-width: 991px) {

  .display-none {
    display: none;
  }

  body.no-scroll {
    height: 100vh;
    overflow: hidden;
  }

  .nav_call_btn {
    margin-right: 20px;
  }

  .nav-toggler {
    display: block;
    position: relative;
    z-index: 10;
  }

  .nav-toggler.toggler-open {
    position: fixed;
    top: 16px;
    right: 5px;
  }

  .navbar-area-menu {
    position: fixed;
    z-index: 10;
    top: 0;
    right: 0;
    font-family: var(--font1);
    transform: scale(0);
    transition: 0.6s;
    opacity: 0;
    transform-origin: top right;
    height: 100vh;
    width: 100%;
    flex-direction: column;
  }

  .site-navbar .button_mobile{
    padding-top: 0;
  }

  .site-navbar>ul {
    overflow: hidden;
    flex-direction: column;
    text-align: center;
    gap: 0;
    padding: clamp(40px, 7.5vw, 120px) 0px clamp(20px, 2.5vw, 40px);
    width: 100%;
    transition: 0.6s;
    overflow-y: auto;
    max-height: 100vh;
    justify-content: flex-start;
  }

  .site-navbar ul li {
    display: block;
    width: 100%;
    color: #fff;
  }

  .site-navbar>ul>li:not(:last-child) {
    border-bottom: 1px solid #ffffff38;
  }

  .site-navbar ul li a {
    width: 100%;
    display: block;
    color: #fff;
    padding: 14px 0;
    border-bottom-width: 0
  }

  .navbar-area-menu.open {
    transform: scale(1);
    opacity: 1;
  }

  .navbar-close {
    position: absolute;
    top: clamp(10px, 1.25vw, 20px);
    right: clamp(30px, 3.75vw, 60px);
    font-family: var(--font1);
    font-size: var(--40px);
    font-weight: bold;
    cursor: pointer;
  }

  .navbar-area-menu::before {
    background: #222;
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
    border-radius: 50%;
    transform: translate(50%, -50%);
    padding: 200%;
  }

  .site-navbar ul ul {
    position: static;
    background: #0000;
    box-shadow: none;
    width: auto;
    text-align: center;
    pointer-events: all;
    opacity: 1;
    transform: none;
    display: none;
    transition: 0s;
    padding-bottom: 10px;
  }

  .site-navbar ul ul a {
    display: block;
    text-transform: none;
    padding: 8px 0;
  }

  .site-navbar ul ul a::before {
    content: '';
    width: 6px;
    height: 6px;
    border: 0 1px 1px 0;
    display: inline-block;
  }

  .site-navbar .li-sub-menu-wrap>a {
    display: inline-block;
    width: auto;
  }

  .site-navbar .li-sub-menu-wrap {
    padding: 0 35px
  }

  .site-navbar .li-sub-menu-wrap.open-submenu {
    background: #111;
  }

  .site-navbar .li-sub-menu-wrap::after {
    content: '\002B';
    color: #fff;
    border-width: 0 1px 1px 0;
    position: absolute;
    top: 10px;
    right: 13px;
    font-size: 140%;
    transition: 0.2s;
  }

  .site-navbar .li-sub-menu-wrap.open-submenu::after {
    transform: rotate(45deg);
  }

  .site-navbar ul ul li a:hover {
    background: #0000
  }

  .site-navbar {
    width: 100%;
    flex-wrap: wrap;
  }

  .navbar-social {
    width: 100%;
  }

  .navbar-social ul {
    padding-left: 0;
    justify-content: center;
    border-left: 0;
    gap: 16px;
  }

  .site-logo {
    transition: 0.2s;
    flex-shrink: 0;
    width: 15%;
  }

  .button_desktop {
    display: none;
  }

  .mobile_head_btn {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 25px;
  }

  .navbar-area-inr {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 20px 0;
}

  .info_div {
    display: none;
  }

  .inner_count_div {
    margin: 20px 0;
  }

  .site-logo {
    top: 0%;
    left: 5%;
    transform: translate(0%);
  }

  .site-navbar>.nav_ul1 {
    padding-bottom: 0px;
    border-bottom: 1px solid #ffffff38;
  }

  .site-navbar>.nav_ul2 {
    padding-top: 0px;
  }

  .btn-main {
    font-size: 13px;
  }

  .banner {
    margin-top: 90px;
  }

  .bnr_txt_img {
    width: 50%;
    margin-top: 50px;
  }

  .bnr_img1 {
    top: 6%;
  }

  .bnr_img2 {
    top: 34%;
    left: 6%;
  }

  .bnr_img5 {
    top: 40%;
    left: 75%;
  }

  .bnr_img {
    width: 50%;
    margin: 0 auto;
  }

  .founder_txt h2 {
    font-size: 20px;
    line-height: 30px;
  }

  .founder_box h3 {
    font-size: 24px;
  }

  .welcome_sec .wl_txt_top h4 {
    font-size: 18px;
  }

  .heading h2 {
    font-size: 40px;
    line-height: 60px;
  }

  .programmes_box h3 {
    font-size: 22px;
    line-height: 46px;
  }

  .programmes_box ul li h4 {
    font-size: 14px;
  }

  .speci_con {
    margin: 0px 360px 0px -70px;
  }

  .desktop_facility {
    display: none !important;
  }
  
  .mobile_facility {
    display: block !important;
  }

  .faci_img {
    padding: 50px 0;
  }

  .care_con {
    padding: 30px 20px;
    margin: 0px 0px 0px 310px;
  }

  .admi_form {
    margin: 0px 60px 0;
  }

  .educator_sec .edu_txt {
    width: 85%;
  }

  .acti_img img {
    width: 100%;
    height: 360px;
  }

  .testi_txt_bg img {
    width: 100%;
    height: 270px;
  }

  .bnr_img1, .bnr_img2, .bnr_img3, .bnr_img4, .bnr_img5, .bnr_img6 {
    width: 17%;
  }

  .bnr_img4 {
    bottom: 14%;
  }

  .ftr_top .heading h2 {
    font-size: 30px;
    line-height: 40px;
  }

  .faq-ans p {
    font-size: 16px;
  }

  .testi_box .testi_txt_bg img {
    width: 100%;
    height: 210px;
  }

  .testimonial_sec {
    padding-top: 40px;
    padding-bottom: 70px;
  }

  .acti_shape3 {
    right: 10%;
  }

  .faq_shape3 {
    bottom: 3%;
  }

}

@media(max-width: 820px) {

  .speci_con {
    margin: 0px 280px 0px 0px;
  }

  .admi_shape3 {
    z-index: -1;
  }

}

@media(max-width: 767px) {

  p, li {
    font-size: 13px;
  }

  .nav_call .call_txt h3 {
    font-size: 16px;
  }

  .founder_txt {
    padding: 40px 20px;
    margin: 30px;
  }

  .sec1_shape3 {
    top: 38%;
  }

  .sec1_shape5 {
    z-index: -1;
  }

  .faci_shape5 {
    right: 10%;
    z-index: -1;
  }

  .speci_con {
    margin: 0px 0px 0px 0px;
  }

  .speci_icon h3 {
    font-size: 15px;
  }

  .speci_icon {
    width: 30px;
    height: 30px;
  }

  .care_con {
    margin: 0px 0px 0px 0px;
  }

  .acti_img img {
    width: 100%;
    height: 100%;
  }

  .testi_txt_bg img {
    width: 100%;
    height: 320px;
  }

  .heading h2 {
    font-size: 30px;
    line-height: 50px;
  }

  .heading h2 {
    font-size: 30px;
    line-height: 50px;
  }

  .care_sec {
    padding-top: 60px;
    padding-bottom: 70px;
  }

  .specialties_sec {
    padding: 60px 0 60px;
  }

  .faq-item h3 {
    font-size: 16px;
  }

  .faq-ans p {
    font-size: 14px;
  }

  .admi_txt h3 {
    font-size: 15px;
  }

  .founder_txt h2 {
    font-size: 18px;
    line-height: 28px;
  }

  .welcome_sec .wl_txt_top h4 {
    font-size: 14px;
  }

  .why_box h3 {
    font-size: 16px;
  }

  .why_img {
    width: 90px;
    height: 90px;
  }

  .testi_box .testi_txt h4 {
    font-size: 16px;
  }

  .footer-item .footer-head {
    font-size: 15px;
  }

  .footer-item p, .footer-item li a, .ftr_icon p {
    font-size: 13px;
  }

  .ftr_txt h4 {
    font-size: 15px;
  }

  .why_box h3 br {
    display: none;
  }

  .sec1_shape1 {
    width: 20%;
  }

  .sec1_shape6 {
    left: 7%;
  }

  .speci_shape1 {
    display: none;
  }

  .mob_none {
    display: none;
  }
  
  .desk-none {
    display: block;
  }

}

@media(max-width: 600px) {

  .site-logo {
    width: 20%;
  }

}

@media(max-width: 576px) {

  #enquire_btn p {
    font-size: 11px;
  }

}

@media(max-width: 575px) {

  .banner {
    margin-top: 70px;
  }

  .speci_con {
    margin: 0px 130px 0px 0px;
  }

  .testi_txt_bg img {
    width: 100%;
    height: 300px;
  }

  .faq_shape1 {
    z-index: -1;
  }

  .ftr_top .heading h2 {
    font-size: 25px;
    line-height: 35px;
  }

  .faq_shape3 {
    bottom: 2%;
  }

  .admi_txt:not(:last-child) {
    margin-bottom: 20px;
  }

}

@media(max-width: 480px) {

  .heading h2 {
    font-size: 30px;
    line-height: 40px;
  }

  .site-logo {
    width: 24%;
  }

  .speci_con {
    margin: 0px 40px 0px 0px;
  }

  .acti_shape1 {
    z-index: -1;
  }

  .testi_box .testi_txt p {
    font-size: 13px;
  }

  .speci_icon h3, .care_icon h3 {
    font-size: 14px;
  }

  .speci_icon, .care_icon {
    width: 30px;
    height: 30px;
  }

  .testi_box .testi_txt_bg img {
    width: 100%;
    height: 230px;
  }

}

@media(max-width: 440px) {

  .speci_con {
    margin: 0px 0px 0px 0px;
  }

  .bnr_img1 {
    top: 6%;
  }

}

@media(max-width: 414px) {

  .nav_call .call_txt {
    display: none;
  }

  .site-logo {
    width: 26%;
  }

  .navbar-area-inr {
    padding: 10px 0;
  }

  .speci_con {
    margin: 0px 0px 0px 0px;
  }

  .care_con {
    margin: 0px 40px 0px 40px;
  }

  .admi_con {
    padding: 0px 10px;
  }

  .admi_form {
    margin: 0px 0px 0;
  }

  .testi_txt_bg img {
    width: 100%;
    height: 350px;
  }

  .founder_shape2 {
    z-index: -1;
    left: 0;
  }

}

@media(max-width: 393px) {

  .care_con {
    margin: 0px 20px;
  }

  .educator_sec .edu_txt {
    width: 95%;
  }

  .faq_shape3 {
    z-index: -1;
    bottom: 2%;
  }

  .ftr_top .heading h2 {
    font-size: 22px;
    line-height: 32px;
  }

}

@media(max-width: 376px) {

  .testi_box .testi_txt_bg img {
    width: 100%;
    height: 240px;
  }

}

@media(max-width: 360px) {}
/* wordpress code form*/
.admi_form .wpcf7-not-valid-tip {
    color: #fff;
    font-size: 1em;
    font-weight: normal;
    display: block;
}
