@font-face {
  font-family: "Satoshi-Regular";
  src: url("../fonts/Satoshi-Regular.woff2") format("woff2"), url("../fonts/Satoshi-Regular.woff") format("woff"), url("../fonts/Satoshi-Regular.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Satoshi-Medium";
  src: url("../fonts/Satoshi-Medium.woff2") format("woff2"), url("../fonts/Satoshi-Medium.woff") format("woff"), url("../fonts/Satoshi-Medium.ttf") format("truetype");
  font-weight: 500;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-VariableFont_opsz,wght.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-VariableFont_wght.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
/** FONTS **/
/** RESPONSIVE BREAKPOINTS **/
/** TIMING / EASING **/
/** BREAKPOINTS MEDIA **/
/**
 * EXAMPLE:
 * input: @include media('xs') {...}
 * output: @media (min-width: 576px) {...}
 */
/**
 * EXAMPLE:
 * input: @include media-down('xs') {...}
 * output: @media (max-width: 576px) {...}
 */
@keyframes headerSlideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fade-in {
  animation: fadeIn 0.3s ease-in-out;
}

.text-content {
  margin-inline: auto;
  max-width: 48rem;
}

/**
	* Normalize base on:
	* ! modern-normalize v2.0.0 | MIT License | https://github.com/sindresorhus/modern-normalize
	* and:
	* https://mattbrictson.com/blog/css-normalize-and-reset
	*
	*/
/*
Document
========
*/
/**
Use a better box model (opinionated).
*/
:root {
  line-height: 1.5;
  color-scheme: light only;
}

*,
::before,
::after {
  box-sizing: border-box;
  scroll-behavior: smooth;
}

*:focus-visible {
  outline: 3px solid #2e7d32 !important;
}

html {
  /* Improve consistency of default fonts in all browsers. (https://github.com/sindresorhus/modern-normalize/issues/3) */
  font-family: "Montserrat", sans-serif, system-ui, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
  font-weight: normal;
  line-height: 1.15;
  /* 1. Correct the line height in all browsers. */
  -webkit-text-size-adjust: 100%;
  /* 2. Prevent adjustments of font size after orientation changes in iOS. */
  -moz-tab-size: 4;
  /* 3. Use a more readable tab size (opinionated). */
  -o-tab-size: 4;
  tab-size: 4;
  /* 3 */
  -ms-overflow-style: scrollbar;
  -webkit-tap-highlight-color: transparent;
  /* Additional font settings */
  -webkit-font-smoothing: antialiased;
  font-optical-sizing: auto;
}

/*
Sections
========
*/
body {
  margin: 0;
  /* Remove the margin in all browsers. */
  background-color: #fbfbfb;
  color: #2a2d2b;
}

main {
  display: block;
}

/*
Text elements margins
========
*/
h1,
h2,
h3,
h4,
h5,
figure,
p,
ol,
ul,
blockquote {
  margin: 0;
  color: inherit;
}

/*
links
=====
*/
a {
  text-decoration: none;
  color: inherit;
  font-size: inherit;
}

/*
Lists in menu
========
*/
nav ol,
nav ul {
  list-style: none;
  padding-inline: 0;
}

/*
Images
========
*/
img {
  display: block;
  max-inline-size: 100%;
}

/*
Grouping content
================
*/
/**
1. Add the correct height in Firefox.
2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
*/
hr {
  height: 0;
  /* 1 */
  color: inherit;
  /* 2 */
}

/*
Text-level semantics
====================
*/
/**
Add the correct text decoration in Chrome, Edge, and Safari.
*/
abbr[title] {
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
}

/**
Add the correct font weight in Edge and Safari.
*/
b,
strong {
  font-weight: 700;
}

/**
1. Improve consistency of default fonts in all browsers. (https://github.com/sindresorhus/modern-normalize/issues/3)
2. Correct the odd 'em' font sizing in all browsers.
*/
code,
kbd,
samp,
pre {
  font-family: "Montserrat", sans-serif, ui-monospace, SFMono-Regular, Consolas, "Liberation Mono", Menlo, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

/**
Add the correct font size in all browsers.
*/
small {
  font-size: 80%;
}

/**
Prevent 'sub' and 'sup' elements from affecting the line height in all browsers.
*/
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/*
Tabular data
============
*/
/**
1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297)
2. Correct table border color inheritance in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)
*/
table {
  text-indent: 0;
  /* 1 */
  border-color: inherit;
  /* 2 */
}

/*
Forms
=====
*/
/**
1. Change the font styles in all browsers.
2. Remove the margin in Firefox and Safari.
*/
button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  /* 1 */
  font-size: 100%;
  /* 1 */
  line-height: 1.15;
  /* 1 */
  margin: 0;
  /* 2 */
}

/**
Remove the inheritance of text transform in Edge and Firefox.
*/
button,
select {
  text-transform: none;
}

/**
Correct the inability to style clickable types in iOS and Safari.
*/
button,
html [type=button],
[type=button],
[type=reset],
[type=submit],
::-webkit-file-upload-button {
  -webkit-appearance: button;
}

input[type=date],
input[type=time],
input[type=datetime-local],
input[type=month] {
  -webkit-appearance: listbox;
}

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

[hidden] {
  display: none !important;
}

/**
Remove the inner border and padding in Firefox.
*/
::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
Restore the focus styles unset by the previous rule.
*/
:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
Remove the additional ':invalid' styles in Firefox.
See: https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737
*/
:-moz-ui-invalid {
  box-shadow: none;
}

/**
Remove the padding so developers are not caught out when they zero out 'fieldset' elements in all browsers.
*/
legend {
  padding: 0;
}

/**
Add the correct vertical alignment in Chrome and Firefox.
*/
progress {
  vertical-align: baseline;
}

/**
Correct the cursor style of increment and decrement buttons in Safari.
*/
::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

/**
1. Correct the odd appearance in Chrome and Safari.
2. Correct the outline style in Safari.
*/
[type=search],
[type=search]::-webkit-search-cancel-button,
[type=search]::-webkit-search-decoration {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */
}

/**
Remove the inner padding in Chrome and Safari on macOS.
*/
::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
1. Correct the inability to style clickable types in iOS and Safari.
2. Change font properties to 'inherit' in Safari.
*/
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */
}

/*
Interactive
===========
*/
/*
Add the correct display in Chrome and Safari.
*/
summary {
  display: list-item;
}

/*
Other things
===========
*/
address {
  font-style: normal;
}

/* Containers */
.container,
.container-fluid {
  width: 100%;
  max-width: 1472px;
  margin-inline: auto;
}

.container {
  padding-inline: 16px;
}
@media (min-width: 992px) {
  .container {
    padding-inline: 3rem;
  }
}

.content__title {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  color: #0f3d2e;
}
.content__title--light {
  color: #d7dbd9;
}
.content__title--1 {
  font-size: 3.5rem;
  line-height: 1.2;
}
@media (max-width: 992px) {
  .content__title--1 {
    font-size: 2.8rem;
    line-height: 1.25;
  }
}
.content__title--2 {
  font-size: 3rem;
  line-height: 1.2;
}
@media (max-width: 992px) {
  .content__title--2 {
    font-size: 2.25rem;
    line-height: 1.25;
  }
}
.content__title--3 {
  font-size: 2.5rem;
  line-height: 1.2;
}
@media (max-width: 992px) {
  .content__title--3 {
    font-size: 1.9rem;
    line-height: 1.3;
  }
}
.content__title--4 {
  font-size: 2rem;
  line-height: 1.3;
}
@media (max-width: 992px) {
  .content__title--4 {
    font-size: 1.5rem;
    line-height: 1.35;
  }
}
.content__title--5 {
  font-size: 1.5rem;
  line-height: 1.4;
}
@media (max-width: 992px) {
  .content__title--5 {
    font-size: 1.25rem;
  }
}
.content__title--6 {
  font-size: 1.25rem;
  line-height: 1.4;
}
@media (max-width: 992px) {
  .content__title--6 {
    font-size: 1.1rem;
  }
}
.content__text {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  color: #2a2d2b;
  line-height: 1.5;
}
.content__text--light {
  color: #d7dbd9;
}
.content__text--bold {
  font-weight: 700;
}
.content__text--medium-weight {
  font-weight: 500;
}
.content__text--large {
  font-size: 1.25rem;
}
@media (max-width: 992px) {
  .content__text--large {
    font-size: 1.125rem;
  }
}
.content__text--medium {
  font-size: 1.125rem;
}
@media (max-width: 992px) {
  .content__text--medium {
    font-size: 1rem;
  }
}
.content__text--regular {
  font-size: 1rem;
}
@media (max-width: 992px) {
  .content__text--regular {
    font-size: 0.95rem;
  }
}
.content__text--small {
  font-size: 0.875rem;
}
@media (max-width: 992px) {
  .content__text--small {
    font-size: 0.8rem;
  }
}
.content__text--tiny {
  font-size: 0.75rem;
}
@media (max-width: 992px) {
  .content__text--tiny {
    font-size: 0.7rem;
  }
}
.content__text strong,
.content__text b {
  font-weight: 700;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-block: 12px;
  padding-inline: 30px;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  position: relative;
  transition: 0.3s ease;
}
.btn--primary {
  background: #ffffff;
  border: 1px solid #111315;
  color: #111315;
  box-shadow: 6px 6px 0px #111315;
}
.btn--primary:hover {
  transform: translate(3px, 3px);
  box-shadow: 3px 3px 0px #111315;
}
.btn--secondary {
  background: #f5f7f6;
  border: 1px solid #2e7d32;
  color: #2e7d32;
  box-shadow: 6px 6px 0px #2e7d32;
}
.btn--secondary:hover {
  transform: translate(3px, 3px);
  box-shadow: 3px 3px 0px #2e7d32;
}
.btn--tertiary {
  background: transparent;
  border: 1px solid #111315;
  color: #2a2d2b;
  cursor: pointer;
}
.btn--tertiary-accent {
  background: #111315;
  border: 1px solid #2e7d32;
  color: #84ef89;
}
.btn--tertiary:hover {
  background: #2e7d32;
  border-color: #2e7d32;
  color: #ffffff;
}
@media (max-width: 576px) {
  .btn--tertiary {
    font-size: 0.875;
    padding: 0.5rem;
  }
}
.btn--accent {
  background: #111315;
  border: 1px solid #2e7d32;
  color: #84ef89;
  box-shadow: 6px 6px 0px #111315;
}
.btn--accent:hover {
  transform: translate(3px, 3px);
  box-shadow: 3px 3px 0px #111315;
}

.buttons {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
@media (max-width: 992px) {
  .buttons {
    flex-direction: column;
  }
}

.breadcrumb__list {
  padding: 40px 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  list-style: none;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
}
.breadcrumb__item {
  display: flex;
  align-items: center;
  color: #2a2d2b;
}
.breadcrumb__item:not(:last-child)::after {
  margin-left: 4px;
  color: #d7dbd9;
}
.breadcrumb__item--current {
  color: #0f3d2e;
  font-weight: 600;
  cursor: default;
}
.breadcrumb__separator {
  width: 16px;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.breadcrumb__link {
  color: #2a2d2b;
  text-decoration: none;
  transition: color 0.2s ease;
}
.breadcrumb__link:hover {
  color: #2e7d32;
}
.breadcrumb__label {
  color: inherit;
}

.c-wysiwyg {
  color: #2a2d2b;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  line-height: 1.6;
}
.c-wysiwyg > *:first-child {
  margin-top: 0;
}
.c-wysiwyg > *:last-child {
  margin-bottom: 0;
}
.c-wysiwyg p,
.c-wysiwyg ul,
.c-wysiwyg ol,
.c-wysiwyg blockquote {
  margin: 0 0 1.25rem 0;
}
.c-wysiwyg a {
  color: #0f3d2e;
  text-decoration: underline;
  text-underline-offset: 0.2em;
  text-decoration-thickness: 2px;
  transition: opacity 0.2s ease;
}
.c-wysiwyg a:hover {
  opacity: 0.8;
}
.c-wysiwyg h1,
.c-wysiwyg h2,
.c-wysiwyg h3,
.c-wysiwyg h4,
.c-wysiwyg h5,
.c-wysiwyg h6 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  color: #111315;
  margin: 2.25rem 0 1rem 0;
  line-height: 1.2;
}
.c-wysiwyg h1 {
  font-size: 3.5rem;
}
@media (max-width: 992px) {
  .c-wysiwyg h1 {
    font-size: 2.8rem;
  }
}
.c-wysiwyg h2 {
  font-size: 3rem;
}
@media (max-width: 992px) {
  .c-wysiwyg h2 {
    font-size: 2.25rem;
  }
}
.c-wysiwyg h3 {
  font-size: 2.5rem;
}
@media (max-width: 992px) {
  .c-wysiwyg h3 {
    font-size: 1.9rem;
  }
}
.c-wysiwyg h4 {
  font-size: 2rem;
}
@media (max-width: 992px) {
  .c-wysiwyg h4 {
    font-size: 1.5rem;
  }
}
.c-wysiwyg h5 {
  font-size: 1.5rem;
}
@media (max-width: 992px) {
  .c-wysiwyg h5 {
    font-size: 1.25rem;
  }
}
.c-wysiwyg h6 {
  font-size: 1.25rem;
}
@media (max-width: 992px) {
  .c-wysiwyg h6 {
    font-size: 1.1rem;
  }
}
.c-wysiwyg ul,
.c-wysiwyg ol {
  padding-left: 1.25rem;
}
.c-wysiwyg li {
  margin-bottom: 0.5rem;
}
.c-wysiwyg blockquote {
  border-left: 4px solid #0f3d2e;
  padding-left: 1.25rem;
  color: #2a2d2b;
}
.c-wysiwyg img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 0.75rem;
  margin: 2rem 0;
}
.c-wysiwyg hr {
  border: 0;
  border-top: 1px solid rgba(17, 19, 21, 0.15);
  margin: 2.5rem 0;
}

.website__header {
  height: var(--header-height, 8.125rem);
}

.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10000;
  font-family: "Inter", sans-serif;
  transition: all 0.4s ease;
}
.header--sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  animation: headerSlideDown 0.4s ease forwards;
}
.header--sticky .header__main {
  box-shadow: 0 0.75rem 1.875rem rgba(17, 19, 21, 0.08);
}
.header__topbar {
  height: 2.5rem;
  background: #2e7d32;
  display: flex;
  align-items: center;
}
.header__topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 2.5rem;
}
.header__topbar-left, .header__topbar-right {
  display: flex;
  align-items: center;
  gap: 1.125rem;
}
.header__topbar-left a, .header__topbar-right a {
  color: #ffffff;
  font-size: 0.875rem;
  text-decoration: none;
  transition: opacity 0.2s ease;
}
.header__topbar-left a:hover, .header__topbar-right a:hover {
  opacity: 0.7;
}
.header__topbar-left img, .header__topbar-right img {
  height: 1rem;
  width: auto;
}
.header__topbar-social, .header__topbar-phones, .header__topbar-email {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.header__main {
  position: relative;
  width: 100%;
  height: 5.625rem;
  background: #ffffff;
  display: flex;
  align-items: center;
  box-shadow: 0 0.25rem 1.25rem rgba(17, 19, 21, 0.05);
}
.header__inner {
  display: flex;
  align-items: center;
  gap: 3.75rem;
  height: 5.625rem;
}
.header__logo img {
  height: 3.75rem;
  width: auto;
}
.header__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 2.5rem;
  height: 2.5rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.25rem;
  flex-shrink: 0;
  margin-left: auto;
}
.header__burger span {
  display: block;
  width: 100%;
  height: 2px;
  background: #2a2d2b;
  border-radius: 2px;
  transition: all 0.2s ease;
  transform-origin: center;
}
.header__burger.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.header__burger.is-active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.header__burger.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.header__nav .menu {
  display: flex;
  gap: 2.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.header__nav .menu > li {
  position: static;
}
.header__nav .menu > li > a {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 1rem;
  font-weight: 500;
  color: #2a2d2b;
  text-decoration: none;
  transition: color 0.2s ease;
}
.header__nav .menu > li > a:hover {
  color: #2e7d32;
}
.header__nav .menu > li.menu-item-has-children > a::after {
  content: "";
  width: 0.75rem;
  height: 0.75rem;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='%230f3d2e' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E") no-repeat center;
  background-size: contain;
  transition: transform 0.2s ease;
}
.header__nav .menu > li:hover > a::after {
  transform: rotate(180deg);
}
.header__nav .menu > li:hover > .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mega-menu {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  background: #ffffff;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.4s ease, visibility 0.4s ease, transform 0.4s ease;
  z-index: 100;
}
.mega-menu .container {
  padding-block: 2rem;
}
.mega-menu__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.mega-menu .menu-item > a {
  display: inline-block;
  padding: 0.375rem 0;
  font-size: 0.9375rem;
  font-weight: 400;
  color: #2a2d2b;
  text-decoration: none;
  position: relative;
}
.mega-menu .menu-item > a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: #0f3d2e;
  transition: width 0.2s ease;
}
.mega-menu .menu-item > a:hover::after {
  width: 100%;
}
.mega-menu .menu-item.menu-item-has-children > a {
  font-weight: 600;
  color: #0f3d2e;
  margin-bottom: 0.5rem;
  pointer-events: none;
}
.mega-menu .menu-item.menu-item-has-children > a::after {
  display: none;
}
.mega-menu__sub {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
}

@media (max-width: 1200px) {
  .header__main {
    position: relative;
    top: auto;
  }
  .header__topbar {
    height: auto;
    padding: 0.5rem 0;
  }
  .header__topbar-inner {
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    height: auto;
  }
  .header__topbar-left {
    width: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
  }
  .header__topbar-social, .header__topbar-right {
    display: none;
  }
  .header__burger {
    display: flex;
  }
  .header__nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #ffffff;
    overflow-y: auto;
    padding: 2rem 1.5rem;
    opacity: 0;
    transform: translateY(-12px);
    pointer-events: none;
    transition: opacity 0.4s ease, transform 0.4s ease;
    z-index: 999;
  }
  .header__nav.is-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
  .header__nav .menu {
    flex-direction: column;
    gap: 0;
  }
  .header__nav .menu > li > a {
    padding: 0.875rem 0;
    border-bottom: 1px solid #f5f7f6;
  }
  .header__nav .menu > li .mega-menu {
    position: static;
    opacity: 0;
    visibility: hidden;
    max-height: 0;
    overflow: hidden;
    transform: none;
    padding: 0;
    transition: opacity 0.4s ease, max-height 0.4s ease;
  }
  .header__nav .menu > li .mega-menu--open {
    opacity: 1;
    visibility: visible;
    max-height: 60vh;
    overflow-y: auto;
  }
  .header__nav .menu > li .mega-menu .container {
    padding-block: 0.5rem;
    padding-inline: 0;
  }
  .header__nav .menu > li .mega-menu__list {
    flex-direction: column;
    gap: 0;
    padding-left: 1rem;
  }
  .header__nav-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }
  .header__nav-cta .btn {
    width: 100%;
    justify-content: center;
  }
}
@media (min-width: 1200px) {
  .header__nav-cta {
    display: none;
  }
}
.website__footer {
  background-color: #0f3d2e;
  color: #ffffff;
  padding-block: 5rem;
  font-family: "Inter", sans-serif;
}

.footer {
  font-family: "Inter", sans-serif;
}
.footer ul,
.footer li {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 14px;
  color: #d7dbd9;
  font-weight: 400;
}
.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}
.footer__contact-list {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.footer__contact-icon {
  width: 1rem;
  height: 1rem;
  flex: 0 0 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer__contact-icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.footer__cta {
  padding-bottom: 3.75rem;
  border-bottom: 0.0625rem solid #f5f7f6;
}
.footer__cta-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 5rem;
  margin-bottom: 3.125rem;
}
@media (max-width: 992px) {
  .footer__cta-top {
    flex-direction: column;
    gap: 2.5rem;
  }
}
.footer__cta-left {
  max-width: 45rem;
}
.footer__title {
  margin-bottom: 1.5rem;
  color: #ffffff;
}
.footer__text {
  color: #ffffff;
}
.footer__cta-right {
  flex-shrink: 0;
}
@media (max-width: 992px) {
  .footer__cta-right {
    width: 100%;
  }
  .footer__cta-right .btn,
  .footer__cta-right a,
  .footer__cta-right button {
    width: 100%;
  }
}
.footer__cta-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2.5rem;
}
@media (max-width: 992px) {
  .footer__cta-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.875rem;
  }
}
.footer__logo img {
  max-height: 3.75rem;
  width: auto;
}
.footer__gallery {
  display: flex;
  align-items: center;
}
.footer__gallery-item {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  overflow: hidden;
  border: 0.125rem solid #0f3d2e;
  margin-left: -0.75rem;
}
.footer__gallery-item:first-child {
  margin-left: 0;
}
.footer__gallery-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
@media (max-width: 768px) {
  .footer__gallery-item {
    width: 2.5rem;
    height: 2.5rem;
  }
}
.footer__bottom {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 5rem;
  padding: 3.75rem 0;
}
@media (max-width: 992px) {
  .footer__bottom {
    grid-template-columns: 1fr;
    gap: 3.125rem;
  }
}
.footer__nav-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr) 1.5fr;
  gap: 3.75rem;
}
@media (max-width: 1200px) {
  .footer__nav-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
  }
}
@media (max-width: 992px) {
  .footer__nav-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .footer__nav-list {
    grid-template-columns: 1fr;
  }
}
.footer__nav-list > li > a {
  display: block;
  font-weight: 600;
  margin-bottom: 1.125rem;
  color: #ffffff;
  text-decoration: none;
  font-size: 1rem;
  font-family: "Inter", sans-serif;
}
.footer__nav-list > li > a:hover {
  opacity: 0.7;
}
.footer__nav-list .sub-menu {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.footer__nav-list .sub-menu li a {
  color: #d7dbd9;
  font-size: 0.875rem;
  text-decoration: none;
  font-family: "Inter", sans-serif;
}
.footer__nav-list .sub-menu li a:hover {
  opacity: 0.7;
}
.footer__meta {
  display: flex;
  justify-content: space-between;
  border-top: 0.0625rem solid #f5f7f6;
  padding: 1.5625rem 0 2.5rem;
}
@media (max-width: 992px) {
  .footer__meta {
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
  }
}
.footer__copyright {
  font-size: 0.8125rem;
  color: #d7dbd9;
  font-family: "Inter", sans-serif;
}
.footer__socials {
  display: flex;
  align-items: center;
  gap: 1.125rem;
}
.footer__socials img {
  width: 1.25rem;
  height: 1.25rem;
  -o-object-fit: contain;
  object-fit: contain;
  transition: opacity 0.2s ease;
}
.footer__socials img:hover {
  opacity: 0.7;
}
.footer__credits {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.footer__credits .emoji {
  transition: transform 0.25s ease;
}
.footer__credits:hover .emoji {
  transform: scale(1.15);
}

.how-to-help {
  background-color: #111315;
  padding-block: 60px;
}
@media (min-width: 992px) {
  .how-to-help {
    padding-block: 100px;
  }
}
.how-to-help__heading {
  text-align: center;
  margin-bottom: 40px;
}
@media (min-width: 992px) {
  .how-to-help__heading {
    margin-bottom: 60px;
  }
}
.how-to-help__items {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media (min-width: 992px) {
  .how-to-help__items {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }
}
.how-to-help__item {
  text-align: center;
}
.how-to-help__icon {
  margin-bottom: 20px;
}
.how-to-help__icon img {
  width: 60px;
  height: 60px;
  -o-object-fit: contain;
  object-fit: contain;
}
.how-to-help__title {
  margin-bottom: 12px;
}
.how-to-help__description {
  margin-bottom: 16px;
}
.how-to-help__link {
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}
.donor-logos {
  background: #ffffff;
  padding-block: 7rem;
}
@media (max-width: 992px) {
  .donor-logos {
    padding-block: 2rem;
  }
}
.donor-logos__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
@media (max-width: 992px) {
  .donor-logos__container {
    grid-template-columns: 1fr;
  }
}
.donor-logos__left {
  max-width: 37.5rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.donor-logos__right {
  display: flex;
  justify-content: center;
}
.donor-logos__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  row-gap: 2.5rem;
  -moz-column-gap: 3.75rem;
  column-gap: 3.75rem;
  align-items: center;
}
.donor-logos__item {
  display: flex;
  justify-content: center;
  align-items: center;
}
.donor-logos__item img {
  max-width: 100%;
  height: auto;
  -o-object-fit: contain;
  object-fit: contain;
  transition: opacity 0.3s ease;
}
.donor-logos__item:hover img {
  opacity: 0.7;
}

.text-media {
  padding-block: 7rem;
  background: #ffffff;
}
@media (max-width: 992px) {
  .text-media {
    padding-block: 3rem;
  }
}
.text-media li {
  margin-top: 1rem;
}
.text-media ul {
  margin-top: 2rem;
}
.text-media__wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
@media (max-width: 992px) {
  .text-media__wrapper {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}
.text-media__wrapper.is-reversed .text-media__media {
  order: 2;
}
.text-media__wrapper.is-reversed .text-media__content {
  order: 1;
}
.text-media__media img {
  width: 100%;
  height: auto;
  display: block;
  -o-object-fit: cover;
  object-fit: cover;
}
.text-media__content {
  max-width: 37.5rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.h-vertical-carousel {
  overflow: hidden;
  background: #f5f7f6;
}
@media (max-width: 992px) {
  .h-vertical-carousel {
    padding-block: 3rem;
  }
}
.h-vertical-carousel__wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
@media (max-width: 1200px) {
  .h-vertical-carousel__wrapper {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}
.h-vertical-carousel__content {
  max-width: 37.5rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.h-vertical-carousel__media {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  height: 50rem;
}
@media (max-width: 1200px) {
  .h-vertical-carousel__media {
    display: none;
  }
}
.h-vertical-carousel__mobile {
  display: none;
  margin-top: 3rem;
  overflow: hidden;
  height: 20rem;
}
@media (max-width: 1200px) {
  .h-vertical-carousel__mobile {
    display: block;
  }
}
.h-vertical-carousel__mobile .swiper {
  height: 100%;
}
.h-vertical-carousel__mobile .swiper-slide {
  height: 30rem;
  display: flex;
}
.h-vertical-carousel__mobile img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
}
.h-vertical-carousel__col {
  overflow: hidden;
}
.h-vertical-carousel__col .swiper {
  height: 100%;
}
.h-vertical-carousel__col .swiper-slide {
  height: 25rem;
  display: flex;
}
.h-vertical-carousel__col img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
}
@media (max-width: 992px) {
  .h-vertical-carousel__title {
    font-size: 2.3rem;
  }
}

.heroSwiperUp .swiper-wrapper,
.heroSwiperDown .swiper-wrapper,
.heroSwiperMobile .swiper-wrapper {
  transition-timing-function: linear;
}

.contact-block {
  background: #ffffff;
  padding-block: 4rem;
}
.contact-block__text p {
  margin-bottom: 1rem;
}
.contact-block__text a {
  text-decoration: underline;
  color: #0f3d2e;
}
.contact-block__text a:hover {
  color: #2e7d32;
}
.contact-block__wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
}
@media (max-width: 1200px) {
  .contact-block__wrapper {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}
@media (max-width: 768px) {
  .contact-block__wrapper {
    grid-template-columns: 1fr;
  }
}
.contact-block__item {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (max-width: 768px) {
  .contact-block__item {
    align-items: center;
    text-align: center;
  }
}
.contact-block__icon {
  width: 2.5rem;
  height: 2.5rem;
}
.contact-block__icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  display: block;
}
.contact-block__content {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.contact-form {
  padding-block: 7rem;
  background: #ffffff;
}
.contact-form a {
  text-decoration: underline;
}
@media (max-width: 992px) {
  .contact-form {
    padding-block: 3rem;
  }
}
.contact-form__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.75rem;
}
@media (max-width: 992px) {
  .contact-form__container {
    grid-template-columns: 1fr;
  }
}
.contact-form__text-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.contact-form__map {
  width: 100%;
  height: 100%;
  min-height: 31.25rem;
}
.contact-form__title {
  color: #111315;
}
.contact-form__col--left {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.contact-form__form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.contact-form__field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.contact-form__field--checkbox {
  flex-direction: row;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.9rem;
}
.contact-form__input, .contact-form__textarea {
  width: 100%;
  padding-block: 0.875rem;
  padding-inline: 1rem;
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  border-width: 0.0625rem;
  border-style: solid;
  border-color: #111315;
  background: #ffffff;
  transition: 0.2s ease;
  outline: none;
}
.contact-form__textarea {
  min-height: 11.25rem;
  resize: vertical;
}
.contact-form__actions {
  margin-block-start: 0.625rem;
}
.contact-form__checkbox {
  inline-size: 1.125rem;
  block-size: 1.125rem;
  border-width: 0.0625rem;
  border-style: solid;
  border-color: #111315;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  position: relative;
}
.contact-form__checkbox:checked {
  background: #111315;
}
.contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
@media (max-width: 992px) {
  .contact-form__row {
    grid-template-columns: 1fr;
  }
}

.info-bar {
  background: #0f3d2e;
}
.info-bar__text {
  color: #ffffff;
  padding-block: 26.5px;
  text-align: center;
}

.icon-features {
  background: #ffffff;
  padding-block: 7rem;
}
@media (max-width: 992px) {
  .icon-features {
    padding-block: 3rem;
  }
}
.icon-features__container {
  display: flex;
  flex-direction: column;
  gap: 5rem;
}
.icon-features__content {
  display: flex;
  flex-direction: column;
  text-align: center;
  gap: 2rem;
  align-items: center;
}
.icon-features__blocks {
  width: 100%;
}
.icon-features__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 3rem;
}
@media (max-width: 1200px) {
  .icon-features__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2.5rem;
  }
}
@media (max-width: 992px) {
  .icon-features__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
.icon-features__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
}
.icon-features__icon {
  display: flex;
  justify-content: center;
  align-items: center;
}
.icon-features__icon img {
  max-width: 4rem;
  height: auto;
  -o-object-fit: contain;
  object-fit: contain;
}
.icon-features__description {
  color: #2a2d2b;
}

.team-grid {
  background: #ffffff;
  padding-block: 7rem;
}
@media (max-width: 992px) {
  .team-grid {
    padding-block: 3rem;
  }
}
.team-grid__text-content {
  max-width: 768px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.team-grid__items {
  margin-top: 5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  -moz-column-gap: 6rem;
  column-gap: 6rem;
  row-gap: 4rem;
}
@media (max-width: 1200px) {
  .team-grid__items {
    grid-template-columns: repeat(2, 1fr);
    -moz-column-gap: 4rem;
    column-gap: 4rem;
  }
}
@media (max-width: 992px) {
  .team-grid__items {
    grid-template-columns: 1fr;
    row-gap: 3rem;
  }
}
.team-grid__item {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.team-grid__avatar img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
}
.team-grid__description {
  max-width: 768px;
}

.h-images-stack {
  padding-block: 6rem;
  overflow: hidden;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .h-images-stack {
    padding-block: 3rem;
  }
}
.h-images-stack__content {
  text-align: center;
  max-width: 760px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.h-images-stack__stack {
  position: relative;
  width: 100%;
  aspect-ratio: 16/11;
}
.h-images-stack__image {
  position: absolute;
  overflow: hidden;
}
.h-images-stack__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
}
.h-images-stack__image--mid {
  width: 46%;
  aspect-ratio: 572/604;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}
.h-images-stack__image--left {
  width: 38%;
  aspect-ratio: 1/1;
  left: 0;
  top: 72%;
  transform: translateY(-50%);
  z-index: 3;
}
.h-images-stack__image--right {
  width: 36%;
  aspect-ratio: 4/3;
  right: 0;
  top: 38%;
  transform: translateY(-50%);
  z-index: 4;
}
.h-images-stack .buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.how-we-works {
  background: #ffffff;
  padding-block: 7rem;
}
@media (max-width: 992px) {
  .how-we-works {
    padding-block: 3rem;
  }
}
.how-we-works__container {
  display: flex;
  flex-direction: column;
  gap: 5rem;
}
.how-we-works__header {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 48rem;
}
.how-we-works__number {
  color: #111315;
  transition: color 0.3s ease;
}
.how-we-works__item.is-active .how-we-works__number {
  color: #0f3d2e;
}
.how-we-works__item-heading {
  margin-bottom: 1.5rem;
}
.how-we-works__text-card {
  max-width: 34rem;
}
.how-we-works__wrapper {
  display: flex;
  align-items: stretch;
  height: 45rem;
  border-top: 1px solid #111315;
  border-left: 1px solid #111315;
  overflow: hidden;
}
@media (max-width: 992px) {
  .how-we-works__wrapper {
    flex-direction: column;
    height: auto;
    border: 1px solid #111315;
    border-radius: 0.75rem;
  }
}
.how-we-works__item {
  flex: 0 0 5.125rem;
  position: relative;
  overflow: hidden;
  transition: flex 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  display: flex;
  flex-direction: row;
  border-right: 1px solid #111315;
  border-bottom: 1px solid #111315;
}
.how-we-works__item.is-active {
  flex: 1 1 auto;
}
.how-we-works__item:not(.is-active) .how-we-works__item-header {
  border-right: none;
}
@media (max-width: 992px) {
  .how-we-works__item {
    flex: unset;
    width: 100%;
    flex-direction: column;
    border: none;
    border-bottom: 1px solid #111315;
    transition: none;
  }
  .how-we-works__item:last-child {
    border-bottom: none;
  }
  .how-we-works__item.is-active {
    flex: unset;
  }
}
.how-we-works__item-header {
  height: 100%;
  flex: 0 0 5.125rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-block: 2rem;
  align-items: center;
  box-sizing: border-box;
}
@media (max-width: 992px) {
  .how-we-works__item-header {
    flex: unset;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    height: auto;
    width: 100%;
    padding: 1.25rem 1.5rem;
    border-right: none;
    border-bottom: none;
    gap: 1rem;
  }
  .how-we-works__item-header::after {
    content: "";
    display: block;
    flex-shrink: 0;
    width: 1.25rem;
    height: 1.25rem;
    background-image: url("data:image/svg+xml,%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%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    transition: transform 0.3s ease;
  }
}
@media (max-width: 992px) {
  .how-we-works__item.is-active .how-we-works__item-header::after {
    transform: rotate(180deg);
  }
}
.how-we-works__item-title {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  white-space: nowrap;
  color: #111315;
  transition: color 0.3s ease;
}
@media (max-width: 992px) {
  .how-we-works__item-title {
    writing-mode: horizontal-tb;
    transform: none;
    white-space: normal;
  }
}
.how-we-works__item.is-active .how-we-works__item-title {
  color: #0f3d2e;
}
.how-we-works__item-content {
  width: 100%;
  height: 100%;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease 0s, visibility 0s ease 0.3s;
}
@media (max-width: 992px) {
  .how-we-works__item-content {
    opacity: 1;
    visibility: visible;
    display: none;
    transition: none;
  }
}
.how-we-works__item.is-active .how-we-works__item-content {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.3s ease 0.25s, visibility 0s ease 0s;
}
@media (max-width: 992px) {
  .how-we-works__item.is-active .how-we-works__item-content {
    display: block;
  }
}
.how-we-works__item-container {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  max-width: 48rem;
  padding-block: 4rem;
  padding-inline: 3rem;
  height: 100%;
  box-sizing: border-box;
}
@media (max-width: 992px) {
  .how-we-works__item-container {
    padding: 1.5rem;
    gap: 1.5rem;
    height: auto;
  }
}
.how-we-works__image-wrapper {
  flex: 1 1 0;
  min-height: 0;
  max-height: 25rem;
  max-width: 34rem;
}
.how-we-works__image-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
}
@media (max-width: 992px) {
  .how-we-works__image-wrapper {
    flex: unset;
    min-height: unset;
    width: 100%;
    max-width: 100%;
    height: 230px;
    max-height: unset;
  }
}

.faq-s {
  background: #ffffff;
  padding-block: 7rem;
}
@media (max-width: 992px) {
  .faq-s {
    padding-block: 3rem;
  }
}
.faq-s__header {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  text-align: center;
}
.faq-s .text-content {
  display: flex;
  flex-direction: column;
  gap: 5rem;
}
@media (max-width: 992px) {
  .faq-s .text-content {
    gap: 3rem;
  }
}
.faq-s__wrapper {
  border-top: 1px solid #111315;
}
.faq-s__item {
  border-bottom: 1px solid #111315;
}
.faq-s__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding-block: 1.5rem;
  cursor: pointer;
  transition: color 0.25s ease;
}
.faq-s__question:hover {
  color: #0f3d2e;
}
.faq-s__question-title {
  margin: 0;
  color: #0f3d2e;
}
.faq-s__icon {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  transition: transform 0.3s ease;
  background-image: url("data:image/svg+xml,%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%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.faq-s__item.is-active .faq-s__icon {
  transform: rotate(180deg);
}
.faq-s__answer {
  overflow: hidden;
  height: 0;
  opacity: 0;
  transition: height 0.4s ease, opacity 0.3s ease;
}
.faq-s__answer-content {
  padding-bottom: 1.5rem;
}
.faq-s__item.is-active .faq-s__answer {
  opacity: 1;
}
.faq-s__buttons {
  display: flex;
  justify-content: center;
}

.h-img-bg {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #111315;
}
.h-img-bg__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.h-img-bg__swiper {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.h-img-bg .swiper-wrapper,
.h-img-bg .swiper-slide {
  height: 100%;
}
.h-img-bg .swiper-slide {
  display: flex;
}
.h-img-bg__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
}
.h-img-bg__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.62) 0%, rgba(0, 0, 0, 0.35) 45%, rgba(0, 0, 0, 0.15) 100%);
  z-index: 1;
}
.h-img-bg .container {
  position: relative;
  z-index: 2;
  width: 100%;
}
.h-img-bg__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  min-height: 100vh;
  gap: 3rem;
}
@media (max-width: 992px) {
  .h-img-bg__grid {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-block: 5rem;
  }
}
.h-img-bg__content {
  max-width: 42rem;
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}
@media (max-width: 992px) {
  .h-img-bg__content {
    max-width: 100%;
  }
}
.h-img-bg__title {
  margin: 0;
}
.h-img-bg__text {
  margin: 0;
  max-width: 34rem;
}
.h-img-bg__buttons {
  margin-top: 0.5rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
@media (max-width: 992px) {
  .h-img-bg__view {
    display: none;
  }
}

.cta-s {
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}
@media (max-width: 992px) {
  .cta-s {
    min-height: auto;
    padding-block: 3rem;
  }
}
.cta-s .container {
  position: relative;
  z-index: 1;
  width: 100%;
}
.cta-s__content {
  padding: 7rem 0;
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}
@media (max-width: 992px) {
  .cta-s__content {
    max-width: 100%;
  }
}
.cta-s__title {
  margin: 0;
  color: #0f3d2e;
}
.cta-s__text {
  margin: 0;
  max-width: 34rem;
  color: #111315;
}
.cta-s__btn {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
}
.cta-s__btn-icon {
  width: 1.25rem;
  height: 1.25rem;
  -o-object-fit: contain;
  object-fit: contain;
  flex-shrink: 0;
}

.h-title {
  background: #ffffff;
  padding-block: 6rem;
}
@media (max-width: 992px) {
  .h-title {
    padding-block: 3.5rem;
  }
}
.h-title__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.75rem;
}
.h-title__line {
  width: 12rem;
  height: 6px;
  background: #0f3d2e;
  border-radius: 999px;
}
@media (max-width: 992px) {
  .h-title__line {
    width: 9rem;
    height: 3px;
  }
}

.h-title-img {
  padding-block: 3rem 0;
}
.h-title-img__title {
  text-align: center;
  margin-bottom: 5rem;
}
.h-title-img__photo {
  width: 100%;
  max-height: 600px;
  overflow: hidden;
}
.h-title-img__img {
  width: 100%;
  height: 100%;
  max-height: 600px;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
}

.text-s {
  background: #ffffff;
  padding-block: 6rem;
  color: #2a2d2b;
}
.text-s h1, .text-s h2, .text-s h3, .text-s h4, .text-s h5, .text-s h6 {
  color: #0f3d2e;
}
@media (max-width: 992px) {
  .text-s {
    padding-block: 2rem;
  }
}

.banner-bg {
  position: relative;
  overflow: hidden;
  min-height: 20rem;
  padding-block: 6rem;
  background: #111315;
  display: flex;
  align-items: center;
}
@media (max-width: 992px) {
  .banner-bg {
    padding-block: 4rem;
  }
}
.banner-bg__bg {
  position: absolute;
  inset: 0;
  background-image: var(--banner-bg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.02);
  z-index: 0;
}
.banner-bg__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1;
}
.banner-bg .container {
  position: relative;
  z-index: 2;
  width: 100%;
}
.banner-bg__inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
@media (max-width: 992px) {
  .banner-bg__inner {
    gap: 1rem;
  }
}
.banner-bg__buttons {
  margin-top: 1.25rem;
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.needs-s {
  background: #f5f7f6;
  padding-block: 7rem;
}
@media (max-width: 992px) {
  .needs-s {
    padding-block: 3rem;
  }
}
.needs-s__container {
  display: flex;
  flex-direction: column;
  gap: 5rem;
}
@media (max-width: 992px) {
  .needs-s__container {
    gap: 2.5rem;
  }
}
.needs-s__header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
}
@media (max-width: 992px) {
  .needs-s__header {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}
.needs-s__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(17.75rem, 1fr));
  gap: 3rem;
}
@media (max-width: 992px) {
  .needs-s__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
.needs-s__item {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media (max-width: 992px) {
  .needs-s__item {
    gap: 1rem;
  }
}

.support-form {
  background: #ffffff;
  padding-block: 7rem;
}
@media (max-width: 992px) {
  .support-form {
    padding-block: 3rem;
  }
}
.support-form__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
@media (max-width: 992px) {
  .support-form__container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}
.support-form__right-content {
  width: 100%;
}
.support-form__box {
  display: flex;
  flex-direction: column;
  padding: 2rem;
  gap: 2rem;
  align-items: stretch;
  border: 1px solid #d7dbd9;
  width: 100%;
}
.support-form__form {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  width: 100%;
}
.support-form__field {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.support-form input {
  width: 100%;
  height: 40px;
  border: 1px solid #d7dbd9;
}
.support-form__button {
  width: 100%;
}
.support-form__divider {
  height: 1px;
  width: 100%;
  background: #d7dbd9;
}

.h-video {
  background: #ffffff;
  padding-block: 7rem;
}
@media (max-width: 992px) {
  .h-video {
    padding-block: 3rem;
  }
}
.h-video__container {
  display: flex;
  flex-direction: column;
  gap: 5rem;
}
@media (max-width: 992px) {
  .h-video__container {
    gap: 2.5rem;
  }
}
.h-video__header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
@media (max-width: 992px) {
  .h-video__header {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
.h-video__header-sub {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (max-width: 992px) {
  .h-video__header-sub {
    gap: 0.75rem;
  }
}
.h-video__video {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}
.h-video__video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.two-col-s {
  padding-block: 7rem;
  color: #111315;
}
.two-col-s__text p {
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .two-col-s {
    padding-block: 3rem;
  }
}
.two-col-s__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
@media (max-width: 992px) {
  .two-col-s__container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
.two-col-s__wrapper {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.two-col-s--contrast {
  background: #111315;
  color: #ffffff;
}
.two-col-s--contrast .content__title {
  color: #84ef89;
}
.two-col-s--contrast .content__text {
  color: #ffffff;
}
.two-col-s--contrast .btn--primary {
  background: #111315;
  border-color: #84ef89;
  color: #84ef89;
  box-shadow: 6px 6px 0px #84ef89;
}
.two-col-s--contrast .btn--primary:hover {
  box-shadow: 3px 3px 0px #84ef89;
}
.two-col-s--contrast .btn--secondary {
  background: transparent;
  border-color: #ffffff;
  color: #ffffff;
  box-shadow: 6px 6px 0px #ffffff;
}
.two-col-s--contrast .btn--secondary:hover {
  box-shadow: 3px 3px 0px #ffffff;
}

.four-forms {
  background: #f5f7f6;
  padding-block: 7rem;
}
@media (max-width: 992px) {
  .four-forms {
    padding-block: 3rem;
  }
}
.four-forms__container {
  display: flex;
  flex-direction: column;
  gap: 5rem;
}
.four-forms__text-container {
  display: flex;
  flex-direction: column;
  text-align: center;
  gap: 2rem;
}
.four-forms__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
@media (max-width: 1200px) {
  .four-forms__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .four-forms__grid {
    grid-template-columns: 1fr;
  }
}
.four-forms__card {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 1.5rem;
  border: 1px solid #d7dbd9;
}
.four-forms__amount {
  font-size: 2rem;
  font-weight: 700;
  color: #0f3d2e;
  margin: 0;
}
.four-forms__divider {
  border: none;
  border-top: 1px solid #d7dbd9;
  margin: 0;
}
.four-forms__label {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #2a2d2b;
}
.four-forms__input {
  width: 100%;
  height: 2.5rem;
  border: 1px solid #d7dbd9;
  font-size: 1rem;
  color: #2a2d2b;
  outline: none;
  transition: border-color 0.2s ease;
}
.four-forms__input:focus {
  border-color: #2e7d32;
}
.four-forms__btn {
  margin-top: auto;
  text-align: center;
}

.animals-carousel {
  padding-block: 5rem;
}
@media (max-width: 992px) {
  .animals-carousel {
    padding-block: 3rem;
  }
}
.animals-carousel__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 5rem;
}
@media (max-width: 768px) {
  .animals-carousel__header {
    flex-direction: column;
  }
}
.animals-carousel__header-left {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 38rem;
}
.animals-carousel__title {
  margin: 0;
}
.animals-carousel__text {
  margin: 0;
}
.animals-carousel__btn {
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .animals-carousel__btn {
    align-self: stretch;
    justify-content: center;
  }
}
.animals-carousel__swiper-wrap {
  overflow: hidden;
}
.animals-carousel__swiper {
  overflow: visible;
  margin-bottom: 5rem;
}
.animals-carousel__card {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  text-decoration: none;
  color: inherit;
}
.animals-carousel__card:hover .animals-carousel__photo img {
  transform: scale(1.05);
}
.animals-carousel__photo {
  aspect-ratio: 1/1;
  overflow: hidden;
  background: #f5f7f6;
}
.animals-carousel__photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.animals-carousel__photo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.animals-carousel__photo-placeholder svg {
  width: 3rem;
  height: 3rem;
  color: #d7dbd9;
}
.animals-carousel__info {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.animals-carousel__name {
  font-weight: 700;
  color: #0f3d2e;
}
.animals-carousel__subtitle {
  color: #2a2d2b;
}
.animals-carousel__controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 2rem;
}
.animals-carousel__pagination {
  position: static !important;
  display: flex;
  gap: 0.5rem;
  width: auto !important;
  bottom: auto !important;
  left: auto !important;
}
.animals-carousel__pagination .swiper-pagination-bullet {
  width: 0.5rem;
  height: 0.5rem;
  background: #d7dbd9;
  border-radius: 50%;
  opacity: 1;
  margin: 0 !important;
  cursor: pointer;
  transition: background 0.2s ease;
}
.animals-carousel__pagination .swiper-pagination-bullet-active {
  background: #0f3d2e;
}
.animals-carousel__nav {
  display: flex;
  gap: 0.5rem;
}
.animals-carousel__nav-btn {
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border: 1px solid #111315;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}
.animals-carousel__nav-btn svg {
  width: 1.25rem;
  height: 1.25rem;
}
.animals-carousel__nav-btn:hover {
  background: #0f3d2e;
  border-color: #0f3d2e;
  color: #ffffff;
}
.animals-carousel__nav-btn.swiper-button-disabled {
  opacity: 0.35;
  pointer-events: none;
}

.features-s {
  padding-block: 7rem;
  background: #111315;
}
@media (max-width: 992px) {
  .features-s {
    padding-block: 3rem;
  }
}
.features-s__title {
  color: #ffffff;
  text-align: center;
  margin-bottom: 4rem;
}
@media (max-width: 992px) {
  .features-s__title {
    margin-bottom: 2.5rem;
  }
}
.features-s__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}
@media (max-width: 992px) {
  .features-s__grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}
@media (max-width: 1200px) {
  .features-s__grid {
    gap: 2rem;
  }
}
.features-s__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
}
.features-s__icon {
  width: 3.5rem;
  height: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
}
.features-s__icon-img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.features-s__item-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
}
.features-s__desc {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.65;
  margin: 0;
}
.features-s__link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 1rem;
  font-weight: 600;
  color: #84ef89;
  text-decoration: none;
  margin-top: auto;
  transition: opacity 0.2s ease;
}
.features-s__link svg {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}
.features-s__link:hover {
  opacity: 0.8;
}
.features-s__link:hover svg {
  transform: translateX(3px);
}

.gallery-carousel {
  padding-block: 5rem;
}
@media (max-width: 992px) {
  .gallery-carousel {
    padding-block: 3rem;
  }
}
.gallery-carousel__swiper-wrap {
  position: relative;
}
@media (max-width: 768px) {
  .gallery-carousel__swiper-wrap {
    padding-inline: 0;
  }
}
.gallery-carousel__swiper {
  overflow: hidden;
}
.gallery-carousel__slide {
  height: auto;
}
.gallery-carousel__slide a {
  display: block;
  overflow: hidden;
}
.gallery-carousel__slide a:hover img {
  transform: scale(1.03);
}
.gallery-carousel__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
  aspect-ratio: 1/1;
  transition: transform 0.4s ease;
}
.gallery-carousel__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 2.75rem;
  height: 2.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border: 1px solid #d7dbd9;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}
.gallery-carousel__nav svg {
  width: 1.25rem;
  height: 1.25rem;
}
.gallery-carousel__nav:hover {
  background: #0f3d2e;
  border-color: #0f3d2e;
  color: #ffffff;
}
.gallery-carousel__nav.swiper-button-disabled {
  opacity: 0.35;
  pointer-events: none;
}
.gallery-carousel__nav--prev {
  left: -1rem;
}
.gallery-carousel__nav--next {
  right: -1rem;
}
@media (max-width: 768px) {
  .gallery-carousel__nav {
    display: none;
  }
}
.gallery-carousel__pagination {
  position: static !important;
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  width: 100% !important;
  margin-top: 1.5rem;
}
.gallery-carousel__pagination .swiper-pagination-bullet {
  width: 0.5rem;
  height: 0.5rem;
  background: #d7dbd9;
  border-radius: 50%;
  opacity: 1;
  margin: 0 !important;
  cursor: pointer;
  transition: background 0.2s ease;
}
.gallery-carousel__pagination .swiper-pagination-bullet-active {
  background: #0f3d2e;
}

.animals-s {
  padding-block: 5rem;
}
@media (max-width: 992px) {
  .animals-s {
    padding-block: 3.5rem;
  }
}
.animals-s__header {
  max-width: 720px;
  margin-bottom: 3rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.animals-s__filterbar {
  margin-bottom: 2.5rem;
}
.animals-s__filterbar-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap-reverse;
  position: relative;
}
.animals-s__toggle-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  cursor: pointer;
}
.animals-s__toggle-btn svg {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
}
.animals-s__type-tabs {
  display: flex;
  gap: 0.375rem;
  flex-wrap: wrap;
}
@media (max-width: 576px) {
  .animals-s__type-tabs .btn {
    padding: 8px;
  }
}
.animals-s__type-tab:hover {
  background-color: #f5f7f6;
}
.animals-s__sort {
  position: relative;
}
.animals-s__sort-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.5rem 1rem;
  color: #0f3d2e;
  cursor: pointer;
  white-space: nowrap;
}
.animals-s__sort-btn svg {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}
.animals-s__sort-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 0.5rem);
  right: 0;
  min-width: 10rem;
  background: #ffffff;
  z-index: 100;
}
.animals-s__sort-dropdown.is-open {
  display: block;
}
.animals-s__sort-option {
  display: block;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  color: #2a2d2b;
  text-decoration: none;
}
.animals-s__sort-option:hover {
  background: #f5f7f6;
}
.animals-s__sort-option.is-active {
  color: #2e7d32;
  font-weight: 600;
}
.animals-s__filters {
  display: none;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 1rem;
  padding-top: 2rem;
}
.animals-s__filters.is-open {
  display: flex;
}
.animals-s__filter-field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1 1 160px;
}
.animals-s__filter-field label {
  color: #2a2d2b;
}
.animals-s__filter-field input,
.animals-s__filter-field select {
  background: transparent;
  border: 1px solid #111315;
  color: #2a2d2b;
  padding: 12px;
  outline: none !important;
  height: 44px;
}
@media (max-width: 576px) {
  .animals-s__filter-field input,
  .animals-s__filter-field select {
    padding: 8px;
    font-size: 14px;
  }
}
.animals-s__filter-field select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("../img/caret_down.svg");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 10px;
  padding-right: 32px;
}
.animals-s__filter-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.375rem;
}
.animals-s__filter-clear {
  color: #ff383c;
  text-decoration: none;
  cursor: pointer;
}
.animals-s__filter-actions {
  display: flex;
  align-items: flex-end;
  gap: 0.75rem;
  flex-shrink: 0;
}
.animals-s__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
@media (max-width: 1400px) {
  .animals-s__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 992px) {
  .animals-s__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}
.animals-s__card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  cursor: pointer;
}
.animals-s__card-link {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.animals-s__btn {
  position: relative;
  z-index: 2;
}
.animals-s__card:hover .animals-s__btn {
  background: #2e7d32;
  border-color: #2e7d32;
  color: #ffffff;
}
.animals-s__photo {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #f5f7f6;
}
.animals-s__photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.animals-s__card:hover .animals-s__photo img {
  transform: scale(1.04);
}
.animals-s__photo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f5f7f6;
}
.animals-s__photo-placeholder svg {
  width: 3rem;
  height: 3rem;
  color: #d7dbd9;
}
.animals-s__info {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.animals-s__card-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: baseline;
}
.animals-s__name {
  font-size: 1.125rem;
  font-weight: 600;
  color: #0f3d2e;
  margin: 0;
}
.animals-s__date {
  font-size: 1.25rem;
  color: #2a2d2b;
  white-space: nowrap;
  font-weight: 300;
  flex-shrink: 0;
}
.animals-s__type {
  font-size: 0.875rem;
  color: #2a2d2b;
  font-weight: 400;
  margin: 0;
}
.animals-s__pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 3.5rem;
  flex-wrap: wrap;
}
.animals-s__page-ellipsis {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  font-size: 0.9375rem;
  color: #2a2d2b;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
.animals-s__page-btn.is-disabled {
  opacity: 0.35;
  pointer-events: none;
}
@media (max-width: 576px) {
  .animals-s__page-btn {
    font-size: 14px;
    padding: 8px;
  }
}
.animals-s__pages {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
}
.animals-s__page-num.is-active {
  font-weight: 700;
  color: #2e7d32;
  pointer-events: none;
}
.animals-s__empty {
  text-align: center;
  color: #2a2d2b;
  font-size: 1rem;
  padding-block: 3rem;
}

.center-title {
  padding-block: 5rem;
}
@media (max-width: 992px) {
  .center-title {
    padding-block: 3rem;
  }
}
.center-title__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
  max-width: 760px;
  margin-inline: auto;
}
.center-title__title, .center-title__text {
  margin: 0;
}
.center-title .buttons {
  justify-content: center;
}

.report-form-s {
  padding-block: 5rem;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .report-form-s {
    padding-block: 3rem;
  }
}
.report-form-s__break {
  width: 100%;
  height: 1px;
  background-color: #0f3d2e;
}
.report-form-s__upload {
  display: flex;
  gap: 1rem;
  justify-content: space-between;
}
.report-form-s__upload input[type=file] {
  font-size: 0.9375rem;
  font-family: "Montserrat", sans-serif;
  color: #2a2d2b;
  cursor: pointer;
  padding: 12px;
}
.report-form-s__upload input[type=file]::file-selector-button {
  padding: 12px 30px;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  background: #ffffff;
  border: 1px solid #111315;
  color: #111315;
  box-shadow: 6px 6px 0px #111315;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  margin-right: 1rem;
}
.report-form-s__upload input[type=file]:hover::file-selector-button {
  transform: translate(3px, 3px);
  box-shadow: 3px 3px 0px #111315;
}
.report-form-s__inner {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
.report-form-s__title {
  text-align: center;
}
.report-form-s__agreement {
  margin-top: 2.75rem;
  padding: 2.5rem 5rem;
  border: 1px solid #2e7d32;
}
@media (max-width: 992px) {
  .report-form-s__agreement {
    padding: 1.5rem 2rem;
  }
}
.report-form-s__form {
  width: 100%;
}
.report-form-s__form .wpcf7-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.report-form-s__form input[type=text],
.report-form-s__form input[type=email],
.report-form-s__form input[type=tel],
.report-form-s__form input[type=number],
.report-form-s__form select,
.report-form-s__form textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #d7dbd9;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.report-form-s__form input[type=text]::-moz-placeholder, .report-form-s__form input[type=email]::-moz-placeholder, .report-form-s__form input[type=tel]::-moz-placeholder, .report-form-s__form input[type=number]::-moz-placeholder, .report-form-s__form select::-moz-placeholder, .report-form-s__form textarea::-moz-placeholder {
  color: #d7dbd9;
}
.report-form-s__form input[type=text]::placeholder,
.report-form-s__form input[type=email]::placeholder,
.report-form-s__form input[type=tel]::placeholder,
.report-form-s__form input[type=number]::placeholder,
.report-form-s__form select::placeholder,
.report-form-s__form textarea::placeholder {
  color: #d7dbd9;
}
.report-form-s__form select {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='%232a2d2b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.875rem center;
  background-size: 1rem;
  padding-right: 2.5rem;
  cursor: pointer;
}
.report-form-s__form textarea {
  min-height: 8rem;
  resize: vertical;
}
.report-form-s__form input[type=file] {
  width: 100%;
  font-size: 0.875rem;
  color: #2a2d2b;
  cursor: pointer;
}
.report-form-s__form .wpcf7-form-control-wrap {
  display: block;
}
.report-form-s__form .wpcf7-checkbox,
.report-form-s__form .wpcf7-acceptance {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.report-form-s__form .wpcf7-checkbox .wpcf7-list-item,
.report-form-s__form .wpcf7-acceptance .wpcf7-list-item {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  margin: 0;
}
.report-form-s__form .wpcf7-checkbox .wpcf7-list-item label,
.report-form-s__form .wpcf7-acceptance .wpcf7-list-item label {
  display: flex;
  gap: 0.875rem;
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.5;
  font-weight: 400;
  cursor: pointer;
  font-style: italic;
}
.report-form-s__form .wpcf7-checkbox .wpcf7-list-item input[type=checkbox],
.report-form-s__form .wpcf7-acceptance .wpcf7-list-item input[type=checkbox] {
  width: 1.5rem;
  height: 1.5rem;
  flex-shrink: 0;
  accent-color: #0f3d2e;
  cursor: pointer;
}
.report-form-s__form input[type=submit],
.report-form-s__form .wpcf7-submit {
  padding-block: 12px;
  padding-inline: 30px;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  cursor: pointer;
  transition: background 0.2s ease;
  align-self: flex-end;
  background: #ffffff;
  border: 1px solid #111315;
  color: #111315;
  box-shadow: 6px 6px 0px #111315;
}
.report-form-s__form input[type=submit]:hover,
.report-form-s__form .wpcf7-submit:hover {
  transform: translate(3px, 3px);
  box-shadow: 3px 3px 0px #111315;
}
.report-form-s__form .wpcf7-not-valid-tip {
  font-size: 0.875rem;
  color: #ff383c;
  margin-top: 0.25rem;
  display: block;
}
.report-form-s__form .wpcf7-response-output {
  font-size: 0.875rem;
  padding: 0.875rem 1rem;
  border: 1px solid #0f3d2e;
  margin-top: 1rem;
}

.posts-s {
  padding-block: 5rem;
}
.posts-s__content {
  display: flex;
  flex-direction: column;
  gap: 5rem;
}
@media (max-width: 1200px) {
  .posts-s__content {
    gap: 2rem;
  }
}
@media (max-width: 992px) {
  .posts-s {
    padding-block: 3rem;
  }
}
.posts-s__header {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.posts-s__title {
  margin-bottom: 1.5rem;
}
@media (max-width: 768px) {
  .posts-s__title {
    text-align: center;
  }
}
.posts-s__text {
  margin: 0;
  max-width: 48rem;
}
@media (max-width: 768px) {
  .posts-s__text {
    text-align: center;
  }
}
.posts-s__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 768px) {
  .posts-s__grid {
    grid-template-columns: 1fr;
  }
}
.posts-s__card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  border: 1px solid #d7dbd9;
  transition: border-color 0.2s ease;
}
.posts-s__card:hover {
  border-color: #0f3d2e;
}
.posts-s__card:hover .posts-s__img {
  transform: scale(1.04);
}
.posts-s__photo {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #f5f7f6;
}
.posts-s__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.posts-s__photo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.posts-s__photo-placeholder svg {
  width: 3rem;
  height: 3rem;
  color: #d7dbd9;
}
.posts-s__body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.posts-s__post-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0f3d2e;
}
.posts-s__excerpt {
  color: #2a2d2b;
  opacity: 0.75;
  margin: 0;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.posts-s__meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: auto;
  padding-top: 0.5rem;
}
.posts-s__date, .posts-s__reading-time {
  font-size: 0.875rem;
  color: #2a2d2b;
}
.posts-s__dot {
  font-size: 1rem;
  color: #2a2d2b;
}
.posts-s__footer {
  display: flex;
  justify-content: flex-end;
}

.three-cards-s {
  padding-block: 5rem;
}
@media (max-width: 992px) {
  .three-cards-s {
    padding-block: 3rem;
  }
}
.three-cards-s__title {
  text-align: center;
  margin: 0 0 3rem;
}
.three-cards-s__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(16rem, 1fr));
  gap: 2rem;
}
@media (max-width: 576px) {
  .three-cards-s__grid {
    grid-template-columns: 1fr;
  }
}
.three-cards-s__card {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  text-decoration: none;
  color: inherit;
}
.three-cards-s__card:hover .three-cards-s__img {
  transform: scale(1.04);
}
.three-cards-s__photo {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #f5f7f6;
}
.three-cards-s__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.three-cards-s__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.three-cards-s__placeholder svg {
  width: 3rem;
  height: 3rem;
  color: #d7dbd9;
}
.three-cards-s__body {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.three-cards-s__card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0f3d2e;
}
.three-cards-s__desc {
  color: #111315;
}

.donation-cards-s {
  padding-block: 5rem;
  background: #f5f7f6;
}
@media (max-width: 992px) {
  .donation-cards-s {
    padding-block: 3rem;
  }
}
.donation-cards-s__title {
  text-align: center;
  margin: 0 0 1.5rem;
}
.donation-cards-s__desc {
  text-align: center;
  max-width: 42rem;
  margin: 0 auto 3rem;
}
.donation-cards-s__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
@media (max-width: 1200px) {
  .donation-cards-s__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .donation-cards-s__grid {
    grid-template-columns: 1fr;
  }
}
.donation-cards-s__card {
  background: #ffffff;
  border: 1px solid #d7dbd9;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.donation-cards-s__amount {
  font-size: 2.5rem;
  font-weight: 700;
  color: #0f3d2e;
  line-height: 1;
  padding-bottom: 2rem;
  border-bottom: 1px solid #d7dbd9;
}
.donation-cards-s__form {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.donation-cards-s__label {
  font-size: 0.875rem;
  color: #2a2d2b;
}
.donation-cards-s__input {
  width: 100%;
  padding: 0.625rem 0.875rem;
  font-size: 1rem;
  font-family: "Montserrat", sans-serif;
  color: #2a2d2b;
  background: #ffffff;
  border: 1px solid #d7dbd9;
  outline: none;
  transition: border-color 0.2s ease;
}
.donation-cards-s__input:focus {
  border-color: #0f3d2e;
}
.donation-cards-s__btn {
  width: 100%;
  justify-content: center;
  margin-top: 0.5rem;
}

.donors-s {
  padding-block: 5rem;
}
@media (max-width: 992px) {
  .donors-s {
    padding-block: 3rem;
  }
}
.donors-s__title {
  text-align: center;
  margin: 0 0 1.5rem;
}
.donors-s__text {
  text-align: center;
  max-width: 48rem;
  margin: 0 auto 3.5rem;
}
.donors-s__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 768px) {
  .donors-s__grid {
    gap: 2rem 2.5rem;
    grid-template-columns: repeat(2, 1fr);
  }
}
.donors-s__item {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: opacity 0.2s ease;
  padding: 0.875rem;
}
.donors-s__logo {
  width: auto;
  -o-object-fit: contain;
  object-fit: contain;
  display: block;
}
@media (max-width: 768px) {
  .donors-s__logo {
    max-height: 2.25rem;
    max-width: 8rem;
  }
}

.tax-bg-s {
  position: relative;
  overflow: hidden;
  background-color: #111315;
  padding-block: 5rem;
}
.tax-bg-s .container {
  padding: 2rem 0;
}
@media (max-width: 992px) {
  .tax-bg-s {
    padding-block: 3rem;
  }
}
.tax-bg-s::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--bg);
  background-size: cover;
  background-position: center;
  filter: grayscale(1);
  z-index: 0;
}
.tax-bg-s__overlay {
  position: absolute;
  inset: 0;
  background: rgba(17, 19, 21, 0.55);
  z-index: 1;
}
.tax-bg-s .container {
  position: relative;
  z-index: 2;
}
.tax-bg-s__top {
  max-width: 34rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 4rem;
}
@media (max-width: 992px) {
  .tax-bg-s__top {
    margin-bottom: 2.5rem;
    max-width: 100%;
  }
}
.tax-bg-s__items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
@media (max-width: 992px) {
  .tax-bg-s__items {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}
@media (max-width: 576px) {
  .tax-bg-s__items {
    grid-template-columns: 1fr 1fr;
  }
}
.tax-bg-s__item {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
}
.tax-bg-s__icon {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tax-bg-s__icon-img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  filter: brightness(0) invert(1);
}
.tax-bg-s__label {
  font-size: 1.5rem;
  font-weight: 600;
  color: #ffffff;
}

.tax-steps-s {
  padding-block: 5rem;
  background: #f5f7f6;
}
@media (max-width: 992px) {
  .tax-steps-s {
    padding-block: 3rem;
  }
}
.tax-steps-s__header {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 3rem;
}
.tax-steps-s__title {
  margin: 0;
}
.tax-steps-s__subtitle {
  color: #2a2d2b;
}
.tax-steps-s__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media (max-width: 992px) {
  .tax-steps-s__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
.tax-steps-s__step {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.tax-steps-s__step-title {
  font-size: 2rem;
  font-weight: 700;
  color: #0f3d2e;
  margin: 0;
}
.tax-steps-s__step-desc {
  color: #2a2d2b;
}

.single-animal__layout {
  padding-bottom: 5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
@media (max-width: 1200px) {
  .single-animal__layout {
    gap: 3rem;
  }
}
@media (max-width: 992px) {
  .single-animal__layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}
.single-animal__swiper-ratio {
  position: relative;
  width: 100%;
  aspect-ratio: 6/5;
  overflow: hidden;
}
.single-animal__swiper {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.single-animal__swiper .swiper-slide {
  height: 100%;
}
.single-animal__swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
}
.single-animal__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  transition: background 0.2s ease, opacity 0.2s ease;
}
.single-animal__nav svg {
  width: 1.125rem;
  height: 1.125rem;
  color: #2a2d2b;
}
.single-animal__nav:hover {
  background: #ffffff;
}
.single-animal__nav.swiper-button-disabled {
  opacity: 0.3;
  pointer-events: none;
}
.single-animal__nav--prev {
  left: 0.75rem;
}
.single-animal__nav--next {
  right: 0.75rem;
}
.single-animal__thumbs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1rem;
}
@media (max-width: 768px) {
  .single-animal__thumbs {
    display: none;
  }
}
.single-animal__thumb {
  aspect-ratio: 4/3;
  overflow: hidden;
  cursor: pointer;
  padding: 0;
}
.single-animal__thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
.single-animal__thumb.is-active img {
  transform: scale(1.1);
}
.single-animal__name {
  margin: 0 0 1.5rem;
}
.single-animal__meta {
  list-style: none;
  margin: 0 0 2rem;
  padding: 0;
}
.single-animal__meta li {
  color: #2a2d2b;
}
.single-animal__adopt-btn {
  width: 100%;
  justify-content: center;
  margin-bottom: 2rem;
}
.single-animal__accordion {
  display: flex;
  flex-direction: column;
  border-top: 1px solid #111315;
}
.single-animal__accordion-item {
  border-bottom: 1px solid #111315;
}
.single-animal__accordion-btn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  background: none;
  border: none;
  font-size: 1.125rem;
  font-weight: 600;
  color: #0f3d2e;
  cursor: pointer;
  text-align: left;
}
.single-animal__accordion-btn svg {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
  transition: transform 0.2s ease;
  color: #0f3d2e;
}
.single-animal__accordion-btn.is-open svg {
  transform: rotate(180deg);
}
.single-animal__accordion-content {
  display: none;
  padding-bottom: 1.25rem;
}
.single-animal__accordion-content.is-open {
  display: block;
}

.adoption-steps {
  padding-block: 5rem;
}
@media (max-width: 992px) {
  .adoption-steps {
    padding-block: 3rem;
  }
}
.adoption-steps__header {
  max-width: 768px;
  margin: 0 auto 5rem;
  text-align: center;
}
@media (max-width: 992px) {
  .adoption-steps__header {
    margin-bottom: 3rem;
  }
}
.adoption-steps__title {
  font-size: 3rem;
  font-weight: 700;
  color: #0f3d2e;
  margin: 0 0 1.25rem;
}
@media (max-width: 768px) {
  .adoption-steps__title {
    font-size: 2rem;
  }
}
.adoption-steps__desc {
  font-size: 1.125rem;
  color: #111315;
  line-height: 1.7;
  margin: 0;
}
.adoption-steps__list {
  max-width: 768px;
  margin: 0 auto;
}
.adoption-steps__item {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding-block: 3rem;
  border-bottom: 1px solid #111315;
}
.adoption-steps__item:first-child {
  border-top: 1px solid #111315;
}
@media (max-width: 768px) {
  .adoption-steps__item {
    padding-block: 2rem;
    gap: 1.25rem;
  }
}
.adoption-steps__num {
  font-size: 3rem;
  font-weight: 700;
  color: #0f3d2e;
  line-height: 1;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .adoption-steps__num {
    font-size: 2rem;
  }
}
.adoption-steps__label {
  font-size: 2rem;
  font-weight: 600;
  color: #111315;
  line-height: 1.2;
}
@media (max-width: 768px) {
  .adoption-steps__label {
    font-size: 1.25rem;
  }
}

.animal-banner {
  position: relative;
  background-image: var(--banner-bg);
  background-size: cover;
  background-position: center;
  background-color: #0f3d2e;
  padding-block: 7rem;
  overflow: hidden;
}
@media (max-width: 992px) {
  .animal-banner {
    padding-block: 4rem;
  }
}
.animal-banner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(17, 19, 21, 0.85) 40%, rgba(17, 19, 21, 0.6));
}
@media (max-width: 992px) {
  .animal-banner__overlay {
    background: rgba(15, 61, 46, 0.78);
  }
}
.animal-banner__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
}
@media (max-width: 1200px) {
  .animal-banner__inner {
    gap: 3rem;
  }
}
@media (max-width: 992px) {
  .animal-banner__inner {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}
.animal-banner__title {
  font-size: 3.5rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.15;
  margin: 0;
}
.animal-banner__right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2rem;
}
.animal-banner__text {
  font-size: 1.125rem;
  margin: 0;
  color: #ffffff;
}

.dead-animals-s {
  padding-block: 5rem;
}
@media (max-width: 992px) {
  .dead-animals-s {
    padding-block: 3rem;
  }
}
.dead-animals-s__header {
  margin-bottom: 3rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.dead-animals-s__title {
  margin: 0;
}
.dead-animals-s__desc {
  margin: 0;
  max-width: 48rem;
}
.dead-animals-s__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}
@media (max-width: 768px) {
  .dead-animals-s__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
.dead-animals-s__card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  gap: 0.5rem;
}
.dead-animals-s__photo {
  aspect-ratio: 4/3;
  overflow: hidden;
}
.dead-animals-s__photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
}
.dead-animals-s__photo-placeholder {
  width: 100%;
  height: 100%;
  background: #f5f7f6;
}
.dead-animals-s__card-body {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.dead-animals-s__headline {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem;
}
.dead-animals-s__name {
  font-size: 1.25rem;
  font-weight: 600;
  color: #0f3d2e;
}
.dead-animals-s__date {
  font-size: 1rem;
  color: #111315;
  white-space: nowrap;
  flex-shrink: 0;
}
.dead-animals-s__meta {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.dead-animals-s__meta li {
  display: flex;
  justify-content: space-between;
}
.dead-animals-s__meta-key {
  font-size: 1.125rem;
}
.dead-animals-s__meta-val {
  font-size: 1rem;
}
.dead-animals-s__empty {
  font-size: 3rem;
  color: #0f3d2e;
  font-weight: 700;
}

.ranking-table-s {
  padding-block: 2rem 4rem;
}
.ranking-table-s .container {
  display: flex;
  justify-content: center;
}
.ranking-table-s__table {
  border: 1px solid #d7dbd9;
  overflow: hidden;
  margin-bottom: 1.5rem;
  max-width: 880px;
}
.ranking-table-s__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0f3d2e;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid #d7dbd9;
  margin: 0;
}
.ranking-table-s__inner {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}
.ranking-table-s__inner thead tr {
  background: #0f3d2e;
}
.ranking-table-s__inner thead tr th {
  padding: 1rem 1.5rem;
  font-weight: 500;
  color: #ffffff;
  text-align: left;
}
.ranking-table-s__inner thead tr th:last-child {
  text-align: right;
}
.ranking-table-s__inner tbody tr {
  border-bottom: 1px solid #d7dbd9;
}
.ranking-table-s__inner tbody tr:last-child {
  border-bottom: none;
}
.ranking-table-s__inner tbody tr td {
  padding: 1.25rem 1.5rem;
  vertical-align: middle;
  font-weight: 400;
}
.ranking-table-s__inner tbody tr:first-child td {
  font-weight: 700;
}
.ranking-table-s__col--rank {
  width: 9rem;
}
.ranking-table-s__col--score {
  width: 10rem;
}
.ranking-table-s__col--institution {
  width: auto;
}
.ranking-table-s__rank {
  font-size: 0.9375rem;
  color: #2a2d2b;
  white-space: nowrap;
}
.ranking-table-s__institution {
  color: #2a2d2b;
}
.ranking-table-s__score {
  font-weight: 600;
  color: #2a2d2b;
  text-align: right;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .ranking-table-s__col--rank {
    width: 6rem;
  }
  .ranking-table-s__col--score {
    width: 7rem;
  }
  .ranking-table-s__inner thead tr th,
  .ranking-table-s__inner tbody tr td {
    padding: 0.875rem 0.75rem;
  }
}

.posts-archive {
  padding-block: 4rem 5rem;
}
@media (max-width: 992px) {
  .posts-archive {
    padding-block: 2.5rem 3rem;
  }
}
.posts-archive__header {
  margin-bottom: 3rem;
}
@media (max-width: 992px) {
  .posts-archive__header {
    margin-bottom: 2rem;
  }
}
.posts-archive__title {
  margin-bottom: 0.75rem;
}
.posts-archive__desc {
  max-width: 48rem;
  color: #2a2d2b;
  margin: 0;
}
.posts-archive__pagination {
  margin-top: 3rem;
}
.posts-archive__pagination .page-numbers {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
.posts-archive__pagination .page-numbers li {
  margin: 0;
  padding: 0;
}
.posts-archive__pagination .page-numbers a,
.posts-archive__pagination .page-numbers span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.5rem;
  height: 2.5rem;
  padding-inline: 0.75rem;
  font-family: "Montserrat", sans-serif;
  font-size: 0.9375rem;
  font-weight: 500;
  color: #2a2d2b;
  border: 1px solid #d7dbd9;
  text-decoration: none;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}
.posts-archive__pagination .page-numbers a:hover {
  border-color: #0f3d2e;
  color: #0f3d2e;
}
.posts-archive__pagination .page-numbers .current {
  background: #0f3d2e;
  border-color: #0f3d2e;
  color: #ffffff;
}
.posts-archive__pagination .page-numbers .prev,
.posts-archive__pagination .page-numbers .next {
  padding-inline: 1rem;
  border: none;
  font-weight: 600;
  color: #0f3d2e;
}
.posts-archive__pagination .page-numbers .prev:hover,
.posts-archive__pagination .page-numbers .next:hover {
  color: #2e7d32;
  border: none;
}

.posts-s__read-more {
  display: inline-block;
  font-family: "Montserrat", sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: #0f3d2e;
  margin-top: auto;
  padding-top: 0.5rem;
  transition: opacity 0.2s ease;
}
.posts-s__card:hover .posts-s__read-more {
  opacity: 0.7;
}

.posts-s__category {
  display: inline-block;
  font-family: "Montserrat", sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #0f3d2e;
  margin-bottom: 0.5rem;
}

.child-archive {
  padding-block: 4rem 5rem;
}
@media (max-width: 992px) {
  .child-archive {
    padding-block: 2.5rem 3rem;
  }
}
.child-archive__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (max-width: 768px) {
  .child-archive__grid {
    grid-template-columns: 1fr;
  }
}
.child-archive__card {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.75rem 2rem;
  border: 1px solid #d7dbd9;
  text-decoration: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.child-archive__card:hover {
  border-color: #0f3d2e;
  box-shadow: 4px 4px 0 #0f3d2e;
}
.child-archive__card:hover .child-archive__arrow {
  transform: translateX(4px);
}
@media (max-width: 768px) {
  .child-archive__card {
    padding: 1.25rem 1.5rem;
    gap: 1rem;
  }
}
.child-archive__num {
  font-family: "Montserrat", sans-serif;
  font-size: 0.8125rem;
  font-weight: 700;
  color: #0f3d2e;
  opacity: 0.5;
  flex-shrink: 0;
  line-height: 1;
}
.child-archive__title {
  flex: 1;
  color: #0f3d2e;
  line-height: 1.3;
}
.child-archive__arrow {
  font-size: 1.25rem;
  color: #0f3d2e;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.single-post__hero {
  position: relative;
  margin-bottom: 4rem;
}
@media (max-width: 992px) {
  .single-post__hero {
    margin-bottom: 2.5rem;
  }
}
.single-post__thumbnail {
  width: 100%;
  max-height: 26rem;
  overflow: hidden;
}
@media (max-width: 992px) {
  .single-post__thumbnail {
    max-height: 18rem;
  }
}
.single-post__thumbnail-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
}
.single-post__hero-content {
  padding-block: 3rem;
}
@media (max-width: 992px) {
  .single-post__hero-content {
    padding-block: 2rem;
  }
}
.single-post__cats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}
.single-post__cat {
  display: inline-block;
  font-family: "Montserrat", sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #0f3d2e;
  border: 1px solid #0f3d2e;
  padding: 0.25rem 0.75rem;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}
.single-post__cat:hover {
  background: #0f3d2e;
  color: #ffffff;
}
.single-post__title {
  margin-bottom: 1.25rem;
}
.single-post__meta {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-family: "Inter", sans-serif;
}
.single-post__date, .single-post__reading-time {
  font-size: 0.9375rem;
  color: #2a2d2b;
  opacity: 0.65;
}
.single-post__dot {
  font-size: 1rem;
  color: #2a2d2b;
  opacity: 0.4;
}
/*# sourceMappingURL=main.css.map */
