@import url('https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,300..900;1,300..900&display=swap');

:root {
  --Black: #000000;
  --White: #ffffff;
  --Primary: #002D64;
  --Secondary: #B6CF00;
  --Border: #E4E4E7;
  --Soft-Text: #585D69;
  --bg-1: #F3F3F3;
  --bg-2: #E9DECE;
  --bg-3: #D7C7EA;
  --bg-4: #FFEFEA;
  --bg-5: #F5F5F2;
}

* {
  margin: 0px;
  padding: 0px;
}

body {
  transition: all 0.4s ease;
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  font-family: "Figtree", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

a {
  text-decoration: none;
}

p {
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
}

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

/* to load scroll css */
.scrollToTop i {
  color: var(--White);
}

.scrollToTop {
  position: fixed;
  bottom: 20px;
  right: 20px;
  height: 40px;
  line-height: 40px;
  width: 40px;
  align-items: center;
  justify-content: center;
  text-align: center;
  cursor: pointer;
  display: block;
  border-radius: 30px;
  box-shadow: inset 0 0 0 2px #B6CF00;
  z-index: 100;
  -webkit-transition: all 300ms linear;
  -o-transition: all 300ms linear;
  transition: all 300ms linear;
  background: var(--Primary);
}

/* header-section css */
.top-hheader ul li a {
  display: flex;
  gap: 5px;
  color: #fff;
  white-space: nowrap;
  align-items: center;
}

.top-hheader ul {
  margin-bottom: 0px;
  display: flex;
  gap: 15px;
  align-items: center;
}

.top-hheader {
  background: #002D64;
  padding: 10px 0px;
}

.socilmedia a:hover {
  margin-top: -6px;
  transition: all 0.4s ease;
}

.socilmedia a {
  color: #fff;
  transition: all 0.4s ease;
  font-size: 1.3rem;
}

.socilmedia {
  display: flex;
  transition: all 0.4s ease;

  align-items: center;
  gap: 10px;
}

.button-groups-btn a:hover {
  border-color: #B6CF00;
}

.button-groups-btn a svg {
  width: 30px;
  height: auto;
}

.button-groups-btn a span {
  color: #B6CF00;
}

.button-groups-btn a {
  height: 100%;
  background: #fff;
  border-radius: 100px;
  padding: 4px 10px;
  display: flex;
  white-space: nowrap;
  font-weight: 600;
  font-size: 14px;
  line-height: 18px;
  border-color: 1px solid #002D64;
  color: #002D64;
  align-items: center;
  gap: 8px;
}

.button-groups-btn {
  display: flex;
  align-items: center;
  gap: 14px;
}

.right-side-top {
  display: flex;
  gap: 15px;
  justify-content: end;
}

header {
  width: 100%;
  background: transparent;
  z-index: 99;
  padding: 10px 0px 10px;
  transition: background-color 0.3s ease;


}

/* header .nav-menu ul li {
  position: relative;
} */

header .header-logo img {
  height: 72px;
}

header .open-nav-menu {
  height: 34px;
  width: 32px;
  align-items: center;
  justify-content: end;
  cursor: pointer;
}

header .menu-overlay {
  position: fixed;
  z-index: 999;
  background-color: rgba(0, 0, 0, 0.5);
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease;
}

.headerfixlogo {
  display: none;
}

.moble-logo {
  display: none;
}

header.scrolled .headerfixlogo {
  display: block;
}

header.scrolled .headerstickylogo {
  display: none;
}

header.scrolled {
  position: fixed;
  background-color: #222;
  top: 0px;
  /* Change the background color when scrolled */
}

header.scrolled .nav-menu ul li a {
  color: #fff;
}

header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

header .nav-menu ul {
  display: flex;
  align-items: center;
  gap: 5px;
  justify-content: center;
}

header .nav-menu ul {
  margin-bottom: 0px;
}

header .nav-menu ul li a {
  font-weight: 500;
  padding: 20px 4px;
  font-size: 14px;
  color: #000;
  transition: all 0.3s ease;
  display: block;
}


header .visit-our-website {
  padding: 6px 15px;
  /* background: var(--Secondary); */
  border-radius: 160px;
  color: #fff;
  position: relative;
  transition: all .2s ease;
  border: 1px solid #fff;
  border-radius: 10px;
  display: inline-block;
  overflow: hidden;
  font-weight: 600;
  font-size: 14px;
  animation: blink 1s linear infinite;
}

@keyframes blink {
  0%, 100% {
    background-color: var(--Primary);
	  border: 1px solid var(--Primary);
  }

  50% {
    background-color: var(--Secondary);
	   border: 1px solid var(--Secondary);
  }

  100% {
    background-color: #3c2998;
	   border: 1px solid #3c2998;
  }
}

header .nav-menu ul li a:hover {
  color: var(--Secondary);
}

header .menu .menu-item .sub-menu ul {
  height: 100%;
  display: block;
}

header .menu .menu-item {
  position: relative;
}

header .menu .menu-item .sub-menu {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  position: absolute;
  z-index: 10;
  background-color: #ffffff;
  box-shadow: -2px 2px 70px -25px rgba(0, 0, 0, 0.3);
  transition: all 0.2s ease;
  opacity: 0;
  border-radius: 10px;
  visibility: hidden;
  /* width: 1100px; */
  width: 260px;
  padding: 5px 0px;
  /* display: flex; */
  /* flex-wrap: wrap; */
  left: 50% !important;
  transform: translateX(-50%);
}

.dropdown .visit-our-website.dropdown-toggle:hover::after {
  /* border-right: .3em solid #002d64; */
  /* border-left: .3em solid #002d64; */
  /* border-top-color: transparent; Optional, depending on your design */
}

.dropdown .visit-our-website.dropdown-toggle::after {
  position: relative;
  z-index: 9;
}

header .dropdown-menu {
  background-color: #ffffff;
  box-shadow: -2px 2px 70px -25px rgba(0, 0, 0, 0.3);
  transition: all 0.2s ease;
  right: 0px !important;
  border: 0px;
  width: 260px;
  transform: unset !important;
  top: 100% !important;
  left: auto !important;
}

header .dropdown-menu a:hover {
  background: var(--Secondary);
  transition: all 0.3s ease;
  color: #fff;
}

header .dropdown-menu a {
  font-weight: 500;
  font-size: 16px;
  color: #000;
  padding: 7px 20px;
  transition: all 0.3s ease;
}

ul.menu-left-dektop {
  padding: 15px 0px;
  border-right: 1px solid #000;
}





header .menu .menu-item .sub-menu ul li a {
  font-weight: 500;
  font-size: 16px;
  color: #000;
  padding: 7px 20px;
  transition: all 0.3s ease;
}

header .menu .menu-item a .plus {
  display: inline-block;
  height: 12px;
  width: 12px;
  position: relative;
  margin-left: 5px;
  pointer-events: none;
}

.header-right-about {
  padding: 15px 20px;
  padding-left: 10px;
}

.header-right-about p {
  font-weight: 400;
  font-size: 15px;
  line-height: 23px;
  color: #495057;
}

.header-right-about h2 {
  font-weight: 700;
  font-size: 30px;
  line-height: 42px;
  color: #B6CF00;
  margin-bottom: 15px;
}



.visit-our-head i {
  margin-left: 6px;
  transform: rotate(-45deg);
}

.header-right-about .visit-our-head {
  color: #002D64;

}

.visit-our-head {
  padding: 6px 25px !important;
  background: #fff;
  border-radius: 160px;
  color: #002D64;
  position: relative;
  transition: all .2s ease;
  border: 1px solid #002D64;
  border-radius: 100px;
  display: inline-block !important;
  overflow: hidden;
  font-weight: 400;
  font-size: 15px;

}

.visit-our-head:hover i {
  transform: rotate(0deg);
  transition: all .3s ease;


}

.header-right-about .visit-our-head:hover {
  color: #fff;
  transition: all .3s ease;


}

.visit-our-head:hover:before {
  width: 100%;
  background: #002D64;
  color: #fff;
  transition: all .4s ease;


}

.visit-our-head:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 10px;
  background: #fff;
  width: 0px;
  height: 47px;
  transition: all .4s ease;
  z-index: 1;
}

.visit-our-head span {
  font-weight: 500;
  position: relative;
  z-index: 7;
}

header .menu .menu-item a .plus:before,
header .menu .menu-item a .plus:after {
  content: '';
  position: absolute;
  box-sizing: border-box;
  left: 50%;
  top: 50%;
  background-color: var(--Secondary);
  height: 2px;
  width: 100%;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease;
}

header .menu .menu-item:hover a .plus:before,
header .menu .menu-item:hover a .plus:after {
  background-color: var(--Secondary);
}

header .menu .menu-item a .plus:after {
  transform: translate(-50%, -50%) rotate(-90deg);
}

header .menu>.menu-item-has-children.active>a .plus:after {
  transform: translate(-50%, -50%) rotate(0deg);
}

header .close-nav-menu {
  height: 30px;
  color: #fff;
  width: 30px;
  background-color: var(--Secondary);
  margin-left: auto;
  margin-right: 10px;
  margin-bottom: 10px;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
}

.img-header-dektop {
  position: relative;
  margin-top: 20px;
}

.img-header-dektop img {
  width: calc(100% - 20px);
  border-radius: 20px;
  text-align: center;
  margin: auto;
  margin-left: 10px;

}

.img-header-dektop::before {
  left: 0px;
  position: absolute;
  background: #C4CEDB;
  top: -10px;
  content: "";
  width: calc(100% - 10px);
  height: 100%;
  border-radius: 20px;
  z-index: -1;
}

.img-header-dektop:after {
  right: 0px;
  position: absolute;
  background: #F0F5CC;
  bottom: -10px;
  content: "";
  width: calc(100% - 10px);
  height: 100%;
  border-radius: 20px;
  z-index: -1;
}

.open-nav-menu span:after {
  top: 7px;
}

.open-nav-menu span:before {
  top: -7px;
}

header.scrolled .open-nav-menu span {
  background-color: #fff;

}

.open-nav-menu span {
  display: block;
  height: 3px;
  width: 24px;
  background-color: #000;
  position: relative;
}

header.scrolled .open-nav-menu span:before {
  background-color: #fff;

}

.open-nav-menu span:before {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  box-sizing: border-box;
  display: inline-block;
}

header.scrolled .open-nav-menu span:after {
  background-color: #fff;

}

.open-nav-menu span:after {
  content: "";
  display: inline-block;
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  box-sizing: border-box;
}

/* hero-section css */
.hero-section .item {
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  /* padding: 150px 0px 100px; */
  /* min-height: 600px; */
}

.hero-section .item .container {
  position: relative;
  z-index: 1;
}

/* .hero-section .item::after {
  background: rgba(0, 0, 0, 0.55);
  content: "";
  height: 100%;
  position: absolute;
  width: 100%;
  left: 0px;
  top: 0px;

} */

.hero-section .item h1 {
  font-weight: 700;
  font-size: 40px;
  line-height: 50px;
  color: #FFFFFF;
}

.hero-section .item p {
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  color: #FFFFFF;
}


.hero-section .owl-dots span {
  width: 8px;
  height: 8px;
  background: #fff;
  display: block;
  border-radius: 100px;
  position: relative;
}

.hero-section .owl-dots {
  position: absolute;
  left: 20px;
  transform: translate(0px, -50%);
  top: 50%;
  display: flex;
  gap: 15px;
  flex-direction: column;
}

.hero-section .owl-dots .active span {
  background: #B6CF00;

}

.hero-section .owl-dots .active span:after {
  width: 20px;
  height: 20px;
  border: 1px solid #B6CF00;
  content: "";
  border-radius: 100px;
  position: absolute;
  left: -6px;
  top: -6px;
}

.clip-marquees img {
  width: 40px;
  height: 40px;

}

.clip-marquees marquee p a {
  color: var(--Primary);
  font-weight: bold;
}

.clip-marquees marquee p {
  margin-bottom: 10px;
  line-height: normal;
}

.clip-marquees marquee {
  font-weight: 600;
  font-size: 18px;
  line-height: 19px;
  color: #000;
  /* height: 50px;
  overflow: hidden; */
}

.title-h2.extratext-span h2 {
  font-size: 29px;
  margin-bottom: 15px;
}

.extratext-span span {
  font-size: 14px;
  display: block;
  text-align: right;
  line-height: normal;
}

.extratext-span h2 {
  width: fit-content;
}

.clip-marquees {
  margin-top: 20px;
  position: relative;
  z-index: 2;
  width: 70%;
  clip-path: polygon(0% 0%, 92% 0, 100% 50%, 92% 100%, 0% 100%);
  background: #B6CF00;
  display: flex;
  align-items: center;
  gap: 10px;
  padding-left: 30px;
  padding-top: 5px;
  padding-bottom: 5px;
}

.footer {
  background-repeat: no-repeat;
  background-size: cover;
  padding: 60px 0px 0px;
}

.footer-bottom {
  margin-top: 60px;
  padding: 15px 0px;
  border-top: 1px solid rgba(255, 255, 255, 0.46);

}

.tf-social-icon {
  padding-top: 20px;
}

.footer-bottom p {
  margin-bottom: 0px;
  font-style: normal;
  text-align: center;
  color: var(--White);
}

.tf-social-icon img {
  width: 45px;
  height: 45px;
  transition: all 0.4s ease;

}

.tf-social-icon a:hover img {
  margin-top: -5px;
}

.footer-menu-list ul {
  margin-bottom: 0px;
}

.tf-social-icon ul {
  display: flex;
  gap: 15px;
}

.footer h5 {
  font-style: normal;
  font-weight: 600;
  font-size: 25px;
  line-height: 30px;
  text-transform: capitalize;
  color: var(--White);
  margin-bottom: 10px;
}

.footer p {
  font-weight: 400;
  font-size: 16px;
  line-height: 34px;
  color: rgba(255, 255, 255, 0.81);
}

.footer-menu-list li a {
  font-weight: 600;
  font-size: 16px;
  line-height: 42px;
  text-transform: capitalize;
  color: rgba(255, 255, 255, 0.81);
  transition: all 0.4s ease;

}

.footer-menu-list li a:hover {
  color: var(--Secondary);
  padding-left: 5px;
}

.footer-logo img {
  height: 70px;
  margin-bottom: 20px;
}

.newsletter-submit {
  width: 100%;
  background: #fff;
  padding: 4px 8px;
  display: flex;
  justify-content: space-between;
  border-radius: 8px;
}

.tf-btn-arrow {
  background: var(--Primary);
  width: 40px;
  height: 40px;
  background: var(--Primary);
  border-radius: 100px;
  border: 0px;
  color: #fff;
  transition: all 0.4s ease;

}

.tf-btn-arrow:hover {
  background: var(--Secondary);
}

.newsletter-submit input:focus {
  outline: 0px;
}

.newsletter-submit input {
  background: transparent;
  border: 0px;

}

.footer .address {
  margin-top: 30px;
}

.footer .address h5 {
  margin-bottom: 15px;
}

.footer .address li p {
  margin-bottom: 0px;
}

.footer .address li {
  margin-bottom: 10px;
}

.footer .address li a:hover {
  color: var(--Secondary);
}

.footer .address li a:hover p {
  color: var(--Secondary);
}

.footer .address li a {
  display: flex;
  align-items: center;
  font-weight: 400;
  font-size: 16px;
  gap: 10px;
  color: rgba(255, 255, 255, 0.81);
}

/* news-letter */
.news-events h2 {
  font-weight: 700;
  font-size: 32px;
  line-height: 42px;
  color: #002D64;
  margin-bottom: 20px;
}

.news-events {
  padding: 50px 0px;
}

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

.links-features-img {
  overflow: hidden;
  transition: all .3s ease 0s;
  border-radius: 10px;

}

.blog-outers img {
  width: 100%;
  border-radius: 10px;
  transition: all .3s ease 0s;
}

.blog-outers:hover h3 {
  color: var(--Secondary);
}

.blog-outers h3 {
  transition: all .3s ease 0s;

  margin-top: 15px;
  font-weight: 600;
  font-size: 22px;
  line-height: 35px;
  color: #002D64;
  margin-bottom: 5px;
}

.blog-outers p {
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  color: #495057;
}


.date-post i {
  color: #002D64;
}

.links-features-img {
  position: relative;
}

.date-post {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  text-transform: capitalize;
  color: #495057;
  transform: rotate(-90deg);
  background: #fff;
  padding: 4px 8px;
  position: absolute;
  right: -49px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 12px;
  top: 46px;
}

/* new-events */
.date-box span {
  font-weight: 800;
  font-size: 22px;
  text-align: center;
  color: #FFFFFF;
  margin-bottom: 4px;
  display: block;
}

.discover-news-list:hover h4 {
  color: #B6CF00;
}

.discover-news-list:hover .date-box {
  background: var(--Secondary);
  border-color: var(--Secondary);
}

.date-box {
  transition: all 0.4s ease;
  width: 58px;
  height: 70px;
  background: #002D64;
  border: 1px solid #002D64;
  border-radius: 5px;
  text-align: center;
  line-height: normal;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  font-weight: 600;
  font-size: 12px;
  line-height: 16px;
  text-align: center;
  color: #FFFFFF;
}

.discover-news-list {
  display: flex;
  transition: all 0.4s ease;
  align-items: center;
  padding: 0px 0px 12px;
  margin-bottom: 12px;
  gap: 10px;
  border-bottom: 1px solid #EFEFEF;
}

.discover-our-school li:last-child .discover-news-list {
  margin-bottom: 0px;
  border-bottom: 0px;
  padding-bottom: 0px;
}

.discover-news-list h4 {
  font-weight: 500;
  font-size: 15px;
  line-height: 22px;
  margin-bottom: 5px;
  color: #000000;
}

.discover-news-list p {
  font-weight: 400;
  font-size: 15px;
  line-height: 21px;
  color: #495057;
  margin-bottom: 0px;
}

.discover-our-school {
  background: #FFFFFF;
  box-shadow: 0px 3px 34px rgba(0, 0, 0, 0.07);
  border-radius: 15px;
  padding: 20px 10px;

}

.discover-our-school h3 {
  font-weight: 700;
  font-size: 20px;
  line-height: 30px;
  text-transform: uppercase;
  color: #002D64;
  margin-bottom: 20px;
}

.discover-our-school ul {
  margin-bottom: 0px;
}


.title-h2 h2 {
  font-weight: 700;
  font-size: 32px;
  line-height: 42px;
  color: #002D64;
  margin-bottom: 5px;
}

.title-h2 {
  padding-bottom: 20px;
  width: fit-content;
}

.title-h2 p {
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  color: #495057;
}


.visit-our-website i {
  margin-left: 6px;
  transform: rotate(-45deg);
}

.visit-our-website {
  padding: 7px 30px;
  background: #002D64;
  border-radius: 160px;
  color: #fff;
  position: relative;
  transition: all .2s ease;
  border: 1px solid #002D64;
  border-radius: 100px;
  display: inline-block;
  overflow: hidden;
  font-weight: 400;
  font-size: 16px;

}

.visit-our-website:hover i {
  transform: rotate(0deg);
  transition: all .3s ease;


}

.visit-our-website:hover {
  color: #002D64;
  transition: all .3s ease;


}

.visit-our-website:hover:before {
  width: 100%;
  background: #fff;
  color: #002D64;
  transition: all .4s ease;


}

.visit-our-website:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 10px;
  background: #002D64;
  width: 0px;
  height: 47px;
  transition: all .4s ease;
  z-index: 1;
}

.visit-our-website span {
  font-weight: 500;
  position: relative;
  z-index: 7;
}

.solution-blocks-items .solution-blocks-item {
  display: none;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.solution-blocks-items .solution-blocks-item.active {
  display: block;
  opacity: 1;
}

.solution-blocks-august-2024 h3 {
  font-weight: 700;
  font-size: 32px;
  line-height: 45px;
  color: #002D64;
}

.solution-blocks-august-2024 p {
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  color: #495057;
}

.solution-blocks-wrap {
  background: #F9FBEB;
  padding: 40px 0px;
  border-radius: 30px;
}

.title-h2 img {
  width: 110px;
  margin-bottom: 10px;
}

.solution-blocks-august-2024 .solution-blocks-tabs {
  z-index: 400;
  padding: 10px 10px;
  border-radius: 50px;
  background-color: var(--White);
  box-shadow: 0 0 20px rgba(0, 0, 0, .1);
}

.solution-blocks-august-2024 .solution-blocks-tabs ul {
  display: flex;
  align-items: center;
  gap: 5px;
  justify-content: space-between;
  margin-bottom: 0px;
  border: 0px;
}

.solution-blocks-august-2024 .solution-blocks-tabs a img,
.solution-blocks-tabs .nav-tabs .nav-link img {
  width: 45px;
  height: 45px;
  border-radius: 100px;

}

.solution-blocks-tabs .nav-tabs .nav-link.active, .solution-blocks-tabs .nav-tabs .nav-link:hover {
  background-color: #F9FBEB;
  color: #B6CF00;
  transition: all 0.4s ease;
}

.solution-blocks-tabs .nav-tabs .nav-link {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 6px 20px;
  text-align: left;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  line-height: 28px;
  border: 0px;
  color: #495057;
  transition: all 0.4s ease;
}

.solution-blocks-august-2024 .solution-blocks-tabs .solution-blocks-tab {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 6px 20px;
  text-align: left;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  line-height: 28px;
  color: #495057;
  transition: all 0.4s ease;

}

.solution-blocks-august-2024 .solution-blocks-tabs .solution-blocks-tab:hover,
.solution-blocks-august-2024 .solution-blocks-tabs .solution-blocks-tab.active {
  background-color: #F9FBEB;
  color: #B6CF00;
  transition: all 0.4s ease;

}

.img-aboutuse img {
  width: calc(100% - 15px);
  border-radius: 20px;

}

.img-aboutuse:after {
  right: 0px;
  position: absolute;
  background: #F0F5CC;
  bottom: -15px;
  content: "";
  width: calc(100% - 15px);
  height: 100%;
  border-radius: 20px;
  z-index: -1;
}

.img-aboutuse {
  position: relative;
}

.about-section {
  padding: 40px 0px 80px;
}

.solution-blocks-august-2024 .solution-blocks-item {
  padding: 80px 0 0px;
}

.solution-blocks-august-2024[data-active-item="1"] .solution-blocks-item,
.solution-blocks-august-2024[data-active-item="2"] .solution-blocks-item,
.solution-blocks-august-2024[data-active-item="3"] .solution-blocks-item,
.solution-blocks-august-2024[data-active-item="5"] .solution-blocks-item,
.solution-blocks-august-2024[data-active-item="4"] .solution-blocks-item {
  opacity: 1;
}

ul.counter-number p {
  font-weight: 600;
  font-size: 16px;
  line-height: 19px;
  letter-spacing: 0.03em;
  margin-bottom: 0px;
  color: #000000;


}

ul.counter-number h3 {
  font-weight: 700;
  font-size: 40px;
  line-height: 45px;
  margin-bottom: 5px;
  color: #B6CF00;
}

ul.counter-number li:first-child {
  border-right: 1px solid #B6CF00;
  padding-right: 30px;
}

ul.counter-number {
  margin-bottom: 0px;
  padding-bottom: 20px;
  display: flex;
  gap: 50px;
}

.solution-blocks-august-2024 .solution-blocks-tabs ul::-webkit-scrollbar-thumb,
.discover-our-school marquee::-webkit-scrollbar-thumb {
  background-color: #002D64;
  border: 2px solid #dee2e6;
  border-radius: 5px
}

.discover-our-school marquee {
  height: 355px;
  overflow: auto;
}

.solution-blocks-august-2024 .solution-blocks-tabs ul::-webkit-scrollbar,
.discover-our-school marquee::-webkit-scrollbar {
  -webkit-appearance: none;
  appearance: none;
  height: 8px;
  width: 8px
}

.solution-blocks-august-2024 .solution-blocks-tabs ul::-webkit-scrollbar-track,
.discover-our-school marquee::-webkit-scrollbar-track {
  background-color: #dee2e6;
  border-radius: 5px
}

.top-hheader ul li {
  display: flex;
  gap: 5px;
}

.numbers-add a {
  margin-bottom: 5px;
}

.instiions-linkss a i {
  color: #fdec02;
}

.instiions-linkss {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 11px;
}

.instiions-linkss a:hover {
  background: #fff;
  border: 1px solid #002d64;
  color: #002d64;
}

.instiions-linkss a {
  background: #002d64;
  color: #fff;
  border: 1px solid #002d64;
  padding: 1px 10px;
  border-radius: 10px;
  font-size: 14px;
  display: flex;
  transition: all 0.4s ease;
  align-items: baseline;
  gap: 8px;
}

.video-play {
  position: absolute;
  z-index: 11;
  background: #fff;
  width: 40px;
  height: 40px;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  color: #b6cf00;
  text-align: center;
  line-height: 40px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.widthcal {
  width: calc(100% - 68px);
}


/* about us page css */
.breadcrumb-sections .container {
  position: relative;
  z-index: 1;

}

.breadcrumb-sections {
  position: relative;
  padding: 240px 0px 20px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.breadcrumb-sections:after {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  background-color: #00000094;
  width: 100%;
  height: 100%;
}

.breadcrumb-sections h1 {
  font-weight: 700;
  margin-bottom: 0px;
  font-size: 28px;
  line-height: 35px;
  color: #FFFBCC;
}

.breadcrumb-ul {
  list-style: none;
  margin-bottom: 0px;
  width: fit-content;
  color: #fff;
  display: flex;
  padding-left: 0px;
}


.breadcrumb-ul .breadcrumb-item+.breadcrumb-item::before {
  display: none;
}

.breadcrumb-ul .breadcrumb-item a i {
  margin-right: 5px;
  color: #FFFBCC;
}

.breadcrumb-ul .breadcrumb-item a:hover, .breadcrumb-ul .breadcrumb-item:hover {
  color: var(--yellow);
}

.breadcrumb-ul .breadcrumb-item:first-child {
  border-right: 1px solid #FFFBCC;
  padding-right: 5px;
  margin-right: 7px;
}

.breadcrumb-ul .breadcrumb-item a, .breadcrumb-ul .breadcrumb-item {
  font-weight: 500;
  font-size: 16px;
  line-height: normal;
  color: #FFFFFF;
}

.breadcrumb-inner-sec {
  display: flex;
  border-bottom: 1px solid #FFFBCC;
  justify-content: space-between;
  padding-bottom: 10px;
  align-items: center;
}

/* mission img */
.mission-img-right::after {
  background: var(--Primary);
  height: calc(100% - 30px);
  width: calc(100% - 20%);
  position: absolute;
  bottom: 0px;
  right: 0px;
  content: "";
  z-index: -1;
}

.mission-img::after {
  background: var(--Primary);
  height: calc(100% - 30px);
  width: calc(100% - 20%);
  position: absolute;
  bottom: 0px;
  left: 0px;
  content: "";
  z-index: -1;
}

.mission-img-right {
  position: relative;
  text-align: left;
  z-index: -1;

}

.mission-img {
  position: relative;
  text-align: right;
}

.mission-img-right img {
  padding-bottom: 30px;
  width: calc(100% - 30px);
}

.mission-img img {
  padding-bottom: 30px;
  width: calc(100% - 30px);
}

.mission-content-right {
  background: #fff;
  margin-right: -50px;
  position: relative;
  z-index: 1;
  padding: 20px;
  padding-bottom: 30px;
}

.mission-content {
  background: #fff;
  margin-left: -50px;
  position: relative;
  z-index: 1;
  padding: 20px;
  padding-bottom: 30px;
}

.mission-content-right {
  background: #fff;
  margin-right: -50px;
  position: relative;
  z-index: 1;
  padding: 20px;
  padding-bottom: 30px;
}

.mission-content-right h3::after {
  position: absolute;
  content: "";
  height: 2px;
  width: 45px;
  background: var(--Secondary);
  bottom: 0px;
  right: 0px;
}

.mission-content h3::after {
  position: absolute;
  content: "";
  height: 2px;
  width: 45px;
  background: var(--Secondary);
  bottom: 0px;
  left: 0px;
}

.mission-content-right p {
  text-align: right;
}

.mission-content-right h3 {
  position: relative;
  font-weight: 700;
  font-size: 22px;
  line-height: 35px;
  color: #000000;
  text-align: right;
  margin-bottom: 15px;
}

.mission-content h3 {
  position: relative;
  font-weight: 700;
  font-size: 22px;
  line-height: 35px;
  color: #000000;
  margin-bottom: 15px;
}

.our-missin-sec p {
  margin-bottom: 0px;
}

.our-missin-sec {
  margin-bottom: 20px;
  overflow: hidden;
}

.mission-content ol {
  padding-left: 15px;
}

.mission-content ol li {
  margin-bottom: 5px;
  font-size: 16px;
  line-height: 28px;
}

.title-h2 .smal-heading {
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  color: #322C6A;
  margin-bottom: 5px;
}

.border-left-about {
  margin-bottom: 20px;
  padding-left: 20px;
  border-left: 2px solid var(--Secondary);
}

.founder-section {
  padding: 50px 0px 0px;
  position: relative;
  background-repeat: no-repeat;
  margin-bottom: 50px;
}

.founder-section-page {
  border-radius: 40px 0px 0px 0px;
  background: #FFFEF5;
  padding: 20px 0px 30px;
}

.postion-top {
  position: absolute;
  width: 60%;
  height: 50px;
  right: 0px;
  top: 0px;

}

.founder-img img {
  width: 100%;
  margin-bottom: 10px;
}

.founder-img p {
  margin-bottom: 0px;
  line-height: normal;
}

.founder-img h3 {
  font-weight: 700;
  font-size: 18px;
  line-height: normal;
  color: #000000;
  margin-bottom: 7px;
}

.founder-img {
  background: #F3F1FF;
  padding: 15px;
  border-radius: 10px;
  text-align: center;
  margin-top: -40px;
}

.title-h2 img {
  margin-left: calc(100% - 45%);
  margin-bottom: 10px;
  margin-top: -25px;
  width: 110px;
}


/* contact Us css */
.contact_form {
  padding: 20px;
  border-radius: 10px;
  background-color: var(--White);
}

.contact_section .title-h2 h2 {
  font-size: 22px;
  margin-bottom: 5px;
}

.contact_section {
  background: rgb(241, 241, 233);
  padding: 50px 0px;
}

.gmap_canvas {
  height: 100%;
}

.gmap_canvas iframe {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}

.contact_iconbox:hover {
  border: 1px solid var(--Primary);
}

.contact_iconbox {
  background-color: var(--White);
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  border: 1px solid var(--White);
}

.contact_iconbox img {
  height: 35px;
  margin-bottom: 10px;
}

.contact_iconbox .iconbox_title {
  font-size: 18px;
  margin-bottom: 5px;
  font-weight: 700;
}

.contact_iconbox p {
  font-size: 16px;
  margin-bottom: 5px;
}

.contact_iconbox h3 {
  font-size: 18px;
  margin-bottom: 0px;
}

label.input_title {
  font-size: 16px;
  margin-bottom: 2px;
  font-weight: 500;
}

.form-control {
  font-size: 14px;
}

.form-control:focus {
  outline: 0px solid var(--Primary);
  border: 1px solid var(--Primary);
  box-shadow: none;
}


/* institute css  */
.tawk-text-truncate {
  max-width: 100%;
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  position: fixed;
  right: 0px;
  z-index: 4;
  background: red;
  /* transform: translate(10px, 10px); */
  top: 40%;
  /* display: flex
; */
  font-size: 16px;
  color: #fff;
  cursor: pointer;
  font-weight: bold;
  /* width: 40px; */
  transform: rotate(-90deg) !important;
  padding: 5px 10px;
  border-radius: 10px 10px 0px 0px;
  right: -50px;
  z-index: 99;
}

.offcanvas.our-istitutes {
  z-index: 9999;
  width: 80% !important;
}

.offcanvas.our-istitutes .title-h2 {
  width: 100%;
  display: flex;
  align-items: center;
  padding-bottom: 0px;
}

.our-istitutes .title-h2 button:focus {
  outline: none;
  box-shadow: none;
}

.our-istitutes .title-h2 button {
  opacity: 1;
}

.our-istitutes .title-h2 h2 {
  margin-bottom: 0px;
}

.our-istitutes .blog-outers {
  background: #f8f7ff;
  padding: 10px;
  text-align: center;
  height: 100%;
  transition: all .3s ease 0s;
  border: 1px solid #f8f7ff;
  border-radius: 10px;
  transition: all .3s ease 0s;
}

.our-istitutes .blog-outers img {
  height: 200px;
  object-fit: cover;
  object-position: top;
  margin-bottom: 0px;
}

.our-istitutes .blog-outers h3 {
  transition: all .3s ease 0s;
  margin-top: 5px;
  font-weight: 600;
  font-size: 18px;
  line-height: 30px;
  color: var(--Black);
  margin-bottom: 5px;
}

.our-istitutes .blog-outers p {
  margin-bottom: 0px;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #495057;
}

.our-istitutes .blog-outers:hover h3 {
  color: var(--Secondary);

}

.our-istitutes .blog-outers:hover {
  border-color: var(--Secondary);
}

.offcanvas-body::-webkit-scrollbar-thumb {
  background-color: #002D64;
  border: 2px solid #dee2e6;
  border-radius: 5px
}

.discover-our-school ul {
  height: 355px;
  overflow: auto;
}

.offcanvas-body::-webkit-scrollbar {
  -webkit-appearance: none;
  appearance: none;
  height: 8px;
  width: 8px
}

.offcanvas-body::-webkit-scrollbar-track {
  background-color: #dee2e6;
  border-radius: 5px
}
