@charset "UTF-8";
@import "../css/bootstrap.min.css" layer(bootstrap);
@import "https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.7.2/css/all.min.css";
@import "../css/slick.css";
@import "../css/all.min.css";
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
@layer bootstrap, base, components, utilities;
@layer base {
  input,
  textarea,
  select,
  a,
  p,
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    margin: 0;
    text-decoration: none;
    outline: none;
    word-break: break-word;
    overflow-wrap: break-word;
  }
  h1,
  h2,
  h3 {
    text-wrap: balance;
  }
  p {
    text-wrap: pretty;
  }
  * {
    box-sizing: border-box;
  }
  a,
  a:hover,
  a:focus,
  *:focus-visible {
    cursor: pointer;
    transition: all 0.4s ease;
    text-decoration: none;
    outline: none;
    color: #135e4f;
  }
  button {
    cursor: pointer;
  }
  button:focus,
  input:focus {
    box-shadow: none !important;
  }
  @media only screen and (max-width: 991.98px) {
    html {
      font-size: 14px;
    }
  }
  @media only screen and (max-width: 767.98px) {
    html {
      font-size: 12px;
    }
  }
  html,
  body {
    margin: 0;
    padding: 0;
    background: #fff;
    font-family: "Inter", sans-serif !important;
    overflow-x: hidden;
  }
}
@layer utilities {
  .ls li {
    list-style: none;
  }
  .rel {
    position: relative;
  }
  .fulw img {
    width: 100%;
  }
  .ofit img {
    height: 100%;
    width: 100%;
    object-fit: cover;
  }
}
@layer components {
  .titlecontent h4 {
    font-size: 13px;
    color: #111;
    text-transform: capitalize;
    box-shadow: 0 0 10px rgba(17, 17, 17, 0.1);
    border-radius: 100px;
    margin: 0 auto 30px;
    padding: 10px 20px;
    font-family: "Montserrat", sans-serif;
    background: #fff;
  }
  .titlecontent h4 i {
    color: #9fe870;
    font-size: 10px;
  }
  .titlecontent h2 {
    text-transform: capitalize;
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    color: #135e4f;
    text-wrap: balance;
    font-family: "Montserrat", sans-serif;
  }
  .titlecontent p {
    color: rgb(127.5, 127.5, 127.5);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7;
  }
}
.gapy {
  padding-top: 6.25rem;
  padding-bottom: 6.25rem;
}

.gbg {
  background: #e5fdce;
}

.navbar-brand,
.footer-logo {
  width: 9.375rem;
}

header {
  width: 100%;
  padding: 0px;
  backdrop-filter: blur(10px);
  background: rgba(19, 94, 79, 0.8);
  z-index: 997;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  transition: all 0.4s ease;
}

header.sticky {
  box-shadow: 2px 2px 10px rgba(17, 17, 17, 0.4);
  animation: slideDown 0.4s ease forwards;
}

header.unsticking {
  animation: slideUp 0.4s ease forwards;
}

@keyframes slideDown {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes slideUp {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-100%);
  }
}
header .navbar {
  margin: 0;
  border: none;
  padding: 0;
  background: none;
}

.navbar-toggler {
  background: #135e4f;
}
.navbar-toggler i {
  color: #fff;
}
.navbar-toggler:focus {
  background: #e5fdce;
}
.navbar-toggler:focus i {
  color: #135e4f;
}

.main-nav nav .navbar-nav {
  column-gap: 20px;
}
.main-nav nav .navbar-nav > li > a {
  font-size: 16px;
  color: #fff;
  padding: 20px 15px;
  border-bottom: 1px solid transparent;
}
@media only screen and (max-width: 991.98px) {
  .main-nav nav .navbar-nav > li > a {
    padding: 15px;
  }
}
.main-nav nav .navbar-nav > li > a:hover {
  color: #9fe870;
  border-color: #9fe870;
}
.main-nav nav .navbar-nav > li > a:focus {
  color: #9fe870;
  border-color: #9fe870;
}
.main-nav nav .navbar-nav .active a {
  color: #9fe870;
  border-color: #9fe870;
}
.main-nav nav .navbar-nav ul {
  padding: 0;
  margin: 0;
  overflow: hidden;
}
.main-nav nav .navbar-nav ul li a {
  font-size: 14px;
  color: #111;
}

.herobanner .overlay {
  padding-top: 10rem;
  padding-bottom: 6.25rem;
  background: linear-gradient(to right, rgb(19, 94, 79) 0%, rgb(19, 94, 79) 46%, rgba(19, 94, 79, 0.1) 100%);
}

.herocontent h1 {
  color: #e5fdce;
  font-weight: 800;
  font-size: 3.75rem;
  line-height: 1.2;
  text-transform: capitalize;
  font-family: "Montserrat", sans-serif;
}
.herocontent h2 {
  color: #fff;
  font-weight: 600;
  font-size: 1.875rem;
  line-height: 1.3;
  text-transform: capitalize;
  font-family: "Montserrat", sans-serif;
}

.herobtns .hbtn {
  border-radius: 100px;
  padding: 12px 30px;
  text-transform: uppercase;
  font-weight: 600;
  border: 1px solid transparent;
  text-align: center;
}
.herobtns .hbtn:first-child {
  background: #9fe870;
  color: #135e4f;
}
.herobtns .hbtn:first-child:hover {
  background: #135e4f;
  color: #9fe870;
  border-color: #9fe870;
}
.herobtns .hbtn:last-child {
  background: #fff;
  color: #135e4f;
}
.herobtns .hbtn:last-child:hover {
  background: #135e4f;
  color: #9fe870;
  border-color: #9fe870;
}

.stroybox {
  border: 1px solid rgb(229.5, 229.5, 229.5);
  padding: 20px;
  border-radius: 12px;
  transition: all 0.5s ease-in-out;
}
.stroybox .storyimg {
  border-radius: 12px;
  overflow: hidden;
  height: 280px;
}
.stroybox .storyimg img {
  transition: all 0.5s ease-in-out;
  transform: scale(1);
}
.stroybox h3 {
  color: #135e4f;
  font-size: 1.25rem;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
}
.stroybox h6 {
  color: #111;
  font-style: italic;
  font-size: 14px;
}
.stroybox p {
  color: rgb(178.5, 178.5, 178.5);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  line-clamp: 3;
}
@media only screen and (max-width: 991.98px) {
  .stroybox p {
    font-size: 14px;
  }
}
.stroybox .readbtn {
  color: #135e4f;
  text-transform: capitalize;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  gap: 10px;
  align-items: center;
}
.stroybox .readbtn i {
  width: 30px;
  border-radius: 100px;
  text-align: center;
  display: grid;
  place-items: center;
  aspect-ratio: 1;
  transform: rotate(-45deg);
  transition: all 0.5s ease-in-out;
  box-shadow: 2px 2px 2px #9fe870;
}
.stroybox:hover {
  background: #e5fdce;
  transition: all 0.5s ease-in-out;
  box-shadow: 0 0 10px rgba(17, 17, 17, 0.12);
}
.stroybox:hover .storyimg img {
  transition: all 0.5s ease-in-out;
  transform: scale(1.1);
}
.stroybox:hover p {
  color: #666666;
}
.stroybox:hover .readbtn i {
  transform: rotate(0deg);
  transition: all 0.5s ease-in-out;
}

.hbtn {
  border-radius: 100px;
  padding: 12px 30px;
  text-transform: uppercase;
  font-weight: 600;
  border: 1px solid transparent;
  background: #9fe870;
  color: #135e4f;
}
.hbtn:hover {
  background: #135e4f;
  color: #9fe870;
  border-color: #9fe870;
}

.cat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 40px 30px;
  background: #fff;
  border-radius: 24px;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(19, 94, 79, 0.05);
  height: 100%;
}
.cat-card:hover {
  background: #135e4f;
  transform: translateY(-12px);
  box-shadow: 0 20px 40px rgba(19, 94, 79, 0.2);
}
.cat-card:hover .cat-icon {
  background: rgba(255, 255, 255, 0.1);
  color: #9fe870;
  transform: rotateY(360deg);
}
.cat-card:hover h3,
.cat-card:hover p,
.cat-card:hover .cat-link {
  color: #fff;
}
.cat-card .cat-icon {
  width: 70px;
  height: 70px;
  background: rgba(19, 94, 79, 0.05);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: #135e4f;
  margin-bottom: 20px;
  transition: all 0.5s ease;
}
.cat-card h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 12px;
}
.cat-card p {
  font-family: "Inter", sans-serif;
  font-size: 15px;
  color: #666;
  margin-bottom: 20px;
}
.cat-card .cat-link {
  font-weight: 600;
  font-size: 14px;
  color: #135e4f;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: auto;
}

.latest-stories .story-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(17, 17, 17, 0.05);
  transition: all 0.3s ease;
}
.latest-stories .story-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(19, 94, 79, 0.1);
  border-color: rgba(19, 94, 79, 0.1);
}
.latest-stories .story-card:hover .card-img-wrap img {
  transform: scale(1.08);
}
.latest-stories .story-card:hover .card-btn {
  color: #135e4f;
}
.latest-stories .story-card:hover .card-btn i {
  transform: translateX(5px);
}
.latest-stories .story-card .card-img-wrap {
  height: 220px;
  overflow: hidden;
  position: relative;
}
.latest-stories .story-card .card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.latest-stories .story-card .card-img-wrap .card-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: #9fe870;
  color: #135e4f;
  padding: 4px 12px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
}
.latest-stories .story-card .card-content {
  padding: 25px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.latest-stories .story-card .card-content .card-meta {
  font-size: 13px;
  color: #888;
  margin-bottom: 10px;
  font-family: "Inter", sans-serif;
}
.latest-stories .story-card .card-content h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #135e4f;
  line-height: 1.4;
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.latest-stories .story-card .card-content p {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  color: rgb(127.5, 127.5, 127.5);
  line-height: 1.6;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.latest-stories .story-card .card-content .card-btn {
  margin-top: auto;
  text-decoration: none;
  color: #135e4f;
  font-weight: 800;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s ease;
}
.latest-stories .story-card .card-content .card-btn i {
  transition: transform 0.2s ease;
}

.main-footer {
  background: #135e4f url(../images/footer-bg.png) no-repeat center;
  background-size: cover;
  color: #fff;
  font-family: "Inter", sans-serif;
}
.main-footer h2,
.main-footer h5,
.main-footer .footer-logo {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
}
.main-footer .newsletter-card {
  background: rgba(255, 255, 255, 0.05);
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
  padding-left: 2.5rem;
  padding-right: 2.5rem;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.main-footer .newsletter-card h2 {
  font-size: 2rem;
  margin-bottom: 5px;
}
.main-footer .newsletter-card p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  margin: 0;
}
.main-footer .news-form {
  flex-grow: 1;
  max-width: 500px;
}
.main-footer .news-form input {
  background: #fff;
  border: 1px solid transparent;
  padding: 15px 25px;
  border-radius: 10px;
  font-size: 15px;
}
.main-footer .news-form input:focus {
  box-shadow: none;
  border: 1px solid #9fe870;
}
.main-footer .news-form .subscribe-btn {
  background: #9fe870;
  color: #135e4f;
  border: none;
  padding: 0 30px;
  border-radius: 10px;
  font-weight: 700;
  transition: all 0.3s ease;
}
.main-footer .news-form .subscribe-btn:hover {
  background: #e5fdce;
}
@media only screen and (max-width: 767.98px) {
  .main-footer .news-form .subscribe-btn {
    padding: 15px 30px;
    font-size: 14px;
  }
}
.main-footer .footer-bottom .footer-logo {
  font-size: 24px;
  color: #fff;
  text-decoration: none;
}
.main-footer .footer-bottom .brand-desc {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  margin-top: 15px;
}
.main-footer .footer-bottom h5 {
  font-size: 18px;
  margin-bottom: 25px;
}
.main-footer .footer-bottom ul li {
  margin-bottom: 12px;
}
.main-footer .footer-bottom ul li a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s;
}
.main-footer .footer-bottom ul li a:hover {
  color: #9fe870;
}
.main-footer .footer-bottom .social-links a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}
.main-footer .footer-bottom .social-links a:hover {
  background: #9fe870;
  color: #135e4f;
}
.main-footer .risk-text {
  font-size: 13px;
  color: #fff;
  border-left: 3px solid #9fe870;
  padding-left: 15px;
}
.main-footer .copyright-text {
  font-size: 13px;
  color: #fff;
  text-transform: capitalize;
}

.copyrightblock {
  border-top: 1px solid rgb(27.5752212389, 136.4247787611, 114.6548672566);
}

.bg-dark-green {
  background-color: #135e4f;
}

.form-container {
  background: #fff;
  padding: 2rem;
  border-radius: 10px;
  border: 1px solid rgba(19, 94, 79, 0.05);
}
.form-container .form-label {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  color: #135e4f;
  margin-bottom: 10px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.form-container .custom-input {
  background-color: #f9fbf8;
  border: 2px solid #edf2ec;
  border-radius: 12px;
  padding: 12px 18px;
  font-family: "Inter", sans-serif;
  transition: all 0.3s ease;
}
.form-container .custom-input:focus {
  background-color: #fff;
  border-color: #9fe870;
  box-shadow: 0 0 15px rgba(159, 232, 112, 0.2);
  outline: none;
}

.custom-switch .form-check-input:checked {
  background-color: #9fe870;
  border-color: #9fe870;
}

.guidelines-card {
  background-color: rgba(19, 94, 79, 0.03);
  border: 1px dashed rgba(19, 94, 79, 0.2);
  border-radius: 10px;
  padding: 1.5rem;
  position: sticky;
  top: 100px;
  font-family: "Inter", sans-serif;
}
.guidelines-card .guidelines-title {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  color: #135e4f;
  margin-bottom: 1.5rem;
  font-size: 1.25rem;
}
.guidelines-card .guidelines-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.guidelines-card .guidelines-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.guidelines-card .guidelines-list li i {
  color: #9fe870;
  margin-top: 0.25rem;
  font-size: 1.1rem;
}
.guidelines-card .guidelines-list li span {
  font-size: 0.95rem;
  line-height: 1.5;
  color: rgba(17, 17, 17, 0.8);
}
.guidelines-card .guidelines-list li span strong {
  display: block;
  color: #135e4f;
}
.guidelines-card .safety-alert {
  margin-top: 1.5rem;
  background-color: #e5fdce;
  padding: 0.75rem 1rem;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.guidelines-card .safety-alert i {
  color: #135e4f;
  font-size: 1.1rem;
}
.guidelines-card .safety-alert p {
  margin: 0;
  font-size: 0.85rem;
  color: #135e4f;
  font-weight: 500;
}

@media (max-width: 991.98px) {
  .guidelines-card {
    position: static;
    margin-top: 2rem;
  }
}
.inbanner .overlay {
  background: rgba(19, 94, 79, 0.6);
}
.inbanner .overlay h1 {
  color: #e5fdce;
  font-weight: 800;
  font-size: 2.5rem;
  line-height: 1.2;
  text-transform: capitalize;
  font-family: "Montserrat", sans-serif;
}
.inbanner .overlay .blinks i {
  color: #fff;
}
.inbanner .overlay .blinks a {
  color: #9fe870;
  font-size: 16px;
  font-weight: 300;
  text-transform: capitalize;
}
.inbanner .overlay .blinks h6 {
  color: #fff;
  font-size: 16px;
  font-weight: 300;
  text-transform: capitalize;
}

.single-story-page {
  background-color: #f8faf7;
}
.single-story-page .sidebar-card {
  background: #fff;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}
.single-story-page .sidebar-card h5 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  color: #135e4f;
}
.single-story-page .sidebar-card.warning-card {
  border-top: 4px solid #ff4d4d;
  background: #fff5f5;
}
.single-story-page .sidebar-card .author-avatar img {
  width: 80px;
  height: 80px;
  border: 3px solid #9fe870;
}
.single-story-page .sidebar-card .related-links a {
  text-decoration: none;
  color: #135e4f;
  font-weight: 500;
  display: block;
  margin-bottom: 15px;
}
.single-story-page .sidebar-card .related-links a:hover {
  color: #9fe870;
}

.story-article {
  background-color: #fff;
  padding: 2rem;
  border-radius: 2rem;
  font-family: "Inter", sans-serif;
}
.story-article .article-meta {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
  color: rgba(17, 17, 17, 0.5);
}
.story-article .article-meta .badge-category {
  background: #e5fdce;
  color: #135e4f;
  padding: 4px 12px;
  border-radius: 50px;
  font-weight: 700;
}
.story-article h1 {
  font-family: "Montserrat", sans-serif;
  font-size: 2rem;
  color: #135e4f;
  font-weight: 800;
  margin-bottom: 2rem;
  line-height: 1.1;
}
.story-article .featured-img-wrap {
  margin-bottom: 2.5rem;
}
.story-article .featured-img-wrap img {
  width: 100%;
  border-radius: 1.5rem;
}
.story-article .featured-img-wrap p {
  text-align: center;
  font-size: 0.9rem;
  color: rgba(17, 17, 17, 0.5);
  margin-top: 0.75rem;
  font-style: italic;
}
.story-article .story-body p:first-child {
  font-size: 1.3rem;
  color: #135e4f;
  line-height: 1.6;
  margin-bottom: 2rem;
}
.story-article .story-body p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  color: rgba(17, 17, 17, 0.8);
}
.story-article .story-body blockquote {
  background: #135e4f;
  color: #fff;
  padding: 2.5rem;
  border-radius: 1.5rem;
  font-family: "Montserrat", sans-serif;
  font-size: 1.25rem;
  font-style: italic;
  text-align: center;
  margin: 3rem 0;
  border: none;
}
.story-article .story-body h3 {
  font-family: "Montserrat", sans-serif;
  color: #135e4f;
  font-weight: 700;
  margin: 2.5rem 0 1rem;
}
.story-article .story-body .lesson-box {
  background: rgba(159, 232, 112, 0.1);
  padding: 2rem;
  border-radius: 1.5rem;
  border: 2px dashed #9fe870;
}
.story-article .story-body .lesson-box h4 {
  color: #135e4f;
  font-weight: 700;
  margin-bottom: 0.5rem;
  font-size: 20px;
}
.story-article .story-body .lesson-box p {
  margin-bottom: 0;
  font-size: 16px;
  color: #111;
  font-weight: 500;
}
.story-article .story-share .share-icons a {
  color: #135e4f;
  font-size: 1.2rem;
  margin-right: 15px;
  transition: color 0.3s;
}
.story-article .story-share .share-icons a:hover {
  color: #9fe870;
}

.about-hero {
  max-width: 800px;
  margin: 0 auto;
}
.about-hero .badge-category {
  background-color: #e5fdce;
  color: #135e4f;
  padding: 5px 15px;
  border-radius: 50px;
  font-weight: 700;
  display: inline-block;
  margin-bottom: 1rem;
}
.about-hero h1 {
  font-family: "Montserrat", sans-serif;
  font-size: 3.5rem;
  color: #135e4f;
  font-weight: 800;
  line-height: 1.1;
}
.about-hero p {
  font-size: 1.25rem;
  color: rgba(17, 17, 17, 0.6);
  margin-top: 1.5rem;
  line-height: 1.6;
}

.value-card {
  background: #f9fbf8;
  padding: 3rem 2rem;
  border-radius: 2rem;
  text-align: center;
  height: 100%;
  transition: all 0.3s ease;
  border: 1px solid rgba(19, 94, 79, 0.05);
}
.value-card i {
  font-size: 2.5rem;
  color: #9fe870;
  margin-bottom: 1.5rem;
}
.value-card h3 {
  font-family: "Montserrat", sans-serif;
  color: #135e4f;
  font-weight: 700;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}
.value-card p {
  color: rgba(17, 17, 17, 0.7);
  line-height: 1.6;
  margin-bottom: 0;
}
.value-card:hover, .value-card.active {
  background: #135e4f;
}
.value-card:hover i,
.value-card:hover h3,
.value-card:hover p, .value-card.active i,
.value-card.active h3,
.value-card.active p {
  color: #fff;
}
.value-card:hover i, .value-card.active i {
  color: #9fe870;
}

.about-story h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 2.5rem;
  color: #135e4f;
  font-weight: 800;
  margin-bottom: 1.5rem;
}
.about-story p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(17, 17, 17, 0.8);
  margin-bottom: 1.2rem;
}
.about-story .img-frame {
  position: relative;
}
.about-story .img-frame::after {
  content: "";
  position: absolute;
  top: 20px;
  left: -20px;
  width: 100%;
  height: 100%;
  border: 2px solid #9fe870;
  border-radius: 1.5rem;
  z-index: -1;
}
.about-story .img-frame img {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

@media (max-width: 991px) {
  .about-page .about-hero h1 {
    font-size: 2.5rem;
  }
  .about-page .about-story .img-frame {
    margin-bottom: 3rem;
  }
}
.contact-page .contact-sidebar .info-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: #fff;
  padding: 1.5625rem;
  border-radius: 10px;
  margin-bottom: 20px;
  transition: transform 0.3s ease;
  border: 1px solid rgba(19, 94, 79, 0.05);
}
.contact-page .contact-sidebar .info-card span {
  width: 50px;
  height: 50px;
  background: #e5fdce;
  color: #135e4f;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-size: 1.5rem;
}
.contact-page .contact-sidebar .info-card h5 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  margin-bottom: 5px;
  color: #135e4f;
}
.contact-page .contact-sidebar .info-card p {
  margin-bottom: 0;
  color: rgba(17, 17, 17, 0.6);
  font-size: 14px;
}
.contact-page .contact-sidebar .info-card:hover {
  border-color: #9fe870;
}
.contact-page .contact-sidebar .mini-map {
  overflow: hidden;
  border-radius: 1.5rem;
  border: 5px solid #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  height: 200px;
  overflow: hidden;
}
.contact-page .contact-form-wrap {
  background: #fff;
  border-radius: 10px;
  padding: 2rem;
}
.contact-page .contact-form-wrap .form-header h2 {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  color: #135e4f;
}
.contact-page .contact-form-wrap .form-header p {
  color: rgba(17, 17, 17, 0.5);
  font-size: 14px;
}
.contact-page .contact-form-wrap label {
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 14px;
  color: #135e4f;
  text-transform: capitalize;
}
.contact-page .contact-form-wrap .form-control,
.contact-page .contact-form-wrap .form-select {
  padding: 12px 20px;
  border-radius: 10px;
  border: 1px solid #eee;
  background: #fcfcfc;
  font-size: 14px;
}
.contact-page .contact-form-wrap .form-control:focus,
.contact-page .contact-form-wrap .form-select:focus {
  border-color: #9fe870;
  box-shadow: none;
  background: #fff;
}
.contact-page .contact-form-wrap .hbtn {
  background: #135e4f;
  color: #fff;
  padding: 15px 30px;
  border: none;
  border-radius: 100px;
  font-weight: 700;
  transition: all 0.3s;
}
.contact-page .contact-form-wrap .hbtn:hover {
  background: #9fe870;
  color: #135e4f;
}

@media (max-width: 768px) {
  .contact-form-wrap {
    padding: 30px 20px;
  }
}
.privacy-content {
  background-color: #f9fbf8;
}
.privacy-content article {
  background: #fff;
  padding: 2rem;
  border-radius: 10px;
  margin: 0 auto;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
}
.privacy-content article h1 {
  font-family: "Montserrat", sans-serif;
  color: #135e4f;
  font-weight: 800;
  font-size: 3rem;
  margin-bottom: 1rem;
  text-align: center;
}
.privacy-content article h2 {
  font-family: "Montserrat", sans-serif;
  color: #135e4f;
  font-weight: 700;
  margin-top: 1rem;
  margin-bottom: 1rem;
  font-size: 2rem;
  border-bottom: 2px solid #e5fdce;
  padding-bottom: 10px;
  display: inline-block;
}
.privacy-content article p {
  color: rgba(17, 17, 17, 0.75);
  line-height: 1.9;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}
.privacy-content article p strong {
  color: #135e4f;
  font-weight: 700;
}
.privacy-content article ul {
  margin: 2rem 0;
  padding-left: 1.5rem;
}
.privacy-content article ul li {
  color: rgba(17, 17, 17, 0.75);
  margin-bottom: 1rem;
  font-size: 1.05rem;
  list-style: none;
  position: relative;
}
.privacy-content article ul li::before {
  content: "→";
  color: #9fe870;
  font-weight: bold;
  position: absolute;
  left: -1.5rem;
}
.privacy-content article blockquote {
  background: #135e4f;
  color: #fff;
  padding: 3rem;
  border-radius: 1.5rem;
  font-family: "Montserrat", sans-serif;
  font-size: 1.3rem;
  font-style: italic;
  text-align: center;
  margin: 4rem 0;
  position: relative;
  border: none;
}
.privacy-content article blockquote::after {
  content: "";
  display: block;
  width: 50px;
  height: 4px;
  background: #9fe870;
  margin: 20px auto 0;
}

@media (max-width: 768px) {
  .privacy-content article {
    padding: 2.5rem 1.5rem;
  }
  .privacy-content article h1 {
    font-size: 2.5rem;
  }
  .privacy-content article h2 {
    font-size: 1.6rem;
  }
  .privacy-content article blockquote {
    padding: 2rem 1rem;
    font-size: 1.1rem;
  }
}
.founder-vision {
  background-color: #fcfcfc;
}
.founder-vision .vision-wrapper {
  padding: 2rem;
  background: #fff;
  border-radius: 2rem;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.02);
}
.founder-vision .vision-wrapper .founder-img {
  position: relative;
}
.founder-vision .vision-wrapper .founder-img img {
  width: 100%;
  border-radius: 1.5rem;
  filter: grayscale(20%);
}
.founder-vision .vision-wrapper .founder-img .experience-badge {
  position: absolute;
  bottom: -15px;
  right: -15px;
  background: #9fe870;
  color: #135e4f;
  padding: 10px 20px;
  border-radius: 10px;
  font-weight: 800;
  font-size: 1.375rem;
  box-shadow: 0 5px 15px rgba(159, 232, 112, 0.3);
}
.founder-vision .vision-wrapper span {
  color: #135e4f;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  font-size: 14px;
}
.founder-vision .vision-wrapper h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 2.5rem;
  color: #135e4f;
  font-weight: 800;
  margin: 1rem 0 1.5rem;
  line-height: 1.2;
}
.founder-vision .vision-wrapper p {
  font-size: 1.1rem;
  color: rgba(17, 17, 17, 0.7);
  line-height: 1.8;
  margin-bottom: 1.2rem;
}
.founder-vision .vision-wrapper ul {
  list-style: none;
  padding-left: 0;
}
.founder-vision .vision-wrapper ul li {
  font-size: 18px;
  color: rgba(17, 17, 17, 0.7);
  line-height: 1.3;
  margin-bottom: 14px;
  position: relative;
  padding-left: 30px;
}
.founder-vision .vision-wrapper ul li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 2px;
  color: #135e4f;
  font-size: 18px;
}
.founder-vision .vision-wrapper .signature {
  margin-top: 2rem;
  border-left: 3px solid #9fe870;
  padding-left: 15px;
}
.founder-vision .vision-wrapper .signature strong {
  display: block;
  font-size: 1.2rem;
  color: #135e4f;
}
.founder-vision .vision-wrapper .signature small {
  color: rgba(17, 17, 17, 0.5);
}

.trust-stats .stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: #135e4f;
  padding: 2rem;
  border-radius: 2rem;
  text-align: center;
  gap: 2rem;
}
.trust-stats .stats-grid h3 {
  color: #9fe870;
  font-family: "Montserrat", sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 5px;
}
.trust-stats .stats-grid p {
  color: #fff;
  font-weight: 400;
  font-size: 1rem;
}

@media (max-width: 991px) {
  .trust-stats .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.about-footer-info {
  font-family: "Inter", sans-serif;
}
.about-footer-info .info-card {
  padding: 2rem;
  border-radius: 1rem;
  transition: transform 0.3s ease;
}
.about-footer-info .info-card h2 {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  margin-bottom: 10px;
  font-size: 2rem;
}
.about-footer-info .info-card p {
  line-height: 1.8;
  font-size: 16px;
  margin-bottom: 1.5rem;
}
.about-footer-info .info-card p strong {
  color: inherit;
  font-weight: 700;
}
.about-footer-info .info-card.note-theme {
  background: #fff;
  border: 1px solid rgba(255, 0, 0, 0.1);
}
.about-footer-info .info-card.note-theme h2 {
  color: #d93025;
}
.about-footer-info .info-card.note-theme p {
  color: #5f6368;
}
.about-footer-info .info-card.community-theme {
  background: #135e4f;
  color: #fff;
  box-shadow: 0 20px 40px rgba(19, 94, 79, 0.2);
}
.about-footer-info .info-card.community-theme h2 {
  color: #9fe870;
}
.about-footer-info .info-card.community-theme p {
  color: rgba(255, 255, 255, 0.9);
}
.about-footer-info .info-card.community-theme .cta-link {
  display: inline-block;
  background: #9fe870;
  color: #135e4f;
  padding: 12px 35px;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  margin-top: 1rem;
  transition: all 0.3s ease;
  text-transform: uppercase;
}
.about-footer-info .info-card.community-theme .cta-link:hover {
  background: #fff;
  transform: translateY(-3px);
}
@media (max-width: 768px) {
  .about-footer-info .info-card {
    padding: 2rem 1.5rem;
  }
  .about-footer-info .info-card h2 {
    font-size: 1.6rem;
  }
}
.popular-markets {
  font-family: "Inter", sans-serif;
}
.popular-markets span {
  color: #111;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 2px;
  font-size: 0.85rem;
}
.popular-markets h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 2.5rem;
  color: #135e4f;
  font-weight: 800;
  margin: 0.5rem 0 1rem;
}
.popular-markets p {
  max-width: 600px;
  margin: 0 auto;
  color: rgba(17, 17, 17, 0.6);
}
.popular-markets .market-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.popular-markets .market-grid a {
  background: #135e4f;
  padding: 2.5rem 2rem;
  border-radius: 1.5rem;
  text-align: center;
  text-decoration: none;
  border: 1px solid rgba(19, 94, 79, 0.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
  transition: all 0.3s ease;
}
.popular-markets .market-grid a i {
  font-size: 2.5rem;
  color: #fff;
  margin-bottom: 1.5rem;
  display: block;
  transition: transform 0.3s ease;
}
.popular-markets .market-grid a h3 {
  font-family: "Montserrat", sans-serif;
  color: #9fe870;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.popular-markets .market-grid a p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 0;
}
.popular-markets .market-grid a:hover {
  background: #135e4f;
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(19, 94, 79, 0.15);
}

@media (max-width: 991px) {
  .popular-markets .market-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 575px) {
  .popular-markets .market-grid {
    grid-template-columns: 1fr;
  }
  .popular-markets h2 {
    font-size: 2rem;
  }
}
.news-text p a {
  color: #e5fdce;
}

.authority-exists h2 {
  color: #135e4f;
}
.authority-exists .exists-text-content p {
  color: rgba(17, 17, 17, 0.7);
  line-height: 1.8;
}
.authority-exists .exists-image img {
  max-width: 100%;
  height: auto;
}
.authority-exists .feature-card {
  background: #135e4f;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}
.authority-exists .feature-card:hover {
  transform: translateY(-5px);
}
.authority-exists .feature-card h4 {
  color: #e5fdce;
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 1.25rem;
}
.authority-exists .feature-card p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  line-height: 1.6;
}
.authority-exists .feature-card .text-accent {
  color: #fff;
}

.value-lessons h2 {
  color: #135e4f;
  margin-bottom: 3rem;
}
.value-lessons .lesson-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.value-lessons .lesson-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
.value-lessons .lesson-card .lesson-icon i {
  color: #9fe870;
}
.value-lessons .lesson-card .lesson-content h4 {
  color: #135e4f;
  font-weight: 800;
  margin-top: 1rem;
  margin-bottom: 10px;
  font-size: 1.25rem;
}
.value-lessons .lesson-card .lesson-content p {
  color: rgba(17, 17, 17, 0.6);
  font-size: 0.9rem;
  line-height: 1.5;
}

.slick-arrow {
  position: absolute;
  z-index: 5;
  top: 50%;
  transform: translateY(-50%);
  background: #135e4f;
  color: #fff;
  border: none;
  width: 50px;
  aspect-ratio: 1;
  height: 50px;
  border-radius: 4px;
  opacity: 0.8;
}
.slick-arrow:hover {
  opacity: 1;
}

.slick-prev {
  left: 0;
}

.slick-next {
  right: 0;
}

.slick-dots {
  position: absolute;
  padding: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  bottom: 0px;
  z-index: 8;
  list-style: none;
}
.slick-dots li button {
  text-indent: -10000px;
  border: none;
  background: #135e4f;
  height: 10px;
  width: 10px;
  aspect-ratio: 1;
  padding: 0;
  border-radius: 100px;
}
.slick-dots .slick-active button {
  background: #e5fdce;
}/*# sourceMappingURL=main.css.map */