@charset "UTF-8";
/*---

These are the styles for the variables. Variables can be applied
to any element, components, or pages. Refers to figma.

Index
- Base
- Gray
- Others

*/
/*-------------------------------------------*\
Base
\*-------------------------------------------*/
/*-------------------------------------------*\
Neutral
\*-------------------------------------------*/
/*-------------------------------------------*\
Primary
\*-------------------------------------------*/
/*-------------------------------------------*\
Secondary
\*-------------------------------------------*/
/*-------------------------------------------*\
Accent
\*-------------------------------------------*/
/*---

These are the styles for the typography. Typography styles can be applied
to any element. Typically you'll want to use either
a `<p>`, `<span>`, or heading element:

​```html
<h1 class="heading-1">This is a title text</h1>
<span class="text-scale-lg">This is a text</span>
<p class="small">Some Text</p>
​```

Index
- Responsive Mixins
- Sizes
- Layouts
- Inputs

*/
/*-------------------------------------------*\
Responsive mixins
\*-------------------------------------------*/
/*-------------------------------------------*\
Sizes
\*-------------------------------------------*/
/*-------------------------------------------*\
Inputs
\*-------------------------------------------*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  display: flex;
  flex-direction: column;
  margin: 0;
  min-height: 100vh;
  width: 100%;
  box-sizing: border-box;
}

footer {
  margin-top: auto;
}

@media (min-width: 1024px) {
  .mobile-only {
    display: none;
  }
}

.desktop-only {
  display: none;
}
@media (min-width: 1024px) {
  .desktop-only {
    display: block;
  }
}

/*---

These are the styles for the typography. Typography styles can be applied
to any element. Typically you'll want to use either
a `<p>`, `<span>`, or heading element:

​```html
<h1 class="heading-1">This is a title text</h1>
<span class="text-scale-lg">This is a text</span>
<p class="small">Some Text</p>
​```

Index
- Font size
- Font weight
- Text color
- Text align
- Text decoration
- Text transform
- White space

*/
/*-------------------------------------------*\
Font size
\*-------------------------------------------*/
:root {
  font-size: 100%;
}

*,
h1,
h2,
h3,
h4,
p,
div,
a,
span,
label,
li,
footer {
  font-family: "Parkinsans", sans-serif;
  font-size: 1rem;
  line-height: normal;
}
@media (min-width: 1024px) {
  *,
  h1,
  h2,
  h3,
  h4,
  p,
  div,
  a,
  span,
  label,
  li,
  footer {
    font-size: 1rem;
  }
}

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

.heading-1 {
  font-size: 2rem;
  line-height: normal;
}
@media (min-width: 1024px) {
  .heading-1 {
    font-size: 2.625rem;
  }
}

.heading-2 {
  font-size: 1.625rem;
}
@media (min-width: 1024px) {
  .heading-2 {
    font-size: 2.625rem;
  }
}

.heading-3 {
  font-size: 1.625rem;
}
@media (min-width: 1024px) {
  .heading-3 {
    font-size: 1.625rem;
  }
}

.text-body-4xl {
  font-size: 1.5rem;
}
@media (min-width: 1024px) {
  .text-body-4xl {
    font-size: 1.625rem;
  }
}

.text-body-3xl {
  font-size: 1.25rem;
}
@media (min-width: 1024px) {
  .text-body-3xl {
    font-size: 1.625rem;
  }
}

.text-body-2xl {
  font-size: 1.25rem;
}
@media (min-width: 1024px) {
  .text-body-2xl {
    font-size: 1.25rem;
  }
}

.text-body-xl {
  font-size: 1.125rem;
}
@media (min-width: 1024px) {
  .text-body-xl {
    font-size: 1.25rem;
  }
}

.text-body-2lg {
  font-size: 1.125rem;
}
@media (min-width: 1024px) {
  .text-body-2lg {
    font-size: 1.125rem;
  }
}

.text-body-lg {
  font-size: 1rem;
}
@media (min-width: 1024px) {
  .text-body-lg {
    font-size: 1.125rem;
  }
}

.text-body-2md {
  font-size: 0.875rem;
}
@media (min-width: 1024px) {
  .text-body-2md {
    font-size: 1rem;
  }
}

.text-body-md {
  font-size: 0.875rem;
}
@media (min-width: 1024px) {
  .text-body-md {
    font-size: 0.875rem;
  }
}

.text-body-sm {
  font-size: 0.75rem;
}
@media (min-width: 1024px) {
  .text-body-sm {
    font-size: 0.875rem;
  }
}

.text-body-2sm {
  font-size: 0.75rem;
}
@media (min-width: 1024px) {
  .text-body-2sm {
    font-size: 0.75rem;
  }
}

/*-------------------------------------------*\
Font Weight
\*-------------------------------------------*/
.light {
  font-weight: 300;
}

.regular {
  font-weight: 400;
}

.medium {
  font-weight: 500;
}

.semi-bold {
  font-weight: 600;
}

.bold {
  font-weight: 700;
}

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

/*-------------------------------------------*\
Text Align
\*-------------------------------------------*/
.text-left {
  text-align: left;
}

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

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

@media (min-width: 1024px) {
  .text-md-center {
    text-align: center;
  }
}

/*-------------------------------------------*\
Text color
\*-------------------------------------------*/
.text-white {
  color: #ffffff;
}

.text-primary {
  color: #13744a;
}

.text-neutral-400 {
  color: #888;
}

.text-cream {
  color: #f8e4bb;
}

.text-secondary {
  color: #3076ff;
}

.text-error {
  color: #d82a4a;
}

/*-------------------------------------------*\ 
List Style
\*-------------------------------------------*/
.list-outside {
  list-style-position: outside;
}

.list-inside {
  list-style-position: inside;
}

.list-disc,
.list-decimal {
  display: grid;
  row-gap: 6px;
}
.list-disc li,
.list-decimal li {
  display: flex;
  column-gap: 6px;
}

.list-disc li::before {
  content: "•";
}

.list-decimal li {
  counter-increment: item;
}
.list-decimal li::before {
  content: counter(item) ". ";
}

.list-check {
  display: grid;
  row-gap: 0.75rem;
}
@media (min-width: 1024px) {
  .list-check {
    row-gap: 1rem;
  }
}
.list-check li {
  display: flex;
  column-gap: 6px;
  align-items: center;
}
.list-check li::before {
  content: "";
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  background-size: contain;
  background-position: center;
}
.list-check__green li::before {
  background: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzIiIGhlaWdodD0iMzIiIHZpZXdCb3g9IjAgMCAzMiAzMiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTE2IDI3LjI1QzIyLjIxMzIgMjcuMjUgMjcuMjUgMjIuMjEzMiAyNy4yNSAxNkMyNy4yNSA5Ljc4NjggMjIuMjEzMiA0Ljc1IDE2IDQuNzVDOS43ODY4IDQuNzUgNC43NSA5Ljc4NjggNC43NSAxNkM0Ljc1IDIyLjIxMzIgOS43ODY4IDI3LjI1IDE2IDI3LjI1WiIgZmlsbD0iIzEzNzQ0QSIvPgo8cGF0aCBkPSJNMTQuODY0OSAyMC4xNjYzQzE0LjY3NjYgMjAuMTY2NiAxNC40OTAxIDIwLjEyOTYgMTQuMzE2MiAyMC4wNTc1QzE0LjE0MjMgMTkuOTg1NCAxMy45ODQzIDE5Ljg3OTcgMTMuODUxNCAxOS43NDYzTDEwLjY1NTQgMTYuNTQ5NkMxMC41MTU3IDE2LjQxOCAxMC40MDQgMTYuMjU5NyAxMC4zMjY2IDE2LjA4NDJDMTAuMjQ5MyAxNS45MDg2IDEwLjIwOCAxNS43MTkzIDEwLjIwNTIgMTUuNTI3NEMxMC4yMDI0IDE1LjMzNTYgMTAuMjM4MiAxNS4xNDUxIDEwLjMxMDMgMTQuOTY3NEMxMC4zODI1IDE0Ljc4OTYgMTAuNDg5NiAxNC42MjgyIDEwLjYyNTQgMTQuNDkyNkMxMC43NjExIDE0LjM1NyAxMC45MjI3IDE0LjI1IDExLjEwMDUgMTQuMTc4QzExLjI3ODMgMTQuMTA2IDExLjQ2ODggMTQuMDcwNSAxMS42NjA2IDE0LjA3MzRDMTEuODUyNSAxNC4wNzY0IDEyLjA0MTggMTQuMTE3OSAxMi4yMTczIDE0LjE5NTRDMTIuMzkyOCAxNC4yNzI5IDEyLjU1MDkgMTQuMzg0OCAxMi42ODI0IDE0LjUyNDZMMTQuODY0OSAxNi43MDY4TDE5LjMxNzYgMTIuMjUyOEMxOS41ODY5IDExLjk4NjIgMTkuOTUwOCAxMS44MzcgMjAuMzI5NyAxMS44Mzc5QzIwLjcwODcgMTEuODM4OCAyMS4wNzE4IDExLjk4OTcgMjEuMzM5OCAxMi4yNTc2QzIxLjYwNzggMTIuNTI1NiAyMS43NTg4IDEyLjg4ODcgMjEuNzU5OCAxMy4yNjc2QzIxLjc2MDggMTMuNjQ2NiAyMS42MTE3IDE0LjAxMDUgMjEuMzQ1MSAxNC4yNzk4TDE1Ljg3ODYgMTkuNzQ2M0MxNS43NDU2IDE5Ljg3OTcgMTUuNTg3NiAxOS45ODU0IDE1LjQxMzYgMjAuMDU3NUMxNS4yMzk3IDIwLjEyOTYgMTUuMDUzMiAyMC4xNjY2IDE0Ljg2NDkgMjAuMTY2M1oiIGZpbGw9IndoaXRlIi8+Cjwvc3ZnPgo=") no-repeat;
}
.list-check__white li::before {
  background: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTEyIDIwLjQzNzVDMTYuNjU5OSAyMC40Mzc1IDIwLjQzNzUgMTYuNjU5OSAyMC40Mzc1IDEyQzIwLjQzNzUgNy4zNDAxIDE2LjY1OTkgMy41NjI1IDEyIDMuNTYyNUM3LjM0MDEgMy41NjI1IDMuNTYyNSA3LjM0MDEgMy41NjI1IDEyQzMuNTYyNSAxNi42NTk5IDcuMzQwMSAyMC40Mzc1IDEyIDIwLjQzNzVaIiBmaWxsPSJ3aGl0ZSIvPgo8cGF0aCBkPSJNMTEuMTQ4NyAxNS4xMjQzQzExLjAwNzQgMTUuMTI0NCAxMC44Njc2IDE1LjA5NjcgMTAuNzM3MSAxNS4wNDI2QzEwLjYwNjcgMTQuOTg4NiAxMC40ODgyIDE0LjkwOTMgMTAuMzg4NSAxNC44MDkzTDcuOTkxNTMgMTIuNDExN0M3Ljg4NjgxIDEyLjMxMyA3LjgwMjk3IDEyLjE5NDMgNy43NDQ5OCAxMi4wNjI2QzcuNjg2OTggMTEuOTMwOSA3LjY1NjAyIDExLjc4OSA3LjY1MzkyIDExLjY0NTFDNy42NTE4MiAxMS41MDEyIDcuNjc4NjMgMTEuMzU4NCA3LjczMjc2IDExLjIyNTFDNy43ODY4OSAxMS4wOTE3IDcuODY3MjMgMTAuOTcwNiA3Ljk2OTAzIDEwLjg2ODlDOC4wNzA4MiAxMC43NjcyIDguMTkyIDEwLjY4NyA4LjMyNTM4IDEwLjYzM0M4LjQ1ODc1IDEwLjU3OSA4LjYwMTYxIDEwLjU1MjQgOC43NDU0OCAxMC41NTQ2QzguODg5MzYgMTAuNTU2OCA5LjAzMTMxIDEwLjU4NzkgOS4xNjI5NCAxMC42NDYxQzkuMjk0NTcgMTAuNzA0MiA5LjQxMzE5IDEwLjc4ODEgOS41MTE3OCAxMC44OTNMMTEuMTQ4NyAxMi41Mjk2TDE0LjQ4ODIgOS4xODkxNEMxNC42OTAyIDguOTg5MTUgMTQuOTYzMSA4Ljg3NzI2IDE1LjI0NzMgOC44Nzc5M0MxNS41MzE1IDguODc4NjEgMTUuODAzOSA4Ljk5MTc5IDE2LjAwNDkgOS4xOTI3M0MxNi4yMDU5IDkuMzkzNjggMTYuMzE5MSA5LjY2NjAzIDE2LjMxOTkgOS45NTAyNUMxNi4zMjA2IDEwLjIzNDUgMTYuMjA4OCAxMC41MDc0IDE2LjAwODggMTAuNzA5NEwxMS45MDkgMTQuODA5M0MxMS44MDkyIDE0LjkwOTMgMTEuNjkwNyAxNC45ODg2IDExLjU2MDIgMTUuMDQyNkMxMS40Mjk4IDE1LjA5NjcgMTEuMjg5OSAxNS4xMjQ0IDExLjE0ODcgMTUuMTI0M1oiIGZpbGw9IiMxMzc0NEEiLz4KPC9zdmc+Cg==") no-repeat;
}
.list-check__red li::before {
  background: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzIiIGhlaWdodD0iMzIiIHZpZXdCb3g9IjAgMCAzMiAzMiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTE2IDI3LjI1QzIyLjIxMzIgMjcuMjUgMjcuMjUgMjIuMjEzMiAyNy4yNSAxNkMyNy4yNSA5Ljc4NjggMjIuMjEzMiA0Ljc1IDE2IDQuNzVDOS43ODY4IDQuNzUgNC43NSA5Ljc4NjggNC43NSAxNkM0Ljc1IDIyLjIxMzIgOS43ODY4IDI3LjI1IDE2IDI3LjI1WiIgZmlsbD0iI0Q4MkE0QSIvPgo8cGF0aCBkPSJNMTIuNSAxMi4zODI4TDE5LjQ5ODIgMTkuNjE5NSIgc3Ryb2tlPSJ3aGl0ZSIgc3Ryb2tlLXdpZHRoPSIyLjUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIvPgo8cGF0aCBkPSJNMTkuNDk4IDEyLjM4MjhMMTIuNDk5OSAxOS42MTk1IiBzdHJva2U9IndoaXRlIiBzdHJva2Utd2lkdGg9IjIuNSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIi8+Cjwvc3ZnPgo=") no-repeat;
}

textarea {
  resize: none;
}

input[type=text],
input[type=password],
input[type=date],
input[type=time],
input[type=email],
input[type=number],
input[type=tel],
input[type=search],
input[type=datetime-local],
select,
.custom-select--big .custom-select__trigger {
  border: 1px solid #c0bdcd;
  border-radius: 8px;
  height: 48px;
  padding: 1rem;
  width: 100%;
  box-sizing: border-box;
  font-size: 0.875rem;
  overflow: visible;
}
@media (min-width: 1024px) {
  input[type=text],
  input[type=password],
  input[type=date],
  input[type=time],
  input[type=email],
  input[type=number],
  input[type=tel],
  input[type=search],
  input[type=datetime-local],
  select,
  .custom-select--big .custom-select__trigger {
    font-size: 0.875rem;
  }
}
input[type=text]::placeholder,
input[type=password]::placeholder,
input[type=date]::placeholder,
input[type=time]::placeholder,
input[type=email]::placeholder,
input[type=number]::placeholder,
input[type=tel]::placeholder,
input[type=search]::placeholder,
input[type=datetime-local]::placeholder,
select::placeholder,
.custom-select--big .custom-select__trigger::placeholder {
  color: #a4a4a4;
}

.input-with-icon {
  position: relative;
}
.input-with-icon .input-icon {
  position: absolute;
  top: 50%;
  left: 1rem;
  transform: translateY(-50%);
  pointer-events: none;
}
.input-with-icon input[type=number] {
  height: 38px;
  max-width: 8.75rem;
  border-radius: 12px;
  text-align: right;
}

label {
  font-size: 0.875rem;
}
@media (min-width: 1024px) {
  label {
    font-size: 0.875rem;
  }
}

textarea {
  border: 1px solid #c0bdcd;
  border-radius: 8px;
  color: #a4a4a4;
  padding: 0.5rem;
}
textarea:focus {
  outline: none;
}

input[type=range] {
  position: relative;
  width: 100%;
  height: 4px;
  border-radius: 8px;
  background-color: rgba(60, 60, 67, 0.18);
  appearance: none;
  cursor: pointer;
}
input[type=range]::-webkit-slider-thumb {
  position: relative;
  width: 1.75rem;
  height: 1.75rem;
  background-color: #ffffff;
  border: 1px solid #13744a;
  border-radius: 50%;
  z-index: 2;
  appearance: none;
  cursor: pointer;
}
input[type=range]::before {
  content: "";
  position: absolute;
  height: 4px;
  background: #13744a;
  border-radius: 8px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: var(--progress, 0%);
  z-index: 1;
}

.input-row input:focus,
.input-row select:focus {
  outline: none;
  border-color: #13744a;
}

select {
  appearance: none;
  background-color: #ffffff;
  background-image: url("../images/icons/chevron-down-black.svg");
  background-repeat: no-repeat;
  background-position: calc(100% - 0.5rem);
  min-width: 62px;
  height: 48px;
  width: 100%;
  border-radius: 8px;
  font-size: 0.875rem;
  padding: 0 12px;
  cursor: pointer;
}
@media (min-width: 1024px) {
  select {
    font-size: 0.875rem;
  }
}

/* Chrome, Safari, Edge, Opera */
input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.w-100 {
  width: 100% !important;
}

@media (min-width: 1024px) {
  .w-md-50 {
    width: 50% !important;
  }
}

@media (min-width: 1024px) {
  .w-md-40 {
    width: 40% !important;
  }
}

.d-grid {
  display: grid;
}

.d-block {
  display: block;
}

.d-flex {
  display: flex;
}

.flex-warp {
  flex-wrap: wrap;
}

@media (min-width: 1024px) {
  .d-md-flex {
    display: flex;
  }
}

@media (min-width: 1024px) {
  .flex-md-row {
    flex-direction: row;
  }
}

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

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

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

.justify-content-between {
  justify-content: space-between;
}

@media (min-width: 1024px) {
  .d-md-block {
    display: block;
  }
}

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

.order-1-md-2 {
  order: 1;
}
@media (min-width: 1024px) {
  .order-1-md-2 {
    order: 2;
  }
}

.order-2-md-1 {
  order: 2;
}
@media (min-width: 1024px) {
  .order-2-md-1 {
    order: 1;
  }
}

@media (min-width: 1024px) {
  .section__wrapper {
    box-sizing: border-box;
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
  }
}

.section__padding {
  padding: 3.625rem 5%;
}
@media (min-width: 1280px) {
  .section__padding {
    padding-inline: 7.5rem;
  }
}
@media (min-width: 1280px) {
  .section__padding--big {
    padding-inline: 11.875rem;
  }
}

.cursor-pointer {
  cursor: pointer;
}

.position-relative {
  position: relative;
}

.mx-auto {
  margin-inline: auto;
}

.ml-auto {
  margin-left: auto;
}

.mb-1 {
  margin-bottom: 0.25rem;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.mb-3 {
  margin-bottom: 0.75rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mb-5 {
  margin-bottom: 1.5rem;
}

.img-full-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bg-primary {
  background-color: #13744a;
}

.bg-cream {
  background-color: #f8e4bb;
}

.bg-primary-light {
  background-color: #eff8f4;
}

hr {
  margin: 0;
  border: 1px solid #f8e4bb;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #ffffff;
}
@media (min-width: 1024px) {
  nav {
    padding: 2rem 5.125rem 1rem;
  }
}

.nav__list {
  display: flex;
  column-gap: 3.75rem;
  align-items: center;
}
@media (max-width: 768px) {
  .nav__list {
    display: none;
  }
}
.nav__item {
  cursor: pointer;
}
.nav__item.active {
  position: relative;
}
.nav__item.active .nav__link {
  color: #13744a;
}
.nav__item.active::after {
  content: "";
  position: absolute;
  height: 5px;
  width: 32px;
  border-radius: 99px;
  background-color: #13744a;
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
}
.nav__link {
  color: #a3aed0;
}

.footer__section {
  display: grid;
  row-gap: 2rem;
  grid-template-areas: "contact" "quick-links" "about" "separator" "bottom";
  color: #f8e4bb;
}
@media (min-width: 1024px) {
  .footer__section {
    grid-template-areas: "contact quick-links about" "separator separator separator" "bottom bottom bottom";
    grid-template-columns: 1.5fr 1fr 1.5fr;
    padding-block: 4.5rem;
  }
}

.contact {
  grid-area: contact;
}

.quick-links {
  grid-area: quick-links;
}

.about-us {
  grid-area: about;
}
.about-us > p:nth-child(2) {
  line-height: 22px;
}

.separator {
  grid-area: separator;
}

.footer__bottom {
  grid-area: bottom;
}
.footer__bottom > p:first-child {
  line-height: 20px;
}

.accordion {
  overflow: hidden;
  border: 1px solid #dcdcdc;
  border-radius: 12px;
  padding: 1rem;
}
.accordion__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
}
.accordion__icon {
  transition: transform 0.3s ease;
}
.accordion__content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  padding: 0 0;
  transition: max-height 0.35s ease, padding 0.3s ease;
}
.accordion.active .accordion__icon {
  transform: rotate(180deg);
}
.accordion.active .accordion__content {
  max-height: 200px;
  padding: 0.75rem 0 0 0;
}

/*
Your standard form button. Typically you'll want to use either
a `<div>`, `<button>` or `<a>`, element:

​```html
<button type="button" class="usa-button">Button</button>
```

:hover       - Highlights when hovering.
:disabled    - Dims the button when disabled.
--primary    - Indicates button is the primary action.
--secondary  - Indicates button is the secondary action.

Index
- Button

*/
/*-------------------------------------------*\
Button
\*-------------------------------------------*/
button {
  border: none;
  background-color: transparent;
}

.button {
  display: flex;
  column-gap: 10px;
  justify-content: center;
  align-items: center;
  background-color: #13744a;
  border: 0;
  border-radius: 99px;
  min-width: 15.375rem;
  width: max-content;
  padding: 1rem 1.25rem;
  height: 55px;
  font-size: 0.875rem;
  line-height: normal;
  font-weight: 600;
  text-decoration: none;
  color: #ffffff;
  box-sizing: border-box;
  text-align: center;
  cursor: pointer;
}
@media (min-width: 1024px) {
  .button {
    font-size: 0.875rem;
  }
}
.button:disabled, .button[aria-disabled=true] {
  color: #ffffff;
  cursor: not-allowed;
  opacity: 1;
}
.button:hover {
  color: #ffffff;
}
.button--small {
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
  line-height: normal;
  height: 40px;
}
@media (min-width: 1024px) {
  .button--small {
    font-size: 0.875rem;
  }
}

.button--secondary {
  background-color: #f8e4bb;
  color: #13744a;
}
.button--secondary:hover {
  color: #13744a;
}

.button--white {
  background-color: #ffffff;
  color: #13744a;
}
.button--white:hover {
  color: #13744a;
}

.button-dynamic {
  width: 100%;
}
@media (min-width: 1024px) {
  .button-dynamic {
    width: max-content;
  }
}

.card {
  position: relative;
  display: grid;
  row-gap: 1.5rem;
  background-color: #ffffff;
  border-radius: 12px;
  padding: 1.625rem;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 8px 20px 0px;
}
.card__wrapper {
  display: grid;
  row-gap: 2rem;
}
@media (min-width: 1024px) {
  .card__wrapper {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 2rem;
    align-items: flex-start;
    width: 85%;
    margin: auto;
  }
}
.card__header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  row-gap: 12px;
}
@media (min-width: 1024px) {
  .card__header {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    row-gap: 0.75rem;
  }
}
.card-check {
  position: absolute;
  bottom: 0;
  right: 0;
}
.card-w-info {
  background-color: #13744a;
  border-radius: 13px;
}
.card-w-info > div {
  padding: 1.625rem;
}

@media (min-width: 1024px) {
  .cols-md-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .cols-md-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.rg-4px {
  row-gap: 4px;
}

.rg-6px {
  row-gap: 6px;
}

.rg-8px {
  row-gap: 8px;
}

.rg-12px {
  row-gap: 0.75rem;
}

.rg-16px {
  row-gap: 1rem;
}

.rg-18px {
  row-gap: 1.125rem;
}

.rg-20px {
  row-gap: 1.25rem;
}

.rg-22px {
  row-gap: 1.375rem;
}

.rg-24px {
  row-gap: 1.5rem;
}

@media (min-width: 1024px) {
  .rg-md-24px {
    row-gap: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .rg-md-32px {
    row-gap: 2rem;
  }
}

@media (min-width: 1440px) {
  .rg-lg-32px {
    row-gap: 2rem;
  }
}

.rg-32px {
  row-gap: 2rem;
}

.rg-26px {
  row-gap: 1.625rem;
}

.rg-48px {
  row-gap: 3rem;
}

@media (min-width: 1024px) {
  .rg-md-48px {
    row-gap: 3rem;
  }
}

.cg-4px {
  column-gap: 0.25rem;
}

.cg-8px {
  column-gap: 0.5rem;
}

.cg-12px {
  column-gap: 0.75rem;
}

.cg-16px {
  column-gap: 1rem;
}

.cg-20px {
  column-gap: 1.25rem;
}

.cg-24px {
  column-gap: 1.5rem;
}

.cg-32px {
  column-gap: 2rem;
}

@media (min-width: 1024px) {
  .cg-md-32px {
    column-gap: 2rem;
  }
}

@media (min-width: 1024px) {
  .cg-md-48px {
    column-gap: 3rem;
  }
}

.input__layout {
  display: grid;
  row-gap: 6px;
}

.hero__section {
  position: relative;
  z-index: 0;
  background: url("../images/hero-bg.png") no-repeat;
  background-size: cover;
}
.hero__section::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background-color: rgba(19, 116, 74, 0.8);
}
@media (max-width: 768px) {
  .hero__section {
    height: 52.5rem;
  }
}
.hero__wrapper {
  display: grid;
  row-gap: 4.25rem;
  align-items: center;
  padding-block: 2rem;
}
@media (min-width: 1024px) {
  .hero__wrapper {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 3.375rem;
    padding-block: 2rem 4.6875rem;
  }
}
.hero__wrapper form {
  max-width: 26.5rem;
}

.stats__section {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  align-items: baseline;
  text-align: center;
}
@media (min-width: 1024px) {
  .stats__section {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 768px) {
  .stats__section {
    padding-top: 15rem;
  }
}
.stats__section img {
  margin: auto;
  width: 100%;
  max-width: 245px;
}

.debt-recycling__section {
  position: relative;
  display: grid;
  row-gap: 2.625rem;
  grid-template-areas: "content" "description" "card";
}
@media (min-width: 1024px) {
  .debt-recycling__section {
    grid-template-areas: "content description" "card card";
    column-gap: 4rem;
    row-gap: 3.5rem;
    height: 50.9375rem;
  }
}
@media (min-width: 1440px) {
  .debt-recycling__section {
    column-gap: 6.625rem;
  }
}
.debt-recycling__title {
  display: grid;
  row-gap: 1.625rem;
}
.debt-recycling__content {
  display: grid;
  row-gap: 1.5rem;
  grid-area: content;
}
.debt-recycling__description {
  grid-area: description;
}
.debt-recycling__card {
  grid-area: card;
}
@media (min-width: 1024px) {
  .debt-recycling__card .card:first-child {
    margin-top: 3.875rem;
  }
}
@media (min-width: 1024px) {
  .debt-recycling__line {
    position: absolute;
    inset: 0px 0px -0.250221% -0.0985671%;
    top: 0;
    left: 52%;
    width: fit-content;
    height: 425px;
    pointer-events: none;
  }
}
@media (min-width: 1280px) {
  .debt-recycling__line {
    left: 52%;
    height: 375px;
  }
}

@media (min-width: 1024px) {
  .case-study__container {
    background-image: url("../images/icons/line-2.svg");
    background-repeat: no-repeat;
    background-position: center 60%;
  }
}
.case-study__section {
  position: relative;
  display: grid;
  row-gap: 3.75rem;
  box-sizing: border-box;
}
@media (min-width: 1024px) {
  .case-study__section {
    padding-top: 15rem;
    max-height: 65rem;
    row-gap: 5.5rem;
  }
}
.case-study__starting {
  display: grid;
  row-gap: 2rem;
}
@media (min-width: 1024px) {
  .case-study__starting {
    grid-template-columns: 1fr 1fr;
    column-gap: 2rem;
    align-items: start;
  }
}
.case-study__image {
  width: 170px;
  position: absolute;
  top: 13%;
  right: 0;
}
@media (min-width: 1024px) {
  .case-study__image {
    top: 6rem;
    right: 0;
    width: 275px;
  }
}
@media (min-width: 1280px) {
  .case-study__image {
    right: 7.5rem;
    width: 350px;
  }
}
@media (min-width: 1024px) {
  .case-study__cards .card-w-info {
    margin-top: 3.875rem;
  }
}

.calculate__section {
  display: grid;
  row-gap: 2rem;
}
@media (min-width: 1024px) {
  .calculate__section {
    row-gap: 2.625rem;
    padding-block: 30rem 5.625rem;
  }
}
@media (min-width: 1024px) {
  .calculate__cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}
.calculate__item {
  display: grid;
  row-gap: 1rem;
}
.calculate__bottom {
  display: grid;
  row-gap: 2rem;
  grid-template-areas: "total" "detail" "cta";
  padding: 1.625rem;
}
@media (min-width: 1024px) {
  .calculate__bottom {
    grid-template-areas: "detail total" "detail cta" "detail .";
    align-items: start;
  }
}
.calculate__total {
  display: grid;
  grid-area: total;
  row-gap: 6px;
  border-radius: 12px;
  background-color: #f8e4bb;
  padding: 0.75rem 1.25rem;
}
.calculate__detail {
  display: grid;
  grid-area: detail;
  row-gap: 1.5rem;
}
@media (max-width: 768px) {
  .calculate__detail {
    margin-bottom: 1rem;
  }
}
.calculate__cta {
  display: grid;
  grid-area: cta;
  row-gap: 1.5rem;
}

@media (min-width: 1024px) {
  .process__section {
    display: grid;
    row-gap: 3.875rem;
    padding: 5rem 5.625rem 0;
  }
}
@media (min-width: 1440px) {
  .process__section {
    padding: 5rem 7.5rem 0;
  }
}
@media (max-width: 768px) {
  .process__header {
    padding: 4.5rem 5% 2.625rem;
  }
}
.process__wrapper {
  display: flex;
  flex-direction: column;
  row-gap: 2rem;
}
@media (max-width: 768px) {
  .process__wrapper {
    padding: 2.625rem 5% 4.5rem;
  }
}
@media (min-width: 1024px) {
  .process__content {
    display: grid;
    grid-template-columns: 500px 1fr;
    flex-direction: row;
    column-gap: 2.625rem;
    align-items: center;
  }
}
.process__image {
  position: relative;
  height: 18.75rem;
  width: 100%;
}
@media (min-width: 1024px) {
  .process__image {
    width: 500px;
    height: 500px;
  }
}
.process__img {
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  height: 100%;
  width: 100%;
  object-fit: cover;
}
@media (min-width: 1024px) {
  .process__img {
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
  }
}
.process__img.active {
  opacity: 1;
}
@media (min-width: 1024px) {
  .process__img.active {
    width: 500px;
    height: 500px;
  }
}
.process__panel {
  display: none;
}
.process__panel.active {
  display: block;
}

.process-indicator__trigger {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-color: #f8e4bb;
  opacity: 0.5;
  cursor: pointer;
}
.process-indicator__trigger.active {
  opacity: 1;
}

.benefits__section {
  display: grid;
  row-gap: 2.625rem;
}
@media (min-width: 1024px) {
  .benefits__section {
    row-gap: 3.25rem;
    padding-block: 5.875rem 3.75rem;
  }
}
.benefits__wrapper > div {
  padding-block: 1.5rem;
  border-top: 1px solid #d0d0d0;
}
.benefits__wrapper > div:last-child {
  padding-bottom: 0;
}
.benefits__item {
  display: grid;
  row-gap: 1.5rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .benefits__item {
    grid-template-columns: 1fr 1.25fr;
    column-gap: 7.25rem;
  }
}

@media (min-width: 1024px) {
  .form__container {
    background-image: url("../images/icons/line-3.svg");
    background-repeat: no-repeat;
    background-position: center top 28%;
  }
}
.form__section {
  display: grid;
}
@media (max-width: 768px) {
  .form__section {
    row-gap: 2.625rem;
  }
}
.form__section form > div:first-child {
  margin-bottom: 3.5rem;
}
@media (min-width: 1024px) {
  .form__header {
    width: 45%;
    margin: 0 auto 7.5rem;
  }
}
.form__description {
  display: grid;
  row-gap: 1.5rem;
}
@media (min-width: 1024px) {
  .form__description {
    grid-template-columns: 1.25fr 1fr;
    column-gap: 7.5rem;
    margin-bottom: 5.625rem;
  }
}

.free-guide__section {
  display: flex;
  flex-direction: column;
  row-gap: 2.625rem;
  overflow: hidden;
  background: url("../images/icons/book.svg") no-repeat;
  background-size: 300px;
  background-position: right -90px bottom -10px;
}
@media (min-width: 1024px) {
  .free-guide__section {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding-block: 2.75rem;
    background-position: center;
  }
}

.eligibility__section {
  display: grid;
  row-gap: 4.5rem;
}
.eligibility__item {
  display: grid;
  row-gap: 1.5rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .eligibility__item {
    column-gap: 1.5rem;
    grid-template-columns: 1fr 1fr;
  }
  .eligibility__item.rtl {
    grid-template-columns: 1.25fr 1fr;
  }
}
@media (min-width: 1440px) {
  .eligibility__item {
    column-gap: 3.5rem;
  }
  .eligibility__item.rtl {
    grid-template-columns: 1.25fr 1fr;
  }
}
@media (max-width: 768px) {
  .eligibility__image {
    width: 50%;
  }
}
@media (min-width: 1280px) {
  .eligibility__image {
    max-width: 400px;
  }
}
.eligibility__bottom {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media (min-width: 1024px) {
  .eligibility__bottom {
    flex-direction: row;
    align-items: center;
  }
}

.free-download__section {
  display: grid;
  grid-template-areas: "description" "unordered-list" "btn";
  row-gap: 2rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .free-download__section {
    grid-template-areas: "description unordered-list" "btn unordered-list";
    grid-template-columns: 45fr 52fr;
    column-gap: 5rem;
    row-gap: 4rem;
    padding-block: 4.875rem 7rem;
  }
}
.free-download__description {
  grid-area: description;
}
.free-download__list {
  grid-area: unordered-list;
}
.free-download__button {
  grid-area: btn;
}
.free-download__button .button {
  width: 100%;
}
@media (min-width: 1024px) {
  .free-download__button .button {
    width: 90%;
  }
}

.faq__section {
  display: grid;
  row-gap: 3.875rem;
}
@media (min-width: 1024px) {
  .faq__section {
    padding-block: 6.25rem 5.3125rem;
  }
}

.animate-fade {
  opacity: 0;
  transform: translateY(50px);
}

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