@import url("https://fonts.googleapis.com/css2?family=Momo+Trust+Display&family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap");

* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  overflow-x: hidden;
  background-color: #fff;
  position: relative;
}
.slide_fade {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
  will-change: opacity, transform;
}
.slide_fade.show {
  opacity: 1;
  transform: translateY(0);
}
.navbar_big,
.navbar_small {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px 50px;
  box-shadow: 0 2px 4px #00000071;
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 1000;
  background-color: #fff;
}
.navbar_small {
  display: none;
}
.navbar_big .side_logo {
  display: flex;
  align-items: center;
}
.logo {
  margin-right: 20px;
}
.logo img {
  height: 50px;
}
.navbar_big .links {
  text-decoration: none;
  color: #1b1b1b;
  font-family: "Nunito", sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  margin-right: 10px;
  padding: 5px 10px;
  position: relative;
}
.side_logo .links::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 10px;
  left: 50%;
  transform: translateX(-50%);
  bottom: -10px;
  opacity: 0;
  background-image: url("assets/images/scribble-line.svg");
  background-repeat: no-repeat;
  background-size: contain;
  transition: all 0.4s ease;
}
.side_logo .links:hover::after {
  opacity: 1;
  bottom: -2px;
}
.navbar_big .links.active::after {
  opacity: 1;
  bottom: -2px;
}
.side_con .conny {
  background-color: #096d37;
  color: #fff;
  font-weight: 700;
  font-style: italic;
  transition: all 0.4s ease;
}
.side_con .conny:hover {
  background-color: #033b1d;
}
.side_con .inji {
  border: 0.9px solid #096d37;
}
@media screen and (max-width: 710px) {
  .navbar_big {
    display: none;
  }
  .navbar_small {
    display: flex;
    position: relative;
  }
  .navbar_small .menu_bars {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    cursor: pointer;
    height: 40px;
    width: 40px;
    border: 0.9px solid #096d37;
    overflow: hidden;
  }
  .menu_bars .bar {
    height: 2px;
    width: 20px;
    background-color: #000;
    border-radius: 2px;
    transition: all 0.3s ease;
  }
  .menu_bars .bar.middle {
    margin: 3px 0;
  }
  .small_droppy {
    position: absolute;
    left: 0;
    top: 0;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    padding: 20px 4px 10px;
    box-shadow: 0 0 6px #0000003b;
    width: 250px;
    transform: translateX(-100%);
    transition: transform 0.4s ease;
  }

  .small_droppy a {
    text-decoration: none;
    font-family: "Nunito", sans-serif;
    font-weight: 600;
  }
  .small_droppy .small_links {
    width: 100%;
    padding: 10px 15px;
    margin-bottom: 10px;
    transition: all 0.4s ease;
    color: #000;
  }
  .small_droppy .small_links:hover {
    background-color: #d4ebee;
  }
  .small_droppy .contact {
    text-align: center;
    background-color: #096d37;
    color: #fff;
    padding: 10px;
    margin-top: 30px;
    font-size: 1.14rem;
    font-weight: 700;
    font-style: italic;
  }
  .navbar_small .menu_bars.clicked {
    position: relative;
  }
  .menu_bars.clicked .bar {
    position: absolute;
  }
  .menu_bars.clicked .bar.middle {
    margin: 0;
    display: none;
  }
  .menu_bars.clicked .bar.top {
    transform: rotate(-45deg);
  }
  .menu_bars.clicked .bar.bottom {
    transform: rotate(45deg);
  }
  .small_droppy.open {
    transform: translateX(0);
  }
  body.stop {
    overflow: hidden;
  }
}

.hero_section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #f0f7f6;
  height: 90vh;
  overflow: hidden;
}
.hero_section .word_side {
  flex-basis: 36%;
  width: 100%;
  padding-left: 50px;
}
.word_side .kaline {
  width: 180px;
}
.hero_section .video_side {
  flex-basis: 64%;
  width: 100%;
  overflow: hidden;
  position: relative;
}
.hero_section .video_side video {
  width: 100%;
  z-index: 1;
  object-fit: cover;
  object-position: center;
}
.gag {
  position: absolute;
  left: 0;
  top: 0;
  width: 150px;
  height: 100%;
  z-index: 2;
}

.gag svg {
  width: 100%;
  height: 100%;
  display: block;
}

.gag path {
  fill: #f0f7f6;
}
h1,
h2,
h3 {
  font-family: "Momo Trust Display", sans-serif;
}
p {
  font-family: "Nunito", sans-serif;
  margin-top: 10px;
  color: #1b1b1b;
  font-weight: 500;
}
.hero_title span {
  position: relative;
}
.hero_title span::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -12px;
  transform: translateX(-50%);
  width: 180px;
  height: 14px;
  background-image: url("assets/images/scribble-line.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  pointer-events: none;
}
.word_side .hero_words {
  margin-top: 20px;
}
.hero_cta {
  margin-top: 30px;
}
.hero_cta a {
  padding: 8px 20px;
  text-decoration: none;
  width: max-content;
  color: #fff;
  background-color: #096d37;
  font-family: "Nunito", sans-serif;
  font-weight: 500;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  z-index: 2;
}
.hero_cta a span {
  position: relative;
  z-index: 2;
}
.hero_cta a::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #033b1d;
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.4s ease;
  z-index: 1;
}
.hero_cta a:hover::after {
  transform: scaleY(1);
}
.hero_title {
  color: #033b1d;
}
@media screen and (max-width: 950px) {
  .hero_section {
    flex-direction: column-reverse;
    height: max-content;
  }
  .gag {
    display: none;
  }
  .hero_section .word_side {
    padding: 30px;
    margin-top: 30px;
  }
  .navbar_big,
  .navbar_small {
    padding: 5px 30px;
  }
  .hero_section .video_side video {
    height: 70vh;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
  }
}
@media screen and (max-width: 650px) {
  .hero_section .word_side {
    padding: 30px 20px;
  }
  .navbar_big,
  .navbar_small {
    padding: 5px 20px;
  }
}

.side_by_side {
  display: flex;
  justify-content: space-between;
  padding: 50px;
  margin-top: 40px;
}
.side_by_side.no_space_up {
  margin-top: 0;
}
.side_by_side.center {
  align-items: center;
}
.side_by_side .the_side {
  flex-basis: 48%;
  width: 100%;
}
.side_by_side .the_side.side_img img {
  width: 100%;
  object-fit: contain;
}
.the_side .aarrow {
  width: 80px;
}
.the_side .words_holder.on_right {
  margin-left: 60px;
}
.the_side .words_holder.on_left {
  margin-right: 60px;
}
.the_side h2 {
  color: #033b1d;
  font-size: 1.4rem;
  font-weight: 500;
  max-width: 450px;
}
.the_side .side_cta {
  margin-top: 30px;
}
.the_side .side_cta a {
  text-decoration: none;
  font-family: "Nunito", sans-serif;
  color: #033b1d;
  position: relative;
  font-weight: 700;
}
.the_side .side_cta a::after {
  position: absolute;
  content: "";
  left: 50%;
  transform: translateX(-50%);
  bottom: -12px;
  background-image: url("assets/images/scribble-line.svg");
  width: 98%;
  height: 14px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transition: all 0.4s ease;
}
.the_side .side_cta a:hover::after {
  bottom: -8px;
}
.the_side .send_right {
  display: flex;
  align-items: end;
  justify-content: end;
}
@media screen and (max-width: 990px) {
  .side_by_side {
    flex-direction: column;
  }
  .side_by_side .the_side.side_img {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .side_by_side .the_side.side_img img {
    width: 80%;
  }
  .aarrow.left {
    transform: scaleX(-1) rotate(45deg);
  }
  .the_side .send_right {
    display: none;
  }
  .the_side.space_up {
    margin-top: 40px;
  }
}
@media screen and (max-width: 950px) {
  .side_by_side {
    padding: 50px 30px;
  }
}
@media screen and (max-width: 650px) {
  .side_by_side {
    padding: 50px 20px;
  }
}
@media screen and (max-width: 430px) {
  .the_side .words_holder.on_right {
    margin: 0;
  }
}
@media screen and (max-width: 410px) {
  .the_side .aarrow {
    display: none;
  }
  .side_by_side .the_side.side_img img {
    width: 100%;
  }
}

.other_backy {
  background-color: #f0f7f6;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.other_backy.white {
  background-color: #fff;
}
.other_backy.no_space_up {
  padding: 20px 0 80px 0;
}

.sosoback {
  position: absolute;
  top: 60px;
  left: 50%;
  transform: translateX(-50%);
  width: 220px;
  height: 220px;
  z-index: 1;
  pointer-events: none;
}
.center_one {
  display: flex;
  align-items: center;
  flex-direction: column;
  padding: 0 50px;
  z-index: 2;
  position: relative;
}
.center_one .mid_title {
  font-size: 1.8rem;
  font-weight: 600;
  color: #033b1d;
  text-align: center;
  max-width: 600px;
}
.center_one .mid_par {
  text-align: center;
  max-width: 580px;
}
@media screen and (max-width: 950px) {
  .center_one {
    padding: 0 30px;
  }
}
@media screen and (max-width: 650px) {
  .center_one {
    padding: 0 20px;
  }
}

.spread_viewport {
  overflow: hidden;
  padding-left: 50px;
}
.spread_em {
  margin-top: 70px;
  display: flex;
}
.spread_item {
  /* min-width: 500px; */
  width: 500px;
  position: relative;
  margin-right: 30px;
  flex-shrink: 0;
}
.spread_item .words_cover {
  width: 350px;
  position: absolute;
  z-index: 2;
  background-color: #fff;
  border: 0.9px solid #b1b1b1b9;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  padding: 20px;
}
.item_cta {
  margin-top: 30px;
}
.item_cta a {
  text-decoration: none;
  font-family: "Nunito", sans-serif;
  color: #033b1d;
  position: relative;
  font-weight: 700;
}
.item_cta a::after {
  position: absolute;
  content: "";
  left: 50%;
  transform: translateX(-50%);
  bottom: -12px;
  background-image: url("assets/images/scribble-line.svg");
  width: 98%;
  height: 14px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transition: all 0.4s ease;
}
.item_cta a:hover::after {
  bottom: -8px;
}
.words_cover h3 {
  color: #494949;
}
.slide_servs {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 50px;
  margin-top: 20px;
}
.slide_servs .slide_dir {
  display: flex;
}
.slide_dir .dir {
  height: 45px;
  width: 45px;
  border: 0.9px solid #096d37;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  cursor: pointer;
  transition: all 0.4s ease;
}
.slide_dir .dir i {
  font-size: 1.8rem;
  color: #1b1b1b;
  transition: all 0.4s ease;
}
.slide_dir .dir:hover {
  border: 0.9px solid #033b1d;
}
.slide_dir .dir:hover i {
  color: #033b1d;
}
.slide_servs a {
  padding: 8px 20px;
  text-decoration: none;
  width: max-content;
  color: #fff;
  background-color: #096d37;
  font-family: "Nunito", sans-serif;
  font-weight: 500;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  z-index: 2;
}
.slide_servs a span {
  position: relative;
  z-index: 2;
}
.slide_servs a::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #033b1d;
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.4s ease;
  z-index: 1;
}
.slide_servs a:hover::after {
  transform: scaleY(1);
}
@media screen and (max-width: 950px) {
  .slide_servs {
    padding: 0 30px;
  }
  .spread_viewport {
    padding-left: 30px;
  }
}
@media screen and (max-width: 650px) {
  .slide_servs {
    padding: 0 20px;
  }
  .spread_viewport {
    padding-left: 20px;
  }
  .spread_item {
    min-width: 88vw;
    width: 88vw;
  }
}
@media screen and (max-width: 500px) {
  .spread_item {
    width: 100%;
    min-height: 450px;
  }
  .spread_item img {
    width: 100%;
  }
  .spread_item .words_cover {
    transform: translateY(0);
    bottom: 0;
    width: 95%;
  }
}

.green_such {
  padding: 0 50px;
  margin-top: 40px;
}
.green_back {
  background-color: #096d37;
  padding: 40px 50px;
  position: relative;
  overflow: hidden;
}
.green_back h2 {
  color: #fff;
  font-size: 1.5rem;
  font-weight: 500;
  z-index: 2;
}
.green_back p {
  color: #d3d3d3;
}
.green_back .supportive {
  max-width: 540px;
  z-index: 2;
}
.green_back .rel_one {
  position: absolute;
  top: -60px;
  right: 250px;
  z-index: 1;
}
.green_back .rel_two {
  position: absolute;
  top: -60px;
  right: -120px;
  width: 300px;
  z-index: 1;
}
@media screen and (max-width: 950px) {
  .green_such {
    padding: 0 30px;
  }
  .green_back {
    padding: 40px 30px;
  }
}
@media screen and (max-width: 650px) {
  .green_such {
    padding: 0 20px;
  }
  .green_back {
    padding: 40px 20px;
  }
}
@media screen and (max-width: 1055px) {
  .green_back h2 {
    margin-top: 50px;
  }
}
@media screen and (max-width: 760px) {
  .green_back .rel_one {
    top: -30px;
    right: 150px;
    width: 150px;
  }
  .green_back .rel_two {
    top: -50px;
    right: -120px;
    width: 250px;
  }
}
@media screen and (max-width: 640px) {
  .green_back .rel_one {
    top: -50px;
  }
  .green_back .rel_two {
    top: -90px;
  }
}
@media screen and (max-width: 420px) {
  .green_back .rel_one {
    top: -80px;
    right: 150px;
    width: 150px;
  }
  .green_back .rel_two {
    top: -60px;
    right: -80px;
    width: 200px;
  }
}
@media screen and (max-width: 400px) {
  .green_back .rel_one {
    top: -100px;
    right: 100px;
    width: 150px;
  }
  .green_back .rel_two {
    top: -60px;
    right: -50px;
    width: 150px;
  }
}
.green_cards {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
  position: relative;
  z-index: 10;
}
.green_c_item {
  background-color: #fff;
  z-index: 10px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.green_c_item .wordshy {
  margin: 20px;
}
.wordshy h3 {
  color: #1b1b1b;
  font-size: 1.3rem;
  font-weight: 500;
  max-width: 230px;
  position: relative;
}
.wordshy h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 130px;
  height: 12px;
  background-image: url("assets/images/scribble-line.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.wordshy p {
  color: #494949;
  max-width: 250px;
  font-size: 0.89rem;
}
.green_c_item .abs {
  height: 160px;
  margin-right: -100px;
  border-radius: 80px;
}
.continuation {
  padding: 80px 50px;
  position: relative;
}
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
  margin-top: 60px;
  position: relative;
  z-index: 3;
}
.inda_item {
  width: 100%;
  display: flex;
  align-items: center;
  /* justify-content: center; */
  flex-direction: column;
}
.inda_item .inda_img {
  width: 100%;
}
.inda_item .inda_words {
  margin-top: -50px;
  width: 90%;
  z-index: 5;
  border: 0.9px solid #b1b1b1b9;
  background-color: #fff;
  padding: 20px;
}
.inda_words .of_top {
  display: flex;
  align-items: center;
}
.inda_words .of_top img {
  width: 40px;
  margin-right: 20px;
}
.inda_words .of_top h3 {
  font-weight: 500;
  color: #1b1b1b;
}
@media screen and (max-width: 950px) {
  .continuation {
    padding: 80px 30px;
  }
  .continuation .center_one {
    padding: 0;
  }
}
@media screen and (max-width: 650px) {
  .continuation {
    padding: 80px 20px;
  }
}
.steady_on iframe {
  margin-top: 40px;
  width: 100%;
}

.stats_numbers {
  padding: 80px 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 25px;
  position: relative;
  overflow: hidden;
}
.stats_numbers .abso {
  position: absolute;
  width: 120px;
}
.stats_numbers .abso.line {
  position: absolute;
  width: 60%;
  top: 0;
  height: 30px;
  object-fit: cover;
}
.stats_numbers .abso.topleft {
  top: -30px;
  left: -30px;
  transform: rotate(-45deg);
}
.stats_numbers .abso.botleft {
  bottom: -30px;
  left: -30px;
  transform: rotate(-135deg);
}
.stats_numbers .abso.topright {
  top: -30px;
  right: -30px;
  transform: rotate(45deg);
}
.stats_numbers .abso.botright {
  bottom: -30px;
  right: -30px;
  transform: rotate(135deg);
}
.stats_items {
  display: flex;
  align-items: center;
  animation: float 4s ease-in-out infinite;
}
.stats_items.st {
  animation-delay: 0.5s;
}
.stats_items.sc {
  animation-delay: 1.5s;
}
.stats_items.td {
  animation-delay: 2.5s;
}
.stats_items .stats_info {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.stats_items .stats_info .topp {
  font-weight: 600;
  color: #033b1d;
  margin: 0;
}
.stats_items .stats_info .centage {
  color: #033b1d;
  font-weight: 600;
  font-family: "Momo Trust Display", sans-serif;
  font-size: 1.8rem;
  margin: 0;
}
.stats_items .stats_info .bott {
  color: #033b1d;
  margin: 0 3px;
  max-width: 240px;
}
.stats_items .stats_info p {
  text-align: center;
}
.stats_items img {
  height: 80px;
}
@media screen and (max-width: 940px) {
  .stats_numbers .abso.line {
    display: none;
  }
}

.banner {
  text-decoration: none;
}
.wrappeme {
  padding: 0 50px;
}
.wrappeme .side_by_side {
  background-color: #096d37;
  position: relative;
  overflow: hidden;
}
.wrappeme h2 {
  color: #fff;
  text-shadow:
      0 0 9px #096d37,
      0 0 0px #096d37;
}
.wrappeme p {
  color: #f0f7f6;
}
.wrappeme .side_cta a {
  color: #fff;
}
.side_by_side .habso {
  position: absolute;
}
.habso.more {
  top: -30px;
  left: -50px;
  width: 150px;
}
.habso.less {
  top: -70px;
  left: 120px;
  width: 150px;
}
@media screen and (max-width: 1030px) {
  .wrappeme .side_by_side h2 {
    margin-top: 30px;
  }
}
@media screen and (max-width: 950px) {
  .wrappeme {
    padding: 0 30px;
  }
}
@media screen and (max-width: 650px) {
  .wrappeme {
    padding: 0 20px;
  }
}

.footer {
  padding: 0 50px;
}
.footer .sep_line {
  width: 100%;
  height: 0.98px;
  background-color: #b1b1b1b9;
}
.flexxy_wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  padding: 50px 0;
}
.flex_item {
  display: flex;
}
.flex_item .footer_logo {
  height: 80px;
}
.flex_item p {
  margin: 0 5px;
}
.flex_item .needed {
  margin: 0 5px;
  text-decoration: none;
  position: relative;
  color: #1b1b1b;
  font-family: "Nunito", sans-serif;
  font-weight: 600;
  padding: 0;
}
.flex_item .madeby a {
  text-decoration: none;
  color: #1b1b1b;
  font-family: "Nunito", sans-serif;
  font-weight: 600;
}
.flex_item .madeby a:hover {
  text-decoration: underline;
}
.flex_item .needed::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 8px;
  width: 80px;
  height: 12px;
  background-image: url("assets/images/scribble-line.svg");
  background-size: contain;
  background-repeat: no-repeat;
  transform: translateY(10px);
  opacity: 0;
  transition: all 0.4s ease;
}
.flex_item .needed:hover:after {
  transform: translateY(0);
  opacity: 1;
}
.theeye {
  width: max-content;
  padding: 0;
  margin: 0;
  text-decoration: none;
}
.theeye .eye_holder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 0.9px solid #b1b1b1b9;
  margin: 0 5px;
  transition: all 0.4s ease;
}
.theeye .eye_holder i {
  color: #1b1b1b;
  transition: all 0.4s ease;
}
.theeye .eye_holder:hover {
  border: 0.9px solid #096d37;
}
.theeye .eye_holder:hover i {
  color: #096d37;
}
@media screen and (max-width: 950px) {
  .footer {
    padding: 0 30px;
  }
}
@media screen and (max-width: 650px) {
  .footer {
    padding: 0 20px;
  }
}
@media screen and (max-width: 440px) {
  .flex_item.column {
    flex-direction: column;
  }
}

.bout_hero {
  width: 100%;
  /* min-height: 100vh; */
  /* background-image: url(https://res.cloudinary.com/dcdjnwind/image/upload/v1780742249/abt_back_agr5c2.webp); */
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center top;
  position: relative;
  padding-bottom: 20px;
}
.fade_color {
  position: absolute;
  left: 0;
  width: 100%;
  bottom: 0;
  height: 90px;
  background: linear-gradient(to bottom, #ffffff00, #fff);
}
.abt_hero_words {
  padding-top: 200px;
  padding-left: 200px;
}
.abt_hero_words h1 {
  color: #096d37;
  max-width: 400px;
}
.abt_hero_words p {
  max-width: 600px;
  font-size: 1.16rem;
}
.abt_hero_cta {
  margin-top: 40px;
  margin-bottom: 50px;
}
.abt_hero_cta a {
  padding: 8px 20px;
  color: #fff;
  background-color: #096d37;
  position: relative;
  text-decoration: none;
  font-family: "Nunito", sans-serif;
  font-weight: 600;
  overflow: hidden;
  transition: all 0.4s ease;
}
.abt_hero_cta a span {
  position: relative;
  z-index: 2;
}
.abt_hero_cta a::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #033b1d;
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.4s ease;
  z-index: 1;
}
.abt_hero_cta a:hover::after {
  transform: scaleY(1);
}
@media screen and (max-width: 1100px) {
  .abt_hero_words {
    padding-top: 180px;
    padding-left: 160px;
  }
}
@media screen and (max-width: 950px) {
  .abt_hero_words {
    padding-left: 120px;
  }
}
@media screen and (max-width: 870px) {
  .abt_hero_words {
    padding-left: 80px;
  }
}
@media screen and (max-width: 800px) {
  .abt_hero_words {
    padding-left: 50px;
  }
}
@media screen and (max-width: 750px) {
  .abt_hero_words {
    padding-left: 30px;
  }
}
@media screen and (max-width: 650px) {
  .abt_hero_words {
    padding-left: 20px;
  }
}
@media screen and (max-width: 395px) {
  .abt_hero_words {
    padding-top: 200px;
    padding-left: 20px;
  }
}

.abt_flexxy {
  margin-top: 80px;
  padding: 0 50px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.abt_flexxy.no_space {
  margin-top: 40px;
}
h3.special {
  color: #096d37;
  font-weight: 500;
}
.abt_flexxy .spread_item img {
  width: 80%;
  border-bottom-right-radius: 26px;
  border-top-left-radius: 26px;
}
.values_item {
  padding: 20px;
  max-width: 300px;
  width: 300px;
  background-color: #fff;
  box-shadow: 0 0 4px #000000a2;
}
.values_item .top_values {
  display: flex;
  align-items: center;
}
.values_item .top_values img {
  width: 40px;
  margin-right: 10px;
}
.values_item .top_values h3 {
  color: #096d37;
  font-weight: 500;
}
.other_backy .circ_back {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 1;
  animation: rotateCircle 120s linear infinite;
}
.other_backy .center_one,
.other_backy .abt_flexxy {
  position: relative;
  z-index: 3;
}

@keyframes rotateCircle {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
@media screen and (max-width: 950px) {
  .abt_flexxy {
    padding: 0 30px;
  }
}
@media screen and (max-width: 650px) {
  .abt_flexxy {
    padding: 0 20px;
  }
}
@media screen and (max-width: 400px) {
}

.how_it_works {
  background-image: url(https://res.cloudinary.com/dgijndtvc/image/upload/v1777931823/colleagues_pq8a7u.webp);
  background-position: center;
  background-size: cover;
}
.how_it_works .top_image {
  background-color: #000000b9;
  padding: 30px 20px 100px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.top_image h2 {
  color: #fff;
  font-weight: 500;
  font-size: 1.8rem;
  text-align: center;
}
.how_it_works .top_image p {
  color: #f0f7f6;
  text-align: center;
  max-width: 460px;
  font-size: 1.13rem;
  font-weight: 500;
}
.the_five_work_ways {
  margin-top: -70px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
  padding: 0px 50px;
}
.the_five_work_ways .work_way_item {
  background-color: #fff;
  padding: 20px 10px;
  border: 0.9px solid #b1b1b1b9;
  box-shadow: 0 0 4px #0000003b;
  display: flex;
  align-items: center;
  /* justify-content: center; */
  flex-direction: column;
  transition: all 0.4s ease;
}
.work_way_item:hover {
  box-shadow: 0px 0px 12px #000000bb;
}
.work_way_item .work_way_img {
  /* background-color: #d4ebee; */
  display: flex;
  align-items: center;
  justify-content: center;
}
.work_way_item .work_way_img img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: contain;
}
.work_way_item .way_number {
  font-family: "Momo Trust Display", sans-serif;
  font-size: 3rem;
  font-weight: 800;
  background: linear-gradient(
    to bottom,
    #096d37 0%,
    #096d37d5 30%,
    #096d3700 70%
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  transition: all 0.4s ease;
}
.work_way_item:hover .way_number {
  transform: translateY(-10px);
  background: linear-gradient(
    to bottom,
    #033b1d 0%,
    #096d37d5 40%,
    #033b1d00 80%
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.work_way_item .way_title {
  margin-top: -30px;
  font-family: "Momo Trust Display", sans-serif;
  color: #494949;
  font-size: 1.3rem;
  font-weight: 400;
  width: 100%;
  text-align: center;
}
.work_way_item .way_pi {
  width: 100%;
  text-align: center;
  margin-top: 10px;
  color: #4d4d4d;
}

@media screen and (max-width: 950px) {
  .the_five_work_ways {
    padding: 0px 30px;
  }
}
@media screen and (max-width: 650px) {
  .the_five_work_ways {
    padding: 0px 20px;
  }
}
.green_such.space_up {
  margin-top: 80px;
}
.the_side.side_img .chew {
  border-bottom-right-radius: 22px;
  border-top-left-radius: 22px;
}

.bout_hero.fi_serve {
  /* background-image: url(https://res.cloudinary.com/dcdjnwind/image/upload/v1780073031/hero_serve_zv3ujh.webp); */
}
@media screen and (max-width: 760px) {
  .fi_serve .abt_hero_words {
    padding-top: 240px;
  }
}
@media screen and (max-width: 540px) {
  .fi_serve .abt_hero_words h1 {
    text-shadow:
      0 0 10px rgba(200, 226, 224, 0.562),
      0 0 25px rgba(255, 255, 255, 0.6);
  }
}

.center_one.small_space_up {
  margin-top: 40px;
}
.sides_grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 10px;
  margin-top: 30px;
}
.sides_grid .sg_item {
  display: flex;
  align-items: center;
  padding: 10px;
  background-color: #f0f7f6;
}
.sides_grid .sg_item img {
  width: 30px;
  margin-right: 10px;
}
.sides_grid .sg_item p {
  margin: 0;
}
h2.two_bits span {
  color: #000;
}
.word_side .logo_so_big {
  width: 80%;
  margin-bottom: 40px;
}


/* === FLOATING LOGO === */
.floating_logo {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 250px;
  object-fit: contain;
  z-index: 2000;
  backdrop-filter: blur(1px);
  -webkit-backdrop-filter: blur(1px);
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.floating_logo.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* =========================
   LEGAL PAGES
========================= */

.legal_hero {
  padding: 170px 8% 80px;
  text-align: center;
  background: #f9fbf8;
}

.legal_hero h1{
  font-family:"Momo Trust Display",sans-serif;
  font-size: clamp(2.8rem,5vw,4.8rem);
  color:#033b1d;
}

.legal_hero p{
  max-width:700px;
  margin:20px auto 0;
  font-size:1.05rem;
}

.legal_container{
  max-width:900px;
  margin:auto;
  padding:80px 8% 120px;
}

.legal_section{
  margin-bottom:70px;
}

.legal_section h2{
  font-family:"Momo Trust Display",sans-serif;
  color:#033b1d;
  font-size:2rem;
  margin-bottom:20px;
}

.legal_section h3{
  font-family:"Momo Trust Display",sans-serif;
  color:#033b1d;
  margin-top:30px;
  margin-bottom:10px;
  font-size:1.35rem;
}

.legal_section p{
  font-family:"Nunito",sans-serif;
  font-size:1.05rem;
  line-height:1.9;
  color:#1b1b1b;
  margin-bottom:20px;
}

.legal_section ul{
  padding-left:25px;
}

.legal_section li{
  font-family:"Nunito",sans-serif;
  color:#1b1b1b;
  margin-bottom:15px;
  line-height:1.8;
}

.last_updated{
  display:inline-block;
  background:#edf5ef;
  color:#033b1d;
  padding:10px 18px;
  border-radius:30px;
  font-family:"Nunito",sans-serif;
  font-weight:700;
  margin-top:20px;
}

@media(max-width:768px){

.legal_hero{
padding:140px 25px 60px;
}

.legal_container{
padding:60px 25px 80px;
}

.legal_section h2{
font-size:1.7rem;
}

}