:root {
  --mont: 'Montserrat', sans-serif;
  --transition-duration: 0.3s
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: white;
  transition: background-color;
  transition-duration: var(--transition-duration);
}

.bg-white {
  background-color: white;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.bg-white a {
  color: rgb(2, 52, 48);
}

.white {
  color: white;
}

.hero {
  width: 100%;
  height: 100vh;
  position: relative;
  border-radius: 0px 0px 40px 40px;
}

.menuOverlay {
  position: fixed;
  background-color: white;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  top: 0;
  right: 0;
  width: 0;
  height: 100vh;
  z-index: 2000;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 20px;
  overflow: hidden;
  transition: width 0.4s ease;

}

.menuOverlay a {
  text-decoration: none;
  color: rgb(2, 52, 48);
  font-family: var(--mont);
  font-weight: 600;
  transition: transform;
  transition-duration: var(--transition-duration);
}

.menuOverlay button {
  position: absolute;
  top: 30px;
  right: 20px;
  padding: 10px 12px;
  border: none;
  background-color: rgb(2, 52, 48);
  color: white;
  border-radius: 100%;
  transition: transform;
  transition-duration: var(--transition-duration);
  display: none;
}

.menuOverlay button:hover {
  cursor: pointer;
  transform: scale(1.2);
}

.menuOverlay a:hover {
  cursor: pointer;
  transform: scale(1.1);
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0px 0px 40px 40px;

}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, .5);
  border-radius: 0px 0px 40px 40px;
}

nav {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 5px 10px;
  z-index: 1000;
  color: white;
  transition: background-color;
  transition-duration: 0.4s;
  padding: 10px;
}

nav a {
  text-decoration: none;
  /* color: rgb(2, 52, 48); */
  color: white;
  font-family: var(--mont);
  font-weight: 700;
  font-size: 13px;
  line-height: 27px;
}





.nav-links {
  display: flex;
  gap: 30px;
}

.nav-links a {
  position: relative;
}

.nav-links a::before {
  content: "";
  position: absolute;
  bottom: 0;
  width: 0;
  border-bottom: 3px solid rgb(2, 52, 48);
  transition: width;
  transition-duration: 0.4s;
}

.nav-links a:hover::before {
  width: 100%;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 15px;
}

.nav-right a {
  background-color: rgb(64, 179, 62);
  color: white;
  padding: 5px 20px;
  border-radius: 20px;
  position: relative;
  z-index: 2;
}

.nav-right a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 0;
  height: 100%;
  border-radius: 20px;
  background-color: rgb(2, 52, 48);
  transition: width;
  z-index: -1;
  transition-duration: var(--transition-duration);
}

.nav-right a:hover::before {
  width: 100%;
}

.menu {
  border: none;
  color: rgb(224, 225, 204);
  background-color: rgb(2, 52, 48);
  padding: 10px 12px;
  font-size: 20px;
  border-radius: 100%;
  display: none;
  transition: transform;
  transition-duration: var(--transition-duration);
}

.mode {
  border: none;
  color: rgb(224, 225, 204);
  background-color: rgb(2, 52, 48);
  padding: 10px 12px;
  font-size: 20px;
  border-radius: 100%;
  transition: transform;
  transition-duration: var(--transition-duration);
}

.nav-right button:hover {
  transform: scale(1.1);
  cursor: pointer;
}

.hero-text {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 20px;
  text-align: center;
  width: 100%;
}

.hero-text h2 {
  font-family: var(--mont);
  font-weight: 700;
  line-height: 62px;
  color: rgb(255, 255, 255);
  font-size: 56px;
}

.hero-text p {
  font-family: var(--mont);
  font-weight: 500;
  font-size: 16px;
  line-height: 27px;
  color: rgb(224, 225, 204);
  padding: 0px 30px;
  text-align: center;
  text-wrap: wrap;
}

.s-support {
  background-color: rgb(64, 179, 62);
  padding: 10px;
  border-radius: 50px;
  text-decoration: none;
  color: #063837;
  font-family: var(--mont);
  line-height: 15px;
  font-size: 12px;
  font-weight: 900;
  display: flex;
  align-items: center;
  gap: 10px;
}

.down-hero span {
  background-color: #063837;
  color: white;
  padding: 5px 10px;
  border-radius: 100%;
  font-size: 15px;
}

.down-learn {
  border: 1px solid rgb(224, 225, 204);
  color: rgb(224, 225, 204);
  font-weight: 500;
  font-size: 12px;
  line-height: 15px;
  font-family: var(--mont);
  padding: 15px 20px;
  text-decoration: none;
  border-radius: 50px;
  transition: background-color;
  transition-duration: 0.4s;
}

.down-learn:hover {
  background-color: rgb(224, 225, 204);
  color: #063837;
}

.about-us {
  width: 95%;
  margin: auto;
  display: flex;
}

.abt-title {
  font-size: 40px;
  font-family: var(--mont);
  text-align: center;
  margin-top: 80px;
  margin-bottom: 20px;
  color: rgb(2, 52, 48)
}

.abt-left,
.abt-right {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50%;
}

.abt-left img {
  width: 400px;
  object-fit: cover;
  border-radius: 100%;
}

.abt-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 30px;
}

.abt-right p {
  font-weight: 400;
}

.abt-right a {
  text-decoration: none;
  font-family: var(--mont);
  font-size: 20px;
  color: green;
  transition: transform;
}

.abt-right a:hover {
  transition-duration: 0.3s;
  transform: scale(1.1);
}

.abt-right h2 {
  font-weight: 400;
  font-family: var(--mont);
  color: rgb(64, 179, 62);
}

.numbers {
  display: flex;
  justify-content: center;
  padding: 30px 0px;
  width: 90%;
  margin: 30px auto;
  gap: 30px;
}

.numbers img {
  filter: brightness(0.6);
}

.num-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 30px;
  width: 30%;
  padding: 20px 0px;
}

.num-left .title {
  font-size: 40px;
  font-weight: 400;
  color: rgb(64, 179, 62);
  line-height: 50px;
  font-family: var(--mont);
}

.num-left p {
  font-weight: 400;
  line-height: 27px;
  color: rgb(2, 52, 48);
  line-height: 27px;
  font-size: 20px;
  font-family: var(--mont);
}

.num-left .support {
  background-color: rgb(64, 179, 62);
  color: rgb(2, 52, 48);
  text-decoration: none;
  font-family: var(--mont);
  line-height: 15px;
  font-size: 12px;
  font-weight: 900;
  gap: 10px;
  padding: 20px;
  border-radius: 50px;
}

.support span {
  background-color: #063837;
  color: rgb(224, 225, 204);
  padding: 5px 10px;
  border-radius: 100%;
}

.num-right {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}

.trees {
  height: 40%;
  width: 95%;
  position: relative;
  margin: auto;
  object-position: top;
}



.rgt-two {
  height: 40%;
  display: flex;
  justify-content: space-around;
}

.bear {
  width: 50%;
  position: relative;
}

.rivers {
  width: 40%;
  position: relative;
}

.num-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 30px;
  transition: transform;
  transition-duration: 0.4s;
  cursor: pointer;
}

.num-right img:hover {
  cursor: pointer;
  transform: scale(1.1);
}

.num-right p {
  position: absolute;
  bottom: 0;
  left: 20px;
  font-size: 36px;
  line-height: 62px;
  color: rgb(64, 179, 62);
  font-weight: 900;
  font-family: var(--mont);
}

/* 
.num-right span {
  color: rgb(64, 179, 62);
} */


.mission {
  padding: 40px 30px;
  border-radius: 30px;
  display: flex;
  width: 95%;
  margin: auto;
  gap: 30px;
  align-items: center;
  justify-content: center;
}

.mission-left {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  gap: 20px;
  width: 50%;
  padding: 20px 0px;
}

.mission-left h2 {
  font-size: 36px;
  font-weight: 500;
  color: rgb(64, 179, 62);
  line-height: 50px;
  font-family: var(--mont);
}

.mission-left p {
  font-weight: 400;
  line-height: 27px;
  line-height: 27px;
  font-size: 16px;
  font-family: var(--mont);
}

.mission-left .support {
  background-color: rgb(64, 179, 62);
  color: rgb(2, 52, 48);
  text-decoration: none;
  font-family: var(--mont);
  line-height: 15px;
  font-size: 12px;
  font-weight: 900;
  gap: 10px;
  padding: 20px;
  border-radius: 50px;
}

.support span {
  background-color: #063837;
  color: rgb(224, 225, 204);
  padding: 5px 10px;
  border-radius: 100%;
}

.mission-right {
  width: 50%;
  padding: 20px 0px;
}

.mission-right video {
  width: 100%;
  border-radius: 20px;
}

.work {
  padding: 30px 0px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.work .title {
  text-align: center;
  font-family: var(--mont);
  font-weight: 700;
  font-size: 30px;
  line-height: 50px;
  color: rgb(2, 52, 48);
}

.work-img {
  width: 60%;
  height: 200px;
  margin: auto;
}

.work-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background-position: top;
  border-radius: 40px;
  transition: transform;
  transition-duration: 0.4s;
}

.work-img img:hover {
  transform: scale(0.95);
}

.core {
  display: flex;
  justify-content: space-around;
  align-items: center;
  text-align: center;
  flex-wrap: wrap;
  gap: 20px;
}


.core h2 {
  font-weight: 500;
  font-size: 20px;
  line-height: 25px;
  font-family: var(--mont);
}

.core i {
  font-size: 50px;
  color: rgb(64, 179, 62);
}

.core p {
  font-weight: 400;
  font-family: var(--mont);
  color: rgb(2, 52, 48);
}

.core1,
.core2,
.core3,
.core4,
.core5 {
  display: flex;
  flex-direction: column;
  gap: 30px;
  width: 25%;
  /* border: 1px solid rgb(64, 179, 62); */
  /* box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19); */
}

.work-cause {
  background-color: rgb(64, 179, 62);
  padding: 15px;
  border-radius: 50px;
  text-decoration: none;
  color: #063837;
  font-family: var(--mont);
  line-height: 15px;
  font-size: 12px;
  font-weight: 900;
  gap: 10px;
}

.work-s {
  text-align: center;
  padding: 30px 0px;
}

.work-cause i {
  background-color: rgb(2, 52, 48);
  color: rgb(224, 225, 204);
  font-size: 18px;
  padding: 5px 12px;
  border-radius: 100%;
}


.resources {
  width: 90%;
  margin: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 30px;
  padding: 30px 0px;
}

.tl {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 25px;
}

.tl-img {
  width: 50%;
  height: 100%;
  display: flex;
  justify-content: center;
  padding: 25px;
}

.tl-img img {
  width: 90%;
  height: 100%;
  object-fit: cover;
}

.resources h2 {
  font-family: var(--mont);
  font-size: 22px;
  font-weight: 500;
  padding: 20px;
}

.resources p {
  font-family: var(--mont);
}

.res-left,
.res-right {
  width: 90%;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  display: flex;
  justify-content: center;
  transition-duration: 0.4s;
  cursor: pointer;
  border-radius: 20px;
}


.res-left:hover,
.res-right:hover {
  transform: scale(1.05);
}

footer {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

footer a {
  text-decoration: none;
  color: green;
  font-family: var(--mont);
}

.foot {
  display: flex;
  justify-content: space-between;
  padding: 10px 30px;
  align-items: center;
  gap: 30px;
}

.socials {
  display: flex;
  gap: 35px;
  align-items: center;
}

.socials a {
  transition: transform;
  transition-duration: 0.4s;
}


.socials a:hover {
  transform: scale(1.1);
}

.foot p {
  font-family: var(--mont);
  font-weight: 500;
  font-size: 14px;
}


.dark {
  background-color: rgb(2, 52, 48);
  color: white;
}

.text-white {
  color: white;
}

@media screen and (max-width: 768px) {

  nav {
    justify-content: space-between;
  }

  .nav-links {
    display: none;
  }

  .nav-right a {
    font-size: 11px;
  }

  .nav-right button {
    display: block;
  }

  .hero-text h2 {
    font-size: 25px;
    line-height: 45px;
  }

  .hero-text p {
    font-size: 14px;
  }

  .about-us {
    flex-direction: column;
  }

  .abt-left,
  .abt-right {
    width: 100%;
  }

  .numbers {
    flex-direction: column;
  }

  .mission {
    flex-direction: column;
  }

  .num-left,
  .num-right,
  .mission-left,
  .mission-right {
    width: 100%;
  }

  .num-right p {
    font-size: 40px;
    bottom: 0;
  }

  .work h2 {
    font-size: 34px;
    line-height: 43px;
  }

  .core {
    gap: 30px
  }

  .core h2 {
    font-size: 18px;
    line-height: 23px;
  }

  .core p {
    font-size: 16px;
    line-height: 27px;
    width: 70%;
    margin: auto;
  }

  .core1,
  .core2,
  .core3,
  .core4,
  .core5 {
    width: 100%;
  }

  .breathe p {
    font-size: 34px;
    line-height: 43px;
  }

  .res-left,
  .res-right {
    flex-direction: column;
  }

  .tl,
  .tl-img {
    width: 100%;
  }

  .socials {
    gap: 10px;
  }
}

@media screen and (min-width: 767px) {

  .breathe-text {
    bottom: 50px;
    left: 30px;
  }

  .breathe p {
    font-size: 60px;
  }
}