@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: #DE2A1B;
  --Secondary: #FCC900;
  --Border: #E4E4E7;
  --Soft-Text: #585D69;
  --bg-1: #F3F3F3;
  --bg-2: #E9DECE;
  --bg-3: #D7C7EA;
  --bg-4: #FFEFEA;
  --bg-5: #F5F5F2;
  --st-bg: #f5f4f9;
}

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

p {
  color: #495057;
}

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 var(--Secondary);
  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: 10px;
  color: #fff;
  white-space: nowrap;
  align-items: center;
}

.top-hheader ul li {
  display: flex;
  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: var(--Primary);
  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: var(--Secondary);
}

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

.button-groups-btn a span {
  color: var(--Secondary);
}

.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 var(--Secondary);
  color: var(--Black);
  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 {
  position: fixed;
  width: 100%;
  top: 64px;
  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: 65px;
}

header .open-nav-menu {
  height: 34px;
  width: 40px;
  align-items: center;
  justify-content: center;
  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;
}

header.scrolled {
  background-color: #2C2C2C;
  top: 0px;
  /* Change the background color when scrolled */
}

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: 300;
  padding: 20px 4px;
  font-size: 15px;
  color: #FFFFFF;
  transition: all 0.3s ease;
  display: block;
}

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 .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;
  display: flex;
  flex-wrap: wrap;
  left: 50% !important;
  transform: translateX(-50%);
}

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: 15px;
  color: #495057;
  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: var(--Secondary);
  margin-bottom: 15px;
}



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

.header-right-about .visit-our-head {
  color: var(--Black);

}

.visit-our-head {
  padding: 6px 25px !important;
  background: var(--Secondary);
  border-radius: 160px;
  color: var(--Black);
  position: relative;
  transition: all .2s ease;
  border: 1px solid var(--Secondary);
  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: var(--Primary);
  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: #ff000036;
  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;
}

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

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

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

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

.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: var(--Secondary);

}

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

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

}

.clip-marquees marquee {
  font-weight: 500;
  font-size: 18px;
  line-height: 22px;
  color: #495057;


}

.clip-marquees:after {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgba(254, 237, 1, 0.6) 52%, rgba(102, 102, 102, 0) 100%);
  content: "";
  bottom: 0px;
  width: 100%;
  position: absolute;
  left: 0px;
  z-index: 1;
  height: 1px;

}

.clip-marquees {
  margin-top: -25px;
  position: relative;
  z-index: 2;
  width: 100%;
  clip-path: polygon(5% 0%, 95% 0%, 100% 50%, 95% 100%, 5% 100%, 0 50%);
  background: var(--White);
  display: flex;
  align-items: center;
  gap: 10px;
  padding-left: 70px;
  padding-right: 70px;
  padding-top: 8px;
  padding-bottom: 8px;
}

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

.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;
}

.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: 20px;
}

.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;
  display: flex;
  font-weight: 400;
  align-items: baseline;
  font-size: 18px;
  gap: 10px;
  color: rgba(255, 255, 255, 0.81);
}

.footer .address li div a {
  font-size: 16px;
}

.footer .address li>div>a {
  display: inline-block;
}

.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: 18px;
  gap: 10px;
  color: rgba(255, 255, 255, 0.81);
}

/* news-letter */
.news-events h2 {
  font-weight: 700;
  font-size: 32px;
  line-height: 42px;
  color: var(--Primary);
  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:hover {
  border-color: var(--Secondary);
}

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

.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: 20px;
  line-height: 30px;
  color: var(--Black);
  margin-bottom: 5px;
}

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


.date-post i {
  color: var(--Primary);
}

.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: var(--Secondary);
  padding: 4px 8px;
  position: absolute;
  right: -55px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 12px;
  top: 54px;
  transition: all .3s ease 0s;

}

.blog-outers:hover .date-post {
  background: var(--Primary);

  color: #fff;
}

.blog-outers:hover .date-post i {
  color: #fff;
}

/* new-events */
.date-box span {
  font-weight: 800;
  font-size: 22px;
  color: var(--Primary);
  margin-bottom: 4px;
  display: block;
}

.discover-news-list:hover h4 {
  color: var(--Secondary);
}

.discover-news-list:hover p,
.discover-news-list:hover .date-box,
.discover-news-list:hover .date-box span {
  color: #fff;
}

.discover-news-list:hover {
  background: var(--Primary);
  padding-left: 10px;
  padding-right: 10px;
}

.date-box {
  transition: all 0.4s ease;
  width: 150px;
  height: 70px;
  line-height: normal;
  color: #495057;
  font-weight: 500;
  font-size: 12px;
  line-height: 16px;
  text-align: left;
  display: flex;
  justify-content: center;
  flex-direction: column;

}

.date-box-outer {
  display: flex;
  align-items: center;

}

.discover-news-list i {
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 100px;
  border: 1px solid var(--Primary);
  background: var(--Secondary);
  font-size: 16px;
  text-align: center;
  color: var(--Primary);
  transition: all 0.4s ease;

}

.discover-news-list {
  display: flex;
  transition: all 0.4s ease;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0px 20px;
  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: var(--Primary);
  margin-bottom: 20px;
}

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


.title-h2 h2 span {
  color: var(--Primary);

}

.title-h2 h2 {
  font-weight: 700;
  font-size: 32px;
  line-height: 42px;
  color: var(--Black);
  margin-bottom: 10px;
}

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

  width: 110px;
}

.title-h2 {
  width: fit-content;
}

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);
  }

  50% {
    background-color: var(--Secondary);
  }

  100% {
    background-color: #3c2998;
  }
}

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

.logowhite {
  display: none;
}

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

.visit-our-website {
  padding: 7px 30px;
  background: var(--Secondary);
  border-radius: 160px;
  color: var(--White);
  position: relative;
  transition: all .2s ease;
  border: 1px solid var(--Secondary);
  border-radius: 10px;
  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: #fff;
  transition: all .3s ease;
  border: 1px solid var(--Primary);
}

.visit-our-website:hover:before {
  width: 100%;
  color: #fff;
  background: var(--Primary);
  transition: all .4s ease;
}

.visit-our-website:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 10px;
  /* background: var(--Primary); */
  width: 0px;
  height: 47px;
  transition: all .4s ease;
  z-index: 1;
}

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



.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: 50px 0px 80px;
}

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: var(--Secondary);
}

ul.counter-number li:first-child {
  border-right: 1px solid var(--Secondary);
  padding-right: 30px;
}

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

/* school_facilities */
.school_facilities {
  background: var(--Primary);
  padding-bottom: 100px;
}

.facilities_box {
  background: #FFFFFF;
  border-radius: 10px;
  padding: 20px 15px 25px;
  text-align: center;
  position: relative;
  transition: all 0.4s ease;
  border: 1px solid transparent;
}

.facilities_box h2 {
  font-weight: 700;
  font-size: 18px;
  line-height: 28px;
  text-align: center;
  color: #000000;
}

.facilities_box img {
  margin-bottom: 15px;
  height: 85px;
  width: auto;
  transition: all 0.4s ease;


}

.facilities_box i {
  width: 40px;
  height: 40px;
  line-height: 35px;
  border-radius: 100px;
  border: 3px solid var(--Primary);
  position: absolute;
  background: var(--White);
  left: 50%;
  transform: translate(-50%, 8px);
  font-size: 18px;
  color: var(--Primary);
  transition: all 0.4s ease;

}

.school_facilities .container {
  margin-top: -100px;
  position: relative;
  z-index: 1;
}

.facilities_box:hover h2 {
  color: var(--Secondary);
}

.facilities_box:hover {
  border: 1px solid var(--Secondary);

}

.facilities_box:hover img {
  margin-top: -5px;
}

.facilities_box:hover i {
  transform: translate(-50%, 6px);
  background-color: var(--Secondary);

}

.border-left-about p:last-child {
  margin-bottom: 0px;
}

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

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

.about-section-inner {
  background: linear-gradient(-92.87deg, rgba(50, 44, 106, 0.075) 1.57%, rgba(50, 44, 106, 0) 98.2%);
  border-radius: 40px;
  padding: 30px 20px 30px 0px;

}

.news-events-recents {
  background: linear-gradient(180deg, rgba(246, 244, 238, 0) 0%, #F6F4EE 100%);
}

.news-events-recents {
  padding: 40px 0px 40px;
}

.monrchouter-inner {
  background: var(--Primary);
  border-radius: 20px;
  padding: 30px 15px;
}

.monarch-logo {
  text-align: center;
}

.monarch-logo img {
  height: 55px;
  margin: auto;
  margin-bottom: 10px;
  text-align: center;
}

.monarch-logo:hover p {
  color: var(--Secondary);
}

.monarch-logo p {
  font-weight: 500;
  font-size: 18px;
  margin-bottom: 0px;
  line-height: 24px;
  text-transform: capitalize;
  color: #FFFFFF;
}

.monrch-outer {
  margin-top: -90px;
}

.objection-aim {
  padding: 70px 0px 40px;
}

.destination-list-area {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}

.destination-list-wrap {
  -webkit-box-flex: 100%;
  -webkit-flex: 100%;
  -ms-flex: 100%;
  flex: 100%;
  box-sizing: border-box;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
  transition: all 0.8s ease;
  overflow: hidden;
  background-position: center;
  background-size: cover;
  border-radius: 10px;
  height: 400px;
  position: relative;
  background-repeat: no-repeat;
}

.destination-list-wrap.active {
  -webkit-box-flex: 500%;
  -webkit-flex: 500%;
  -ms-flex: 500%;
  flex: 500%;
}


.destination-list-wrap:before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, #000000 100%);
  border-radius: 10px;
}

.destination-list h3 {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
}

.destination-list p {
  font-size: 14px;
  font-weight: 400;
  color: white;
  line-height: 25px;
  margin-bottom: 0px;
}

.box_my_h {
  display: none;
}

.destination-list-wrap.active .box_my_h {
  display: block;
  position: absolute;
  bottom: 10px;
  width: calc(100% - 30px);
}

.destination-list-wrap.active .box-title {
  display: none;
}

.destination-list .box-title {
  font-weight: 600;
  font-size: 18px;
  line-height: 28px;
  color: #FFFFFF;
}

.destination-list-wrap .destination-content {
  display: block;
}

.destination-list-wrap.active .destination-content {
  display: none;
}


.destination-list .destination-content {
  position: absolute;
  left: 0px;
  bottom: 40px;
  -webkit-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
  white-space: nowrap;
  width: 100%;
}

.destination-list {
  position: relative;
  z-index: 3;
  padding: 15px;
  width: 100%;
  height: 100%;
}

/* slider 3d pattern  */
.swiper-container.swiper-creative .swiper-wrapper .swiper-slide.swiper-slide-active .wdt-content-item {
  transform: translateY(-25px);
}

.swiper-container.swiper-creative .swiper-wrapper .swiper-slide.swiper-slide-next .wdt-content-item {
  transform: rotate(6deg);
}

.swiper-container.swiper-creative .swiper-wrapper .swiper-slide.swiper-slide-prev .wdt-content-item {
  transform: rotate(-6deg);
}

.swiper-container.swiper-creative .swiper-wrapper .swiper-slide .wdt-content-item {
  transition: transform .5s linear;
  border: 2px solid #cccccc;
  border-radius: 15px;
}

.wdt-content-item .wdt-content-media-group::after {
  background: rgba(0, 0, 0, 0.756);
  position: absolute;
  content: "";
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  border-radius: 15px;

}

.wdt-content-item .wdt-content-media-group {
  position: relative;
}

.wdt-content-item .wdt-content-elements-group {
  position: relative;
}

.wdt-content-media-content p {
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  text-align: center;
  color: #EFEFEF;
  margin-bottom: 25px;
}

.wdt-content-media-content img {
  height: 80px !important;
  width: auto !important;
  margin-bottom: 6px;
}

.wdt-content-media-content h5 {
  font-weight: 600;
  font-size: 22px;
  line-height: 30px;
  text-align: center;
  color: #FFFFFF;
}

.wdt-content-media-content {
  position: absolute;
  top: 0px;
  color: #fff;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 15px 30px;
  text-align: center;
}

.discover-feature {
  padding: 60px 0px 100px;
}

.wdt-content-item img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}



.wdt-content-item {
  position: relative;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wdt-image-box-container {
  padding-top: 50px;
}

.wdt-image-box-container.swiper-container.swiper-creative .swiper-slide {
  overflow: visible;
}

.wdt-image-box-container.swiper-container.swiper-creative {
  max-width: 450px;
  margin: auto;
  position: unset;
}

.swiper-creative .swiper-slide:not(.swiper-slide-active, .swiper-slide-prev, .swiper-slide-next) {
  opacity: 0 !important;
}

.swiper-creative .swiper-slide:is(.swiper-slide-active, .swiper-slide-prev, .swiper-slide-next) {
  opacity: 1 !important;
}



.enqury-now i {
  margin-left: 6px;
  transform: rotate(-45deg);
}

.enqury-now {
  padding: 6px 25px;
  background: transparent;
  border-radius: 160px;
  color: var(--White);
  position: relative;
  transition: all .2s ease;
  border: 1px solid var(--White);
  border-radius: 10px;
  display: inline-block;
  overflow: hidden;
  font-weight: 500;
  font-size: 14px;

}

.enqury-now:hover i {
  transform: rotate(0deg);
  transition: all .3s ease;
}

.enqury-now:hover {
  color: var(--Primary);
  transition: all .3s ease;
  border: 1px solid var(--Secondary);
}

.enqury-now:hover:before {
  width: 100%;
  color: var(--Primary);
  background: var(--Secondary);
  transition: all .4s ease;
}

.enqury-now:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 10px;
  width: 0px;
  height: 47px;
  transition: all .4s ease;
  z-index: 1;
}

.enqury-now span {
  font-weight: 500;
  position: relative;
  z-index: 7;
}

.custom-prev,
.custom-next {
  position: absolute;
  top: 70%;
  z-index: 10;
  background-color: var(--Secondary);
  /* Black background */
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--Primary);
  font-size: 20px;
  border-radius: 50%;
  border: 2px solid var(--Primary);
  cursor: pointer;
  transform: translateY(-70%);
  transition: background-color 0.3s;
  background-image: unset;
}

.custom-prev {
  left: 10px;
  /* Position the left arrow */
}

.custom-next {
  right: 10px;
  /* Position the right arrow */
}

.custom-prev:hover,
.custom-next:hover {
  background-color: var(--Primary);
  /* Change color on hover */
  color: var(--Secondary);
  /* Change color on hover */
}

.discover-feature .container {
  position: relative;
}

.swiper-nav-custom .swiper-button-prev:after, .swiper-nav-custom .swiper-button-next:after {
  display: 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;
}

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

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

.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;

}

.our-istitutes .blog-outers img {
  margin-bottom: 0px;
}

.our-istitutes .blog-outers h3 {
  margin-bottom: 0px;
  margin-top: 5px;
  font-size: 18px;
}

.our-istitutes .blog-outers p {
  margin-bottom: 0px;
}

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

}

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

.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
}


/* 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;
}

.about-section-page {
  padding: 50px 0px;
}

.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;
}

.founder-section-page .border-left-about {
  border-left: 2px solid var(--Primary)
}

.facilty-missin-sec {
  overflow: hidden;
  padding: 50px 0px 0px;
}

.facilty-missin-sec .mission-img::after,
.facilty-missin-sec .mission-img-right::after {
  display: none;
}

.facilty-missin-sec .mission-img img,
.facilty-missin-sec .mission-img-right img {
  padding-bottom: 0px;
  width: 100%;
}

.facilty-missin-sec .mission-content,
.facilty-missin-sec .mission-content-right {
  padding: 20px;
}

/* team-section */
.tp-leadership-item:hover .tp-leadership-thumb img {
  transform: scale(1.04);
}

.tp-leadership-thumb img {
  border-radius: 10px;
  transition: .5s;
  width: 100%;
}

.tp-leadership-thumb {
  overflow: hidden;
  border-radius: 10px;
  position: relative;
}

.tp-leadership-hover-box {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 10px;
  opacity: 0;
  z-index: 1;
  transition: all .5s;
}

.tp-leadership-social a:not(:last-of-type) {
  margin-right: 5px;
}

.tp-leadership-social a {
  display: inline-block;
  text-align: center;
  width: 40px;
  height: 40px;
  line-height: 42px;
  border-radius: 50%;
  color: var(--Primary);
  background-color: var(--White);
}

.tp-leadership-hover-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.tp-leadership-social a:hover {
  color: var(--Primary);
  background-color: var(--Secondary);

}

.tp-leadership-btn a span {
  display: inline-block;
  text-align: center;
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50%;
  margin-left: 5px;
  border: 1px solid rgba(255, 255, 255, .2);
  transition: all .3s ease-in-out;
}

.tp-leadership-btn a {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--White);
}

.tp-leadership-thumb:after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  height: 0;
  width: 100%;
  border-radius: 10px;
  -webkit-transition: all .3s 0s ease-out;
  -moz-transition: all .3s 0s ease-out;
  -ms-transition: all .3s 0s ease-out;
  -o-transition: all .3s 0s ease-out;
  transition: all .3s 0s ease-out;
  background-color: transparent;
  background-image: linear-gradient(180deg, #C4123000 38.02%, #de2a1bc7 100%);
}

.tp-leadership-item:hover .tp-leadership-hover-box {
  opacity: 1;
}

.tp-leadership-item:hover .tp-leadership-thumb:after {
  height: 100%;
}

.tp-leadership-content {
  padding: 10px 0 0;
}

.tp-leadership-content h2 {
  font-size: 22px;
  font-weight: 500;
  color: #000;
  line-height: normal;
}

.tp-leadership-content h2 a {
  font-size: 20px;
  font-weight: 600;
  color: #000;
  line-height: normal;
}

.tp-leadership-content span {
  color: #495057;
  font-size: 14px;
  font-weight: 400;
  display: inline-block;
  margin-bottom: 0px;
}

.faculty-sec {
  padding: 50px 0px 20px;
}


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

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

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

.gmap_canvas {
  height: 100%;
}

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

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

.contact_iconbox {
  height: 100%;
  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: 16px;
  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;
}

/* loader front */
.it-loading-stroke::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 3px;
  background-color: #fff;
  animation: educom-anim 5s linear infinite;
  animation-timing-function: cubic-bezier(0.75, 0.04, 0, 0.86);
}

#it-loading {
  background-color: #fff;
  height: 100%;
  width: 100%;
  position: fixed;
  z-index: 999999;
  margin-top: 0px;
  top: 0px;
}

#it-loading-center {
  width: 100%;
  height: 100%;
  position: relative;
}

#it-loading-absolute {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 15%;
  transform: translate(-50%, -50%);
}

.it-loading-content {
  text-align: center;
}

.it-loading-stroke {
  position: relative;
  width: 100%;
  background: var(--Primary);
  height: 3px;
  margin-top: 10px;
}

.it-loading-icon {
  position: absolute;
  top: -60px;
  left: 0;
  width: 60px;
  height: 60px;
  animation: educom-anim 5s linear infinite;
  animation-timing-function: cubic-bezier(0.75, 0.04, 0, 0.86);
}

.it-loading-logo {
  width: 100%;
}

@keyframes educom-anim {
  0% {
    left: 0;
  }

  50% {
    left: 100%;
  }

  100% {
    left: 0;
  }
}

.course-sec, .gallerys-page {
  padding: 50px 0px 0px;
  overflow: hidden;
}

.opening_box {
  border: 1px solid #cdcdcd;
  padding: 15px;
  transition: .6s;
  height: 100%;
}

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

.opening_box h2::after {
  position: absolute;
  content: "";
  height: 2px;
  width: 45px;
  background: var(--Primary);
  bottom: 0px;
  left: 0px;
}

.opening_box ul {
  margin-top: 20px;
  padding-left: 20px;
}

.opening_box ul li {
  list-style: disc;
  font-size: 16px;
  color: #495057;
}

.opening_box:hover {
  background-color: #edf3fb;
  border: 1px solid var(--Primary);
  transition: .6s;
}


.gallery-box {
  border-radius: 0px;
  border: 1px solid var(--Primary);
}

.gallery-box {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 10px;
}

.gallery-box img {
  height: 230px;
  object-fit: cover;
  width: 100%;
  transition: all 500ms ease;
  transform: scale(1);
}


.gallery-box:hover::after {
  opacity: 1;
  -webkit-transform: perspective(400px) rotateX(0deg);
  -ms-transform: perspective(400px) rotateX(0deg);
  transform: perspective(400px) rotateX(0deg);
}

.gallery-box::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  -webkit-transform: perspective(400px) rotateX(-90deg);
  -ms-transform: perspective(400px) rotateX(-90deg);
  transform: perspective(400px) rotateX(-90deg);
  -webkit-transform-origin: top;
  -ms-transform-origin: top;
  transform-origin: top;
  background-color: #de281b52;
  width: 100%;
  height: 100%;
}

.st__testimonial__box i {
  color: var(--Secondary);
}

.st__testimonial__box {
  background: #ff00000d;
  padding: 20px 20px 50px;
  z-index: 1;
  position: relative;
  border-radius: 10px;
}

.st__testi__inner {
  border-bottom: 1px solid rgba(219, 219, 219, 0.9);
  padding-bottom: 15px;
  margin-bottom: 15px;
  transition: .5s;
}

.st__testimonial__box p {
  margin-bottom: 5px;
}

.st__testimonial__box::before {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0%;
  background: #fdc6000c;
  z-index: -1;
  transition: .5s;
}

.st__testimonial__box:hover::before {
  top: 0;
  height: 100%;
}

.st__testi__content {
  margin-left: 20px;
}

.st__testi__thumb img {
  width: 50px !important;
}

.st__testi__content h2 {
  font-size: 20px;
  font-weight: 600;
  color: #000000;
  transition: .5s;
  margin-bottom: 0px;
}

.st__testi__desc {
  min-height: 140px;
}

.st__testi__content span {
  font-size: 14px;
  transition: .5s;
}

.st__testi_quote {
  position: absolute;
  right: 10px;
  bottom: 10px;
}


.st__testi_quote i {
  font-size: 80px;
  color: #ff000026;
  transition: .5s;
}

.testmonials-outer {
  padding: 50px 0px;
}


.testmonials-outer .owl-dots span {
  width: 8px;
  height: 8px;
  background: var(--Primary);
  display: block;
  border-radius: 100px;
  position: relative;
}

.testmonials-outer .owl-dots {
  display: flex;
  gap: 15px;
  margin-top: 40px;
  justify-content: center;
}

.testmonials-outer .owl-dots .active span {
  background: var(--Secondary);

}

.testmonials-outer .owl-dots .active span:after {
  width: 20px;
  height: 20px;
  border: 1px solid var(--Secondary);
  content: "";
  border-radius: 100px;
  position: absolute;
  left: -6px;
  top: -6px;
}

.calling-whtsapicon img:hover {
  opacity: .8;
  transform: rotateY(360deg);
}

.calling-whtsapicon img {
  width: 40px;
  height: 40px;
  transition: all 0.5s ease-in-out;

}

.calling-whtsapicon {
  position: fixed;
  left: 10px;
  bottom: 10px;
  display: flex;
  gap: 10px;
  align-items: center;
  flex-direction: column;
  z-index: 9;
}

.kd-counter-4-item .icon {
  width: 55px;
  border-radius: 100px;
  height: 55px;
  line-height: 55px;
  text-align: center;
  background: var(--Primary);
}

.kd-counter-4-item .icon img {
  height: 30px;
}

.kd-counter-4-item h4 {
  font-weight: 700;
  font-size: 25px;
  line-height: 25px;
  color: #000000;
  margin-bottom: 4px;
}

.kd-counter-4-item h5 {
  font-weight: 400;
  margin-bottom: 0px;
  font-size: 14px;
  line-height: 17px;
  display: flex;
  align-items: center;
  text-transform: capitalize;
  color: #000000;
}

.kd-counter-4-item {
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.4s ease;
}

.mission-content ul li {
  list-style: disc;
  font-size: 16px;
  color: #495057;

  margin-bottom: 5px;
}

.mission-content ul {
  padding-left: 20px;
}

.mission-content-right ul li {
  list-style: disc;
  font-size: 16px;
  margin-bottom: 5px;
}

.mission-content-right ul {
  padding-left: 20px;
}

.form-check-input:focus {
  box-shadow: none;
}

.form-check-input:checked {
  background-color: var(--Primary);
  border-color: var(--Primary);
}

.title-h2 a {
  color: var(--Primary);
}

.input_title span {
  color: red;
}

.form-control {
  appearance: auto;
}

.all-page-section-page {
  background: rgb(241, 241, 233);
  padding: 50px 0px;
  margin-bottom: 50px;
}

.tble-cards {
  border-radius: 10px;
  background-color: var(--White);
  overflow: hidden;
}

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

.tble-cards table th {
  font-size: 18px;
  padding: 5px 10px;

}

.tble-cards table td {
  font-size: 16px;
  padding: 5px 10px;
  color: #495057;

}

.tble-cards table {
  margin-bottom: 0px;
}

.tble-cards table tr:nth-child(odd) td {
  background: #fffcf2
}

.tble-cards table tr:last-child td {
  border: 0px;
}

.tableheads h3 {
  background: var(--Secondary);
  color: #fff;
  padding: 10px 10px;
}

.tableheads h3 {
  font-size: 22px;
  font-weight: 700;
  text-align: center;
}

table.nooddcolor tr:nth-child(odd) td {
  background: #fff;
}

table.nooddcolor tr td {
  background: #fff;
}

table.nooddcolor tr:last-child td {
  border-bottom-width: 1px;
  border-color: #dee2e6;
  border-style: solid;
}

table.nooddcolor tr td {
  border-bottom-width: 1px;
  border-color: #dee2e6;
  border-style: solid;
}

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

.recentblog-outers {
  padding: 15px;
  background: #FFFEF5;
  border-radius: 10px;
  transition: all .3s ease 0s;
  border: 1px solid var(--Secondary);
}


.recentblog-outers h2 {
  transition: all .3s ease 0s;
  font-weight: 600;
  font-size: 20px;
  line-height: 30px;
  color: var(--Black);
}

.recentblog-outers ul {
  padding-left: 20px;
}

.recentblog-outers ul li a:hover {
  color: var(--Secondary);
}

.recentblog-outers ul li {
  list-style: disc;
  font-size: 16px;
  color: #495057;
  transition: all 0.4s ease;


}

.recentblog-outers ul li a {
  font-size: 16px;
  color: #495057;
  transition: all 0.4s ease;

}

.card-body ol {
  padding-left: 20px;
  margin-bottom: 0px;
}

.card-body ol li a:hover {
  color: var(--Secondary);
}

.card-body ol li {
  font-size: 16px;
  color: #495057;
  transition: all 0.4s ease;


}

.card-body ol li a {
  font-size: 16px;
  color: #495057;
  transition: all 0.4s ease;

}

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

.modal-header .btn-close {
  opacity: 1;
  filter: invert(1);
}

.modal-header .btn-close:focus {
  box-shadow: none;
}

.modal-header h5 {
  font-size: 18px;
  font-weight: bold;
}

.modal-header {
  padding-top: 10px;

  padding-bottom: 10px;
  background: var(--Secondary);
  color: #fff;
}

.modal-footer {
  padding-top: 10px;
  padding-bottom: 10px;
}

.faq__accordion .accordion-button {
  font-size: 18px;
  font-weight: 600;
  color: var(--Black);
  border: 0;
  padding: 10px 0;
  padding-left: 15px;
  position: relative;
  -webkit-border-radius: 20px 20px 0 0;
  -moz-border-radius: 20px 20px 0 0;
  -o-border-radius: 20px 20px 0 0;
  -ms-border-radius: 20px 20px 0 0;
  border-radius: 20px 20px 0 0;
}

.faq__accordion .accordion-item:first-of-type .accordion-button {
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}

.faq__accordion .accordion-button:focus {
  box-shadow: none;
}

.faq__accordion .accordion-button::after {
  position: absolute;
  top: 50%;
  right: -50px;
  -webkit-transform: translateY(-50%) rotate(0deg);
  -moz-transform: translateY(-50%) rotate(0deg);
  -ms-transform: translateY(-50%) rotate(0deg);
  -o-transform: translateY(-50%) rotate(0deg);
  transform: translateY(-50%) rotate(0deg);
  width: 40px;
  height: 40px;
  line-height: 36px;
  text-align: center;
  background-color: #FDC800;
  background-image: none;
  content: "+";
  font-weight: 500;
  margin: inherit;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 32px;
  text-align: center;
  padding: 0px;
  font-weight: 500;
}

.faq__accordion .accordion-button:not(.collapsed)::after {
  -webkit-transform: translateY(-50%) rotate(45deg);
  -moz-transform: translateY(-50%) rotate(45deg);
  -ms-transform: translateY(-50%) rotate(45deg);
  -o-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
  background-color: var(--Primary);
  color: var(--White);
}

.faq__accordion .accordion-button:not(.collapsed) {
  background-color: transparent;
  box-shadow: none;
  background-color: #fff;
}

.faq__accordion .accordion-collapse {
  border-radius: 0 0 20px 20px !important;
  background-color: #fff;
}

.faq__accordion .accordion-body {
  padding: 0;
  padding-right: 15px;
  padding-left: 15px;
  padding-bottom: 15px;
}

.faq__accordion .accordion-body p {
  margin-bottom: 0px;
}

.faq__accordion .accordion-item {
  border: none;
  border-bottom: 1px solid rgba(3, 18, 32, 0.06);
  padding: 15px 0;
  padding-right: 50px;
}

.faq-chose .accordion-item .accordion-button.collapsed {
  background: transparent;

}

.faq-chose .accordion-item {
  background: transparent;
}

.faq-chose {
  margin-bottom: 50px;
  padding: 50px 0px;
  overflow: hidden;
  background: rgb(241, 241, 233);
}

.faq__accordion .accordion-button {
  background: rgb(241, 241, 233);

}

.opening_box ul li a i {
  color: var(--Primary);
}

.opening_box ul li a {
  color: #495057;
  transition: all 0.4s ease;

}

.opening_box ul li a:hover {
  color: var(--Primary);
  font-weight: bold;
}

.toolbar-btn:hover {
  background: #007bff;
  color: #fff;
  transform: scale(1.1);
}

object {
  margin-top: 10px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}


.brochure-sec h2 {
  text-align: center;
  font-weight: 700;
  font-size: 22px;
  line-height: 35px;
  color: #000000;
  margin-bottom: 0px;
}

.brochure-sec:hover h2 {
  color: var(--Primary);
}

.modal {
  padding: 0px !important;
  width: 100%;
}

/* 
.header-right-about {
  display: none;
} */
.header-right-about {
  display: none;
  /* Hide all sections initially */
}

.header-right-about.active {
  display: flex;
  /* Show the section when active */
}


header .menu .menu-item .sub-menu>.row {
  width: 100%;
}

.facilites-page {
  background: rgb(241, 241, 233);
  padding: 50px 0px;
  margin-bottom: 40px;
}

.facilites-outers:hover {
  border-color: var(--Primary);
}
.facilites-outers {
  text-align: center;
  padding: 15px;
  height: 100%;
  background: #fff;
  border-radius: 10px;
  transition: all .3s ease 0s;
  border: 1px solid #fff;
}

.facilites-outers img {
  height: 250px;
  width: 100%;
  object-fit: cover;

}

.facilites-outers:hover h2 {
  color: var(--Primary);
}
.facilites-outers h2 {
  transition: all .3s ease 0s;
  margin-top: 10px;
  font-weight: 600;
  font-size: 20px;
  line-height: 30px;
  color: var(--Black);
  margin-bottom: 5px;
}
.gallerys-page .lightgallery a:hover h2{
  color: var(--Primary);

}
.gallerys-page .lightgallery h2{
  transition: all .3s ease 0s;
  margin-top: 10px;
  font-weight: 600;
  font-size: 20px;
  line-height: 30px;
  color: var(--Black);
  margin-bottom: 5px;
  text-align: center;
}
.popup_modal .close_btn {
  width: 30px;
  height: 30px;
  position: absolute;
  border-radius: 100px;
  background: #ff0000;
  z-index: 1;
  line-height: 35px;
  text-align: center;
  right: -10px;
  top: -10px;
}
.popup_modal img{
  border-radius: 8px;
}
.popup_modal .close_btn .btn-close{
    filter: brightness(1) invert(1);
    opacity: 1;
    background-size: 13px;
    background-position: center;
    padding: 0px;
}

.tp-leadership-hover-box{ display: none!important;}