@import url('https://fonts.googleapis.com/css2?family=Baloo+2:wght@400..800&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Sigmar&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  overflow-x: hidden;

}


body {
  background-size: cover;
  /* overflow-x: hidden; */
  background-color: #FFFDF1 !important;
}

h1,
h2,
h3,
h4 {
  font-family: "Sigmar", sans-serif;
}

p {
  font-family: "Poppins", sans-serif;
}

li {
  list-style-type: none;
  font-family: "Poppins", sans-serif;
}

a {
  text-decoration: none !important;
  display: inline-block;
  transition: all .5s ease-in-out;
  font-family: "Poppins", sans-serif;
}

body::-webkit-scrollbar {
  width: 8px;
}

body::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px grey;
  border-radius: 1px;
}

body::-webkit-scrollbar-thumb {
  background-color: #FF5A00;
  border-radius: 1px;
}

body::-webkit-scrollbar-thumb:hover {
  background-color: #8b3100;
}

/* loader styling start  */
.loader-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.5s ease-out;
}

.loader {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  height: 100px;
  margin-bottom: 20px;
}

.loader-wrapper.loaded {
  display: none;
}

.pencil {
  width: 12px;
  height: 80px;
  background: linear-gradient(to bottom, #ff7f50, #ff6347);
  margin: 0 8px;
  border-radius: 6px;
  position: relative;
  animation: pencil-bounce 1.2s infinite ease-in-out;
}

.pencil:nth-child(1) {
  animation-delay: 0s;
  background: #FF6B6B;
}

.pencil:nth-child(2) {
  animation-delay: 0.1s;
  background: #FFD166;
  height: 70px;
}

.pencil:nth-child(3) {
  animation-delay: 0.2s;
  background: #06D6A0;
  height: 90px;
}

.pencil:nth-child(4) {
  animation-delay: 0.3s;
  background: #118AB2;
  height: 60px;
}

.pencil:nth-child(5) {
  animation-delay: 0.4s;
  background: #9370DB;
}

.pencil::before {
  content: '';
  position: absolute;
  top: -10px;
  left: 0;
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 10px solid #333;
}

.loader-text {
  font-size: 24px;
  font-weight: bold;
  color: #ff6347;
  margin-top: 20px;
  letter-spacing: 2px;
}

.loader-text span {
  display: inline-block;
  animation: bounce 1s infinite;
}

.loader-text span:nth-child(1) {
  animation-delay: 0.1s;
}

.loader-text span:nth-child(2) {
  animation-delay: 0.2s;
}

.loader-text span:nth-child(3) {
  animation-delay: 0.3s;
}

.loader-text span:nth-child(4) {
  animation-delay: 0.4s;
}

.loader-text span:nth-child(5) {
  animation-delay: 0.5s;
}

.loader-text span:nth-child(6) {
  animation-delay: 0.6s;
}

.loader-text span:nth-child(7) {
  animation-delay: 0.7s;
}

.loader-text span:nth-child(8) {
  animation-delay: 0.8s;
}

.loader-text span:nth-child(9) {
  animation-delay: 0.9s;
}

.loader-text span:nth-child(10) {
  animation-delay: 1s;
}

/* Sun Character Animation */
.sun-character {
  position: relative;
  width: 80px;
  height: 80px;
  margin-top: 30px;
  animation: rotate 10s linear infinite;
}

.sun-face {
  position: absolute;
  width: 80px;
  height: 80px;
  background-color: #FFD166;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 2;
}

.eyes {
  display: flex;
  justify-content: space-around;
  width: 50px;
  margin-bottom: 5px;
}

.eye {
  width: 10px;
  height: 10px;
  background-color: #333;
  border-radius: 50%;
  animation: blink 3s infinite;
}

.smile {
  width: 30px;
  height: 15px;
  border-bottom: 3px solid #333;
  border-radius: 0 0 20px 20px;
}

.sun-rays {
  position: absolute;
  top: -15px;
  left: -15px;
  width: 110px;
  height: 110px;
  z-index: 1;
}

.sun-rays::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: repeating-conic-gradient(from 0deg,
      transparent 0deg 20deg,
      #FFD166 20deg 30deg);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

/* Animations */
@keyframes pencil-bounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-20px);
  }
}

@keyframes bounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
  }
}

@keyframes blink {

  0%,
  45%,
  55%,
  100% {
    transform: scaleY(1);
  }

  50% {
    transform: scaleY(0.1);
  }
}

/* loader styling end  */
/* HEADER START */
header {
  background-color: #FFFFFF;
}

.min-nv {
  padding: 40px 0 20px;
}

.navbar-brand {
  width: 220px;
}

.menu-br .navbar-brand {
  position: absolute;
  top: -47px;
  z-index: 99;
}

.menu-br .navbar-brand img {
  max-width: 300px;
  width: 100%;
}

.head-topr {
  background-color: #000000;
  color: #fff;
  padding: 6px 0;
}

.menu-br li a {
  font-size: 16px;
  color: #000000;
  border-radius: 50px;
  font-weight: 500;
  padding: 8px 0px !important;
  text-transform: capitalize;
}

.menu-br li a:hover {
  color: #FF790A;
}

.menu-br ul {
  gap: 45px;
  margin-right: 25px !important;
}

.expl-all {
  min-height: 430px;
}

.expl-icon i.fa-solid.fa-arrow-up-right-from-square {
  background: #ff980e;
  height: 55px;
  width: 55px;
  border-radius: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 24px;
}

.nv-crt {
  display: flex;
  gap: 10px;
}

.order-bt {
  background-color: #FF790A;
  color: #000000;
  font-size: 13px;
  font-weight: 500;
  text-transform: capitalize;
  border-radius: 50px;
  min-width: 128px;
  height: 42px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.order-bt:hover {
  color: #fff;
  background: #000;
}

.menu-br nav {
  padding-top: 0;
}

/* HEADER END */
/* Show dropdown on hover */
.nav-item.dropdown:hover .dropdown-menu {
  display: block;
}

.drpMenu>li>a {
  padding-left: 15px !important;
  padding-right: 15px !important;
  text-align: center;
}

/* HOME PAGE START */
.pd-t {
  padding-top: 70px;
}

.main-banner {
  background-size: cover;
  background-repeat: no-repeat;
  height: 1145px;
}

.first-hed {
  font-size: 85px;
  color: #FFFFFF;
  line-height: 90px;
}

.sec-hed {
  font-size: 60px;
  line-height: 64px;
  color: #FF681E;
}

.sec-hed span {
  color: #000000;
}

.min-cont h2 span {
  color: #FF681E;
}

.mor {
  width: 210px;
  height: 55px;
  background-color: #FF681E;
  text-align: center;
  border-radius: 50px;
  color: #FFFFFF;
  font-weight: 600;
  border: 2px solid #FF681E;
  display: flex;
  justify-content: center;
  align-items: center;
}

.mor:hover {
  background-color: #FF681E;
  color: #FFFFFF;
  border: 2px dashed #ffffff;
}

.main-banner::before {
  content: '';
  position: absolute;
  background-image: url(../images/min-bnr-f.png);
  width: 100%;
  height: 290px;
  background-repeat: no-repeat;
  bottom: 0px;
}

.innr-banner .main-banner::before {
  content: '';
  position: absolute;
  background-image: url(../images/min-bnr-two.png);
  width: 100%;
  height: 290px;
  background-repeat: no-repeat;
  bottom: 0px;
}

.str-bef::before {
  content: '';
  position: absolute;
  background-image: url(../images/star-one.png);
  background-repeat: no-repeat;
  width: 300px;
  height: 310px;
  bottom: 20px;
  left: -110px;
  animation: shapePluse 6s linear infinite;
}

.str-bef::after {
  content: '';
  position: absolute;
  background-image: url(../images/star-two.png);
  background-repeat: no-repeat;
  width: 300px;
  height: 320px;
  bottom: 0;
  right: -123px;
  animation: rotateShape 10s linear infinite;
}

.provide {
  background-color: #FFFBF2;
}

.prov-hed p {
  width: 54%;
  margin: 0 auto;
  font-weight: 500;
}

.prov-hed::before {
  content: '';
  position: absolute;
  background-image: url(../images/prv-str.png);
  background-repeat: no-repeat;
  width: 200px;
  height: 200px;
  left: -41px;
  top: 80px;
  animation: rotateShape 10s linear infinite;
}

.prov-hed::after {
  content: '';
  position: absolute;
  background-image: url(../images/prv-str-bef.png);
  background-repeat: no-repeat;
  width: 170px;
  height: 220px;
  right: -30px;
  top: 90px;
  animation: shapePluse 4s linear infinite;
}

.prv-all {
  background-color: #ff980ea1;
}

.fun-bx:hover .fun-im {
  animation: sizeRotate 1.5s ease-in-out forwards;
}

@keyframes sizeRotate {
  0% {
    transform: scale(1) rotate(0deg);
  }

  50% {
    transform: scale(0.8) rotate(360deg);
  }

  100% {
    transform: scale(1) rotate(0deg);
  }
}

.fun-bx {
  background-color: #FF651E;
  border: 2px solid #FF651E;
  padding: 25px;
  border-radius: 10px;
  margin-top: -210px;
  transition: all .5s ease-in-out;
}

.fun-bx:hover {
  border: 2px dashed #fff;
  transform: translateY(-20px);
}

.fun-im {
  background-color: #fff;
  width: 140px;
  height: 140px;
  line-height: 140px;
  border-radius: 50%;
  margin: 0 auto 17px;
}

.fun-bx h4 {
  color: #FFFBF2;
  font-size: 24px;
}

.fun-bx p {
  font-size: 15px;
  font-weight: 500;
  color: #000000;
  min-height: 68px;
}

.fun {
  background-color: #FF980E;
  border-color: #FF980E;
}

.prv-all {
  padding: 40px 0;
  margin-top: 180px;
  min-height: 520px;
}

.prv-all::before {
  content: '';
  position: absolute;
  background-image: url(../images/prv-bef.png);
  background-repeat: no-repeat;
  height: 270px;
  width: 100%;
  bottom: 0;
}

.prv-all::after {
  content: '';
  position: absolute;
  background-image: url(../images/str-cld.png);
  background-repeat: no-repeat;
  height: 290px;
  width: 270px;
  bottom: 26px;
  left: -132px;
  animation: moving 5s linear infinite;
}

.about-sec {
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  background-color: #fffdf1;
  padding: 130px 0 90px;
}

.mar-hed {
  font-size: 30px;
  line-height: 33px;
}

.abt-im::before {
  content: '';
  position: absolute;
  background-image: url(../images/abt-before.png);
  background-size: contain;
  background-repeat: no-repeat;
  height: 668px;
  width: 95%;
  z-index: -1;
  left: 37px;
}

.abt-im {
  z-index: 9;
}

.mission h4 {
  color: #FF651E;
}

.month-sec {
  padding-bottom: 210px;
  padding-top: 340px;
}

.wek-al {
  background-color: #FF651E;
  padding: 50px 35px 20px;
  border-radius: 15px;
  position: relative;
  z-index: 2;
}

.month {
  background-color: #FF980E;
}

.wek-al h4 {
  font-size: 24px;
  color: #000000;
  line-height: 26px;
}

.wek-al h2 {
  color: #FFFFFF;
}

.wek-al a {
  background-color: #FFFFFF;
  color: #000000;
}

.wek-al p {
  font-size: 20px;
  line-height: 22px;
  font-weight: 500;
}

.wek-al li {
  font-size: 20px;
  line-height: 22px;
  margin-bottom: 16px;
  position: relative;
  padding-left: 50px;
}

.wek-al li::before {
  content: '';
  position: absolute;
  background-image: url(../images/ck.png);
  background-repeat: no-repeat;
  height: 40px;
  width: 40px;
  left: 0;
}

.learning-sec::before {
  content: '';
  position: absolute;
  background-image: url(../images/abt-after.png);
  background-repeat: no-repeat;
  background-position: bottom;
  width: 100%;
  height: 200px;
  top: 0;
}

.learn-str {
  top: -9px;
  left: -73px;
}

.learn-str img {
  width: 70%;
}

.learning-sec {
  background-color: #FF651E;
  padding: 270px 0 90px;
}

.experience-bx span {
  position: absolute;
  right: -18px;
  top: -36px;
  height: 80px;
  width: 80px;
  line-height: 80px;
  background-color: #fff;
  text-align: center;
  font-size: 31px;
  border-radius: 50%;
  font-family: "Poppins", sans-serif;
  animation: waveEffect 2s ease-in-out infinite;
}

@keyframes waveEffect {
  0% {
    transform: scale(1);
    opacity: 1;
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
  }

  /* 50%_rs: 1.5s ease-in-out; */

  50% {
    transform: scale(1.2);
    opacity: 0.4;
    box-shadow: 0 0 20px 10px rgba(255, 255, 255, 0.5);
  }

  100% {
    transform: scale(1);
    opacity: 1;
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
  }
}

.experience-bx {
  background-color: #FF980E;
  padding: 25px 30px;
  border-radius: 10px;
  transition: all 0.5s;
}

.experience-bx:hover {
  transform: translateY(-10px);
}

.fot-lnk>ul>li {
  display: flex;
  align-items: start;
  gap: 10px;
}

.fot-lnk>ul>li>span>img {
  min-width: 43px !important;
}

.teh h4 {
  color: #FFFFFF;
}

.experience-bx p {
  color: #000000;
  margin: 0;
}

.tech img {
  width: 30%;
  height: 115px;
  object-fit: cover;
}

.experience-bx:hover {
  background-color: #FFFFFF;
  transition: all 0.5s;
}

.experience-bx:hover span {
  background-color: #FF980E;
  color: #000000;
  transition: all 0.5s;
}

.experience-bx:hover .tech h4 {
  color: #FF980E;
}

.nws-hed h2 {
  width: 70%;
  margin: 10px auto;
}

.news-sec {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  padding: 180px 0;
  height: 1186px;
  z-index: 99;
}

.nws-hed h6 {
  font-size: 20px;
  font-weight: 500;
}

.pop-sun {
  right: -240px;
  top: -130px;
}

.update-bx h3 {
  font-size: 28px;
  color: #FFFFFF;
  border-bottom: 1px solid #FFFFFF;
  padding-bottom: 13px;
  margin-bottom: 15px;
}

.update-bx {
  background-color: #FF651E;
  padding: 30px 20px 34px;
  border-radius: 0px 0px 70px 70px;
  transition: all 0.5s ease-in-out;
}

.update-bx li {
  font-size: 15px;
  color: #000000;
  font-weight: 500;
  transition: all 0.5s ease-in-out;
}

.update-bx a {
  font-size: 18px;
  color: #000000;
  display: flex;
  justify-content: center;
  font-weight: 600;
  transition: all 0.5s ease-in-out;
  transform: translateX(0);
}

.update-bx a:hover {
  transform: translateX(15px);
}

.update-bx:hover {
  background-color: #DFDFDF;
  transition: all 0.5s;
  transform: translateY(-5px);
}

.update-bx:hover h3 {
  color: #ff651e;
  transition: all 0.5s;
}

.update-bx:hover a {
  color: #ff651e;
}

.pop-last {
  left: -250px;
}

.join-al .nws-hed h2 {
  color: #FFFFFF;
}

.join-al .nws-hed h2 span {
  color: #FFFFFF;
}

.join-al {
  z-index: 9;
}

.join-al:before {
  content: "";
  position: absolute;
  background-image: url(../images/join-bk.png);
  background-position: top center;
  background-size: cover;
  top: -220px;
  width: 100%;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}

.join-al {
  padding: 90px 0 196px;
}

.cont-bx {
  border: 4px solid #FFFFFF;
  padding: 70px 35px;
  border-radius: 30px;
}

.cont-bx input {
  height: 70px;
  border-radius: 50px;
  padding: 0 25px;
}

.cont-bx textarea {
  height: 160px;
  border-radius: 15px;
  padding: 15 25px;
}

.cont-bx button {
  background-color: #FF980E;
  width: 100%;
  border: 1px solid #FF980E;
  height: 73px;
  font-size: 18px;
  font-weight: 500;
  border-radius: 70px;
}

.bok-boy {
  margin-top: -560px;
  left: -77px;
  width: 300px;
}

.bok-girl {
  margin-top: -540px;
  left: 74%;
}

footer {
  padding: 70px 0 40px;
}

footer::before {
  content: '';
  position: absolute;
  background-image: url(../images/fot-bk.png);
  background-size: cover;
  width: 100%;
  height: 1053px;
  bottom: 0px;
  z-index: -1;
}

.fot-lnk li a {
  font-size: 20px;
  color: #000000;
  font-weight: 500;
  margin-bottom: 15px;
  text-decoration: underline !important;
}

.fot-lnk li {
  font-size: 20px;
  color: #000000;
  font-weight: 500;
  margin-bottom: 15px;
}

.fot-lnk h3 {
  font-size: 50px;
  line-height: 50px;
}

.fot-im p {
  font-size: 19px;
  font-weight: 500;
  color: #000000;
}

.shapePulse {
  animation: shapePluse 6s linear infinite;
}

@keyframes shapePluse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.2);
  }

  100% {
    transform: scale(1);
  }
}

.rotate {
  animation: rotateShape 10s linear infinite;
}

@keyframes rotateShape {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.moving {
  animation: moving 8s linear infinite;
}

@keyframes moving {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-50px);
  }

  100% {
    transform: translateY(0);
  }
}

.movingup {
  animation: movingup 8s linear infinite;
}

@keyframes movingup {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(50px);
  }

  100% {
    transform: translateY(0);
  }
}

/* HOME PAGE END */
/* INNER PAGES START */
.std-cont h3 {
  font-size: 72px;
  margin: 0;
  line-height: 82px;
  font-family: "Baloo 2", sans-serif;
}

.std-cont {
  color: #FFFFFF;
}

.inr-provd {
  background-color: #FFFFFF;
}

.update-sec {
  background-repeat: no-repeat;
  min-height: 790px;
}

.update-sec::before {
  content: '';
  position: absolute;
  background-image: url(../images/know.png);
  background-size: cover;
  width: 100%;
  height: 778px;
  bottom: -20px;
}

.inr-provd .prv-all::after {
  display: none;
}

.expl-cont {
  bottom: 0px;
  background-color: #FF5A00;
  width: 100%;
  padding: 20px 25px;
  height: 210px;
  border-radius: 0px 0px 15px 15px;
}

.expl-all img {
  width: 100%;
  border-radius: 15px;
}

.see:hover {
  background-color: #000;
  color: #FFFFFF;
  border: 2px dashed #ffffff;
}

.see {
  padding: 12px 40px;
  background-color: #FFFFFF;
  color: #000000;
  font-family: 'Baloo 2';
  font-weight: 600;
  border-radius: 50px;
  border: 2px solid #FFFFFF;
}

.expl-cont h4 {
  font-size: 30px;
  font-family: 'Baloo 2';
  font-weight: 600;
  line-height: 34px;
  color: #FFFFFF;
}

.expl-icon {
  bottom: 172px;
  z-index: 99;
  right: 18px;
}

.explore-sec {
  padding-bottom: 90px;
}

.talk-cont a {
  display: inline-block;
  line-height: 50px;
}

.join-wnd a {
  display: inline-block;
  line-height: 50px;
}

.join-wnd h2 span {
  color: #FF681E;
}

.blog-content {
  padding: 55px 60px;
  border-top: none;
  border: 2px solid rgb(242, 242, 242);
  border-radius: 30px;
}

.blog-content li a {
  color: #000000;
  font-family: 'Baloo 2';
}

.blog-content li a span {
  color: #9c29b2;
  margin-right: 2px;
}

.blog-content h3 {
  color: #000000;
  font-family: 'Baloo 2';
  font-size: 30px;
  font-weight: bold;
  line-height: 36px;
}

.blog-content p {
  color: #74787c;
  font-size: 14px;
}

.read {
  color: #000000;
  font-family: 'Baloo 2';
  font-weight: 600;
  font-size: 18px;
  display: inline-block;
}

.read span {
  margin-left: 7px;
}

.widget_search {
  border: 2px solid #f2f2f2;
  position: relative;
  background-color: #ffffff;
  padding: 40px;
  border-radius: 30px;
  overflow: hidden;
}

.widget_search input {
  padding-left: 30px;
  font-size: 16px;
  background-color: #f9f6ef;
  border: none;
  height: 60px;
  border-radius: 50px;
  font-weight: 500;
  width: 73%;
}

.widget_search button {
  border: 1px solid #ccc;
  padding: .375em .625em;
  font-family: 'Baloo 2';
  position: absolute;
  top: 60px;
  right: 50px;
  height: 60px;
}

.widget_search label {
  font-weight: 700;
  font-family: 'Baloo 2';
  color: #74787c;
}

.widget_search h4 {
  font-size: 24px;
  line-height: 1em;
  margin-bottom: 25px;
  margin-top: -0.1em;
  font-weight: 700;
  font-family: 'Baloo 2';
}

.widget_search h4:before {
  content: "";
  width: 60px;
  height: 2px;
  display: block;
  position: absolute;
  bottom: -7px;
  left: 0;
  background-color: #9c29b2;
}

.widget_search li {
  font-weight: 400;
  line-height: 1;
  margin-bottom: 9px;
  padding: 19px 25px;
  border: 2px solid #f2f2f2;
  position: relative;
  border-radius: 40px;
}

.widget_search li a {
  color: #000000;
  display: inline-block;
  font-family: 'Baloo 2';
}

.widget_search li span {
  position: absolute;
  top: 15px;
  right: 25px;
  color: #fff;
  background-color: #000;
  width: 30px;
  height: 30px;
  text-align: center;
  border-radius: 50%;
  line-height: 31px;
  font-size: 14px;
}

.crat li {
  border: none;
  border-bottom: 2px solid #f2f2f2;
  padding: 0 0 15px 0;
  border-radius: 0;
  margin-bottom: 25px;
}

.crat li a h5 {
  font-weight: 700;
  font-size: 16px;
  line-height: 20px;
  color: #103741;
}

.crat li a h5 {
  font-weight: 700;
  font-size: 16px;
  line-height: 20px;
  color: #103741;
}

.dat {
  font-size: 14px;
  color: #8f959b;
}

.dat strong {
  color: #8f959b;
}

.wideg {
  border-radius: 30px;
  border: 2px solid #f2f2f2;
}

.wideg img {
  border-radius: 30px;
}

.weg-bnr-cont {
  left: 130px;
  top: 60px;
}

.weg-bnr-cont h6 {
  font-size: 16px;
  color: #9c29b2;
}

.weg-bnr-cont h4 {
  font-size: 30px;
  font-family: 'Baloo 2';
  font-weight: 600;
}

.blog-sec::before {
  content: '';
  position: absolute;
  background-image: url(../images/blog-bot.png);
  background-repeat: no-repeat;
  width: 100%;
  height: 520px;
  bottom: 40px;
  z-index: -1;
}

.blog-sec {
  padding-bottom: 360px;
  z-index: 99;
}

.get-touch {
  border: 2px dashed rgb(235, 235, 235);
  box-shadow: 0px 8px 40px 0px rgba(105, 116, 119, 0.08);
  border-radius: 30px;
  background-color: rgb(253, 253, 253);
  padding: 35px 40px 40px 40px;
}

.get-touch h4 {
  font-size: 36px;
  font-family: 'Baloo 2';
  font-weight: 700;
  position: relative;
  margin-bottom: 20px;
}

.get-touch h4:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 60px;
  height: 2px;
  background-color: #9c29b2;
}

.get-touch p {
  color: #74787c;
  font-size: 14px;
}

.get-touch lable {
  color: #103741;
  font-weight: 600;
}

.get-touch input {
  height: 45px;
  padding: 15px;
  background-color: #f9f6ef;
  border: transparent;
  border-radius: 10px;
}

.get-touch textarea {
  height: 150px;
  padding: 15px;
  background-color: #f9f6ef;
  border: transparent;
  resize: none;
  border-radius: 10px;
}

.get-touch button:hover {
  background-color: #000;
  color: #FFFFFF;
  border: 2px dashed #ffffff;
  transition: all 0.5s;
}

.get-touch button {
  background-color: #FF5A00;
  font-size: 18px;
  font-weight: 500;
  padding: 11px 33px;
  line-height: 1.6;
  text-transform: capitalize;
  min-width: 150px;
  color: #ffffff;
  border: 2px solid transparent;
  border-radius: 50px;
  transition: all 0.5s;
}

.loc-cont h5 {
  font-size: 24px;
  margin-bottom: 6px;
  color: #103741;
}

.loc-cont p {
  color: #74787c;
  margin: 0;
}

.c-loc {
  width: 75px;
  height: 75px;
  background-color: #ffffff;
  text-align: center;
  line-height: 54px;
  border-radius: 50%;
  border: 10px solid #fef5ff;
  margin-right: 25px;
}

.ask-al .accordion-button:not(.collapsed) {
  color: #ff681e !important;
  background-color: transparent !important;
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .125);
}

.ask-al p {
  color: #74787c;
  font-size: 15px;
}

.ask-al a {
  color: #9c29b2;
  font-size: 15px;
}


.ask-im img {
  border-radius: 220px 0px 220px 0px;
}

/* INNER PAGES END */

.expl-all>img {
  min-height: 471px;
  max-height: 470px;
  object-fit: cover;
  object-position: top;
}

.footerLogo {
  width: 200px;
}

/* ///////////////////////////////////////////// */
/* ///////////////////////////////////////////// */
/* ///////////////////////////////////////////// */
/* ///////////////////////////////////////////// */
/* ///////////////////////////////////////////// */
/* RESPONSIVE WEBSITE START  */
@media (max-width: 1400px) {
  .menu-br ul {
    gap: 20px;
    margin-right: 20px !important;
  }

  .expl-cont h4 {
    font-size: 24px;
    line-height: 34px;
  }
}

@media (max-width: 1200px) {
  .menu-br .navbar-brand img {
    max-width: 120px;
  }

  .fun-bx {
    margin-top: 0;
  }


}

@media (max-width: 991px) {
  .menu-br .navbar-brand img {
    max-width: 100px;
  }

  .menu-br .navbar-brand {
    top: -40px;
  }

  button.navbar-toggler {
    display: table;
    margin: 0 auto;
    margin-right: 0;
    background: #fb805a;
  }

  span.navbar-toggler-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
  }

  div#navbarSupportedContent {
    position: absolute;
    top: 74px;
    z-index: 100;
    background: #fff;
    padding: 20px;
    width: 100%;
    border-radius: 16px;
  }

  .menu-br ul {
    gap: 20px;
    margin-right: 0 !important;
    margin-bottom: 20px !important;
  }

  .first-hed {
    font-size: 60px;
    line-height: 65px;
  }

  .main-banner {
    height: 850px;
    padding-bottom: 200px;
  }

  footer::before {
    content: '';
    position: absolute;
    background-image: url(../images/fot-bk.png);
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    min-height: 100%;
    top: unset;
    z-index: -1;
    bottom: 0;
  }
}

@media (max-width: 767.5px) {
  .main-banner {
    background-size: cover;
    background-repeat: no-repeat;
    height: 850px;
    padding-bottom: 200px;
  }

  .nav-item.dropdown:hover .dropdown-menu {
      display: block;
      border: none;
  }

  .abt-im::before {
    left: 0;
  }

  .pop-last {
    display: none;
  }

  .get-touch {
    padding: 35px 20px 40px;
  }

  section.learning-sec {
    display: flex;
    align-items: center;
    padding-bottom: 200px;
  }

  .first-hed {
    font-size: 50px;
    line-height: 55px;
  }

  .min-cont {
    position: relative;
    z-index: 2;
  }

  .main-banner {
    height: 750px;
  }

  .str-bef::after {
    background-size: cover;
    width: 200px;
    height: 211px;
  }

  .update-sec::before,
  .blog-sec::before {
    display: none;
  }

  .str-bef::before {
    background-size: cover;
    width: 179px;
    height: 192px;
    bottom: 70px;
    left: -67px;
  }

  .sec-hed {
    font-size: 44px;
    line-height: 50px;
  }

  .prov-hed {
    position: relative !important;
    z-index: 9;
  }

  .prov-hed::before,
  .prov-hed::after {
    z-index: -1;
  }

  .prv-all>.container {
    position: relative;
    z-index: 1;
  }

  .prov-hed p {
    width: 90%;
    margin: 0 auto;
    font-weight: 500;
  }

  .prv-all {
    margin-top: 50px;
  }

  .about-sec {
    padding: 50px 0 0px;
  }

  .month-sec {
    padding-bottom: 40px;
    padding-top: 40px;
  }

  .experience-bx span {
    height: 40px;
    width: 40px;
    line-height: 40px;
    top: -6px;
    right: 0;
  }

  .pop-sun {
    right: -65px;
    top: -78px;
  }

  .pop-sun>img {
    max-width: 200px;
  }

  .nws-hed h2 {
    width: 100%;
    margin: 10px auto;
  }

  .join-al:before {
    top: 0px;
  }

  .bok-boy>img {
    max-width: 75%;
    opacity: 0;
  }

  .bok-girl {
    margin-top: 0;
    right: -0px;
    left: unset;
    display: flex;
    justify-content: end;
  }

  .bok-girl>img {
    max-width: 30%;
    min-width: 300px;
    opacity: 0;
  }
  .fot-lnk>ul>li {
    margin-bottom: 0                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         ;
  }

  .fot-lnk h3 {
    font-size: 40px;
    line-height: 45px;
  }

  .fot-lnk li {
    margin-bottom: 10px;
  }

  .fot-lnk li a {
    font-size: 16px;
    margin-bottom: 10px;
  }

  .fot-lnk>ul>li {
    align-items: center;
  }

  .footerLogo {
    max-width: 200px;
  }

  .learning-sec {
    background-color: #FF651E;
    padding: 170px 0 0px;
  }

  .update-sec {
    background: #fff;
  }

  .explore-sec {
    padding-top: 0;
  }

  .blog-sec {
    padding-bottom: 188px;
  }

  .pd-t {
    padding-top: 40px;
  }

  .innr-banner .main-banner::before {
    height: 190px;
  }

  footer {
    margin-top: -155px;
    padding-top: 160px;
    padding-bottom: 0;
  }
}

@media (max-width: 667.5px) {
  .first-hed {
    font-size: 45px;
    line-height: 50px;
  }

  .cont-bx {
    border: 3px solid #FFFFFF;
    padding: 40px 20px;
  }

  .wek-al li {
    font-size: 17px;
    line-height: 22px;
  }

  .news-sec {
    padding: 80px 0 180px;
  }
}

 @media(max-width: 767.5px) {
    img.month-img {
        max-width: 30% !important;
    }         
}