@font-face {
  font-family: "helveticabold";
  src: url("../fonts/helvetica-bold-font-webfont.woff2") format("woff2"), url("../fonts/helvetica-bold-font-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
* {
  box-sizing: border-box;
  font-size: 100%;
  outline: 0;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Open Sans", sans-serif;
  line-height: 1.45;
  font-size: 16px;
  overflow-x: hidden;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: #333333;
}
a.text-underline {
  text-decoration: underline;
}
a.text-underline:hover {
  text-decoration: none;
}

input::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #fff;
}

input::-moz-placeholder {
  /* Firefox 19+ */
  color: #fff;
}

input:-ms-input-placeholder {
  /* IE 10+ */
  color: #fff;
}

input:-moz-placeholder {
  /* Firefox 18- */
  color: #fff;
}

.main-wrp {
  margin: 0 auto;
  width: 100%;
  padding: 0 4%;
}
@media screen and (max-width: 1500px) {
  .main-wrp {
    padding: 0 2%;
  }
}
.main-wrp-02 {
  margin: 0 auto;
  width: 100%;
  padding: 0 7%;
}
.btn {
  background: #ffc1c7;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  border-radius: 50px;
  cursor: pointer;
  position: relative;
  padding: 19px 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 40px 40px 40px 0 #ffc1c733;
  transition: all 0.8s ease;
}
.btn span {
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 1500px) {
  .btn {
    font-size: 14px;
    padding: 12px 20px;
  }
}
@media screen and (max-width: 1024px) {
  .btn {
    font-size: 12px;
    padding: 10px 16px;
  }
}
@media screen and (max-width: 767px) {
  .btn {
    font-size: 12px;
  }
}
.btn:hover {
  background: #bda7aa;
  box-shadow: -40px 40px 40px 0 #ffc1c733;
}
.btn:hover:after {
  height: 100%;
}
.btn.arrow {
  padding-right: 48px;
}
.btn.arrow:before {
  content: "";
  position: absolute;
  margin: 0 auto;
  width: 13px;
  height: 1px;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  background: #000;
  transition: all 0.3s ease;
}
.btn.arrow:after {
  content: "";
  position: absolute;
  margin: 0 auto;
  width: 6px;
  height: 6px;
  border: 1px solid #000;
  right: 20px;
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
  border-top: none;
  border-left: none;
  transition: all 0.3s ease;
}
.btn.arrow:hover::before {
  right: 12px;
}
.btn.arrow:hover::after {
  right: 12px;
}
@media screen and (max-width: 1500px) {
  .btn.arrow:before, .btn.arrow:after {
    top: 49%;
  }
}
.btn.arrow-btn {
  padding: 10px 14px;
  font-size: 14px;
}
.btn.arrow-btn i {
  margin-left: 6px;
  font-weight: 900;
}
@media screen and (max-width: 767px) {
  .btn.arrow-btn {
    padding: 8px 10px 7px;
    font-size: 14px;
  }
}

/* Dropdown */
.dropdown {
  display: inline-block;
  position: relative;
}

.dd-button {
  padding-right: 40px;
}

.dd-button:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #fff;
  transition: all 0.5s ease;
}

.dd-button:hover:after {
  height: 0;
}

.dd-input {
  display: none;
}

.dd-menu {
  position: absolute;
  top: 100%;
  right: 0;
  border: 1px solid #ccc;
  border-radius: 20px;
  overflow: hidden;
  padding: 0;
  background-color: #ffffff;
  list-style-type: none;
}

.dd-input + .dd-menu {
  display: none;
}

.dd-input:checked + .dd-menu {
  display: block;
}

.dd-menu li {
  padding: 10px 20px;
  cursor: pointer;
  white-space: nowrap;
}

.dd-menu li:hover {
  background-color: #ffc1c7;
}

.dd-menu li a {
  display: block;
  margin: -10px -20px;
  padding: 10px 20px;
}

.dd-menu li.divider {
  padding: 0;
  border-bottom: 1px solid #cccccc;
}

.line-arrow {
  position: relative;
  display: flex;
  width: 40px;
}
.line-arrow::before {
  content: "";
  position: absolute;
  margin: 0 auto;
  width: 10px;
  height: 10px;
  border: 3px solid #fff;
  right: 5px;
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
  border-top: none;
  border-left: none;
}
.line-arrow::after {
  content: "";
  background-color: #fff;
  position: absolute;
  margin: 0 auto;
  width: 20px;
  height: 3px;
  top: 50%;
  transform: translateY(-50%);
}
.line-arrow.prev::before {
  left: 0;
  transform: translateY(-50%) rotate(135deg);
}
.line-arrow.prev::after {
  left: 14px;
}
.line-arrow.next::after {
  right: 3px;
}
@media only screen and (max-width: 1500px) {
  .line-arrow {
    width: 30px;
  }
  .line-arrow:before {
    width: 7px;
    height: 7px;
    border: 2px solid #fff;
    border-top: none;
    border-left: none;
  }
  .line-arrow:after {
    width: 16px;
    height: 2px;
  }
}
@media only screen and (max-width: 1024px) {
  .line-arrow {
    width: 24px;
  }
  .line-arrow:before {
    width: 5px;
    height: 5px;
  }
  .line-arrow:after {
    width: 10px;
    height: 2px;
  }
  .line-arrow.next:after {
    right: 5px;
  }
}

.pink {
  color: #000;
  font-family: "helveticabold";
}

.green {
  color: #000;
  font-family: "helveticabold";
}

.register {
  display: inline-block;
  transform: translate(0px, 25%);
}

.slider-btn-circle.owl-theme .owl-nav [class*=owl-] {
  width: 44px;
  height: 44px;
  font-size: 0;
  border-radius: 50%;
  position: absolute;
  top: calc(50% - 0px);
  transform: translateY(-50%);
  transition: 0.6s cubic-bezier(0.14, 1, 0.34, 1);
  display: flex;
  align-items: center;
  justify-content: center;
}
.slider-btn-circle.owl-theme .owl-nav [class*=owl-]::before {
  content: "";
  position: absolute;
  margin: 0 auto;
  width: 6px;
  height: 6px;
  border: 1px solid #000;
  right: 5px;
  left: 0;
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
  border-top: none;
  border-left: none;
}
.slider-btn-circle.owl-theme .owl-nav [class*=owl-]:not(.disabled):hover {
  transform: translateY(-50%) scale(1.1);
}
.slider-btn-circle.owl-theme .owl-nav [class*=owl-].disabled {
  display: none;
}
.slider-btn-circle.owl-carousel .owl-nav .owl-prev {
  left: 70px;
}
.slider-btn-circle.owl-carousel .owl-nav .owl-prev::before {
  right: 0;
  left: 5px;
  transform: translateY(-50%) rotate(135deg);
}
.slider-btn-circle.owl-carousel .owl-nav .owl-next {
  right: 70px;
}
.slider-btn-circle.green.owl-theme .owl-nav [class*=owl-] {
  color: #fff;
  background: #30c679;
}
.slider-btn-circle.trans-bg-color-black.owl-theme .owl-nav [class*=owl-] {
  color: #000;
  background: transparent;
  top: 50%;
}
.slider-btn-circle.trans-bg-color-black.owl-theme .owl-nav [class*=owl-]:not(.disabled):hover {
  color: #fff;
  background: green;
}
@media screen and (max-width: 768px) {
  .slider-btn-circle.owl-theme .owl-nav [class*=owl-] {
    width: 30px;
    height: 30px;
  }
  .slider-btn-circle.owl-carousel .owl-nav .owl-prev {
    left: 20px;
  }
  .slider-btn-circle.owl-carousel .owl-nav .owl-next {
    right: 20px;
  }
}

.text-center {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .text-center.text-left {
    text-align: left;
  }
}

.mb {
  margin-bottom: 20px;
}
@media only screen and (max-width: 1500px) {
  .mb {
    margin-bottom: 10px;
  }
}

h2 {
  font-size: 60px;
  line-height: 61px;
  color: #fff;
  font-weight: 700;
}
@media only screen and (max-width: 1700px) {
  h2 {
    font-size: 55px;
  }
}
@media only screen and (max-width: 1500px) {
  h2 {
    font-size: 40px;
    line-height: 44px;
  }
}
@media only screen and (max-width: 1024px) {
  h2 {
    font-size: 40px;
  }
}
@media only screen and (max-width: 768px) {
  h2 {
    font-size: 35px;
  }
}
@media only screen and (max-width: 767px) {
  h2 {
    font-size: 30px;
  }
}
@media only screen and (max-width: 480px) {
  h2 {
    font-size: 25px;
    line-height: 28px;
  }
}

h3 {
  color: #fff;
  font-size: 40px;
  text-transform: uppercase;
  font-weight: 400;
}
@media only screen and (max-width: 1700px) {
  h3 {
    font-size: 35px;
  }
}
@media only screen and (max-width: 1500px) {
  h3 {
    font-size: 30px;
  }
}
@media only screen and (max-width: 1300px) {
  h3 {
    font-size: 25px;
  }
}
@media only screen and (max-width: 1024px) {
  h3 {
    font-size: 20px;
  }
}
@media only screen and (max-width: 768px) {
  h3 {
    font-size: 15px;
  }
}

p {
  font-size: 18px;
  color: #fff;
  margin-bottom: 20px;
}
@media only screen and (max-width: 1700px) {
  p {
    font-size: 16px;
    margin-bottom: 17px;
  }
}
@media only screen and (max-width: 1500px) {
  p {
    font-size: 14px;
    margin-bottom: 12px;
  }
}
@media only screen and (max-width: 1024px) {
  p {
    font-size: 12px;
    margin-bottom: 10px;
  }
}

section {
  padding: 5vw 0;
}
@media only screen and (max-width: 1024px) {
  section {
    padding: 6vw 0;
  }
}
@media only screen and (max-width: 767px) {
  section {
    padding: 6vw 0;
  }
}

.heading-wrp {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  align-items: baseline;
}
.heading-wrp .para {
  font-size: 16px;
  font-weight: 600;
  line-height: 22px;
  color: gray;
  margin-top: 12px;
}
@media screen and (max-width: 1100px) {
  .heading-wrp .para {
    font-size: 14px;
    line-height: 18px;
  }
}
@media screen and (max-width: 1000px) {
  .heading-wrp .para br {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .heading-wrp .para {
    font-size: 14px;
    line-height: 16px;
  }
}
@media screen and (max-width: 480px) {
  .heading-wrp {
    flex-wrap: wrap;
    justify-content: space-around;
  }
}

.tabcontent {
  display: none;
}

.tab-wrp {
  display: flex;
  justify-content: space-between;
}
.tab-wrp a {
  text-transform: uppercase;
  color: #757575;
  font-size: 25px;
  font-weight: 500;
}
.tab-wrp a.active {
  color: #fff;
}
.tab-wrp span {
  color: #fff;
  font-size: 25px;
  margin: 0 20px;
}
@media only screen and (max-width: 1500px) {
  .tab-wrp a {
    font-size: 20px;
  }
  .tab-wrp span {
    font-size: 20px;
  }
}
@media only screen and (max-width: 1024px) {
  .tab-wrp a {
    font-size: 18px;
  }
  .tab-wrp span {
    font-size: 18px;
  }
}
@media only screen and (max-width: 767px) {
  .tab-wrp a {
    font-size: 15px;
  }
  .tab-wrp span {
    font-size: 15px;
  }
}

/*Header*/
header {
  background: #fff;
  width: 100%;
  height: 115px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
}
header .main-wrp {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header .logo-wrp a {
  display: block;
  width: 50px;
}
header .right {
  display: flex;
  align-items: center;
  margin-top: -40px;
}
header .right .desktop {
  display: flex;
}
header .right .mobile {
  display: none;
}
header .header-call-icon img{
    filter: invert(1);
    width: 20px;
}

@media only screen and (max-width: 1500px) {
  header {
    height: 85px;
  }
  header .logo-wrp a {
    width: 150px;
    margin-top: -10px;
  }
  header .logo-wrp a img {
    width: 100%;
  }
  header .right {
    margin-top: -27px;
  }
}
@media only screen and (max-width: 1024px) {
  header {
    z-index: 999;
    height: 65px;
  }
  header .logo-wrp a {
    width: 120px;
  }
  header .right {
    display: flex;
    align-items: center;
  }
}
@media only screen and (max-width: 767px) {
  header .logo-wrp a img {
    width: 130px;
  }
  header .right .btn {
    display: none;
  }
  header .right .header-call-icon{
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  header .right .header-call-icon img{
      width: 16px;
  }
}
@media only screen and (max-width: 480px) {
  header {
    height: 45px;
  }
  header .logo-wrp a img {
    width: 100px;
  }
}

main {
  margin-top: 115px;
}
@media only screen and (max-width: 1500px) {
  main {
    margin-top: 85px;
  }
}
@media only screen and (max-width: 1024px) {
  main {
    margin-top: 65px;
  }
}
@media only screen and (max-width: 767px) {
  main {
    margin-top: 62px;
  }
}
@media only screen and (max-width: 480px) {
  main {
    margin-top: 45px;
  }
}

/*Nav*/
nav {
  margin: -38px 30px 0 auto;
}
nav a {
  font-size: 20px;
  color: #363636;
  padding: 10px;
  font-weight: 700;
}
nav span {
  font-size: 20px;
  font-weight: 700;
}
@media only screen and (max-width: 1500px) {
  nav {
    margin: -30px 30px 0 auto;
  }
  nav a {
    font-size: 16px;
  }
}
@media only screen and (max-width: 1024px) {
  nav {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 111;
    background: #cb9fa4;
    left: 0;
    top: 0;
    pointer-events: none;
    opacity: 0;
    transition: all 0.3s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-top: 0;
  }
  nav ul {
    display: flex;
    flex-direction: column;
  }
  nav.open {
    opacity: 1;
    pointer-events: all;
  }
}

.hamburger {
  display: none;
}
@media only screen and (max-width: 1024px) {
  .hamburger {
    display: inline-block;
    width: 35px;
    height: 40px;
    /*background: red;*/
    margin-left: 2em;
    position: relative;
    z-index: 1111;
  }
  .hamburger span {
    width: 100%;
    height: 1px;
    background: #78aaae;
    display: block;
    position: absolute;
    transition: all 0.3s ease-in-out;
  }
  .hamburger span:nth-child(1) {
    top: 25%;
  }
  .hamburger span:nth-child(2) {
    top: 50%;
  }
  .hamburger span:nth-child(3) {
    top: 75%;
  }
  .hamburger.open span {
    background: #000;
  }
  .hamburger.open span:nth-child(1) {
    transform: rotate(45deg);
    top: 50%;
  }
  .hamburger.open span:nth-child(2) {
    transform: scale(0);
  }
  .hamburger.open span:nth-child(3) {
    transform: rotate(-45deg);
    top: 50%;
  }
}

/* Home Banner */
.banner-wrp {
  padding: 0;
  overflow: hidden;
  position: relative;
}

.home-slider .item {
  background: linear-gradient(#fbfbfb, #dcdcdd);
  background-size: cover;
  background-position: center;
  height: calc(100vh - 115px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.home-slider .item.item1 {
  //background-image: url("../images/banner1-2.jpg");
  background-image: url("../images/GFW-Ranking.webp");
}
.home-slider .item.item2 {
  //background-image: url("../images/banner1.jpg");
  background-image: url("../images/New-Early-Years.webp");
}
.home-slider .item .actual-image-rera {
  width: 100%;
  display: flex;
  align-items: center; 
  justify-content: space-between;
}
.home-slider .item .actual-image-rera p {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
}
.home-slider .item > img {
  width: auto;
}
@media only screen and (max-width: 1500px) {
  .home-slider .item {
    height: calc(100vh - 85px);
  }
}
@media only screen and (max-width: 1024px) {
  .home-slider .item {
    height: calc(100vh - 145px);
  }
  .home-slider .item .actual-image-rera p {
    font-size: 10px;
  }
}
@media screen and (max-width: 1000px) {
  .home-slider .item.item1 {
    background-position: center;
  }
}
@media screen and (max-width: 767px) {
  .home-slider .item {
    height: calc(100vh - 100px);
  }
  .home-slider .item .actual-image-rera p {
    font-size: 8px;
  }
}
.home-slider.owl-carousel.owl-drag .owl-item {
  overflow: hidden;
}
.home-slider.owl-carousel .owl-nav.disabled + .owl-dots {
  bottom: 16%;
  left: 7%;
  right: inherit;
}
.home-slider.owl-carousel .owl-dots .owl-dot {
  margin: 0 10px;
  transition: 0.6s cubic-bezier(0.14, 1, 0.34, 1);
}
.home-slider.owl-carousel .owl-dots .owl-dot span {
  transition: 0.6s cubic-bezier(0.14, 1, 0.34, 1);
  background: rgba(255, 255, 255, 0.5);
  width: 14px;
  height: 14px;
}
.home-slider.owl-carousel .owl-dots .owl-dot.active span {
  background: #fff;
}
.home-slider.owl-carousel .owl-dots .owl-dot:hover {
  margin: 0px 8px -2px;
}
.home-slider.owl-carousel .owl-dots .owl-dot:hover span {
  width: 16px;
  height: 16px;
}
@media only screen and (max-width: 768px) {
  .home-slider.owl-carousel .owl-dots .owl-dot span {
    width: 8px;
    height: 8px;
  }
  .home-slider.owl-carousel .owl-dots .owl-dot:hover span {
    width: 10px;
    height: 10px;
  }
}

.down-arw {
  position: absolute;
  width: 22px;
  height: 32px;
  left: 0;
  right: 0;
  bottom: 80px;
  margin: 0 auto;
  border: 2px solid #fff;
  border-radius: 20px;
  overflow: hidden;
  z-index: 3;
  cursor: pointer;
}
.down-arw:before {
  content: "";
  position: absolute;
  width: 3px;
  height: 6px;
  background: #fff;
  border-radius: 5px;
  top: -30%;
  left: 0;
  right: 0;
  margin: 0 auto;
  animation: bounse 1s infinite;
}
@keyframes bounse {
  0% {
    top: -30%;
    opacity: 0;
  }
  1% {
    top: -30%;
    opacity: 1;
  }
  99% {
    top: 110%;
    opacity: 1;
  }
  100% {
    top: -30%;
    opacity: 0;
  }
}
@media only screen and (max-width: 767px) {
  .down-arw {
    bottom: 65px;
  }
}

.call-icon {
  background: #fff;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 5vw;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
  z-index: 1;
}
.call-icon:before, .call-icon:after {
  content: "";
  top: 0;
  left: 0;
  padding: 0;
  z-index: -1;
  background: #fff;
  box-shadow: 0 0 0 1px white;
  opacity: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  transition: all 0.3s ease-in-out;
}
.call-icon:before {
  animation: expandCTwo 3s infinite;
  animation-delay: 0.6s;
  transition: 0.4s;
}
.call-icon:after {
  animation: expandCOne 3s infinite;
}
@keyframes expandCOne {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  90% {
    transform: scale(3.3);
    opacity: 0;
  }
  100% {
    transform: scale(3.3);
    opacity: 0;
  }
}
@keyframes expandCTwo {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  90% {
    transform: scale(3);
    opacity: 0;
  }
  100% {
    transform: scale(3);
    opacity: 0;
  }
}

.intl-tel-input .country-list .country-name,
.intl-tel-input .country-list .flag-box {
  margin-right: 6px;
  color: #000;
}

.sec-eq {
  position: absolute;
  right: 4%;
  top: 57%;
  width: 100%;
  z-index: 1;
  padding: 0;
  max-width: 490px;
  transform: translateY(-50%);
}
.sec-eq .container {
  background: #ffffff;
  border-radius: 60px;
}
.sec-eq .btn.arrow:before {
  background: #fff;
}
.sec-eq .btn.arrow:after {
  border: 1px solid #fff;
  border-top: none;
  border-left: none;
}
.sec-eq .btn.arrow:hover::before {
  right: 12px;
}
.sec-eq .btn.arrow:hover::after {
  right: 12px;
}
.sec-eq .form-heading {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  background: #ffffff;
  padding: 10px 50px;
  border-radius: 10px;
  margin-top: 50px;
}
.sec-eq .form-heading p {
  color: #363636;
  font-size: 20px;
  margin-bottom: 0px;
  line-height: 26px;
}
.sec-eq .form-heading h2 {
  font-size: 40px;
  line-height: 36px;
  font-weight: 700;
}
.sec-eq form {
  display: flex;
  justify-content: center;
  /* align-items: center; */
  flex-wrap: wrap;
  background: #78aaae;
  padding: 44px;
  border-radius: 60px;
}
.sec-eq .eqTitle {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  margin-left: 0;
  margin: 0 0px 12px;
  width: 100%;
}
.sec-eq .formControl {
  margin: 6px 0px;
  width: 100%;
}
.sec-eq .formControl:last-child {
  width: auto;
  margin: 24px auto 0 0;
}
.sec-eq .formControl input,
.sec-eq .formControl select {
  width: 100%;
  min-height: 50px;
  outline: 0;
  font-size: 16px;
  color: #fff;
  background: #ffffff26;
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 0px 24px;
  border-radius: 14px;
}
.sec-eq .formControl input:focus, .sec-eq .formControl input:focus-visible,
.sec-eq .formControl select:focus,
.sec-eq .formControl select:focus-visible {
  background-color: #ffffff54;
}

.sec-eq .formControl.i-agree{
  display: flex;
  align-items: flex-start;
  font-size: 12px;
  margin: 0 !important;
  color: #ffffff;
}
.sec-eq .formControl.i-agree input{
  min-height: 0;
  width: 50px;
  margin: 3px 0 0;
}
.sec-eq .formControl input[type=button] {
  background: #ffc1c7;
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  min-height: 32px;
  border-radius: 50px;
  cursor: pointer;
  position: relative;
  padding: 10px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 40px 40px 40px 0 #ffc1c733;
  transition: all 0.8s ease;
  width: auto;
}
.sec-eq .formControl option {
  color: #000;
}
.sec-eq .formControl.btn {
  width: 100px;
}
.sec-eq .subBtn {
  border: 0;
  outline: 0;
  font-weight: bold;
  cursor: pointer;
}
.sec-eq input[type=number] {
  -moz-appearance: textfield;
}
.sec-eq input[type=number]::-webkit-inner-spin-button,
.sec-eq input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.sec-eq .error_bottom {
  border-bottom: 2px solid red !important;
}
.sec-eq .mobEq {
  display: none;
}
.sec-eq .closeBtn {
  display: none;
}
.sec-eq .intl-tel-input {
  color: #fff;
}
.sec-eq .closeIcon {
  display: none;
}
.sec-eq.brochure-form {
  display: none;
}
.sec-eq.eq-form-franchise {
  display: none;
}
.sec-eq.show {
  display: block;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 11111;
  max-width: none;
  transform: translateY(0);
}
.sec-eq.show .container {
  transform-origin: center;
  position: absolute;
  max-width: 460px;
  width: 90%;
  background: #fff;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50px;
  padding: 15px;
  animation-name: upSlide;
  -webkit-animation-name: upSlide;
  animation-duration: 1s;
  animation-fill-mode: both;
  -webkit-animation-duration: 1s;
  -webkit-animation-fill-mode: both;
}
.sec-eq.show .closeIcon {
  display: flex;
  position: absolute;
  right: 15px;
  font-size: 18px;
  top: 10px;
  color: #fff;
  transform: rotate(45deg);
  background: #000;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  text-align: center;
  align-items: center;
  justify-content: center;
  border: 1px solid #ffff;
  cursor: pointer;
}
.sec-eq.show .eqTitle {
  margin: 15px 0;
}
.sec-eq.show form {
  flex-direction: column;
}
.sec-eq.show .formControl {
  width: 100%;
  margin: 0 0 15px 0;
}
@media only screen and (max-width: 1500px) {
  .sec-eq {
    max-width: 500px;
  }
  .sec-eq .form-heading {
    padding: 18px 30px;
    border-radius: 30px;
  }
  .sec-eq .form-heading p {
    font-size: 20px;
    line-height: 16px;
  }
  .sec-eq .form-heading h2 {
    font-size: 30px;
    line-height: 26px;
  }
  .sec-eq form {
    padding: 30px;
    border-radius: 40px;
  }
  .sec-eq .eqTitle {
    font-size: 18px;
    margin: 0 0px 2px;
  }
  .sec-eq .formControl {
    margin: 8px 0px;
  }
  .sec-eq .formControl:last-child {
    width: auto;
    margin: 14px auto 0 0;
  }
  .sec-eq .formControl input,
.sec-eq .formControl select {
    min-height: 40px;
    font-size: 14px;
    padding: 0px 16px;
    border-radius: 14px;
  }
  .sec-eq.show .container {
    max-width: 380px;
  }
}
@media only screen and (max-width: 1200px) {
  .sec-eq .eqTitle {
    font-size: 16px;
  }
  .sec-eq .formControl {
    width: 180px;
    margin: 0 8px;
  }
}
@media only screen and (max-width: 1024px) {
  .sec-eq {
    max-width: none;
    top: 0;
    transform: translateY(0);
    display: none;
  }
  .sec-eq .container {
    border-radius: 50px;
  }
}
@media only screen and (max-width: 800px) {
  .sec-eq .formControl {
    width: 140px;
    margin: 0 8px;
  }
}
@media only screen and (max-width: 767px) {
  .sec-eq {
    display: none;
  }
  .sec-eq form {
    flex-direction: column;
  }
  .sec-eq .formControl {
    width: 100%;
    margin: 0 0 15px 0;
  }
  .sec-eq .closeIcon {
    display: flex;
  }
}

@keyframes upSlide {
  from {
    transform: translate(-50%, -50%) scale(1.2);
    transform-origin: center;
    opacity: 0;
  }
  to {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
}
.sec-eqMobile {
  display: none;
}
@media only screen and (max-width: 767px) {
  .sec-eqMobile {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    font-size: 12px;
    color: #000;
    background: #78aaae;
    width: 50%;
    padding: 10px 0;
    text-align: center;
    z-index: 99;
  }
  .sec-eqMobile.franchise-mobile-btn {
    left: 50%;
    border-left: 1px solid #fff;
  }
}

.error {
  border: 1px solid red !important;
}

.addmision-page .sec-eq.static {
  position: static;
  transform: translateY(0);
  margin: 40px auto 0;
}

/* What's Garodia Start */
.page-2 {
  background: #eacfd2;
  background: linear-gradient(140deg, #eacfd2 0%, #ce979c 100%);
  padding-bottom: 17.2%;
  margin-bottom: 28%;
  position: relative;
}
.page-2 .main-wrp-02 {
  position: relative;
  z-index: 1;
}
.page-2 h2 {
  font-size: 60px;
  color: white;
}
.page-2 .para {
  font-size: 24px;
  line-height: 30px;
  color: white;
  padding-top: 2%;
  padding-bottom: 2%;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.page-2 .para a {
  color: #fff;
}
.page-2 .check {
  display: flex;
  margin: 10px 0;
  align-items: center;
}
.page-2 .check span {
  font-size: 30px;
  color: white;
  margin-left: 20px;
}
.page-2 .fox {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: -22%;
  z-index: 0;
  position: absolute;
  left: 7%;
  right: 7%;
}
.page-2 .fox .box {
  width: 31.2%;
  border-radius: 40px;
  overflow: hidden;
  box-shadow: 20px 30px 50px 0px #b1b1b133;
  background-color: #fff;
}
.page-2 .fox .box img {
  display: flex;
  width: 100%;
  border-radius: 40px;
}
.page-2 .fox .content-box {
  background-color: white;
  width: 100%;
  padding: 36px 55px;
}
.page-2 .fox .content-box h2 {
  font-size: 34px;
  line-height: 42px;
  color: #3c3c3c;
  font-weight: 400;
}
.page-2 .fox .content-box p {
  font-size: 23px;
  color: #909090;
  margin: 15px 0 0;
}
.page-2 .fox .content-box-2 p {
  font-size: 20px;
  color: black;
  margin: 15px 0 0;
}
.page-2 .fox .content-box-3 p {
  font-size: 18px;
  color: black;
  margin: 15px 0 0;
}
.page-2 .box-1 {
  transform: translateY(82%);
}
.page-2 .box-2 {
  transform: translateY(58%);
}
.page-2 .box-3 {
  transform: translateY(33%);
}
.page-2 .circle-01 {
  background-color: #d4b8c8;
  width: 13vw;
  height: 13vw;
  border-radius: 50%;
  position: absolute;
  right: 2%;
  bottom: 41%;
  z-index: 0;
}
.page-2 .circle-02 {
  background-color: #fcd7c3;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  position: absolute;
  right: 15%;
  bottom: 69%;
  z-index: 0;
}
.page-2 .circle-03 {
  background-color: #c4c2dc;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  position: absolute;
  right: 52%;
  bottom: 34%;
  z-index: 0;
}
.page-2 .circle-04 {
  background-color: #e5f9ea;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  position: absolute;
  right: 21%;
  bottom: -33%;
  z-index: 0;
}
@media only screen and (max-width: 1700px) {
  .page-2 .para {
    font-size: 22px;
    line-height: 26px;
  }
  .page-2 .check span {
    font-size: 27px;
  }
  .page-2 .fox .content-box h2 {
    font-size: 28px;
    line-height: 30px;
  }
  .page-2 .fox .content-box p {
    font-size: 20px;
  }
}
@media only screen and (max-width: 1500px) {
  .page-2 {
    padding-bottom: 16.2%;
    margin-bottom: 23%;
  }
  .page-2 h2 {
    font-size: 40px;
  }
  .page-2 .para {
    font-size: 16px;
    line-height: 19px;
  }
  .page-2 .check img {
    width: 30px;
  }
  .page-2 .check span {
    font-size: 19px;
  }
  .page-2 .fox .content-box {
    padding: 26px 51px;
  }
  .page-2 .fox .content-box h2 {
    font-size: 21px;
    line-height: 24px;
  }
  .page-2 .fox .content-box p {
    font-size: 14px;
    line-height: 17px;
    margin: 12px 0 0;
  }
  .page-2 .circle-02 {
    width: 50px;
    height: 50px;
  }
  .page-2 .circle-03 {
    width: 90px;
    height: 90px;
  }
  .page-2 .circle-04 {
    width: 50px;
    height: 50px;
  }
}
@media only screen and (max-width: 1024px) {
  .page-2 {
    margin-bottom: 28%;
  }
  .page-2 h2 {
    font-size: 40px;
  }
  .page-2 .para {
    font-size: 14px;
    line-height: 16x;
  }
  .page-2 .check img {
    width: 22px;
  }
  .page-2 .check span {
    font-size: 16px;
  }
  .page-2 .fox .box {
    border-radius: 20px;
  }
  .page-2 .fox .box img {
    border-radius: 20px;
  }
  .page-2 .fox .content-box {
    padding: 16px 24px 28px;
  }
  .page-2 .fox .content-box h2 {
    font-size: 17px;
    line-height: 20px;
  }
  .page-2 .fox .content-box p {
    font-size: 12px;
    line-height: 15px;
    margin: 10px 0 0;
  }
  .page-2 .circle-02 {
    width: 30px;
    height: 30px;
  }
  .page-2 .circle-03 {
    width: 55px;
    height: 55px;
  }
  .page-2 .circle-04 {
    width: 30px;
    height: 30px;
  }
}
@media only screen and (max-width: 768px) {
  .page-2 {
    margin-bottom: 28%;
  }
  .page-2 h2 {
    font-size: 30px;
    line-height: 34px;
  }
  .page-2 .para {
    font-size: 12px;
    line-height: 14px;
  }
  .page-2 .check {
    margin: 8px 0;
  }
  .page-2 .check img {
    width: 18px;
  }
  .page-2 .check span {
    font-size: 14px;
  }
  .page-2 .fox .content-box {
    padding: 16px 19px 18px;
  }
  .page-2 .fox .content-box h2 {
    font-size: 15px;
    line-height: 16px;
  }
}
@media only screen and (max-width: 767px) {
  .page-2 {
    margin-bottom: 20%;
  }
  .page-2 h2 {
    font-size: 24px;
    line-height: 28px;
  }
  .page-2 .para br {
    display: none;
  }
  .page-2 .fox {
    position: relative;
    left: 0;
    right: 0;
    flex-wrap: wrap;
    justify-content: center;
    transform: translateY(18%);
  }
  .page-2 .fox .box {
    width: 300px;
    transform: translateY(0);
    margin-bottom: 20px;
  }
  .page-2 .circle-03 {
    right: 82%;
  }
  .page-2 .circle-04 {
    bottom: 7%;
  }
}
@media only screen and (max-width: 480px) {
  .page-2 h2 {
    font-size: 19px;
    line-height: 24px;
  }
  .page-2 .check span {
    margin-left: 14px;
  }
  .page-2 .fox {
    transform: translateY(12%);
  }
  .page-2 .circle-02 {
    bottom: 77%;
  }
  .page-2 .circle-04 {
    right: 4%;
  }
}

/* What's Garodia End */
/* Enrol Section Start */
.page-3 h2 {
  text-align: center;
  color: #303030;
}
.page-3 h2 span {
  font-size: 80px;
  margin: 0.7% 0 1.6%;
  display: inline-block;
}
.page-3 .p1 {
  text-align: center;
  color: #303030;
  margin-bottom: 6%;
  font-size: 50px;
  font-weight: 700;
  margin: 3% 0 6%;
  position: relative;
  z-index: 2;
}
.page-3 .p1 span {
  background-color: #fff;
  position: relative;
  padding: 0 40px;
}
.page-3 .p1 span:before, .page-3 .p1 span:after {
  content: "";
  position: absolute;
  width: 19px;
  height: 19px;
  top: 53%;
  transform: translateY(-50%);
  background-color: #fff;
  border: 1px solid #757575;
  border-radius: 50%;
}
.page-3 .p1 span:before {
  left: 0px;
}
.page-3 .p1 span:after {
  right: 0px;
}
.page-3 .rox {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-end;
  background-color: white;
  position: relative;
}
.page-3 .rox:before {
  content: "";
  position: absolute;
  width: 88%;
  height: 96%;
  top: -23.5%;
  border: 1px solid #b9b9b9;
  border-radius: 50px;
  z-index: 1;
}
.page-3 .rox:after {
  content: "";
  background-color: #fff;
  position: absolute;
  width: 79%;
  height: 200px;
  top: 62.3%;
  z-index: 2;
}
.page-3 .rox .box {
  width: 33%;
  border-radius: 40px;
  overflow: hidden;
  box-shadow: 20px 30px 50px 0px #b1b1b133;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 50px;
  margin: 0 4%;
  position: relative;
  z-index: 9;
}
.page-3 .rox .box img {
  margin: 15% 0 17%;
}
.page-3 .rox .content-box {
  background-color: white;
  width: 100%;
  height: 150px;
  text-align: center;
}
.page-3 .rox .content-box p {
  font-size: 28px;
  color: #3a3a3a;
  line-height: 30px;
}
.page-3 .rox .content-box-2 p {
  font-size: 20px;
  color: black;
  margin: 15px 0 0;
}
.page-3 .rox .content-box-3 p {
  font-size: 18px;
  color: black;
  margin: 15px 0 0;
}
@media only screen and (max-width: 1700px) {
  .page-3 h2 span {
    font-size: 70px;
    margin: 0;
  }
  .page-3 .rox .box {
    padding: 30px;
  }
  .page-3 .rox .content-box p {
    font-size: 26px;
    line-height: 28px;
  }
}
@media only screen and (max-width: 1500px) {
  .page-3 h2 span {
    font-size: 62px;
    margin: 12px 0 14px;
  }
  .page-3 .p1 {
    font-size: 34px;
    margin: 2.5% 0 5%;
  }
  .page-3 .p1 span {
    padding: 0 34px;
  }
  .page-3 .p1 span:before, .page-3 .p1 span:after {
    content: "";
    width: 15px;
    height: 15px;
    top: 53%;
  }
  .page-3 .rox:before {
    content: "";
    width: 86%;
    height: 98.3%;
    top: -24%;
  }
  .page-3 .rox:after {
    content: "";
    width: 74%;
    top: 37.3%;
  }
  .page-3 .rox .box {
    padding: 30px 50px;
    margin: 0 2%;
  }
  .page-3 .rox img {
    width: 120px;
  }
  .page-3 .rox .content-box {
    height: 90px;
  }
  .page-3 .rox .content-box p {
    font-size: 18px;
    line-height: 20px;
  }
}
@media only screen and (max-width: 1024px) {
  .page-3 h2 {
    font-size: 30px;
  }
  .page-3 h2 span {
    font-size: 52px;
    margin: 0px 0 4px;
  }
  .page-3 .p1 {
    font-size: 26px;
    margin: 1.5% 0 3%;
  }
  .page-3 .p1 span {
    padding: 0 24px;
  }
  .page-3 .p1 span:before, .page-3 .p1 span:after {
    content: "";
    width: 10px;
    height: 10px;
    top: 57%;
  }
  .page-3 .rox:before {
    content: "";
    width: 90%;
    height: 89%;
    top: -16.5%;
    border-radius: 30px;
  }
  .page-3 .rox .box {
    padding: 20px 30px;
  }
  .page-3 .rox img {
    width: 86px;
  }
  .page-3 .rox .content-box {
    height: 80px;
  }
  .page-3 .rox .content-box p {
    font-size: 14px;
    line-height: 16px;
  }
}
@media only screen and (max-width: 768px) {
  .page-3 h2 {
    font-size: 26px;
    line-height: 32px;
  }
  .page-3 h2 span {
    font-size: 40px;
    margin: 0px 0 4px;
  }
  .page-3 .p1 {
    font-size: 22px;
    margin: 1.5% 0 3%;
  }
  .page-3 .p1 span {
    padding: 0 18px;
  }
  .page-3 .p1 span:before, .page-3 .p1 span:after {
    content: "";
    width: 7px;
    height: 7px;
    top: 56%;
  }
  .page-3 .rox .box {
    padding: 15px;
    border-radius: 20px;
  }
  .page-3 .rox img {
    width: 60px;
  }
  .page-3 .rox .content-box {
    height: 60px;
  }
  .page-3 .rox .content-box p {
    font-size: 12px;
    line-height: 14px;
  }
}
@media only screen and (max-width: 767px) {
  .page-3 h2 {
    font-size: 20px;
    line-height: 24px;
  }
  .page-3 h2 span {
    font-size: 30px;
    margin: 0px 0 4px;
  }
  .page-3 .p1 {
    font-size: 17px;
    margin: 1.3% 0 3%;
  }
  .page-3 .p1 span:before, .page-3 .p1 span:after {
    content: "";
    width: 5px;
    height: 5px;
    top: 56%;
  }
  .page-3 .rox {
    flex-wrap: wrap;
    justify-content: center;
  }
  .page-3 .rox:before {
    content: "";
    width: 92%;
    height: 89%;
    top: -6.3%;
    border-radius: 20px;
  }
  .page-3 .rox .box {
    width: 280px;
    margin-bottom: 30px;
  }
  .page-3 .rox .box:last-child {
    margin-bottom: 0;
  }
  .page-3 .rox .box img {
    margin: 16% 0 10%;
  }
  .page-3 .rox .content-box {
    height: auto;
  }
  .page-3 .rox .content-box p br {
    display: none;
  }
}
@media only screen and (max-width: 480px) {
  .page-3 .p1 {
    font-size: 15px;
    margin: 5% 0 3%;
  }
  .page-3 .p1 span {
    padding: 0 12px;
  }
  .page-3 .rox:before {
    content: "";
    width: 106%;
    height: 94%;
    top: -4.6%;
    border-radius: 10px;
  }
  .page-3 .rox:after {
    content: "";
    width: 94%;
    top: 50%;
  }
}

/* Enrol Section End */
/*page-4 Start*/
.page-4 {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  padding-bottom: 0;
}
.page-4 > div {
  width: 25%;
  height: 25vw;
}
.page-4 .content {
  font-family: "Open Sans", sans-serif;
  padding: 2.6% 3.7%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.page-4 .content h4 {
  font-size: 50px;
}
.page-4 .content p {
  font-size: 24px;
  line-height: 28px;
  margin: 14px 0 24px;
}
.page-4 .content a {
  font-size: 30px;
  line-height: 30px;
  font-weight: 700;
  width: 60px;
  height: 60px;
  border: 1px solid #e0c658;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #e0c658;
}
.page-4 .dox {
  background-image: url("../images/s-4.1.jpg");
  background-size: cover;
}
.page-4 .dox-2 {
  background-image: url("../images/s-4.2.jpg");
  background-size: cover;
}
.page-4 .dox-3 {
  background-image: url("../images/s-4.3.jpg");
  background-size: cover;
  width: 50%;
  height: 25vw;
}
.page-4 .dox-4 {
  background-color: white;
  background-size: cover;
}
.page-4 .dox-5 {
  background-image: url("../images/s4-4.jpg");
  background-size: cover;
}
.page-4 .dox-6 {
  background-image: url("../images/s4-5.jpg");
  background-size: cover;
}
.page-4 .dox-7 {
  background-image: url("../images/s4-6.jpg");
  background-size: cover;
  width: 50%;
  height: 50vw;
  justify-content: right;
}
.page-4 .big-box {
  display: flex;
  flex-wrap: wrap;
  width: 50%;
  height: 50vw;
}
.page-4 .big-box > div {
  width: 50%;
  height: 25vw;
}
.page-4 .yellow {
  background-color: #fcf6db;
}
.page-4 .yellow h4 {
  color: #e0c658;
}
.page-4 .yellow p {
  color: #e0c658;
}
.page-4 .yellow a {
  color: #e0c658;
  border-color: #e0c658;
}
.page-4 .pink {
  background-color: #fcdbe3;
}
.page-4 .pink h4 {
  color: #cc6b83;
}
.page-4 .pink p {
  color: #cc6b83;
}
.page-4 .pink a {
  color: #cc6b83;
  border-color: #cc6b83;
}
.page-4 .green {
  background-color: #9ee8b5;
}
.page-4 .green h4 {
  color: #4cac6a;
}
.page-4 .green p {
  color: #4cac6a;
}
.page-4 .green a {
  color: #4cac6a;
  border-color: #4cac6a;
}
.page-4 .blue {
  background-color: #c5f7fd;
}
.page-4 .blue h4 {
  color: #3f919b;
}
.page-4 .blue p {
  color: #3f919b;
}
.page-4 .blue a {
  color: #3f919b;
  border-color: #3f919b;
}
.page-4 .purple {
  background-color: #ac9ee8;
}
.page-4 .purple h4 {
  color: #584996;
}
.page-4 .purple p {
  color: #584996;
}
.page-4 .purple a {
  color: #584996;
  border-color: #584996;
}
@media only screen and (max-width: 1700px) {
  .page-4 .content {
    padding: 2% 3%;
  }
  .page-4 .content h4 {
    font-size: 44px;
  }
  .page-4 .content p {
    font-size: 20px;
    margin: 10px 0 20px;
  }
  .page-4 .big-box > div {
    padding: 2% 6%;
  }
}
@media only screen and (max-width: 1500px) {
  .page-4 .content h4 {
    font-size: 30px;
  }
  .page-4 .content p {
    font-size: 14px;
    margin: 14px 0 24px;
    line-height: 18px;
  }
  .page-4 .content a {
    font-size: 20px;
    line-height: 30px;
    width: 40px;
    height: 40px;
  }
  .page-4 .big-box > div {
    padding: 2% 6%;
  }
}
@media only screen and (max-width: 1024px) {
  .page-4 .content h4 {
    font-size: 24px;
  }
  .page-4 .content p {
    font-size: 12px;
    margin: 12px 0 20px;
    line-height: 16px;
  }
  .page-4 .content a {
    font-size: 18px;
    width: 30px;
    height: 30px;
  }
  .page-4 .big-box > div {
    padding: 2% 6%;
  }
}
@media only screen and (max-width: 768px) {
  .page-4 > div {
    width: 50%;
    height: 50vw;
  }
  .page-4 .dox-3, .page-4 .green {
    width: 100%;
    height: 50vw;
  }
  .page-4 .dox-4 {
    display: none;
  }
  .page-4 .big-box {
    width: 100%;
    height: 100vw;
  }
  .page-4 .big-box > div {
    width: 50%;
    height: 50vw;
  }
  .page-4 .dox-7 {
    width: 100%;
    height: 100vw;
  }
}
@media only screen and (max-width: 480px) {
  .page-4 > div {
    width: 100%;
    height: 90vw;
  }
  .page-4 .content {
    padding: 10% 7%;
    height: auto;
  }
  .page-4 .big-box {
    height: auto;
  }
  .page-4 .big-box > div {
    width: 100%;
    height: 90vw;
  }
  .page-4 .big-box .content {
    padding: 10% 7%;
    height: auto;
  }
  .page-4 .dox-7 {
    width: 100%;
    height: 100vw;
  }
}

/* Page-4 End */
/* Staff Start */
.page-5 {
  background-color: lightyellow;
}
.page-5 .main-wrp-02 {
  display: flex;
  flex-direction: column;
}
.page-5 .staff h2 {
  color: #2d2b2b;
  margin-bottom: 3vw;
}
.page-5 .staff h2 span {
  font-weight: 300;
}
.page-5 .faculty {
  display: flex;
  flex-wrap: wrap;
}
.page-5 .faculty .staff-image {
  width: 50%;
  position: relative;
  padding-bottom: 108px;
}
.page-5 .faculty .staff-image img {
  width: 100%;
  display: block;
}
.page-5 .faculty p {
  display: flex;
  align-items: center;
}
.page-5 .faculty .only-image {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0 1.5% 0 0;
}
.page-5 .faculty .only-image img {
  width: 81%;
  margin: 28% 10px 0 0;
}
.page-5 .faculty.owl-carousel .owl-item > div {
  display: flex;
  flex-wrap: wrap;
}
/* .page-5 .faculty.owl-carousel .owl-nav.disabled + .owl-dots {
  top: -80px;
  bottom: inherit;
  left: inherit;
  right: 0;
} */
.page-5 .faculty.owl-carousel .owl-dots .owl-dot span {
  margin-left: 40px;
  width: 14px;
  height: 14px;
}
.page-5 .faculty.owl-carousel .owl-dots .owl-dot.active span, .page-5 .faculty.owl-carousel .owl-dots .owl-dot:hover span {
  background: #000;
}
.page-5 .staff-image div {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 20px 20px;
}
.page-5 .staff-image p {
  font-size: 26px;
  line-height: 34px;
  color: white;
  font-weight: 700;
  margin-bottom: 0;
}
.page-5 .staff-image .bg-1 {
  background-color: #3eb2ce;
}
.page-5 .staff-image .bg-2 {
  background-color: #9d6cac;
}
.page-5 .staff-image .bg-3 {
  background-color: #b0cc7a;
}
.page-5 .staff-image .bg-4 {
  background-color: #7accac;
}
.page-5 .staff-image .bg-5 {
  background-color: #a9e675;
}
.page-5 .staff-image .bg-6 {
  background-color: #e05d71;
}
.page-5 .staff-image .bg-7 {
  background-color: #fcce77;
}
@media only screen and (max-width: 1700px) {
  .page-5 .faculty .staff-image {
    padding-bottom: 100px;
  }
  .page-5 .faculty .only-image img {
    width: 81%;
    margin: 20% 10px 0 0;
  }
  .page-5 .staff-image p {
    font-size: 26px;
    line-height: 30px;
  }
}
@media only screen and (max-width: 1500px) {
  .page-5 .faculty .staff-image {
    padding-bottom: 72px;
  }
  /* .page-5 .faculty.owl-carousel .owl-nav.disabled + .owl-dots {
    top: -60px;
  } */
  .page-5 .faculty.owl-carousel .owl-dots .owl-dot span {
    margin-left: 30px;
    width: 10px;
    height: 10px;
  }
  .page-5 .staff-image > div {
    padding: 14px 30px;
  }
  .page-5 .staff-image p {
    font-size: 18px;
    line-height: 22px;
  }
}
@media only screen and (max-width: 1300px) {
  .page-5 .faculty .staff-image {
    padding-bottom: 63px;
  }
  .page-5 .staff-image > div {
    padding: 12px 26px;
  }
  .page-5 .staff-image p {
    font-size: 16px;
    line-height: 20px;
  }
}
@media only screen and (max-width: 1024px) {
  .page-5 .faculty .staff-image {
    padding-bottom: 60px;
  }
  /* .page-5 .faculty.owl-carousel .owl-nav.disabled + .owl-dots {
    top: -50px;
  } */
  .page-5 .faculty.owl-carousel .owl-dots .owl-dot span {
    margin-left: 20px;
    width: 8px;
    height: 8px;
  }
  .page-5 .staff-image > div {
    padding: 12px 24px;
  }
  .page-5 .staff-image p {
    font-size: 14px;
    line-height: 18px;
  }
}
@media only screen and (max-width: 768px) {
  .page-5 .faculty .owl-item {
    display: flex;
  }
  .page-5 .faculty .owl-item > div {
    width: 100%;
    display: flex;
  }
  .page-5 .faculty .staff-image {
    width: 50%;
  }
  .page-5 .faculty .only-image img {
    width: 72%;
    margin: 28% 10px 0 0;
  }
}
@media only screen and (max-width: 768px) {
  .page-5 .faculty.owl-carousel .owl-nav.disabled + .owl-dots {
    width: 100%;
  }
  .page-5 .staff h2 {
    line-height: 36px;
    margin-bottom: 80px;
  }
}
@media only screen and (max-width: 480px) {
  .page-5 .faculty .staff-image {
    padding-bottom: 54px;
  }
  .page-5 .staff-image > div {
    padding: 12px 7px;
  }
  .page-5 .staff-image p {
    font-size: 12px;
    line-height: 16px;
  }
}

/* Staff End */
/* Partners Start */
.page-6 {
  background-color: #fff;
  text-align: center;
}
.page-6 .brochure-wrp p {
  font-size: 30px;
  line-height: 30px;
  color: #2d2b2b;
  font-weight: 700;
}
.page-6 .brochure-wrp p br {
  display: none;
}
.page-6 .brochure-wrp .btn {
  display: inline-block;
  font-size: 20px;
}
.page-6 h2 {
  font-size: 10vw;
}
.page-6 .footer-logo {
  margin: 0 0 2% 0;
  width: 35.6%;
}
.page-6 .logo-wrp {
  display: flex;
  justify-content: center;
  align-items: center;
}
.page-6 hr {
  border-bottom: 1px solid #dbdbdb;
  width: 86%;
  margin: 3.4% auto;
}
.page-6 .social-wrp p {
  font-size: 48px;
  color: #4a4a4a;
  font-weight: 700;
  margin-bottom: 30px;
}
.page-6 .social-wrp a {
  margin: 0 1.7%;
}
.page-6 footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.page-6 footer a {
  font-size: 30px;
  font-weight: 600;
  color: #4a4a4a;
}
.page-6 footer p {
  font-size: 24px;
  color: #4a4a4a;
  margin: 20px 0 0;
  width: 100%;
}
.page-6 span {
  margin: 0 20px;
}
@media only screen and (max-width: 1500px) {
  .page-6 .brochure-wrp p {
    font-size: 25px;
    line-height: 25px;
  }
  .page-6 .brochure-wrp .btn {
    font-size: 18px;
  }
  .page-6 .logo-wrp span {
    width: 10%;
    margin: 0 1.4%;
  }
  .page-6 .logo-wrp span img {
    width: 100%;
  }
  .page-6 .social-wrp a {
    width: 50px;
    margin: 0 1.4%;
    display: inline-block;
  }
  .page-6 .social-wrp a img {
    width: 100%;
  }
  .page-6 .social-wrp p {
    font-size: 30px;
    margin-bottom: 14px;
  }
  .page-6 footer a {
    font-size: 20px;
  }
  .page-6 footer p {
    font-size: 14px;
    margin: 10px 0 0;
  }
  .page-6 span {
    margin: 0 14px;
  }
}
@media only screen and (max-width: 1024px) {
  .page-6 .brochure-wrp p {
    font-size: 20px;
    line-height: 20px;
  }
  .page-6 .brochure-wrp .btn {
    font-size: 15px;
  }
  .page-6 .social-wrp a {
    width: 38px;
    margin: 0 1.4%;
  }
  .page-6 .social-wrp p {
    font-size: 24px;
    margin-bottom: 12px;
  }
  .page-6 footer a {
    font-size: 16px;
  }
  .page-6 footer p {
    font-size: 12px;
  }
  .page-6 span {
    margin: 0 14px;
  }
}
@media only screen and (max-width: 767px) {
  .page-6 {
    padding: 80px 0 80px;
  }
  .page-6 .brochure-wrp p {
    font-size: 18px;
    line-height: 18px;
  }
  .page-6 .brochure-wrp p br {
    display: block;
  }
  .page-6 footer a {
    font-size: 16px;
    width: 100%;
  }
}
@media only screen and (max-width: 480px) {
  .page-6 {
    padding: 50px 0 80px;
    flex-wrap: wrap;
  }
  .page-6 .logo-wrp {
    flex-wrap: wrap;
  }
  .page-6 .logo-wrp span {
    width: 20%;
    margin: 0 12%;
  }
  .page-6 .social-wrp p {
    font-size: 18px;
  }
  .page-6 .social-wrp a {
    width: 30px;
    margin: 0 1.8%;
  }
  .page-6 footer a {
    font-size: 12px;
  }
}

/* Partners End */
/* Whatsapp Start*/
.whatsapp {
  position: fixed;
  right: 25px;
  bottom: 20px;
  z-index: 9;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateX(100px);
  animation: whatsapp 1s ease 2s forwards;
}

@keyframes whatsapp {
  0% {
    transform: translateX(100px);
  }
  100% {
    transform: translateX(0px);
  }
}
.whatsapp:before {
  content: "";
  background: #fff;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  z-index: -1;
}

.whatsapp:after {
  content: "";
  background: rgba(38, 25, 17, 0.7);
  width: 100%;
  height: 100%;
  border: 2px solid #fff;
  border-radius: 50%;
  z-index: -2;
  position: absolute;
  left: 0;
  right: 0;
  opacity: 0;
  animation: whatsapp-after 1s ease infinite;
}

@keyframes whatsapp-after {
  0% {
    width: 100%;
    height: 100%;
    left: 0;
    right: 0;
    opacity: 1;
  }
  100% {
    width: 200%;
    height: 200%;
    left: -50%;
    right: -50%;
    opacity: 0;
  }
}
@media screen and (max-width: 768px) {
  .whatsapp {
    bottom: 50px;
  }
}
/* Whatsapp End*/
/* Inner Page Start */
.inner-banner {
  padding: 0;
  position: relative;
}
.inner-banner img {
  width: 100%;
  display: block;
}
.inner-banner .main-wrp-02 > div {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.inner-banner .main-wrp-02 > div .short-line {
  font-size: 40px;
  font-weight: bold;
  margin-bottom: -15px;
}
.inner-banner .main-wrp-02 > div h1 {
  font-size: 60px;
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 1500px) {
  .inner-banner .main-wrp-02 > div .short-line {
    font-size: 25px;
    margin-bottom: -20px;
  }
  .inner-banner .main-wrp-02 > div h1 {
    font-size: 40px;
  }
}
@media screen and (max-width: 1024px) {
  .inner-banner .main-wrp-02 > div .short-line {
    font-size: 18px;
  }
  .inner-banner .main-wrp-02 > div h1 {
    font-size: 30px;
  }
}
@media screen and (max-width: 768px) {
  .inner-banner .main-wrp-02 > div .short-line {
    font-size: 16px;
  }
  .inner-banner .main-wrp-02 > div h1 {
    font-size: 25px;
  }
}
@media screen and (max-width: 767px) {
  .inner-banner .main-wrp-02 > div .short-line {
    font-size: 14px;
    margin-bottom: -15px;
  }
  .inner-banner .main-wrp-02 > div h1 {
    font-size: 20px;
  }
}
@media screen and (max-width: 480px) {
  .inner-banner .main-wrp-02 > div .short-line {
    font-size: 12px;
    margin-bottom: -10px;
  }
  .inner-banner .main-wrp-02 > div h1 {
    font-size: 16px;
  }
}

.inner-banner-slider .item {
  background: linear-gradient(#fbfbfb, #dcdcdd);
  background-size: cover;
  background-position: center;
  height: calc(100vh - 115px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.inner-banner-slider .item .actual-image-rera {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.inner-banner-slider .item .actual-image-rera p {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
}
.inner-banner-slider .item > img {
  width: auto;
}
@media only screen and (max-width: 1500px) {
  .inner-banner-slider .item {
    height: calc(100vh - 85px);
  }
}
@media only screen and (max-width: 1024px) {
  .inner-banner-slider .item {
    height: calc(100vh - 145px);
  }
  .inner-banner-slider .item .actual-image-rera p {
    font-size: 10px;
  }
}
@media screen and (max-width: 1000px) {
  .inner-banner-slider .item {
    height: calc(80vh - 100px);
  }
  .inner-banner-slider .item.item1 {
    background-position: center;
  }
}
@media screen and (max-width: 767px) {
  .inner-banner-slider .item .actual-image-rera p {
    font-size: 8px;
  }
}
.inner-banner-slider.owl-carousel.owl-drag .owl-item {
  overflow: hidden;
}
.inner-banner-slider.owl-carousel .owl-nav.disabled + .owl-dots {
  bottom: 16%;
  left: 7%;
  right: inherit;
}
.inner-banner-slider.owl-carousel .owl-dots .owl-dot {
  margin: 0 10px;
  transition: 0.6s cubic-bezier(0.14, 1, 0.34, 1);
}
.inner-banner-slider.owl-carousel .owl-dots .owl-dot span {
  transition: 0.6s cubic-bezier(0.14, 1, 0.34, 1);
  background: rgba(255, 255, 255, 0.5);
  width: 14px;
  height: 14px;
}
.inner-banner-slider.owl-carousel .owl-dots .owl-dot.active span {
  background: #fff;
}
.inner-banner-slider.owl-carousel .owl-dots .owl-dot:hover {
  margin: 0px 8px -2px;
}
.inner-banner-slider.owl-carousel .owl-dots .owl-dot:hover span {
  width: 16px;
  height: 16px;
}
.inner-banner-slider.about-banner-slider .item.item1 {
  background-image: url("../images/about/banner.jpg");
}
.inner-banner-slider.why-us-banner-slider .item.item1 {
  background-image: url("../images/why-us/banner.jpg");
}
.inner-banner-slider.admissions-banner-slider .item.item1 {
  background-image: url("../images/admissions/banner.jpg");
}
@media only screen and (max-width: 768px) {
  .inner-banner-slider.owl-carousel .owl-dots .owl-dot span {
    width: 8px;
    height: 8px;
  }
  .inner-banner-slider.owl-carousel .owl-dots .owl-dot:hover span {
    width: 10px;
    height: 10px;
  }
  .inner-banner-slider.about-banner-slider .item.item1 {
    background-image: url("../images/about/banner-mobile.png");
  }
  .inner-banner-slider.why-us-banner-slider .item.item1 {
    background-image: url("../images/why-us/banner-mobile.png");
  }
  .inner-banner-slider.admissions-banner-slider .item.item1 {
    background-image: url("../images/admissions/banner-mobile.png");
  }
}

/* Inner Page End */
.addmision-page .inner-banner .main-wrp-02 > div {
  width: 70%;
}
@media only screen and (max-width: 1024px) {
  .addmision-page .inner-banner .main-wrp-02 > div {
    width: 100%;
  }
}

.more-details {
  text-align: center;
}
.more-details .heading {
  font-size: 30px;
  color: #404040;
  font-weight: 700;
  margin-bottom: 40px;
  position: relative;
}
.more-details .heading span {
  background-color: #fff;
  position: relative;
  z-index: 1;
  padding: 0 20px;
}
.more-details .heading:before {
  content: "";
  background-color: #ccc;
  height: 1px;
  width: 90%;
  max-width: 1000px;
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  top: 50%;
}
.more-details .wrp-01 {
  display: flex;
  justify-content: center;
}
.more-details .wrp-01 a {
  margin: 0 3%;
}
.more-details .wrp-01 a p {
  font-size: 24px;
  color: #404040;
  font-weight: 700;
}
@media screen and (max-width: 1700px) {
  .more-details .heading {
    font-size: 26px;
    margin-bottom: 30px;
  }
  .more-details .wrp-01 a p {
    font-size: 20px;
  }
  .more-details .wrp-01 a img {
    width: 90px;
  }
}
@media screen and (max-width: 1024px) {
  .more-details .heading {
    font-size: 22px;
    margin-bottom: 20px;
  }
  .more-details .wrp-01 a p {
    font-size: 18px;
  }
  .more-details .wrp-01 a img {
    width: 70px;
  }
}
@media screen and (max-width: 767px) {
  .more-details .heading {
    font-size: 18px;
  }
  .more-details .heading:before {
    content: "";
    width: 96%;
  }
  .more-details .heading span {
    padding: 0 10px;
  }
  .more-details .wrp-01 {
    flex-wrap: wrap;
  }
  .more-details .wrp-01 a {
    width: 40%;
  }
  .more-details .wrp-01 a p {
    font-size: 15px;
  }
  .more-details .wrp-01 a img {
    width: 50px;
  }
}

.recaptcha-container {
  width: 100%; /* Set this to the width you want */
  max-width: 100%; /* Ensure it doesn't exceed the form's width */
  display: flex;
  justify-content: center; /* Center align if needed */
}

/* Adjust iframe width */
.recaptcha-container div {
  width: 100% !important;
}

/* Optional: Adjust iframe container */
.g-recaptcha {
  transform: scale(0.83); /* Adjust the scale as needed */
  transform-origin: 0 0; /* Maintain the top-left corner origin */
}

/*# sourceMappingURL=main.css.map */
