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

body {
  font-family: "Nunito Sans", sans-serif;
  line-height: 1.6;
  background-color: #ffffff;
  color: #252625;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}

.container {
  width: 100%;
  max-width: 1172px;
  margin: 0 auto;
  padding: 0px 16px;
}

:where(a) {
  color: #252625;
  text-decoration: none;
}

li {
  list-style-type: none;
}
ul {
  margin: 0;
}
.capitalize {
  text-transform: capitalize;
}
.primary-text {
  color: #6aa87c;
  font-weight: 800;
  font-style: italic;
}
.bold-text {
  font-weight: 700;
}
.section-space {
  margin-bottom: 80px;
}
.section-py {
  padding: 80px 0px;
}
.title {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 8px;
  margin-bottom: 40px;
}
.title-start {
  align-items: start;
  text-align: start;
}
/* reusable component styles */
:where(h1),
section h1 {
  font-size: 44px;
  line-height: normal;
  max-width: 558px;
  font-weight: 600;
  color: #252625;
}
:where(h2) {
  font-size: 36px;
  line-height: 48px;
  font-weight: 700;
  font-style: normal;
}

:where(h3),
.h3 {
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.sub_title {
  font-family: "Nunito Sans";
  font-size: 24px;
  line-height: normal;
  font-weight: 400;
  color: #363837;
}

.text-base {
  font-family: "Nunito Sans";
  font-size: 16px;
  line-height: normal;
  letter-spacing: 0px;
  font-style: normal;
  font-weight: 600;
  color: #767977;
}
.text-lg {
  font-family: "Nunito Sans";
  font-size: 18px;
  line-height: 28px;
  letter-spacing: 0px;
  font-weight: 400;
  color: #767977;
}

/* Button */
.btn {
  border-radius: 10px;
  padding: 13px 19px;
  cursor: pointer;
  font-family: "Nunito Sans";
  font-size: 18px;
  font-style: normal;
  line-height: 24px;
  font-weight: 600;
  display: inline-block;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
  isolation: isolate;
  position: relative;
  text-align: center;
}
.primary-btn {
  background-color: #6aa87c;
  color: #ffffff;
  border: 1px solid #6aa87c;
  box-shadow: 0px 10px 40px 0px rgba(106, 168, 124, 0.24);
}

.secondary-btn {
  background: #fff;
  border: 1px solid #fff;
  box-shadow: 0px 10px 40px 0px rgba(106, 168, 124, 0.24);
  color: #6aa87c;
}

.btn-outline {
  border: 1px solid #ffffff;
  box-shadow: 0px 10px 40px 0px rgba(106, 168, 124, 0.24);
  color: #fff;
}

.primary-btn::after,
.primary-btn::before,
.secondary-btn::after,
.secondary-btn::before,
.btn-outline::after,
.btn-outline::before {
  position: absolute;
  top: 0;
  display: block;
  height: 100%;
  width: 0;
  content: "";
  background-color: #4e865f;
  z-index: -1;
}

.secondary-btn::before,
.secondary-btn::after {
  background-color: #000;
}

.primary-btn::before,
.secondary-btn::before,
.btn-outline::before {
  left: 0;
}

.primary-btn::after,
.secondary-btn::after,
.btn-outline::after {
  right: 0;
  transition: width 0.4s ease;
}

.primary-btn:hover::before,
.secondary-btn:hover::before,
.btn-outline:hover::before {
  width: 100%;
  transition: width 0.4s ease;
}
.primary-btn:hover::after,
.btn-outline:hover::after,
.secondary-btn:hover::after {
  background-color: transparent;
  width: 100%;
}

/* header style start */
.header-container {
  width: 100%;
  max-width: 1408px;
  margin: 0 auto;
  padding: 0px 16px;
}

header.header {
  background-color: #fff;
  position: sticky;
  transition: all 0.3s ease-in-out;
  top: 0;
  z-index: 1005;
}
header.header.sticky {
  box-shadow: 0px 4px 24px 0px #6e6e6e1f;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 0;
}

.header-logo-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}

.header-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 178.29px;
  max-height: 36px;
  overflow: hidden;
}

.header-logo img {
  display: block;
  max-width: 178.29px;
  max-height: 36px;
  height: 100%;
  font-style: italic;
  object-fit: contain;
}

.menu-toggle {
  display: none;
}

.header-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 32px;
}

.nav-primary {
  display: flex;
  align-items: center;
  flex: 1;
}

.nav-item {
  line-height: 0;
  transition: all 0.3s ease-in-out;
}

.nav-link {
  display: inline-block;
  text-decoration: none;
  padding: 22.5px 16px;
  max-width: 133px;
  white-space: nowrap;
  overflow: hidden;
  border-bottom: 3px solid transparent;
  transition: all 0.3s ease-in-out;
}

.nav-link.active {
  color: #000000;
  border-bottom: 3px solid #6aa87c;
}

.nav-link:hover {
  color: #6aa87c;
  border-bottom: 3px solid #6aa87c;
}

.nav-secondary {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-secondary li {
  transition: all 0.3s ease-in-out;
}

.nav-secondary li a {
  display: inline-block;
  color: #6aa87c;
  transition: all 0.3s ease-in-out;
}
.nav-secondary li:last-child a {
  display: flex;
  color: #ffffff;
  transition: all 0.3s ease-in-out;
}
.nav-secondary li:last-child a:hover {
  color: #ffffff;
}
.nav-secondary li a:hover {
  color: #000000;
}

.header-cta {
  padding: 11px 15px;
  font-family: "Nunito Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.menu-toggle {
  display: none;
}
/* hero style start */
.main-hero {
  overflow: hidden;
  background-color: #f3f9f5;
}
.main-hero__wrapper {
  display: flex;
  padding: 124px 0;
  position: relative;
}
.main-hero__content {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 558px;
  z-index: 1;
}
.main-hero__text {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.main-hero__description {
  font-family: "Nunito Sans";
  font-size: 20px;
  line-height: 30px;
  letter-spacing: 0px;
  font-weight: 400;
  font-style: normal;
  color: #363837;
}
.main-hero__buttons {
  line-height: 0;
}

.main-hero__image {
  position: absolute;
  right: -150px;
  bottom: 0px;
  z-index: 0;
  max-width: 837px;
  height: auto;
  width: 100%;
  overflow: hidden;
  object-fit: cover;
}
.main-hero__image img {
  width: 100%;
  height: auto;
  line-height: 0;
  display: block;
}

/* About Intro style start */
.about-intro__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.about-intro__image {
  max-width: 558px;
  flex: 0 1 558px;
  width: 100%;
  height: auto;
  overflow: hidden;
}
.about-intro__image img {
  display: block;
  width: 100%;
  height: auto;
  overflow: hidden;
  object-fit: cover;
}
.about-intro__text {
  max-width: 558px;
  flex: 0 1 558px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.about-intro__description {
  font-family: "Nunito Sans";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0;
  color: #363837;
}
.about-intro__subtext {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* how We support styles start */
.support-sec {
  background-color: #000000;
}

.support-title h2 {
  color: #ffffff;
}
.support-title p {
  color: #898e89;
}
.support-grid-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  color: white;
}
.support-grid-item {
  background-color: transparent;
  border: 1px solid #353535;
  border-radius: 20px;
}
.support-label-grid {
  border-bottom: 1px solid #353535;
  padding: 20px;
}
.support-label-grid h4 {
  color: #ffffff;
}
.support-card-subgrid {
  display: flex;
  justify-content: space-between;
}
.support-card-content {
  padding: 20px;
  border-width: 0px 1px 1px 0px;
  border-color: #353535;
  border-style: solid;
  width: 50%;

  display: flex;
  flex-direction: column;
  gap: 20px;
  overflow: hidden;
  min-height: 302px;
}
.support-card-content:last-child {
  border-right: none;
}
.university-trend-grid {
  padding: 20px;
}
.companies-card-icon {
  width: 44px;
  height: 44px;
  overflow: hidden;
  background-color: #002a04;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.companies-card-icon img {
  max-width: 24px;
  max-height: 24px;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.students-card-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.students-card-title {
  color: #ffffff;
  font-weight: 700;
}
.trend-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.trend-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.trend-card-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.trend-card-title {
  color: #ffffff;
  font-weight: 700;
}

/* Features styles start */
.features {
  position: relative;
  overflow: hidden;
}
.features::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100vw;
  height: 300px;
  background-image: url(../Images/feature-top-bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  z-index: -1;
}
.features::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100vw;
  height: 300px;
  background-image: url(../Images/feature-bottom-bg.png);
  z-index: -1;
  background-size: cover;
  background-repeat: no-repeat;
}

.features-grid-container {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(3, 1fr);
}
.features-card {
  background-color: #ffffff;
  padding: 20px;
  border-radius: 20px;
  border: 1px solid #dbdbdb;
  display: flex;
  flex-direction: column;
  gap: 24px;
  overflow: hidden;
}
.feature-img {
  width: 100%;
  height: auto;
  overflow: hidden;
  object-fit: cover;
  display: flex;
  align-items: center;
  justify-content: start;
}
.feature-img img {
  max-width: 150px;
  width: 100%;
  height: auto;
  object-fit: cover;
}
.feature-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.feature-card-title {
  font-family: "Nunito Sans";
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0;
  line-height: normal;
  color: #363837;
}
.feature-card-subtitle {
  font-weight: 400;
}

/* about style start */
.about {
  background-color: #f7fcf8;
}

.about-grid-container {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(2, 1fr);
}
.about-card {
  background-color: transparent;
  display: flex;
  flex-direction: column;
  gap: 32px;
  overflow: hidden;
}
.about-para {
  font-size: 24px;
  line-height: 36px;
  color: #363837;
}
.underline {
  font-style: italic;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: none;
  text-decoration-color: #6aa87c;
  text-decoration-thickness: 9%;
  text-underline-offset: 13.5%;
  text-underline-position: from-font;
}
.about-content {
  font-style: italic;
  font-weight: 500;
  color: #363837;
}
.quote-box {
  position: relative;
  border-radius: 16px;
  border: 1px solid #d4ecdb;
  background: #f3f9f5;
  padding: 24px 53.18px;
  margin: auto;
  font-size: 20px;
  font-style: italic;
  font-weight: 600;
  line-height: 30px;
  color: #363837;
}

.quote-box::before,
.quote-box::after {
  content: "“";
  position: absolute;
  max-width: 21.18px;
  width: 100%;
  height: 16px;
  background-repeat: no-repeat;
}

.quote-box::before {
  top: 24px;
  left: 24px;
  content: "";
  background-image: url(../Images/Icons/opening-quote.svg);
}

.quote-box::after {
  bottom: 24px;
  right: 24px;
  content: "";
  background-image: url(../Images/Icons/cloasing-quote.svg);
}

/* Privacy style start */
.privacy-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 40px;
}
.privacy-sub-heading,
.privacy-heading-left {
  flex: 0 1 558px;
}
.privacy-heading-left.title {
  margin-bottom: 0;
}
.privacy-sub-heading {
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  color: #363837;
  max-width: 364px;
}

.privacy-grid-container {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(4, 1fr);
}
.privacy-card {
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 24px;
  overflow: hidden;
}
.privacy-img {
  width: 100%;
  height: auto;
  overflow: hidden;
  object-fit: cover;
  display: flex;
  align-items: center;
  justify-content: center;
}
.privacy-img img {
  max-width: 64px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.privacy-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.privacy-card-title {
  font-family: "Nunito Sans";
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0;
  line-height: normal;
  color: #363837;
  text-align: center;
}
.privacy-card-subtitle {
  font-weight: 400;
  text-align: center;
}

/* join movement style start */
.join-movement {
  background-color: #f7fcf8;
}
.movement-grid {
  display: grid;
  gap: 28px;
  grid-template-columns: repeat(2, 1fr);
}
.movement-col {
  background-color: transparent;
  display: flex;
  flex-direction: column;
  gap: 32px;
  line-height: 0;
}
.movement-title {
  margin-bottom: 0;
}
.movement-para {
  font-weight: 400;
  line-height: 24px;
  color: #252625;
}
.movement-para.bold-text {
  font-weight: 700;
}

/* contact style start */
.contact-section {
  background-image: url(../Images/cta-bg.png);
  background-size: cover;
  width: 100%;
  height: auto;
}

.cta-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-radius: 20px;
  background-color: #28663e;
  padding: 40px;
}
.cta-left-col {
  flex: 0 1 620px;
}
.cta-right-col {
  flex: 0 1 416px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.cta-title {
  margin-bottom: 0;
  max-width: 514px;
}
.cta-title h2,
.cta-title p {
  color: white;
}
.envelope-text {
  text-align: center;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
  color: #fff;
}
.envelope {
  line-height: 0;
}
.envelope-link {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  margin: 8px 0px;
}
.cta-btns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

/* footer style start */
.footer {
  padding: 44px 0px;
  background-color: #000;
}
.footer-wrapper {
  display: flex;
  flex-direction: column;
}
.footer-top {
  padding-bottom: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid #353535;
}
.footer-middle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: normal;
}
.footer-logo-link {
  display: inline-flex;
  line-height: normal;
}
.footer-menu-link {
  color: white;
  font-weight: 400;
  line-height: 30px;
  transition: all 0.3s ease-in-out;
}
.footer-menu-link:hover {
  color: #6aa87c;
}
.social-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
}
.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: normal;
  cursor: pointer;
  color: #ffffff;
  transition: all 0.3s ease-in-out;
}
.social-links a:hover {
  color: #6aa87c;
}
.social-links a img {
  max-width: 24px;
  height: 100%;
  object-fit: cover;
  overflow: hidden;
}
/* footer bottom */
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 28px;
}
.rights-para {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
}
.footer-widget {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 44px;
}
.ft-list a {
  font-weight: 400;
  line-height: 30px;
  transition: all 0.3s ease-in-out;
}
.ft-list a:hover {
  color: #6aa87c;
}
