@import url(fonts.css);

:root {
  --primary: #5FC958;
  --secondary: #000000;
  --bs-red: #EE4B2B;
  --rgbBlack : #00000020;
  --carousel-box:#5FC95820;
  --border-color : #3a3a3a;
  --primary-dark: #14391A;
  --light-green: #F1FFF0;
  --font-primary: 'Gotham Book', sans-serif;
  --font-secondary: 'Gotham Bold', sans-serif;
  --font-normal: 400;
  --font-logo: 'Krona One', sans-serif;
  --font-extra-small: 14px;
  --font-small: 16px;
  --font-default: 18px;
}

/* input:-webkit-autofill {
    transition: background-color 5000s ease-in-out 0s;
} */

input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus, 
input:-webkit-autofill:active{
    -webkit-background-clip: text;
    -webkit-text-fill-color: #ffffff;
    transition: background-color 5000s ease-in-out 0s;

}

/* Loader-css */

.loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.9);
  /* A semi-transparent background */
  display: none;
  /* Initially hidden */
  justify-content: center;
  align-items: center;
}

.loading-overlay.show {
  display: flex;
  z-index: 999999;
}

a{
  color: var(--primary);
}
#loader {
  width: 100px;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: spinRight 800ms linear infinite;
}

#loader:before,
#loader:after {
  content: '';
  width: 5vmax;
  /* Using vmax for responsiveness */
  height: 5vmax;
  /* Ensures it's perfectly round */
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  /* Centers the loader */
  border-left: 3px solid var(--bs-white);
  border-radius: 50%;
  /* Makes it circular */
}

@keyframes spinRight {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

img {
  max-width: 100%;
}

.bg-image {
  width: 100%;
  height: 100%;
  background-image: url(../images/bg-image.png) !important;
  background-size: auto !important;
  position: relative;
  z-index: 1;
  background-position: 25% 100% !important;
  background-repeat: no-repeat !important;
}

.offcanvas.offcanvas-start {
  background-color: var(--bs-black);
}

.offcanvas-body .navbar-nav li a {
  color: var(--bs-white);
}

.offcanvas-body .navbar-nav li a.active {
  color: var(--primary);
}

.offcanvas .btn-close {
  filter: invert(1);
}

.navbar-toggler:focus {
  box-shadow: unset;
}

.image-box img {
  width: 100%;
}

/* custom-owl-nav-div */
.nav-dots-wrapper {
  display: flex;
  gap: 10px;
  justify-content: center;
  position: relative;
  margin-top: 2rem;
}

/* .nav-dots-wrapper .owl-nav {
  min-width: 300px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-dots-wrapper .owl-dots {
  width: 250px;
  position: absolute;
  top: 0;
  text-align: center;
} */

/* .nav-dots-wrapper button {
  border: 0;
  background-color: transparent;
} */


.partnerCarousel .owl-nav {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 2rem;
  align-items: center;
}

.owl-nav .owl-dots button {
  width: 12px;
  height: 12px;
  border-radius: 100%;
  margin: 0 5px;
  background-color: var(--rgbBlack) ;
}

.owl-nav .owl-nav i {
  opacity: .5;
}

.owl-nav .owl-dots button.active {
  width: 14px;
  height: 14px;
  background-color: var(--primary);
}


.bg-primary {
  background-color: var(--primary) !important;
}

.btn-primary {
  min-width: 200px;
  min-height: 60px;
  transition: all .3s linear !important;
}

.btn-primary:hover::after {
  top: -7px;
  left: -7px;
  background-color: var(--primary);
  border: 1px solid var(--bs-black);
}

.btn-primary:hover {
  background-color: var(--bs-black) !important;
  color: var(--bs-white) !important;
  border: 1px solid var(--bs-white);
}

.btn-primary:hover img {
  filter: invert(1);
}

body {
  font-family: var(--font-primary);
  font-size: var(--font-default);
  font-weight: var(--font-normal);
  overflow-x: hidden;
  word-break: break-word;
}

body section {
  overflow: hidden;
}


body :where(h1, h2, h3, h4, h5) {
  font-family: var(--font-secondary);
}

hr {
  border-top: 1px solid #ffffff40;
  margin: 2rem 0;
}

.overflow {
  margin-top: -7rem;
}


h5 {
  font-family: var(--font-secondary);
  font-weight: bold;
}

.bg-black {
  background: var(--secondary);
}

.bg-light-green {
  background: var(--light-green);
}

.fixed-width {
  max-width: 1800px;
  padding: 0 20px;
}

.container-small {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  padding: 0 10px;
}

.container-medium {
  max-width: 1079px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  padding: 0 10px;
}

h2 {
  font-size: 56px;
}

h3 {
  font-size: 32px;
  color: var(--primary);
}

.btn-primary {
  background-color: var(--primary);
  color: var(--secondary);
  font-family: var(--font-secondary);
  border: 1px solid var(--secondary);
  padding: 16px 20px;
  font-size: 20px;
  font-weight: bold;
  border-radius: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  width: max-content;
  position: relative;

}

.btn-primary::after {
  content: '';
  position: absolute;
  z-index: -1;
  height: 100%;
  width: 100%;
  top: 10px;
  left: 7px;
  background-color: var(--secondary);
  transition: all .3s linear;
}

.btn.btn-primary:hover,
.btn.btn-primary:active,
.btn.btn-primary:focus {
  background-color: var(--primary);
  color: var(--secondary);
  border: 1px solid var(--secondary);
  outline: none;
  box-shadow: none;
  transition: all .3s linear;
}


/* Navbar CSS */
.navbar-brand .brand-logo,
.footer-logo .brand-logo {
  max-width: 100%;
  height: 31px;
  width: auto;
}

body.home .navbar {
  background-color: unset;
}

.navbar {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background-color: var(--bs-black);
}

.navbar ul li a {
  font-size: var(--font-small);
  color: var(--bs-white);
  text-transform: uppercase;
  padding: 10px 15px;
}

.nav-item .dropdown-menu {
  background-color: var(--bs-black);

  min-width: 200px;

}

.nav-item .dropdown-item {
  border-bottom: 1px solid var(--border-color);

}

.nav-item .dropdown-item:last-child {
  border-bottom: 0;
}

.nav-item.dropdown:hover .dropdown-menu {
  display: block;
  margin-top: 0;
}


.nav-item .dropdown-item.active,
.nav-item .dropdown-item:active,
.nav-item .dropdown-item:focus,
.nav-item .dropdown-item:hover {
  background-color: var(--bs-black);

}

.navbar ul>li a.nav-link.active,
.navbar ul>li a:hover,
.nav-link:hover, .nav-item .dropdown-item.active, .footer-menu .nav-link.active {
  color: var(--primary);
}

.navbar ul.navbar-nav {
  gap: 18px;
}

.navbar.scrolled {
  background: var(--bs-black) !important;
}

ul.social-icons li a {
  width: 32px;
  height: 32px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

ul.social-icons li a:hover {
  opacity: 1;
  color: var(--bs-white);
  box-shadow: 0 0 5px var(--primary);
  text-shadow: 0 0 5px var(--primary);
}

ul.social-icons li a::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--primary);
  transition: .5s;
  transform: scale(.99);
  z-index: -1;
}

ul.social-icons li a:hover::before {
  transform: scale(1.01);
  box-shadow: 0 0 15px var(--primary);
}


/* End Navbar CSS */



/* Hero Section */
.hero-section {
  background-size: cover;
  background-position: center;
  height: 100vh;
  min-height: 750px;
  position: relative;
  color: var(--bs-white);
  text-align: center;
}

.hero-section::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent 0%, black 100%);
}



.hero-content:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 75px;
  top: 0;
  left: 0;
  background: linear-gradient(to top, transparent 0%, #00000090 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  top: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
}

.hero-section h6:first-child {
  font-size: var(--font-default);
  letter-spacing: 10px;
}

.hero-section .company-name {
  font-family: var(--font-logo);
  font-size: 150px;
}

.hero-section .company-name span {
  color: var(--primary);
}

.hero-section .lead {
  color: var(--primary);
  font-family: var(--font-secondary);
  font-size: 32px;
}

.hero-section .intro {
  max-width: 1100px;
}

/* End Hero Section */


/* Start Goals Section */

.goal-block {
  margin: 120px 0
}

.goals-count {
  font-family: var(--font-secondary);
  font-size: 160px;
  line-height: 140px;
  background: linear-gradient(to bottom, white, black);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  opacity: 0.2;
}

.goals-img-block {
  position: relative;
  z-index: 1;
}

.goals-img-block img {
  width: 100%;
}

.goals-img-block::after,
div#full-gallery::after {
  content: '';
  position: absolute;
  background-color: var(--primary-dark);
  width: 100%;
  height: 100%;
  left: 20px;
  top: 20px;
  z-index: -1;
  transition: all .3s linear !important;
}

.goals-img-block:hover::after {
  top: -20px;
  left: -20px;
  transition: all .3s linear !important;
}

.content-block {
  margin-bottom: 20px;
}

.content-right {
  margin-left: 20px;
}

.goal-block p {
  color: rgba(255, 255, 255, 0.6);
}

/* End Goals Section */


/* Start Feature Block */

.feature-block {
  background: rgba(95, 201, 88, 0.3);
  padding: 25px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  min-height: 450px;
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
}


.feature-block .pattern {
  clip-path: circle(50% at 50% 50%);
  height: 250px;
  background: var(--bs-white);
  position: absolute;
  bottom: -190px;
  width: 250px;
  margin: auto;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0.4;
  z-index: -1;
}

.feature-block h5 {
  color: var(--bs-black);
  font-size: 25px;
  margin-bottom: 15px;
}

.feature-block .icon {
  width: 120px;
  height: 120px;
  text-align: center;
  background: var(--bs-white);
  margin: auto;
  display: flex;
  align-items: center;
  border-radius: 12px;
}

.feature-block .icon img {
  width: auto;
  height: 70px;
  margin: 0 auto;
}



.feature-block p {
  font-size: 0.95rem;
  color: #666;
}

/* End Feature Block */

/* Start Mission Section */

.mission-section {
  background: url('../images/mission-bg.jpg') no-repeat center center/cover;
  padding: 80px 0;
  color: var(--bs-white);
  z-index: 1;
  position: relative;
}

.mission-section p {
  font-size: 1.125rem;
  margin-bottom: 50px;
}

.mission-section .form-control {
  background-color: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0;
  color: var(--bs-white);
  height: 50px;
}

.mission-section .form-control:focus {
  box-shadow: none;
  border-color: var(--primary);
}

.mission-section textarea {
  resize: none;
}


/* End Mission Section */

.event-card {
  width: 100%;
  height: 100%;
  background-color: var(--light-green);

}

.event-card:hover {
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.event-card .image-box {
  position: relative;
  width: 100%;
  height: 240px;
}

.event-card .image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.event-card .image-box a {
  width: 100%;
  height: 100%;
  display: block;
}

.event-card .image-box .title {
  position: absolute;
  bottom: 0;
  padding: 10px;
  font-size: 1.2rem;
  color: var(--bs-white);
  z-index: 1;
}

.event-card .event-date {
  width: 55px;
  height: auto;
  background-color: var(--primary);
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 5px;
  text-align: center;
}

.event-card .upcoming-event{
  min-width: 100px;
  height: auto;
  background-color: var(--primary);
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 5px;
  text-align: center;
}

.event-card .upcoming-event p {
  font-size: 15px;
  color: var(--bs-white);
  font-family: 'Gotham Bold';
  line-height: 1.1;
  margin: 5px 0;
}

.event-card .event-date p {
  font-size: 20px;
  color: var(--bs-white);
  font-family: 'Gotham Bold';
  line-height: 1.1;
  margin: 5px 0;
}

.event-card .event-date img {
  width: 20px !important;
  height: 20px !important;
  object-fit: contain !important;
}

.event-card .image-box:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 130px;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(18, 25, 17, 0) 0%, #121911 50%);
}

.event-content {
  padding: 10px;
}

.info-group {
  padding: 12px 0px;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
  border-bottom: 1px solid #4d4d4d20;
  margin-bottom: 10px;
}

.info-group .info {
  display: flex;
  gap: 10px;
  align-items: center;
}

.info-group .info span {
  flex-shrink: 0;
}

.info-group .info span img {
  width: 25px;
  height: 25px;
}

.info-group .info p {
  font-size: 16px;
  margin: 0;
  font-family: 'Gotham Book';
  font-weight: 600;
}

.event-content a {
  color: var(--primary);
  font-size: 16px;
  font-family: 'Gotham Book';
  font-weight: 600;
  text-decoration: none;
}

/* About-Page */

.banner-section {
  width: 100%;
  height: 350px;
  background-size: cover;
  background-position: center center;
  position: relative;
}

.banner-section:before,
.banner-section:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(to bottom, #0000004d 0%, #000 100%);
}

/* Staaf-section */

.our-staaf p {
  font-size: 16px;
  margin-bottom: 10px;
}

.our-staaf .authore {
  margin-block-start: 2rem;
}

/* Service-box */

.our-services {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 30px;
  row-gap: 130px;
}

.service-box {
  height: 100%;
  padding: 2rem;
  position: relative;
}

.service-box .image-box {
  width: 200px;
  height: 200px;
  position: absolute;
  top: -4rem;
  right: 2rem;
  box-shadow: 0px 16.25px 16.25px 0px rgba(0, 0, 0, 0.1);
}

.service-box .image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 2;
  filter: grayscale(1);
}

.service-box .image-box:after {
  content: "";
  position: absolute;
  width: 100%;
  background-color: var(--bs-black);
  right: -10px;
  height: 100%;
  z-index: 01;
  bottom: -10px;
}

.service-box .count {
  font-size: 85px;
  font-family: 'Gotham Bold';
  opacity: .2;
}

.service-box.bg-primary {
  color: var(--bs-white)
}

.carousel-box {
  background-color: var(--carousel-box);
  padding: 2rem;
  min-height: 550px;
}

.carousel-box h3 {
  color: var(--secondary);
  margin-bottom: 20px;
}

/* Category-filter-option */

.events-category-dropdown {
  display: none;
}


.events-category {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  list-style-type: none;
  padding: 0;
  margin-top: 2rem;
}

.event-listing hr {
  border-top: 1px solid #00000040;
}

.events-category li {
  flex: 1;
  border: 1px solid;
  text-align: center;
  text-transform: capitalize;
  line-height: 2;
  background-color: var(--light-green);
  cursor: pointer;
}

.events-category li a {
  color: var(--bs-black);
  text-decoration: none;
  display: block;
}


.events-category li.active {
  background-color: var(--primary);
  position: relative;
}

.events-category li.active:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: var(--bs-black);
  right: -5px;
  z-index: -1;
  bottom: -5px;
}


/* events-details */

.events-details {
  padding-top: 7rem;
}

.events-details .goals-img-block {
  margin-bottom: 3rem;
}

.events-details .content {
  border-bottom: 1px solid #ffffff40;
  padding: 20px 0;
}

.events-details .content h4 {
  font-size: 32px;
}

.events-details .event-content {
  padding: 0;
}

.events-details .event-content .info-group {
  margin: 0;
  border: 0;
}

/* Template-Two */

.grid-goal h4 {
  padding-block-start: 3rem;
}

.grid-goal .goals-img-block img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.grid-goal .goals-img-block {
  height: 250px;
}

/* Contact-page */

.contact-us .footer {
  display: none;
}

.contact-us .mission-section {
  min-height: 100vh;
  padding-bottom: 0;
  padding-block-start: 10rem;
  background: url('../images/contact-bg.webp') no-repeat center center/cover;
}

.contact-us .copyright-text {
  margin-top: 10rem;
  padding-bottom: 20px;
}

.social-icons {
  list-style-type: none;
}

.footer {
  position: relative;
  background-image: url(../images/contact-bg.webp);
  background-size: cover;
  background-position: center center;
  min-height: 350px;
  height: auto;
  padding-block-start: 3rem;
}

.footer hr {
  margin: 1rem auto;
}

.footer ul {
  list-style-type: none;
  display: flex;
  justify-content: flex-end;
  gap: 20px;
  padding: 0;
  margin: 0;
}

.footer ul li {
  text-transform: uppercase;
}

.footer-info {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.footer-info span {
  width: 70px;
  height: 70px;
  background-color: var(--primary-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
  text-align: center;
}

.footer-info .details {
  text-align: left;
}

.footer-info .details label {
  font-size: 14px;
  text-transform: uppercase;
  color: #ffffff40;
}

.footer-info .details p {
  margin: 0;
  font-size: 18px;
}

.border-left-1 {
  border-left: 1px solid #ffffff30;
}

.footer-info span i,
.footer-info span svg {
  font-size: 24px;
  width: 24px;
}

.copyright-text p {
  margin: 0;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  font-size: var(--font-extra-small);
}

.copyright-text {
  padding-bottom: 10px;
}

.copyright-text p span {
  margin: 0 10px;
  border: 1px solid rgba(255, 255, 255, 0.4);
}

/* Pagination-css */

.pagination li a {
  background-color: var(--light-green) !important;
  color: var(--primary);
  font-size: 16px;
  font-family: 'Gotham Book';
  font-weight: 600;
  text-decoration: none;
}

.pagination li a:hover {
  color: var(--bs-black);
}

label.error {
  color: var(--bs-red);
  font-size: small;
}

.text-danger {
  --bs-text-opacity: 1;
  color: var(--bs-red);
  font-size: small;
}
/* not found CSS */
.not-found {
  padding: 0px 16px;
  min-height: calc(100vh);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.not-found h1 {
  font-size: 170px;
  margin: 0;
  font-weight: 800;
  color: var(--dark);
  line-height: normal;
}

.not-found h4 {
  margin: 0;
}

.not-found p {
  font-size: 20px;
  text-align: center;
}

.avatar-sm {
  height: 3rem;
  width: 3rem;
}

.not-found .btn {
  box-sizing: border-box;
  text-decoration: none;
}