.bg1 {
  background: #faf9ec !important;
}

.bg2 {
  background-color: #40513b;
}

.bg3 {
  background-color: #e4dab8;
}

html {
  scroll-behavior: smooth;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: "Merienda", cursive;
}

a,
a:hover {
  text-decoration: none;
}

ul,
li,
ol {
  list-style-type: none;
  padding-inline-start: 0;
  margin-bottom: 0;
}

.container,
.container-lg,
.container-md,
.container-sm,
.container-xl {
  max-width: 92%;
}

body {
  font-family: "Nunito Sans", sans-serif;
} /* Preloader styles */
/* Preloader styles */
#preloader {
  position: fixed;
  inset: 0;
  background: #40513b;
  background-size: 400% 400%;
  animation: gradientBG 6s ease infinite;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 9999;
  transition: all 1s ease;
}

@keyframes gradientBG {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.preloader-inner {
  text-align: center;
  color: white;
  width: 575px;
}

.preloader-logo {
  width: 160px;
  margin-bottom: 25px;
}

.preloader-text {
  font-size: 36px;
  opacity: 0.9;
  line-height: 55px;
  white-space: nowrap;
  overflow: hidden;
  width: 100% !important;
  animation: typing 3s steps(30, end) forwards, blink 0.8s infinite;
}

@keyframes typing {
  from {
    width: 0;
  }
  to {
    width: 580px;
  } /* Adjust based on text length */
}
@keyframes blink {
  50% {
    border-color: transparent;
  }
}
/* Hide preloader */
#preloader.fade-out {
  opacity: 0;
  visibility: hidden;
}

/* Main content */
#main-content {
  padding: 40px;
  animation: contentFadeIn 1.2s ease forwards;
}

@keyframes contentFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/*========================================= Main Header 1 Start ====================================*/
.navSiderSection {
  overflow: hidden;
}

.navSiderSection nav.navbar {
  background: transparent;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
  padding: 20px 0;
}

.navSiderSection nav.navbar .collapse.navbar-collapse {
  display: block !important;
}

.navbar-dark .navbar-brand {
  color: #fff;
  margin: 0;
}

a.navbar-brand img {
  width: 195px;
  /* filter: grayscale(1); */
  /* clip-path: polygon(0 80%, 0 0, 100% 0, 100% 80%, 50% 100%); */
  margin: -20px auto 0;
  display: block;
  background: rgba(255, 255, 255, 0.36);
  padding: 17px 20px 21px;
  border-bottom-left-radius: 111px;
  border-bottom-right-radius: 111px;
}

.navSiderSection nav.navbar ul.navbar-nav li a.nav-link {
  position: relative;
  font-size: 21px;
  line-height: 24px;
  text-transform: uppercase;
  color: #fff;
  font-weight: 600;
  padding: 0 30px;
  letter-spacing: 0.5px;
  transition: 0.4s ease-in-out;
}

.navSiderSection nav.navbar ul.navbar-nav li a.nav-link.nav-link2:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  width: 0;
  height: 1px;
  background: #fff;
  margin: 0 auto;
  transition: 0.4s ease-in-out;
}

.navSiderSection nav.navbar ul.navbar-nav li a.nav-link.nav-link2:hover::before {
  width: calc(100% - 60px);
}

.navSiderSection nav.navbar ul.navbar-nav li a.nav-link svg {
  fill: #fff;
  width: 35px;
  position: relative;
  top: -2px;
  margin-left: 6px;
}

#navbarColor02 ul.navbar-nav li.nav-item .dropdown-menu {
  background: #fff;
  border-radius: 0;
  padding: 16px 0;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
  min-width: 280px;
  top: 150%;
}

#navbarColor02 ul.navbar-nav li.nav-item .dropdown-toggle::after {
  border: 0 !important;
}

#navbarColor02 ul.navbar-nav li.nav-item .dropdown-menu:before {
  content: "";
  position: absolute;
  left: 20px;
  top: -12px;
  width: 0;
  height: 0;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-bottom: 12px solid #fff;
}

#navbarColor02 ul.navbar-nav li.nav-item .dropdown-menu .col-megamenu {
  height: 100%;
  position: relative;
  overflow: hidden;
}

#navbarColor02 ul.navbar-nav li.nav-item .dropdown-menu .col-megamenu ul li {
  margin-bottom: 7px;
  padding: 2px 7px 7px 9px;
  border-bottom: 1px solid #ededed;
}

#navbarColor02 ul.navbar-nav li.nav-item .dropdown-menu .col-megamenu ul li a {
  position: relative;
  color: #000;
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
  display: block;
  transition: 0.2s ease-in-out;
  padding: 0 14px;
  text-align: left;
  text-transform: capitalize;
  letter-spacing: 0.5px;
}

@media all and (min-width: 992px) {
  .navbar .dropdown-menu-end {
    right: 0;
    left: 25px;
  }
  .navbar .nav-item .dropdown-menu {
    left: 25px;
    display: block;
    opacity: 0;
    visibility: hidden;
    transition: 0.7s;
    margin-top: 0;
  }
  .navbar .nav-item:hover .nav-link {
    color: #fff;
  }
  .navbar .dropdown-menu.fade-down {
    top: 80%;
    transform: rotateX(-75deg);
    transform-origin: 0% 0%;
  }
  .navbar .dropdown-menu.fade-up {
    top: 100%;
  }
  .navbar .nav-item:hover .dropdown-menu {
    left: 25px;
    transition: 0.7s;
    opacity: 1;
    visibility: visible;
    top: 100%;
    transform: rotateX(0deg);
  }
}
/*================== Mobile Menu CSS Start ======================*/
body.offcanvas-active {
  overflow: hidden;
}

.offcanvas-header {
  display: none;
}

.screen-darken {
  height: 100%;
  width: 0%;
  z-index: 30;
  position: fixed;
  top: 0;
  right: 0;
  opacity: 0;
  visibility: hidden;
  background-color: rgba(34, 34, 34, 0.6);
  transition: opacity 0.2s linear, visibility 0.2s, width 2s ease-in;
}

.screen-darken.active {
  z-index: 9999;
  transition: opacity 0.3s ease, width 0s;
  opacity: 1;
  width: 100%;
  visibility: visible;
}

.navbar.fixed-navbar span.menuTitle {
  display: none;
}

.navbar.fixed-navbar .collapse.navbar-collapse .navbar-nav.main-navbar-nav .nav-item a.nav-link svg {
  margin-left: 0px;
}

/* ================================= Hamburger Menu End ================================*/
/*========================================= Main Header 1 End ====================================*/
/*========================================= Main Slider 1 Start ====================================*/
.mainSlider {
  overflow: hidden;
}

.mainSlider img {
  height: 100dvh;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
  animation: pulse1 12s infinite;
  animation-duration: 10s;
  animation-timing-function: ease-in-out;
  animation-delay: 0s;
  animation-direction: alternate;
  animation-iteration-count: infinite;
}

@keyframes pulse1 {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
  }
}
.mainSlider .carousel-inner .carousel-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9;
  width: 100%;
  height: 30%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.9), transparent);
}

.mainSlider .carousel-inner .carousel-item:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 9;
  width: 100%;
  height: 40%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.9), transparent);
}

.mainSlider .carousel-caption {
  z-index: 99;
  right: 0;
  left: 0;
  width: 100%;
  max-width: 80%;
  margin: 0 auto;
  bottom: 0;
  padding: 0 0 45px;
}

.fade-out {
  opacity: 0;
  transition: opacity 0.6s ease;
}

.carousel-caption.animate-first {
  opacity: 0;
  transform: translateY(-50px);
  transition: all 0.3s ease-out;
}

.carousel-caption.animate-first.show-caption {
  opacity: 1;
  transform: translateY(0);
}

.carousel-caption:not(.animate-first) {
  opacity: 1;
  transform: none;
}

.mainSlider .carousel-caption span.captionTag {
  font-size: 22px;
  line-height: 24px;
  margin-bottom: 20px;
  font-weight: 400;
  display: block;
  text-transform: uppercase;
  letter-spacing: 3px;
  text-shadow: 1px 1px 8px #333;
}

.mainSlider .carousel-caption h1 {
  font-size: 55px;
  line-height: 67px;
  color: #fff;
  text-shadow: 1px 1px 20px rgba(0, 0, 0, 0.4784313725);
  text-transform: capitalize;
  letter-spacing: 1px;
  font-weight: 900;
}

.mainSlider .carousel-caption h1 small {
  font-size: 80%;
}

.mainSlider .carousel-caption a {
  display: inline-block;
  font-size: 17px;
  line-height: 25px;
  text-transform: uppercase;
  padding: 12px 20px;
  color: #fff;
  letter-spacing: 0.8px;
  font-weight: 400;
  background: #000;
}

.mainSlider .carousel-caption a svg {
  width: 18px;
  fill: #fff;
  position: relative;
  top: -3px;
  margin-right: 3px;
}

/*========================================= Main Slider  End ====================================*/
/*========================================= Home Page CSS Start ====================================*/
section {
  padding: 100px 0px;
}

.welcomeTitle h2 {
  font-size: 52px;
  line-height: 74px;
  color: #000000;
  font-weight: 800;
}

.welcomeTitle h2 .ctaText {
  font-family: "Nunito Sans", sans-serif !important;
  font-size: 64%;
  font-weight: 400;
  line-height: 124%;
}

.welcomeTitle p.mainParaHp {
  font-size: 26px;
  line-height: 37px;
  color: #333;
  font-weight: 500;
  padding-right: 25%;
  padding-left: 11%;
}

.welcomeTitle p.mainParaHp:before {
  position: absolute;
  left: 0px;
  content: "";
  height: 2px;
  width: 100px;
  background: rgba(64, 81, 59, 0.5882352941);
  top: 15px;
}

.infrastructureBlock .swiper-slide {
  background: #3f523c;
  padding: 19px;
  border-radius: 20px;
}

.infrastrutureImg img {
  width: 100%;
  height: 740px;
  -o-object-fit: cover;
     object-fit: cover;
  position: relative;
  overflow: hidden;
  transition: 0.4s ease-in-out;
  border-radius: 20px;
}

.infrastrutureImg {
  position: relative;
  overflow: hidden;
  transition: 0.4s ease-in-out;
  border-radius: 20px !important;
}

.infrastrutureImg:hover img {
  transform: scale(1.1);
  border-radius: 20px !important;
}

.infrastrutureImg:hover::before {
  clip-path: circle(100% at 50% 50%);
  visibility: visible;
  opacity: 1;
  border-radius: 20px !important;
}

.infrastrutureImg:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background: rgba(66, 74, 30, 0.2392156863);
  clip-path: circle(0% at 50% 100%);
  transition: 0.8s ease-in-out;
  visibility: hidden;
  opacity: 0;
  border-radius: 20px !important;
}

.mainBtn1 {
  padding-left: 20%;
}

.infrastructureLeft {
  height: 610px;
  padding: 30px 25px 25px 29px;
  z-index: 9;
  border-radius: 20px;
}

.infrastructureLeft p.mainParap {
  font-size: 24px;
  line-height: 33px;
  color: #fff;
  font-weight: 400;
  padding-right: 0%;
  padding-left: 17%;
}

.swiper.infrastructureSwiper .swiper-pagination-bullet-active {
  background: #f53530 !important;
}

.swiper.infrastructureSwiper .swiper-pagination-bullet {
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 15px));
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 15px));
}

.swiper.infrastructureSwiper .swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper.infrastructureSwiper .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 5px);
}

.infrastructureLeft p.mainParap:before {
  position: absolute;
  left: 0px;
  content: "";
  height: 2px;
  width: 61px;
  background: rgba(238, 238, 238, 0.4196078431);
  top: 14px;
}

.mainBtn1 a {
  border: 1px solid #fff !important;
}

.infrastructureLeft h2 {
  font-size: 42px;
  line-height: 59px;
  color: #fff;
}

section.infrastructureSecHp:before {
  position: absolute;
  content: "";
  top: -410px;
  background-image: url(../images/welcome-blob.png);
  width: 100%;
  height: 370px;
  z-index: -1;
  left: -220px;
}

section.infrastructureSecHp:after {
  position: absolute;
  background: #faf9ec;
  height: 184px;
  content: "";
  width: 100%;
  top: -180px;
  z-index: -1;
}

span.infraStructureTitle {
  position: absolute;
  top: -5px;
  right: -300px;
  font-size: 117px;
  text-transform: uppercase;
  font-weight: 800;
  color: transparent;
  -webkit-text-stroke: 2px;
  -webkit-text-stroke-color: #fff;
  transition: 0.6s ease-in-out;
}

.infrastructureLeft:hover span.infraStructureTitle {
  color: #40513b !important;
  transition: 0.6s ease-in-out;
}

.newsBlock {
  overflow: hidden;
  transition: 0.4s ease-in-out;
  border-radius: 20px;
}

.newsBlockP {
  padding: 48px 48px;
  border-radius: 20px;
  margin-top: -175px;
  z-index: 9;
}

span.newsDate1 {
  background: #e00e0e;
  color: #fff;
  padding: 7px 15px;
  border-radius: 27px;
  font-weight: 600;
  text-transform: uppercase;
}

.newsBlock img {
  width: 100%;
  height: 510px;
  -o-object-fit: cover;
     object-fit: cover;
  overflow: hidden;
  transition: 0.4s ease-in-out;
  border-radius: 20px;
}

.newseventSwiper-block {
  background: #40513b;
  border-radius: 103px;
  display: flex;
  padding: 12px;
}

.newseventSwiper-block span {
  display: block;
  background: #faf9ed;
  color: #e21917;
  padding: 20px;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  font-size: 18px;
  line-height: 24px;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
}

.newsEventsSwiper .swiper-button-next,
.newsEventsSwiper .swiper-button-prev {
  width: 32px;
  height: 45px;
  background: red;
  border-radius: 5px;
}

.newsEventsSwiper .swiper-button-next:after,
.newsEventsSwiper .swiper-rtl .swiper-button-prev:after {
  font-size: 22px;
  color: #fff;
  font-weight: 900;
}

.newsEventsSwiper .swiper-button-prev:after,
.newsEventsSwiper .swiper-rtl .swiper-button-next:after {
  font-size: 22px;
  color: #fff;
  font-weight: 900;
}

.newsEventsSwiper .swiper-button-next,
.newsEventsSwiper .swiper-rtl .swiper-button-prev {
  right: 0px;
}

.newsEventsSwiper .swiper-button-prev,
.newsEventsSwiper .swiper-rtl .swiper-button-next {
  left: 0px;
}

.text-dark {
  color: #000000 !important;
}

.newsEventsSwiper {
  padding: 0px 23px !important;
}

.newseventSwiper-block span b {
  font-size: 188%;
  font-weight: 700;
}

.newseventSwiper-block h2 {
  position: relative;
  color: #fff;
  text-align: left;
  margin-bottom: 0;
  padding-left: 16px;
  font-size: 22px;
  line-height: 30px;
  display: flex;
  align-self: center;
  font-weight: 600;
  overflow: hidden;
  height: 100%;
  max-height: 60px;
  width: calc(100% - 90px);
}

.newsBlock:hover img {
  transform: scale(1.1);
  border-radius: 20px;
}

.newsBlockContent h4 {
  color: #fff;
  font-size: 30px;
  line-height: 35px;
  font-weight: 600;
  margin-bottom: 0px;
  font-family: "Nunito Sans", sans-serif;
}

.newsBlockContent {
  position: absolute;
  bottom: 0;
  padding: 32px 44px;
  z-index: 2;
  width: 100%;
}

.newsBlockContent p {
  font-size: 20px;
  color: #fff;
  line-height: 23px;
  font-weight: 300;
  letter-spacing: 0.5px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  font-family: "Nunito Sans", sans-serif;
}

.newsBlockContent::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 127%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.9), transparent);
  border-radius: 20px;
}

.sportsImg.position-relative video {
  height: 480px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
}

.innerBanner video {
  height: 85vh !important;
  -o-object-fit: cover;
     object-fit: cover;
}

.numberBlock {
  text-align: center;
  padding: 40px 15px;
  position: relative;
  overflow: hidden;
  transition: 0.4s ease-in-out;
  border-radius: 10px;
}

.numberBlock:hover span.numberIcon svg {
  transform: scale(1.2);
  opacity: 1;
}

.numberBlock span.numberIcon svg {
  width: 79px;
  fill: #40513b;
  opacity: 0.7;
  transition: 0.4s ease-in-out;
}

.numberBlock h3 {
  font-size: 42px;
  color: #2e2e2e;
  padding-top: 10px;
  font-weight: 800;
  margin-bottom: 0;
}

.numberBlock p {
  font-size: 22px;
  text-transform: capitalize;
  font-weight: 500;
  color: #555;
  font-style: italic;
  margin: 0;
}

.photoBlock {
  overflow: hidden;
  transition: 0.4s ease-in-out;
  border-radius: 20px;
}

.photoBlock img {
  width: 100%;
  height: 550px;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.4s ease-in-out;
  border-radius: 20px;
}

.photoBlock:hover img {
  transform: scale(1.1);
  border-radius: 20px;
}

.photoContent {
  padding: 25px 35px;
  background: #fff;
  margin: -42px 25px 0px 25px;
  position: relative;
  border-bottom: 0;
  transition: 0.4s ease-in-out;
  border-radius: 20px;
}

.photoContent h4 {
  font-size: 26px;
  line-height: 33px;
  color: #000;
  font-family: "Nunito Sans", sans-serif;
}

span.newsDate {
  position: absolute;
  right: 15px;
  background: #faf9ed;
  padding: 7px 14px;
  font-size: 14px;
  font-weight: 700;
  top: 15px;
  color: #000000;
  text-transform: uppercase;
  z-index: 9;
  border-radius: 50px;
}

.mainBtn a,
.mainBtn button {
  font-size: 19px;
  border: 2px solid #40513b;
  padding: 12px 60px 12px 25px;
  color: #40513b;
  font-weight: 700;
  position: relative;
  overflow: hidden;
  transition: color 0.4s ease;
  z-index: 1;
  border-radius: 67px;
  letter-spacing: 0.4px;
  text-transform: capitalize;
}

.mainBtn a:hover svg,
.mainBtn button:hover svg {
  transform: rotate(45deg);
}

.mainBtn a svg,
.mainBtn button svg {
  position: absolute;
  right: 7px;
  top: 6px;
  width: 40px;
  height: 40px;
  background: #40513b;
  border-radius: 50%;
  padding: 4px;
  fill: #fff;
  transform: rotate(0);
  transition: 0.6s ease-in-out;
}

.feeBtn a svg {
  padding: 0;
  transform: rotate(0) !important;
  background: transparent;
  fill: #40513b;
  right: 7px;
  top: 11px;
  width: 43px;
  height: 29px;
  border-radius: 0;
}

.adBtn {
  background: #40513b;
  color: #fff !important;
}

.mainBtn1 a svg {
  background-color: #fff;
  fill: #40513b;
}

.ctaBtn a {
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 169px;
  background: #40513b;
  font-size: 21px;
  font-weight: 500;
  color: #ffffff;
  transition: all 0.3s ease;
  border-radius: 90px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.ctaBtn a:hover {
  transform: scale(1.2);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.aboutSec {
  background-color: #f1f0e0 !important;
}

.wrapperNoImgSectionAbout {
  padding-bottom: 70px !important;
}

/*================================== Footer Css Start ==================================*/
footer {
  position: relative;
  padding: 70px 0px 70px 0px;
}

/* ================================= Main Footer Start ================================*/
.dis-location {
  position: relative;
  overflow: hidden;
  padding: 0 0 20px;
  margin-top: 0;
  background: #0d1116;
}

.dis-location h6 {
  position: relative;
  color: #000;
  text-transform: uppercase;
  font-size: 15px;
  font-weight: 700;
  text-align: left;
  margin: 0 auto 16px;
}

.dis-location ul li a {
  display: flex;
  text-align: center;
  background: #0c1014;
  padding: 5px 10px;
  border-radius: 7px;
  border: 1px solid #161d26;
  transition: 0.6s ease-in-out;
}

.dis-location ul li a:hover {
  background: #0d1116;
}

.dis-location ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 0;
}

.dis-location ul li {
  margin: 0 3px;
}

.dis-location ul li a span {
  text-align: center;
  padding: 2px;
  background: #fff;
  border-radius: 2px;
  display: inline-block;
}

.dis-location ul li a span img {
  width: 30px;
  height: 30px;
  -o-object-fit: cover;
     object-fit: cover;
}

.dis-location ul li a small {
  display: block;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 0;
  font-size: 12px;
  margin-top: 0;
  font-weight: 500;
  align-content: center;
  align-self: center;
  padding-left: 12px;
}

footer {
  background-color: #4c6553;
}

footer.main-footer {
  position: relative;
  background: #0e1800;
  padding: 60px 0 30px;
}

.footer-info .footer-logo a img {
  width: 90px;
  opacity: 0.8;
}

.footer-info .footer-logo .footer-logo-info h3 {
  color: #fff;
  font-size: 25px;
  line-height: 30px;
  margin-bottom: 0;
  text-transform: uppercase;
  font-weight: 600;
  display: inline-block;
  position: relative;
  font-family: "Nunito Sans", sans-serif;
}

.footer-info .footer-logo .footer-logo-info h3 span.footer-logo-tm {
  position: absolute;
  top: -7px;
  font-size: 15px;
  right: -18px;
}

.footer-info .footer-logo .footer-logo-info h3 small {
  font-size: 62.5%;
  font-weight: 300;
  line-height: 21px;
  letter-spacing: 1.5px;
  text-align: center;
  position: relative;
  color: #fff;
}

.footer-info .footer-logo .footer-logo-info h3 small:before {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  width: 9%;
  height: 1px;
  background: linear-gradient(270deg, #fff, transparent);
}

.footer-info .footer-logo .footer-logo-info h3 small:after {
  content: "";
  position: absolute;
  top: 8px;
  right: 0;
  width: 9%;
  height: 1px;
  background: linear-gradient(90deg, #fff, transparent);
}

.footer-logo-info {
  padding-left: 16px;
  border-left: 2px solid rgba(255, 255, 255, 0.5803921569);
  margin-left: 16px;
  margin-right: 360px;
}

.footer-info ul {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 0;
  width: 100%;
}

.footer-info ul li {
  margin: 3px;
}

.footer-info {
  position: relative;
  padding-right: 20px;
}

.footer-contact {
  position: relative;
}

.footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
}

.footer-info ul li a {
  padding: 10px 19px;
  font-size: 18px;
  line-height: 19px;
  color: #ffffff;
  background: rgb(68, 96, 78);
  border: 1px solid #587563;
  display: inline-block;
  font-weight: 400;
  transition: 0.6s ease-in-out;
  border-radius: 115px;
  letter-spacing: 0.5px;
}

.footer-info ul li a:hover {
  color: #fff;
}

.footer-info p {
  font-size: 18px;
  margin-bottom: 0;
  margin-top: 9px;
  line-height: 25px;
  color: #ffffff;
  font-weight: 300;
  font-style: italic;
}

.footer-info h4:before,
.footer-contact h4:before {
  position: absolute;
  content: "";
  top: 50%;
  transform: translate(0, -50%);
  left: 0;
  width: 39px;
  height: 2px;
  background: rgba(255, 255, 255, 0.5803921569);
}

.footer-contact h4:before {
  display: none;
}

.footer-logo-info h4:before {
  display: none;
}

.footer-info h4,
.footer-contact h4 {
  position: relative;
  font-size: 26px;
  font-weight: 500;
  text-transform: capitalize;
  color: #ffffff;
  margin-bottom: 20px;
  padding-left: 50px;
}

ol.social-media {
  display: flex;
  justify-content: start;
  flex-wrap: wrap;
  margin-top: 20px;
}

ol.social-media li a {
  background: rgb(68, 96, 78);
  border: 1px solid #587563;
  margin: 0 8px;
  border-radius: 50%;
  color: #fff;
  width: 42px;
  height: 42px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

ol.social-media li a svg {
  width: 19px;
  fill: rgba(255, 255, 255, 0.7294117647);
}

.footer-location {
  margin-bottom: 16px;
}

.footer-location ul {
  margin-bottom: 0;
}

.footer-location ul li {
  font-size: 19px;
  line-height: 27px;
  color: #ffffff;
  font-weight: 400;
  transition: 0.6s ease-in-out;
  margin-bottom: 2px;
}

.footer-location ul li a {
  color: #fff;
  transition: 0.6s ease-in-out;
}

.footer-location ul li a:hover {
  color: #fff;
}

.footer-location h2 {
  font-size: 20px;
  margin-bottom: 4px;
  color: #ffffff;
  font-weight: 600;
}

.footer-copyright {
  position: relative;
  padding: 12px 0;
}

.footer-copyright p {
  margin-bottom: 0;
  font-size: 16px;
  line-height: 21px;
  text-align: center;
  color: #111;
  font-weight: 600;
  transition: 0.6s ease-in-out;
}

.footer-copyright p a {
  color: #1e1e1e;
}

.footer-copyright p a:hover {
  color: #000;
}

ol.external-btns {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 0;
  margin-top: 30px;
}

ol.external-btns li {
  margin-right: 10px;
}

ol.external-btns li a,
ol.external-btns li span.extBtn {
  color: #40513b;
  display: inline-block;
  padding: 6px 16px;
  text-transform: uppercase;
  font-size: 18px;
  border-radius: 2px;
  font-weight: 700;
  transition: 0.6s ease-in-out;
  opacity: 1;
  cursor: pointer;
  background: #ffffff;
}

section.ctaSecHp {
  padding: 75px 0px;
  overflow: hidden;
}

ol.external-btns li a:hover,
ol.external-btns li span.extBtn:hover {
  opacity: 1;
}

ol.external-btns li a.yellow-bg-text,
ol.external-btns li span.extBtn.yellow-bg-text {
  color: #222;
  font-weight: 800;
}

/* ================================= Main Footer End ================================*/
/*----------------------------- Calendar Page Start ------------------------------*/
#calendar_pop {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  margin: 0 auto;
  bottom: 0;
  font-size: 20px;
  z-index: 99999;
  background: rgba(0, 0, 0, 0.1);
  opacity: 1;
  backdrop-filter: blur(6px);
  height: 100%;
  display: none;
}

#calendar_pop .calendar_inner {
  width: 520px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

#closeCal {
  font-weight: 400;
  cursor: pointer;
  position: absolute;
  right: -65px;
  top: -4px;
  width: 54px;
  height: 54px;
  z-index: 9;
  color: #ffffff;
  opacity: 1;
  background: #c6281e;
  font-size: 28px;
  border-radius: 50%;
  margin: 0;
  transition: 0.4s ease-in-out;
}

#closeCal svg {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  fill: #fff;
}

#calendar_pop .calendar_inner .calendarSingle .dateContent h3 {
  font-size: 22px;
  line-height: 30px;
  padding: 50px 0 0 0;
  height: auto;
  font-weight: 600;
  margin: 0;
  color: #fff;
  font-family: "Merienda", cursive;
}

.calendar-wrapper {
  height: 100%;
  padding: 60px 0px 60px 30px;
}

.calendarSingle {
  padding: 40px 30px 30px;
  background: #40513b;
  margin: 0;
  text-align: center;
  border-radius: 10px;
}

.circleDate {
  background-color: #c6281e;
  color: #fff;
  margin: 0 auto;
  text-align: center;
  font-weight: 700;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100px;
  opacity: 0.9;
}

.circleStartDate {
  background: #f53530;
}

.circleDate.circleStartDate .date span:nth-child(2) {
  background: #f53530;
}

.calendarSingle span.align-self-center {
  margin: 0 8px;
}

.circleDate .date {
  padding: 0px 20px;
}

.circleDate .date span {
  display: inline-block;
  color: #fff;
  font-size: 16px;
  line-height: normal;
  vertical-align: middle;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0;
}

.circleDate .date span:nth-child(2) {
  font-size: 38px;
  line-height: 38px;
  padding: 14px 6px;
  background: #c6281e;
  margin: -10px 10px;
  border-radius: 100%;
  border: 3px solid #ffffff;
  height: 70px;
  width: 70px;
  text-align: center;
}

.fc .fc-button-group > .fc-button {
  flex: 1 1 auto;
  position: relative;
  border-radius: 100px;
  border-color: #2b3c28 !important;
  border-width: 2px;
  background-color: #fff;
  text-transform: uppercase;
  font-size: 18px;
  font-weight: 800;
  color: #334630 !important;
  padding: 8px 20px 8px 25px;
}

button.fc-listWeek-button.fc-button.fc-button-primary {
  font-size: 18px;
  font-weight: 800;
  padding: 8px 25px 8px 20px;
  text-transform: uppercase;
}

.wrapper-calendar-block {
  background-color: #fff;
  border-radius: 20px;
  padding: 10px;
}

.fc-toolbar {
  background: #40513b !important;
}

.fc .fc-button-primary:not(:disabled).fc-button-active,
.fc .fc-button-primary:not(:disabled):active {
  background-color: #334630;
  border-color: #2b3c28 !important;
  color: #ffffff !important;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 18px;
  padding: 8px 20px 8px 25px;
}

th.fc-col-header-cell {
  padding: 9px 12px !important;
  text-transform: uppercase;
  background: #4a6554;
  color: #fff !important;
}

.fc .fc-col-header-cell-cushion {
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
}

.admisionSec h2.wrapperTitle {
  font-size: 40px;
  line-height: 56px;
}

.admisionSec .wrapperImg img {
  height: 86vh;
  border-radius: 0px 20px 20px 0px;
}

.admisionSec .wrapperBlock {
  border-radius: 20px 0px 0px 20px;
}

.fc .fc-daygrid-day-number {
  padding: 12px;
  position: relative;
  z-index: 4;
  color: #121212;
  font-size: 18px;
  font-weight: 500;
}

.fc-h-event .fc-event-main img {
  background: #fff;
  width: 25px;
  height: 25px;
  padding: 2px;
  border-radius: 50%;
}

.fc-event,
.fc-event-dot {
  background-color: #40513b !important;
  font-weight: 400;
  padding: 4px 12px;
  cursor: pointer !important;
}

button.fc-today-button.fc-button.fc-button-primary {
  text-transform: uppercase;
  background: #ffffff;
  color: #40513b;
  border-radius: 50px;
  padding: 10px 25px;
  font-size: 18px;
  font-weight: 800;
}

.fc .fc-daygrid-event {
  font-size: 15px;
  line-height: 20px;
  font-weight: 500;
  color: #121212;
}

.fc-theme-standard .fc-list-day-cushion {
  background-color: #eee;
}

.fc-direction-ltr .fc-list-day-text,
.fc-direction-rtl .fc-list-day-side-text {
  color: #121212;
  font-weight: 500;
  font-size: 19px;
}

.fc-direction-ltr .fc-list-day-side-text,
.fc-direction-rtl .fc-list-day-text {
  color: #121212;
  font-weight: 500;
  font-size: 19px;
}

.fc .fc-list-day-cushion,
.fc .fc-list-table td {
  border: 0;
}

td.fc-list-event-graphic {
  display: none;
  visibility: hidden;
}

.fc .fc-list-event:hover td {
  background-color: transparent;
}

.fc-view-harness.fc-view-harness-active table.fc-list-table {
  background: #40513b;
}

.fc .fc-list-empty {
  background-color: #faf9ed;
}

tr.fc-event.fc-list-event {
  font-size: 18px;
  border-radius: 0 !important;
  border: 0 !important;
  text-transform: capitalize;
}

.fc-theme-standard .fc-list {
  border: 1px solid #e0decb;
  border-radius: 20px;
}

.fc .fc-list-event-dot {
  border-color: #eee;
  border-radius: 20px;
}

/*----------------------------- Calendar Page End ------------------------------*/
/*================================== Inner Banner CSS Start ================================*/
.innerBanner {
  position: relative;
  overflow: hidden;
}

.inner-banner-img {
  overflow: hidden;
  background-color: #40513b;
}

.innerBanner img {
  height: 85vh;
  -o-object-fit: cover;
     object-fit: cover;
  animation: pulse2 0.6s infinite;
  animation-duration: 0.6s;
  animation-timing-function: ease-in-out;
  animation-delay: 0s;
  animation-direction: alternate;
  animation-iteration-count: 1;
  -o-object-position: top;
     object-position: top;
}

.innerBanner:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9;
  width: 100%;
  height: 60%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.8), transparent);
}

@keyframes pulse2 {
  0% {
    transform: scale(1.1);
    filter: blur(5px);
  }
  100% {
    transform: scale(1);
    filter: blur(0px);
  }
}
.innerBannerContent {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  padding: 40px 0;
}

.innerBannerContent h1 {
  margin-bottom: 0;
  font-size: 58px;
  line-height: 62px;
  text-align: center;
  font-weight: 800;
  text-transform: uppercase;
  color: #fff;
}

.wrapperSticky {
  position: sticky;
  top: 90px;
}

.pageLinkSection {
  position: relative;
  overflow: hidden;
  background: #dfdcc1;
}

ul.pageLinkBlock {
  position: relative;
  flex-wrap: wrap;
}

ul.pageLinkBlock li a {
  display: inline-block;
  font-weight: 700;
  color: #000;
  text-transform: uppercase;
  padding: 18px 15px;
  font-size: 18px;
  line-height: 24px;
  transition: 0.4s ease-in-out;
}

ul.pageLinkBlock li a:hover {
  color: #fff;
  background-color: #4c6553;
}

ul.pageLinkBlock li a.active {
  color: #000;
  background-color: #faf9ec;
}

h2.wrapperTitle {
  font-size: 50px;
  line-height: 65px;
  font-weight: 700;
  color: #1a1a1a;
}

p.wrapperText {
  font-size: 28px;
  line-height: 40px;
  font-weight: 400;
  color: #000;
  position: relative;
}

.wrapperNoImgBlock {
  text-align: center;
}

section.wrapperNoImgSection {
  padding-top: 50px;
  padding-bottom: 0;
}

section.wrapperNoImgSection h2.wrapperTitle {
  font-size: 58px;
  line-height: 70px;
}

.wrapperNoImgSection1 {
  padding-bottom: 70px !important;
}

.bg5 {
  background: #f1f0e0 !important;
}

.whatsappButton {
  position: fixed;
  top: 70.2%;
  right: 0;
  z-index: 999;
}

.whatsappButton a {
  position: relative;
  display: block;
  width: 44px;
  height: 46px;
  background: #16ec6d;
  padding: 8px;
  border-radius: 0 0 0 6px;
}

.whatsappButton a svg {
  fill: #fff;
}

.trigger_popup {
  transform: rotate(270deg);
  position: fixed;
  top: 54%;
  right: -110px;
  z-index: 999;
  cursor: pointer;
  background-color: #f53530;
  border-color: #f83b2d;
  border-radius: 0 6px 0 0;
  padding: 10px 20px;
  font-size: 22px;
  line-height: 24px;
  font-weight: 400;
  color: #ffffff;
  border: 0;
  letter-spacing: 0.5px;
}

/*================================== Admissions Page CSS Start ================================*/
.admissionStepsBlockImg {
  z-index: 9;
}

.admissionStepsBlockImg img {
  height: 500px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px 0px 0px 20px;
}

.registerModalBlock .modal-content {
  border: 5px solid rgb(255, 255, 255);
  border-radius: 10px;
}

.registerModalBlock.modal {
  z-index: 99999;
}

.admissionStepsBlockContent .stepHead span.stepCount {
  font-size: 16px;
  line-height: 24px;
  font-weight: 700;
  margin-right: 20px;
  color: #19376e;
  border-right: 1px solid rgba(0, 0, 0, 0.1490196078);
  padding-right: 20px;
}

.admissionStepsBlockContent .stepHead span.stepCount big {
  font-size: 300%;
  line-height: 42px;
  font-weight: 700;
}

.admissionStepsPara p {
  position: relative;
  font-size: 23px;
  line-height: 34px;
  color: #fff;
  font-weight: 300;
  margin-bottom: 0;
}

.admissionStepsBlockContent .stepHead h3 {
  font-size: 36px;
  line-height: 54px;
  font-weight: 700;
  color: #fff;
  padding-bottom: 15px;
}

ul.stepsNavbar li.nav-item button {
  font-size: 17px;
  line-height: 22px;
  color: #121212;
  font-weight: 600;
  padding: 0 30px;
  background: transparent;
}

ul.stepsNavbar li.nav-item button .stepCount1 {
  position: relative;
  border: 1px solid rgba(0, 105, 60, 0.2);
  border-radius: 50%;
  background: rgba(0, 105, 60, 0.15);
  width: 55px;
  height: 55px;
  color: #222;
  margin: 0 auto;
  transition: 0.4s ease-in-out;
}

ul.stepsNavbar li.nav-item button.active .stepCount1 {
  background: #40513b;
  color: #fff;
  transform: scale(1.2);
  border: 1px solid #40513b;
}

ul.stepsNavbar li.nav-item button .stepCount1 span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 27px;
  line-height: 27px;
  font-weight: 700;
}

ul.stepsNavbar:before {
  content: "";
  position: absolute;
  left: 0;
  top: 26px;
  width: 100%;
  height: 1px;
  background: rgb(217, 217, 217);
}

.gradeLevelBlock {
  padding: 40px 20px 30px;
  height: 100%;
  border-radius: 8px;
}

.gradeLevelBlock:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 130px;
  background: rgba(25, 55, 110, 0.5019607843);
  z-index: -1;
  border-radius: 8px 8px 0 0;
}

.col-xl-4:nth-child(2) .gradeLevelBlock:before {
  background: rgba(251, 168, 52, 0.5019607843);
}

.col-xl-4:nth-child(3) .gradeLevelBlock:before {
  background: rgba(57, 131, 187, 0.5019607843);
}

.col-xl-4:nth-child(2) .gradeLevelBlock {
  background: rgba(251, 168, 52, 0.1254901961);
  border-bottom: 6px solid rgba(251, 168, 52, 0.5019607843);
}

.col-xl-4:nth-child(3) .gradeLevelBlock {
  background: rgba(57, 131, 187, 0.1254901961);
  border-bottom: 6px solid rgba(57, 131, 187, 0.5019607843);
}

.col-xl-4:nth-child(1) .gradeLevelBlock {
  background: rgba(113, 176, 223, 0.1254901961);
  border-bottom: 6px solid rgba(25, 55, 110, 0.5019607843);
}

.gradeLevelBlock img {
  width: 200px;
  height: 180px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
  border: 4px solid #fff;
  border-radius: 6px;
}

/*================================== Admissions Page CSS End ================================*/
/*================================== Wrapper CSS Start ================================*/
.wrapperImg img {
  height: 68vh;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px 0px 0px 20px;
}

p.mainPara2,
.newsBlockP p {
  font-size: 23px;
  line-height: 31px;
  color: #000;
  font-weight: 500;
}

.newsBlockP p big {
  font-weight: 500;
  font-size: 126%;
  line-height: 135%;
}

.wrapper-photo-info {
  padding: 25px 20px 23px;
  position: sticky;
  top: 92px;
  height: calc(100dvh - 200px);
  background: #dfdec3;
  width: 100%;
  max-width: 400px;
  margin-left: auto;
  z-index: 9;
  border-radius: 10px;
}

.wrapper-photo-info h2 {
  font-size: 24px;
  line-height: 30px;
  font-weight: 800;
  color: #121212;
}

.galleryCategorySwiper .galleryCategory-box {
  text-align: center;
  background: #ffffff;
  padding: 4px;
  overflow: hidden;
  border-radius: 10px;
}

.galleryCategorySwiper .galleryCategory-box h4 {
  margin: 8px 6px 6px;
  font-size: 19px;
  line-height: 23px;
  font-weight: 800;
  color: #121212;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.galleryCategorySwiper .galleryBoxImg {
  border-radius: 10px;
}

.galleryCategorySwiper .galleryCategory-box img {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
  object-fit: cover;
  transform: scale(1);
  transition: 0.2s ease-in-out;
  border-radius: 10px;
}

.galleryCategorySwiper .swiper-button-next,
.galleryCategorySwiper .swiper-button-prev {
  width: 26px;
  height: 35px;
  background: red;
  border-radius: 5px;
}

.galleryCategorySwiper .swiper-button-next:after,
.galleryCategorySwiper .swiper-rtl .swiper-button-prev:after {
  font-size: 18px;
  color: #fff;
  font-weight: 900;
}

.galleryCategorySwiper .swiper-button-prev:after,
.galleryCategorySwiper .swiper-rtl .swiper-button-next:after {
  font-size: 18px;
  color: #fff;
  font-weight: 900;
}

.wrapper-photo-img .wrapper-img {
  margin-bottom: 20px;
  border-radius: 20px;
}

.wrapper-photo-img .wrapper-img img {
  border-radius: 20px;
}

.wrapperBlock {
  padding: 70px 85px;
  height: 100%;
  border-radius: 0px 20px 20px 0px;
}

.admissionStepsBlockContent {
  padding: 60px 56px;
  border-radius: 0px 20px 20px 0px;
}

h2.subTitle {
  font-size: 40px;
  font-weight: 600;
  color: #000;
}

.newsSec {
  overflow: visible !important;
}

/*================================== Wrapper CSS End ================================*/
/* ================================= Main Contact Page Start ================================*/
.wrapper-contact-info-box {
  display: flex;
  height: 100%;
  background: #dfdcc1;
  margin: 0 6px;
  padding: 18px 16px;
  border-radius: 10px;
}

.wrapper-contact-info-box svg {
  width: 33px;
  fill: #40513b;
  filter: opacity(0.8);
  height: 24px;
  position: relative;
  top: 6px;
}

.wrapper-contact-info-box .wrapper-contact-info-box-text {
  position: relative;
  padding-left: 12px;
  width: 100%;
}

.wrapper-contact-info-box .wrapper-contact-info-box-text h4 {
  font-size: 26px;
  line-height: 39px;
  font-weight: 500;
  color: #40513b;
  margin-bottom: 10px;
  border-bottom: 1px solid #40513b;
  padding-bottom: 2px;
}

.wrapper-contact-info-box .wrapper-contact-info-box-text p {
  margin-bottom: 6px;
  color: #000;
  font-size: 21px;
  line-height: 28px;
  font-weight: 600;
}

.wrapper-contact-info-box .wrapper-contact-info-box-text p small {
  font-size: 85%;
  line-height: 22px;
  font-weight: 400;
  color: #000;
  font-style: italic;
}

.wrapper-contact-info-box .wrapper-contact-info-box-text p a {
  color: #000;
  transition: 0.6s ease-in-out;
}

.wrapper-contact-info-box .wrapper-contact-info-box-text p a:hover {
  color: #40513b;
}

.wrapper-contact-info-box .wrapper-contact-info-box-text p b {
  text-transform: uppercase;
  font-weight: 800;
  color: #000;
  font-size: 90%;
  line-height: 20px;
}

.wrapper-contact-form form input,
.wrapper-contact-form form select,
.wrapper-contact-form form textarea {
  height: 47px;
  border-radius: 0;
  font-size: 19px;
  font-weight: 500;
  padding: 6px 6px;
  color: #686868 !important;
  border-left: 0;
  border-top: 0;
  border-right: 0;
  border-bottom: 1px solid #e0e0e0;
}

.wrapper-contact-form form textarea {
  height: 100px;
}

.wrapper-contact-form {
  position: relative;
  background: #fff;
  padding: 50px 50px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
  border-radius: 20px;
}

.googleMaps {
  height: 400px;
}

.inner-banner-contant {
  height: 470px;
  background: #40513b;
  position: relative;
}

.inner-banner-contant:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../images/hr_bullet.svg);
  background-size: 10px;
  opacity: 0.01;
  filter: invert(1);
}

.newsBanner.innerBanner img {
  height: 85vh;
}

span.upcomingTitle {
  position: absolute;
  top: 36px;
  background: #e7281a;
  padding: 5px 20px 5px 11px;
  color: #fff;
  font-weight: 500;
  letter-spacing: 0.4px;
  font-size: 15px;
  line-height: 30px;
  text-transform: uppercase;
  border-radius: 0px 30px 30px 0px;
  z-index: 8;
}

.innerBannerContent.smallTitle h1 small {
  font-size: 75%;
}

.innerBannerContent h1 small {
  font-size: 90%;
}

.registerModalBlock .modal-title {
  font-size: 24px;
  font-weight: 600;
}

.icon-list,
.sub-list {
  list-style: none;
  padding-left: 0;
}

.icon-list li,
.sub-list li {
  margin-bottom: 13px;
  display: flex;
  align-items: flex-start;
  font-size: 23px;
  line-height: 31px;
  color: #000;
  font-weight: 500;
}

.icon-list i {
  color: #9c9c9c;
  margin-right: 17px;
  margin-top: 8px;
  opacity: 0.5;
  font-size: 90%;
}

.sub-list i {
  color: #9c9c9c;
  margin-right: 17px;
  margin-top: 8px;
  opacity: 0.5;
  font-size: 90%;
}

.mainBtnTable {
  width: 200px;
}

.scanImg img {
  width: 100%;
  background: #e7e7d2;
  padding: 19px 6px;
  height: 257px;
  -o-object-fit: contain;
     object-fit: contain;
}

h2.tableTitle {
  font-size: 25px;
  line-height: 37px;
  font-weight: 800;
  color: #121212;
  margin-bottom: 15px;
}

.bg4 {
  background-color: #40513b !important;
  --bs-table-accent-bg: $green !important;
}

.mainTable.table-striped > tbody > tr:nth-of-type(odd) {
  --bs-table-accent-bg: rgb(232 230 209);
}

.mainTable tr td,
.mainTable tr th {
  font-size: 20px;
  line-height: 27px;
  vertical-align: middle;
  border: 0px !important;
  padding: 14px 20px;
  font-weight: 500;
}

.mainTable tr th {
  background: #40513b;
  color: #fff;
  font-weight: 500;
  text-transform: uppercase;
  padding: 14px 18px;
  border-bottom: 0;
}

span.marqueeTag {
  position: absolute;
  left: 6px;
  top: 50%;
  transform: translate(0, -50%);
  background: #f53530;
  color: #fff;
  text-transform: uppercase;
  font-size: 18px;
  padding: 12px 20px;
  border-radius: 50px;
  font-weight: 700;
}

.tickerBlock marquee {
  position: relative;
  top: 3px;
}

.tickerBlock {
  position: relative;
  background: #40513b;
  padding: 13px 40px 13px 140px;
  border-radius: 50px;
}

.tickerBlock marquee p {
  font-size: 22px;
  line-height: 28px;
  font-weight: 400;
}

.tickerBlock marquee p a,
.tickerBlock marquee p {
  color: #fff;
  display: inline-block;
}

.tickerBlock marquee span.separator svg {
  width: 14px;
  margin: 0 20px;
  fill: rgba(255, 255, 255, 0.6);
}

.wrapper-contact-form form button.btn {
  background: #40513b;
  color: #fff;
  width: 100%;
  font-size: 18px;
  line-height: 24px;
  text-transform: uppercase;
  font-weight: 600;
  border-radius: 0;
  padding: 12px 16px;
  border-radius: 68px;
}

.infrastructureBlock .swiper-horizontal > .swiper-pagination-bullets,
.infrastructureBlock .swiper-pagination-bullets.swiper-pagination-horizontal,
.infrastructureBlock .swiper-pagination-custom,
.infrastructureBlock .swiper-pagination-fraction {
  bottom: 24px;
  left: -30%;
  width: 100%;
}

.pName h3 {
  font-size: 26px;
  font-weight: 700;
  font-family: "Nunito Sans", sans-serif;
}

/* ================================= Main Contact Page End ================================*/
/* ================================= Careers Page CSS Start ================================*/
.careerRow {
  margin-top: 20px;
  background: #faf9ed;
  padding: 16px;
  border-radius: 4px;
}

h3.formH3 {
  font-size: 24px;
  line-height: 27px;
  margin-bottom: 9px;
  font-weight: 600;
  color: #40513b;
}

h3.formH3 small {
  color: #222;
  font-size: 70%;
  line-height: 20px;
  font-weight: 500;
  margin-top: 8px;
}

.wrapper-control label {
  font-size: 16px;
  line-height: 20px;
  margin-bottom: 4px;
  font-weight: 600;
  color: #121212;
}

.wrapper-control table.table tbody tr th {
  background: #40513b;
  color: #fff;
  font-weight: 400;
  text-transform: uppercase;
  font-size: 15px;
  line-height: 20px;
  padding: 10px 12px;
}

.wrapper-main-form form .wrapper-control input,
.wrapper-main-form form .wrapper-control select,
.wrapper-main-form form .wrapper-control textarea {
  border-radius: 0;
  padding: 10px 16px;
  font-size: 18px;
  font-weight: 600;
  color: #000;
  height: 52px;
  border-bottom: 1px solid #414b21;
  border-radius: 5px;
  border: 1px solid #c5ceab;
}

.wrapper-control table.table tbody tr td {
  background: #fff;
  color: #121212;
  font-weight: 400;
  font-size: 15px;
  line-height: 20px;
  padding: 10px 12px;
}

/* ================================= Careers Page CSS End ================================*/
/* ================================= Hamburger Menu CSS Start ================================*/
.mydiv {
  display: none;
  height: 100%;
  z-index: 99;
  position: relative;
  overflow: hidden;
}

body.menu-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
}

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

.overlay.overlay-open {
  opacity: 1;
  visibility: visible;
}

.navigation {
  position: fixed;
  right: 0;
  height: 100vh;
  z-index: 99;
  top: 0;
  visibility: hidden;
  transition: 0.4s ease-in-out;
  width: 56%;
  background: #40513b;
  overflow: hidden;
  overflow-y: auto;
  display: none;
}

.navigation.open-nav {
  opacity: 1;
  visibility: visible;
  z-index: 99999;
  /*transform: translateX(0);*/
  display: block;
}

.navigation:before {
  background: rgb(111, 74, 0);
  content: "";
  position: absolute;
  left: 0;
  height: 100%;
  z-index: 0;
  top: 0;
  width: 100%;
  transform: translateY(-300px);
  transition: 0.1s ease-in-out;
  display: none;
}

.navigation.open-nav:before {
  transform: translateY(0);
}

img.navigation-bg-img {
  height: 100vh;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  animation: pulse2 12s infinite;
  animation-duration: 10s;
  animation-timing-function: ease-in-out;
  animation-delay: 0s;
  animation-direction: alternate;
  animation-iteration-count: infinite;
}

@keyframes pulse2 {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
  }
}
.navigation nav {
  display: table;
  margin-top: 17%;
  text-align: left;
  width: 100%;
  padding: 45px 41px 0 66px;
}

.menuRight {
  background: #fff;
}

.menuSwiperBlock img {
  height: 440px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px;
}

.menuSwiperContent {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 30px 35px;
  z-index: 9;
  border-radius: 20px;
}

.menuImgBlock .swiper-pagination-bullet {
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 12px));
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 12px));
}

.menuImgBlock .swiper-pagination-bullet-active {
  background: #fff !important;
}

.menuImgBlock .swiper-horizontal > .swiper-pagination-bullets,
.menuImgBlock .swiper-pagination-bullets.swiper-pagination-horizontal,
.menuImgBlock .swiper-pagination-custom,
.swiper-pagination-fraction {
  bottom: 16px;
  left: 0;
  width: 100%;
  padding-right: 12px;
}

.socialIconBlock {
  height: 39px;
  position: absolute !important;
  bottom: 25px;
  left: 0;
  width: 100%;
  padding-right: 100px;
}

ul.h-links {
  background: #fff;
  display: flex;
  margin-right: -54px;
  align-self: center;
  margin-bottom: 0;
  padding: 4px 50px 4px 0px;
  border-radius: 98px;
  margin-top: 19px;
}

ul.h-links a {
  font-size: 18px;
  line-height: 30px;
  font-weight: 700;
  color: #424a1e;
  display: inline-block;
  padding: 6px 22px;
  border-right: 2px solid rgba(217, 218, 216, 0.69);
  transition: 0.4s ease-in-out;
  text-transform: uppercase;
}

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

.menuImgBlock .swiper-pagination {
  text-align: right !important;
}

.facultyBlock {
  border: 1px solid transparent;
  padding: 8px;
  border-radius: 10px;
  transform: translateY(0);
  transition: 0.2s ease-in-out;
}

.facultyBlock .facultyImg {
  border-radius: 10px;
}

.facultyImg img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
}

span.facultyTag {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 100%;
  max-width: 264px;
  transform: translate(-50%, 0);
  z-index: 1;
  background: #fff;
  color: #40513b;
  padding: 14px 14px 6px;
  font-size: 21px;
  line-height: 18px;
  font-weight: 800;
  border-radius: 4px 4px 0 0;
  display: inline-block;
  text-transform: uppercase;
}

.facultyContent h3 {
  font-size: 15px;
  line-height: 25px;
  text-transform: uppercase;
  color: #121212;
  font-weight: 700;
  margin-bottom: 0;
  letter-spacing: -0.2px;
  font-family: "Nunito Sans", sans-serif;
}

.facultyContent p {
  margin-bottom: 0;
  margin-top: 6px;
  font-size: 18px;
  line-height: 22px;
  font-weight: 600;
  color: #121212;
}

.menuLeft {
  position: absolute;
  top: 0;
  height: 100vh;
  width: 100%;
}

.menuRight {
  right: 0;
  left: auto;
  transform: translateX(100%);
}

.navigation.open-nav {
  transform: translateX(0);
  opacity: 1;
}

@keyframes slideInLeft {
  0% {
    transform: translateX(-100%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes slideInRight {
  0% {
    transform: translateX(100%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
.navigation.open-nav .menuLeft {
  animation: slideInLeft 0.5s ease forwards;
}

.navigation.open-nav .menuRight {
  animation: slideInRight 0.5s ease forwards;
}

.menuSwiperContent:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 156%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.9), transparent);
  border-radius: 20px;
}

.menuSwiperContent h4 {
  font-size: 30px;
  font-weight: 600;
  color: #fff;
}

.navigation nav ul.menu-main-ul {
  position: relative;
  width: 315px;
  float: left;
  margin-bottom: 0;
  margin-top: 40px;
  padding: 12px 25px 12px 0;
  list-style-type: none;
  border-right: 2px solid rgba(255, 255, 255, 0.0392156863);
}

.menuLink {
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 40px;
  margin-bottom: 30px;
}

.ext-btn-group {
  position: relative;
  z-index: 99;
  margin-top: 50px;
}

.ext-btn-group a:hover {
  color: #fff;
}

.ext-btn-group a.ext-btn3 {
  background: red;
  color: #fff;
  font-weight: 500;
}

.ext-btn-group a {
  color: #fff;
  padding: 7px 24px;
  display: inline-block;
  font-size: 20px;
  border: 1px solid #fff;
  border-radius: 50px;
  margin: 0 6px;
  font-weight: 400;
  transition: 0.6s ease-in-out;
}

.navigation nav ul,
.navigation nav .navbar-brand.brand-logo {
  position: relative;
  z-index: 1;
}

.navigation:after {
  position: absolute;
  content: "";
  top: 0;
  right: -280px;
  height: 100%;
  width: 320px;
  background: #fffb78;
  padding: 150px 30px 30px 30px;
  z-index: 0;
  display: none;
}

.navigation nav .btn-group {
  position: relative;
  margin-top: 10px;
  z-index: 1;
  padding: 10px 15px;
}

.flyerModel {
  z-index: 9999;
  background: rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(6px);
}

.flyerModel .modal-dialog {
  max-width: 440px;
}

.flyerModel .modal-header .btn-close {
  position: absolute;
  right: 25px;
  top: 25px;
  width: 32px;
  height: 32px;
  z-index: 9;
  color: rgb(255, 255, 255);
  opacity: 1;
  font-size: 28px;
  background: rgb(237, 53, 0);
  border-radius: 50%;
  margin: 0px;
  transition: 0.4s ease-in-out;
}

.flyerModel .modal-header .btn-close svg {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 20px;
  fill: #fff;
  transform: translate(-50%, -50%);
}

/*.notificationBlock {
  height: 100%;
  max-height: 75dvh;
  overflow: scroll;
  overflow-x: hidden;
}
.notificationBlock::-webkit-scrollbar {
  width: 10px;
  border-radius: 6px;
}
.notificationBlock::-webkit-scrollbar-track {
  border-radius: 20px;
}
.notificationBlock::-webkit-scrollbar-thumb {
  background-color: #ffd0d0;
  border-radius: 20px;
}*/
.MainBannerRight {
  background: #faf9ec;
  padding: 7px;
  border-radius: 20px;
}

.notificationBlockContent {
  padding: 22px 12px;
}

.notificationBlockImg img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 16px 16px 0 0;
}

.notificationBlockContent h2 {
  color: #121212;
  font-size: 24px;
  line-height: 35px;
  font-weight: 600;
  margin-bottom: 20px;
  font-family: "Nunito Sans", sans-serif;
}

.notificationBlockContent p {
  font-size: 20px;
  line-height: 28px;
  font-weight: 400;
  margin-bottom: 0;
  margin-top: 16px;
}

.socials {
  z-index: 99;
  position: relative;
  left: 0;
  display: inline-block;
  margin-top: 12px;
}

.socials a {
  display: inline-block;
  margin: 0 6px 0 0;
  font-size: 18px;
  color: #fff;
  text-align: center;
  padding: 3px 7px 3px 8px;
  border-radius: 50%;
}

.navigation nav .socials p {
  font-size: 16px;
  line-height: 28px;
  color: #000;
}

.submenu-wrap ul {
  opacity: 1;
  visibility: visible;
  transition: 0.3s ease-in-out;
  display: none;
}

.submenu-wrap ul.hoverShowing {
  display: block;
}

.submenu-wrap ul li a {
  font-size: 16px;
  padding: 6px 10px;
  display: inline-block;
  color: #000;
  text-transform: capitalize;
}

.navigation nav > ul,
.navigation nav ul ul {
  padding-top: 0;
  position: relative;
}

.navigation nav > ul > li {
  transition: 0.4s ease-in-out;
  opacity: 0;
}

.navigation nav > ul > li > a {
  position: relative;
}

.navigation nav > ul > li > a:before,
.navigation nav > ul > li > a:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(0px, 14px);
  transition: 0.4s ease-in-out;
  display: none;
}

.navigation nav > ul > li > a:before {
  height: 15px;
  width: 15px;
  border: 2px solid #fffdb2;
  border-radius: 50%;
  z-index: 1;
  background: #004372;
  display: none;
}

.navigation nav > ul > li:not(:last-child) > a:after {
  height: 100%;
  width: 3px;
  background: #fffdb2;
  top: 10px;
  left: 5.5px;
  z-index: 0;
  display: none;
}

.navigation nav > ul > li > a:hover:before,
.navigation nav > ul > li.nav_active > a:before {
  background: #fffdb2;
}

.navigation.open-nav nav > ul > li {
  opacity: 1;
  line-height: normal;
}

.navigation nav > ul > li > a {
  display: block;
  color: #fff;
  font-size: 36px;
  padding: 15px 13px;
  font-weight: 600;
  line-height: 34px;
}

.navigation nav > ul > li.nav_active > a {
  color: #ffe3d4;
}

.btn-danger:not(:disabled):not(.disabled).active:focus,
.btn-danger:not(:disabled):not(.disabled):active:focus,
.show > .btn-danger.dropdown-toggle:focus {
  box-shadow: none;
}

.navigation nav ul ul li a {
  color: #fff;
  padding: 10px 10px;
  font-size: 21px;
  line-height: 22px;
  display: block;
  font-weight: 400;
  position: relative;
  letter-spacing: 0.5px;
}

@media screen and (min-width: 767px) {
  .navigation nav ul ul {
    position: absolute;
    left: 387px;
    padding: 30px 12px 0;
    height: 100%;
    top: 0;
    opacity: 0;
    width: 415px;
    visibility: hidden;
    transform: translateY(0px);
    transition: 0.3s ease-in-out;
    list-style-type: none;
  }
  .navigation nav ul ul:after {
    content: "";
    right: -16px;
    top: 0;
    border-top: 26px solid transparent;
    border-bottom: 0px solid transparent;
    position: absolute;
    border-left: 16px solid #cac6c6;
    display: none;
  }
  .navigation nav ul li:hover ul {
    opacity: 1;
    visibility: visible;
    transform: translateY(0px);
  }
}
.navigation nav ul li.nav_active ul,
.navigation nav ul li:hover ul {
  opacity: 1;
  visibility: visible;
}

.close-nav-panel {
  height: 80px;
  width: 80px;
  cursor: pointer;
  transition: 0.6s ease-in-out;
  position: relative;
  top: -24px;
  background: #f53530;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
}

.close-nav-panel svg {
  width: 25px;
  fill: #fff;
}

/*.close-nav-panel i {
  transition: .6s ease-in-out;
}
.close-nav-panel:hover i {
  transform: rotate(365deg);
}*/
.close-nav-panel span {
  font-weight: 400;
  text-transform: uppercase;
  font-size: 18px;
  padding: 0 22px 0 6px !important;
  display: inline-block;
  align-self: center;
  letter-spacing: 1px;
}

.navigation a.navbar-brand.brand-logo.desk-menu-logo {
  position: absolute;
  bottom: 20px;
  transform: translate(0%, 0%);
  right: 5%;
  filter: opacity(0.02);
  margin: 0;
  cursor: auto;
}

.fixed-social-icons {
  position: fixed;
  top: 50%;
  transform: translate(0, -50%);
  right: 0;
  z-index: 999;
}

.fixed-social-icons nav ul li a {
  color: #fff;
  font-size: 20px;
  padding: 3px 5px 3px 15px;
  margin: 8px 0;
  border-top-left-radius: 50px;
  border-bottom-left-radius: 50px;
  display: block;
  transition: 0.6s ease-in-out;
}

.fixed-social-icons nav ul li a i {
  padding-right: 8px;
}

.fixed-social-icons nav ul li a.youtube,
.socials a.youtube {
  background: #ff2121;
}

.fixed-social-icons nav ul li a.instagram,
.socials a.instagram {
  background: linear-gradient(30deg, #de1130, #8e4bc3);
}

.fixed-social-icons nav ul li a.facebook,
.socials a.facebook {
  background: #4267b2;
}

.fixed-social-icons nav ul li a.twitter,
.socials a.twitter {
  background: #1c9cea;
}

.fixed-social-icons nav ul li a.linkedin,
.socials a.linkedin {
  background: #2464ad;
}

.fixed-social-icons nav ul li a span {
  font-size: 14px;
  font-weight: 500;
  position: relative;
  top: -3px;
}

.fixed-social-icons nav ul li {
  transform: translateX(80px);
  transition: 0.2s ease-in-out;
}

.fixed-social-icons nav ul li:hover {
  transform: translateX(0px);
}

.navigation-header {
  display: flex;
  justify-content: space-between;
  padding: 50px 70px 0;
  z-index: 999;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

.social-media-header {
  z-index: 999;
  position: relative;
  display: flex;
  margin-bottom: 0;
}

.social-media-header a {
  color: #40513b;
  transition: 0.6s ease-in-out;
  margin-right: 16px;
  width: 42px;
  height: 42px;
  position: relative;
  border-radius: 50%;
  border: 1px solid #40513b;
}

.social-media-header a:hover {
  color: #40513b;
}

.social-media-header a svg {
  width: 22px;
  position: absolute;
  fill: #40513b;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.ext-btn-group a svg {
  width: 22px;
  fill: #fff;
  margin-right: 2px;
  position: relative;
  margin-top: -4px;
  border-radius: 50px;
}

.navigation-logo a.navbar-brands img {
  width: 120px;
}

.navigation-logo a.navbar-brands img.dis-inner-logo {
  margin-right: 12px;
}

.navigation-image:before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(0, 0, 0, 0.2), transparent);
  z-index: 999;
}

.menuLink a {
  display: block;
  text-align: center;
  font-size: 20px;
  text-decoration: none;
  background-image: none;
  padding: 12px;
  background-color: #fff;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
}

/*================== Mobile Menu CSS Start ======================*/
body.offcanvas-active {
  overflow: hidden;
}

.offcanvas-header {
  display: none;
}

.screen-darken {
  height: 100%;
  width: 0%;
  z-index: 30;
  position: fixed;
  top: 0;
  right: 0;
  opacity: 0;
  visibility: hidden;
  background-color: rgba(34, 34, 34, 0.6);
  transition: opacity 0.2s linear, visibility 0.2s, width 2s ease-in;
}

.screen-darken.active {
  z-index: 9999;
  transition: opacity 0.3s ease, width 0s;
  opacity: 1;
  width: 100%;
  visibility: visible;
}

.innerBanner1 {
  overflow: hidden;
}

/* ============ mobile view ============ */
@media all and (max-width: 991px) {
  .offcanvas-header {
    display: block;
  }
  img.navbar-brand-logo-img {
    width: 150px;
  }
  .main-navbar {
    padding: 0px;
  }
  .navbar .collapse.navbar-collapse .navbar-nav.main-navbar-nav a.nav-link.icon-bar {
    right: 20px;
    top: 0;
    padding: 26px 13px 60px 13px !important;
  }
  .navbar .collapse.navbar-collapse .navbar-nav.main-navbar-nav .nav-item a.nav-link {
    font-size: 18px;
  }
  .navbar .collapse.navbar-collapse .navbar-nav.main-navbar-nav .nav-item a.nav-link svg {
    width: 35px;
    padding-top: 1px;
  }
  .mobile-menu .navbar-dark .navbar-brand {
    width: -moz-fit-content;
    width: fit-content;
  }
  .mobile-offcanvas {
    visibility: hidden;
    transform: translateX(-100%);
    border-radius: 0;
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh !important;
    z-index: 9999 !important;
    width: 385px !important;
    overflow-y: scroll;
    overflow-x: hidden;
    transition: visibility 0.3s ease-in-out, transform 0.3s ease-in-out;
    background: #40513b !important;
    padding: 20px 8px;
  }
  .mobile-offcanvas::-webkit-scrollbar {
    width: 4px;
    border-radius: 6px;
  }
  .navSiderSection {
    overflow: visible;
  }
  .mobile-offcanvas::-webkit-scrollbar-track {
    border-radius: 20px;
  }
  .mobile-offcanvas::-webkit-scrollbar-thumb {
    background-color: #40513b !important;
    border-radius: 20px;
  }
  .mobile-offcanvas.show {
    visibility: visible;
    transform: translateX(0);
  }
  .mobile-offcanvas .container,
  .mobile-offcanvas .container-fluid {
    display: block;
  }
}
/* ================================= Hamburger Menu End ================================*/
.flyerSwiper .swiper-button-next:after,
.flyerSwiper .swiper-rtl .swiper-button-prev:after {
  color: #ffffff;
  font-size: 27px;
  background: #40513b;
  padding: 10px;
  border-radius: 4px;
}

h2.wrapperTitle small.d-block {
  font-size: 70%;
}

.wrapperTitle small {
  line-height: 83%;
}

.awardsImg img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}

.visionblock {
  padding: 49px 40px 35px 40px;
  height: 100%;
  border-radius: 10px;
  position: relative;
}

section.wrapperNoImgSection.wrapperNoImgSection1.visionSec {
  background: #f1f0e0 !important;
}

span.missionIcons {
  position: absolute;
  right: 36px;
  top: 17px;
}

span.missionIcons svg {
  width: 120px;
  opacity: 0.2;
  fill: #3b3b3b;
}

.swiper-pagination1 {
  position: absolute;
  text-align: center;
  transition: 0.3s opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
}

.resulteImgaes {
  background: #e7e7d2;
  padding: 6px;
  text-align: center;
  border-radius: 10px;
}

.resulteImgaes img {
  width: 100%;
  border-radius: 10px;
  height: 250px;
  -o-object-fit: cover;
     object-fit: cover;
  filter: grayscale(1);
}

.infrastructureSwiper .swiper-button-next:after,
.infrastructureSwiper .swiper-rtl .swiper-button-prev:after {
  background: #ffffff;
  padding: 9px 14px;
  font-size: 22px;
  height: 44px;
  width: 55px;
  color: #40513b;
  font-weight: 800;
  border-radius: 4px;
  border: 2px solid #dedada;
}

.infrastructureSwiper .swiper-button-next,
.infrastructureSwiper .swiper-button-prev {
  top: 88%;
}

.infrastructureSwiper .swiper-button-prev {
  left: 91%;
  right: auto;
}

.infrastructureSwiper .swiper-button-next {
  right: auto;
  left: 94%;
}

.infrastructureSwiper .swiper-button-prev:after,
.infrastructureSwiper .swiper-rtl .swiper-button-next:after {
  background: #ffffff;
  padding: 9px 14px;
  font-size: 22px;
  height: 44px;
  color: #40513b;
  font-weight: 800;
  border-radius: 4px;
  border: 2px solid #dedada;
}

section.wrapperSection.visionSec {
  background: rgba(65, 75, 33, 0.14) !important;
}

.resulteContent h4 {
  font-size: 29px;
  font-weight: 800;
  font-family: "Nunito Sans", sans-serif;
  margin-bottom: 10px;
}

.resulteContent h5 {
  font-size: 19px;
  text-transform: uppercase;
  font-weight: 700;
  color: #000;
  font-family: "Nunito Sans", sans-serif;
}

.innerGallery .photoBlock img {
  width: 100%;
  height: 410px;
}

.sportsImg img {
  width: 100%;
  border-radius: 10px;
  height: 475px;
  -o-object-fit: cover;
     object-fit: cover;
}

.sportsImg h4 {
  position: absolute;
  bottom: 0;
  text-align: center;
  padding: 66px 35px 23px 35px;
  color: #ffffff;
  left: 50%;
  transform: translate(-50%, 0px);
  border-radius: 10px;
  font-size: 28px;
  width: 100%;
  margin: 0;
  background: linear-gradient(0deg, rgb(0, 0, 0), transparent);
  font-family: "Nunito Sans", sans-serif;
}

.sportsImg h4 small {
  font-weight: 300;
  margin-top: 5px;
  font-size: 70%;
}/*# sourceMappingURL=main.css.map */