@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
  text-decoration: none;
}

ul {
  list-style: none;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  color: #595959;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.2;
}

h1 {
  font-size: 45px;
  font-weight: 600;
  color: #262626;
}

h2 {
  font-size: 35px;
  font-weight: 600;
  color: #262626;
}

h3 {
  font-size: 20px;
  font-weight: 500;
  color: #262626;
}

h5 {
  font-size: 16px;
  font-weight: 400;
  color: #40bf4f;
}

a {
  font-size: 17px;
  color: #595959;
}

.bg-grey {
  background: #f1f7f7;
}

.p-30 {
  padding: 30px;
}

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

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

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

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

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

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

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

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

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

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

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

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

.color {
  color: #40bf4f;
}

.relative {
  position: relative;
}

.z-1 {
  z-index: 1;
}

.container {
  width: 1140px;
  margin-left: auto;
  margin-right: auto;
}

.img-responsive {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.white {
  color: #fff;
}

.light {
  color: #7cff37;
}

.over-x {
  overflow-x: clip;
}

.flex {
  display: flex;
}

.f-d-r {
  display: flex;
  flex-direction: row;
}

.f-d-c {
  display: flex;
  flex-direction: column;
}

.grid {
  display: grid;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.grid-3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}

.grid-4 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

.grid-5 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
}

.align-center {
  align-items: center;
}

.align-start {
  align-items: flex-start;
}

.align-end {
  align-items: flex-end;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.justify-sb {
  justify-content: space-between;
}

.space-between {
  justify-content: space-between;
}

.justify-center {
  justify-content: center;
}

.gap-5 {
  gap: 5px;
}

.gap-7 {
  gap: 7px;
}

.gap-10 {
  gap: 10px;
}

.gap-15 {
  gap: 15px;
}

.gap-20 {
  gap: 20px;
}

.gap-25 {
  gap: 25px;
}

.gap-30 {
  gap: 30px;
}

.gap-35 {
  gap: 35px;
}

.gap-40 {
  gap: 40px;
}

.gap-45 {
  gap: 45px;
}

.gap-50 {
  gap: 50px;
}

.gap-60 {
  gap: 60px;
}

.hvr-link a {
  position: relative;
}
.hvr-link a::after {
  content: "";
  position: absolute;
  height: 1px;
  width: 0;
  bottom: -2px;
  right: 0;
  left: auto;
  background: #fff;
  transition: all 0.5s ease-in-out;
}
.hvr-link a:hover::after {
  width: 100%;
  left: 0;
  right: auto;
  transition: all 0.5s ease-in-out;
}
.hvr-link a.active::after {
  background: #7cff37 !important;
}
.hvr-link.primary a::after {
  background: #174101;
}

.primary-btn {
  border: 1.2px solid #40bf4f;
  padding: 12px 22px;
  display: inline-flex;
  align-items: center;
  gap: 10.3px;
  font-size: 17px;
  text-align: center;
  background: #40bf4f;
  color: #fff !important;
  font-family: "Poppins", sans-serif;
  border-radius: 5px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.primary-btn .donation {
  width: 15.67px;
  height: 15.67px;
}
.primary-btn::before {
  content: "";
  position: absolute;
  width: 0%;
  height: 100%;
  left: -30%;
  top: 0;
  transition: all 0.5s ease-in-out;
  transform: skewX(40deg);
  background: #2d8738;
  z-index: -1;
}
.primary-btn:hover {
  border: 1.2px solid #2d8738;
  color: #fff;
}
.primary-btn:hover::before {
  transition: all 0.5s ease-in-out;
  left: -15%;
  width: 140%;
}
.primary-btn.blank {
  border: 2px solid #174101;
  color: #174101;
  background: #fff;
  padding: 10px 22px;
  transition: all 0.5s ease-in-out;
}
.primary-btn.blank img {
  transition: all 0.5s ease-in-out;
}
.primary-btn.blank::before {
  background: #174101;
  transition: all 0.5s ease-in-out;
}
.primary-btn.blank:hover {
  color: #fff;
  transition: all 0.5s ease-in-out;
}
.primary-btn.blank:hover img {
  filter: brightness(0) invert(1);
  transition: all 0.5s ease-in-out;
}
.primary-btn.fill {
  border: 2px solid #174101;
  color: #fff;
  background: #174101;
  padding: 10px 22px;
  transition: all 0.5s ease-in-out;
}
.primary-btn.fill::before {
  background: #40bf4f;
  transition: all 0.5s ease-in-out;
}
.primary-btn.fill:hover {
  border: 2px solid #40bf4f;
  color: #fff;
  transition: all 0.5s ease-in-out;
}

.main-bg {
  position: relative;
  background: linear-gradient(to bottom, #f3f8ff, #fff);
  z-index: 1;
}

.navbar {
  width: 100%;
  background: #fff;
  background: #fff;
  transition: all 0.5s ease-in-out;
  box-shadow: 0px 3px 32px rgba(0, 0, 0, 0.0784313725);
}
.navbar.small {
  position: fixed;
  top: 0;
  width: 100%;
  left: 0;
  z-index: 999;
}
.navbar .main-nav {
  padding: 10px 0px;
  transition: all 0.5s ease-in-out;
}
.navbar .main-nav .nav-list li a {
  color: #000;
}
.navbar .main-nav .nav-list li a.active {
  color: #7cff37;
}
.navbar .nav-logo img {
  width: auto;
  height: 110px;
  transition: all 0.5s ease-in-out;
}
.navbar.small {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
  transition: all 0.5s ease-in-out;
}
.navbar.small .main-nav {
  padding: 5px 0px;
  transition: all 0.5s ease-in-out;
}
.navbar.small .nav-logo img {
  width: auto;
  height: 100px;
  transition: all 0.5s ease-in-out;
}

.nav-contentsdiff {
  padding: 28px 0px;
}
.nav-contentsdiff a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: 0.6s ease all;
}
.nav-contentsdiff a .drop {
  width: auto;
  height: 6px;
}
.nav-contentsdiff .dropdownmenu {
  position: absolute;
  margin-top: 65px;
  text-align: left;
  min-width: 200px;
  background: #fff;
  box-shadow: 0px 6px 32px rgba(0, 0, 0, 0.1215686275);
  list-style: none;
  z-index: -1;
  opacity: 0;
  visibility: hidden;
  font-size: 16px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.nav-contentsdiff .dropdownmenu li {
  padding: 10px 25px;
  transition: all 0.3s ease-in-out;
}
.nav-contentsdiff .dropdownmenu li a {
  font-size: 16px;
  color: #262626;
  transition: all 0.3s ease-in-out;
}
.nav-contentsdiff .dropdownmenu li:hover {
  background: #174101;
  transition: all 0.3s ease-in-out;
}
.nav-contentsdiff .dropdownmenu li:hover a {
  color: #fff;
  transition: all 0.3s ease-in-out;
}
.nav-contentsdiff .dropdownmenu li:hover a::after {
  background: #fff;
}
.nav-contentsdiff .dropdownmenu :nth-child(1) {
  border-radius: 8px 8px 0px 0px;
}
.nav-contentsdiff .dropdownmenu :nth-last-child(1) {
  border-radius: 0px 0px 8px 8px;
}
.nav-contentsdiff:hover .dropdownmenu {
  margin-top: 30px;
  opacity: 1;
  z-index: 99;
  visibility: visible;
  transition: all 0.3s ease-in-out;
}

.mobilemenucontainer {
  display: none;
}

.main-banner, .main-banners {
  position: relative;
  padding: 140px 0px;
  z-index: 1;
}
.main-banner::before, .main-banners::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: rgba(0, 0, 0, 0.3);
  z-index: 0;
}
.main-banner .main-banner-img, .main-banners .main-banner-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.main-banner .main-content, .main-banners .main-content {
  position: relative;
  color: #fff;
  max-width: 525px;
}
.main-banner .main-content h1, .main-banners .main-content h1 {
  color: #fff;
  margin-bottom: 20px;
}
.main-banner .main-content p, .main-banners .main-content p {
  max-width: 440px;
}
.main-banner .main-content .primary-btn, .main-banners .main-content .primary-btn {
  margin-top: 35px;
}
.main-banner .main-contents, .main-banners .main-contents {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 30px;
  align-items: center;
}
.main-banner .main-contents h1, .main-banners .main-contents h1 {
  color: #fff;
  margin-bottom: 20px;
}
.main-banner .main-contents p, .main-banners .main-contents p {
  max-width: 440px;
  color: #fff;
}
.main-banner .main-contents .primary-btn, .main-banners .main-contents .primary-btn {
  margin-top: 35px;
}
.main-banner .main-contents .contact-form h2, .main-banners .main-contents .contact-form h2 {
  color: #fff;
  margin-bottom: 20px;
}
.main-banner .main-contents .contact-form.new, .main-banners .main-contents .contact-form.new {
  background: #349b40;
  padding: 30px;
  border-radius: 10px;
}

.main-banners {
  padding: 60px 0px;
}

.about-grid .image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}
.about-grid .image-wrapper .img {
  position: absolute;
  border: 5px solid #fff;
  box-shadow: 0px 4px 32px rgba(140, 192, 88, 0.1607843137);
  border-radius: 5px;
  -o-object-fit: cover;
     object-fit: cover;
}
.about-grid .image-wrapper .img:nth-child(1) {
  top: 0;
  left: 5%;
  width: 50%;
  height: 70%;
}
.about-grid .image-wrapper .img:nth-child(2) {
  top: 20%;
  right: 0;
  width: 51%;
  height: 77%;
}
.about-grid .about-content h2 {
  margin-top: 5px;
  margin-bottom: 15px;
}
.about-grid .about-content p {
  margin-bottom: 20px;
}
.about-grid .about-content ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.about-grid .about-content ul li img {
  width: 18px;
}
.about-grid .about-content .primary-btn {
  margin-top: 35px;
}

.topic {
  text-align: center;
  max-width: 660px;
  margin: auto;
}
.topic h2 {
  margin-top: 5px;
  margin-bottom: 15px;
}

.services-card {
  width: 100%;
  overflow: hidden;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0px 4px 32px rgba(23, 65, 1, 0.1019607843);
  transition: all 0.5s ease-in-out;
}
.services-card .service-img {
  width: 100%;
  height: 240px;
  transition: all 0.5s ease-in-out;
}
.services-card .service-img img {
  height: 100%;
}
.services-card .card-content {
  padding: 20px 25px 25px 25px;
}
.services-card .card-content h3 {
  margin-bottom: 10px;
  color: #262626;
}
.services-card .card-content p {
  color: #595959;
  margin-bottom: 20px;
}
.services-card .card-content h4 {
  font-size: 14px;
  font-weight: 400;
  color: #40bf4f;
}
.services-card:hover {
  transform: translateY(-4px);
  transition: all 0.5s ease-in-out;
}
.services-card:hover .service-img {
  transform: scale(1.04);
  transition: all 0.5s ease-in-out;
}

.progress-bar {
  background: linear-gradient(to right, #4caf50, #8bc34a);
  border-radius: 2px;
}

.partnerSwiper {
  padding: 10px;
  padding-bottom: 130px;
}
.partnerSwiper .swiper-pagination {
  bottom: 60px;
}
.partnerSwiper .swiper-pagination-bullet {
  width: 25px;
  height: 6px;
  color: #262626;
  border-radius: 3px;
}
.partnerSwiper .swiper-pagination-bullet-active {
  background: #40bf4f;
}

.partner-card {
  width: 100%;
  height: 170px;
  padding: 30px;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}
.partner-card img {
  height: 100%;
}

.blog-card {
  width: 100%;
  overflow: hidden;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0px 4px 32px rgba(23, 65, 1, 0.1019607843);
  transition: all 0.5s ease-in-out;
}
.blog-card .blog-img {
  transition: all 0.5s ease-in-out;
  width: 100%;
  height: 330px;
}
.blog-card .blog-img img {
  height: 100%;
}
.blog-card .card-content {
  padding: 20px 25px 25px 25px;
}
.blog-card .card-content h6 {
  font-size: 14px;
  color: #cccccc;
  font-weight: 300;
}
.blog-card .card-content h3 {
  margin: 15px 0px 20px;
}
.blog-card .card-content p {
  margin-bottom: 15px;
}
.blog-card .card-content h4 {
  font-size: 17px;
  font-weight: 400;
  color: #40bf4f;
}
.blog-card:hover {
  transform: translateY(-3px);
  transition: all 0.5s ease-in-out;
}
.blog-card:hover .blog-img {
  transform: scale(1.04);
  transition: all 0.5s ease-in-out;
}

/* TESTIMONIAL SECTION START HERE */
.swiper-button-prev:after,
.swiper-button-next:after {
  content: "";
}

.tesSwiper {
  margin-top: 30px;
  padding: 10px;
  overflow: visible;
  overflow-x: clip;
}
.tesSwiper .swiper-horizontal > .swiper-pagination-bullets,
.tesSwiper .swiper-pagination-bullets.swiper-pagination-horizontal,
.tesSwiper .swiper-pagination-custom,
.tesSwiper .swiper-pagination-fraction {
  bottom: -40px;
  left: 0;
  width: 100%;
}
.tesSwiper .swiper-pagination-bullet-active {
  background: #174101;
}
.tesSwiper .swiper-pagination-bullet {
  width: 14px;
  height: 14px;
}

.testimonial-flex {
  margin-top: 35px;
  gap: 60px;
}

.testimonials {
  position: relative;
}

.quotes {
  position: absolute;
  font-size: 150px;
  color: #174101;
  opacity: 20%;
  top: 50%;
  right: 7%;
  animation: cubes 10s ease-in-out infinite;
}

.img {
  display: grid;
  grid-template-columns: repeat(14, 12px);
  grid-template-rows: repeat(11, 12px);
  transition: all 0.5s ease-in-out;
}

.testimonial-img {
  position: relative;
  grid-area: 1/5/2/span 5;
  width: auto;
  border-radius: 5px;
}

.img:hover {
  transform: translateY(-3px);
  transition: all 0.5s ease-in-out;
}

.square-box {
  width: auto;
  border: 2px solid #40bf4f;
  border-radius: 5px;
  grid-area: 12/4/2/span 10;
}

.testimonial-card {
  margin-top: -60px;
  background: #fff;
  box-shadow: 5px 5px 45px rgba(0, 101, 39, 0.1019607843);
  padding: 96px 35px 35px 35px;
  border-radius: 5px;
}

.testimonial-card h4 {
  margin-top: 25px;
  color: #40bf4f;
  font-weight: 600;
  margin-bottom: 5px;
}

/* TESTIMONIAL SECTION END HERE */
.footer {
  position: relative;
  padding-top: 100px;
  background: linear-gradient(to top, #4e8d2e, #40bf4f);
  z-index: 1;
}
.footer .left-footer {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 500px;
  z-index: -1;
}
.footer .right-footer {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 500px;
  z-index: -1;
}
.footer .footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr;
  gap: 100px;
  padding-bottom: 60px;
}
.footer .footer-grid .footer-content {
  color: #fff;
}
.footer .footer-grid .footer-content .footer-logo {
  width: 300px;
  margin-bottom: 15px;
}
.footer .footer-grid .footer-content .footer-logo img {
  filter: brightness(0) invert(1);
}
.footer .footer-grid .footer-content .primary-btn {
  margin-top: 30px;
}
.footer .footer-grid .footer-content h3 {
  margin-bottom: 30px;
  color: #fff;
}
.footer .footer-grid .footer-content ul {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.footer .footer-grid .footer-content ul li a {
  color: #fff;
}
.footer .footer-grid .footer-content .contact-info-wrap {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.footer .footer-grid .footer-content .contact-info-wrap .contact-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer .footer-grid .footer-content .contact-info-wrap .contact-wrap i {
  font-size: 20px;
}
.footer .footer-grid .footer-content .contact-info-wrap .contact-wrap a {
  color: #fff;
}
.footer .end-box {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  padding-top: 25px;
  padding-bottom: 25px;
  border-top: 1px solid #44c54f;
}

.single-main {
  background: url(../images/single-main.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 74px 0px;
}

.main-content-1 h1 {
  font-size: 40px;
  margin-bottom: 7px;
}
.main-content-1 .breadcrumb li {
  display: inline-block;
  color: #40bf4f;
}
.main-content-1 .breadcrumb li + li::before {
  padding-left: 5px;
  padding-right: 2px;
  content: "- ";
  color: #262626;
}

.about-img {
  height: 370px;
  border-radius: 10px;
}

.images {
  position: relative;
}
.images .img {
  position: absolute;
  border-radius: 10px;
}
.images .img:nth-child(1) {
  top: 0;
  left: 0%;
  width: 47%;
  height: 48%;
}
.images .img:nth-child(2) {
  top: 0%;
  right: 0;
  width: 50%;
  height: 100%;
}
.images .img:nth-child(3) {
  width: 47%;
  height: 48%;
  left: 0;
  bottom: 0;
}

.heading {
  position: relative;
}
.heading h5 {
  margin-bottom: 10px;
}
.heading h2 {
  margin-bottom: 20px;
}
.heading p {
  margin-bottom: 20px;
}
.heading .primary-btn {
  margin-top: 15px;
}

.unique-card {
  background: #fff;
  box-shadow: 0px 4px 32px rgba(0, 128, 175, 0.1215686275);
  padding: 30px 25px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.unique-card .icon {
  width: 45px;
}
.unique-card h3 {
  margin-top: 25px;
  margin-bottom: 20px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
}
.contact-grid h2 {
  font-size: 25px;
}
.contact-grid .contact-form h2 {
  margin-bottom: 20px;
}
.contact-grid .follow h2 {
  margin-bottom: 15px;
}
.contact-grid .responsive-map {
  overflow: hidden;
  padding-bottom: 87%;
  position: relative;
  border-radius: 20px;
}
.contact-grid .responsive-map iframe {
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  position: absolute;
}

.connect-card {
  position: relative;
  width: 100%;
  background: #fff;
  border-radius: 10px;
  padding: 35px 42px;
  box-shadow: 0px 4px 32px rgba(23, 65, 1, 0.1019607843);
  cursor: pointer;
  overflow: hidden;
  transition: all 0.5s ease-in-out;
}
.connect-card::before {
  content: "";
  position: absolute;
  width: 0%;
  height: 5px;
  background: #40bf4f;
  right: 0;
  bottom: 0;
  transition: all 0.5s ease-in-out;
}
.connect-card .contact-icon {
  background: #f1f7f7;
  color: #40bf4f;
  width: 78px;
  height: 78px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  font-size: 25px;
  justify-content: center;
}
.connect-card a {
  color: #262626;
  transition: all 0.5s ease-in-out;
}
.connect-card h3 {
  margin-top: 25px;
  margin-bottom: 15px;
}
.connect-card:hover::before {
  width: 100%;
  left: 0;
  transition: all 0.5s ease-in-out;
}

input {
  width: 100%;
  padding: 13px 20px;
  border: 2px solid #e6e6e6;
  border-radius: 2px;
  color: #afafaf;
  font-size: 17px;
  font-weight: 300;
  font-family: "Poppins", sans-serif;
}
input.white {
  color: #000;
  background: #fff;
}

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

::placeholder {
  color: #afafaf;
}

textarea {
  width: 100%;
  padding: 15px 20px;
  border: 2px solid #e6e6e6;
  border-radius: 2px;
  color: #afafaf;
  font-size: 17px;
  font-weight: 300;
  resize: none;
  font-family: "Poppins", sans-serif;
}
textarea.white {
  color: #000;
  background: #fff;
}

.details-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
}

.details-content .b-r-img {
  border-radius: 10px;
  margin-bottom: 30px;
  width: 100%;
  height: 400px;
  -o-object-fit: cover;
     object-fit: cover;
}
.details-content h4 {
  font-weight: 400;
}

.content-change {
  padding-top: 30px;
  border-top: 1px solid rgba(140, 192, 88, 0.1490196078);
}
.content-change .previous,
.content-change .next {
  width: 100%;
}
.content-change .previous a,
.content-change .next a {
  color: #40bf4f;
}
.content-change .previous h4,
.content-change .next h4 {
  color: #262626;
}
.content-change .previous {
  margin: auto auto auto 0;
}
.content-change .next {
  text-align: right;
  margin: auto 0 auto auto;
}

.category-card {
  position: sticky;
  top: 20%;
  left: 0;
  background: #fff;
  border-radius: 10px;
  padding: 35px;
  box-shadow: 0px 4px 24px rgba(4, 146, 71, 0.1019607843);
}
.category-card h2 {
  font-size: 25px;
  margin-bottom: 7.5px;
}
.category-card .line {
  height: 3px;
  width: 44px;
  margin-bottom: 10px;
  background: #40bf4f;
}
.category-card .news .news-image {
  width: 105px;
  height: 98px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 5px;
}
.category-card .news h3 {
  font-size: 20px;
}
.category-card .news h4 {
  font-weight: 400;
  font-size: 16px;
}

.content-wrapper h1 {
  font-size: 35px;
  margin-bottom: 20px;
  font-weight: 600;
}
.content-wrapper h2 {
  font-size: 25px;
  margin-top: 30px;
  margin-bottom: 20px;
  font-weight: 600;
}
.content-wrapper p {
  font-size: 18px;
  margin-bottom: 25px;
  font-weight: 400;
}
.content-wrapper ul {
  padding-left: 10px;
  margin-bottom: 15px;
}
.content-wrapper ul li {
  margin-top: 8px;
  list-style: disc;
}
.content-wrapper a {
  font-size: 18px;
  font-weight: 400;
  color: #40bf4f;
}

.new-blog h3 {
  transition: all 0.5s ease-in-out;
}
.new-blog:hover h3 {
  color: #40bf4f;
  transition: all 0.5s ease-in-out;
}

.process-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}
.process-grid .step-wraps {
  position: relative;
}
.process-grid .step-wraps img {
  border-radius: 10px;
  box-shadow: 0px 4px 32px rgba(23, 65, 1, 0.0784313725);
}
.process-grid .steps-content h2 {
  margin-bottom: 20px;
}
.process-grid .steps-content p {
  margin-bottom: 25px;
}
.process-grid:nth-child(odd) {
  margin: 60px 0px;
  grid-template-columns: 1fr 1fr;
}
.process-grid:nth-child(odd) .step-wraps {
  grid-area: 1;
}
.process-grid:nth-child(1) {
  margin: 0px;
  margin-bottom: 60px;
}

@media (max-width: 1200px) {
  .container {
    width: 90%;
  }
}
@media (max-width: 1040px) {
  .container {
    width: 95%;
  }
  h1 {
    font-size: 35px;
  }
  h2 {
    font-size: 30px;
  }
  h3 {
    font-size: 20px;
  }
  h5 {
    font-size: 16px;
  }
  a {
    font-size: 16px;
  }
  .pt-100 {
    padding-top: 70px;
  }
  .pb-100 {
    padding-bottom: 70px;
  }
  .mt-40 {
    margin-top: 35px;
  }
  .mt-45 {
    margin-top: 40px;
  }
  .grid-3 {
    grid-template-columns: 1fr 1fr;
  }
  .gap-40 {
    gap: 30px;
  }
  .gap-60 {
    gap: 40px;
  }
  .primary-btn {
    font-size: 16px;
  }
  .navbar {
    display: none;
  }
  .mobilemenucontainer {
    display: block;
    background: #fff;
  }
  .mobilemenucontainer .visible-menu {
    width: 100%;
    height: 100%;
    background: #fff;
    overflow: hidden;
    z-index: 22;
    padding: 15px 0px;
    transition: all 0.5s ease-in-out;
  }
  .mobilemenucontainer .visible-menu .upper-logo {
    width: auto;
    height: 85px;
    -o-object-fit: cover;
       object-fit: cover;
    transition: all 0.5s ease-in-out;
  }
  .mobilemenucontainer .visible-menu .upper-logo img {
    width: auto;
    height: 85px;
    transition: all 0.5s ease-in-out;
  }
  .mobilemenucontainer .visible-menu.small {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    padding: 10px 0px;
    box-shadow: 0px 4px 32px rgba(0, 128, 175, 0.1215686275);
    z-index: 999;
    transition: all 0.5s ease-in-out;
  }
  .mobilemenucontainer .visible-menu.small .upper-logo {
    width: auto;
    height: 80px;
    -o-object-fit: cover;
       object-fit: cover;
    transition: all 0.5s ease-in-out;
  }
  .mobilemenucontainer .visible-menu.small .upper-logo img {
    width: auto;
    height: 80px;
    transition: all 0.5s ease-in-out;
  }
  .mobilemenucontainer .visible-menu.small .ham-icon {
    color: #174101;
  }
  .mobilemenucontainer .upper-logo {
    width: auto;
    height: 85px;
    -o-object-fit: cover;
       object-fit: cover;
    transition: all 0.5s ease-in-out;
  }
  .mobilemenucontainer .upper-logo img {
    width: auto;
    height: 85px;
  }
  .mobilemenucontainer .ham-icon {
    font-size: 30px;
    color: #174101;
  }
  .mobilemenucontainer .menucontents {
    background: #fff;
    position: fixed;
    left: -250px;
    opacity: 0;
    top: 0;
    /* overflow: hidden; */
    visibility: hidden;
    transition: all 0.5s ease-in-out;
    height: 100%;
    width: 100%;
    overflow-y: scroll;
    z-index: 999;
  }
  .mobilemenucontainer .menucontents.active {
    visibility: visible;
    opacity: 1;
    left: 0;
    top: 0;
    width: 100%;
  }
  .mobilemenucontainer .menucontents .menutop {
    background: #fff;
    box-shadow: 0px 4px 32px rgba(0, 128, 175, 0.1215686275);
  }
  .mobilemenucontainer .menucontents .menutop .menu-flex {
    padding: 10px 0px;
  }
  .mobilemenucontainer .menucontents .menutop .menu-flex img {
    filter: brightness(1) invert(0);
  }
  .mobilemenucontainer .menucontents .menucontentslist {
    padding: 10px 0;
  }
  .mobilemenucontainer .menucontents .menucontentslist .menuindividual {
    padding: 15px 20px;
  }
  .mobilemenucontainer .menucontents .menucontentslist a {
    color: #262626;
    text-decoration: none;
    display: block;
    font-weight: 400;
    display: block;
    font-weight: 400;
    transition: all 0.5s ease-in-out;
    text-decoration: none;
  }
  .mobilemenucontainer .menucontents .menucontentslist a:hover {
    transition: all 0.5s ease-in-out;
  }
  .mobilemenucontainer .cross-icon {
    font-size: 40px;
    color: #262626;
  }
  .menuaccordians .menuaccordian {
    padding: 0px 30px;
  }
  .menuaccordians .menuaccordian img {
    width: auto;
    height: 6px;
  }
  .acc-content {
    max-height: 0;
    margin: 0 2rem;
    padding-left: 1rem;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out;
  }
  .acc-content a {
    margin-bottom: 15px;
  }
  .main-banner {
    padding: 100px 0px;
  }
  .main-banner .main-content {
    max-width: 500px;
  }
  .main-banner .main-content h1 {
    margin-bottom: 18px;
  }
  .main-banner .main-content p {
    max-width: 400px;
  }
  .main-banner .main-content .primary-btn {
    margin-top: 30px;
  }
  .main-banners .main-contents {
    padding: 0px 40px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .main-banners .main-contents h1 {
    margin-bottom: 18px;
  }
  .main-banners .main-contents p {
    max-width: 400px;
  }
  .main-banners .main-contents .primary-btn {
    margin-top: 30px;
  }
  .about-grid .image-wrapper .img:nth-child(1) {
    top: 0;
    left: 5%;
    width: 70%;
    height: 50%;
  }
  .about-grid .image-wrapper .img:nth-child(2) {
    top: 30%;
    right: 0;
    width: 70%;
    height: 55%;
  }
  .about-grid .about-content h2 {
    margin-top: 5px;
    margin-bottom: 13px;
  }
  .about-grid .about-content p {
    margin-bottom: 18px;
  }
  .about-grid .about-content ul li {
    gap: 8px;
    margin-bottom: 8px;
  }
  .about-grid .about-content ul li img {
    width: 16px;
  }
  .about-grid .about-content .primary-btn {
    margin-top: 30px;
  }
  .topic {
    max-width: 450px;
  }
  .topic h2 {
    margin-top: 5px;
    margin-bottom: 13px;
  }
  .services-card .service-img {
    height: 240px;
  }
  .services-card .card-content {
    padding: 20px;
  }
  .services-card .card-content h3 {
    margin-bottom: 8px;
  }
  .services-card .card-content p {
    margin-bottom: 18px;
  }
  .services-card .card-content h4 {
    font-size: 14px;
  }
  .partnerSwiper {
    padding: 10px;
    padding-bottom: 100px;
  }
  .partnerSwiper .swiper-pagination {
    bottom: 40px;
  }
  .partnerSwiper .swiper-pagination-bullet {
    width: 20px;
    height: 5px;
  }
  .partner-card {
    height: 170px;
  }
  .blog-card .blog-img {
    height: 330px;
  }
  .blog-card .card-content {
    padding: 20px;
  }
  .blog-card .card-content h6 {
    font-size: 14px;
  }
  .blog-card .card-content h3 {
    margin: 13px 0px 18px;
  }
  .blog-card .card-content p {
    margin-bottom: 13px;
  }
  .blog-card .card-content h4 {
    font-size: 16px;
  }
  .footer {
    padding-top: 100px;
  }
  .footer .left-footer {
    width: 350px;
    height: auto;
    top: auto;
    bottom: 0;
  }
  .footer .right-footer {
    width: 350px;
    height: auto;
  }
  .footer .footer-grid {
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    padding-bottom: 60px;
  }
  .footer .footer-grid .footer-content {
    color: #fff;
  }
  .footer .footer-grid .footer-content .footer-logo {
    width: 300px;
    margin-bottom: 10px;
  }
  .footer .footer-grid .footer-content .primary-btn {
    margin-top: 25px;
  }
  .footer .footer-grid .footer-content h3 {
    margin-bottom: 25px;
  }
  .footer .footer-grid .footer-content ul {
    gap: 13px;
  }
  .footer .footer-grid .footer-content .contact-info-wrap {
    gap: 13px;
  }
  .footer .footer-grid .footer-content .contact-info-wrap .contact-wrap {
    gap: 10px;
  }
  .footer .footer-grid .footer-content .contact-info-wrap .contact-wrap i {
    font-size: 18px;
  }
  .footer .end-box {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .single-main {
    padding: 65px 0px;
  }
  .main-content-1 h1 {
    font-size: 35px;
    margin-bottom: 6px;
  }
  .about-img {
    height: 370px;
  }
  .images .img:nth-child(1) {
    top: 0;
    left: 0%;
    width: 47%;
    height: 48%;
  }
  .images .img:nth-child(2) {
    top: 0%;
    right: 0;
    width: 50%;
    height: 100%;
  }
  .images .img:nth-child(3) {
    width: 47%;
    height: 48%;
    left: 0;
    bottom: 0;
  }
  .heading h5 {
    margin-bottom: 8px;
  }
  .heading h2 {
    margin-bottom: 18px;
  }
  .heading p {
    margin-bottom: 18px;
  }
  .heading .primary-btn {
    margin-top: 13px;
  }
  .unique-card {
    padding: 25px;
  }
  .unique-card .icon {
    width: 40px;
  }
  .unique-card h3 {
    margin-top: 22px;
    margin-bottom: 18px;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .contact-grid h2 {
    font-size: 22px;
  }
  .contact-grid .contact-form h2 {
    margin-bottom: 18px;
  }
  .contact-grid .follow h2 {
    margin-bottom: 13px;
  }
  .contact-grid .responsive-map {
    padding-bottom: 80%;
  }
  .connect-card {
    padding: 30px 35px;
  }
  .connect-card .contact-icon {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }
  .connect-card h3 {
    margin-top: 18px;
    margin-bottom: 10px;
  }
  input {
    padding: 13px 20px;
    font-size: 16px;
  }
  textarea {
    padding: 15px 20px;
    font-size: 16px;
  }
  .details-grid {
    grid-template-columns: 1fr;
  }
  .details-content .b-r-img {
    margin-bottom: 25px;
    height: 350px;
  }
  .content-change {
    padding-top: 25px;
  }
  .category-card {
    position: unset;
    padding: 30px;
  }
  .category-card h2 {
    font-size: 22px;
    margin-bottom: 6px;
  }
  .category-card .line {
    height: 3px;
    width: 44px;
    margin-bottom: 8px;
  }
  .category-card .news .news-image {
    width: 105px;
    height: 98px;
  }
  .category-card .news h3 {
    font-size: 18px;
  }
  .category-card .news h4 {
    font-size: 16px;
  }
  .content-wrapper h1 {
    font-size: 32px;
  }
  .content-wrapper h2 {
    font-size: 22px;
    margin-top: 25px;
    margin-bottom: 18px;
  }
  .content-wrapper p {
    font-size: 16px;
    margin-bottom: 22px;
  }
  .content-wrapper ul {
    padding-left: 10px;
    margin-bottom: 13px;
  }
  .content-wrapper ul li {
    margin-top: 8px;
  }
  .content-wrapper a {
    font-size: 16px;
  }
  .process-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .process-grid .step-wraps {
    grid-area: 1;
  }
  .process-grid .steps-content h2 {
    margin-bottom: 18px;
  }
  .process-grid .steps-content p {
    margin-bottom: 22px;
  }
  .process-grid:nth-child(odd) {
    margin: 40px 0px;
    grid-template-columns: 1fr;
  }
  .process-grid:nth-child(odd) .step-wraps {
    grid-area: 1;
  }
  .process-grid:nth-child(1) {
    margin: 0px;
    margin-bottom: 40px;
  }
}
@media (max-width: 650px) {
  .container {
    width: 90%;
  }
  h1 {
    font-size: 32px;
  }
  h2 {
    font-size: 28px;
  }
  h3 {
    font-size: 19px;
  }
  h5 {
    font-size: 16px;
  }
  a {
    font-size: 16px;
  }
  .pt-100 {
    padding-top: 50px;
  }
  .pb-100 {
    padding-bottom: 50px;
  }
  .mt-40 {
    margin-top: 30px;
  }
  .mt-45 {
    margin-top: 35px;
  }
  .mt-70 {
    margin-top: 40px;
  }
  .grid-3 {
    grid-template-columns: 1fr;
  }
  .grid-2 {
    grid-template-columns: 1fr;
  }
  .gap-40 {
    gap: 25px;
  }
  .gap-60 {
    gap: 30px;
  }
  .mobilemenucontainer .visible-menu {
    padding: 10px 0px;
  }
  .mobilemenucontainer .visible-menu .upper-logo {
    height: 75px;
  }
  .mobilemenucontainer .visible-menu .upper-logo img {
    height: 75px;
  }
  .mobilemenucontainer .visible-menu.small {
    padding: 8px 0px;
  }
  .mobilemenucontainer .visible-menu.small .upper-logo {
    height: 65px;
  }
  .mobilemenucontainer .visible-menu.small .upper-logo img {
    height: 65px;
  }
  .mobilemenucontainer .upper-logo {
    height: 75px;
  }
  .mobilemenucontainer .upper-logo img {
    height: 75px;
  }
  .mobilemenucontainer .ham-icon {
    font-size: 25px;
  }
  .mobilemenucontainer .menucontents .menutop .menu-flex {
    padding: 8px 0px;
  }
  .mobilemenucontainer .menucontents .menucontentslist {
    padding: 8px 0;
  }
  .mobilemenucontainer .menucontents .menucontentslist .menuindividual {
    padding: 10px 15px;
  }
  .mobilemenucontainer .cross-icon {
    font-size: 35px;
  }
  .main-banner {
    padding: 70px 0px;
  }
  .main-banner .main-content {
    max-width: 500px;
  }
  .main-banner .main-content h1 {
    margin-bottom: 16px;
  }
  .main-banner .main-content p {
    max-width: 400px;
  }
  .main-banner .main-content .primary-btn {
    margin-top: 25px;
  }
  .main-banners .main-contents {
    padding: 0px 0px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .about-grid .image-wrapper {
    height: 520px;
  }
  .about-grid .image-wrapper .img:nth-child(1) {
    top: 0;
    left: 5%;
    width: 70%;
    height: 50%;
  }
  .about-grid .image-wrapper .img:nth-child(2) {
    top: 40%;
    right: 0;
    width: 70%;
    height: 55%;
  }
  .about-grid .about-content h2 {
    margin-top: 5px;
    margin-bottom: 12px;
  }
  .about-grid .about-content p {
    margin-bottom: 16px;
  }
  .about-grid .about-content ul li {
    gap: 6px;
    margin-bottom: 7px;
  }
  .about-grid .about-content ul li img {
    width: 16px;
  }
  .about-grid .about-content .primary-btn {
    margin-top: 25px;
  }
  .topic {
    max-width: 450px;
  }
  .topic h2 {
    margin-top: 5px;
    margin-bottom: 12px;
  }
  .services-card .service-img {
    height: 240px;
  }
  .services-card .card-content {
    padding: 20px;
  }
  .services-card .card-content h3 {
    margin-bottom: 8px;
  }
  .services-card .card-content p {
    margin-bottom: 16px;
  }
  .services-card .card-content h4 {
    font-size: 14px;
  }
  .partnerSwiper {
    padding: 10px;
    padding-bottom: 70px;
  }
  .partnerSwiper .swiper-pagination {
    bottom: 30px;
  }
  .partnerSwiper .swiper-pagination-bullet {
    width: 20px;
    height: 5px;
  }
  .partner-card {
    height: 170px;
  }
  .blog-card .blog-img {
    height: 280px;
  }
  .blog-card .card-content {
    padding: 20px;
  }
  .blog-card .card-content h6 {
    font-size: 14px;
  }
  .blog-card .card-content h3 {
    margin: 12px 0px 16px;
  }
  .blog-card .card-content p {
    margin-bottom: 12px;
  }
  .blog-card .card-content h4 {
    font-size: 14px;
  }
  .footer {
    padding-top: 50px;
  }
  .footer .left-footer {
    width: 100%;
    max-width: 250px;
    height: auto;
    top: auto;
    bottom: 0;
  }
  .footer .right-footer {
    width: 100%;
    max-width: 250px;
    height: auto;
  }
  .footer .footer-grid {
    grid-template-columns: 1fr;
    gap: 45px;
    padding-bottom: 45px;
  }
  .footer .footer-grid .footer-content .footer-logo {
    width: 100%;
    max-width: 280px;
    margin-bottom: 10px;
  }
  .footer .footer-grid .footer-content .primary-btn {
    margin-top: 20px;
  }
  .footer .footer-grid .footer-content h3 {
    margin-bottom: 20px;
  }
  .footer .footer-grid .footer-content ul {
    gap: 12px;
  }
  .footer .footer-grid .footer-content .contact-info-wrap {
    gap: 12px;
  }
  .footer .footer-grid .footer-content .contact-info-wrap .contact-wrap {
    gap: 10px;
  }
  .footer .footer-grid .footer-content .contact-info-wrap .contact-wrap i {
    font-size: 17px;
  }
  .footer .end-box {
    padding: 15px;
    text-align: center;
  }
  .single-main {
    padding: 50px 0px;
  }
  .main-content-1 h1 {
    font-size: 30px;
    margin-bottom: 6px;
  }
  .about-img {
    height: 320px;
  }
  .images .img:nth-child(1) {
    top: 0;
    left: 0%;
    width: 47%;
    height: 48%;
  }
  .images .img:nth-child(2) {
    top: 0%;
    right: 0;
    width: 50%;
    height: 100%;
  }
  .images .img:nth-child(3) {
    width: 47%;
    height: 48%;
    left: 0;
    bottom: 0;
  }
  .heading h5 {
    margin-bottom: 8px;
  }
  .heading h2 {
    margin-bottom: 16px;
  }
  .heading p {
    margin-bottom: 16px;
  }
  .heading .primary-btn {
    margin-top: 12px;
  }
  .images {
    position: relative;
    grid-area: 1;
    height: 300px;
  }
  .unique-card {
    padding: 25px;
  }
  .unique-card .icon {
    width: 35px;
  }
  .unique-card h3 {
    margin-top: 18px;
    margin-bottom: 16px;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .contact-grid h2 {
    font-size: 20px;
  }
  .contact-grid .contact-form h2 {
    margin-bottom: 16px;
  }
  .contact-grid .follow h2 {
    margin-bottom: 12px;
  }
  .contact-grid .responsive-map {
    padding-bottom: 80%;
  }
  .connect-card {
    padding: 30px;
  }
  .connect-card .contact-icon {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
  .connect-card h3 {
    margin-top: 16px;
    margin-bottom: 8px;
  }
  input {
    padding: 13px 20px;
    font-size: 16px;
  }
  textarea {
    padding: 15px 20px;
    font-size: 16px;
  }
  .details-grid {
    grid-template-columns: 1fr;
  }
  .details-content .b-r-img {
    margin-bottom: 20px;
    height: 280px;
  }
  .content-change {
    padding-top: 20px;
  }
  .category-card {
    position: unset;
    padding: 30px;
  }
  .category-card h2 {
    font-size: 20px;
    margin-bottom: 6px;
  }
  .category-card .line {
    height: 3px;
    width: 40px;
    margin-bottom: 8px;
  }
  .category-card .news .news-image {
    width: 80px;
    height: 80px;
  }
  .category-card .news h3 {
    font-size: 18px;
  }
  .category-card .news h4 {
    font-size: 16px;
  }
  .content-wrapper h1 {
    font-size: 30px;
  }
  .content-wrapper h2 {
    font-size: 22px;
    margin-top: 20px;
    margin-bottom: 16px;
  }
  .content-wrapper p {
    font-size: 16px;
    margin-bottom: 20px;
  }
  .content-wrapper ul {
    padding-left: 10px;
    margin-bottom: 12px;
  }
  .content-wrapper ul li {
    margin-top: 8px;
  }
  .content-wrapper a {
    font-size: 16px;
  }
  .process-grid {
    gap: 35px;
  }
  .process-grid .step-wraps {
    grid-area: 1;
  }
  .process-grid .steps-content h2 {
    margin-bottom: 16px;
  }
  .process-grid .steps-content p {
    margin-bottom: 20px;
  }
  .process-grid:nth-child(odd) {
    margin: 30px 0px;
    grid-template-columns: 1fr;
  }
  .process-grid:nth-child(odd) .step-wraps {
    grid-area: 1;
  }
  .process-grid:nth-child(1) {
    margin: 0px;
    margin-bottom: 30px;
  }
}/*# sourceMappingURL=style.css.map */