*,
*::after,
*::before {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
  list-style-type: none;
}

:root {
  --bg-green: #61b34f;
  --bg-yellow: #cfdf64;
  --bg-blue: #1d3444;
  --bg-dark-blue: #052a3c;
  --bg-light-blue: #dceaf5;
}

html {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  background-color: #fff;
}

img {
  object-fit: cover;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  outline: none;
  padding: 0.8rem 2.1rem;
  border: none;
  border-radius: 1.6875rem;
  background: var(--bg-green);
  color: #fff;
  font-size: 0.98rem;
  font-style: normal;
  font-weight: 600;
  text-transform: capitalize;
}

input {
  display: block;
  border: 1px solid #fff;
  background-color: #fff;
  outline: none;
  border-radius: 100px;
  padding: 0.9rem 2rem;
  font-size: 0.98rem;
  width: 100%;
}

.btn-yellow {
  background-color: var(--bg-yellow);
}

.btn-white {
  background-color: #fff;
  color: var(--bg-dark-blue);
}

.icon img,
img.icon {
  width: 3rem;
}

.pointer {
  cursor: pointer;
}

nav.navbar {
  z-index: 99;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.nav-mobile {
  background-color: #fff;
  position: sticky;
  position: -webkit-sticky;
  top: 0;
}

.overlay-nav {
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.overlay-nav ul.nav-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 2rem;
  font-size: 1.1rem;
  padding: 0;
}

.nav-desktop {
  width: 100%;
  background-color: #fff;
  padding: 1.45rem 0;
  position: sticky;
  position: -webkit-sticky;
  top: 0;
}

.nav-brand img {
  width: 11rem;
  height: auto;
}

.nav-desktop ul {
  display: flex;
  align-items: center;
  gap: 2.7rem;
  margin: 0;
  padding: 0;
  font-size: 0.98rem;
}

ul.nav-links li {
  opacity: 0.8;
  font-weight: 400;
}

ul.nav-links li.active {
  color: var(--bg-green);
  opacity: 1;
  font-weight: 600;
}

.hero {
  background-color: #eff7ed;
  width: 100%;
}

.hero-content {
  padding: 2.7rem 0;
}

.hero-content h1 {
  font-size: 3rem;
  font-style: normal;
  font-weight: 600;
  line-height: 130%;
}

.hero-content > p {
  color: #000;
  font-family: Poppins;
  font-size: 1.25rem;
  opacity: 0.65;
  line-height: 185%;
  font-style: normal;
  font-weight: 300;
}

@media screen and (max-width: 500px) {
  .hero-content h1 {
    font-size: 2.3rem;
    line-height: 140%;
  }
  .hero-content > p {
    font-size: 1.1rem;
  }
}

.hero-image {
  display: flex;
  justify-content: flex-end;
}

.hero-image img {
  width: 100%;
}

.hero-content .partners p {
  color: rgba(57, 65, 73, 0.5);
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 166.667%;
}

.hero-content .partners > div {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.hero-content .partners img {
  width: 6rem;
  height: auto;
}

.hero-content .partners > div a:last-child img {
  width: 4.2rem;
}

.cta-1 .header {
  width: 100%;
  max-width: 37rem;
}

.header h3 {
  font-weight: 500;
  color: var(--bg-blue);
  font-size: calc(1.275rem + 1.5vw);
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
  margin-bottom: 1rem;
}

@media (min-width: 1200px) {
  .header h3 {
    font-size: 2rem;
  }
}

.header p {
  opacity: 0.65;
  font-size: 1.05rem;
  font-style: normal;
  line-height: 210%;
  margin: 0;
  padding: 0;
}

.header a {
  color: var(--bg-green);
  display: flex;
  align-items: center;
  gap: 0.3rem;
  transition: 0.3s;
  width: max-content;
}

.header a:hover {
  gap: 1rem;
}

.header .icon {
  width: 1.7rem;
}

.cta-1-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  height: 100%;
}

.cta-1-card > img {
  width: 100%;
  height: 15rem;
  object-fit: cover;
  border-radius: 0.8rem;
  margin-bottom: 0.8rem;
}

.cta-1-card h4 {
  color: var(--bg-blue);
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 500;
  line-height: 106.5%;
  margin: 0;
  padding: 0;
}

.cta-1-card p {
  opacity: 0.65;
  font-size: 0.98rem;
  font-style: normal;
  line-height: 195%;
  margin: 0;
  padding: 0;
}

.cta-1-card a {
  color: var(--bg-green);
  display: flex;
  align-items: center;
  gap: 0.3rem;
  transition: 0.3s;
  width: max-content;
}

.cta-1-card a:hover {
  gap: 1rem;
}

.cta-1-card .icon {
  width: 1.7rem;
}

.cta-2 {
  background-color: var(--bg-green);
}

.cta-2-card {
  background-color: #fff;
  padding: 2.5rem 1.6rem;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cta-2-card svg {
  margin-bottom: 0.5rem;
}

.cta-2-card h4 {
  color: #0d1317;
  font-size: 1.1rem;
  font-style: normal;
  font-weight: 500;
  margin: 0;
  padding: 0;
}

.cta-2-card p {
  color: #5b5b5b;
  opacity: 0.8;
  font-family: Poppins;
  font-size: 0.93rem;
  font-style: normal;
  line-height: 195%;
  margin: 0;
  padding: 0;
}

.cta-3 img {
  width: 85%;
  display: block;
  margin: 0% auto;
  height: auto;
}

.counter h4 {
  color: var(--bg-green);
  font-weight: 600;
}

.counter h5 {
  font-weight: 500;
  font-size: 1.1rem;
  margin: 0;
  margin-bottom: 0.45rem;
}

.counter p {
  color: #5b5b5b;
  font-family: Poppins;
  font-size: 0.9rem;
  font-style: normal;
  line-height: 200%;
  opacity: 0.7;
}

.cta-4 .item {
  background-color: rgba(5, 42, 60, 0.1);
  border-radius: 15px;
}

.cta-4 .ribbon {
  position: absolute;
  right: -0.7rem;
  top: -0.7rem;
}

.cta-4 .tabs {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.cta-4 .tabs p {
  margin: 0;
  cursor: pointer;
  width: max-content;
  padding: 0.6rem 1.7rem;
  font-weight: 600;
  border-radius: 100px;
  font-size: 0.88rem;
  border: 1px solid var(--bg-dark-blue);
  color: rgba(6, 50, 85, 0.5);
  background-color: inherit;
}

.overlay-opaq {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  border-radius: 13px 0rem 0rem 13px;
  background: var(--bg-yellow);
  mix-blend-mode: multiply;
  width: 5.5rem;
  height: 100%;
}

.overlay-opaq.dark {
  background: var(--bg-green);
}

.cta-4 img {
  border-radius: 13px;
}

.cta-4 .tabs p.active {
  border: 1px solid #fff;
  background-color: #fff;
  color: var(--bg-dark-blue);
}

.cta-5 {
  background-color: var(--bg-dark-blue);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0rem;
  color: #fff;
}

.cta-5 > div {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.8rem;
}

.cta-5 > div:last-child {
  padding: 2.5rem 1rem;
}

.cta-5 > div h4 {
  width: 100%;
  max-width: 28rem;
  line-height: 160%;
  font-size: 1.85rem;
  text-align: center;
}

.cta-5 img {
  width: 100%;
  height: auto;
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
  max-height: 27rem;
  object-fit: cover;
}

@media screen and (min-width: 768px) {
  .cta-5 {
    flex-direction: row;
    align-items: center;
    gap: 2.9rem;
  }

  .cta-5 > div h4 {
    text-align: start;
  }

  .cta-5 > div {
    align-items: flex-start;
  }
}

.position-relative {
  position: relative;
}

.gap-1 {
  gap: 0.7rem !important;
}

.cta-6 .header {
  width: 100%;
  max-width: 30rem;
}

.cta-6 .d-flex img {
  width: 3.8rem;
  height: 3.8rem;
  border-radius: 50%;
  object-fit: cover;
}

.cta-6 .d-flex h4 {
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 0.15rem;
}

.cta-6 .d-flex p {
  color: var(--bg-green);
  padding: 0;
  margin: 0;
  font-weight: 400;
  font-size: 0.9rem;
}

.cta-6 .position-relative .overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, #222, #ffffff00);
  z-index: 1;
  border-radius: 15px;
}

.cta-6 .position-relative img {
  width: 100%;
  height: auto;
  max-height: 26.5rem;
  border-radius: 15px;
}

.cta-6 .position-relative a {
  position: absolute;
  bottom: 1.3rem;
  left: 1.4rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-weight: 600;
  color: #fff;
  font-size: 0.95rem;
  z-index: 2;
}

.cta-6 .position-relative a div {
  background-color: #fff;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-list {
  background-color: var(--bg-light-blue);
}

.blog-card {
  background-color: #fff;
  border-radius: 15px;
  height: 100%;
}

.blog-card img {
  width: 100%;
  height: auto;
  border-radius: 15px 15px 0 0;
  max-height: 18rem;
  object-fit: cover;
}

.blog-card > div {
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.blog-card h3 {
  font-weight: 500;
  font-size: 1.4rem;
  color: var(--bg-blue);
  line-height: 150%;
}

.blog-card p {
  opacity: 0.55;
  line-height: 200%;
  font-size: 0.9rem;
}

.blog-card a {
  color: var(--bg-green);
  display: flex;
  align-items: center;
  gap: 0.3rem;
  transition: 0.3s;
  width: max-content;
}

.blog-card a:hover {
  gap: 1rem;
}

.blog-card a .icon {
  border-radius: 0;
  width: 1.7rem;
  background-color: inherit;
}

footer {
  background-color: var(--bg-dark-blue);
  color: #fff;
}

footer .item img {
  width: 16rem;
  height: auto;
}

footer h1 {
  font-size: 2rem;
  font-weight: 400;
  line-height: 130%;
}

footer .icons {
  display: flex;
  align-items: center;
  gap: 1rem;
}

footer .icons svg {
  width: 1.3rem;
  height: 1.3rem;
}

footer h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1.3rem;
}

footer ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
  font-weight: 400;
  font-size: 1rem;
  opacity: 0.6;
}

footer ul li {
  margin-bottom: 1rem;
}

footer ul li:last-child {
  margin-bottom: 0;
}

footer input {
  max-width: 18rem;
}

footer .d-flex {
  gap: 0.8rem;
  font-size: 0.98rem;
}

footer .d-flex ul {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  opacity: 1;
  font-size: 0.95rem;
}

footer .d-flex ul li {
  margin-bottom: 0;
}

footer .left,
footer .right {
  position: absolute;
  opacity: 0.99;
  z-index: 0;
}

footer .left {
  bottom: 0rem;
  left: 0;
}

footer .right {
  top: 2rem;
  right: 0;
}

.about h1,
.services h1 {
  font-weight: 600;
  line-height: 150%;
  margin-bottom: 1.2rem;
}

.about p,
.services p {
  font-size: 1.1rem;
  opacity: 0.6;
  line-height: 200%;
  margin-bottom: 2.4rem;
}

.about .position-relative,
.services .position-relative {
  width: 97%;
  margin: 0% auto;
  display: block;
}

.about img,
.services img {
  width: 100%;
  border-radius: 13px;
  height: 25rem;
}

.about .circle {
  position: absolute;
  right: -1.3rem;
  bottom: -1.2rem;
}

.services .circle {
  position: absolute;
  right: -1.2rem;
  top: 2.2rem;
}

.about-cta .position-relative {
  width: 97%;
  margin: 0% auto;
}

.about-cta .position-relative > div {
  width: 4rem;
  height: 4rem;
  position: absolute;
  right: -1rem;
  bottom: -1rem;
  border-radius: 10px;
  background: var(--bg-green);
  mix-blend-mode: multiply;
  width: 8rem;
  height: 8rem;
}

.about-cta h2 {
  font-size: 1.88rem;
  font-weight: 600;
  line-height: 160%;
  margin-bottom: 1rem;
}

.about-cta p {
  font-size: 1.1rem;
  opacity: 0.55;
  line-height: 200%;
  margin: 0;
}

.about-cta img {
  width: 100%;
  border-radius: 10px;
}

.team .header {
  max-width: 29.6rem;
}

.team-member {
  height: 100%;
  min-height: 30rem;
  border-radius: 1.25rem;
  overflow: hidden;
  cursor: pointer;
}

.bw {
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
}

.team-member img {
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
  width: 100%;
  height: 100%;
  border-radius: 1.25rem;
}

.team-member:hover > div {
  display: flex;
}

.team-member div {
  position: absolute;
  background-color: rgba(0, 0, 0, 0.8);
  color: #fff;
  bottom: 0;
  border-radius: 1.25rem;
  padding: 2.4rem 1.8rem;
  display: none;
  flex-direction: column;
  gap: 0.7rem;
  animation-name: teamMemberInfo;
  animation-duration: 0.6s;
}

.team-member div p.position {
  font-size: 0.9rem;
  font-weight: 500;
  opacity: 0.6;
  margin: 0;
}

.team-member div h5 {
  font-weight: 500;
  margin-bottom: 0.9rem;
  font-size: 1.1rem;
}

.team-member div p.info {
  font-weight: 400;
  font-size: 0.93rem;
  line-height: 190%;
  opacity: 0.6;
  margin: 0;
}

@keyframes teamMemberInfo {
  from {
    bottom: -200px;
  }
  to {
    bottom: 0;
  }
}

.service-single img {
  width: 100%;
  border-radius: 10px;
}

.service-single h3 {
  font-size: 1.8rem;
  color: var(--bg-blue);
  margin-bottom: 0.85rem;
}

.service-single p {
  font-size: 1rem;
  line-height: 220%;
  opacity: 0.7;
  margin-bottom: 1.3rem;
  max-width: 30rem;
}

.service-single ul {
  margin: 0;
  padding-left: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  opacity: 0.8;
}

.service-single ul li {
  list-style-type: disc;
}

.service-single .position-relative div {
  position: absolute;
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 6px;
  background: var(--bg-green);
  mix-blend-mode: multiply;
  top: 50%;
  transform: translateY(-50%);
  left: -0.8rem;
}

.service-single .position-relative div.right {
  left: calc(100% - 3.7rem);
}
