@font-face {
  font-family: proximaNova;
  src: url(../fonts/proxima-nova-font.ttf);
}
@font-face {
  font-family: proximaNovaSemibold;
  src: url(../fonts/proxima-nova-font-semibold.otf);
}
@font-face {
  font-family: proximaNovaBold;
  src: url(../fonts/proxima-nova-font-bold.otf);
}
@font-face {
  font-family: proximaNovaExtrabold;
  src: url(../fonts/proxima-nova-font-extrabold.otf);
}
@font-face {
  font-family: rageIttalic;
  src: url(../fonts/rage-ittalic.ttf);
}
/*==== Code for Firefox ====*/
::-moz-selection {
  background: #e2edc7;
  color: #000;
}

::selection {
  background: #e2edc7;
  color: #000;
}

#backtotop-btn {
  visibility: hidden;
  position: fixed;
  cursor: pointer;
  right: 50px;
  bottom: 40px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  transition: 1s;
  z-index: 999;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.arrow-top {
  display: block;
  width: 40px;
  pointer-events: none;
  background-color: #f5f5f5;
  padding: 8px;
}

.slide-in-bottom {
  animation: slide-in-bottom 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

.slide-out-top {
  animation: slide-out-top 0.5s cubic-bezier(0.55, 0.085, 0.68, 0.53) both;
}

.scale-in-center {
  animation: scale-in-center 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

.scale-out-center {
  animation: scale-out-center 0.5s cubic-bezier(0.55, 0.085, 0.68, 0.53) both;
}
@keyframes slide-in-bottom {
  0% {
    transform: translateY(1000px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes slide-out-top {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    transform: translateY(-1000px);
    opacity: 0;
  }
}
@keyframes scale-in-center {
  0% {
    transform: scale(0);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes scale-out-center {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(0);
    opacity: 1;
  }
}
html {
  scroll-behavior: smooth;
}

body {
  font-family: proximaNova;
  padding: 4px;
  padding-bottom: 0;
}

h1,
h2,
h3,
h4 {
  font-family: proximaNovaSemibold;
}

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

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

.main-anchor {
  position: relative;
  margin-top: 40px;
}

.main-anchor a {
  display: inline-block;
  background: transparent;
  border: 1px solid #bebebe;
  color: #222;
  font-size: 14px;
  line-height: 20px;
  padding: 8px 14px;
  text-transform: uppercase;
  transition: 0.6s ease-in-out;
}

.main-anchor a:hover {
  background: #636363;
  border: 1px solid #636363;
  color: #fff;
  letter-spacing: 0.5px;
}

/*================== Mobile Menu 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(0, 0, 0, 0.7);
  transition: opacity 0.2s linear, visibility 0.2s, width 2s ease-in;
}

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

@media all and (max-width: 1199px) {
  .offcanvas-header {
    padding: 0;
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
  }
  .mobile-offcanvas {
    visibility: hidden;
    transform: translateX(-100%);
    border-radius: 0;
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    z-index: 99999;
    width: 320px;
    overflow-y: scroll;
    overflow-x: hidden;
    transition: visibility 0.3s ease-in-out, transform 0.3s ease-in-out;
    background: #f7f7f7;
    padding: 35px 20px;
  }
  .mobile-offcanvas.show {
    visibility: visible;
    transform: translateX(0);
  }
  .mobile-offcanvas .container,
  .mobile-offcanvas .container-fluid {
    display: block;
  }
  .offcanvas-header button.btn-close {
    font-size: 20px;
    opacity: 0.4;
    padding: 0;
  }
  .mobile-offcanvas .accordion h2.accordion-header button.accordion-button,
  .mobile-offcanvas .accordion h2.accordion-header a.accordion-button {
    padding: 10px 0;
    text-transform: uppercase;
    font-size: 16px;
    line-height: 22px;
    color: #222;
    background: transparent !important;
  }
  .mobile-offcanvas .accordion h2.accordion-header a.accordion-button::after {
    display: none;
  }
  .mobile-offcanvas .accordion h2.accordion-header button.accordion-button:not(.collapsed) {
    background: transparent;
  }
  .mobile-offcanvas .accordion h2.accordion-header,
  .mobile-offcanvas .accordion .accordion-item {
    border-bottom: 1px solid #eeeeee;
    background: transparent !important;
  }
  .accordion-button:focus {
    border-color: transparent;
    box-shadow: none;
  }
  .ext-btn-group {
    margin-top: 30px;
  }
  .ext-btn-group a {
    font-family: "proximaNovaSemibold";
    background: #9FC645;
    display: block;
    text-align: center;
    color: #fff;
    padding: 8px 16px;
    font-size: 16px;
    text-transform: uppercase;
  }
  .ext-btn-group a svg {
    width: 22px;
    fill: #fff;
    margin-right: 4px;
  }
  .mobile-offcanvas .accordion .accordion-body {
    padding: 8px 0;
    border-bottom: 1px solid #eeeeee;
  }
  .mobile-offcanvas .accordion .accordion-body .accordionSubMenu {
    position: relative;
  }
  .mobile-offcanvas .accordion .accordion-body .accordionSubMenu h4.accordionHeading {
    font-size: 16px;
    line-height: 22px;
    text-transform: uppercase;
    margin-bottom: 6px;
    color: #222;
  }
  .mobile-offcanvas .accordion .accordion-body .accordionSubMenu ul.sub-menu {
    margin-bottom: 0;
  }
  .mobile-offcanvas .accordion .accordion-body .accordionSubMenu ul.sub-menu li a {
    position: relative;
    font-size: 16px;
    line-height: 22px;
    display: block;
    padding: 6px 0 6px 16px;
    text-transform: uppercase;
    color: #000;
  }
  .mobile-offcanvas .accordion .accordion-body .accordionSubMenu ul.sub-menu li a i {
    color: #0088c3;
    margin-right: 2px;
    position: absolute;
    left: 0;
    top: 9px;
  }
  ol.social-media-mob-header {
    margin-bottom: 0;
    margin-top: 30px;
    display: flex;
    justify-content: center;
  }
  ol.social-media-mob-header li a {
    font-size: 20px;
    display: inline-block;
    margin: 0 8px;
    color: #717171;
    padding: 2px 2px;
  }
  .accordion-button::after {
    width: 1.1rem;
    height: 1.1rem;
    background-size: 1.1rem;
  }
  .accordion-button:not(.collapsed) {
    box-shadow: none;
  }
}
/*================== Mobile Menu End==================*/
/*====================== Slider Video Start======================*/
.slider-main {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  /* background: url(../images/video-cover.jpg)no-repeat center center / cover; */
}

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

.slider-main:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.5), transparent);
  z-index: 9;
}

#myVideo {
  position: relative;
  width: 100%;
}

.slider-main-caption {
  position: absolute;
  width: 100%;
  left: 0;
  right: 0;
  padding: 60px 70px 50px;
  bottom: 0;
  z-index: 99;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.slider-main-caption img {
  width: 100px;
  align-self: center;
}

.slider-main-caption h1 {
  font-size: 42px;
  line-height: 48px;
  font-weight: 500;
  text-shadow: 1px 1px 10px #000;
  margin-bottom: 0;
  letter-spacing: 0.3px;
  color: #fff;
  text-transform: capitalize;
  font-style: italic;
  border-left: 4px solid #fff;
  padding-left: 20px;
  margin-left: 20px;
  align-self: center;
}

.explore-more-block {
  position: absolute;
  bottom: 16px;
  left: 50%;
  z-index: 9;
  text-align: center;
  transform: translate(-50%, 0);
  text-shadow: 1px 1px 10px black;
}

.explore-more-block h6 {
  font-size: 26px;
  color: #fff;
}

.explore-more-block h6 i {
  animation-delay: 0s;
  animation: updown 2s;
  animation-direction: forwards;
  animation-iteration-count: infinite;
  animation-timing-function: steps;
}

.explore-more-block h6 small {
  font-size: 55%;
  text-transform: uppercase;
  margin-top: 12px;
  border: 1px solid rgba(255, 255, 255, 0.3019607843);
  padding: 6px 8px 5px;
  background: radial-gradient(rgba(0, 0, 0, 0.1), transparent);
}

@keyframes updown {
  0% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(0px);
  }
}
/*================================================ Slider Video End=================================================*/
/*================================================ Preloader CSS Start=================================================*/
.preloader {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 999999;
  text-align: center;
  transition: 0.2s;
}

.preloader .loader {
  position: absolute;
  top: 32%;
  left: 50%;
  right: 0;
  transform: translate(-50%, -50%);
  text-align: center;
  margin: 0 auto;
  transition: 0.6s;
}

.preloader .box {
  width: 100%;
  height: 100%;
  background: #fff;
  animation: animate 0.5s linear infinite;
  position: absolute;
  top: 0;
  left: 0;
}

.preloader .shadow {
  width: 100%;
  height: 5px;
  background: #000;
  opacity: 0.1;
  position: absolute;
  top: 59px;
  left: 0;
  border-radius: 50%;
  animation: shadow 0.5s linear infinite;
}

.preloader::after,
.preloader::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: #fff;
  transition: 0.6s;
}

.preloader .box img {
  background: 0 0;
  width: 320px;
  border-radius: 4px;
}

.preloader::after {
  left: auto;
  right: 0;
}

.preloader.preloader-deactivate {
  visibility: hidden;
}

.preloader.preloader-deactivate::after,
.preloader.preloader-deactivate::before {
  width: 100%;
  opacity: 0;
  visibility: hidden;
}

.preloader.preloader-deactivate .loader {
  opacity: 0;
  visibility: hidden;
}

/*================================================ Preloader CSS End =================================================*/
/* ================================= Play Button Start ================================*/
.playbtn {
  position: absolute;
  bottom: 50px;
  right: 60px;
  z-index: 99;
  background: #fff;
  border-radius: 50%;
}

.play-btn {
  width: 70px;
  height: 70px;
  background: radial-gradient(rgba(159, 198, 69, 0) 60%, rgb(255, 255, 255) 72%);
  border-radius: 50%;
  position: relative;
  display: block;
}

/* triangle */
.play-btn::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  transform-origin: center center;
  width: 0;
  height: 0;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  border-left: 25px solid #7da12b;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.play-btn:before {
  content: "";
  position: absolute;
  width: 150%;
  height: 150%;
  animation-delay: 0s;
  animation: pulsate1 2s;
  animation-direction: forwards;
  animation-iteration-count: infinite;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.75);
  top: -25%;
  left: -25%;
  background: rgba(198, 16, 0, 0);
}
@keyframes pulsate1 {
  0% {
    transform: scale(0.6);
    opacity: 1;
    box-shadow: inset 0px 0px 25px 3px rgba(255, 255, 255, 0.75), 0px 0px 25px 10px rgba(255, 255, 255, 0.75);
  }
  100% {
    transform: scale(1);
    opacity: 0;
    box-shadow: none;
  }
}
/* ================================= Play Button End ================================*/
/* ================================= Main Header Start ================================*/
header.main-header {
  position: relative;
}

.fixed-top,
.main-inner header.main-header nav.navbar {
  top: 0px;
  transform: translateY(0px);
  transition: transform 0.3s;
}

header.main-header nav.navbar.fixed-top,
.inner-header header.main-header nav.navbar {
  position: fixed !important;
  top: 0;
  left: 0;
  background: #fff;
  padding: 0 16px;
  z-index: 9999;
  border-bottom: 0;
  box-shadow: 0 3px 16px rgba(0, 0, 0, 0.05) !important;
}

.inner-header header.main-header nav.navbar {
  box-shadow: none;
}

header.main-header nav.navbar.fixed-top a.navbar-brand img,
.inner-header header.main-header nav.navbar a.navbar-brand img {
  width: 40px;
  display: block;
  margin-right: 10px;
}

header.main-header nav.navbar.fixed-top ul.navbar-nav li.nav-item a.nav-link,
.inner-header header.main-header nav.navbar ul.navbar-nav li.nav-item a.nav-link {
  padding: 25px 25px 25px 0 !important;
  font-size: 15.5px;
  margin-top: 0;
  color: #222 !important;
  font-weight: 500;
  font-family: proximaNovaSemibold;
}

header.main-header nav.navbar.fixed-top ul.navbar-nav li.nav-item.nav-item-btn a.nav-link,
.inner-header header.main-header nav.navbar ul.navbar-nav li.nav-item.nav-item-btn a.nav-link {
  color: #fff !important;
  padding: 25px 16px !important;
}

header.main-header nav.navbar.fixed-top ul.navbar-nav li.nav-item.nav-item-menu a.nav-link,
.inner-header header.main-header nav.navbar ul.navbar-nav li.nav-item.nav-item-menu a.nav-link {
  padding: 4px 16px 3px !important;
}

header.main-header nav.navbar.fixed-top ul.navbar-nav li.nav-item .dropdown-menu:before {
  top: -20px;
}

.main-inner-ab-header header.main-header nav.navbar {
  position: absolute !important;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 90;
  padding: 40px 30px;
  transition: 0.6s ease-in-out;
  background: transparent;
}

header.main-header nav.navbar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  padding: 35px 30px;
  transition: 0.6s ease-in-out;
  background: transparent;
}

header.main-header nav.navbar a.navbar-brand img {
  width: 330px;
}

header.main-header ul.navbar-nav li.nav-item a.nav-link {
  text-transform: uppercase;
  color: #fff !important;
  padding: 30px 22px 30px 0px !important;
  font-size: 15.5px;
  font-weight: 400;
  letter-spacing: 0.3px;
  transition: 0.4s ease-in-out;
}

header.main-header ul.navbar-nav li.nav-item a.nav-link i.fa-angle-down {
  font-size: 90%;
  transition: 0.2s ease-in-out;
  position: relative;
  top: -1.5px;
}

header.main-header ul.navbar-nav li.nav-item a.nav-link:hover i.fa-angle-down {
  transform: rotate(180deg);
}

header.main-header nav.navbar a.navbar-brand {
  font-size: 24px;
  line-height: 30px;
  text-transform: uppercase;
  font-weight: 600;
  color: #fff;
  margin-right: 0;
}

header.main-header nav.navbar.fixed-top a.navbar-brand img,
.inner-header header.main-header nav.navbar a.navbar-brand img {
  display: inline-block;
  width: 240px;
}

header.main-header nav.navbar.fixed-top a.navbar-brand img.no-fixed,
header.main-header nav.navbar a.navbar-brand img.fixed,
.inner-header header.main-header nav.navbar a.navbar-brand img.no-fixed {
  display: none;
}

header.main-header nav.navbar.fixed-top a.navbar-brand img.fixed,
header.main-header nav.navbar a.navbar-brand img.no-fixed,
.inner-header header.main-header nav.navbar a.navbar-brand img.fixed {
  display: inline-block;
}

header.main-header nav.navbar a.navbar-brand small {
  font-size: 50%;
  font-weight: 300;
  line-height: 16px;
  letter-spacing: 1px;
  text-align: center;
  position: relative;
}

header.main-header nav.navbar a.navbar-brand small:before {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  width: 38%;
  height: 1px;
  background: linear-gradient(270deg, white, transparent);
}

header.main-header nav.navbar a.navbar-brand small:after {
  content: "";
  position: absolute;
  top: 8px;
  right: 0;
  width: 38%;
  height: 1px;
  background: linear-gradient(90deg, white, transparent);
}

header.main-header nav.navbar.fixed-top a.navbar-brand {
  font-size: 21px;
  line-height: 26px;
  padding-left: 0;
  display: contents;
}

header.main-header nav.navbar ul.navbar-nav li.nav-item.nav-item-fixed a.nav-link {
  display: none;
  transition: 0.1s ease-in-out;
}

header.main-header nav.navbar.fixed-top ul.navbar-nav li.nav-item.nav-item-fixed a.nav-link {
  display: block;
}

header.main-header ul.navbar-nav li.nav-item.nav-item-menu a.nav-link {
  display: inline-block;
  padding: 6px 16px 5px !important;
}

header.main-header ul.navbar-nav li.nav-item.nav-item-menu a.nav-link svg {
  width: 40px;
  fill: #fff;
  position: relative;
  top: -1px;
  margin-left: 2px;
  border-radius: 2px;
  transform: rotate(180deg);
}

header.main-header nav.navbar.fixed-top ul.navbar-nav li.nav-item.nav-item-menu a.nav-link svg {
  top: 0px;
}

header.main-header nav.navbar.fixed-top ul.navbar-nav li.nav-item.nav-item-menu a.nav-link span {
  position: relative;
  top: 2px;
}

header.main-header ul.navbar-nav li.nav-item .dropdown-menu {
  background: #fff;
  border-radius: 0;
  padding: 16px 12px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
  border: 0;
}

header.main-header ul.navbar-nav li.nav-item .dropdown-menu:before {
  content: "";
  position: absolute;
  left: 0;
  top: -28px;
  width: 80px;
  height: 5px;
  background: #9FC645;
  transition-delay: 0.3s;
}

.inner-header header.main-header ul.navbar-nav li.nav-item .dropdown-menu:before {
  top: -24px;
}

/*header.main-header ul.navbar-nav li.nav-item .dropdown-menu:after {
  content: "";
  position: absolute;
  left: 30px;
  top: -12px;
  width: 0;
  height: 0;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-bottom: 12px solid #fff;
  }*/
header.main-header ul.navbar-nav li.nav-item .dropdown-menu h6.title {
  font-size: 24px;
  line-height: 28px;
  font-weight: 700;
  font-family: "Merienda", cursive;
  color: #111;
  margin-bottom: 12px;
}

header.main-header ul.navbar-nav li.nav-item .dropdown-menu .col-megamenu img {
  width: 100%;
  height: 100%;
  min-height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
}

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

header.main-header ul.navbar-nav li.nav-item .dropdown-menu .col-megamenu ul li a {
  position: relative;
  color: #000;
  font-weight: 500;
  font-size: 15px;
  line-height: 20px;
  display: block;
  transition: 0.6s ease-in-out;
  padding: 0;
  text-transform: uppercase;
}

header.main-header ul.navbar-nav li.nav-item .dropdown-menu .col-megamenu ul li a:hover {
  color: #0099CD;
}

header.main-header ul.navbar-nav li.nav-item .dropdown-menu .col-megamenu ul li a:hover::before {
  visibility: visible;
  opacity: 1;
  width: 10px;
}

header.main-header ul.navbar-nav li.nav-item .dropdown-menu .col-megamenu.col-megamenu2 {
  padding-left: 20px;
  height: 100%;
  padding-top: 10px;
}

header.main-header ul.navbar-nav li.nav-item .dropdown-menu .col-megamenu ul li {
  margin-bottom: 7px;
  padding-bottom: 7px;
  *border-bottom: 1px solid #f2f2f2;
  transition: 0.6s ease-in-out;
}

header.main-header ul.navbar-nav li.nav-item .dropdown-menu .col-megamenu ul li:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: 0;
}

@media all and (min-width: 992px) {
  .navbar .dropdown-menu-end {
    right: 0;
    left: auto;
  }
  .navbar .nav-item .dropdown-menu {
    display: block;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    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: 180%;
  }
  .navbar .nav-item:hover .dropdown-menu {
    transition: 0.3s;
    opacity: 1;
    visibility: visible;
    top: 100%;
    transform: rotateX(0deg);
  }
}
header.main-header ul.navbar-nav li.nav-item .dropdown-menu.dropdown-megamenu-right {
  min-width: 500px;
}

.dropdown-large {
  padding: 1rem;
}

header.main-header ul.navbar-nav li.nav-item .dropdown-menu .col-megamenu h4 {
  position: relative;
  font-size: 16px;
  color: #111;
  font-weight: 600;
  margin-bottom: 16px;
  border-bottom: 1px solid #d5d5d5;
  padding-bottom: 6px;
  text-transform: uppercase;
}

@media all and (min-width: 992px) {
  .dropdown-large {
    min-width: 252px;
  }
  .dropdown-megamenu {
    min-width: 720px;
  }
}
header.main-header ul.navbar-nav li.nav-item.nav-item-btn {
  align-self: center;
  margin-left: 12px;
}

header.main-header ul.navbar-nav li.nav-item.nav-item-btn a.nav-link {
  position: relative;
  background: #9FC645;
  display: flex;
  align-self: center;
  align-content: center;
  padding: 10px 18px !important;
  transition: 0.4s ease-in-out;
}

header.main-header ul.navbar-nav li.nav-item.nav-item-btn a.nav-link svg {
  width: 24px;
  fill: #fff;
  margin-right: 6px;
}

.dropdown-toggle::after {
  display: none;
}

/* ================================= Main Header CSS End ================================*/
/* ================================= Main Slider Start ================================*/
.main-slider-block {
  position: relative;
  transition: 0.4s ease-in-out;
}

.main-slider-block:before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 0);
  width: 0;
  z-index: 9;
  height: 0;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-bottom: 12px solid #fff;
}

.main-slider {
  position: relative;
  overflow: hidden;
}

.main-slider .carousel-inner .carousel-item img.main-slider-img,
.main-slider-block {
  height: 98vh;
  background: #222;
}

.main-slider .carousel-inner .carousel-item img.main-slider-img {
  -o-object-fit: cover;
     object-fit: cover;
  animation: pulse 12s infinite;
  animation-duration: 10s;
  animation-timing-function: ease-in-out;
  animation-delay: 0s;
  animation-direction: alternate;
  animation-iteration-count: infinite;
}

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

.main-slider .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.3), transparent);
}

.main-slider .carousel-inner .carousel-item .carousel-caption {
  z-index: 99;
  text-align: left;
  width: 100%;
  left: 0;
  right: 0;
  padding: 30px 70px;
  bottom: 0;
}

.main-slider .carousel-inner .carousel-item .carousel-caption-content a {
  display: inline-block;
  color: #fff;
  margin-top: 16px;
  text-transform: uppercase;
  font-weight: 300;
  background: transparent;
  padding: 4px 12px;
  border: 1px solid #fff;
  border-radius: 2px;
  font-size: 15px;
}

.main-slider .carousel-inner .carousel-item .carousel-caption h5 {
  font-size: 42px;
  line-height: 52px;
  font-weight: 500;
  text-shadow: 1px 1px 10px #000;
  margin-bottom: 0;
  letter-spacing: 0.3px;
}

.main-slider .carousel-inner .carousel-item .carousel-caption p {
  font-size: 20px;
  line-height: 22px;
  font-style: italic;
  font-weight: 300;
  margin-bottom: 0;
  text-shadow: 1px 1px 10px black;
  font-family: "Roboto", sans-serif;
}

.main-slider .carousel-control-next,
.main-slider .carousel-control-prev {
  width: auto !important;
  opacity: 1;
  font-size: 18px;
  bottom: auto;
  top: 50%;
  background: rgba(255, 255, 255, 0.8);
  padding: 30px 4px;
  color: #111;
  transition: 0.6s ease-in-out;
}

.main-slider .carousel-control-prev {
  left: 0;
  transform: translate(0, -50%) translateX(-200%);
}

.main-slider:hover .carousel-control-prev {
  transform: translate(0, -50%) translateX(0%);
}

.main-slider .carousel-control-next {
  right: 0;
  transform: translate(0, -50%) translateX(200%);
}

.main-slider:hover .carousel-control-next {
  transform: translate(0, -50%) translateX(0%);
}

.main-slider .carousel-control-next {
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}

.main-slider .carousel-control-prev {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}

.main-slider .carousel-control-next span.carousel-control-next-icon,
.main-slider .carousel-control-prev span.carousel-control-prev-icon {
  width: 22px;
  height: 40px;
}

/* ================================= Main Slider End ================================*/
section {
  position: relative;
  padding: 70px 0;
}

.container {
  max-width: 92%;
}

.bg1 {
  background: #f1f1f1;
}

.welcome-section {
  padding: 60px 0;
}

.welcome-img {
  position: relative;
  border: 4px solid #fff;
}

.welcome-img:before {
  position: absolute;
  content: "";
  top: -25px;
  left: -25px;
  width: 350px;
  height: 350px;
  background: rgba(159, 198, 69, 0.8784313725);
  z-index: -1;
}

.welcome-img img {
  height: 440px;
  -o-object-fit: cover;
     object-fit: cover;
}

.welcome-block {
  position: relative;
  padding-left: 50px;
}

.welcome-block img.logo-icon {
  position: absolute;
  top: -4%;
  left: 50%;
  transform: translate(-50%, 0%);
  filter: invert(1) opacity(0.1);
  width: 230px;
}

.welcome-text p {
  position: relative;
  z-index: 9;
  color: #000;
  font-size: 21.5px;
  line-height: 32px;
  font-weight: 400;
  margin-bottom: 0;
  margin-top: 20px;
}

.play-now {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  z-index: 9;
  transition: all 300ms ease;
}

.play-now .icon {
  position: absolute;
  left: 50%;
  top: 50%;
  height: 80px;
  width: 80px;
  text-align: center;
  line-height: 80px;
  background-color: #fff;
  color: #9FC645;
  z-index: 1;
  font-size: 26px;
  display: block;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  box-shadow: 0 5px 10px 0 rgba(255, 255, 255, 0.3);
  transform-origin: center;
}

.play-now .ripple,
.play-now .ripple:before,
.play-now .ripple:after {
  position: absolute;
  top: 50%;
  left: 50%;
  height: 80px;
  width: 80px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6);
  animation: ripple 3s infinite;
}

.play-now .ripple:before {
  animation-delay: 0.9s;
  content: "";
  position: absolute;
}

.play-now .ripple:after {
  animation-delay: 0.6s;
  content: "";
  position: absolute;
}
@keyframes ripple {
  70% {
    box-shadow: 0 0 0 70px rgba(255, 255, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}
/* ================================= Main Title Block Start ================================*/
.main-title {
  position: relative;
  margin-bottom: 35px;
}

.main-title .main-title-icon {
  position: relative;
  width: 200px;
  margin: 0 auto 6px;
}

.main-title .main-title-icon img {
  width: 42px;
  filter: grayscale(1) opacity(0.5);
}

.main-title .main-title-icon:before,
.main-title .main-title-icon:after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  width: 75px;
  height: 2px;
}

.main-title .main-title-icon:before {
  left: 0;
  background: linear-gradient(270deg, #b8b8b8, transparent);
}

.main-title .main-title-icon:after {
  right: 0;
  background: linear-gradient(90deg, #b8b8b8, transparent);
}

.main-title h1 {
  margin-bottom: 0;
  font-size: 44px;
  line-height: 48px;
  color: #000;
  font-weight: 600;
}

.main-title h1 small {
  font-family: "Noto Sans", sans-serif;
  font-size: 32%;
  line-height: 12px;
  font-weight: 600;
  letter-spacing: 2.5px;
  color: #0099cd;
  text-transform: uppercase;
}

.main-title p {
  font-size: 20px;
  color: #333;
  margin-bottom: 0;
  margin-top: 6px;
  line-height: 26px;
  font-weight: 400;
}

/* ================================= Main Title Block End ================================*/
/* ================================= What We Do Start ================================*/
.whatWeDo-block {
  position: relative;
  background: #fff;
  height: 100%;
  padding: 40px;
  text-align: center;
}

.whatWeDo-block svg {
  width: 70px;
  fill: #0099cd;
  margin-bottom: 12px;
  animation-duration: 1s;
  animation-timing-function: ease-in-out;
  animation-delay: 0s;
  animation-direction: alternate;
  animation-iteration-count: infinite;
}

.whatWeDo-block:hover svg {
  animation: shake 1s infinite;
}

@keyframes shake {
  0% {
    transform: translate(1px, 1px) rotate(0deg);
  }
  10% {
    transform: translate(-1px, -2px) rotate(-1deg);
  }
  20% {
    transform: translate(-3px, 0px) rotate(1deg);
  }
  30% {
    transform: translate(3px, 2px) rotate(0deg);
  }
  40% {
    transform: translate(1px, -1px) rotate(1deg);
  }
  50% {
    transform: translate(-1px, 2px) rotate(-1deg);
  }
  60% {
    transform: translate(-3px, 1px) rotate(0deg);
  }
  70% {
    transform: translate(3px, 1px) rotate(-1deg);
  }
  80% {
    transform: translate(-1px, -1px) rotate(1deg);
  }
  90% {
    transform: translate(1px, 2px) rotate(0deg);
  }
  100% {
    transform: translate(1px, -2px) rotate(-1deg);
  }
}
.whatWeDo-block h1 {
  font-size: 21px;
  line-height: 24px;
  color: #000;
  margin-bottom: 6px;
  font-weight: 500;
}

.whatWeDo-block p {
  color: #333;
  font-size: 17px;
  line-height: 20px;
  font-weight: 400;
  position: relative;
  overflow: hidden;
  height: 100%;
  margin-bottom: 0;
}

.whatWeDo-info {
  text-align: end;
  position: relative;
  padding: 50px 35px;
  height: 100%;
  background: #f1f1f1;
}

.whatWeDo-info h1 {
  font-size: 40px;
  line-height: 46px;
  color: #000;
  font-weight: 600;
  margin-bottom: 10px;
}

.whatWeDo-info p {
  font-size: 19px;
  color: #000;
  line-height: 24px;
  margin-bottom: 0;
  font-weight: 400;
}

/* ================================= What We Do End ================================*/
/* ================================= News & Events Start ================================*/
.vertical-title {
  position: relative;
}

.vertical-title h1 {
  transform: rotate(270deg);
  width: 400px;
  position: absolute;
  left: -140px;
  bottom: -220px;
  font-size: 54px;
  line-height: 58px;
  color: #8b8b8b;
  margin-bottom: 0;
}

.newsEvents-block {
  position: relative;
  transition: 0.4s ease-in-out;
  margin: 4px;
}

.newsEvents-block-img {
  overflow: hidden;
}

.newsEvents-block-img img {
  height: 100%;
}

.newsEvents-block-img span.news-category {
  position: absolute;
  top: 16px;
  left: 0;
  background: #0099CD;
  padding: 6px 16px 6px 12px;
  color: #fff;
  font-size: 14px;
  line-height: 18px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-top-right-radius: 50px;
  border-bottom-right-radius: 50px;
}

.newsEvents-block-info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  opacity: 1;
}

.newsEvents-block-info:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #1c1a1a;
  height: 100%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.7), transparent);
}

.newsEvents-block-img span.date-text {
  font-family: "proximaNovaSemibold";
  font-size: 28px;
  line-height: 30px;
  color: #fff;
  position: absolute;
  top: 16px;
  right: 16px;
  text-align: center;
  background: rgba(99, 99, 99, 0.8705882353);
  padding: 7px 12px;
  border-radius: 4px;
  box-shadow: 0 3px 16px rgba(0, 0, 0, 0.05);
  outline: 1px solid #8e8e8e;
  outline-offset: -4px;
}

.newsEvents-block-img span.date-text small {
  font-family: proximaNova;
  font-size: 42%;
  line-height: 14px;
  text-transform: uppercase;
  color: #ffffff;
  font-style: italic;
}

.newsEvents-block-info h1 {
  font-size: 22px;
  color: #fff;
  line-height: 26px;
  margin-bottom: 0;
  text-shadow: 1px 1px 10px black;
  font-family: "proximaNova";
  position: relative;
}

.newsEvents-block-text {
  position: relative;
  overflow: hidden;
  opacity: 0;
  height: 0px;
  transition: 0.4s ease-in-out;
}

.newsEvents-block-info p {
  font-size: 16px;
  line-height: 21px;
  color: #fff;
  margin-top: 10px;
  margin-bottom: 0;
  text-shadow: 1px 1px 10px black;
  transition: 0.4s ease-in-out;
  padding-left: 12px;
  margin-left: 8px;
  border-left: 2px solid #fff;
}

.newsEvents-block:hover .newsEvents-block-text {
  height: 75px;
  opacity: 1;
}

.swiper.newsEventsSwiper {
  position: relative;
  transition: 0.4s ease-in-out;
}

.newsEventsSwiper .swiper-button-next:after,
.newsEventsSwiper .swiper-button-prev:after {
  display: none;
}

.newsEventsSwiper .swiper-button-next,
.newsEventsSwiper .swiper-button-prev {
  background: #fff;
  color: #343434;
  border: 1px solid #eeeeee;
  font-size: 20px;
  box-shadow: 0 3px 16px rgba(0, 0, 0, 0.1);
  opacity: 0;
  transition: 0.4s ease-in-out;
}

.newsEventsSwiper .swiper-button-prev {
  padding: 30px 22px 30px 14px;
  transform: translateX(-100%);
  border-top-right-radius: 50px;
  border-bottom-right-radius: 50px;
  left: 0;
  right: auto;
}

.newsEventsSwiper .swiper-button-next {
  padding: 30px 14px 30px 22px;
  transform: translateX(100%);
  border-top-left-radius: 50px;
  border-bottom-left-radius: 50px;
  right: 0;
  left: auto;
}

.newsEventsSwiper:hover .swiper-button-next,
.newsEventsSwiper:hover .swiper-button-prev {
  transform: translateX(0%);
  opacity: 1;
}

a.explore-link {
  position: relative;
  display: inline-block;
  margin-top: 30px;
  color: #777;
  text-transform: uppercase;
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  padding-left: 30px;
  letter-spacing: 0.3px;
  transition: 0.4s ease-in-out;
}

a.explore-link:hover {
  color: #7da12b;
  padding-left: 35px;
}

a.explore-link:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(0, -50%);
  background: #777;
  width: 25px;
  height: 2px;
  transition: 0.4s ease-in-out;
}

a.explore-link:hover::before {
  background: #7da12b;
  width: 30px;
}

/* ================================= News & Events End ================================*/
/* ================================= Focus Section Start ================================*/
.focus-box {
  position: relative;
  overflow: hidden;
  border: 5px solid #dddddd;
  transition: 0.4s ease-in-out;
}

.focus-box:hover {
  border-bottom: 4px solid #7da12b;
}

.focus-box .focus-box-img {
  position: relative;
}

.focus-box .focus-box-img h1 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  text-align: center;
  color: #fff;
  font-size: 21px;
  line-height: 26px;
  text-transform: uppercase;
  font-weight: 500;
  text-shadow: 1px 1px 6px black;
  padding: 12px 20px;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.9), transparent);
  margin-bottom: 0;
  transition: 0.4s ease-in-out;
  opacity: 1;
  visibility: visible;
  font-family: "Noto Sans", sans-serif;
}

.focus-box:hover .focus-box-img h1 {
  opacity: 0;
  visibility: hidden;
}

.focus-box .focus-box-img img {
  width: 100%;
  height: 350px;
  -o-object-fit: cover;
     object-fit: cover;
}

.focus-box .focus-box-info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 70px 12px 16px;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.9), transparent);
  transition: 0.4s ease-in-out;
  text-align: center;
  opacity: 0;
  visibility: hidden;
}

.focus-box:hover .focus-box-info {
  opacity: 1;
  visibility: visible;
  padding: 50px 20px 20px;
}

.focus-box .focus-box-info h1 {
  font-size: 21px;
  line-height: 26px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 6px;
  text-shadow: 1px 1px 6px black;
  text-transform: uppercase;
  font-family: "Noto Sans", sans-serif;
}

.focus-box .focus-box-info p {
  margin-bottom: 0;
  color: #fff;
  font-size: 15px;
  line-height: 20px;
  font-weight: 300;
  text-shadow: 1px 1px 6px #000;
  height: 62px;
  position: relative;
  overflow: hidden;
}

.focus-box .focus-box-img svg {
  position: absolute;
  left: 50%;
  top: 30px;
  transform: translate(-50%, 0%) translateY(0px);
  width: 60px;
  fill: #fff;
  filter: drop-shadow(1px 2px 4px black);
  opacity: 0;
  visibility: hidden;
  transition: 0.4s ease-in-out;
}

.focus-box:hover .focus-box-img svg {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0%) translateY(-10px);
}

.swiper.focusAreaSwiper .swiper-button-next:after,
.swiper.focusAreaSwiper .swiper-button-prev:after {
  display: none;
}

.swiper.focusAreaSwiper .swiper-button-next,
.swiper.focusAreaSwiper .swiper-button-prev {
  background: #fff;
  color: #474747;
  right: 0;
  padding: 35px 10px;
  font-size: 22px;
  opacity: 0;
  transition: 0.6s ease-in-out;
}

.swiper.focusAreaSwiper .swiper-button-prev {
  transform: translateX(-200%);
  display: none;
}

.swiper.focusAreaSwiper .swiper-button-next {
  transform: translateX(200%);
}

.swiper.focusAreaSwiper:hover .swiper-button-prev {
  transform: translateX(0%);
  opacity: 1;
}

.swiper.focusAreaSwiper:hover .swiper-button-next {
  transform: translateX(0%);
  opacity: 1;
}

.swiper.focusAreaSwiper .swiper-button-next {
  right: 0;
}

.swiper.focusAreaSwiper .swiper-button-prev {
  left: 0;
}

/* ================================= Focus Section End ================================*/
/* ================================= Partners & Supports Section Start ================================*/
.sticky-section {
  position: sticky;
  top: 50px;
}

.partners-info {
  position: relative;
  padding: 80px 60px 70px 40px !important;
  background: #f1f1f1;
  height: 100vh;
}

.partners-logo-block ul {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin-bottom: 0;
}

.partners-logo-block ul li {
  flex: 0 0 auto;
  width: 20%;
}

.partners-logo-block ul li .partners-logo-box {
  position: relative;
  padding: 10px;
  text-align: center;
  border: 1px solid #ededed;
}

.partners-logo-block ul li .partners-logo-box img {
  width: 140px;
}

.partners-logo-block {
  position: relative;
  padding: 40px;
  background: #fff;
}

/* ================================= Partners & Supports Section End ================================*/
/* ================================= Sponsor Block Start ================================*/
.sponsor-section {
  position: relative;
  padding: 60px 0;
  margin-top: 40px;
}

.sponsor-block {
  position: relative;
  padding-right: 40px;
  margin-right: 20px;
}

.sponsor-block-img {
  position: absolute;
  bottom: 0;
}

.sponsor-block-img img {
  width: 440px;
  filter: grayscale(1);
}

.sponsor-block h1 {
  font-size: 42px;
  line-height: 48px;
  color: #000;
  font-weight: 600;
  margin-bottom: 0px;
  text-transform: capitalize;
}

.sponsor-block h2 {
  font-size: 20px;
  line-height: 26px;
  margin-bottom: 16px;
  color: #0099CD;
  font-style: italic;
  font-family: "proximaNova";
}

.sponsor-block p {
  font-size: 20px;
  color: #000;
  line-height: 26px;
  margin-bottom: 25px;
}

.sponsor-block p b {
  font-weight: 600;
}

/* ================================= Sponsor Block End ================================*/
/* ================================= HomePage Section Start ================================*/
.projects-box {
  position: relative;
  overflow: hidden;
  height: 100%;
}

.projects-box .projects-box-img {
  position: relative;
  overflow: hidden;
  border: 4px solid #f1f1f1;
  border-bottom: 0;
}

.projects-box .projects-box-img img {
  width: 100%;
  height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.2s ease-in-out;
}

.projects-box:hover .projects-box-img img {
  transform: scale(1.1);
}

.projects-box .projects-box-img h4 {
  font-family: "Noto Sans", sans-serif;
  position: absolute;
  top: 12px;
  left: 12px;
  background: #9FC645;
  font-size: 12px;
  padding: 6px 12px 5px;
  border-radius: 50px;
  color: #fff;
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: 0;
}

.projects-box .projects-box-info {
  background: #fff;
  position: relative;
  padding: 16px;
  margin: -40px 12px 0;
  height: 100%;
  transition: 0.4s ease-in-out;
}

.projects-box:hover .projects-box-info {
  margin: -80px 12px 0;
}

.projects-box .projects-box-info h1 {
  font-size: 21px;
  line-height: 24px;
  font-weight: 600;
  color: #111;
  margin-bottom: 8px;
}

.projects-box .projects-box-info p {
  font-size: 16px;
  line-height: 20px;
  color: #000;
  margin-bottom: 0;
  position: relative;
  overflow: hidden;
  height: 40px;
  transition: 0.4s ease-in-out;
}

.projects-box:hover .projects-box-info p {
  height: 80px;
}

/* ================================= HomePage Section End ================================*/
/* ================================= Global Impact Section Start ================================*/
.global-impact-section {
  padding: 90px 0;
}

.global-impact-info {
  position: relative;
  padding: 0 40px;
}

span.span-title {
  font-family: "Noto Sans", sans-serif;
  font-size: 12px;
  line-height: 16px;
  font-weight: 600;
  letter-spacing: 2.5px;
  color: #0099cd;
  text-transform: uppercase;
  position: relative;
  padding-left: 30px;
}

span.span-title:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(0, -50%);
  width: 25px;
  height: 1px;
  background: #007daa;
}

.global-impact-info h1 {
  font-size: 42px;
  line-height: 42px;
  color: #000;
  margin-bottom: 16px;
}

.global-impact-info p {
  font-size: 20px;
  color: #000;
  line-height: 26px;
  margin-bottom: 20px;
}

.global-impact-section .container {
  max-width: 98%;
}

.global-impact-box {
  position: relative;
  text-align: center;
  padding: 40px 22px;
  background: #fff;
  height: 100%;
  -webkit-clip-path: polygon(5% 0, 100% 0%, 95% 100%, 0% 100%);
          clip-path: polygon(5% 0, 100% 0%, 95% 100%, 0% 100%);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.04);
}

.col-xl-3:nth-child(odd) .global-impact-box {
  top: 10px;
}

.col-xl-3:nth-child(even) .global-impact-box {
  bottom: 10px;
}

.global-impact-box svg {
  width: 50px;
  fill: #3183c2;
  margin-bottom: 15px;
}

.global-impact-box .counter-inner {
  display: flex;
  justify-content: center;
  align-items: center;
}

.global-impact-box .counter-inner span {
  font-size: 28px;
  position: relative;
  padding-left: 6px;
}

.global-impact-box h1 {
  font-size: 37px;
  line-height: 46px;
  color: #000;
  margin-bottom: 2px;
}

.global-impact-box h5 {
  font-size: 15px;
  line-height: 18px;
  font-style: italic;
  color: #000;
  margin-bottom: 0;
  font-weight: 400;
}

.sponsor-section {
  position: relative;
  padding: 50px 0;
  margin-top: 40px;
}

.sponsor-section:before {
  content: "";
  position: absolute;
  top: 0;
  right: 180px;
  background: rgba(159, 198, 69, 0.6);
  width: 320px;
  height: 75%;
  border-bottom-left-radius: 50%;
}

a.sub-link {
  background: #9FC645;
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  padding: 9px 30px 10px;
  text-transform: uppercase;
  display: inline-block;
  border-radius: 50px;
}

a.sub-link svg {
  width: 24px;
  fill: #fff;
  margin-left: 4px;
}

/* ================================= Global Impact Section End ================================*/
/* ================================= Work Areas Section Start ================================*/
.work-area-section {
  position: relative;
  padding: 60px 0;
}

.work-area-logo ul {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  justify-content: end;
  margin-bottom: 0;
}

.work-area-logo ul li {
  flex: 0 0 auto;
  width: 16.66%;
}

.work-area-logo ul li .work-area-logo-box {
  position: relative;
  text-align: center;
  padding: 12px;
}

.work-area-logo ul li .work-area-logo-box img {
  width: 60px;
  border: 2px solid #fff;
  border-radius: 50%;
}

.work-area-logo ul li .work-area-logo-box h4 {
  font-size: 14px;
  line-height: 20px;
  color: #222;
  margin-bottom: 0;
  margin-top: 6px;
  text-transform: uppercase;
}

.work-area-title {
  position: relative;
  padding-left: 20px;
}

.work-area-title h1 {
  font-size: 40px;
  line-height: 42px;
  color: #000;
  margin-bottom: 0;
  text-align: end;
}

.work-area-title p {
  font-size: 19px;
  line-height: 24px;
  margin-bottom: 0;
  margin-top: 2px;
  color: #000;
}

/* ================================= Work Areas Section End ================================*/
/* ================================= Testimonials Section Start ================================*/
.testimonials-block {
  position: relative;
  padding: 30px;
  background: #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.04);
  height: 100%;
}

.testimonials-block-img {
  position: relative;
  display: flex;
}

.testimonials-block .testimonials-block-img img {
  width: 100px;
  height: 110px;
  -o-object-fit: cover;
     object-fit: cover;
  box-shadow: -8px 8px 0 rgba(159, 198, 69, 0.8784313725);
}

.testimonials-block .testimonials-block-info {
  position: relative;
  margin-top: 20px;
  padding-top: 12px;
  border-top: 1px solid #ededed;
}

.testimonials-block .testimonials-block-info p {
  font-size: 18.5px;
  line-height: 26px;
  color: #000;
  font-style: italic;
  margin-bottom: 0;
  margin-top: 16px;
  position: relative;
  z-index: 99;
}

.testimonials-block .testimonials-block-info p:first-child {
  margin-top: 0;
}

.testimonials-block-text {
  position: relative;
  text-align: start;
  align-self: center;
  padding-left: 16px;
}

.testimonials-block-text h3 {
  font-size: 22px;
  line-height: 26px;
  color: #000;
  font-weight: 600;
  margin-bottom: 0px;
}

.testimonials-block-text h4 {
  font-family: proximaNova;
  font-size: 14px;
  line-height: 18px;
  color: #292929;
  margin-bottom: 0;
}

.testimonials-block svg {
  position: absolute;
  top: 40px;
  right: 30px;
  width: 90px;
  z-index: 1;
  fill: #a6a6a6;
  filter: opacity(0.2);
  transform: rotate(180deg);
}

.swiper-pagination span.swiper-pagination-bullet {
  background: #0088c3;
  width: 20px;
  border-radius: 4px;
  height: 8px;
}

/* ================================= Testimonials Section End ================================*/
/*----------------------------- Admission Enquiry Start ------------------------------*/
.modal.admission-enquiry-modal {
  background: rgba(255, 255, 255, 0.8) !important;
  z-index: 9999;
}

.modal.admission-enquiry-modal.subscribePopUpModal {
  background: transparent !important;
}

.admission-enquiry-modal .modal-dialog {
  max-width: 620px;
  margin: 1.75rem auto;
}

.admission-enquiry-modal .modal-content {
  border: 0;
  border-radius: 0;
}

.admission-enquiry-modal .modal-header {
  padding: 0;
  border: 0;
}

.admission-enquiry-modal .modal-body {
  padding: 30px;
}

.admission-enquiry-modal .modal-header button.btn-close {
  position: absolute;
  top: -5px;
  right: -5px;
  filter: opacity(1);
  opacity: 1;
  z-index: 99;
  font-size: 20px;
  line-height: 20px;
  background: rgb(0, 153, 205);
  color: #fff;
  border-radius: 50%;
  border: 2px solid #fff;
  padding: 2px;
}

.admission-enquiry-modal .modal-body h4 {
  font-size: 26px;
  font-weight: 500;
  color: #222;
  margin-bottom: 25px;
  text-align: center;
  text-transform: uppercase;
  word-spacing: 2px;
}

.wrapper-newsletter svg {
  width: 300px;
  height: auto;
}

.wrapper-main-form {
  background: #fff;
  padding: 0px 30px;
}

.wrapper-main-form form .wrapper-control {
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
}

.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: 8px 0px;
  font-size: 17px;
  font-weight: 400;
  color: #111;
  height: 42px;
  border-top: 0;
  border-right: 0;
  border-left: 0;
  border-bottom: 1px solid #d5d5d5;
}

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

.wrapper-main-form form .wrapper-control select {
  color: #858585;
}

.wrapper-main-form form button.btn {
  width: 100%;
  border-radius: 0;
  font-size: 17px;
  color: #fff;
  background: #9FC645;
  padding: 8px 16px;
  text-transform: uppercase;
  border: 1px solid #95ba42;
  font-weight: 400;
  transition: 0.6s ease-in-out;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.wrapper-main-form form button.btn:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: transparent;
  border-radius: 0;
  z-index: -2;
}

.wrapper-main-form form button.btn:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: -4px;
  width: 0%;
  height: 100%;
  background-color: #9FC645;
  transition: all 0.6s ease-in-out;
  border-radius: 0;
  z-index: -1;
}

.wrapper-main-form form button.btn:hover {
  color: #fff;
}

.wrapper-main-form form button.btn:hover:before {
  width: 100%;
  left: 0;
}

.btn-check:focus + .btn,
.btn:focus,
.form-control:focus,
.btn-close:focus {
  box-shadow: none;
}

/*----------------------------- Admission Enquiry End ------------------------------*/
.admission-enquiry-modal.storyModal .modal-dialog {
  max-width: 800px;
}

.modal.admission-enquiry-modal.storyModal {
  background: rgba(255, 255, 255, 0.5) !important;
}

.admission-enquiry-modal.storyModal .modal-header {
  padding: 16px 20px 12px;
  border: 0;
  background: rgb(0, 153, 205);
  justify-content: center;
  border-radius: 0;
}

.admission-enquiry-modal.storyModal .modal-header h5 {
  font-family: "proximaNovaSemibold";
  font-size: 22px;
  line-height: 28px;
  color: #fff;
  text-transform: uppercase;
}

.storyModal-block p {
  margin-bottom: 0;
  margin-top: 12px;
  font-size: 17.5px;
  line-height: 25px;
  color: #000;
}

.admission-enquiry-modal.storyModal .modal-header button.btn-close {
  position: absolute;
  top: 22px;
  right: 30px;
  filter: opacity(1);
  opacity: 1;
  z-index: 99;
  font-size: 20px;
  line-height: 20px;
  background: rgb(0, 153, 205);
  color: #fff;
  border-radius: 50%;
  border: 2px solid #fff;
  padding: 2px;
}

/* ================================= Contact Us Page Start ================================*/
.wrapperContactInfo {
  position: relative;
  background: #242424;
  padding: 40px 20px;
  height: 100%;
}

.wrapperContactInfoBoxText h5 {
  color: #fff;
  font-size: 15px;
  line-height: 20px;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.wrapperContactInfoBlock {
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid #3f3f3f;
}

.wrapperContactInfoBlock:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}

.wrapperContactInfoBoxText {
  position: relative;
  padding-left: 12px;
}

.wrapperContactInfoBoxText p,
.wrapperContactInfoBoxText p a {
  font-size: 15px;
  line-height: 20px;
  color: #fff;
  margin-bottom: 0;
  transition: 0.4s ease-in-out;
}

.wrapperContactInfoBoxText p span {
  color: #a8a8a8;
  text-transform: uppercase;
  font-size: 85%;
  line-height: 14px;
}

.wrapperContactInfoBoxText p a:hover {
  color: #9FC645;
}

.wrapperContactInfoBoxIcon i {
  color: #9fc645;
  font-size: 22px;
  position: relative;
  top: 2px;
}

.wrapperContactInfoBoxText p b {
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
}

.irsFormsBlock .wrapper-block-info-scroll .wrapper-block-info {
  justify-content: center;
  display: flex;
  align-items: center;
}

.irsFormsBlock .wrapper-block-img {
  box-shadow: none;
}

.wrapperContactForm {
  position: relative;
  background: #fff;
  height: 100%;
  padding: 40px 30px;
}

.wrapperContactForm h2 {
  position: relative;
  font-size: 28px;
  line-height: 34px;
  margin-bottom: 20px;
  text-align: center;
  color: #222;
}

form.main-form label {
  font-size: 16px;
  line-height: 20px;
  margin-bottom: 3px;
  color: #000;
}

form.main-form label span {
  color: #e60f0f !important;
  font-size: 140%;
}

form.main-form input,
form.main-form select,
form.main-form textarea {
  font-size: 16px;
  border-radius: 0;
  padding: 8px 12px;
  height: 40px;
  color: #000;
}

::-moz-placeholder {
  color: #999;
}

::placeholder {
  color: #999;
}

form.main-form .form-select:focus,
form.main-form .form-control:focus {
  border-color: #ced4da;
  box-shadow: none;
}

form.main-form textarea {
  height: 80px;
}

button.btn.mainBtn {
  background: #9FC645;
  width: 100%;
  border-radius: 0;
  padding: 8px 16px;
  font-size: 17px;
  line-height: 23px;
  text-transform: uppercase;
  color: #fff;
  font-family: "proximaNovaSemibold";
}

.dmainBtn {
  background: #008cbc !important;
}

/* ================================= Contact Us Page End ================================*/
/* ================================= Donation Page Start ================================*/
.formSidebarBlockSticky {
  position: sticky;
  top: 72px;
  overflow-y: scroll;
  height: 90vh;
  background: #fff;
}

.formSidebarBlock {
  position: relative;
  background: white;
  padding: 20px 12px;
  height: 90vh;
}

.formSidebarBlockSticky::-webkit-scrollbar {
  width: 4px;
  border-radius: 6px;
}

.formSidebarBlockSticky::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 4px rgba(0, 0, 0, 0.3);
  border-radius: 20px;
}

.formSidebarBlockSticky::-webkit-scrollbar-thumb {
  background-color: #999;
  border-radius: 20px;
}

.accordion-button:focus {
  border-color: transparent;
  box-shadow: none;
}

.formSidebarBlock .accordion-item {
  border-radius: 0;
  margin-bottom: 5px;
  border: 1px solid #ebebeb;
}

.formSidebarBlock .accordion-item h2 button.accordion-button {
  font-size: 14px;
  line-height: 19px;
  padding: 10px 12px;
  color: #fff;
  background: #0099CD;
  border-radius: 0;
}

.formSidebarBlock .accordion-item h2 button.accordion-button::after {
  width: 0.9rem;
  height: 0.9rem;
  background-size: 0.9rem;
  filter: invert(1);
}

.formSidebarBlock .accordion-item .accordion-body {
  padding: 8px 8px;
  background: #fff;
}

.formSidebarBlock .accordion-item .accordion-body ul {
  margin-bottom: 0;
}

.formSidebarBlock .accordion-item .accordion-body ul li {
  position: relative;
  padding-left: 14px;
  font-size: 13px;
  line-height: 16px;
  color: #000;
  margin-bottom: 6px;
  font-weight: 500;
}

.formSidebarBlock .accordion-item .accordion-body ul li i {
  position: absolute;
  left: 1px;
  top: 6px;
  color: #0088c3;
  font-size: 45%;
}

.formSidebarBlockNote p {
  font-size: 14px;
  line-height: 18px;
  color: #222;
  margin-bottom: 0;
}

.formSidebarBlockNote {
  position: relative;
  margin-top: 10px;
  padding: 10px 60px 0 4px;
  border-top: 1px solid #e8e8e8;
}

.formSidebarBlockNote:first-child {
  border-top: 0;
}

h3.formTitle {
  font-size: 17px;
  line-height: 24px;
  margin-bottom: 0;
  border-bottom: 1px solid #dbdbdb;
  padding-bottom: 2px;
  color: #0099CD;
  text-transform: uppercase;
}

h3.formTitle small {
  color: #222;
  font-style: italic;
  font-size: 80%;
}

h3.formTitle small i {
  font-size: 12px;
}

form.main-form input.form-check-input[type=checkbox],
form.main-form input.form-check-input[type=radio] {
  height: 16px !important;
  width: 16px !important;
  border-radius: 2px;
  padding: 0;
}

form.main-form input.form-check-input[type=checkbox] {
  border-radius: 2px;
}

form.main-form input.form-check-input[type=radio] {
  border-radius: 50%;
}

.form-check-input:focus {
  border-color: #a6a6a6;
  box-shadow: none;
}

.mainFormSection {
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
  background: #f7f7f7;
  padding: 16px;
}

.file-drop-area {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 100%;
  padding: 25px;
  border: 1px dashed rgb(163, 163, 163);
  border-radius: 3px;
  transition: 0.2s;
  background: #fff;
}

.file-drop-area .choose-file-button {
  flex-shrink: 0;
  background-color: #f7f7f7;
  border: 1px solid rgba(230, 230, 230, 0.99);
  border-radius: 3px;
  padding: 8px 15px;
  margin-right: 10px;
  font-size: 12px;
  text-transform: uppercase;
}

.file-drop-area .file-message {
  font-size: small;
  font-weight: 300;
  line-height: 1.4;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.file-drop-area .file-input {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  cursor: pointer;
}

/* ================================= Donation Page End ================================*/
/* ================================= FAQ Page Start ================================*/
.faqAccordion {
  position: relative;
  padding: 40px 30px;
  background: #fff;
}

.faqAccordion .accordion-item {
  border: 1px solid #ebebeb;
  border-radius: 0;
  margin-bottom: 6px;
}

.faqAccordion h2 button.accordion-button {
  background: #f7f7f7;
  color: #0099CD;
  font-size: 19px;
  line-height: 24px;
  border-radius: 0;
  padding: 12px 16px 10px;
}

.faqAccordion .accordion-body {
  padding: 12px 16px;
  background: #fff;
}

.faqAccordion .accordion-body p {
  font-size: 17px;
  line-height: 22px;
  color: #000;
  margin-bottom: 0;
}

.faqAccordion .accordion-body ul li,
.faqAccordion .accordion-body ul {
  list-style-type: disc;
}

.faqAccordion .accordion-body ul li {
  margin-bottom: 6px;
  font-size: 17px;
  line-height: 25px;
}

.faqAccordion .accordion-body ul {
  padding-inline-start: 20px;
  margin-bottom: 0;
  margin-top: 12px;
}

/* ================================= FAQ Page End ================================*/
/* ================================= Main Table Start ================================*/
.main-table table.table thead tr th,
.main-table table.table tbody tr td {
  font-size: 16px;
  line-height: 22px;
  color: #000;
  padding: 8px 16px;
}

.main-table table.table thead tr th {
  background: #f7f7f7;
}

.main-table table.table tbody tr td {
  background: #fff;
}

/* ================================= Main Table End ================================*/
/* ================================= Get in Touch Section Start ================================*/
.get-in-touch {
  position: relative;
  padding: 30px 0;
  background: #008cbc;
}

.get-in-touch-block {
  position: relative;
  height: 100%;
  padding: 16px 8px;
  background: #0099CD;
  text-align: center;
  border: 0.5px solid #0099CD;
  transition: 0.6s ease-in-out;
}

.get-in-touch-block:hover {
  background: #008cbc;
  border: 0.5px solid #0099cd;
}

.get-in-touch-block svg {
  width: 45px;
  fill: #fff;
}

.get-in-touch-block:hover svg {
  animation: shake 1s infinite;
}

.get-in-touch-block h4 {
  margin-bottom: 0;
  color: #fff;
  font-size: 23px;
  margin-top: 8px;
  font-family: proximaNovaSemibold;
}

/* ================================= Get in Touch Section End ================================*/
/* ================================= Bottom Gallery Start ================================*/
.bottom-gallery {
  position: relative;
  overflow: hidden;
}

.footerGallery-block {
  position: relative;
  overflow: hidden;
  padding: 4px 3px;
  transition: 0.4s ease-in-out;
}

.footerGallery-block:hover {
  filter: blur(1px);
}

.footerGallery-block a {
  cursor: zoom-in;
}

.footerGallery-block img {
  width: 100%;
  height: 350px;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.4s ease-in-out;
}

/* ================================= Bottom Gallery End ================================*/
/* ================================= Newsletter Page Start ================================*/
.newsletter-block {
  position: relative;
  padding: 25px 16px;
  background: #fff;
  height: 100%;
  text-align: center;
  transition: 0.4s ease-in-out;
  box-shadow: -4px 4px 0 rgba(231, 231, 231, 0.88);
}

.newsletter-block:hover {
  filter: opacity(0.8);
  box-shadow: -4px 4px 0 rgba(159, 198, 69, 0.8784313725);
  transform: translateY(-4px);
}

.newsletter-block svg {
  width: 48px;
  fill: #0099CD;
  margin-bottom: 12px;
}

.newsletter-block h2 {
  font-size: 22px;
  color: #222;
  margin-bottom: 2px;
}

.newsletter-block h3 {
  font-size: 20px;
  color: #000;
  margin-bottom: 0;
  font-family: proximaNova;
}

/* ================================= Newsletter Page End ================================*/
/* ================================= Press Releases Page Start ================================*/
.pressRelease-block {
  position: relative;
  background: #fff;
  padding: 30px 20px;
  height: 100%;
  transition: 0.4s ease-in-out;
  box-shadow: -5px 5px 0 rgba(231, 231, 231, 0.88);
}

.pressRelease-block:hover {
  filter: opacity(0.9);
  box-shadow: -5px 5px 0 rgba(159, 198, 69, 0.8784313725);
  transform: translateY(-4px);
}

.pressRelease-block h2 {
  font-size: 20px;
  line-height: 24px;
  color: #222;
  margin-bottom: 0px;
}

.pressRelease-block .pressText p {
  font-size: 17px;
  line-height: 23px;
  color: #222;
  margin-bottom: 0;
  margin-top: 12px;
}

.pressRelease-block .pressText p:first-child {
  margin-top: 0;
}

.pressRelease-block span.date {
  color: #0099CD;
  font-size: 15px;
  line-height: 20px;
  margin-bottom: 5px;
  display: block;
}

.pressRelease-block span.date i {
  font-size: 90%;
  position: relative;
  top: -1px;
}

/* ================================= Press Releases Page End ================================*/
/* ================================= News Events Page Start ================================*/
.newsEventsImg {
  position: relative;
}

.wrapper-box .newsEventsImg {
  height: 450px;
  max-height: 100%;
  box-shadow: -16px 16px 0 rgba(159, 198, 69, 0.8784313725);
}

.wrapper-box .newsEventsImg img {
  width: 100% !important;
  height: 100% !important;
  -o-object-fit: cover;
  object-fit: cover;
  border: 6px solid #fff;
}

.eventDetailsPage .wrapper-box .newsEventsImg img {
  width: 100% !important;
  height: 100% !important;
  border-color: #fff;
}

.wrapper-box.eventBox {
  border: 1px solid #f1f1f1;
  padding: 50px 40px;
  background: #fff;
}

.eventDetailsPage .wrapper-box .newsEventsImg {
  box-shadow: none !important;
  width: 50% !important;
}

.eventDetailsPage .newsEvents-block1-h {
  height: 100% !important;
  padding: 0;
}

.eventDetailsPage .wrapper-box .newsEventsDetails {
  height: 100% !important;
  padding: 0;
}

.eventDetailsPage .news-pointer p {
  padding-right: 20px;
}

.wrapper-box .newsEventsDetails {
  height: 400px !important;
  max-height: 100%;
  overflow-y: scroll;
  background: #fff;
  padding: 0px 8px 0px 0px !important;
}

.wrapper-box .newsEventsDetails::-webkit-scrollbar {
  width: 4px;
  border-radius: 6px;
}

.wrapper-box .newsEventsDetails::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 4px rgba(0, 0, 0, 0);
  border-radius: 20px;
}

.wrapper-box .newsEventsDetails::-webkit-scrollbar-thumb {
  background-color: #ddd;
  border-radius: 20px;
}

.newsEventsImg img {
  width: 100%;
  height: 87vh;
  -o-object-fit: cover;
     object-fit: cover;
}

.newsEvent-title {
  position: relative;
  padding: 65px 20px 45px;
  background: #f1f1f1;
}

h1.newsTitle {
  font-size: 30px;
  line-height: 36px;
  color: #222;
  text-align: center;
  margin-bottom: 0;
}

.eventTitle h1.newsTitle {
  font-size: 38px;
  line-height: 51px;
}

.wrapper-section-event .wrapper-block-img, .wrapper-section-event .wrapper-block-img img {
  height: 100% !important;
  min-height: 100%;
  box-shadow: -6px 6px 0 rgba(159, 198, 69, 0.8784313725);
}

.wrapper-section-event .wrapper-block-info-scroll {
  height: 100% !important;
  padding: 25px 25px;
  overflow: hidden;
}

.wrapper-section-event .wrapper-block-info {
  height: 100% !important;
  min-height: 100% !important;
}

.wrapper-section-event h1.main-head:before {
  bottom: -3px;
  width: 60px;
  height: 4px;
}

.eventDetailsPage .news-pointer p br {
  display: none;
}

.wrapper-section-event h1.main-head {
  font-size: 24px;
  line-height: 31px;
  margin-bottom: 25px;
}

.who-we-are-mission .wrapper-box {
  background-color: #fff;
}

.eventbtn a {
  font-size: 17px;
  color: #008cbc;
  font-weight: 300;
}

.eventbtn a i {
  font-size: 80%;
}

.news-para p {
  margin-bottom: 0;
  margin-top: 16px;
  font-size: 19px;
  line-height: 26px;
  color: #000;
}

.news-para p:first-child {
  margin-top: 0;
}

.newsEventsDetails {
  position: relative;
  padding: 70px 120px 70px 40px;
}

.news-pointer {
  position: relative;
  margin-bottom: 16px;
  border-bottom: 1px solid #d3d3d3;
  padding-bottom: 16px;
}

.news-pointer p {
  position: relative;
  font-size: 16px;
  line-height: 22px;
  margin-bottom: 0;
  margin-top: 6px;
  color: #000;
  font-weight: 600;
  padding-left: 20px;
}

.news-pointer p i {
  color: #008cbc;
  position: absolute;
  top: 4px;
  left: 0;
  font-size: 90%;
}

a.a2a_button_facebook span.a2a_svg {
  background-color: #4267B2 !important;
}

a.a2a_button_twitter span.a2a_svg {
  background-color: #1DA1F2 !important;
}

a.a2a_button_linkedin span.a2a_svg {
  background-color: #0A66C2 !important;
}

span.a2a_svg {
  border-radius: 0 !important;
  margin: 0 3px !important;
  padding: 4px !important;
}

.innerNewsList .newsEvents-block-img img {
  height: 100%;
}

.innerNewsList .col-xl-3 {
  width: 25%;
}

.innerNewsList1 {
  background: #242424;
}

.innerNewsList .newsEvents-block-info {
  padding: 12px;
}

.innerNewsList .newsEvents-block-info h1 {
  font-size: 18px;
  line-height: 20px;
  position: relative;
}

.innerNewsList .newsEvents-block-info-news {
  padding: 15px 12px;
  background: #fff;
  height: 70px;
}

.innerNewsList .newsEvents-block-info-news h1 {
  font-size: 16px;
  line-height: 21px;
  position: relative;
  color: #000000;
  font-family: "proximaNova";
  margin-bottom: 0;
  font-weight: 600;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-align: center;
}

.innerNewsList .newsEvents-block-img span.date-text {
  font-size: 26px;
  line-height: 28px;
  top: 12px;
  right: 12px;
}

.innerNewsList .newsEvents-block-info p {
  font-size: 15px;
  line-height: 18px;
}

.innerNewsList .newsEvents-block:hover .newsEvents-block-text {
  height: 65px;
}

.innerNewsList .newsEvents-block-img span.news-category {
  top: 12px;
  padding: 5px 12px 5px 8px;
  font-size: 13px;
  line-height: 16px;
}

ul.inner-main-ul {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 0;
}

ul.inner-main-ul li {
  color: #000;
  font-size: 20px;
  line-height: 26px;
  font-weight: 400;
  margin-bottom: 0;
  margin-top: 20px;
  padding: 16px 8px;
  flex: 0 0 auto;
  width: 33.33%;
  border: 1px solid #e9e9e9;
}

ul.inner-main-ul li span {
  display: block;
  color: #d5d5d5;
  font-size: 38px;
  line-height: 42px;
  margin-bottom: 6px;
  font-family: "proximaNovaBold";
}

/* ================================= News Events Page End ================================*/
/* ================================= Main Footer Start ================================*/
footer.main-footer {
  position: relative;
  background: #060606;
  padding: 55px 0 20px;
}

.footer-info .footer-logo a img {
  width: 300px;
  filter: opacity(0.8);
}

.footer-logo {
  padding-right: 40px;
}

.footer-info .footer-logo .footer-logo-info h4 {
  color: #fff;
  font-size: 22px;
  margin-bottom: 0;
  text-transform: uppercase;
  font-weight: 600;
  display: inline-block;
}

.footer-info .footer-logo .footer-logo-info h4 small {
  font-size: 50%;
  font-weight: 300;
  line-height: 18px;
  letter-spacing: 1px;
  text-align: center;
  position: relative;
}

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

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

a.footer-btn {
  display: inline-block;
  background: #5f7824;
  color: #fff;
  padding: 10px 14px;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 400;
}

a.footer-btn svg {
  fill: #fff;
  width: 24px;
  margin-right: 4px;
}

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

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

.footer-info {
  position: relative;
}

.footer-contact {
  position: relative;
}

.footer-info ul li a {
  position: relative;
  font-size: 15px;
  line-height: 20px;
  padding: 6px 16px;
  background: #111;
  color: #cbcbcb;
  transition: 0.6s ease-in-out;
  margin: 3px 6px;
  border-radius: 30px;
  display: inline-block;
}

.footer-info ul li a i {
  position: absolute;
  top: 3px;
  left: 0;
  color: #bdbdbd;
}

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

.footer-info p {
  font-size: 15px;
  margin-bottom: 0;
  margin-top: 20px;
  line-height: 21px;
  color: #c1c1c1;
  font-weight: 300;
  font-style: italic;
}

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

.footer-info h1,
.footer-contact h1 {
  position: relative;
  font-size: 18px;
  text-transform: uppercase;
  color: #919191;
  margin-top: 30px;
  margin-bottom: 10px;
}

ol.social-media {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 0;
}

ol.social-media li a {
  display: block;
  color: #fff;
  position: relative;
  padding: 5px 12px;
}

ol.social-media li a i {
  font-size: 18px;
}

ol.social-media li a svg {
  width: 18px;
  fill: #fff;
  position: relative;
}

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

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

.footer-location ul li {
  font-size: 15px;
  line-height: 20px;
  color: #c1c1c1;
  font-weight: 300;
  transition: 0.6s ease-in-out;
  margin-bottom: 2px;
}

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

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

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

.footer-location h2 i {
  color: #bdbdbd;
  font-size: 90%;
  margin-right: 3px;
  position: relative;
  top: -1px;
}

.footer-copyright {
  position: relative;
  background: #060606;
  padding: 8px 0;
  border-top: 1px solid #111;
}

.footer-copyright ul {
  margin-bottom: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: end;
}

.footer-copyright ul li {
  border-left: 2px solid #404040;
  margin-left: 10px;
  padding-left: 10px;
}

.footer-copyright ul li:first-child {
  border-left: 0;
  margin-left: 0;
  padding-left: 0;
}

.footer-copyright p {
  margin-bottom: 0;
  font-size: 13.5px;
  line-height: 20px;
  color: #c6c6c6;
  transition: 0.6s ease-in-out;
}

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

ol.medal-block {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 25px;
}

ol.medal-block li img {
  width: 65px;
  margin: 0 6px;
}

/* ================================= Main Footer End ================================*/
/* ================================= Inner Page Start ================================*/
.wrapper-section {
  position: relative;
}

.inner-banner {
  position: relative;
  overflow: hidden;
}

.inner-banner,
.inner-banner img {
  height: 91vh;
  background: #222;
}

.inner-banner img.blackbackground {
  background: #222 !important;
}

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

.inner-banner.inner-wo-banner:before {
  height: 100%;
}

.inner-banner img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  animation: pulse2 1s infinite;
  animation-duration: 1s;
  animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  animation-delay: 0s;
  animation-direction: alternate;
  animation-iteration-count: 1;
}

.inner-banner.inner-wo-banner,
.inner-banner.inner-wo-banner img {
  height: 260px;
  background: rgb(5, 109, 154);
}

@keyframes pulse2 {
  0% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
.inner-banner .inner-banner-content {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 99;
  width: 100%;
  padding: 50px 0 25px;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.6), transparent);
}

.inner-banner.inner-wo-banner .inner-banner-content {
  padding: 50px 0 20px;
}

.inner-banner .inner-banner-content .inner-banner-text {
  display: flex;
  justify-content: space-between;
}

.inner-banner .inner-banner-content h1 {
  color: #fff;
  font-size: 48px;
  line-height: 52px;
  margin-bottom: 0;
}

.inner-banner.inner-wo-banner .inner-banner-content h1 {
  font-size: 42px;
  line-height: 46px;
}

.inner-banner .inner-banner-content .inner-banner-text h1 small {
  font-size: 50%;
  line-height: 28px;
  font-family: proximaNova;
  margin-top: 6px;
}

.main-breadcrumb {
  position: relative;
  padding: 12px 0;
}

.main-breadcrumb nav {
  align-self: end;
}

.main-breadcrumb nav ol.breadcrumb {
  margin-bottom: 0;
}

.main-breadcrumb nav ol.breadcrumb li.breadcrumb-item {
  font-family: "proximaNovaSemibold";
  color: #666;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
}

.main-breadcrumb nav ol.breadcrumb li.breadcrumb-item a {
  color: #222;
  transition: 0.4s ease-in-out;
}

.main-breadcrumb nav ol.breadcrumb li.breadcrumb-item a:hover {
  color: #111;
}

p.inner-main-para,
div.inner-main-para p {
  color: #000;
  font-size: 21.5px;
  line-height: 30px;
  font-weight: 400;
  margin-bottom: 0;
  margin-top: 20px;
}

p.inner-main-para:first-child,
div.inner-main-para p:first-child {
  margin-top: 0;
}

.inner-main-para .fundrise-ul li {
  font-size: 21.5px;
  line-height: 30px;
  font-weight: 400;
  margin-bottom: 0;
}

.main-icon-img {
  position: relative;
  width: 200px;
  margin: 0 auto 12px;
  text-align: center;
  opacity: 0.4;
}

.main-icon-img img.icon-img {
  width: 60px;
  filter: opacity(0.6);
}

span#amount_display {
  color: #0099CD !important;
}

.main-icon-img:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
  background: linear-gradient(-90deg, rgba(159, 198, 69, 0.6156862745), transparent);
  width: 65px;
  height: 2px;
}

.main-icon-img:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(0, -50%);
  background: linear-gradient(90deg, #9fc645, transparent);
  width: 65px;
  height: 2px;
}

.wrapper-sticky {
  position: sticky;
  top: 110px;
}

.wrapper-block-info.wrapper-block-info-h {
  max-height: 100%;
  overflow: hidden;
}

.wrapper-block-info .main-text-h .main-text .work-area-section .work-area-logo ul li .work-area-logo-box {
  padding: 0px;
}

.wrapper-block-info .main-text-h .main-text .work-area-section .work-area-logo ul li .work-area-logo-box h4 {
  font-size: 13px;
}

.wrapper-block-info.wrapper-block-info-h .main-text {
  margin: 0 22px 0px 0px !important;
}

.wrapper-block-info.wrapper-block-info-h div.main-text p {
  margin: 0 22px 25px 0px !important;
}

.wrapper-section-impact .wrapper-block-info.wrapper-block-info-h .main-text-h {
  height: 200px;
  margin-bottom: 10px;
  margin-top: 10px;
}

.wrapper-block-info.wrapper-block-info-h .main-text-h {
  height: 200px;
  overflow-y: hidden;
  transition: 0.4s ease-in-out;
}

.wrapper-block-info.wrapper-block-info-h div.main-text {
  height: 100%;
  margin: 0 !important;
}

.who-we-are-mission .wrapper-block-info-scroll {
  height: 100%;
}

.who-we-are-mission .wrapper-block-info.wrapper-block-info-h {
  height: 100%;
  max-height: 100%;
  overflow: hidden;
}

.who-we-are-mission .wrapper-block-img {
  height: 665px !important;
  box-shadow: none !important;
}

.who-we-are-mission .wrapper-block-img img {
  height: 100% !important;
}

.who-we-are-mission .wrapper-block-info.wrapper-block-info-h .main-text-h {
  height: 100%;
  overflow: hidden;
  transition: 0.4s ease-in-out;
}

.who-we-are-mission .wrapper-block-info.wrapper-block-info-h .main-text-h:hover {
  overflow-y: hidden;
}

.wrapper-block-info.wrapper-block-info-h .main-text-h {
  overflow-y: scroll;
}

.wrapper-block-info.wrapper-block-info-h .main-text-h::-webkit-scrollbar {
  width: 4px;
  border-radius: 6px;
}

.wrapper-block-info.wrapper-block-info-h .main-text-h::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 4px rgba(0, 0, 0, 0);
  border-radius: 20px;
}

.wrapper-block-info.wrapper-block-info-h .main-text-h::-webkit-scrollbar-thumb {
  background-color: #ddd;
  border-radius: 20px;
}

/*.wrapper-block-info.wrapper-block-info-h div .main-text-h::-webkit-scrollbar {
  width: 0px;
}

.wrapper-block-info.wrapper-block-info-h .main-text-h::-webkit-scrollbar {
  width: 3px;

}

.wrapper-block-info.wrapper-block-info-h .main-text-h::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px grey;
  border-radius: 10px;
}

.wrapper-block-info.wrapper-block-info-h .main-text-h::-webkit-scrollbar-thumb {
  background: #d3d1d1;
  border-radius: 10px;
}

.wrapper-block-info.wrapper-block-info-h .main-text-h::-webkit-scrollbar-thumb {
  background: #f1f1f1;
}*/
.wrapper-block-info {
  position: relative;
  background: #fff;
  z-index: 99;
  margin: 0;
  padding: 40px;
  height: 100%;
  min-height: 350px;
}

.wrapper-sectionNew {
  background-color: #fff;
}

.wrapper-block-info span.date {
  font-size: 16px;
  line-height: 22px;
  color: #9f9f9f;
  font-family: "proximaNovaSemibold";
}

.wrapper-block-info span.date i {
  color: #b8b8b8;
}

.wrapper-block-img {
  position: relative;
  box-shadow: -16px 16px 0 rgba(159, 198, 69, 0.8784313725);
}

.wrapper-block-img img {
  height: 100%;
  background: #222;
  -o-object-position: center;
     object-position: center;
}

.wrapper-block-img {
  height: 420px;
}

.wrapper-block-img img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border: 6px solid #fff;
}

.wrapper-block-img span.program-country {
  position: absolute;
  top: 20px;
  left: 20px;
  background: #fff;
  color: #0099CD;
  padding: 6px 12px 4px;
  border-radius: 20px;
  text-transform: uppercase;
  font-size: 14px;
  line-height: 20px;
  font-family: proximaNovaSemibold;
  box-shadow: 0 3px 16px rgba(0, 0, 0, 0.05);
}

.wrapper-box2 .wrapper-block-img span.program-country {
  right: 20px;
  left: auto;
}

.wrapper-box2 .wrapper-block-img {
  box-shadow: 16px 16px 0 rgba(159, 198, 69, 0.8784313725);
}

span.program-category {
  display: inline-block;
  background: #0099CD;
  color: #fff;
  padding: 5px 12px 3.5px;
  border-radius: 50px;
  font-size: 13px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

h1.main-head {
  position: relative;
  color: #000;
  font-size: 30px;
  line-height: 36px;
  margin-bottom: 38px;
}

h1.main-head:before {
  content: "";
  position: absolute;
  bottom: -7px;
  left: 0;
  width: 70px;
  height: 5px;
  background: #9fc645;
}

p.main-text,
div.main-text p {
  margin-bottom: 0;
  margin-top: 16px;
  font-size: 19px;
  line-height: 28px;
  color: #000;
}

p.main-text:first-child,
div.main-text p:first-child {
  margin-top: 0;
}

.program-btn {
  position: relative;
  margin-top: 30px;
}

.program-btn a.btn1 {
  display: inline-block;
  background: #9FC645;
  color: #fff;
  font-size: 18px;
  padding: 9px 30px;
  text-transform: uppercase;
  margin: 0 8px;
  transition: 0.6s ease-in-out;
}

.program-btn a.btn1:focus-visible {
  outline-offset: 0;
  outline: none;
}

.our-team-block {
  position: relative;
}

ul.our-team-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

ul.our-team-row li {
  flex: 0 0 auto;
  width: 25%;
}

ul.our-team-row li .our-team-box {
  position: relative;
  padding: 16px 10px;
}

ul.our-team-row li .our-team-box .our-team-box-img {
  position: relative;
  overflow: hidden;
}

ul.our-team-row li .our-team-box .our-team-box-img img {
  width: 100%;
  height: 250px;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.3s ease-in-out;
}

ul.our-team-row li .our-team-box:hover .our-team-box-img img {
  transform: scale(1.1);
}

ul.our-team-row li .our-team-box .our-team-box-img i {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 20px;
  z-index: 9;
  color: #fff;
}

ul.our-team-row li .our-team-box .our-team-box-info {
  position: relative;
  padding: 16px 0 0 0;
}

ul.our-team-row li .our-team-box .our-team-box-info h4 {
  color: #000;
  margin-bottom: 0;
  font-size: 19px;
  line-height: 22px;
}

ul.our-team-row li .our-team-box .our-team-box-info h4 small {
  font-family: proximaNova;
  font-size: 82%;
  color: #333;
  line-height: 15px;
  margin-top: 3px;
  font-style: italic;
}

.our-team-block ul.nav.nav-tabs {
  justify-content: space-between;
  border-bottom: 1px solid #ebebeb;
  width: calc(100% - 16px);
  margin: 0 auto 20px;
}

.our-team-block.galleryTabsBlock ul.nav.nav-tabs {
  width: calc(100% - 0px);
}

.our-team-block.galleryTabsBlock ul.nav.nav-tabs li.nav-item {
  width: 50%;
}

.our-team-block.galleryTabsBlock ul.nav.nav-tabs li.nav-item button.nav-link {
  width: 100%;
}

.our-team-block.galleryTabsBlock .tab-content {
  padding: 20px 0 0;
}

.our-team-block ul.nav.nav-tabs li.nav-item button.nav-link.active {
  color: #0099CD;
  border-bottom: 3px solid #0099CD;
}

.our-team-block ul.nav.nav-tabs li.nav-item button.nav-link.active:before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -14px;
  transform: translate(-50%, 0);
  width: 0;
  height: 0;
  z-index: 99;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-top: 12px solid #0099cd;
}

.our-team-block ul.nav.nav-tabs li.nav-item button.nav-link {
  position: relative;
  border: 0;
  font-size: 18px;
  line-height: 24px;
  color: rgba(0, 153, 205, 0.4901960784);
  text-transform: uppercase;
  font-family: proximaNovaSemibold;
  padding: 10px 20px;
  border-radius: 0;
}

.our-team-block ul.nav.nav-tabs li.nav-item button.nav-link i {
  margin-bottom: 8px;
}

.our-team-block .tab-content {
  position: relative;
  padding: 25px 0 20px;
}

.our-team-block .tab-content h2 {
  font-size: 26px;
  line-height: 34px;
  color: #000;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.modal.profile-modal {
  background: rgba(255, 255, 255, 0.7);
  z-index: 9999;
}

.modal.profile-modal .modal-content {
  border: 0;
  border-radius: 0;
}

.modal.profile-modal .modal-content .modal-header {
  padding: 0;
  border: 0;
}

.modal.profile-modal .modal-content .modal-header button.btn-close {
  position: absolute;
  top: -5px;
  right: -5px;
  filter: opacity(1);
  opacity: 1;
  z-index: 99;
  font-size: 20px;
  line-height: 20px;
  background: rgb(0, 153, 205);
  color: #fff;
  border-radius: 50%;
  border: 2px solid #fff;
  padding: 2px;
}

.modal.profile-modal .modal-content .modal-body {
  padding: 35px 25px;
}

.modal-body-award .modal-profile-details-info {
  height: 270px !important;
}

.modal-body-award .modal-profile-details-img img {
  width: 185px !important;
  height: 185px !important;
}

.modal.profile-modal .modal-content .modal-body .modal-profile-details-img {
  position: sticky;
  top: 0;
  text-align: center;
}

.modal.profile-modal .modal-content .modal-body .modal-profile-details-img img {
  width: 220px;
  height: 250px;
  -o-object-fit: cover;
     object-fit: cover;
}

.modal.profile-modal .modal-content .modal-body .profile-caption {
  position: relative;
  padding: 12px 20px;
}

.modal.profile-modal .modal-content .modal-body .profile-caption h4 {
  font-size: 20px;
  line-height: 24px;
  margin-bottom: 0;
  color: #000;
  text-transform: capitalize;
}

.modal.profile-modal .modal-content .modal-body .profile-caption h4 small {
  font-family: proximaNova;
  font-size: 78%;
  line-height: 20px;
  color: #353535;
  text-transform: none;
  margin-top: 2px;
}

.modal.profile-modal .modal-content .modal-body .modal-profile-details-info {
  position: relative;
  overflow-y: scroll;
  height: 380px;
  padding-right: 20px;
}

.modal-body-award .modal-profile-details-info::-webkit-scrollbar-track {
  box-shadow: none !important;
}

.modal.profile-modal .modal-content .modal-body .modal-profile-details-info::-webkit-scrollbar {
  width: 10px;
  border-radius: 6px;
}

.modal.profile-modal .modal-content .modal-body .modal-profile-details-info::-webkit-scrollbar-track {
  box-shadow: inset 0 0 4px rgba(0, 0, 0, 0.3);
  border-radius: 20px;
}

.modal.profile-modal .modal-content .modal-body .modal-profile-details-info::-webkit-scrollbar-thumb {
  background-color: #b8b8b8;
  border-radius: 20px;
}

.modal.profile-modal .modal-content .modal-body .modal-profile-details-info .paraInfo p {
  margin-bottom: 0;
  margin-top: 16px;
  font-size: 18px;
  line-height: 24px;
  color: #000;
}

.modal.profile-modal .modal-content .modal-body .modal-profile-details-info .paraInfo p:nth-child(1) {
  margin-top: 0;
}

.inner-quotes-block {
  position: relative;
}

.faq-fundrise li {
  margin-bottom: 0px !important;
}

.inner-quotes-block i,
.inner-quotes-block svg {
  font-size: 38px;
  width: 38px;
  color: rgba(159, 198, 69, 0.4588235294);
  fill: rgba(159, 198, 69, 0.4588235294);
}

p.inner-main-para2 {
  font-size: 28px !important;
  line-height: 36px !important;
  color: #000000 !important;
  margin-bottom: 0 !important;
  margin-top: 30px;
}

p.inner-main-para2 span {
  font-family: rageIttalic;
  font-size: 40px;
  color: #2c2c2c;
}

.main-profile-caption {
  position: relative;
  margin-top: 40px;
}

.main-profile-caption h4 {
  font-size: 22px;
  line-height: 28px;
  color: #000;
  margin-bottom: 0;
}

.main-profile-caption h4 small {
  font-family: proximaNova;
  font-size: 75%;
  line-height: 20px;
  color: #424242;
}

.wrapper-info {
  position: relative;
  padding: 70px 90px 70px 40px;
}

.wrapper-info2 {
  position: relative;
  padding: 70px 40px 70px 90px;
}

.wrapper-img img {
  width: 100%;
  height: 87vh;
  -o-object-fit: cover;
     object-fit: cover;
}

.wrapper-box .wrapper-main-sticky {
  position: sticky;
  top: 110px !important;
}

.wrapper-main-sticky {
  position: sticky;
  top: 80px;
}

.wrapper-contact-details2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: end;
}

.wrapper-contact-details {
  position: relative;
  margin-top: 80px;
}

.wrapper-contact-details-box {
  display: flex;
  background: #fff;
  padding: 30px 20px 30px 20px;
  position: relative;
  border-left: 2px solid #f1f1f1;
  flex-direction: column;
  align-items: center;
}

.wrapper-contact-details-box svg {
  fill: #d1d1d1;
  width: 30px;
  padding-bottom: 8px;
}

.wrapper-contact-details-box i.icons {
  font-size: 40px;
  color: #d1d1d1;
  padding-bottom: 8px;
}

.wrapper-contact-details-box .wrapper-contact-details-box-info {
  display: inline-grid;
  text-align: center;
}

.wrapper-contact-details-box .wrapper-contact-details-box-info span {
  text-transform: uppercase;
  font-size: 14px;
  line-height: 16px;
  color: #000;
}

.wrapper-contact-details-box .wrapper-contact-details-box-info a,
.wrapper-contact-details-box .wrapper-contact-details-box-info span {
  font-size: 18px;
  line-height: 30px;
  color: #323232;
  font-family: proximaNovaSemibold;
  transition: 0.4s ease-in-out;
}

.wrapper-contact-details-box .wrapper-contact-details-box-info a:hover {
  color: #0099CD;
}

h2.tiny-text {
  position: relative;
  font-size: 28px;
  line-height: 32px;
  color: #000;
  margin-bottom: 16px;
  padding-left: 60px;
}

h3.tiny-text1 {
  position: relative;
  font-size: 38px;
  line-height: 32px;
  color: #000;
  margin-bottom: 0px;
  font-weight: 900;
}

h2.tiny-text:before {
  content: "";
  position: absolute;
  top: 13px;
  left: 0;
  background: #c1c1c1;
  width: 50px;
  height: 3px;
}

.wrapper-contact-details1 ul {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 0;
}

.wrapper-contact-details1 ul li .awards-block {
  position: relative;
  margin-right: 12px;
}

.wrapper-contact-details1 ul li:last-child .awards-block {
  margin-right: 0;
}

.wrapper-contact-details1 ul li .awards-block h4 {
  font-family: proximaNovaBold;
  color: #0099CD;
  display: flex;
  align-self: center;
  background: #fff;
  padding: 25px 20px;
  border: 1px solid #eeeeee;
  font-size: 30px;
  margin-bottom: 0;
  align-items: center;
}

.wrapper-contact-details1 ul li .awards-block h4 small {
  font-size: 60%;
  line-height: 20px;
  padding-left: 16px;
  color: #000;
  font-family: "proximaNovaSemibold";
}

.wrapper-contact-details1 ul li .awards-block img {
  width: 220px;
  padding: 8px;
  background: #fff;
}

.mission-block {
  position: relative;
  padding: 40px 30px;
  background: #fff;
  height: 100%;
}

.mission-block svg {
  width: 70px;
  fill: #0099cd;
  margin-bottom: 16px;
}

.mission-block-svg span.fade-count {
  position: absolute;
  right: 30px;
  top: 40px;
  font-family: proximaNovaSemibold;
  font-size: 75px;
  line-height: 75px;
  color: #000000;
  text-shadow: 2px 2px black;
  opacity: 0.08;
}

.mission-block-info {
  position: relative;
}

.mission-block-info h2 {
  font-size: 24px;
  line-height: 26px;
  margin-bottom: 8px;
  color: #000;
}

.mission-block-info p {
  font-size: 18px;
  line-height: 24px;
  color: #000;
  margin-bottom: 0;
  margin-top: 12px;
}

.mission-block-info p:first-child {
  margin-top: 0;
}

h4.values-text {
  font-size: 42px;
  line-height: 46px;
  color: #4d4d4d;
  margin-bottom: 30px;
  font-family: proximaNova;
}

.photo-gallery-block {
  position: relative;
}

.photo-gallery-block-img {
  position: relative;
  overflow: hidden;
  box-shadow: -8px 8px 0 rgba(159, 198, 69, 0.8784313725);
}

.photo-gallery-block:hover img {
  transform: scale(1.1);
  filter: blur(1px);
}

.photo-gallery-block img {
  width: 100%;
  height: 100%;
  -o-object-position: top;
     object-position: top;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.2s ease-in-out;
}

.photo-gallery-block span.date {
  position: absolute;
  top: 16px;
  left: 16px;
  min-width: 55px;
  font-size: 26px;
  line-height: 26px;
  border-radius: 4px;
  font-family: proximaNovaSemibold;
  background: rgba(255, 255, 255, 0.9);
  text-align: center;
  padding: 8px 10px;
  color: #000;
  box-shadow: 0 3px 16px rgba(0, 0, 0, 0.05);
}

.photo-gallery-block span.date small {
  font-size: 45%;
  line-height: 14px;
  font-family: proximaNova;
}

.photo-gallery-block span.country {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #fff;
  color: #0099CD;
  padding: 4px 8px 2px;
  border-radius: 20px;
  text-transform: uppercase;
  font-size: 12px;
  line-height: 20px;
  font-family: proximaNovaSemibold;
  box-shadow: 0 3px 16px rgba(0, 0, 0, 0.05);
}

.wrapper-section-story {
  padding: 135px 0px 70px 0px;
}

.photo-gallery-block-info {
  position: relative;
  text-align: center;
  padding: 18px 0 12px;
}

.photo-gallery-block-info h4 {
  margin-bottom: 0;
  color: #000;
  font-size: 13px;
  line-height: 22px;
}

.photo-gallery-title {
  position: relative;
  padding: 20px 30px;
  background: #636363;
  margin-bottom: 30px;
}

.photo-gallery-title h1.gallery-head {
  font-family: proximaNova;
  color: #fff;
  font-size: 28px;
  line-height: 34px;
  margin-bottom: 0;
}

.photo-gallery-title h1.gallery-head span.date {
  font-family: proximaNova;
  font-size: 16px;
  line-height: 22px;
  color: #5f5f5f;
  font-style: italic;
}

.photo-gallery-title h1.gallery-head span.date i {
  color: #b8b8b8;
}

.photo-gallery-title p.country {
  background: #fff;
  color: #0099CD;
  padding: 8px 16px 6px;
  border-radius: 30px;
  text-transform: uppercase;
  font-size: 14px;
  line-height: 20px;
  font-family: proximaNovaSemibold;
  box-shadow: 0 3px 16px rgba(0, 0, 0, 0.05);
  margin-bottom: 0;
}

.video-gallery-block {
  position: relative;
}

.video-gallery-block .video-gallery-block-img {
  position: relative;
  overflow: hidden;
  box-shadow: -10px 10px 0 rgba(159, 198, 69, 0.8784313725);
}

.video-gallery-block .video-gallery-block-img img {
  height: 250px;
  -o-object-fit: cover;
  object-fit: cover;
  transition: 0.4s ease-in-out;
}

.video-gallery-block:hover .video-gallery-block-img img {
  filter: blur(1px);
  transform: scale(1.1);
}

.video-gallery-block .video-gallery-block-info {
  position: relative;
  padding: 20px 0 12px;
  text-align: center;
}

.video-gallery-block .video-gallery-block-info h4 {
  color: #000;
  font-size: 13px;
  line-height: 22px;
  margin-bottom: 0;
}

.play-video-now {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  z-index: 9;
  transition: all 300ms ease;
}

.play-video-now .icon {
  position: absolute;
  left: 50%;
  top: 50%;
  height: 60px;
  width: 60px;
  text-align: center;
  line-height: 60px;
  background-color: #fff;
  color: #9FC645;
  z-index: 1;
  font-size: 22px;
  display: block;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  box-shadow: 0 5px 10px 0 rgba(255, 255, 255, 0.3);
  transform-origin: center;
}

.play-video-now .ripple,
.play-video-now .ripple:before,
.play-video-now .ripple:after {
  position: absolute;
  top: 50%;
  left: 50%;
  height: 60px;
  width: 60px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6);
  *animation: ripple2 3s infinite;
}

.play-video-now:hover .ripple,
.play-video-now:hover .ripple:before,
.play-video-now:hover .ripple:after {
  animation: ripple2 3s infinite;
}

.play-video-now .ripple:before {
  animation-delay: 0.9s;
  content: "";
  position: absolute;
}

.play-video-now .ripple:after {
  animation-delay: 0.9s;
  content: "";
  position: absolute;
}
@keyframes ripple2 {
  70% {
    box-shadow: 0 0 0 50px rgba(255, 255, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}
.wrapper-link {
  position: relative;
  margin-top: 12px;
}

.wrapper-link a.wrapperLink1 {
  font-family: proximaNovaSemibold;
  background: transparent;
  color: #9FC645;
}

.wrapper-link a {
  display: inline-block;
  background: #9FC645;
  border: 1.5px solid #9FC645;
  color: #fff;
  padding: 10px 16px;
  text-transform: uppercase;
  font-size: 16px;
  margin-right: 16px;
}

.wrapper-link a svg {
  fill: #fff;
  width: 24px;
  margin-right: 2px;
}

.videoPhoto-block {
  position: absolute;
  top: 20px;
  right: 20px;
}

.wrapper-box.wrapper-box2 .videoPhoto-block {
  right: auto;
  left: 20px;
}

.videoPhoto-block a {
  color: #fff;
  background: #0099CD;
  padding: 6px 9px 4px;
  border-radius: 50%;
  margin-left: 8px;
  display: inline-block;
  line-height: 24px;
  font-size: 16px;
  box-shadow: 0 3px 16px rgba(0, 0, 0, 0.05);
  transition: 0.4s ease-in-out;
}

.wrapper-box.wrapper-box2 .videoPhoto-block a {
  margin-left: 0px;
  margin-right: 8px;
}

.videoPhoto-block a:hover {
  color: #0099CD;
  background: #fff;
}

/* ================================= Inner Page End ================================*/
/* ================================= Custom Dropdown Start ================================*/
.custom-dropdown-block {
  position: relative;
  background: #4d4d4d;
  padding: 12px 20px;
  margin-bottom: 20px;
}

.wrapper-section-project {
  position: sticky;
  top: 70px;
  z-index: 999;
  padding-top: 15px;
}

.bakcBtn a {
  color: #ffffff;
  font-size: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  background: #3183c2;
  width: -moz-fit-content;
  width: fit-content;
  padding: 7px 16px;
}

.bakcBtn a i {
  font-size: 88%;
}

.custom-dropdown-block h2 {
  color: #fff;
  margin-bottom: 0;
  font-size: 28px;
  line-height: 34px;
  align-content: center;
  align-self: center;
  position: relative;
  z-index: 9;
}

.select-menu.custom-dropdown {
  position: relative;
  width: 200px;
}

.select-menu.custom-dropdown .select-btn {
  display: flex;
  background: #fff;
  padding: 8px 16px;
  font-size: 18px;
  font-weight: 400;
  align-items: center;
  cursor: pointer;
  justify-content: space-between;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  color: #000;
}

.custom-dropdown .select-btn i.fa-angle-down {
  transition: 0.3s;
}

.select-menu.custom-dropdown.active .select-btn i.fa-angle-down {
  transform: rotate(-180deg);
}

.select-menu.custom-dropdown .select-btn i.fa-calendar-days {
  color: #afafaf;
  margin-right: 3px;
}

.select-menu.custom-dropdown .options {
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  z-index: 999;
  padding: 8px 0;
  margin-top: 1px;
  background: #fff;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.1);
  display: none;
  margin-bottom: 0;
}

.select-menu.custom-dropdown.active .options {
  display: block;
}

.custom-dropdown .options .option {
  cursor: pointer;
  align-items: center;
  padding: 5px 16px;
  color: #000;
  transition: 0.4s ease-in-out;
}

.custom-dropdown .options .option:hover {
  background: #ececec;
}

.custom-dropdown .option .option-text {
  font-size: 18px;
}

/* ================================= Custom Dropdown End ================================*/
.filterYear select.form-select {
  font-size: 18px;
  line-height: 26px;
  border-radius: 0;
  height: 42px;
  font-weight: 600;
  color: #333;
}

.filterYear select.form-select:focus {
  border-color: #ffffff;
  box-shadow: none;
}

/* ================================= Brochures And Logos Start ================================*/
.brochures-logos {
  padding: 5px !important;
}

.brochures-logos img {
  border: 1px solid #9fc645;
  height: 275px;
  -o-object-fit: cover;
     object-fit: cover;
}

.brochures-logos-btn a {
  background: #008cbc;
  color: #fff;
  padding: 3px 7px;
  border-radius: 3px;
  font-size: 12px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 2px;
  justify-content: center;
  margin: 0px 7px;
}

.brochures-logos-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 52px;
  width: 100%;
  text-align: center;
  overflow: hidden;
}

.brochures-logos-btn a i {
  font-size: 76%;
}

.brochures-logos-content {
  padding: 14px 0px;
  position: relative;
  height: 90px;
  width: 100%;
}

.brochures-logos-content h2 {
  font-size: 19px !important;
  color: #222;
  margin-bottom: 8px !important;
  line-height: 20px;
  font-weight: 700;
}

/* ================================= Brochures And Logos End ================================*/
.importantdates .row .col-xl-3.col-xxl-3.judgingBlock {
  width: 34%;
}

.importantdates .row .col-xl-3.col-xxl-3 {
  width: 22%;
}

.impotant-dates-block {
  background-color: #fff;
  border: 0;
  /* border-left: 3px solid green !important; */
  position: relative;
  border-radius: 0px;
  box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.2);
  padding: 15px;
  height: 100%;
}

.important-date-main-title {
  background: #008cbc !important;
  color: #fff !important;
}

.important-date-title h1 {
  font-size: 40px;
  line-height: 25px;
}

.important-block-content h4 {
  font-size: 20px;
  font-weight: 600;
}

.important-block-content h3 {
  font-size: 25px;
  font-weight: 600;
}

.icon-date-block {
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-size: 19px;
  font-weight: 500;
}

.icon-date-block i {
  font-size: 100%;
  color: #9fc645;
}

.important-block-content {
  height: 100%;
}

.importantdatesSwiper .swiper-slide {
  height: 100%;
}

.form-check .form-check-input1.active {
  background-color: #33A5D9;
  color: #fff;
  border-color: #33A5D9;
}

.dactive {
  background-color: #fff;
  color: #33A5D9;
  border-color: #33A5D9;
}

/* .disaster-relief {
  padding-bottom: 5rem !important;
} */
.form-select.form-select-month {
  width: 25%;
  height: 34px;
  padding: 5px;
  padding-top: 3px;
}

.currency-block-btn {
  width: 100%;
}

.currency-block-btn li {
  width: 15%;
  padding: 5px;
}

.currency-block-btn li.custom-btn {
  width: 22% !important;
}

.currency-block-btn {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}

.currency-block-btn .form-check-input1 {
  width: 100%;
}

.header-block {
  width: 100%;
  background: #fff;
  padding: 10px;
  position: fixed !important;
  top: 0;
  left: 0;
  background: #fff;
  padding: 16px 16px;
  z-index: 999;
  border-bottom: 0;
  box-shadow: 0 3px 16px rgba(0, 0, 0, 0.05) !important;
}

.welcome-text1 p {
  position: relative;
  z-index: 9;
  color: #000;
  font-size: 22px;
  line-height: 29px;
  font-weight: 500;
  margin-bottom: 0;
}

.wrapper-block-info-scroll {
  background: #fff;
  height: 420px;
  padding: 32px 30px;
}

.wrapper-block-info-scroll .wrapper-block-info {
  padding: 0px !important;
}

.newsEvents-block1-h {
  background: #fff;
  height: 450px;
  padding: 40px;
  transition: 0.4s ease-in-out;
}

.about-the-table tr td {
  background-color: #f2f2f2;
  padding: 7px;
  color: #000;
  border-color: #b9b9b9;
}

.about-the-table.table-bordered > :not(caption) > * {
  border-width: 1px 0;
  border-color: #b9b9b9;
}

.program-btn1 a.btn1 {
  padding: 8px 30px;
}

.fundrise-ul {
  padding-left: 20px;
}

.fundrise-ul li {
  list-style: disc;
  margin-bottom: 0;
  font-size: 19px;
  line-height: 30px;
  color: #000;
}

img.left-quote-img {
  position: relative;
  bottom: 9px;
  right: 0px;
  filter: grayscale(1);
  opacity: 0.4;
}

img.right-quote-img {
  position: relative;
  bottom: 4px;
  right: 4px;
  filter: grayscale(1);
  opacity: 0.4;
}

.jefferson-award {
  position: relative;
  height: 100%;
  width: 100%;
  box-shadow: -10px 10px 0 rgba(159, 198, 69, 0.8784313725);
}

.jefferson-award a img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  height: 380px;
}

.play-icon .ripple img {
  position: absolute;
  left: 50%;
  top: 50%;
  height: 80px;
  width: 80px;
  text-align: center;
  line-height: 80px;
  background-color: #fff;
  color: #9FC645;
  z-index: 1;
  font-size: 26px;
  display: block;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  box-shadow: 0 5px 10px 0 rgba(255, 255, 255, 0.3);
  transform-origin: center;
}

.success-sec .modal-dialog {
  max-width: 460px;
}

.success-sec .modal-content {
  border: 5px solid #fff;
  border-radius: 0;
}

.success-sec .btn-close {
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  opacity: 1;
}

.success-sec .btn-close i {
  font-size: 18px;
  color: #fff;
}

.success-sec .modal-body {
  padding: 30px 35px;
}

.success-sec .modal-header {
  background: #33a5d9;
  border: 0;
  padding: 10px 20px;
  border-radius: 0;
}

.success-sec .modal-header h5.modal-title {
  color: #fff;
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  width: 100%;
}

.success-screen i {
  color: #9fc645;
  font-size: 56px;
}

.success-screen h1 {
  color: #2197cb;
  font-size: 30px;
  font-weight: 600;
  margin: 10px 0px 7px 0px;
}

.success-screen p {
  color: #333;
  font-size: 18px;
  line-height: 22px;
  margin: 0;
}

.cardSelect {
  display: none;
  width: 28%;
}

.showcardSelect {
  width: 28%;
}/*# sourceMappingURL=main.css.map */