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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  overflow-x: hidden;
}
@media (max-width: 1600px) {
  html {
    font-size: 15px;
  }
}
@media (max-width: 991px) {
  html {
    font-size: 14px;
  }
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font-size: 14px;
  font-family: "Onest", sans-serif;
  font-weight: normal;
  line-height: 1.5;
  color: #000000;
  width: 100%;
  -webkit-font-smoothing: antialiased;
  background: #F4F7F2;
}
@media (max-width: 1600px) {
  body {
    font-size: 15px;
  }
}
@media (max-width: 991px) {
  body {
    font-size: 14px;
  }
}

input, textarea, button, select, option {
  font-family: "Onest", sans-serif;
}

h1, h2, h3, h4, h5, button, a {
  font-family: "Onest", sans-serif;
}

h1 b, h2 b, h3 b, h4 b {
  color: #FF6213;
}

h1 {
  font-size: 3em;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 2%;
}
h1 b {
  font-weight: 800;
}
@media (max-width: 1200px) {
  h1 {
    font-size: 2.75em;
  }
}
@media (max-width: 767px) {
  h1 {
    font-size: 2.25em;
  }
}
@media (max-width: 576px) {
  h1 {
    font-size: 2.25em;
  }
}

.bold-h1 {
  font-weight: 800;
}

h2 {
  font-size: 2.5em;
  line-height: 1.25;
  font-weight: 700;
  letter-spacing: 2%;
}
h2 b {
  font-weight: 800;
}
@media (max-width: 1200px) {
  h2 {
    font-size: 2em;
  }
}
@media (max-width: 767px) {
  h2 {
    font-size: 1.75em;
  }
}

h3, .h3 {
  font-size: 1.875em;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: 2%;
}
h3 b, .h3 b {
  font-weight: 800;
}
@media (max-width: 1200px) {
  h3, .h3 {
    font-size: 1.75em;
  }
}
@media (max-width: 767px) {
  h3, .h3 {
    font-size: 1.5em;
  }
}

h4 {
  font-size: 1.375em;
  line-height: 1.3;
}
@media (max-width: 576px) {
  h4 {
    font-size: 1.25em;
  }
}

p {
  font-weight: 500;
  line-height: 1.625;
}

main {
  width: 100%;
}

section {
  padding-top: 100px;
}
@media (max-width: 767px) {
  section {
    padding-top: 60px;
  }
}

select option {
  color: black !important;
}

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

.btn {
  border-radius: 10px;
  padding: 8px 8px 8px 24px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background-color: #00923F;
  color: #FFFFFF;
  font-weight: 800;
  font-size: 0.875em;
  letter-spacing: 2%;
  width: -moz-fit-content;
  width: fit-content;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
  z-index: 1;
  border: 2px solid #00923F;
}
.btn .btn-icon {
  height: 32px;
  width: 32px;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  flex-shrink: 0;
  background-color: #FFFFFF;
  color: black;
  transition: all 0.3s;
}
.btn .btn-icon svg {
  display: block;
}
.btn:hover {
  background-color: transparent;
  color: #000000;
}
.btn:hover .btn-icon {
  background-color: #00923F;
  color: white;
}

.btn-full {
  width: 100%;
  justify-content: center;
  padding: 8px;
}

.btn-large {
  font-size: 1.5em;
}
.btn-large .btn-icon {
  height: 48px;
  width: 48px;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

li {
  position: relative;
  padding-left: 20px;
  line-height: 1.5;
}

li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 48%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  background-color: currentColor;
  border-radius: 50%;
}

.btn-black:hover {
  box-shadow: inset 0 0 0 2px black;
  color: black;
}
.btn-black:hover .btn-icon {
  background-color: #000000;
  color: #FFFFFF;
}

.btn-out-white:hover {
  color: #FFFFFF;
}

.btn-out-black {
  box-shadow: inset 0 0 0 2px black;
  color: #000000;
}
.btn-out-black::before {
  background: #000000;
  clip-path: circle(0% at 0% 100%);
}
.btn-out-black .btn-icon {
  background-color: #000000;
  color: #FFFFFF;
}
.btn-out-black:hover {
  color: #FFFFFF;
}
.btn-out-black:hover::before {
  clip-path: circle(150% at 0% 100%);
}
.btn-out-black:hover .btn-icon {
  background-color: #FFFFFF;
  color: black;
}

.btn-green {
  background-color: #00CE4E;
  box-shadow: inset 0 0 0 2px #00CE4E;
}
.btn-green::before {
  background: #000000;
  clip-path: circle(0% at 0% 100%);
}
.btn-green:hover {
  color: #FFFFFF;
  box-shadow: inset 0 0 0 2px black;
}
.btn-green:hover::before {
  clip-path: circle(150% at 0% 100%);
}
.btn-green:hover .btn-icon {
  background-color: #FFFFFF;
  color: black;
}

.btn-white {
  background-color: rgba(255, 255, 255, 0.1490196078);
  border: 1px solid rgba(255, 255, 255, 0.2509803922);
}
.btn-white:hover {
  background-color: #00923F;
  border-color: #00923F;
  color: #FFFFFF;
}
.btn-white:hover .btn-icon {
  background-color: #FFFFFF;
  color: #000000;
}

.btn-white-solid {
  background-color: #FFFFFF;
  border: 1px solid #FFFFFF;
  color: #000000;
}
.btn-white-solid .btn-icon {
  background-color: #00923F;
  color: #FFFFFF;
}
.btn-white-solid:hover .btn-icon {
  background-color: #FFFFFF;
  color: #000000;
}

.beige-bg {
  background-color: #FFEFE0;
  padding: 100px 0;
  margin-top: 100px;
}
@media (max-width: 767px) {
  .beige-bg {
    padding: 60px 0;
    margin-top: 60px;
  }
}

.subheading {
  font-size: 1em;
  letter-spacing: 10%;
  font-weight: 700;
  text-transform: uppercase;
  color: #123524;
}

.subheading.light {
  color: #00923F;
}

.subheading.white {
  font-weight: 700;
  color: #FFFFFF;
}

.icon-subheading {
  font-size: 1em;
  letter-spacing: 10%;
  font-weight: 700;
  text-transform: uppercase;
  color: #00923F;
  display: flex;
  align-items: center;
  gap: 12px;
}

.heading-between {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 767px) {
  .heading-between {
    flex-direction: column;
    align-items: start;
    gap: 24px;
  }
}

.heading-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 40px;
}
.heading-center h2 {
  margin-top: 12px;
  text-align: center;
  max-width: 700px;
}
.heading-center p {
  text-align: center;
  max-width: 720px;
  font-weight: 500;
  font-size: 1.125em;
  margin-top: 12px;
}
@media (max-width: 767px) {
  .heading-center {
    margin-bottom: 24px;
  }
  .heading-center h2, .heading-center p {
    margin-top: 12px;
  }
}

.heading-left {
  display: flex;
  flex-direction: column;
  align-items: start;
}
.heading-left h2 {
  margin-top: 12px;
  text-align: left;
}
.heading-left p {
  text-align: left;
  max-width: 720px;
}

.btn-center-cont {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}
@media (max-width: 767px) {
  .btn-center-cont {
    margin-top: 24px;
  }
}

ul, ol {
  padding-left: 0;
  margin-left: 0;
  list-style-position: inside;
}

.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  will-change: opacity, transform;
}

.fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.kill-transitions * {
  transition: none !important;
}

.delay-1 {
  transition-delay: 0.1s !important;
}

.delay-2 {
  transition-delay: 0.2s !important;
}

.delay-3 {
  transition-delay: 0.3s !important;
}

.delay-4 {
  transition-delay: 0.4s !important;
}

.delay-5 {
  transition-delay: 0.5s !important;
}

.delay-6 {
  transition-delay: 0.6s !important;
}

@media (max-width: 767px) {
  .delay-1,
  .delay-2,
  .delay-3,
  .delay-4,
  .delay-5,
  .delay-6 {
    transition-delay: 0s !important;
  }
}
.wp-block-heading {
  margin-top: 24px;
}

.wp-block-paragraph {
  margin-top: 12px;
}

.wp-block-list {
  margin-bottom: 12px;
}

/*border-radius*/
/*utilities*/
.position-relative {
  position: relative;
}

.position-absolute {
  position: absolute;
}

.d-flex {
  display: flex;
}

.flex-column {
  flex-direction: column;
}

.d-none {
  display: none !important;
}

.align-center {
  align-items: center;
}

.justify-center {
  justify-content: center;
}

.text-center {
  text-align: center;
}

.w-100 {
  width: 100%;
}

.container, .container-fluid, .container-sm, .container-md, .container-lg, .container-xl, .woocommerce-account.logged-in .page, .woocommerce-order-received article {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

.row-small {
  display: flex;
  flex-wrap: wrap;
  margin-right: -10px;
  margin-left: -10px;
}

@media (min-width: 576px) {
  .container, .container-sm, .woocommerce-account.logged-in .page, .woocommerce-order-received article {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container, .container-sm, .container-md, .woocommerce-account.logged-in .page, .woocommerce-order-received article {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container, .container-sm, .container-md, .container-lg, .woocommerce-account.logged-in .page, .woocommerce-order-received article {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container, .container-sm, .container-md, .container-lg, .container-xl, .woocommerce-account.logged-in .page, .woocommerce-order-received article {
    max-width: 1140px;
  }
}
@media (min-width: 1400px) {
  .container {
    max-width: 1320px;
  }
}
.no-gutters {
  margin-right: 0;
  margin-left: 0;
}

.no-gutters > .col, .no-gutters > [class*=col-] {
  padding-right: 0;
  padding-left: 0;
}

.col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col, .col-auto, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm, .col-sm-auto, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-md, .col-md-auto, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg, .col-lg-auto, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl, .col-xl-auto {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}

.row-small .col-1, .row-small .col-2, .row-small .col-3, .row-small .col-4, .row-small .col-5, .row-small .col-6, .row-small .col-7, .row-small .col-8, .row-small .col-9, .row-small .col-10, .row-small .col-11, .row-small .col-12, .row-small .col, .row-small .col-auto, .row-small .col-sm-1, .row-small .col-sm-2, .row-small .col-sm-3, .row-small .col-sm-4, .row-small .col-sm-5, .row-small .col-sm-6, .row-small .col-sm-7, .row-small .col-sm-8, .row-small .col-sm-9, .row-small .col-sm-10, .row-small .col-sm-11, .row-small .col-sm-12, .row-small .col-sm, .row-small .col-sm-auto, .row-small .col-md-1, .row-small .col-md-2, .row-small .col-md-3, .row-small .col-md-4, .row-small .col-md-5, .row-small .col-md-6, .row-small .col-md-7, .row-small .col-md-8, .row-small .col-md-9, .row-small .col-md-10, .row-small .col-md-11, .row-small .col-md-12, .row-small .col-md, .row-small .col-md-auto, .row-small .col-lg-1, .row-small .col-lg-2, .row-small .col-lg-3, .row-small .col-lg-4, .row-small .col-lg-5, .row-small .col-lg-6, .row-small .col-lg-7, .row-small .col-lg-8, .row-small .col-lg-9, .row-small .col-lg-10, .row-small .col-lg-11, .row-small .col-lg-12, .row-small .col-lg, .row-small .col-lg-auto, .row-small .col-xl-1, .row-small .col-xl-2, .row-small .col-xl-3, .row-small .col-xl-4, .row-small .col-xl-5, .row-small .col-xl-6, .row-small .col-xl-7, .row-small .col-xl-8, .row-small .col-xl-9, .row-small .col-xl-10, .row-small .col-xl-11, .row-small .col-xl-12, .row-small .col-xl, .row-small .col-xl-auto {
  padding-right: 10px;
  padding-left: 10px;
}

.col {
  flex-basis: 0;
  flex-grow: 1;
  max-width: 100%;
}

.row-cols-1 > * {
  flex: 0 0 100%;
  max-width: 100%;
}

.row-cols-2 > * {
  flex: 0 0 50%;
  max-width: 50%;
}

.row-cols-3 > * {
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}

.row-cols-4 > * {
  flex: 0 0 25%;
  max-width: 25%;
}

.row-cols-5 > * {
  flex: 0 0 20%;
  max-width: 20%;
}

.row-cols-6 > * {
  flex: 0 0 16.666667%;
  max-width: 16.666667%;
}

.col-auto {
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}

.col-1 {
  flex: 0 0 8.333333%;
  max-width: 8.333333%;
}

.col-2 {
  flex: 0 0 16.666667%;
  max-width: 16.666667%;
}

.col-3 {
  flex: 0 0 25%;
  max-width: 25%;
}

.col-4 {
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}

.col-5 {
  flex: 0 0 41.666667%;
  max-width: 41.666667%;
}

.col-6 {
  flex: 0 0 50%;
  max-width: 50%;
}

.col-7 {
  flex: 0 0 58.333333%;
  max-width: 58.333333%;
}

.col-8 {
  flex: 0 0 66.666667%;
  max-width: 66.666667%;
}

.col-9 {
  flex: 0 0 75%;
  max-width: 75%;
}

.col-10 {
  flex: 0 0 83.333333%;
  max-width: 83.333333%;
}

.col-11 {
  flex: 0 0 91.666667%;
  max-width: 91.666667%;
}

.col-12 {
  flex: 0 0 100%;
  max-width: 100%;
}

.order-first {
  order: -1;
}

.order-last {
  order: 13;
}

.order-0 {
  order: 0;
}

.order-1 {
  order: 1;
}

.order-2 {
  order: 2;
}

.order-3 {
  order: 3;
}

.order-4 {
  order: 4;
}

.order-5 {
  order: 5;
}

.order-6 {
  order: 6;
}

.order-7 {
  order: 7;
}

.order-8 {
  order: 8;
}

.order-9 {
  order: 9;
}

.order-10 {
  order: 10;
}

.order-11 {
  order: 11;
}

.order-12 {
  order: 12;
}

.offset-1 {
  margin-left: 8.333333%;
}

.offset-2 {
  margin-left: 16.666667%;
}

.offset-3 {
  margin-left: 25%;
}

.offset-4 {
  margin-left: 33.333333%;
}

.offset-5 {
  margin-left: 41.666667%;
}

.offset-6 {
  margin-left: 50%;
}

.offset-7 {
  margin-left: 58.333333%;
}

.offset-8 {
  margin-left: 66.666667%;
}

.offset-9 {
  margin-left: 75%;
}

.offset-10 {
  margin-left: 83.333333%;
}

.offset-11 {
  margin-left: 91.666667%;
}

@media (min-width: 576px) {
  .col-sm {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .row-cols-sm-1 > * {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .row-cols-sm-2 > * {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .row-cols-sm-3 > * {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .row-cols-sm-4 > * {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .row-cols-sm-5 > * {
    flex: 0 0 20%;
    max-width: 20%;
  }
  .row-cols-sm-6 > * {
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-sm-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-sm-1 {
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .col-sm-2 {
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-sm-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-sm-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-sm-5 {
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .col-sm-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-sm-7 {
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .col-sm-8 {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .col-sm-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-sm-10 {
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .col-sm-11 {
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .col-sm-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-sm-first {
    order: -1;
  }
  .order-sm-last {
    order: 13;
  }
  .order-sm-0 {
    order: 0;
  }
  .order-sm-1 {
    order: 1;
  }
  .order-sm-2 {
    order: 2;
  }
  .order-sm-3 {
    order: 3;
  }
  .order-sm-4 {
    order: 4;
  }
  .order-sm-5 {
    order: 5;
  }
  .order-sm-6 {
    order: 6;
  }
  .order-sm-7 {
    order: 7;
  }
  .order-sm-8 {
    order: 8;
  }
  .order-sm-9 {
    order: 9;
  }
  .order-sm-10 {
    order: 10;
  }
  .order-sm-11 {
    order: 11;
  }
  .order-sm-12 {
    order: 12;
  }
  .offset-sm-0 {
    margin-left: 0;
  }
  .offset-sm-1 {
    margin-left: 8.333333%;
  }
  .offset-sm-2 {
    margin-left: 16.666667%;
  }
  .offset-sm-3 {
    margin-left: 25%;
  }
  .offset-sm-4 {
    margin-left: 33.333333%;
  }
  .offset-sm-5 {
    margin-left: 41.666667%;
  }
  .offset-sm-6 {
    margin-left: 50%;
  }
  .offset-sm-7 {
    margin-left: 58.333333%;
  }
  .offset-sm-8 {
    margin-left: 66.666667%;
  }
  .offset-sm-9 {
    margin-left: 75%;
  }
  .offset-sm-10 {
    margin-left: 83.333333%;
  }
  .offset-sm-11 {
    margin-left: 91.666667%;
  }
}
@media (min-width: 768px) {
  .col-md {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .row-cols-md-1 > * {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .row-cols-md-2 > * {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .row-cols-md-3 > * {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .row-cols-md-4 > * {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .row-cols-md-5 > * {
    flex: 0 0 20%;
    max-width: 20%;
  }
  .row-cols-md-6 > * {
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-md-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-md-1 {
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .col-md-2 {
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-md-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-md-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-md-5 {
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-md-7 {
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .col-md-8 {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .col-md-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-md-10 {
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .col-md-11 {
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .col-md-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-md-first {
    order: -1;
  }
  .order-md-last {
    order: 13;
  }
  .order-md-0 {
    order: 0;
  }
  .order-md-1 {
    order: 1;
  }
  .order-md-2 {
    order: 2;
  }
  .order-md-3 {
    order: 3;
  }
  .order-md-4 {
    order: 4;
  }
  .order-md-5 {
    order: 5;
  }
  .order-md-6 {
    order: 6;
  }
  .order-md-7 {
    order: 7;
  }
  .order-md-8 {
    order: 8;
  }
  .order-md-9 {
    order: 9;
  }
  .order-md-10 {
    order: 10;
  }
  .order-md-11 {
    order: 11;
  }
  .order-md-12 {
    order: 12;
  }
  .offset-md-0 {
    margin-left: 0;
  }
  .offset-md-1 {
    margin-left: 8.333333%;
  }
  .offset-md-2 {
    margin-left: 16.666667%;
  }
  .offset-md-3 {
    margin-left: 25%;
  }
  .offset-md-4 {
    margin-left: 33.333333%;
  }
  .offset-md-5 {
    margin-left: 41.666667%;
  }
  .offset-md-6 {
    margin-left: 50%;
  }
  .offset-md-7 {
    margin-left: 58.333333%;
  }
  .offset-md-8 {
    margin-left: 66.666667%;
  }
  .offset-md-9 {
    margin-left: 75%;
  }
  .offset-md-10 {
    margin-left: 83.333333%;
  }
  .offset-md-11 {
    margin-left: 91.666667%;
  }
}
@media (min-width: 992px) {
  .col-lg {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .row-cols-lg-1 > * {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .row-cols-lg-2 > * {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .row-cols-lg-3 > * {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .row-cols-lg-4 > * {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .row-cols-lg-5 > * {
    flex: 0 0 20%;
    max-width: 20%;
  }
  .row-cols-lg-6 > * {
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-lg-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-lg-1 {
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .col-lg-2 {
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-lg-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-lg-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-lg-5 {
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-lg-7 {
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .col-lg-8 {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .col-lg-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-lg-10 {
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .col-lg-11 {
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .col-lg-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-lg-first {
    order: -1;
  }
  .order-lg-last {
    order: 13;
  }
  .order-lg-0 {
    order: 0;
  }
  .order-lg-1 {
    order: 1;
  }
  .order-lg-2 {
    order: 2;
  }
  .order-lg-3 {
    order: 3;
  }
  .order-lg-4 {
    order: 4;
  }
  .order-lg-5 {
    order: 5;
  }
  .order-lg-6 {
    order: 6;
  }
  .order-lg-7 {
    order: 7;
  }
  .order-lg-8 {
    order: 8;
  }
  .order-lg-9 {
    order: 9;
  }
  .order-lg-10 {
    order: 10;
  }
  .order-lg-11 {
    order: 11;
  }
  .order-lg-12 {
    order: 12;
  }
  .offset-lg-0 {
    margin-left: 0;
  }
  .offset-lg-1 {
    margin-left: 8.333333%;
  }
  .offset-lg-2 {
    margin-left: 16.666667%;
  }
  .offset-lg-3 {
    margin-left: 25%;
  }
  .offset-lg-4 {
    margin-left: 33.333333%;
  }
  .offset-lg-5 {
    margin-left: 41.666667%;
  }
  .offset-lg-6 {
    margin-left: 50%;
  }
  .offset-lg-7 {
    margin-left: 58.333333%;
  }
  .offset-lg-8 {
    margin-left: 66.666667%;
  }
  .offset-lg-9 {
    margin-left: 75%;
  }
  .offset-lg-10 {
    margin-left: 83.333333%;
  }
  .offset-lg-11 {
    margin-left: 91.666667%;
  }
}
@media (min-width: 1200px) {
  .col-xl {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .row-cols-xl-1 > * {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .row-cols-xl-2 > * {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .row-cols-xl-3 > * {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .row-cols-xl-4 > * {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .row-cols-xl-5 > * {
    flex: 0 0 20%;
    max-width: 20%;
  }
  .row-cols-xl-6 > * {
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-xl-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-xl-1 {
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .col-xl-2 {
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-xl-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-xl-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-xl-5 {
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .col-xl-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-xl-7 {
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .col-xl-8 {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .col-xl-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-xl-10 {
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .col-xl-11 {
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .col-xl-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-xl-first {
    order: -1;
  }
  .order-xl-last {
    order: 13;
  }
  .order-xl-0 {
    order: 0;
  }
  .order-xl-1 {
    order: 1;
  }
  .order-xl-2 {
    order: 2;
  }
  .order-xl-3 {
    order: 3;
  }
  .order-xl-4 {
    order: 4;
  }
  .order-xl-5 {
    order: 5;
  }
  .order-xl-6 {
    order: 6;
  }
  .order-xl-7 {
    order: 7;
  }
  .order-xl-8 {
    order: 8;
  }
  .order-xl-9 {
    order: 9;
  }
  .order-xl-10 {
    order: 10;
  }
  .order-xl-11 {
    order: 11;
  }
  .order-xl-12 {
    order: 12;
  }
  .offset-xl-0 {
    margin-left: 0;
  }
  .offset-xl-1 {
    margin-left: 8.333333%;
  }
  .offset-xl-2 {
    margin-left: 16.666667%;
  }
  .offset-xl-3 {
    margin-left: 25%;
  }
  .offset-xl-4 {
    margin-left: 33.333333%;
  }
  .offset-xl-5 {
    margin-left: 41.666667%;
  }
  .offset-xl-6 {
    margin-left: 50%;
  }
  .offset-xl-7 {
    margin-left: 58.333333%;
  }
  .offset-xl-8 {
    margin-left: 66.666667%;
  }
  .offset-xl-9 {
    margin-left: 75%;
  }
  .offset-xl-10 {
    margin-left: 83.333333%;
  }
  .offset-xl-11 {
    margin-left: 91.666667%;
  }
}
.bi {
  fill: currentColor;
}

abbr[title], abbr[data-original-title] {
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
  cursor: help;
  border-bottom: 0;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
}

address {
  margin-bottom: 1rem;
  font-style: normal;
  line-height: inherit;
}

dt {
  font-weight: 700;
}

dd {
  margin-bottom: 0.5rem;
  margin-left: 0;
}

small {
  font-size: 80%;
}

sub, sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

pre, code, kbd, samp {
  font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 1em;
}

pre {
  margin-top: 0;
  margin-bottom: 1rem;
  overflow: auto;
  -ms-overflow-style: scrollbar;
}

fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}

legend {
  display: block;
  width: 100%;
  max-width: 100%;
  padding: 0;
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
  line-height: inherit;
  color: inherit;
  white-space: normal;
}

progress {
  vertical-align: baseline;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  font: inherit;
  -webkit-appearance: button;
}

output {
  display: inline-block;
}

summary {
  display: list-item;
  cursor: pointer;
}

.text-uppercase {
  text-transform: uppercase;
}


/*------------------------------respo----------------------------------*/
/*------------------------------respo----------------------------------*/
/*------------------------------respo----------------------------------*/
@media (max-width: 1199px) {
  .newsletter .newsletter_card .wpcf7 form p label {
    font-size: 1em;
  }
}
@media (max-width: 767px) {
  .newsletter .newsletter_card {
    padding: 2.5em 2em 1.6em;
  }
}
@media (max-width: 575px) {
  .container-fluid {
    padding-left: 5px;
    padding-right: 5px;
  }
}
/*border-radius*/
main {
  min-height: calc(100vh - 51.35em);
}
@media (max-width: 992px) {
  main {
    min-height: unset;
  }
}

.header-wrapper {
  display: flex;
  justify-content: center;
  width: 100%;
  z-index: 999;
  position: fixed;
  top: 48px;
  transform: translateY(0);
  transition: all 0.3s ease-in-out;
  color: white;
}
.header-wrapper.smallHeader {
  transform: translateY(-48px);
}
@media (max-width: 767px) {
  .header-wrapper.smallHeader {
    transform: translateY(-24px);
  }
}
@media (max-width: 767px) {
  .header-wrapper {
    top: 24px;
  }
}

.header-wrapper-solid {
  background-color: #0D0D0D !important;
}

#header-container {
  position: relative;
}

#masthead {
  z-index: 999;
  transition: 0.4s all;
  width: 100%;
  background-color: transparent;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  background-color: #FFFFFF;
  padding: 20px 32px;
  border-radius: 20px;
}
#masthead.smallHeader {
  border-radius: 0 0 20px 20px;
  padding: 16px 24px;
}
@media (max-width: 576px) {
  #masthead {
    padding: 24px;
  }
}
@media (max-width: 1200px) {
  #masthead .navbar-brand {
    width: auto;
  }
}
#masthead .header-cta-wrap {
  width: 30%;
  display: flex;
  justify-content: end;
}
@media (max-width: 1200px) {
  #masthead .header-cta-wrap {
    display: none;
  }
}
#masthead figure {
  height: 48px;
}
@media (max-width: 576px) {
  #masthead figure {
    height: 36px;
  }
}
@media (max-width: 400px) {
  #masthead figure {
    height: 32px;
  }
}
#masthead .header-logo {
  height: 48px;
  width: auto;
}
@media (max-width: 576px) {
  #masthead .header-logo {
    height: 36px;
  }
}
@media (max-width: 400px) {
  #masthead .header-logo {
    height: 32px;
  }
}
#masthead .header-links {
  display: flex;
  align-items: center;
  gap: 24px;
}
#masthead .header-links .nav-menu {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}
#masthead .header-links .nav-menu li {
  position: relative;
  list-style: none !important;
}
#masthead .header-links .nav-menu li::before {
  content: none !important;
  display: none !important;
}
#masthead .header-links .nav-menu li .sub-menu {
  position: absolute;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
#masthead .header-links .nav-menu li.menu-item-has-children > a {
  display: flex;
  align-items: center;
}
#masthead .header-links .nav-menu li.menu-item-has-children > a::after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-left: 8px;
  border-bottom: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform 0.3s;
  position: relative;
  top: -2px;
}
#masthead .header-links .nav-menu li.menu-item-has-children:hover > a::after {
  transform: rotate(-135deg);
  top: 2px;
}
#masthead .header-links .nav-menu li.menu-item-has-children:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}
#masthead .header-links .nav-menu a {
  font-weight: 600;
  transition: all 0.25s;
  font-size: 1em;
  height: -moz-fit-content;
  height: fit-content;
  white-space: nowrap;
  text-decoration: none;
  color: #000000;
  display: block;
}
#masthead .header-links .nav-menu a:hover {
  color: #00923F;
}
#masthead .header-links .nav-menu .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #fff;
  min-width: 200px;
  list-style: none;
  padding: 10px 0;
  margin: 0;
  opacity: 0;
  visibility: visible;
  transform: translateY(10px);
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  z-index: 1000;
}
#masthead .header-links .nav-menu .sub-menu li {
  width: 100%;
  padding-left: 0 !important;
}
#masthead .header-links .nav-menu .sub-menu a {
  padding: 10px 20px;
  color: #000;
}
#masthead .header-links .nav-menu .sub-menu a:hover {
  background-color: #f5f5f5;
}
@media (max-width: 1200px) {
  #masthead .header-links {
    display: none;
  }
}
#masthead .header-links-right {
  justify-content: end;
}
#masthead .hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 32px;
  height: 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}
@media (max-width: 1200px) {
  #masthead .hamburger {
    display: flex;
  }
}
#masthead .hamburger span {
  width: 100%;
  height: 3px;
  background: #000000;
  border-radius: 10px;
  transition: all 0.3s linear;
  position: relative;
  transform-origin: 1px;
}
#masthead .hamburger.is-active span:first-child {
  transform: rotate(45deg);
}
#masthead .hamburger.is-active span:nth-child(2) {
  opacity: 0;
}
#masthead .hamburger.is-active span:nth-child(3) {
  transform: rotate(-45deg);
}

.mobile-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  width: auto;
  border-radius: 0;
  padding: 24px 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-20px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  z-index: 998;
}
.mobile-menu.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.mobile-menu .menu-wrap {
  background-color: #FFFFFF;
  color: #000000;
  padding: 24px 32px;
  border-radius: 20px;
}
.mobile-menu .menu-wrap .btn {
  margin-top: 20px;
}
.mobile-menu .mobile-links .current-menu-item a {
  color: #00923F !important;
}
.mobile-menu .mobile-links .nav-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.mobile-menu .mobile-links .nav-menu li {
  position: relative;
  list-style: none !important;
  padding-left: 0 !important;
}
.mobile-menu .mobile-links .nav-menu li::before {
  content: none !important;
  display: none !important;
}
.mobile-menu .mobile-links .nav-menu li.menu-item-has-children > a {
  display: flex;
  align-items: center;
}
.mobile-menu .mobile-links .nav-menu li.menu-item-has-children > a::after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-left: 8px;
  border-bottom: 3px solid currentColor;
  border-right: 3px solid currentColor;
  transform: rotate(45deg);
  transition: transform 0.3s;
  position: relative;
  top: -2px;
}
.mobile-menu .mobile-links .nav-menu li.menu-item-has-children:hover > a::after {
  transform: rotate(-135deg);
  top: 2px;
}
.mobile-menu .mobile-links .nav-menu a {
  font-size: 18px;
  font-weight: 700;
  color: #000000;
  text-decoration: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.2s;
}
.mobile-menu .mobile-links .nav-menu a:hover {
  color: #00923F;
}
.mobile-menu .mobile-links .nav-menu .sub-menu {
  display: none;
  list-style: none;
  padding-left: 20px;
  padding-top: 15px;
  margin: 0;
  flex-direction: column;
  gap: 15px;
}
.mobile-menu .mobile-links .nav-menu .sub-menu a {
  font-size: 16px;
  font-weight: 500;
}
.mobile-menu .mobile-cta {
  display: flex;
  justify-content: flex-start;
}

.header-socials-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-social-icon {
  height: 42px !important;
  width: 42px !important;
  border-radius: 42px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  transition: all 0.25s;
}
.header-social-icon:hover {
  background-color: white;
}

/*border-radius*/
.footer-wrapper {
  background-color: #123524;
  background-image: url("/wp-content/uploads/2026/07/Frame-89239.svg");
  background-repeat: no-repeat;
  background-position: left 24px center;
  background-size: auto 90%;
  padding-top: 60px;
  margin: 24px;
  margin-top: 100px;
  border-radius: 30px;
}
@media (max-width: 1200px) {
  .footer-wrapper {
    margin: 12px;
    padding-top: 48px;
  }
}
@media (max-width: 767px) {
  .footer-wrapper {
    margin: 0;
    border-radius: 0;
  }
}
@media (max-width: 767px) {
  .footer-wrapper {
    margin-top: 60px;
    background-size: contain;
  }
}

.ds-footer .footer-upper {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 40px;
}
@media (max-width: 992px) {
  .ds-footer .footer-upper {
    padding-bottom: 24px;
    flex-direction: column;
    align-items: start;
    gap: 20px;
  }
}
.ds-footer .footer-upper .footer-logo {
  height: 60px;
  width: auto;
  margin-right: 112px;
}
@media (max-width: 992px) {
  .ds-footer .footer-upper .footer-logo {
    margin-right: 24px;
    height: 48px;
  }
}
@media (max-width: 767px) {
  .ds-footer .footer-upper .footer-logo {
    margin-right: 0;
  }
}
.ds-footer .footer-upper .footer-upper-btns {
  display: flex;
  gap: 32px;
}
.ds-footer .footer-upper .footer-upper-btns .btn {
  flex-direction: row-reverse;
  padding: 8px 24px 8px 8px;
}
@media (max-width: 992px) {
  .ds-footer .footer-upper .footer-upper-btns {
    gap: 20px;
  }
}
@media (max-width: 576px) {
  .ds-footer .footer-upper .footer-upper-btns {
    gap: 12px;
    flex-direction: column;
  }
}
.ds-footer .footer-main {
  padding-top: 40px;
  display: grid;
  grid-template-columns: auto auto auto auto;
  justify-content: space-between;
  color: white;
  -moz-column-gap: 24px;
       column-gap: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 40px;
}
@media (max-width: 992px) {
  .ds-footer .footer-main {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 56px;
    padding-top: 24px;
    padding-bottom: 24px;
  }
}
@media (max-width: 767px) {
  .ds-footer .footer-main {
    grid-template-columns: 1fr;
    row-gap: 40px;
  }
}
.ds-footer .footer-main .foot-col h4 {
  margin-bottom: 8px;
}
.ds-footer .footer-main .foot-col a {
  margin-top: 12px;
  transition: all 0.3s;
  text-decoration: underline;
}
.ds-footer .footer-main .foot-col a:hover {
  color: #0EDF68;
}
.ds-footer .footer-main .foot-col span {
  display: block;
  margin-top: 12px;
}
.ds-footer .footer-main .col1 {
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  flex-direction: column;
}
.ds-footer .footer-main .col1 .col1-first-span {
  padding-bottom: 12px;
}
.ds-footer .footer-main .col1 .second-h4 {
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .ds-footer .footer-main .col1 {
    width: 100%;
  }
}
.ds-footer .footer-main .col2 {
  width: auto;
  display: flex;
  flex-direction: column;
}
.ds-footer .footer-main .col2 .for-who-foot-link {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: underline;
  font-weight: 700;
}
.ds-footer .footer-main .col2 .for-who-foot-link span {
  margin: 0;
}
.ds-footer .footer-main .partners-imgs {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 32px;
}
.ds-footer .footer-main .partners-imgs img {
  width: 200px;
  height: auto;
}
@media (max-width: 1200px) {
  .ds-footer .footer-main .partners-imgs img {
    width: 176px;
  }
}

.footer-upper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-bottom {
  font-size: 0.875em;
  font-weight: 500;
  color: #FFFFFF;
}
.footer-bottom .container {
  display: grid;
  grid-template-columns: auto auto auto;
  justify-content: space-between;
  padding-top: 32px;
  padding-bottom: 32px;
  text-align: center;
}
@media (max-width: 767px) {
  .footer-bottom .container {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}
.footer-bottom .container a {
  text-transform: none;
  font-weight: 500;
  transition: all 0.25s;
}
.footer-bottom .container a:hover {
  color: #0EDF68;
  text-decoration: underline;
}
.footer-bottom .container span a {
  color: #0EDF68;
  text-decoration: none;
}

.ds_newsletter {
  position: relative;
  z-index: 1;
  padding: 3.75em 0;
}
.ds_newsletter .ds_newsletter_wrap {
  justify-content: space-between;
  position: relative;
}
@media (max-width: 1200px) {
  .ds_newsletter .ds_newsletter_wrap {
    flex-direction: column;
    gap: 2em;
  }
}
.ds_newsletter .ds_newsletter_wrap .ds_newsletter_right {
  color: #000000;
}
.ds_newsletter .ds_newsletter_wrap .ds_newsletter_right .ds_newsletter_img {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 1399px) {
  .ds_newsletter .ds_newsletter_wrap .ds_newsletter_right .ds_newsletter_img {
    width: 15em;
    height: auto;
  }
}
@media (max-width: 1199px) {
  .ds_newsletter .ds_newsletter_wrap .ds_newsletter_right .ds_newsletter_img {
    width: 7em;
    height: auto;
  }
}
@media (max-width: 991px) {
  .ds_newsletter .ds_newsletter_wrap .ds_newsletter_right .ds_newsletter_img {
    display: none;
  }
}
.ds_newsletter .ds_newsletter_wrap .ds_newsletter_right h3 {
  margin-bottom: 0.5rem;
}
.ds_newsletter .ds_newsletter_wrap .ds_newsletter_right h3:nth-of-type(2) {
  margin-top: 2.75rem;
}
.ds_newsletter .ds_newsletter_wrap .ds_newsletter_right h4 {
  margin-top: 1em;
  margin-bottom: 0.25em;
  font-size: 1.5em;
}
.ds_newsletter .ds_newsletter_wrap .ds_newsletter_right span {
  font-size: 1em;
  line-height: 2em;
}
.ds_newsletter .ds_newsletter_wrap .ds_newsletter_right .ds_newsletter_phone,
.ds_newsletter .ds_newsletter_wrap .ds_newsletter_right .ds_newsletter_mail {
  margin-top: 1.125em;
}
.ds_newsletter .ds_newsletter_wrap .ds_newsletter_right .ds_newsletter_phone a,
.ds_newsletter .ds_newsletter_wrap .ds_newsletter_right .ds_newsletter_mail a {
  color: currentColor;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.75em;
}
.ds_newsletter .ds_newsletter_wrap .ds_newsletter_right .ds_newsletter_phone a svg,
.ds_newsletter .ds_newsletter_wrap .ds_newsletter_right .ds_newsletter_mail a svg {
  width: 1.5em;
  height: 1.5em;
}
.ds_newsletter .ds_newsletter_wrap .ds_newsletter_right .ds_newsletter_address {
  max-width: 8.625em;
  margin-bottom: 1.625em;
}
@media (max-width: 991px) {
  .ds_newsletter .ds_newsletter_wrap .ds_newsletter_right .ds_newsletter_address {
    max-width: unset;
  }
}
.ds_newsletter .ds_newsletter_wrap .ds_newsletter_right a {
  transition: 0.4s all;
}

.contact-map-wrap {
  margin-top: 3.75em;
  margin-bottom: 3.75em;
}

.f-contact-row {
  margin-top: 1.5em !important;
  font-weight: 800 !important;
  gap: 1.25em !important;
}

@media (max-width: 767px) {
  .column {
    text-align: left !important;
  }
  .column.c2, .column.c3 {
    padding-left: 0 !important;
    display: flex;
    flex-direction: column;
    align-items: start !important;
  }
}
.footer-contact-part {
  display: flex;
  align-items: center;
  gap: 8px;
}

.ds_newsletter_left {
  position: relative;
  background-color: #9DBD78;
  padding: 4em;
  border-radius: 1em;
  min-width: 55%;
  height: -moz-fit-content;
  height: fit-content;
}
@media (max-width: 500px) {
  .ds_newsletter_left {
    padding: 3em;
  }
}
@media (max-width: 991px) {
  .ds_newsletter_left {
    flex-grow: 1;
  }
}
.ds_newsletter_left h2 {
  color: #FFFFFF;
  font-weight: 800;
  margin-top: 16px;
  font-size: 2.875em;
}
@media (max-width: 767px) {
  .ds_newsletter_left h2 {
    font-size: 2em;
  }
}
.ds_newsletter_left .ds_form_wrap .ds_form_row {
  display: flex;
  gap: 1em;
  margin-top: 1.125em;
}
@media (max-width: 991px) {
  .ds_newsletter_left .ds_form_wrap .ds_form_row {
    flex-grow: 1;
    flex-direction: column;
  }
}
.ds_newsletter_left .ds_form_wrap .ds_form_row label {
  display: flex;
  flex-direction: column;
  gap: 0.375em;
  flex-grow: 1;
}
.ds_newsletter_left .ds_form_wrap .ds_form_row label span {
  font-weight: 700;
  color: #FFFFFF;
}
.ds_newsletter_left .ds_form_wrap .ds_form_row > div {
  display: flex;
  justify-content: end;
  gap: 1.625rem;
  align-items: center;
}
.ds_newsletter_left .ds_form_wrap .ds_form_row > div span {
  max-width: 15.5rem;
}
@media (max-width: 991px) {
  .ds_newsletter_left .ds_form_wrap .ds_form_row > div span {
    max-width: unset;
  }
}
.ds_newsletter_left .ds_form_wrap .ds_form_row:last-child {
  justify-content: end;
  font-size: 0.875em;
}
.ds_newsletter_left .ds_form_wrap .ds_form_row:last-child a {
  text-decoration: none;
}
.ds_newsletter_left .ds_form_wrap .ds_form_row:last-child a:hover {
  text-decoration: underline;
}
.ds_newsletter_left .ds_form_wrap .ds_form_row:last-child .btn {
  font-size: 1rem;
}

.footer-cta-section-wrap {
  margin-top: 220px;
}

.footer-instagram {
  margin-top: 120px;
  margin-bottom: 120px;
}

.foot-ig-head-wrap {
  display: flex;
  align-items: end;
  justify-content: space-between;
}
.foot-ig-head-wrap h2 {
  margin-top: 12px;
}
@media (max-width: 767px) {
  .foot-ig-head-wrap {
    flex-direction: column;
    align-items: start;
    gap: 24px;
  }
}

.ig-head-btns {
  display: flex;
  gap: 24px;
}
@media (max-width: 767px) {
  .ig-head-btns {
    flex-direction: column;
  }
}

.footer-ig-images-wrap {
  margin-top: 60px;
  display: flex;
  flex-wrap: nowrap;
  gap: 24px;
}
@media (max-width: 1200px) {
  .footer-ig-images-wrap {
    flex-wrap: wrap;
    justify-content: center;
  }
}
.footer-ig-images-wrap .footer-ig-img-wrap {
  width: 288px;
  height: 216px;
  position: relative;
  border-radius: 20px;
  cursor: pointer;
  flex-shrink: 0;
}
@media (max-width: 1200px) {
  .footer-ig-images-wrap .footer-ig-img-wrap {
    width: calc((100% - 80px) / 3);
    flex-shrink: 1;
  }
}
@media (max-width: 992px) {
  .footer-ig-images-wrap .footer-ig-img-wrap {
    width: calc((100% - 40px) / 2);
  }
}
@media (max-width: 450px) {
  .footer-ig-images-wrap .footer-ig-img-wrap {
    width: 100%;
  }
}
.footer-ig-images-wrap .footer-ig-img-wrap img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.footer-ig-images-wrap .footer-ig-img-wrap:hover .footer-ig-overlay {
  opacity: 1;
}
.footer-ig-images-wrap .footer-ig-img-wrap .footer-ig-overlay {
  border-radius: 20px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(8px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  opacity: 0;
  transition: all 0.4s;
}
.footer-ig-images-wrap .footer-ig-img-wrap .footer-ig-overlay img {
  height: 60px;
  width: auto;
}
.footer-ig-images-wrap .footer-ig-img-wrap .footer-ig-overlay .overlay-go-to {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: white;
  text-decoration: underline;
  font-weight: 800;
}

.contact-particle {
  display: flex;
  align-items: center;
  background-color: white;
  width: 420px;
  padding: 20px;
  gap: 16px;
  height: 102px;
  border: 1.5px solid rgba(15, 46, 21, 0.1019607843);
  border-radius: 20px;
}
@media (max-width: 550px) {
  .contact-particle {
    width: 100%;
  }
}
.contact-particle .particle-icon-wrap {
  background-color: #F7F2FA;
  height: 62px;
  width: 62px;
  border-radius: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.ds_newsletter_map_wrap {
  width: 46%;
}
@media (max-width: 992px) {
  .ds_newsletter_map_wrap {
    max-width: unset;
    width: 100%;
    min-height: 400px;
  }
}
.ds_newsletter_map_wrap iframe {
  border-radius: 30px;
  height: 100%;
  width: 100%;
}
@media (max-width: 992px) {
  .ds_newsletter_map_wrap iframe {
    height: 400px;
  }
}

.ds_newsletter_right {
  max-width: 40%;
}
@media (max-width: 992px) {
  .ds_newsletter_right {
    max-width: unset;
    width: 100%;
  }
}

.contact-heading-p {
  margin-top: 20px;
  margin-bottom: 32px;
}

.contact-particle-text-wrap {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
}
.contact-particle-text-wrap span:first-child {
  font-weight: 500;
  line-height: 16px !important;
}
.contact-particle-text-wrap span:last-child {
  text-decoration: underline;
  font-weight: 800;
  font-size: 1.125em;
  transition: all 0.3s;
}

.ds_newsletter_left_left {
  max-width: 45%;
}
@media (max-width: 1400px) {
  .ds_newsletter_left_left {
    max-width: 50%;
  }
}
@media (max-width: 992px) {
  .ds_newsletter_left_left {
    max-width: unset;
    width: 100%;
  }
}

.ds_newsletter_absolute_image {
  position: absolute;
  right: 24px;
  bottom: 0;
  height: 690px;
  width: auto;
}
@media (max-width: 1400px) {
  .ds_newsletter_absolute_image {
    height: 600px;
  }
}
@media (max-width: 1200px) {
  .ds_newsletter_absolute_image {
    height: 500px;
  }
}
@media (max-width: 550px) {
  .ds_newsletter_absolute_image {
    height: 476px;
  }
}
@media (max-width: 480px) {
  .ds_newsletter_absolute_image {
    height: 400px;
  }
}

@media (max-width: 1200px) {
  .ds_form_row {
    flex-direction: column;
  }
}
@media (max-width: 992px) {
  .ds_newsletter_left {
    padding-bottom: 500px;
  }
}
@media (max-width: 480px) {
  .ds_newsletter_left {
    padding-bottom: 420px;
  }
}
.footer-socials-wrap {
  margin-top: 32px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-socials-wrap a {
  height: 40px;
  width: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #FFFFFF;
  border-radius: 32px;
  transition: all 0.2s;
}
.footer-socials-wrap a:hover {
  background-color: #00923F;
}
.footer-socials-wrap a img {
  height: 15px;
  width: auto;
}

.footer-partners {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  padding-bottom: 20px;
  margin-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1019607843);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1019607843);
  color: #FFFFFF;
}
@media (max-width: 992px) {
  .footer-partners {
    flex-direction: column;
    align-items: start;
    gap: 20px;
  }
}
.footer-partners .footer-partners-logos {
  display: flex;
  gap: 24px;
}
@media (max-width: 560px) {
  .footer-partners .footer-partners-logos {
    gap: 12px;
  }
}
.footer-partners .footer-partners-logos img {
  height: 72px;
  width: 72px;
  border-radius: 80px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
@media (max-width: 560px) {
  .footer-partners .footer-partners-logos img {
    width: 56px;
    height: 56px;
  }
}

.hero {
  height: 100vh;
  max-height: 920px;
  padding-top: 0;
  position: relative;
  overflow: hidden;
  min-height: 700px;
  display: flex;
  align-items: center;
}
.hero .hero-background {
  position: absolute;
  inset: 24px;
  z-index: 2;
  background-color: #E2EDD5;
  border-radius: 30px;
  overflow: hidden;
  background-image: url("/wp-content/uploads/2026/08/29c8ab39109ac1c45d0ed4a887c9115402d43916.jpg");
}
@media (max-width: 1200px) {
  .hero .hero-background {
    inset: 12px;
  }
}
@media (max-width: 767px) {
  .hero .hero-background {
    inset: 0;
    border-radius: 0;
  }
}
.hero .hero-background .hero-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background: rgba(18, 53, 36, 0.8980392157);
  z-index: 6;
}
@media (max-width: 992px) {
  .hero .hero-background .hero-bg-overlay {
    width: 100%;
  }
}
.hero .hero-background .hero-bg-img {
  position: absolute;
  top: 0;
  right: 0;
  width: 55%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  z-index: 3;
}

@media (max-width: 992px) {
  .hero .hero-background .hero-bg-img {
    width: 100% !important;
  }
}
@media (min-width: 992px) {
  .hero {
    min-height: 640px;
  }
}
@media (max-width: 1200px) {
  .hero {
    height: auto;
    max-height: unset;
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
@media (max-width: 992px) {
  .hero {
    padding-top: 148px;
  }
}
.hero .container.hero-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  z-index: 5;
  position: relative;
}
@media (max-width: 992px) {
  .hero .container.hero-content {
    flex-direction: column;
  }
}
.hero .container.hero-content .hero-texts {
  max-width: 48%;
  color: #FFFFFF;
}
@media (max-width: 992px) {
  .hero .container.hero-content .hero-texts {
    max-width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
.hero .container.hero-content .hero-texts .hero-subheading {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
  gap: 12px;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 10%;
  width: -moz-fit-content;
  width: fit-content;
}
.hero .container.hero-content .hero-texts h1 {
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .hero .container.hero-content .hero-texts h1 {
    margin-bottom: 16px;
  }
}
.hero .container.hero-content .hero-texts p {
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .hero .container.hero-content .hero-texts p {
    margin-bottom: 20px;
  }
}
.hero .container.hero-content .hero-texts .hero-btns {
  display: flex;
  align-items: center;
  gap: 24px;
}
@media (max-width: 992px) {
  .hero .container.hero-content .hero-texts .hero-btns {
    justify-content: center;
    flex-wrap: wrap;
  }
}
@media (max-width: 560px) {
  .hero .container.hero-content .hero-texts .hero-btns {
    gap: 12px;
  }
}
.hero .container.hero-content .hero-clickables {
  position: relative;
  width: 100%;
  height: 100%;
}
.hero .container.hero-content .hero-clickables #lightning-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}
.hero .container.hero-content .hero-clickables #lightning-canvas path {
  fill: none;
  stroke: #0EDF68;
  stroke-width: 2px;
  filter: drop-shadow(0 0 5px #0EDF68) drop-shadow(0 0 8px #0EDF68) drop-shadow(0 0 15px #0EDF68);
  animation: strike 2s ease-out forwards;
}
@media (max-width: 1200px) {
  .hero .container.hero-content .hero-clickables {
    height: 420px;
    margin-top: 80px;
  }
}
@media (max-width: 992px) {
  .hero .container.hero-content .hero-clickables {
    height: 480px;
    margin-top: -40px;
    margin-bottom: -70px;
  }
}
.hero .container.hero-content .hero-clickables .clickable-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  position: absolute;
  z-index: 2;
}
.hero .container.hero-content .hero-clickables .clickable-wrap:nth-child(2) {
  top: 280px;
  left: 160px;
}
@media (max-width: 1200px) {
  .hero .container.hero-content .hero-clickables .clickable-wrap:nth-child(2) {
    left: 120px;
  }
}
@media (max-width: 767px) {
  .hero .container.hero-content .hero-clickables .clickable-wrap:nth-child(2) {
    left: 20px;
  }
}
.hero .container.hero-content .hero-clickables .clickable-wrap:nth-child(3) {
  top: 200px;
  right: -14%;
}
@media (max-width: 1600px) {
  .hero .container.hero-content .hero-clickables .clickable-wrap:nth-child(3) {
    right: 5%;
  }
}
@media (max-width: 1200px) {
  .hero .container.hero-content .hero-clickables .clickable-wrap:nth-child(3) {
    right: 0;
  }
}
.hero .container.hero-content .hero-clickables .clickable-wrap:nth-child(4) {
  bottom: 200px;
  left: 160px;
}
@media (max-width: 1200px) {
  .hero .container.hero-content .hero-clickables .clickable-wrap:nth-child(4) {
    left: 12%;
  }
}
@media (max-width: 992px) {
  .hero .container.hero-content .hero-clickables .clickable-wrap:nth-child(4) {
    bottom: unset;
    top: 20%;
  }
}
@media (max-width: 767px) {
  .hero .container.hero-content .hero-clickables .clickable-wrap:nth-child(4) {
    left: 8px;
  }
}
@media (max-width: 420px) {
  .hero .container.hero-content .hero-clickables .clickable-wrap:nth-child(4) {
    top: 30%;
  }
}
.hero .container.hero-content .hero-clickables .clickable-wrap:nth-child(5) {
  bottom: 320px;
  right: -10%;
}
@media (max-width: 1600px) {
  .hero .container.hero-content .hero-clickables .clickable-wrap:nth-child(5) {
    right: 0;
  }
}
.hero .container.hero-content .hero-clickables .clickable-wrap:nth-child(6) {
  bottom: 150px;
  right: 80px;
}
@media (max-width: 1200px) {
  .hero .container.hero-content .hero-clickables .clickable-wrap:nth-child(6) {
    right: 0;
    bottom: 170px;
  }
}
@media (max-width: 992px) {
  .hero .container.hero-content .hero-clickables .clickable-wrap:nth-child(6) {
    right: 30%;
  }
}
@media (max-width: 767px) {
  .hero .container.hero-content .hero-clickables .clickable-wrap:nth-child(6) {
    bottom: 80px;
  }
}
@media (max-width: 420px) {
  .hero .container.hero-content .hero-clickables .clickable-wrap:nth-child(6) {
    right: 20px;
  }
}
.hero .container.hero-content .hero-clickables .clickable-wrap .pulsing-icon {
  height: 14px;
  width: 14px;
  background-color: #0EDF68;
  border-radius: 20px;
  animation: pulse-animation 1.4s infinite;
}
.hero .container.hero-content .hero-clickables .clickable-wrap .clickable-content {
  background-color: #FFFFFF;
  border-radius: 12px;
  padding: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  font-size: 1.125em;
  transition: all 0.25s;
}
.hero .container.hero-content .hero-clickables .clickable-wrap .clickable-content:hover {
  color: #00923F;
  scale: 1.03;
}
.hero .container.hero-content .hero-clickables .clickable-wrap .clickable-content svg {
  height: 28px;
  width: auto;
}
.hero .container.hero-content .hero-img-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-grow: 1;
  max-width: 600px;
  height: 100%;
}
@media (max-width: 992px) {
  .hero .container.hero-content .hero-img-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 32px;
    height: auto;
    width: 100%;
  }
}
.hero .container.hero-content .hero-img-wrap img {
  width: 420px;
  position: relative;
  z-index: 2;
  margin-right: 320px;
}
@media (max-width: 1400px) {
  .hero .container.hero-content .hero-img-wrap img {
    width: 360px;
    margin-right: 280px;
  }
}
@media (max-width: 1200px) {
  .hero .container.hero-content .hero-img-wrap img {
    margin-right: 180px;
    width: 360px;
  }
}
@media (max-width: 992px) {
  .hero .container.hero-content .hero-img-wrap img {
    width: 80%;
    max-width: 340px;
    margin-right: 0;
    grid-column: 1/-1;
    justify-self: center;
  }
}

@keyframes strike {
  0% {
    stroke-dashoffset: var(--path-length);
    opacity: 0;
  }
  2% {
    opacity: 1;
  }
  25% {
    stroke-dashoffset: 0;
    opacity: 1;
  }
  30% {
    stroke-dashoffset: 0;
    opacity: 0;
  }
  100% {
    stroke-dashoffset: 0;
    opacity: 0;
  }
}
@keyframes pulse-animation {
  0% {
    box-shadow: 0 0 0 0 rgba(14, 223, 104, 0.7);
  }
  100% {
    box-shadow: 0 0 0 10px rgba(14, 223, 104, 0);
  }
}
.benefit-section {
  padding-top: 36px !important;
}
.benefit-section .benefits-wrap {
  border-radius: 20px;
  border: 1px solid rgba(18, 53, 36, 0.2);
  padding: 40px;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 1400px) {
  .benefit-section .benefits-wrap {
    padding: 32px;
  }
}
@media (max-width: 767px) {
  .benefit-section .benefits-wrap {
    flex-direction: column;
    gap: 24px;
  }
}
.benefit-section .benefits-wrap .ben-wrap {
  display: flex;
  gap: 20px;
  max-width: 343px;
}
@media (max-width: 1400px) {
  .benefit-section .benefits-wrap .ben-wrap {
    max-width: 300px;
  }
}
@media (max-width: 1200px) {
  .benefit-section .benefits-wrap .ben-wrap {
    flex-direction: column;
  }
}
@media (max-width: 767px) {
  .benefit-section .benefits-wrap .ben-wrap {
    flex-direction: row;
  }
}
.benefit-section .benefits-wrap .ben-wrap img {
  width: 48px;
}
@media (max-width: 560px) {
  .benefit-section .benefits-wrap .ben-wrap img {
    width: 36px;
  }
}
.benefit-section .benefits-wrap .ben-wrap h2 {
  font-size: 1.125rem;
  font-weight: 800;
  margin-bottom: 8px;
}
.benefit-section .benefits-wrap .ben-wrap p {
  font-size: 0.875em;
  font-weight: 400;
}

.for-who-section .for-who-cont {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
}
@media (max-width: 992px) {
  .for-who-section .for-who-cont {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .for-who-section .for-who-cont {
    gap: 16px;
  }
}
@media (max-width: 576px) {
  .for-who-section .for-who-cont {
    grid-template-columns: 1fr;
  }
}
.for-who-section .for-who-cont .for-card {
  width: 100%;
  border-radius: 20px;
  border: 1px solid rgba(0, 70, 56, 0.2);
  background-color: #FFFFFF;
  overflow: hidden;
  grid-column: span 2;
}
.for-who-section .for-who-cont .for-card:nth-child(n+4) {
  grid-column: span 3;
}
@media (max-width: 992px) {
  .for-who-section .for-who-cont .for-card {
    grid-column: span 1 !important;
  }
}
.for-who-section .for-who-cont .for-card .for-who-img {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
@media (max-width: 576px) {
  .for-who-section .for-who-cont .for-card .for-who-img {
    height: 160px;
  }
}
.for-who-section .for-who-cont .for-card .for-texts {
  padding: 28px;
  padding-top: 0 !important;
  display: flex;
  flex-direction: column;
  height: 260px;
}
.for-who-section .for-who-cont .for-card .for-texts .btn {
  margin-top: auto;
}
@media (max-width: 992px) {
  .for-who-section .for-who-cont .for-card .for-texts {
    height: auto;
  }
}
@media (max-width: 767px) {
  .for-who-section .for-who-cont .for-card .for-texts {
    padding: 20px;
    height: 280px;
  }
}
@media (max-width: 767px) {
  .for-who-section .for-who-cont .for-card .for-texts {
    height: auto;
  }
}
.for-who-section .for-who-cont .for-card .for-texts .for-icon-wrap {
  height: 68px;
  width: 68px;
  border-radius: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #00923F;
  margin-bottom: 16px;
  margin-top: -48px;
  position: relative;
  z-index: 2;
}
@media (max-width: 767px) {
  .for-who-section .for-who-cont .for-card .for-texts .for-icon-wrap {
    margin-bottom: 12px;
    height: 64px;
    width: 64px;
  }
  .for-who-section .for-who-cont .for-card .for-texts .for-icon-wrap img {
    width: 32px !important;
  }
}
.for-who-section .for-who-cont .for-card .for-texts .for-icon-wrap img {
  width: 32px;
}
.for-who-section .for-who-cont .for-card .for-texts p {
  margin-top: 12px;
  margin-bottom: 20px;
}

.about-project-section {
  background: linear-gradient(0deg, rgba(18, 53, 36, 0.8980392157), rgba(18, 53, 36, 0.8980392157)), url("/wp-content/uploads/2026/08/29c8ab39109ac1c45d0ed4a887c9115402d43916.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin-left: 24px;
  margin-right: 24px;
  border-radius: 24px 24px 0 0;
  color: #FFFFFF;
  padding-bottom: 100px;
  margin-top: 100px;
}
@media (max-width: 1200px) {
  .about-project-section {
    margin-left: 12px;
    margin-right: 12px;
  }
}
@media (max-width: 767px) {
  .about-project-section {
    margin: 0;
    border-radius: 0;
  }
}
@media (max-width: 767px) {
  .about-project-section {
    padding-bottom: 60px;
    margin-top: 60px;
  }
}
.about-project-section .about-project-head {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: end;
}
@media (max-width: 992px) {
  .about-project-section .about-project-head {
    flex-direction: column;
    align-items: start;
    gap: 24px;
  }
}
.about-project-section .about-project-head .heading-left {
  max-width: 604px;
}
.about-project-section .about-project-head .about-project-head-text {
  max-width: 587px;
  font-weight: 600;
}
.about-project-section .about-img-cta {
  height: 500px;
  width: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 30px;
  overflow: hidden;
  margin-top: 40px;
  margin-bottom: 60px;
}
.about-project-section .about-img-cta .about-img-cta-img {
  position: absolute;
  z-index: 2;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.about-project-section .about-img-cta .btn {
  position: relative;
  z-index: 5;
}
.about-project-section .about-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media (max-width: 992px) {
  .about-project-section .about-benefits {
    gap: 20px;
  }
}
@media (max-width: 767px) {
  .about-project-section .about-benefits {
    grid-template-columns: repeat(1, 1fr);
  }
}
.about-project-section .about-benefits .about-ben {
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(5px);
  background: rgba(255, 255, 255, 0.1019607843);
  border-radius: 20px;
}
@media (max-width: 992px) {
  .about-project-section .about-benefits .about-ben {
    padding: 24px;
  }
}
.about-project-section .about-benefits .about-ben .about-ben-icon {
  height: 80px;
  width: 80px;
  border-radius: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #00923F;
}
@media (max-width: 767px) {
  .about-project-section .about-benefits .about-ben .about-ben-icon {
    height: 64px;
    width: 64px;
  }
  .about-project-section .about-benefits .about-ben .about-ben-icon img {
    width: 32px;
    height: auto;
  }
}
.about-project-section .about-benefits .about-ben h3 {
  margin-top: 24px;
  margin-bottom: 16px;
}
.about-project-section .about-benefits .about-ben.for-who-about-ben h3 {
  font-size: 1.5em;
}
.about-project-section .about-banner {
  border-radius: 20px;
  background-color: #00923F;
  padding: 56px 72px;
  display: flex;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  margin-top: 32px;
}
@media (max-width: 1200px) {
  .about-project-section .about-banner {
    padding: 40px;
  }
}
@media (max-width: 767px) {
  .about-project-section .about-banner {
    padding-bottom: 80px;
  }
}
@media (max-width: 490px) {
  .about-project-section .about-banner {
    padding: 32px;
    padding-bottom: 60px;
  }
}
.about-project-section .about-banner .about-banner-text {
  max-width: 560px;
}
.about-project-section .about-banner .about-banner-text h3 {
  font-size: 1.75em;
  margin: 24px 0;
}
@media (max-width: 992px) {
  .about-project-section .about-banner .about-banner-text {
    max-width: 380px;
  }
}
.about-project-section .about-banner .about-banner-img {
  position: absolute;
  right: 110px;
  bottom: -80px;
  width: 450px;
  height: auto;
}
@media (max-width: 1400px) {
  .about-project-section .about-banner .about-banner-img {
    width: 350px;
    bottom: -48px;
    right: 48px;
  }
}
@media (max-width: 1200px) {
  .about-project-section .about-banner .about-banner-img {
    width: 300px;
  }
}
@media (max-width: 992px) {
  .about-project-section .about-banner .about-banner-img {
    width: 280px;
    right: 20px;
  }
}
@media (max-width: 767px) {
  .about-project-section .about-banner .about-banner-img {
    width: 240px;
    right: 20px;
    bottom: -40px;
  }
}
@media (max-width: 490px) {
  .about-project-section .about-banner .about-banner-img {
    width: 170px;
    bottom: -16px;
    right: 0;
  }
}
@media (max-width: 400px) {
  .about-project-section .about-banner .about-banner-img {
    width: 120px;
  }
}

.projects-wrap {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (max-width: 767px) {
  .projects-wrap {
    gap: 24px;
  }
}
.projects-wrap .project-wrap {
  border-radius: 30px;
  border: 1.5px solid rgba(0, 70, 56, 0.2);
  padding: 20px;
  display: flex;
  justify-content: space-between;
  gap: 60px;
}
@media (max-width: 1200px) {
  .projects-wrap .project-wrap {
    flex-direction: column;
    gap: 24px;
  }
}
.projects-wrap .project-wrap .project-info {
  margin-top: 20px;
  margin-bottom: 20px;
  margin-left: 20px;
  flex: 1;
}
@media (max-width: 1200px) {
  .projects-wrap .project-wrap .project-info {
    margin: 0;
    margin-top: 12px;
  }
}
.projects-wrap .project-wrap .project-info .project-sub {
  color: #00923F;
  font-weight: 800;
  font-size: 0.875em;
  letter-spacing: 10%;
  text-transform: uppercase;
}
.projects-wrap .project-wrap .project-info h2 {
  margin: 16px 0;
  font-weight: 800;
}
.projects-wrap .project-wrap .project-info p {
  color: #424242;
  font-size: 1.125em;
  font-weight: 400;
  margin-bottom: 24px;
}
@media (max-width: 767px) {
  .projects-wrap .project-wrap .project-info p {
    margin-bottom: 12px;
  }
}
.projects-wrap .project-wrap .project-info h4 {
  margin-bottom: 16px;
}
.projects-wrap .project-wrap .project-info .project-results {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .projects-wrap .project-wrap .project-info .project-results {
    gap: 12px;
  }
}
.projects-wrap .project-wrap .project-info .project-results .project-res {
  display: flex;
  flex-direction: column;
  gap: 4px;
  background-color: #E2EDD5;
  padding: 12px 14px;
  border-radius: 10px;
}
@media (max-width: 576px) {
  .projects-wrap .project-wrap .project-info .project-results .project-res {
    padding: 10px 12px;
  }
}
.projects-wrap .project-wrap .project-info .project-results .project-res .fp {
  font-size: 0.875em;
  font-weight: 600;
  color: #00923F;
}
.projects-wrap .project-wrap .project-info .project-results .project-res .sp {
  font-size: 1.25em;
  font-weight: 700;
}
@media (max-width: 576px) {
  .projects-wrap .project-wrap .project-info .project-results .project-res .sp {
    font-size: 1.125em;
  }
}
.projects-wrap .project-wrap .project-gallery {
  flex: 0 0 50%;
  border-radius: 30px;
  position: relative;
  overflow: hidden;
  transform: translateZ(0);
}
@media (max-width: 1200px) {
  .projects-wrap .project-wrap .project-gallery {
    flex: unset;
    height: 500px;
  }
}
@media (max-width: 992px) {
  .projects-wrap .project-wrap .project-gallery {
    height: 380px;
  }
}
@media (max-width: 767px) {
  .projects-wrap .project-wrap .project-gallery {
    height: 300px;
  }
}
@media (max-width: 576px) {
  .projects-wrap .project-wrap .project-gallery {
    height: 260px;
  }
}
.projects-wrap .project-wrap .project-gallery .slider-track {
  display: flex;
  width: 100%;
  height: 100%;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  cursor: grab;
  scroll-behavior: smooth;
}
.projects-wrap .project-wrap .project-gallery .slider-track::-webkit-scrollbar {
  display: none;
}
.projects-wrap .project-wrap .project-gallery .slider-track.dragging {
  scroll-snap-type: none;
  cursor: grabbing;
  scroll-behavior: auto;
}
.projects-wrap .project-wrap .project-gallery .slider-track .slide {
  flex: 0 0 100%;
  height: 100%;
  scroll-snap-align: start;
}
@media (max-width: 1200px) {
  .projects-wrap .project-wrap .project-gallery .slider-track .slide {
    height: 100%;
  }
}
.projects-wrap .project-wrap .project-gallery .slider-track .slide .project-gallery-img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-user-drag: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  pointer-events: none;
}
@media (max-width: 1200px) {
  .projects-wrap .project-wrap .project-gallery .slider-track .slide .project-gallery-img {
    height: 100%;
  }
}
.projects-wrap .project-wrap .project-gallery .slider-pagination {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}
@media (max-width: 576px) {
  .projects-wrap .project-wrap .project-gallery .slider-pagination {
    bottom: 12px;
  }
}
.projects-wrap .project-wrap .project-gallery .slider-pagination .dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: #ffffff;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
@media (max-width: 576px) {
  .projects-wrap .project-wrap .project-gallery .slider-pagination .dot {
    width: 10px;
    height: 10px;
  }
}
.projects-wrap .project-wrap .project-gallery .slider-pagination .dot.active {
  background-color: #00923F;
}

.faq-section {
  background-color: #E2EDD5;
  padding-bottom: 100px;
  margin-top: 100px;
  margin-left: 24px;
  margin-right: 24px;
  border-radius: 30px;
}
@media (max-width: 1200px) {
  .faq-section {
    margin-left: 12px;
    margin-right: 12px;
  }
}
@media (max-width: 767px) {
  .faq-section {
    margin: 0;
    border-radius: 0;
  }
}
@media (max-width: 992px) {
  .faq-section {
    padding-bottom: 60px;
    margin-top: 60px;
  }
}
.faq-section .faq-cont {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  align-items: start;
}
@media (max-width: 992px) {
  .faq-section .faq-cont {
    grid-template-columns: 1fr;
  }
}
.faq-section .faq-cont .faq-column {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.faq-section .faq-cont .faq-wrap {
  border-radius: 20px;
  background: #FFFFFF;
}
.faq-section .faq-cont .faq-wrap.active .faq-question {
  background-color: #123524;
  color: #FFFFFF;
}
.faq-section .faq-cont .faq-wrap.active .faq-question .icon {
  background: #FFFFFF;
}
.faq-section .faq-cont .faq-wrap.active .faq-question .icon svg {
  transform: rotate(45deg);
}
.faq-section .faq-cont .faq-wrap.active .faq-question .icon svg path {
  fill: #123524;
}
.faq-section .faq-cont .faq-wrap.active .faq-answer {
  grid-template-rows: 1fr;
}
.faq-section .faq-cont .faq-wrap.active .faq-answer-inner {
  padding: 18px 44px;
  opacity: 1;
}
@media (max-width: 576px) {
  .faq-section .faq-cont .faq-wrap.active .faq-answer-inner {
    padding: 12px 24px;
  }
}
.faq-section .faq-cont .faq-wrap .faq-question {
  border-radius: 20px;
  background-color: transparent;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 32px;
  padding-right: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
}
@media (max-width: 576px) {
  .faq-section .faq-cont .faq-wrap .faq-question {
    padding: 16px 16px;
  }
}
.faq-section .faq-cont .faq-wrap .faq-question span {
  font-size: 1.125em;
  font-weight: 700;
  letter-spacing: 2%;
}
.faq-section .faq-cont .faq-wrap .faq-question .icon {
  height: 42px;
  width: 42px;
  min-width: 42px;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #123524;
  transition: all 0.3s ease;
}
.faq-section .faq-cont .faq-wrap .faq-question .icon svg {
  transition: transform 0.3s ease;
}
.faq-section .faq-cont .faq-wrap .faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease;
}
.faq-section .faq-cont .faq-wrap .faq-answer-inner {
  overflow: hidden;
  padding: 0 44px;
  opacity: 0;
  transition: padding 0.3s ease, opacity 0.3s ease;
  font-weight: 500;
}

@keyframes pulse-dot {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) scale(4);
    opacity: 0;
  }
}
.posts-wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 992px) {
  .posts-wrap {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .posts-wrap {
    grid-template-columns: 1fr;
  }
}

.post-card {
  border: 1.5px solid rgba(0, 70, 56, 0.2);
  padding: 12px;
  display: flex;
  flex-direction: column;
  border-radius: 30px;
  height: 100%;
  box-sizing: border-box;
  transition: all 0.25s;
}
.post-card:hover {
  border-color: #123524;
}
.post-card:hover .post-img-wrap img {
  transform: scale(1.05);
}
.post-card .post-img-wrap {
  width: 100%;
  height: 220px;
  margin-bottom: 24px;
  border-radius: 20px;
  overflow: hidden;
}
.post-card .post-img-wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.4s ease-out;
}
.post-card .blog-post-content-wrap {
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
@media (max-width: 767px) {
  .post-card .blog-post-content-wrap {
    padding: 0 12px;
  }
}
.post-card .date-rubric-wrap {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.post-card .post-date {
  display: flex;
  align-items: center;
  gap: 8px;
  background-color: #123524;
  width: -moz-fit-content;
  width: fit-content;
  color: #FFFFFF;
  padding: 6px 16px 6px 8px;
  border-radius: 10px;
  font-size: 0.875em;
  font-weight: 600;
}
.post-card .post-rubric {
  display: flex;
  align-items: center;
  gap: 8px;
  background-color: #00923F;
  width: -moz-fit-content;
  width: fit-content;
  color: #FFFFFF;
  padding: 6px 16px;
  border-radius: 10px;
  font-size: 0.875em;
  font-weight: 600;
}
.post-card h4 {
  font-size: 1.25em;
  letter-spacing: 2%;
  margin-bottom: 24px;
  flex-grow: 1;
  transition: all 0.25s;
}
.post-card .blog-post-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  text-decoration: underline;
  color: #00923F;
  margin-bottom: 12px;
}

.financed-section .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.financed-section .container h2 {
  font-weight: 600;
  color: #535353;
  font-size: 1.875em;
  margin-bottom: 40px;
  text-align: center;
}
@media (max-width: 767px) {
  .financed-section .container h2 {
    margin-bottom: 24px;
  }
}
.financed-section .container .financed-imgs {
  display: flex;
  align-items: center;
  justify-content: space-around;
  width: 100%;
  flex-wrap: wrap;
  gap: 24px;
}
.financed-section .container .financed-imgs img {
  max-width: 240px;
}
@media (max-width: 767px) {
  .financed-section .container .financed-imgs img {
    max-width: 180px;
  }
}
@media (max-width: 540px) {
  .financed-section .container .financed-imgs img {
    max-width: 150px;
  }
}

.bottom-cta-wrap {
  background-color: #123524;
  background-image: url("/wp-content/uploads/2026/08/Frame-117.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 100px 24px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #FFFFFF;
}
@media (max-width: 767px) {
  .bottom-cta-wrap {
    padding: 60px 24px;
    gap: 0 px;
  }
}

.hp-calculator-section {
  --dark: #133323;
  --dark-2: #0a2114;
  --lime: #279b47;
  --lime-hover: #1e7a37;
  --paper: #f4f7f2;
  --ink: #000000;
  --muted: #666666;
  --line: #d9d9d9;
  --radius: 16px;
  --radius-sm: 8px;
}
.hp-calculator-section .calculator-cont {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: flex-start;
  margin-top: 40px;
}
@media (max-width: 992px) {
  .hp-calculator-section .calculator-cont {
    grid-template-columns: 1fr;
  }
}
.hp-calculator-section .calculator-cont .kalk__inputs {
  background: #ffffff;
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
  height: 100%;
}
.hp-calculator-section .calculator-cont .kalk__inputs .field {
  margin-bottom: 24px;
}
.hp-calculator-section .calculator-cont .kalk__inputs label {
  display: block;
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 8px;
  color: var(--ink);
}
.hp-calculator-section .calculator-cont .kalk__inputs .hint {
  font-weight: 500;
  font-size: 14px;
  display: flex;
  align-items: flex-start;
  gap: 6px;
  margin-top: 8px;
  line-height: 1.4;
  color: #000000;
}
.hp-calculator-section .calculator-cont .kalk__inputs select, .hp-calculator-section .calculator-cont .kalk__inputs input[type=number], .hp-calculator-section .calculator-cont .kalk__inputs input[type=text], .hp-calculator-section .calculator-cont .kalk__inputs input[type=email], .hp-calculator-section .calculator-cont .kalk__inputs input[type=tel] {
  width: 100%;
  padding: 14px 16px;
  font-size: 15px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #fff;
  color: var(--ink);
  transition: border-color 0.2s ease, outline 0.2s ease;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.hp-calculator-section .calculator-cont .kalk__inputs select:focus, .hp-calculator-section .calculator-cont .kalk__inputs input[type=number]:focus, .hp-calculator-section .calculator-cont .kalk__inputs input[type=text]:focus, .hp-calculator-section .calculator-cont .kalk__inputs input[type=email]:focus, .hp-calculator-section .calculator-cont .kalk__inputs input[type=tel]:focus {
  outline: none;
  border-color: var(--dark);
}
.hp-calculator-section .calculator-cont .kalk__inputs select {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1em;
}
.hp-calculator-section .calculator-cont .kalk__inputs .slider-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 12px;
}
.hp-calculator-section .calculator-cont .kalk__inputs input[type=range] {
  flex: 1;
  accent-color: var(--lime);
  height: 6px;
  background: var(--line);
  border-radius: 4px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  outline: none;
}
.hp-calculator-section .calculator-cont .kalk__inputs input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
          appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--lime);
  cursor: pointer;
}
.hp-calculator-section .calculator-cont .kalk__inputs .slider-val {
  min-width: 48px;
  text-align: right;
  font-weight: 700;
  font-size: 16px;
  color: var(--ink);
}
.hp-calculator-section .calculator-cont .kalk__inputs .radio-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.hp-calculator-section .calculator-cont .kalk__inputs .radio-row label {
  flex: 1;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 14px 12px;
  text-align: center;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  color: var(--ink);
  margin: 0;
  transition: all 0.2s ease;
}
.hp-calculator-section .calculator-cont .kalk__inputs .radio-row label.on {
  border-color: var(--dark);
  background: var(--dark);
  color: #fff;
}
.hp-calculator-section .calculator-cont .kalk__inputs .radio-row input {
  position: absolute;
  opacity: 0;
}
.hp-calculator-section .calculator-cont .kalk__results {
  background: var(--dark);
  border-radius: var(--radius);
  padding: 32px;
  color: #ffffff;
}
.hp-calculator-section .calculator-cont .kalk__results .result-hero {
  background: var(--lime);
  border-radius: var(--radius-sm);
  padding: 24px;
  text-align: center;
}
.hp-calculator-section .calculator-cont .kalk__results .result-hero .lbl {
  font-size: 13px;
  color: #ffffff;
  opacity: 0.9;
  margin-bottom: 4px;
}
.hp-calculator-section .calculator-cont .kalk__results .result-hero .num {
  font-size: 38px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
  font-variant-numeric: tabular-nums;
}
.hp-calculator-section .calculator-cont .kalk__results .result-hero .sub {
  font-size: 12px;
  color: #ffffff;
  opacity: 0.8;
  margin-top: 8px;
}
.hp-calculator-section .calculator-cont .kalk__results .result-grid {
  display: flex;
  gap: 12px;
  margin-top: 12px;
  flex-wrap: wrap;
}
.hp-calculator-section .calculator-cont .kalk__results .result-grid .result-card {
  flex: 1 1 calc(50% - 6px);
  background: #fff;
  border-radius: var(--radius-sm);
  padding: 16px 12px;
  text-align: center;
  color: var(--ink);
}
.hp-calculator-section .calculator-cont .kalk__results .result-grid .result-card#vyrobaCard {
  flex: 1 1 100%;
}
.hp-calculator-section .calculator-cont .kalk__results .result-grid .result-card .num {
  font-size: 22px;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}
.hp-calculator-section .calculator-cont .kalk__results .result-grid .result-card .lbl {
  font-size: 12px;
  color: var(--ink);
  margin-top: 4px;
  font-weight: 500;
}
.hp-calculator-section .calculator-cont .kalk__results .result-grid .result-card .card-note {
  font-size: 11px;
  color: var(--lime);
  font-weight: 700;
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px solid var(--line);
}
.hp-calculator-section .calculator-cont .kalk__results .lead-block {
  margin-top: 32px;
}
.hp-calculator-section .calculator-cont .kalk__results .lead-block .lead-head {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}
.hp-calculator-section .calculator-cont .kalk__results .lead-block .lead-sub {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 24px;
}
.hp-calculator-section .calculator-cont .kalk__results .lead-block .field {
  margin-bottom: 16px;
}
.hp-calculator-section .calculator-cont .kalk__results .lead-block .field label {
  display: block;
  font-weight: 600;
  font-size: 13px;
  margin-bottom: 8px;
  color: #fff;
}
.hp-calculator-section .calculator-cont .kalk__results .lead-block .field .hint {
  font-weight: 400;
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
  display: block;
  margin-top: -4px;
  margin-bottom: 8px;
}
.hp-calculator-section .calculator-cont .kalk__results .lead-block .field select, .hp-calculator-section .calculator-cont .kalk__results .lead-block .field input[type=number], .hp-calculator-section .calculator-cont .kalk__results .lead-block .field input[type=text], .hp-calculator-section .calculator-cont .kalk__results .lead-block .field input[type=email], .hp-calculator-section .calculator-cont .kalk__results .lead-block .field input[type=tel] {
  width: 100%;
  padding: 14px 16px;
  font-size: 14px;
  border: 1px solid var(--lime);
  border-radius: var(--radius-sm);
  background: var(--dark-2);
  color: #fff;
  transition: outline 0.2s ease;
}
.hp-calculator-section .calculator-cont .kalk__results .lead-block .field select::-moz-placeholder, .hp-calculator-section .calculator-cont .kalk__results .lead-block .field input[type=number]::-moz-placeholder, .hp-calculator-section .calculator-cont .kalk__results .lead-block .field input[type=text]::-moz-placeholder, .hp-calculator-section .calculator-cont .kalk__results .lead-block .field input[type=email]::-moz-placeholder, .hp-calculator-section .calculator-cont .kalk__results .lead-block .field input[type=tel]::-moz-placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.hp-calculator-section .calculator-cont .kalk__results .lead-block .field select::placeholder, .hp-calculator-section .calculator-cont .kalk__results .lead-block .field input[type=number]::placeholder, .hp-calculator-section .calculator-cont .kalk__results .lead-block .field input[type=text]::placeholder, .hp-calculator-section .calculator-cont .kalk__results .lead-block .field input[type=email]::placeholder, .hp-calculator-section .calculator-cont .kalk__results .lead-block .field input[type=tel]::placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.hp-calculator-section .calculator-cont .kalk__results .lead-block .field select:focus, .hp-calculator-section .calculator-cont .kalk__results .lead-block .field input[type=number]:focus, .hp-calculator-section .calculator-cont .kalk__results .lead-block .field input[type=text]:focus, .hp-calculator-section .calculator-cont .kalk__results .lead-block .field input[type=email]:focus, .hp-calculator-section .calculator-cont .kalk__results .lead-block .field input[type=tel]:focus {
  outline: none;
  border-color: var(--lime-hover);
}
.hp-calculator-section .calculator-cont .kalk__results .lead-block .field select.is-invalid, .hp-calculator-section .calculator-cont .kalk__results .lead-block .field input[type=number].is-invalid, .hp-calculator-section .calculator-cont .kalk__results .lead-block .field input[type=text].is-invalid, .hp-calculator-section .calculator-cont .kalk__results .lead-block .field input[type=email].is-invalid, .hp-calculator-section .calculator-cont .kalk__results .lead-block .field input[type=tel].is-invalid {
  border-color: #e74c3c;
  background: rgba(231, 76, 60, 0.1);
}
.hp-calculator-section .calculator-cont .kalk__results .lead-block .field .req {
  color: var(--lime);
}
.hp-calculator-section .calculator-cont .kalk__results .lead-block .field .err {
  display: none;
  font-size: 12px;
  color: #ff7675;
  margin-top: 6px;
}
.hp-calculator-section .calculator-cont .kalk__results .lead-block .field .err.on {
  display: block;
}
.hp-calculator-section .calculator-cont .kalk__results .cta {
  display: block;
  width: 100%;
  margin-top: 24px;
  background: var(--lime);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  padding: 16px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  transition: background 0.2s ease;
}
.hp-calculator-section .calculator-cont .kalk__results .cta:hover {
  background: var(--lime-hover);
}
.hp-calculator-section .calculator-cont .kalk__results .note {
  margin-top: 20px;
  font-size: 14px;
  color: white;
  font-weight: 500;
}

.contact-hero {
  background: linear-gradient(0deg, rgba(18, 53, 36, 0.8980392157), rgba(18, 53, 36, 0.8980392157)), url("/wp-content/uploads/2026/08/29c8ab39109ac1c45d0ed4a887c9115402d43916.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin-left: 24px;
  margin-right: 24px;
  border-radius: 24px;
  color: #FFFFFF;
  padding-bottom: 100px;
  margin-top: 100px;
}
@media (max-width: 1200px) {
  .contact-hero {
    margin-left: 12px;
    margin-right: 12px;
  }
}
@media (max-width: 767px) {
  .contact-hero {
    margin: 0;
    border-radius: 0;
  }
}
@media (max-width: 767px) {
  .contact-hero {
    padding-bottom: 60px;
    margin-top: 60px;
  }
}
.contact-hero .container {
  display: flex;
  gap: 40px;
}
@media (max-width: 992px) {
  .contact-hero .container {
    flex-direction: column;
    gap: 32px;
  }
}
.contact-hero .container .contact-form-wrap {
  background-color: #FFFFFF;
  border-radius: 30px;
  padding: 40px;
  color: #000000;
}
@media (max-width: 767px) {
  .contact-hero .container .contact-form-wrap {
    padding: 32px 24px;
  }
}
.contact-hero .container .contact-form-wrap .subheading {
  font-weight: 800;
  font-size: 0.875em;
}
.contact-hero .container .contact-form-wrap .consent {
  margin-top: 12px !important;
}
.contact-hero .container .contact-form-wrap h3 {
  margin-top: 12px;
  margin-bottom: 4px;
}
.contact-hero .hero-texts {
  max-width: 48%;
  color: #FFFFFF;
}
@media (max-width: 992px) {
  .contact-hero .hero-texts {
    max-width: 100%;
  }
}
.contact-hero .hero-texts .hero-subheading {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
  gap: 12px;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 10%;
  width: -moz-fit-content;
  width: fit-content;
}
.contact-hero .hero-texts h1 {
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .contact-hero .hero-texts h1 {
    margin-bottom: 16px;
  }
}
.contact-hero .hero-texts p {
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .contact-hero .hero-texts p {
    margin-bottom: 20px;
  }
}
.contact-hero .hero-texts .contact-texts-info {
  margin-bottom: 20px;
  font-weight: 600;
}
.contact-hero .hero-texts .contact-texts-btns {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-error {
  margin-top: 12px;
  height: 20px;
  margin-bottom: 20px;
  color: rgb(199, 0, 0);
  font-weight: 700;
}
.form-error:empty {
  height: 0;
  margin-top: 0;
  padding: 0;
}

.input-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.input-group span {
  font-weight: 700;
  font-size: 0.875em;
  padding-top: 12px;
}
.input-group input, .input-group textarea, .input-group select {
  border: 2px solid rgba(0, 70, 56, 0.2);
  padding: 14px 20px;
  font-family: "Onest", sans-serif !important;
  font-weight: 500;
  font-size: 1em;
  border-radius: 10px;
}
.input-group input:focus, .input-group textarea:focus, .input-group select:focus {
  border-color: #00923F !important;
}

select.input-group {
  font-size: 1em !important;
  font-weight: 500;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23000000%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-position: right 1.75rem center;
  background-size: 0.65em auto;
  padding-right: 2.5rem;
}
select.input-group option {
  font-size: 1em !important;
  cursor: pointer;
}

.double-input-wrap {
  display: grid;
  grid-template-columns: repeat(2, calc(50% - 12px));
  gap: 24px;
}
@media (max-width: 576px) {
  .double-input-wrap {
    grid-template-columns: 100%;
    gap: 0;
  }
}
@media (max-width: 540px) {
  .double-input-wrap {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

.map-section .map-wrap iframe {
  border-radius: 30px;
  width: 100%;
  aspect-ratio: 16/7;
}
@media (max-width: 767px) {
  .map-section .map-wrap iframe {
    border-radius: 20px;
  }
}

.blog-header-section {
  padding-top: 200px;
}
@media (max-width: 767px) {
  .blog-header-section {
    padding-top: 140px;
  }
}
.blog-header-section .heading-center {
  margin-bottom: 0 !important;
}

.post-content-container {
  display: flex;
  justify-content: center;
}

.post-content-wrap {
  margin-top: 160px;
  position: relative;
  z-index: 10;
  max-width: 1000px;
  background-color: #FFFFFF;
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid rgba(0, 70, 56, 0.2);
}
@media (max-width: 767px) {
  .post-content-wrap {
    margin-top: 128px;
  }
}
.post-content-wrap .single-article-img {
  height: 540px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
@media (max-width: 992px) {
  .post-content-wrap .single-article-img {
    max-height: 440px;
  }
}
@media (max-width: 767px) {
  .post-content-wrap .single-article-img {
    max-height: 280px;
  }
}
.post-content-wrap .post-info-and-content-wrap {
  padding: 32px 40px;
}
@media (max-width: 767px) {
  .post-content-wrap .post-info-and-content-wrap {
    padding: 20px 24px;
  }
}
.post-content-wrap .post-info-and-content-wrap .date-rubric-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}
.post-content-wrap .post-info-and-content-wrap .post-date {
  display: flex;
  align-items: center;
  gap: 8px;
  background-color: #123524;
  width: -moz-fit-content;
  width: fit-content;
  color: #FFFFFF;
  padding: 10px 16px 10px 10px;
  border-radius: 10px;
  font-size: 0.875em;
  font-weight: 600;
}
.post-content-wrap .post-info-and-content-wrap .post-rubric {
  display: flex;
  align-items: center;
  gap: 8px;
  background-color: #00923F;
  width: -moz-fit-content;
  width: fit-content;
  color: #FFFFFF;
  padding: 10px 16px;
  border-radius: 10px;
  font-size: 0.875em;
  font-weight: 600;
}
.post-content-wrap .post-info-and-content-wrap h1 {
  margin-top: 24px;
  margin-bottom: 12px;
}
@media (max-width: 767px) {
  .post-content-wrap .post-info-and-content-wrap h1 {
    margin-top: 16px;
    margin-bottom: 4px;
  }
}
.post-content-wrap .post-info-and-content-wrap .post-content-text img {
  width: 100%;
  height: auto;
  margin-top: 24px;
  border-radius: 12px;
}
.post-content-wrap .post-info-and-content-wrap .post-content-text p {
  font-size: 1.125em;
  font-weight: 600;
}

.pripadovka-hero {
  padding-bottom: 200px;
}
.pripadovka-hero h1 {
  max-width: 95%;
}
.pripadovka-hero .post-date-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #FF6213;
  font-weight: 700;
  margin-top: 24px;
}

.pripadovka-content-cont {
  position: relative;
  z-index: 10;
}
.pripadovka-content-cont .single-pripadovka-banner {
  height: auto;
  border-radius: 40px;
  width: 100%;
  margin-top: -220px;
  padding: 72px 72px;
  background-color: #DA5F95;
  position: relative;
  overflow: hidden;
  margin-bottom: 100px;
}
@media (max-width: 992px) {
  .pripadovka-content-cont .single-pripadovka-banner {
    padding-bottom: 0;
    padding: 64px;
  }
}
@media (max-width: 767px) {
  .pripadovka-content-cont .single-pripadovka-banner {
    margin-bottom: 60px;
    padding: 48px;
    padding-bottom: 0;
  }
}
@media (max-width: 560px) {
  .pripadovka-content-cont .single-pripadovka-banner {
    padding: 40px 32px;
    padding-bottom: 0;
  }
}
.pripadovka-content-cont .single-pripadovka-banner .prip-ban-img {
  position: absolute;
  right: 80px;
  bottom: -5px;
  height: 90%;
}
@media (max-width: 1200px) {
  .pripadovka-content-cont .single-pripadovka-banner .prip-ban-img {
    width: 32%;
    height: auto;
  }
}
@media (max-width: 992px) {
  .pripadovka-content-cont .single-pripadovka-banner .prip-ban-img {
    position: relative;
    height: 320px;
    width: auto;
    margin-bottom: -5px;
    right: unset;
    margin-top: 20px;
  }
}
@media (max-width: 560px) {
  .pripadovka-content-cont .single-pripadovka-banner .prip-ban-img {
    height: auto;
    width: 85%;
  }
}
.pripadovka-content-cont .single-pripadovka-banner .prip-ban-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  width: 100%;
  max-width: 440px;
  color: #FFFFFF;
}
.pripadovka-content-cont .single-pripadovka-banner .prip-ban-content .stats-wrap .stats {
  padding: 32px 0;
  display: flex;
  justify-content: space-between;
  gap: 16px;
}
.pripadovka-content-cont .single-pripadovka-banner .prip-ban-content .stats-wrap .stats .stat {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.pripadovka-content-cont .single-pripadovka-banner .prip-ban-content .stats-wrap .stats .stat .bolder-span {
  font-weight: 800;
  font-size: 2.5em;
}
.pripadovka-content-cont .single-pripadovka-banner .prip-ban-content .stats-wrap .stats .stat p {
  font-size: 1em;
  font-weight: 600;
}
.pripadovka-content-cont .single-pripadovka-banner .prip-ban-content .stats-wrap .first-stats {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.pripadovka-content-cont .pripadovka-content-wrap {
  width: 100%;
  display: flex;
  gap: 80px;
  position: relative;
}
@media (max-width: 992px) {
  .pripadovka-content-cont .pripadovka-content-wrap {
    flex-direction: column;
    gap: 0;
  }
}
@media (max-width: 992px) {
  .pripadovka-content-cont .pripadovka-content-wrap .pripadovka-content {
    padding: 0px;
    padding-bottom: 40px;
  }
}
.pripadovka-content-cont .pripadovka-content-wrap .pripadovka-content img {
  width: 100%;
  height: auto;
}
.pripadovka-content-cont .pripadovka-content-wrap .pripadovka-content p {
  font-size: 1.125em;
  font-weight: 600;
}
.pripadovka-content-cont .pripadovka-content-wrap .pripadovka-cta {
  display: flex;
  flex-direction: column;
  padding: 56px 40px;
  padding-bottom: 0;
  overflow: hidden;
  background: linear-gradient(90deg, #FF6213 0%, #FF8900 100%);
  border-radius: 40px;
  height: -moz-fit-content;
  height: fit-content;
  width: 420px;
  flex-shrink: 0;
  color: white;
  max-width: 100%;
  position: sticky;
  top: 120px;
}
@media (max-width: 767px) {
  .pripadovka-content-cont .pripadovka-content-wrap .pripadovka-cta {
    padding: 40px 32px;
  }
}
.pripadovka-content-cont .pripadovka-content-wrap .pripadovka-cta p {
  margin-top: 8px;
  margin-bottom: 24px;
}
.pripadovka-content-cont .pripadovka-content-wrap .pripadovka-cta img {
  width: 100%;
  height: auto;
  margin-bottom: -104px;
  margin-top: 20px;
}

.career-why-us-section .why-cards-wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 44px;
}
.career-why-us-section .why-cards-wrap .career-why-card {
  padding: 40px 32px;
  border: 1px solid rgba(0, 0, 0, 0.1019607843);
  transition: all 0.25s;
  border-radius: 30px;
}
.career-why-us-section .why-cards-wrap .career-why-card:hover {
  border-color: #FF6213;
}
.career-why-us-section .why-cards-wrap .career-why-card .icon-wrap {
  height: 64px;
  width: 64px;
  border-radius: 100px;
  background: linear-gradient(90deg, rgba(255, 98, 19, 0.1) 0%, rgba(255, 137, 0, 0.1) 100%);
  display: flex;
  justify-content: center;
  align-items: center;
}
.career-why-us-section .why-cards-wrap .career-why-card h3 {
  margin-top: 24px;
  margin-bottom: 12px;
}

.card-section {
  padding-top: 60px;
}
.card-section .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
@media (max-width: 1200px) {
  .card-section .container {
    gap: 20px;
  }
}
@media (max-width: 992px) {
  .card-section .container {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .card-section .container {
    gap: 12px;
  }
}
.card-section .container .card-card {
  border: 1px solid rgba(18, 53, 36, 0.2);
  background-color: #FFFFFF;
  padding: 32px 12px;
  border-radius: 20px;
}
@media (max-width: 767px) {
  .card-section .container .card-card {
    padding: 24px 12px;
  }
}
.card-section .container .card-card h2 {
  color: #00923F;
  font-weight: 800;
  text-align: center;
}
.card-section .container .card-card p {
  text-align: center;
  font-size: 1.125em;
  font-weight: 600;
}

.how-it-goes-section {
  background-color: #E2EDD5;
  padding-bottom: 100px;
  margin-top: 100px;
  margin-left: 24px;
  margin-right: 24px;
  border-radius: 30px;
}
@media (max-width: 1200px) {
  .how-it-goes-section {
    margin-left: 12px;
    margin-right: 12px;
  }
}
@media (max-width: 767px) {
  .how-it-goes-section {
    margin: 0;
    border-radius: 0;
  }
}
@media (max-width: 992px) {
  .how-it-goes-section {
    padding-bottom: 60px;
    margin-top: 60px;
  }
}
.how-it-goes-section .how-it-goes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
@media (max-width: 1200px) {
  .how-it-goes-section .how-it-goes-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .how-it-goes-section .how-it-goes-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}
.how-it-goes-section .how-it-goes-grid .how-goes-card {
  background-color: #FFFFFF;
  border: 1px solid rgba(0, 70, 56, 0.2);
  padding: 24px;
  border-radius: 30px;
  position: relative;
}
.how-it-goes-section .how-it-goes-grid .how-goes-card::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -36.5px;
  transform: translateY(-50%);
  width: 25px;
  height: 20px;
  background-image: url("data:image/svg+xml,%3Csvg width='25' height='20' viewBox='0 0 25 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M24.6154 10L14.5572 20L12.4366 17.8917L18.8745 11.491L-1.30344e-07 11.491L1.30346e-07 8.50903L18.8745 8.50903L12.4366 2.10833L14.5572 2.98332e-06L24.6154 10Z' fill='%23123524'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  z-index: 1;
}
.how-it-goes-section .how-it-goes-grid .how-goes-card:nth-child(3n)::after {
  display: none;
}
.how-it-goes-section .how-it-goes-grid .how-goes-card:last-child::after {
  display: none !important;
}
@media (max-width: 1200px) {
  .how-it-goes-section .how-it-goes-grid .how-goes-card:nth-child(3n)::after {
    display: block;
  }
  .how-it-goes-section .how-it-goes-grid .how-goes-card:nth-child(2n)::after {
    display: none;
  }
}
@media (max-width: 767px) {
  .how-it-goes-section .how-it-goes-grid .how-goes-card:nth-child(2n)::after {
    display: block;
  }
  .how-it-goes-section .how-it-goes-grid .how-goes-card::after {
    top: auto;
    bottom: -28.5px;
    right: 50%;
    transform: translateX(50%) rotate(90deg);
  }
}
.how-it-goes-section .how-it-goes-grid .how-goes-card .goes-num {
  border: 2px solid #00923F;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0px 24px;
  border-radius: 30px;
  color: #00923F;
  font-weight: 600;
  font-size: 1.875em;
}
.how-it-goes-section .how-it-goes-grid .how-goes-card h3 {
  margin-top: 20px;
  margin-bottom: 6px;
}

.what-we-do-section .what-we-do-cont {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  row-gap: 72px;
  margin-top: 80px;
}
@media (max-width: 992px) {
  .what-we-do-section .what-we-do-cont {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .what-we-do-section .what-we-do-cont {
    gap: 16px;
    row-gap: 48px;
    margin-top: 56px;
  }
}
@media (max-width: 576px) {
  .what-we-do-section .what-we-do-cont {
    grid-template-columns: 1fr;
  }
}
.what-we-do-section .what-we-do-cont .for-card {
  width: 100%;
  border-radius: 20px;
  border: 1px solid rgba(0, 70, 56, 0.2);
  background-color: #FFFFFF;
}
.what-we-do-section .what-we-do-cont .for-card .for-texts {
  padding: 32px;
  padding-top: 0 !important;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.what-we-do-section .what-we-do-cont .for-card .for-texts .btn {
  margin-top: auto;
}
@media (max-width: 767px) {
  .what-we-do-section .what-we-do-cont .for-card .for-texts {
    padding: 20px;
  }
}
.what-we-do-section .what-we-do-cont .for-card .for-texts .for-icon-wrap {
  height: 80px;
  width: 80px;
  border-radius: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #00923F;
  margin-bottom: 20px;
  margin-top: -50px;
  position: relative;
  z-index: 2;
}
@media (max-width: 767px) {
  .what-we-do-section .what-we-do-cont .for-card .for-texts .for-icon-wrap {
    margin-bottom: 12px;
    height: 64px;
    width: 64px;
    margin-top: -32px;
  }
  .what-we-do-section .what-we-do-cont .for-card .for-texts .for-icon-wrap img {
    width: 32px !important;
  }
}
.what-we-do-section .what-we-do-cont .for-card .for-texts .for-icon-wrap img {
  width: 40px;
}
.what-we-do-section .what-we-do-cont .for-card .for-texts p {
  margin-top: 12px;
  margin-bottom: 20px;
}
.what-we-do-section .two-grid {
  grid-template-columns: repeat(2, 1fr);
}

.service-form-section {
  --dark: #133323;
  --dark-2: #0a2114;
  --lime: #279b47;
  --lime-hover: #1e7a37;
  --paper: #f4f7f2;
  --ink: #000000;
  --muted: #666666;
  --line: #d9d9d9;
  --radius: 16px;
  --radius-sm: 8px;
}
.service-form-section .heading-center {
  text-align: center;
  margin-bottom: 40px;
}
.service-form-section .heading-center .subheading {
  font-size: 13px;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: 1px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 12px;
}
.service-form-section .heading-center h2 {
  font-size: 32px;
  font-weight: 800;
}
.service-form-section .heading-center p {
  font-size: 15px;
  color: var(--ink);
  margin-bottom: 0;
}
.service-form-section .service-form-wrap {
  width: 100%;
  border-radius: 30px;
  border: 1px solid rgba(0, 70, 56, 0.2);
  padding: 72px;
  background-color: #FFFFFF;
}
@media (max-width: 992px) {
  .service-form-section .service-form-wrap {
    padding: 40px 24px;
    border-radius: 20px;
  }
}
.service-form-section .service-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.service-form-section .service-form .form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 30px;
}
@media (max-width: 992px) {
  .service-form-section .service-form .form-grid {
    grid-template-columns: 1fr;
  }
}
.service-form-section .service-form .form-grid-3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
  margin-top: 8px;
}
@media (max-width: 992px) {
  .service-form-section .service-form .form-grid-3 {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}
.service-form-section .service-form .full-width {
  width: 100%;
}
.service-form-section .service-form .field label {
  display: block;
  font-weight: 500;
  font-size: 14px;
  margin-bottom: 10px;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 6px;
}
.service-form-section .service-form .field input[type=text], .service-form-section .service-form .field input[type=number], .service-form-section .service-form .field input[type=email], .service-form-section .service-form .field input[type=tel], .service-form-section .service-form .field textarea, .service-form-section .service-form .field select {
  width: 100%;
  padding: 14px 16px;
  font-size: 15px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #fff;
  color: var(--ink);
  transition: border-color 0.2s ease, outline 0.2s ease;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  font-family: inherit;
}
.service-form-section .service-form .field input[type=text]::-moz-placeholder, .service-form-section .service-form .field input[type=number]::-moz-placeholder, .service-form-section .service-form .field input[type=email]::-moz-placeholder, .service-form-section .service-form .field input[type=tel]::-moz-placeholder, .service-form-section .service-form .field textarea::-moz-placeholder, .service-form-section .service-form .field select::-moz-placeholder {
  color: #8c8c8c;
}
.service-form-section .service-form .field input[type=text]::placeholder, .service-form-section .service-form .field input[type=number]::placeholder, .service-form-section .service-form .field input[type=email]::placeholder, .service-form-section .service-form .field input[type=tel]::placeholder, .service-form-section .service-form .field textarea::placeholder, .service-form-section .service-form .field select::placeholder {
  color: #8c8c8c;
}
.service-form-section .service-form .field input[type=text]:focus, .service-form-section .service-form .field input[type=number]:focus, .service-form-section .service-form .field input[type=email]:focus, .service-form-section .service-form .field input[type=tel]:focus, .service-form-section .service-form .field textarea:focus, .service-form-section .service-form .field select:focus {
  outline: none;
  border-color: var(--dark);
}
.service-form-section .service-form .field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1.41 0.589844L6 5.16984L10.59 0.589844L12 1.99984L6 7.99984L0 1.99984L1.41 0.589844Z' fill='%23000000'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  cursor: pointer;
  padding-right: 48px;
}
.service-form-section .service-form .field textarea {
  resize: vertical;
}
.service-form-section .service-form .radio-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.service-form-section .service-form .radio-row label {
  flex: 1;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 14px 12px;
  text-align: center;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  color: var(--ink);
  margin: 0;
  transition: all 0.2s ease;
}
.service-form-section .service-form .radio-row label.on {
  border-color: var(--dark);
  background: var(--dark);
  color: #fff;
}
.service-form-section .service-form .radio-row input {
  position: absolute;
  opacity: 0;
}
.service-form-section .service-form .file-upload {
  position: relative;
  background: var(--paper);
  border: 2px dashed #b9c7b9;
  border-radius: var(--radius-sm);
  padding: 32px 24px;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.service-form-section .service-form .file-upload:hover {
  border-color: var(--dark);
  background: #eef2eb;
}
.service-form-section .service-form .file-upload input[type=file] {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  z-index: 2;
}
.service-form-section .service-form .file-upload .file-upload-content {
  display: flex;
  align-items: center;
  gap: 16px;
}
.service-form-section .service-form .file-upload .file-upload-content svg {
  flex-shrink: 0;
}
.service-form-section .service-form .file-upload .file-upload-content div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.service-form-section .service-form .file-upload .file-upload-content .file-title {
  font-weight: 600;
  font-size: 15px;
  color: var(--ink);
}
.service-form-section .service-form .file-upload .file-upload-content .file-desc {
  font-size: 13px;
  color: var(--muted);
}
.service-form-section .service-form .consent-text {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  margin-top: 8px;
}
.service-form-section .service-form .consent-text a {
  color: var(--dark);
  font-weight: 700;
  text-decoration: none;
}
.service-form-section .service-form .consent-text a:hover {
  text-decoration: underline;
}
.service-form-section .service-form .btn-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  margin-top: 16px;
  background: var(--lime);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  padding: 16px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s ease;
}
.service-form-section .service-form .btn-submit:hover {
  background: var(--lime-hover);
}
.service-form-section .service-form .btn-submit .btn-icon {
  background: #fff;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
}
.service-form-section .service-form .btn-submit .btn-icon svg {
  width: 12px;
  height: auto;
}

.sub-hero {
  max-height: 950px;
  padding-top: 0;
  position: relative;
  overflow: hidden;
  min-height: 740px;
  display: flex;
  align-items: center;
}
.sub-hero .hero-background {
  position: absolute;
  inset: 24px;
  z-index: 2;
  background-color: #E2EDD5;
  border-radius: 30px;
  overflow: hidden;
}
@media (max-width: 1200px) {
  .sub-hero .hero-background {
    inset: 12px;
  }
}
@media (max-width: 767px) {
  .sub-hero .hero-background {
    inset: 0;
    border-radius: 0;
  }
}
.sub-hero .hero-background .hero-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  z-index: 6;
  background-image: linear-gradient(rgba(18, 53, 36, 0.8980392157), rgba(18, 53, 36, 0.8980392157)), url("/wp-content/uploads/2026/08/29c8ab39109ac1c45d0ed4a887c9115402d43916.jpg");
  background-size: cover;
  background-position: center;
}
@media (max-width: 992px) {
  .sub-hero .hero-background .hero-bg-overlay {
    width: 100%;
  }
}
.sub-hero .hero-background .hero-bg-img {
  position: absolute;
  top: 0;
  right: 0;
  width: 51%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  z-index: 3;
}
@media (min-width: 992px) {
  .sub-hero {
    min-height: 690px;
  }
}
@media (max-width: 1200px) {
  .sub-hero {
    height: auto;
    max-height: unset;
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
.sub-hero .container.hero-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  z-index: 5;
  position: relative;
}
@media (max-width: 992px) {
  .sub-hero .container.hero-content {
    flex-direction: column;
  }
}
.sub-hero .container.hero-content .hero-texts {
  max-width: 48%;
  color: #FFFFFF;
}
@media (max-width: 992px) {
  .sub-hero .container.hero-content .hero-texts {
    max-width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
.sub-hero .container.hero-content .hero-texts .hero-subheading {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
  gap: 12px;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 10%;
  width: -moz-fit-content;
  width: fit-content;
}
.sub-hero .container.hero-content .hero-texts h1 {
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .sub-hero .container.hero-content .hero-texts h1 {
    margin-bottom: 16px;
  }
}
.sub-hero .container.hero-content .hero-texts p {
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .sub-hero .container.hero-content .hero-texts p {
    margin-bottom: 20px;
  }
}
.sub-hero .container.hero-content .hero-texts .hero-btns {
  display: flex;
  align-items: center;
  gap: 24px;
}
@media (max-width: 992px) {
  .sub-hero .container.hero-content .hero-texts .hero-btns {
    justify-content: center;
    flex-wrap: wrap;
  }
}
@media (max-width: 560px) {
  .sub-hero .container.hero-content .hero-texts .hero-btns {
    gap: 12px;
  }
}
.sub-hero .container.hero-content .hero-img-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-grow: 1;
  max-width: 600px;
  height: 100%;
}
@media (max-width: 992px) {
  .sub-hero .container.hero-content .hero-img-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 32px;
    height: auto;
    width: 100%;
  }
}
.sub-hero .container.hero-content .hero-img-wrap img {
  width: 420px;
  position: relative;
  z-index: 2;
  margin-right: 320px;
}
@media (max-width: 1400px) {
  .sub-hero .container.hero-content .hero-img-wrap img {
    width: 360px;
    margin-right: 280px;
  }
}
@media (max-width: 1200px) {
  .sub-hero .container.hero-content .hero-img-wrap img {
    margin-right: 180px;
    width: 360px;
  }
}
@media (max-width: 992px) {
  .sub-hero .container.hero-content .hero-img-wrap img {
    width: 80%;
    max-width: 340px;
    margin-right: 0;
    grid-column: 1/-1;
    justify-self: center;
  }
}

.about-druzstvo .about-left {
  display: flex;
  align-items: center;
  gap: 80px;
}
@media (max-width: 1200px) {
  .about-druzstvo .about-left {
    gap: 48px;
  }
}
@media (max-width: 992px) {
  .about-druzstvo .about-left {
    flex-direction: column-reverse;
    gap: 24px;
  }
}
.about-druzstvo .about-left img {
  width: 50%;
  aspect-ratio: 12/10;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border-radius: 20px;
}
@media (max-width: 992px) {
  .about-druzstvo .about-left img {
    width: 100%;
    height: auto;
  }
}
.about-druzstvo .about-left .about-texts h2 {
  margin-top: 16px;
  margin-bottom: 16px;
}
.about-druzstvo .about-left .about-texts p {
  margin-bottom: 20px;
}
.about-druzstvo .about-left-cards {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
@media (max-width: 992px) {
  .about-druzstvo .about-left-cards {
    gap: 24px;
  }
}
@media (max-width: 767px) {
  .about-druzstvo .about-left-cards {
    margin-top: 24px;
    grid-template-columns: 1fr;
  }
}
.about-druzstvo .about-left-cards .about-card {
  padding: 40px;
  border-radius: 20px;
}
.about-druzstvo .about-left-cards .about-card .card-heading {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}
.about-druzstvo .about-left-cards .about-card li {
  margin-bottom: 12px;
}
.about-druzstvo .about-left-cards .left-card {
  background-color: #E2EDD5;
}
.about-druzstvo .about-left-cards .right-card {
  background-color: #00923F;
  color: #FFFFFF;
}

.why-us {
  background-image: linear-gradient(rgba(18, 53, 36, 0.8980392157), rgba(18, 53, 36, 0.8980392157)), url("/wp-content/uploads/2026/08/29c8ab39109ac1c45d0ed4a887c9115402d43916.jpg");
  margin-left: 24px;
  margin-right: 24px;
  border-radius: 30px;
  padding-bottom: 100px;
  margin-top: 100px;
  color: #FFFFFF;
}
.why-us .subheading {
  color: #00923F;
}
@media (max-width: 1200px) {
  .why-us {
    margin-left: 12px;
    margin-right: 12px;
  }
}
@media (max-width: 767px) {
  .why-us {
    margin-left: 0px;
    margin-right: 0px;
    border-radius: 0;
    padding-bottom: 60px;
    margin-top: 60px;
  }
}
.why-us .why-us-cards {
  display: flex;
  gap: 32px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
@media (max-width: 992px) {
  .why-us .why-us-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}
@media (max-width: 576px) {
  .why-us .why-us-cards {
    gap: 12px;
  }
}
@media (max-width: 400px) {
  .why-us .why-us-cards {
    grid-template-columns: 1fr;
  }
}
.why-us .why-us-cards .why-card {
  width: calc((100% - 64px) / 3);
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1019607843);
  backdrop-filter: blur(8px);
  border-radius: 20px;
  padding: 32px;
  height: 232px;
  padding-top: 24px;
}
@media (max-width: 767px) {
  .why-us .why-us-cards .why-card {
    padding: 20px;
  }
}
@media (max-width: 1400px) {
  .why-us .why-us-cards .why-card {
    height: 268px;
  }
}
@media (max-width: 992px) {
  .why-us .why-us-cards .why-card {
    height: auto;
    width: 100%;
  }
}
.why-us .why-us-cards .why-card h3 {
  margin-bottom: 12px;
}
.why-us .why-us-cards .why-card h3::first-letter {
  color: #00923F;
  font-size: 2em;
}

.structure-section .structure-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 104px;
  row-gap: 82px;
}
@media (max-width: 992px) {
  .structure-section .structure-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .structure-section .structure-grid {
    margin-top: 72px;
    gap: 20px;
    row-gap: 70px;
  }
}
@media (max-width: 576px) {
  .structure-section .structure-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
.structure-section .structure-grid .person-card {
  border: 1px solid rgba(0, 70, 56, 0.2);
  background-color: #FFFFFF;
  padding: 32px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.structure-section .structure-grid .person-card .icon-wrap {
  height: 100px;
  width: 100px;
  border-radius: 120px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #123524;
  margin-top: -82px;
  margin-bottom: 32px;
}
@media (max-width: 767px) {
  .structure-section .structure-grid .person-card .icon-wrap {
    height: 72px;
    width: 72px;
  }
  .structure-section .structure-grid .person-card .icon-wrap img {
    height: 36px;
  }
}
.structure-section .structure-grid .person-card .subheading {
  font-size: 0.875em;
  font-weight: 800;
}
.structure-section .structure-grid .person-card h3 {
  margin-top: 16px;
  margin-bottom: 32px;
}

.zakladna-section {
  background-color: #E2EDD5;
  padding-bottom: 100px;
  margin-top: 100px;
  margin-left: 24px;
  margin-right: 24px;
  border-radius: 30px;
}
@media (max-width: 1200px) {
  .zakladna-section {
    margin-left: 12px;
    margin-right: 12px;
  }
}
@media (max-width: 767px) {
  .zakladna-section {
    margin: 0;
    border-radius: 0;
    margin-top: 60px;
  }
}
.zakladna-section .zakladna-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -moz-column-gap: 32px;
       column-gap: 32px;
  row-gap: 12px;
}
@media (max-width: 767px) {
  .zakladna-section .zakladna-grid {
    margin-top: 24px;
    grid-template-columns: 1fr;
  }
}
.zakladna-section .zakladna-grid .zakladna-clen {
  position: relative;
  width: 100%;
  border-bottom: 1px solid rgba(18, 53, 36, 0.3019607843);
  padding-bottom: 10px;
  font-size: 1.25em;
  font-weight: 700;
  padding-left: 20px;
}
.zakladna-section .zakladna-grid .zakladna-clen::before {
  content: "";
  position: absolute;
  left: 0;
  top: 36%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  background-color: currentColor;
  border-radius: 50%;
  background-color: #00923F;
}
.zakladna-section .zakladna-banner-cont .zakladna-banner {
  border-radius: 20px;
  background-color: #00923F;
  padding: 56px 72px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  overflow: hidden;
  margin-top: 60px;
  color: #FFFFFF;
  gap: 24px;
}
@media (max-width: 1200px) {
  .zakladna-section .zakladna-banner-cont .zakladna-banner {
    padding: 40px;
    flex-direction: column;
    align-items: start;
  }
}
@media (max-width: 767px) {
  .zakladna-section .zakladna-banner-cont .zakladna-banner {
    margin-top: 40px;
  }
}
@media (max-width: 490px) {
  .zakladna-section .zakladna-banner-cont .zakladna-banner {
    padding: 32px;
  }
}
.zakladna-section .zakladna-banner-cont .zakladna-banner .about-banner-text {
  max-width: 590px;
}
.zakladna-section .zakladna-banner-cont .zakladna-banner .about-banner-text h3 {
  font-size: 1.75em;
  margin: 16px 0;
}
@media (max-width: 992px) {
  .zakladna-section .zakladna-banner-cont .zakladna-banner .about-banner-text {
    max-width: 380px;
  }
}
.zakladna-section .zakladna-banner-cont .zakladna-banner .about-banner-text p {
  margin-bottom: 20px;
}
.zakladna-section .zakladna-banner-cont .zakladna-banner img {
  height: 60px !important;
  width: auto;
  flex: 0;
  margin-right: auto;
  margin-left: auto;
}
@media (max-width: 1200px) {
  .zakladna-section .zakladna-banner-cont .zakladna-banner img {
    margin-right: unset;
    margin-left: auto;
  }
}

.partners-section .partners-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}
.partners-section .partners-grid img {
  width: auto;
  height: auto;
  max-height: 160px;
}/*# sourceMappingURL=ds_front.css.map */

.komunerg-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}
.komunerg-content {
    display: flex;
    flex-direction: column;
}
.komunerg-subheading {
    color: #00923F;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
}
.komunerg-content h2 {
    margin-bottom: 20px;
}
.komunerg-text {
    margin-bottom: 24px;
}
.komunerg-content h3 {
    margin-bottom: 24px;
}
.komunerg-finance-list {
    display: flex;
    flex-direction: column;
    border-top: 1px solid #00463833;
}
.komunerg-finance-item {
    display: flex;
    align-items: center;
    padding-top: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid #00463833;
    gap: 24px;
}
.komunerg-finance-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: #00923F;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.komunerg-finance-icon img {
    width: 24px;
    height: auto;
}
.komunerg-finance-info {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.komunerg-finance-title {
    font-weight: 700;
    margin-bottom: 4px;
}
.komunerg-finance-val {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
}
.komunerg-note {
    margin-top: 16px;
    font-size: 0.875rem;
    opacity: 0.8;
}
.komunerg-image {
    width: 100%;
    height: 100%;
}
.komunerg-image img {
    width: 100%;
    height: 100%;
    max-height: 720px;
    object-fit: cover;
    border-radius: 24px;
}
.komunerg-benefits {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-top: 48px;
}
.komunerg-benefit-item {
    display: flex;
    flex-direction: column;
}
.komunerg-benefit-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background-color: #123524;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}
.komunerg-benefit-icon img {
    width: 28px;
    height: auto;
}
.komunerg-benefit-item h4 {
    margin-bottom: 8px;
    color: #123524;
    font-size: 1.5em;
}
.komunerg-banners {
    display: grid;
    grid-template-columns: 4fr 3fr;
    gap: 24px;
    margin-top: 32px;
}
.komunerg-banner-green,
.komunerg-banner-light {
    display: flex;
    align-items: center;
    gap: 24px;
    border-radius: 24px;
    padding: 20px;
}
.komunerg-banner-green {
    background-color: #00923F;
    color: #FFFFFF;
}
.komunerg-banner-light {
    background-color: #E2EDD5;
    color: #000000;
}
.komunerg-banner-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #123524;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.komunerg-benefit-text {
  font-weight: 600;
}
.komunerg-banner-icon img {
    width: 32px;
    height: auto;
}
.komunerg-banner-content {
    display: flex;
    flex-direction: column;
}
.komunerg-banner-green h4 {
    margin-bottom: 8px;
    color: #FFFFFF;
}
.komunerg-banner-light .komunerg-banner-date {
    font-weight: 800;
    font-size: 1.25rem;
    margin-top: 8px;
}

@media (max-width: 1200px) {
    .komunerg-top {
        gap: 0px;
    }
    .komunerg-banners {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 992px) {
    .komunerg-top {
        grid-template-columns: 1fr;
    }
    .komunerg-image img {
        max-height: 480px;
        margin-top: 32px;
    }
    .komunerg-benefits {
        grid-template-columns: repeat(2, 1fr);
        margin-top: 56px;
    }
}

@media (max-width: 767px) {
    .komunerg-finance-item {
        gap: 16px;
    }
    .komunerg-finance-val {
        font-size: 2rem;
    }
    .komunerg-banner-green,
    .komunerg-banner-light {
        padding: 24px;
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 576px) {
    .komunerg-benefits {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}