@import url("https://fonts.googleapis.com/css2?family=Oxygen:wght@300;400;700&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Oxygen", sans-serif;
  overflow-x: hidden;
}

p {
  font-size: 18px;
  color: #202714;
}
a {
  font-size: 18px;
  color: #202714;
  text-decoration: none;
}

.smallContainer {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding: 20px;
  flex-wrap: wrap;
}

.smallSizeImage img {
  max-height: 300px;
}

.smallSizeImage {
  padding: 10px;
}

/* header start */
/* topheader start*/
.topBorder {
  border-top: 10px solid green;
}

.topHeader {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 150px;
  background: #fff;
}

.topHeader .top-left .logoArea {
  display: flex;
  align-items: center;
  width: 120px;
  height: 120px;
}

.topHeader .top-left .logoArea img {
  display: flex;
  width: 120px;
  height: 120px;
}

.siteTitle {
  color: #01652b;
  font-family: "Amiko", Sans-serif;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.15em;
  margin-left: 15px;
}
.top-middle {
  display: flex;
  justify-content: right;
  align-items: center;
  height: 100%;
}

.top-right {
  display: flex;
  justify-content: right;
  align-items: center;
  height: 100%;
}
.emailIcon {
  height: 50px;
  width: 50px;
  background: #008036;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  color: #fff;
  margin-right: 20px;
}
.contactArea {
  display: flex;
  justify-content: center;
  align-items: center;
}
.contact-heading {
  font-size: 22px;
  font-weight: 600;
  color: #008036;
}
.contact a {
  font-size: 18px;
  font-weight: 500;
  color: #202714;
  text-decoration: none;
}
.donateButton {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.8px;
  background-color: #008036;
  border-style: solid;
  border-width: 2px 2px 2px 2px;
  border-color: #008036;
  border-radius: 150px 150px 150px 150px;
  box-shadow: 0px 6px 20px -2px rgba(0, 0, 0, 0.16);
  padding: 17px 26px 17px 26px;
  transition: all 0.5s;
}
.donateButton {
  color: #ffffff;
  text-decoration: none;
}
.donateButton:hover {
  background-color: transparent;
  color: #008036;
  border-color: #008036;
}
/* topheader close */
/* main menu start */
.mainMenu {
  background-color: #008036;
  display: flex;
  margin: 0px;
  padding: 0px;
  height: 50px;
}
.navbar {
  margin: -7px 0px 0px 0px;
}
.navbar-nav .nav-link.active,
.navbar-nav .show > .nav-link {
  color: #fff !important;
}
.mainMenu .nav-item {
  color: #fff;
}
.mainMenu .nav-item a {
  color: #fff;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 1;
  padding: 10px 20px !important;
}
.mainMenu .nav-item:hover,
.mainMenu .nav-item:focus,
.mainMenu .nav-item:active {
  background: #119c4b;
  color: #fff;
}
.mainMenu .nav-item a:hover,
.mainMenu .nav-item a:focus,
.mainMenu .nav-item a:active {
  background: #119c4b;
  color: #fff;
}
.searchArea {
  display: flex;
  justify-content: right;
  align-items: center;
  height: 100%;
}
.searchArea .searchIcon span i {
  font-size: 20px;
  color: #fff;
  cursor: pointer;
}
.searchArea .searchField input {
  margin-top: -5px;
  height: 35px;
  width: 200px;
  font-size: 18px;
  padding: 0px 10px;
  outline: none;
  display: none;
  transition: all 0.5s;
  transform: translateX(20%);
}
.inputAnimation {
  display: block !important;
  animation: inputAnimate 0.5s;
}
@keyframes inputAnimate {
  0% {
    width: 0px;
  }
  100% {
    width: 200px;
  }
}
/* HEader close */
/* main section start****************************************************** */

.activitiesBlog {
  display: flex;
  justify-content: center;
  flex-direction: column;
  margin-top: 3rem !important;
  margin-bottom: 3rem !important;
}
.activitiesBlog .BlogHeading {
  display: flex;
  flex-direction: column;
  justify-content: left;
}
.activitiesBlog .BlogHeading h1 {
  font-size: 40px;
  font-weight: 700;
  font-family: work sans !important;
  color: #008036;
}
.activitiesBlog .BlogHeading p {
  font-family: work sans !important;
  font-size: 18px !important;
  font-weight: 500;
  color: #333;
}
.featureImage {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.featureImage img {
  width: 100%;
  height: auto;
}
.blogDescription {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}

/* post image gallery start */
/* .tz-gallery {
  padding: 40px;
} */

.tz-gallery img {
  border-radius: 4px;
}

.baguetteBox-button {
  background-color: transparent !important;
}

@media (max-width: 768px) {
  body {
    padding: 0;
  }

  .container.gallery-container {
    border-radius: 0;
  }
}
.imageBox {
  position: relative;
}
.photoGallery .tz-gallery .lightbox img {
  width: 100%;
  height: 400px;
  margin-bottom: 30px;
  transition: 0.2s ease-in-out;
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.2);
  z-index: 0;
}

/* post image gallery close */

/* main section close****************************************************** */

/* Footer start */
.footer {
  background-color: #008036;
  padding: 50px 0px 0px 0px;
}
.footerLogoArea {
  display: flex;
  justify-content: left;
  align-items: center;
  flex-direction: column;
}
.footerLogoArea .logoArea {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0px 0px 10px -95px;
}
.footerLogoArea a img {
  width: 65px;
}
.footerLogoArea .siteTitle {
  color: #ffffff;
  font-size: 19px;
  line-height: 1.2em;
  margin-top: 10px;
}
.footerLogoArea .logoDes p {
  color: #f3f3f3;
  font-family: "Oxygen", Sans-serif;
  font-size: 16px;
  line-height: 1.5em;
  letter-spacing: 0.4px;
}
.footerLogoArea .ourCausesFooter {
  display: flex;
  justify-content: left;
  align-items: center;
  flex-direction: column !important;
}
.ftColumn {
  padding: 10px;
}
.ourCausesFooter h4 {
  color: #fff;
  margin-bottom: -5px;
}
.ourCausesFooter .divider {
  width: 50px;
  border-top: 2px solid #61ce70;
}
.listIcon ul {
  margin: 25px 0px 0px -30px;
}
.listIcon ul li {
  list-style: none;
  color: #fff;
  font-size: 17px;
  margin: 12px 0px 0px 0px;
}
.listIcon ul li span {
  margin: 0px 10px 0px 0px;
}
.ourCausesFooter .logoDes p {
  color: #f3f3f3;
  font-family: "Oxygen", Sans-serif;
  font-size: 16px;
  line-height: 1.5em;
  letter-spacing: 0.4px;
  margin-top: 25px;
}

.socialIcon {
  display: flex;
  margin-bottom: 20px;
}
.socialIcon span {
  height: 33px;
  width: 33px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  background-color: #fff;
  border-radius: 50%;
  margin: 5px;
  transition: 0.5s all;
}
.socialIcon span:hover {
  background-color: #e3e3e3;
}
.socialIcon span i {
  color: #008036;
}
/* Footer bottom */
.footerBottom {
  background-color: #01652b;
  border-style: solid;
  border-width: 4px 0px 0px 0px;
  border-color: #005925;
  padding: 15px 15px 15px 15px;
  color: #fff;
  padding: 15px 0px 5px 0px;
}
.footerBottom .copyRight {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footerBottom .copyRight p {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
}
.footerBottom .designerInfo p {
  display: flex;
  justify-content: right;
  align-items: center;
  color: #fff;
}
.footerBottom .designerInfo p a {
  color: yellow;
  text-decoration: none;
}
/* Footer Close */
