:root {
  --black: #000000;
  --white: #ffffff;
  --primary-color: #7ED321;
  --lightgrey: #b7b8c0;
  --lightgrey-2: #6d6f78;
  --title-font: "Inter", sans-serif;
  --paragraph-font: "Inter", sans-serif;
  --nav-font: "Poppins", sans-serif;
}
::selection {
  background: #7ED321; /* The background color of the selected text */
  color: #fff;        /* The color of the selected text itself */
}

/* For Firefox compatibility */
::-moz-selection {
  background: #7ED321;
  color: #fff;
}
html {
  overscroll-behavior-x: none;
  overscroll-behavior-y: none;
  scroll-behavior: smooth;
}

body {
  overscroll-behavior-x: none;
  overscroll-behavior-y: none;
  scroll-behavior: smooth;
  font-family: var(--paragraph-font);
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  color: var(--black);
}

/* lenis */
html.lenis,
html.lenis body {
  height: auto;
  overflow-x: hidden;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow-x: hidden;
}

.lenis.lenis-scrolling iframe {
  pointer-events: none;
}
/* body.modal-open{
      overflow: hidden !important;
    height: 100vh !important;
} */
h1,
h2,
h3,
h4,
h5,
h6 {
  /* text-transform: uppercase; */
  font-family: var(--title-font);
}

a {
  text-decoration: none;
}

.custom-container {
  padding-left: 24px;
  padding-right: 24px;
  max-width: 1180px;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}

.pt-70 {
  padding-top: 70px;
}

.pb-70 {
  padding-bottom: 70px;
}

.pt-25 {
  padding-top: 25px;
}

.pb-25 {
  padding-bottom: 25px;
}

.mb-25 {
  margin-bottom: 25px;
}

.mt-25 {
  margin-top: 25px;
}

.mb-70 {
  margin-bottom: 70px;
}

.mt-70 {
  margin-top: 70px;
}

.fs-16 {
  font-size: 16px!important;
}
.fs-20 {
  font-size: 20px;
}

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

.btn-contribute {
  color: var(--white);
  background: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 700;
  font-size: 16px;
  padding: 10px 25px;
  border-radius: 34px;
  border: 2px solid var(--primary-color);
  transition: 0.3s ease-in;margin-left: 10px;
}
.btn-contribute img {
    filter: brightness(7);
}
.btn-contribute:hover {
  background: transparent;
}

.btn-contribute img {
  width: 24px;
}

.theme-btn {
  font-weight: 700;
 font-size: 16px;
  letter-spacing: -0.31px;
  display: inline-block;
  background: var(--primary-color);
  border: 2px solid var(--primary-color);
  color: var(--white);
  padding: 10px 25px;
  border-radius: 34px;
  display: inline-flex;
  align-items: center;
  transition: 0.3s ease-in-out;
  gap: 10px;
}

.theme-btn:hover {
  background: transparent;
transform:scale(1.1)
}

.theme-btn span {
  font-size: 15px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.theme-btn.border-btn {
  background: #FFFFFF1A;
  border: 2px solid #FFFFFF4D;
}

.theme-btn.border-btn span {
  border-radius: 50%;
  background: #FFFFFF33;
	  width: 32px;
}

.theme-btn2 {
display: inline-block;
    background: var(--primary-color);
    border-radius: 50px;
    color: var(--white);
    font-weight: 700;
    font-size: 16px;
    text-align: center;
    padding: 10px 25px;
    border: 2px solid var(--primary-color);
    transition: 0.3s ease-in;
}

.theme-btn2:hover {
  background: transparent;
  color: var(--primary-color);transform:scale(1.1)
}

.theme-btn-sm {
/*   font-size: 20px; */
/*   padding: 9px 22px;
  font-weight: 600; */
}
.theme-btn-sm:hover{
  color: var(--primary-color);transform:scale(1.1)
}
.theme-btn-sm span {
/*   width: 30px; */
  font-size: 13px;
  height: 30px;
}

.btn-group {
  display: flex;
  gap: 20px;
}


.main-title {
  font-size: 64px;
  font-family: var(--title-font);
  font-weight: 900;
  color: var(--black);
  text-transform: uppercase;
}

.main-title.text-unset {
  text-transform: unset;
}

.main-title span {
  color: var(--primary-color);
}

.box-shadow {
  box-shadow: 0 1px 30px #00000026;
}

.bg-green {
  background: var(--primary-color);
}
.single-top{
  background: var(--black);
  height: 60px;
}


.bg-grey{
  background: #F9FAFB;

}