@charset "UTF-8";
/* Reset Styles */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: "Open Sans", sans-serif;
  line-height: 1.5;
  color: #FFFFFF;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  transition: all 0.3s ease;
}
a:hover {
  color: #26A003;
}

ul, ol {
  list-style: none;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  padding: 0;
  font-family: inherit;
}

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  color: #FFFFFF;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  position: relative;
  z-index: 2;
}

.section-title {
  font-size: 44px;
  margin-bottom: 30px;
  color: #FFFFFF;
}
@media (max-width: 576px) {
  .section-title {
    font-size: 32px;
  }
}

.header {
  background-color: #FFFFFF;
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.header__inner {
  padding: 35px 0;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
}
@media (max-width: 768px) {
  .header__inner {
    padding: 20px 0;
  }
}
.header .logo {
  color: #002812;
  font-weight: bold;
}
.header .logo img {
  height: 30px;
}
.header .nav__list {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: nowrap;
  gap: 30px;
}
.header .nav__list li a {
  font-weight: 400;
  font-size: 20px;
  color: #365543;
  text-decoration: none;
}
.header .nav__list li a:hover {
  color: #26A003;
}
@media (max-width: 992px) {
  .header .nav {
    display: none;
  }
}
.header .menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 5px;
}
.header .menu-toggle span {
  width: 30px;
  height: 3px;
  background-color: #002812;
  border-radius: 3px;
  transition: all 0.3s ease;
}
@media (max-width: 992px) {
  .header .menu-toggle {
    display: flex;
  }
}
.header .top-banner {
  display: none;
  padding: 15px;
  background-color: #5CBF07;
}
.header .top-banner p {
  font-family: Heebo, sans-serif;
  line-height: 100%;
  font-size: 16px;
  color: #FFFFFF;
}
.header .top-banner p span {
  font-weight: 700;
}
.header .top-banner .subscribe-button {
  display: block;
  padding: 8px 16px;
  background-color: #FFFFFF;
  font-family: Montserrat, sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: #2E5740;
  border-radius: 6px;
  text-decoration: none;
}
@media (max-width: 768px) {
  .header .top-banner {
    display: flex;
    justify-content: space-between;
  }
}

.footer {
  padding: 50px 0 20px;
  background-color: #FFFFFF;
  color: #666666;
}
.footer__logo {
  margin-bottom: 20px;
}
.footer__top {
  margin-bottom: 50px;
}
.footer__copyright {
  font-size: 14px;
}
.footer__links {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  flex-wrap: nowrap;
  gap: 30px;
}
.footer__links a {
  font-size: 12px;
  color: #53AD05;
  text-align: center;
}
.footer__links a:hover {
  color: #26A003;
}
@media (max-width: 768px) {
  .footer__links a {
    text-align: start;
  }
}
@media (max-width: 992px) {
  .footer__links {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}
.footer__bottom {
  font-size: 12px;
}
.footer__bottom p {
  text-align: start;
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  .footer__bottom {
    text-align: start;
  }
}

.hero {
  background-color: #002812;
  position: relative;
  overflow: hidden;
}
.hero .container {
  position: static;
}
.hero__content {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  gap: 50px;
  height: 745px;
}
@media (max-width: 992px) {
  .hero__content {
    flex-direction: column;
    height: auto;
    padding: 50px 0;
  }
}
.hero__text {
  z-index: 1;
}
@media (max-width: 992px) {
  .hero__text {
    max-width: 100%;
    text-align: center;
    margin-bottom: 30px;
  }
}
.hero__title {
  font-size: 48px;
  margin-bottom: 15px;
  color: #FFFFFF;
  line-height: 120%;
}
@media (max-width: 768px) {
  .hero__title {
    font-size: 36px;
    text-align: start;
  }
}
.hero p {
  font-size: 16px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.8);
}
@media (max-width: 768px) {
  .hero p {
    text-align: start;
  }
}
.hero-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-self: end;
  height: 673px;
  width: 650px;
}
.hero-image .img-wrapper {
  height: 100%;
  width: 100%;
  position: relative;
  background: url("../assets/images/hero-banner.png") no-repeat center/cover;
}
.hero-image .img-wrapper .tg-button {
  height: 40px;
  width: 235px;
  display: block;
  position: absolute;
  bottom: 18%;
  left: 22%;
}
.hero-image::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
  height: 400px;
  background-color: #6BDD08;
  filter: blur(150px);
}
@media (max-width: 992px) {
  .hero-image {
    display: none;
  }
}

.loan-calculator {
  background-color: #FFFFFF;
  padding: 15px;
  border-radius: 16px;
}
@media (max-width: 992px) {
  .loan-calculator {
    margin: 0 auto;
    max-width: 100%;
  }
}
.loan-calculator__row {
  margin-top: -20px;
}
.loan-calculator__label {
  text-align: start;
  display: block;
  padding-left: 15px;
  transform: translateY(100%);
  font-weight: 400;
  font-size: 12px;
  color: #A7A7A7;
}
.loan-calculator .loan-amount-display {
  width: 100%;
  padding: 20px 15px 10px 15px;
  font-weight: 400;
  color: #2E5740;
  border: 1px solid #E8E8E8;
  border-radius: 8px;
  font-size: 16px;
}
.loan-calculator .loan-amount-display:focus {
  outline: none;
}
.loan-calculator__info {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: baseline;
  flex-wrap: nowrap;
  gap: 15px;
  margin-bottom: 10px;
}
@media (max-width: 576px) {
  .loan-calculator__info {
    flex-direction: column;
    align-items: stretch;
  }
}
.loan-calculator__field {
  flex: 1;
}
.loan-calculator__field label {
  display: block;
  margin-bottom: 10px;
  color: #002812;
  font-weight: 500;
}
.loan-calculator__field input {
  width: 100%;
  padding: 15px;
  border: 1px solid #E8E8E8;
  border-radius: 8px;
  height: 55px;
}
.loan-calculator__field input:focus {
  border-color: #26A003;
  outline: none;
}
.loan-calculator__field input.touched:invalid {
  border-color: #e74c3c;
}
.loan-calculator__field input.touched:invalid + .error-message {
  display: block;
}
.loan-calculator__field .error-message {
  display: none;
  color: #e74c3c;
  font-size: 12px;
  margin-top: 0.25rem;
}
.loan-calculator__field.full-name {
  flex: 3;
}
.loan-calculator__field.phone-number {
  flex: 2;
}
.loan-calculator__field.passport-seria {
  flex: 2;
}
.loan-calculator__field.passport-number {
  flex: 2;
}
.loan-calculator__btn {
  width: 100%;
  height: 55px;
  padding: 10px;
  border-radius: 15px;
  background-color: #6BDD08;
  color: #2E5740;
  font-weight: 600;
  font-size: 20px;
  transition: all 0.3s ease;
}
.loan-calculator__btn:hover {
  background-color: rgb(95.0851528384, 196.3908296943, 7.1091703057);
}

.range-slider {
  transform: translateY(-17px);
}
.range-slider__input {
  -webkit-appearance: none;
  width: 100%;
  height: 4px;
  background: #A7A7A7;
  border-radius: 3px;
}
.range-slider__input::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #FFFFFF;
  border: 2px solid #6BDD08;
  cursor: pointer;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}
.range-slider__input::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #26A003;
  cursor: pointer;
  border: none;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}
.range-slider__labels {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  font-size: 14px;
  color: #666666;
}

.why-us {
  height: 744px;
  padding: 50px 0;
  color: #4D765E;
}
.why-us .container, .why-us .why-us__inner, .why-us .why-us__image {
  height: 100%;
}
.why-us .section-title {
  color: #1C8249;
  text-align: left;
}
.why-us__inner {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  position: relative;
}
@media (max-width: 992px) {
  .why-us__inner {
    flex-direction: column-reverse;
    text-align: center;
  }
  .why-us__inner .section-title {
    text-align: center;
  }
}
.why-us__inner::before {
  content: "";
  position: absolute;
  background: url(../assets/images/circle-bg.svg) no-repeat center/cover;
  z-index: -1;
  width: 56%;
  height: 102%;
  left: -58px;
  top: 23px;
}
@media (max-width: 768px) {
  .why-us__inner::before {
    width: 100%;
    height: 102%;
    left: 0;
    right: 0;
  }
}
.why-us__content {
  flex: 1;
  border: 1px solid #6BDD08;
  border-radius: 24px;
  padding: 30px;
  background-color: #FFFFFF;
  position: relative;
}
.why-us__content::before {
  content: "";
  position: absolute;
  background: url(../assets/images/man-figure.svg) no-repeat center/cover;
  z-index: -1;
  width: 110px;
  height: 110px;
  left: -24%;
  top: -18%;
}
@media (max-width: 992px) {
  .why-us__content::before {
    display: none;
  }
}
.why-us__image {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
}
.why-us__image::before {
  content: "";
  position: absolute;
  background: url(../assets/images/hand-figure.svg) no-repeat center/cover;
  z-index: -1;
  width: 78px;
  height: 78px;
  left: -6%;
  top: 56%;
}
@media (max-width: 768px) {
  .why-us__image::before {
    display: none;
  }
}
.why-us__image::after {
  content: "";
  position: absolute;
  background: url(../assets/images/thumb-up-figure.png) no-repeat center/cover;
  z-index: -1;
  width: 78px;
  height: 78px;
  left: 50%;
  bottom: 0;
}
@media (max-width: 768px) {
  .why-us__image::after {
    display: none;
  }
}
.why-us__image .mobile-bg {
  display: none;
}
@media (max-width: 768px) {
  .why-us__image .mobile-bg {
    display: block;
  }
}
@media (max-width: 768px) {
  .why-us__image .desktop-bg {
    display: none;
  }
}
.why-us__list li {
  margin-bottom: 15px;
}
@media (max-width: 768px) {
  .why-us__list li {
    text-align: start;
  }
}
@media (max-width: 768px) {
  .why-us {
    height: auto;
  }
}

.how-it-works {
  padding: 50px 0;
  background-color: #002812;
}
.how-it-works .section-title {
  font-size: 40px;
  text-align: center;
  margin-bottom: 100px;
}
@media (max-width: 768px) {
  .how-it-works .section-title {
    font-size: 32px;
  }
}
.how-it-works .steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 30px;
  position: relative;
}
@media (max-width: 992px) {
  .how-it-works .steps {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .how-it-works .steps {
    grid-template-columns: 1fr;
  }
}
.how-it-works .steps::after {
  content: "";
  position: absolute;
  right: 0;
  top: -60%;
  width: 76px;
  height: 68px;
  background: url("../assets/images/light-rays-left-top.svg") no-repeat center/cover;
  z-index: -1;
}
@media (max-width: 768px) {
  .how-it-works .steps::after {
    display: none;
  }
}
.how-it-works .step-item {
  text-align: center;
}
.how-it-works .step-item__icon {
  width: 74px;
  height: 74px;
  background-color: #6BDD08;
  border-radius: 10px;
  margin: 0 auto 15px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
}
.how-it-works .step-item__title {
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 10px;
  color: #E0F9EA;
}
@media (max-width: 768px) {
  .how-it-works .step-item__title {
    font-size: 16px;
  }
}
.how-it-works .note {
  text-align: center;
  margin-top: 30px;
  font-weight: 600;
  color: #FFFFFF;
  position: relative;
}
.how-it-works .note::after {
  content: "";
  position: absolute;
  bottom: -50%;
  left: -3%;
  width: 51px;
  height: 41px;
  background: url("../assets/images/light-rays-right-bottom.svg") no-repeat center/cover;
  z-index: -1;
}
@media (max-width: 768px) {
  .how-it-works .note::after {
    display: none;
  }
}

.faq {
  overflow: hidden;
  padding: 100px 0;
  height: 744px;
  background: url("../assets/images/faq-bg.svg") no-repeat center;
  color: #4D765E;
}
.faq .section-title {
  text-align: center;
  color: #1C8249;
  margin-bottom: 100px;
}
.faq .section-title::before {
  content: "";
  position: absolute;
  background: url(../assets/images/faq-cub-figure.svg) no-repeat center/cover;
  top: 0;
  left: 10%;
  width: 87px;
  height: 68px;
  z-index: -1;
}
@media (max-width: 768px) {
  .faq .section-title::before {
    width: 40px;
    height: 40px;
    left: 0;
    top: 50%;
    background: url(../assets/images/faq-circle-figure.png) no-repeat center/cover;
  }
}
.faq .section-title::after {
  content: "";
  position: absolute;
  background: url(../assets/images/faq-triangle-figure.svg) no-repeat center/cover;
  top: 40px;
  right: 11%;
  width: 90px;
  height: 70px;
  z-index: -1;
}
@media (max-width: 768px) {
  .faq .section-title::after {
    width: 40px;
    height: 40px;
    top: -115px;
    transform: rotate(78deg);
    right: -3%;
  }
}
.faq .title-wrapper {
  position: relative;
}
.faq .title-wrapper::before {
  content: "";
  position: absolute;
  background: url(../assets/images/faq-sphere-figure.png) no-repeat center/cover;
  top: 170px;
  left: 11%;
  width: 38px;
  height: 38px;
  z-index: -1;
}
@media (max-width: 768px) {
  .faq .title-wrapper::before {
    top: 120px;
    left: 16%;
    width: 20px;
    height: 20px;
  }
}
.faq .title-wrapper::after {
  content: "";
  position: absolute;
  background: url(../assets/images/faq-sphere-figure.png) no-repeat center/cover;
  top: 122px;
  right: 12%;
  width: 38px;
  height: 38px;
  z-index: -1;
}
@media (max-width: 768px) {
  .faq .title-wrapper::after {
    width: 20px;
    height: 15px;
    top: -50px;
    right: 7%;
    background: url(../assets/images/faq-cub-figure.svg) no-repeat center/cover;
  }
}
.faq-list {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  gap: 15px;
  max-width: 768px;
  margin: 0 auto;
}
.faq-list-item {
  background-color: #FFFFFF;
  border: 1px solid #263238;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
  padding: 15px;
  width: 100%;
}
.faq-list-item .faq-item-header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: nowrap;
}
.faq-list-item .faq-item-header h3 {
  color: #1C8249;
  font-weight: 700;
  margin-bottom: 15px;
}
.faq-list-item .faq-item-header .faq-close {
  font-size: 1.25rem;
  line-height: 1;
  border: none;
  color: #263238;
}
.faq-list::after {
  content: "";
  position: absolute;
  background: url(../assets/images/faq-circle-figure.png) no-repeat center/cover;
  left: 21%;
  width: 65px;
  height: 74px;
  z-index: -1;
  bottom: -20%;
}
@media (max-width: 768px) {
  .faq-list::after {
    display: none;
  }
}
.faq-list::before {
  content: "";
  position: absolute;
  background: url(../assets/images/faq-sphere-figure.png) no-repeat center/cover;
  bottom: -20%;
  left: 40%;
  width: 38px;
  height: 38px;
  z-index: -1;
}
@media (max-width: 768px) {
  .faq-list::before {
    display: none;
  }
}
@media (max-width: 768px) {
  .faq {
    height: auto;
  }
}

.legal-info {
  padding: 50px 0;
  background-color: #002812;
}
.legal-info__content {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  gap: 30px;
}
@media (max-width: 992px) {
  .legal-info__content {
    flex-direction: column;
  }
}
@media (max-width: 768px) {
  .legal-info h2 {
    text-align: center;
  }
}
.legal-info__text {
  flex: 2;
}
.legal-info__text p {
  font-size: 18px;
  margin-bottom: 15px;
  color: #E0F9EA;
}
.legal-info__text p .fw-bold {
  font-weight: 600;
}
.legal-info__image-wrapper {
  position: relative;
  flex: 1;
}
.legal-info__image-wrapper .legal-info__image {
  position: relative;
}
.legal-info__image-wrapper .legal-info__image::before {
  content: "";
  position: absolute;
  top: -6px;
  right: 53%;
  width: 76px;
  height: 68px;
  background: url("../assets/images/lefal-info-figure-2.svg") no-repeat center/cover;
  z-index: -1;
}
.legal-info__image-wrapper .legal-info__image::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 35%;
  width: 144px;
  height: 155px;
  background: url("../assets/images/legal-info-figure-1.svg") no-repeat center/cover;
  z-index: -1;
}
.legal-info__image-wrapper::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: #6CDB0B;
  filter: blur(80px);
  opacity: 0.5;
  z-index: -1;
}

.legal-status {
  padding: 50px 0;
  background-color: #002812;
}
.legal-status__content {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  gap: 30px;
}
@media (max-width: 992px) {
  .legal-status__content {
    flex-direction: column-reverse;
  }
}
.legal-status__text {
  flex: 2;
}
.legal-status__text p {
  margin-bottom: 15px;
  color: #E0F9EA;
}
.legal-status__image {
  position: relative;
}
.legal-status__image::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: #6CDB0B;
  filter: blur(80px);
  opacity: 0.5;
  z-index: -1;
}

.contact {
  position: relative;
  padding: 100px 0;
  color: #4D765E;
  overflow: hidden;
}
.contact .section-title {
  position: relative;
  color: #1C8249;
}
.contact .section-title::before {
  content: "";
  position: absolute;
  right: 0;
  top: -100%;
  width: 130px;
  height: 71px;
  background: url("../assets/images/contact-figure-2.png") no-repeat center/cover;
  z-index: -1;
}
@media (max-width: 768px) {
  .contact .section-title::before {
    transform: rotate(45deg);
    top: 0;
    right: -8%;
  }
}
@media (max-width: 768px) {
  .contact .section-title {
    font-size: 32px;
  }
}
.contact__inner {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: nowrap;
  gap: 30px;
}
@media (max-width: 992px) {
  .contact__inner {
    flex-direction: column;
  }
}
.contact__inner::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: -30px;
  width: 50px;
  height: 47px;
  background: url("../assets/images/contact-figure-1.svg") no-repeat center/cover;
}
@media (max-width: 768px) {
  .contact__inner::before {
    display: none;
  }
}
.contact__questions-wrapper {
  position: relative;
  background-color: #002812;
  border-radius: 16px;
  padding: 30px;
  overflow: hidden;
}
.contact__questions-wrapper h2 {
  line-height: 150%;
  margin-bottom: 15px;
  font: 700 36px/1.5 Montserrat, sans-serif;
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  .contact__questions-wrapper h2 {
    font: 700 26px/1.5 Montserrat, sans-serif;
  }
}
.contact__questions-wrapper .descriptions {
  position: relative;
  color: #E0F9EA;
  font-family: Open Sans, sans-serif;
  font-size: 20px;
  line-height: 150%;
  margin-bottom: 30px;
  z-index: 1;
}
@media (max-width: 768px) {
  .contact__questions-wrapper .descriptions {
    font-size: 16px;
    margin-bottom: 15px;
  }
}
.contact__questions-wrapper .actions {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 20px;
}
.contact__questions-wrapper .actions button {
  border-radius: 15px;
  color: #6BDD08;
  padding: 15px 30px;
  border: 1px solid #6BDD08;
  font: 600 20px/1 Montserrat, sans-serif;
  background-color: #002812;
}
.contact__questions-wrapper .actions button:hover {
  background-color: #6BDD08;
  color: #2E5740;
}
@media (max-width: 768px) {
  .contact__questions-wrapper .actions button {
    width: 100%;
    padding: 15px 25px;
  }
}
@media (max-width: 768px) {
  .contact__questions-wrapper .actions {
    flex-direction: column;
  }
}
.contact__questions-wrapper .question-mark-figure {
  position: absolute;
}
.contact__questions-wrapper .question-mark-figure.figure-1 {
  top: 20%;
  right: 8%;
}
@media (max-width: 768px) {
  .contact__questions-wrapper .question-mark-figure.figure-1 {
    display: none;
  }
}
.contact__questions-wrapper .question-mark-figure.figure-2 {
  top: 11%;
  right: 40%;
}
@media (max-width: 768px) {
  .contact__questions-wrapper .question-mark-figure.figure-2 {
    top: 24%;
    right: 1%;
    transform: rotate(170deg);
  }
}
.contact__questions-wrapper .question-mark-figure.figure-3 {
  bottom: 12%;
  right: 40%;
}
@media (max-width: 768px) {
  .contact__questions-wrapper .question-mark-figure.figure-3 {
    left: -7px;
    top: 0;
    transform: rotate(187deg);
  }
}
.contact__questions-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 62%;
  width: 84%;
  height: 100%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: #6CDB0B;
  filter: blur(80px);
  opacity: 0.5;
}
.contact p {
  font-size: 18px;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .contact p {
    margin-bottom: 10px;
    font-size: 16px;
  }
}
.contact h3 {
  color: #4D765E;
}
.contact .email-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: nowrap;
  gap: 15px;
}
.contact__disclaimer {
  position: relative;
  margin-top: 30px;
  padding-top: 20px;
}
.contact__disclaimer p {
  font-size: 16px;
  font-weight: 600;
  z-index: 2;
  position: relative;
}
.contact__figure-wrapper {
  position: absolute;
  top: -40%;
  right: -7%;
}
.contact__figure-wrapper .figure-4 {
  transform: translate(22px, -40px);
}
@media (max-width: 768px) {
  .contact__figure-wrapper {
    top: -21%;
    right: -4%;
  }
  .contact__figure-wrapper .figure-4 {
    transform: translate(22px, -40px);
  }
  .contact__figure-wrapper .figure-3 {
    transform: translate(-11px, 10px);
  }
}
@media (max-width: 390px) {
  .contact__figure-wrapper {
    top: -10%;
    right: 0;
  }
}

.btn {
  display: inline-block;
  padding: 15px 30px;
  background-color: #26A003;
  color: #FFFFFF;
  border-radius: 8px;
  font-weight: 500;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  text-align: center;
}
.btn:hover {
  background-color: rgb(32.0552147239, 134.9693251534, 2.5306748466);
}
.btn--primary {
  background-color: #26A003;
  color: #FFFFFF;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #002812;
  z-index: 200;
}
.mobile-menu__header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  margin-bottom: 15px;
  padding: 15px 30px;
  background-color: #FFFFFF;
}
.mobile-menu__logo {
  height: 30px;
}
.mobile-menu__nav {
  display: flex;
  flex-direction: column;
}
.mobile-menu__nav a {
  font-size: 24px;
  font-weight: 400;
  color: #E0F9EA;
  padding: 20px 0;
  text-decoration: none;
  text-align: center;
}
.mobile-menu__nav a:hover {
  color: #26A003;
}

/* style for loading modal */
.loading-overlay {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 9999;
}
.loading-overlay .loading-modal {
  position: relative;
  background: #fff;
  border-radius: 12px;
  padding: 2rem;
  width: 60%;
  text-align: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  /* cancel button in top-right */
  /* simple rotating‐border spinner */
}
.loading-overlay .loading-modal .cancel-btn {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #666;
  cursor: pointer;
}
@media (max-width: 768px) {
  .loading-overlay .loading-modal .cancel-btn {
    width: 20px;
    height: 20px;
  }
}
.loading-overlay .loading-modal .spinner {
  position: relative;
  width: 155px;
  height: 155px;
  margin: 30px auto;
}
.loading-overlay .loading-modal .spinner span {
  --n: 12; /* total bars */
  --s: calc(360deg/var(--n)); /* slice angle */
  position: absolute;
  top: 70%;
  left: 50%;
  display: block;
  /* scaled up from 6×16 to ~15×40 (155/64≈2.42) */
  width: 15px;
  height: 40px;
  background: #5ad94d;
  border-radius: 7px;
  /* rotate each bar into place */
  transform-origin: center -40px; /* pivot 40px above the bar's top (i.e. at the spinner center) */
  transform: rotate(calc(var(--i) * var(--s)));
  opacity: 0.3;
  animation: fade 1.2s linear infinite;
  animation-delay: calc(var(--i) * -0.1s);
}
.loading-overlay .loading-modal p {
  margin: 0;
  color: #002812;
  font-size: 32px;
  line-height: 1.4;
}
.loading-overlay .loading-modal h3 {
  margin: 50px 0;
  color: #1C8249;
  font-size: 40px;
}
@media (max-width: 768px) {
  .loading-overlay .loading-modal {
    width: 100%;
  }
  .loading-overlay .loading-modal h3 {
    font-size: 20px;
    margin: 15px;
  }
  .loading-overlay .loading-modal p {
    font-size: 15px;
  }
  .loading-overlay .loading-modal .spinner {
    width: 70px;
    height: 70px;
  }
  .loading-overlay .loading-modal .spinner span {
    width: 10px;
    height: 20px;
    transform-origin: center -20px;
  }
}
.loading-overlay .hidden {
  display: none;
}

.loan-card__logo.mega-credit-wrapper {
  height: 100px;
}
.loan-card__logo.mega-credit-wrapper img {
  height: auto;
}

.loan {
  overflow: hidden;
  background-color: #002812;
  padding: 50px 0;
  min-height: calc(100vh - 100px - 251px);
}
@media (max-width: 768px) {
  .loan {
    padding: 30px 0;
  }
}
.loan__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(560px, 1fr));
  gap: 30px;
  position: relative;
}
@media (max-width: 768px) {
  .loan__grid {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 20px;
  }
}
.loan__grid::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background-color: #6BDD08;
  filter: blur(150px);
}

.loan-card {
  background: #FFFFFF;
  border-radius: 15px;
  padding: 30px;
  position: relative;
  transition: all 0.3s ease;
}
.loan-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
@media (max-width: 768px) {
  .loan-card {
    padding: 20px;
  }
}
.loan-card__badge {
  background: #EBFFB4;
  color: #000000;
  font-size: 20px;
  font-family: "Unbounded", sans-serif;
  padding: 10px;
  border-radius: 116px;
  font-weight: 300;
}
@media (max-width: 768px) {
  .loan-card__badge {
    font-size: 14px;
  }
}
.loan-card:hover .loan-card__badge.badge--hover {
  display: inline;
}
.loan-card:hover .loan-card__badge {
  display: none;
}
.loan-card .loan-card__badge.badge--hover {
  display: none;
  color: #5040B0;
  border: 1px solid #6754DA;
  background: #FFFFFF;
  font-weight: 500;
  transition: background 0.2s;
}
.loan-card__logo {
  display: flex;
  align-items: center;
  margin-top: 20px;
  margin-bottom: 20px;
}
.loan-card__logo img {
  margin-right: 30px;
  height: 100px;
  width: 120px;
}
@media (max-width: 768px) {
  .loan-card__logo img {
    margin-right: 15px;
  }
}
.loan-card__logo span {
  font-size: 28px;
  font-weight: 400;
  font-family: "Unbounded", sans-serif;
  color: #000000;
}
@media (max-width: 768px) {
  .loan-card__logo span {
    font-size: 18px;
  }
}
.loan-card__amount h3 {
  color: #000000;
  font-family: "Unbounded", sans-serif;
  font-size: 36px;
  margin-bottom: 15px;
}
@media (max-width: 768px) {
  .loan-card__amount h3 {
    font-size: 23px;
  }
}
.loan-card__details {
  margin-bottom: 20px;
  flex-grow: 1;
}
.loan-card__details p {
  color: #787878;
  font-size: 20px;
  font-weight: 400;
  font-family: "Montserrat", sans-serif;
}
@media (max-width: 768px) {
  .loan-card__details p {
    font-size: 16px;
  }
}
.loan-card__button {
  display: inline-block;
  color: #2E5740;
  border: 2px solid #6BDD08;
  padding: 20px;
  border-radius: 15px;
  text-decoration: none;
  font-weight: 600;
  text-align: center;
  transition: all 0.3s ease;
  width: 100%;
  font-size: 20px;
  font-family: "Montserrat", sans-serif;
}
.loan-card__button:hover {
  background: #4850C0;
  color: #FFFFFF;
  border: none;
}

.hidden {
  display: none;
}

.blur {
  filter: blur(6px);
  transition: filter 0.3s;
}

@keyframes fade {
  0%, 39%, 100% {
    opacity: 0.3;
  }
  40% {
    opacity: 1;
  }
}

/*# sourceMappingURL=main.css.map */
