/*!******************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[0].use[2]!./src/scss/index.scss ***!
  \******************************************************************************************************************************************/
@import url(https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&family=Unbounded:wght@200..900&display=swap);
/*!******************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/modern-normalize/modern-normalize.css ***!
  \******************************************************************************************************/
/*! modern-normalize v3.0.1 | MIT License | https://github.com/sindresorhus/modern-normalize */

/*
Document
========
*/

/**
Use a better box model (opinionated).
*/

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

html {
	/* Improve consistency of default fonts in all browsers. (https://github.com/sindresorhus/modern-normalize/issues/3) */
	font-family:
		system-ui,
		'Segoe UI',
		Roboto,
		Helvetica,
		Arial,
		sans-serif,
		'Apple Color Emoji',
		'Segoe UI Emoji';
	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. */
	tab-size: 4; /* 3. Use a more readable tab size (opinionated). */
}

/*
Sections
========
*/

body {
	margin: 0; /* Remove the margin in all browsers. */
}

/*
Text-level semantics
====================
*/

/**
Add the correct font weight in Chrome and Safari.
*/

b,
strong {
	font-weight: bolder;
}

/**
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:
		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
============
*/

/**
Correct table border color inheritance in Chrome and Safari. (https://issues.chromium.org/issues/40615503, https://bugs.webkit.org/show_bug.cgi?id=195016)
*/

table {
	border-color: currentcolor;
}

/*
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 */
}

/**
Correct the inability to style clickable types in iOS and Safari.
*/

button,
[type='button'],
[type='reset'],
[type='submit'] {
	-webkit-appearance: button;
}

/**
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'] {
	-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;
}

/*!**********************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[0].use[2]!./src/scss/index.scss (1) ***!
  \**********************************************************************************************************************************************/
@charset "UTF-8";
/* ============
   BASE
   ============ */
/* Базовый сброс стилей */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  height: 100%;
  font-size: 100%;
  line-height: 1.5;
  font-family: inherit;
  background-color: #fff;
  color: inherit;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

input,
button,
textarea,
select {
  font: inherit;
  color: inherit;
}

button,
input[type=button],
input[type=submit] {
  all: unset;
  display: inline-block;
  cursor: pointer;
  text-align: center;
  line-height: normal;
}

button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid #007bff;
  outline-offset: 2px;
}

ul,
ol {
  list-style: none;
}

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

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

a {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}
a:active {
  color: #fe9400;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  font-size: 16px;
  gap: 8px;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s, border 0.3s;
}
.button.primary {
  background: #121212;
  color: white;
  border: none;
}
.button.primary:hover {
  background: #fe9400;
}
.button.primary.disabled {
  background: #c8cfd6;
  cursor: not-allowed;
}
.button.secondary {
  background: white;
  color: #121212;
  border: 2px solid #121212;
}
.button.secondary:hover {
  color: #fe9400;
  border-color: #fe9400;
}
.button.secondary:hover svg path {
  stroke: #fe9400;
}
.button.thirdly {
  background: transparent;
  color: #121212;
  border: none;
}
.button.thirdly:hover {
  color: #fe9400;
}
.button.tertiary {
  background: transparent;
  display: flex;
  padding: 10px 24px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border-radius: 8px;
  border: 1px solid #121212;
  color: #121212;
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.button.tertiary:hover {
  color: #fe9400;
  border-color: #fe9400;
}
.button.tertiary:hover svg path {
  stroke: #fe9400;
}
.button svg {
  width: auto;
  cursor: pointer;
}
@media (max-width: 480px) {
  .button svg {
    width: 16px;
  }
}
@media screen and (max-width: 480px) {
  .button {
    padding: 8px 10px;
    font-size: 12px !important;
    word-wrap: normal;
    gap: 4px;
  }
  .button.tertiary {
    padding: 8px 10px;
    font-size: 13px;
  }
}

.grid {
  display: grid;
  gap: 24px;
}
.grid.cols-4 {
  grid-template-columns: repeat(4, 1fr);
}
.grid.cols-3 {
  grid-template-columns: repeat(3, 1fr);
}
.grid.cols-2 {
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 768px) and (max-width: 991px) {
  .grid.cols-4 {
    grid-template-columns: repeat(3, 1fr);
  }
  .grid.cols-3 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid.cols-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  .grid.cols-4, .grid.cols-3 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid.cols-2 {
    grid-template-columns: 1fr;
  }
}
@media (min-width: 321px) and (max-width: 575px) {
  .grid.cols-4, .grid.cols-3, .grid.cols-2 {
    grid-template-columns: 1fr;
  }
}

.flex {
  display: flex;
}
.flex.space-between {
  justify-content: space-between;
}
.flex.start {
  align-items: flex-start;
  justify-content: flex-start;
}
.flex.center {
  align-items: center;
  justify-content: center;
}
.flex.column {
  flex-direction: column;
}
.flex.wrap {
  flex-wrap: wrap;
}

/* ============
   COMPONENTS
   ============ */
.header {
  margin-top: 18px;
  padding-bottom: 18px;
  background-color: #f8f9fa;
  padding: 16px 34px;
  border-bottom: 1px solid #4e5f6e;
}

.btn-header-img {
  fill: white;
  color: whtie;
  background: white;
  margin-left: 8px;
}

.header-content {
  max-width: fit-content;
  margin: 0 auto;
}

.header-logo {
  margin-right: 49px;
}

.logo {
  margin-right: 8px;
}

.logo-text {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
}
.logo-text__title {
  color: #1d252b;
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.5;
}
.logo-text__subtitle {
  color: #1d252b;
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
}

nav {
  display: flex;
  flex-wrap: wrap;
  gap: 49px;
}

.nav-list {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}
@media (min-width: 1368px) and (max-width: 1920px) {
  .nav-list {
    max-width: 720px;
  }
}

.nav-link {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  position: relative;
  color: #121212;
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  cursor: pointer;
  transition: color 0.3s ease;
}
.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0%;
  height: 1px;
  background-color: #fe9400;
  transition: width 0.6s ease;
}
.nav-link:hover {
  color: #fe9400;
}
.nav-link:hover::after {
  width: 100%;
  right: auto;
  left: 0;
}

.soc-links {
  display: flex;
  gap: 24px;
  transition: color 0.3s;
}
.soc-links a:hover {
  color: #fe9400;
}

.lang {
  display: flex;
  align-items: center;
  color: #000;
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.hero-img {
  width: 100%;
  margin-top: 24px;
  position: relative;
}

.hero-text {
  position: absolute;
  left: 116px;
  bottom: 84px;
}

.hero-paragraph {
  position: absolute;
  top: 40px;
  right: 40px;
  border-radius: 8px;
  background: #fe9400;
  display: flex;
  max-width: 443px;
  padding: 8px 16px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  color: #121212;
  font-family: "Unbounded", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
}
.hero-paragraph strong {
  color: #121212;
  font-family: "Unbounded", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.hero-title {
  color: #fe9400;
  font-family: "Unbounded", sans-serif;
  font-size: 56px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.3;
}
@media (min-width: 768px) and (max-width: 991px) {
  .hero-title {
    font-size: 40px;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  .hero-title {
    font-size: 32px;
  }
}
@media (min-width: 321px) and (max-width: 575px) {
  .hero-title {
    font-size: 28px;
  }
}
@media (max-width: 320px) {
  .hero-title {
    font-size: 24px;
  }
}

.hero-subtitle {
  color: #fff;
  font-family: "Unbounded", sans-serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
}
@media (min-width: 768px) and (max-width: 991px) {
  .hero-subtitle {
    font-size: 24px;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  .hero-subtitle {
    font-size: 20px;
  }
}
@media (min-width: 321px) and (max-width: 575px) {
  .hero-subtitle {
    font-size: 18px;
  }
}
@media (max-width: 320px) {
  .hero-subtitle {
    font-size: 16px;
  }
}

.about-us .list {
  list-style: disc;
  padding-left: 30px;
}
.about-us .about-descr {
  max-width: 672px;
  margin-top: 24px;
}

.about-us-content {
  display: flex;
  flex-direction: column;
  gap: 0 0 32px 0;
}

.about-us-wrap {
  display: flex;
  gap: 24px;
}
.about-us-wrap .about-us-img {
  width: 100%;
}

.meta-goal {
  display: flex;
  align-items: center;
  gap: 16px;
  color: #4e5f6e;
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 8px;
}

.about-us-paragraph {
  max-width: 672px;
  align-self: stretch;
  color: #fe9400 !important;
  font-family: "Unbounded", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.4;
  margin-bottom: 24px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .about-us-paragraph {
    font-size: 20px;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  .about-us-paragraph {
    font-size: 18px;
  }
}
@media (min-width: 321px) and (max-width: 575px) {
  .about-us-paragraph {
    font-size: 16px;
  }
}
@media (max-width: 320px) {
  .about-us-paragraph {
    font-size: 14px;
  }
}

.about-us-text {
  color: #1d252b;
  font-family: "Unbounded", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  max-width: 672px;
  padding: 24px;
  border-radius: 16px;
  background: #e8ecf2;
  margin-bottom: 24px;
  gap: 8px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .about-us-text {
    font-size: 18px;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  .about-us-text {
    font-size: 16px;
  }
}
@media (min-width: 321px) and (max-width: 575px) {
  .about-us-text {
    font-size: 14px;
  }
}
@media (max-width: 320px) {
  .about-us-text {
    font-size: 12px;
  }
}

iframe {
  width: 100% !important;
}
@media (min-width: 576px) and (max-width: 767px) {
  iframe {
    width: 100% !important;
    max-width: 100% !important;
  }
}

.footer {
  background: #111;
  color: #fff;
  padding: 36px 36px;
  border-radius: 12px 12px 0 0;
}
.footer .nav-link {
  color: #fff !important;
}
.footer .logo-text {
  display: flex;
}
.footer .logo-text__title {
  color: #fff;
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.5;
}
.footer .logo-text__subtitle {
  color: #fff;
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
}
.footer__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding-bottom: 10px;
  border-bottom: 1px solid #4e5f6e;
}
.footer__logo {
  display: flex;
  gap: 8px;
}
.footer__nav {
  display: flex;
  gap: 32px;
}
.footer__nav-link {
  color: #fff;
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s;
}
.footer__nav-link:hover {
  color: #fe9400;
  border-bottom: 1px solid #fe9400;
}
.footer__actions {
  display: flex;
  align-items: center;
  gap: 16px;
}
.footer__button {
  background: #fff;
  color: #111;
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 14px;
  text-decoration: none;
  font-weight: bold;
}
.footer__button:hover {
  background: #ddd;
}
.footer__lang span {
  display: flex;
  cursor: pointer;
  font-size: 14px;
}
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 24px;
  color: #c8cfd6;
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
}
.footer__socials {
  display: flex;
  gap: 10px;
  color: white;
}
.footer__socials a img {
  height: 20px;
  transition: opacity 0.3s;
}
.footer__socials a img:hover {
  opacity: 0.7;
}
.footer .copyright {
  color: #c8cfd6;
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .footer .copyright {
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  .footer .copyright {
    font-size: 12px;
  }
}

.footer .content {
  max-width: 1368px;
  margin: 0 auto;
}

.donate {
  margin-bottom: 100px;
}

.template {
  background: #ffa53b;
  max-width: 674px;
  border-radius: 16px;
  color: #000;
  padding: 40px;
}
@media (min-width: 576px) and (max-width: 767px) {
  .template {
    padding: 20px;
  }
}
@media (min-width: 321px) and (max-width: 575px) {
  .template {
    padding: 10px;
  }
}
@media (max-width: 320px) {
  .template {
    padding: 20px;
  }
}
.template__title {
  color: #121212;
  font-family: "Unbounded", sans-serif;
  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.4;
  margin-top: 16px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .template__title {
    font-size: 28px;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  .template__title {
    font-size: 24px;
  }
}
@media (min-width: 321px) and (max-width: 575px) {
  .template__title {
    font-size: 20px;
  }
}
@media (max-width: 320px) {
  .template__title {
    font-size: 18px;
  }
}
.template__subtitle {
  flex: 1 0 0;
  color: #fff;
  font-family: "Unbounded", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.4;
}
@media (min-width: 768px) and (max-width: 991px) {
  .template__subtitle {
    font-size: 20px;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  .template__subtitle {
    font-size: 18px;
  }
}
@media (min-width: 321px) and (max-width: 575px) {
  .template__subtitle {
    font-size: 16px;
  }
}
@media (max-width: 320px) {
  .template__subtitle {
    font-size: 14px;
  }
}
.template__text {
  color: #1d252b;
  font-family: "Unbounded", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  margin-top: 24px;
  margin: 24px 0 40px 0;
}
@media (min-width: 768px) and (max-width: 991px) {
  .template__text {
    font-size: 18px;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  .template__text {
    font-size: 16px;
  }
}
@media (min-width: 321px) and (max-width: 575px) {
  .template__text {
    font-size: 15px;
  }
}
@media (max-width: 320px) {
  .template__text {
    font-size: 14px;
  }
}

.donate-wrap {
  display: flex;
  align-items: flex-start;
  justify-content: space-evenly;
  gap: 24px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .donate-wrap {
    flex-direction: column;
    align-items: center;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  .donate-wrap {
    flex-direction: column;
    align-items: center;
  }
}
@media (min-width: 321px) and (max-width: 575px) {
  .donate-wrap {
    flex-direction: column;
    align-items: center;
  }
}
@media (max-width: 320px) {
  .donate-wrap {
    flex-direction: column;
    align-items: center;
  }
}

.donate-checkout {
  width: 50%;
}
@media (min-width: 576px) and (max-width: 767px) {
  .donate-checkout {
    width: 100% !important;
  }
}
@media (min-width: 321px) and (max-width: 575px) {
  .donate-checkout {
    width: 100%;
  }
}
@media (max-width: 320px) {
  .donate-checkout {
    width: 100%;
  }
}

#liqpay_checkout iframe {
  background: none !important;
}

.block {
  background: #fff;
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 24px;
  gap: 16px;
  display: flex;
  flex-direction: column;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
}
.block__title {
  color: #fe9400;
  font-family: "Unbounded", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.4;
}
@media (min-width: 768px) and (max-width: 991px) {
  .block__title {
    font-size: 20px;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  .block__title {
    font-size: 18px;
  }
}
@media (min-width: 321px) and (max-width: 575px) {
  .block__title {
    font-size: 16px;
  }
}
@media (max-width: 320px) {
  .block__title {
    font-size: 14px;
  }
}

.label {
  display: block;
  color: #121212;
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
}
@media (min-width: 768px) and (max-width: 991px) {
  .label {
    font-size: 15px;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  .label {
    font-size: 14px;
  }
}
@media (min-width: 321px) and (max-width: 575px) {
  .label {
    font-size: 15px;
  }
}
@media (max-width: 320px) {
  .label {
    font-size: 14px;
  }
}

.value-container {
  display: flex;
  align-items: center;
  gap: 16px;
  border-radius: 16px;
  word-wrap: break-word;
  overflow-wrap: anywhere;
}
@media (min-width: 321px) and (max-width: 575px) {
  .value-container {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 320px) {
  .value-container {
    flex-direction: column;
    align-items: flex-start;
  }
}

.value {
  color: #121212;
  font-family: "Unbounded", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.4;
}
@media (min-width: 768px) and (max-width: 991px) {
  .value {
    font-size: 20px;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  .value {
    font-size: 18px;
  }
}
@media (min-width: 321px) and (max-width: 575px) {
  .value {
    font-size: 16px;
  }
}
@media (max-width: 320px) {
  .value {
    font-size: 14px;
  }
}

.copy-btn {
  color: #121212;
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2px 0px;
  cursor: pointer;
  gap: 8px;
  border-bottom: 1px solid #121212;
  word-wrap: break-word;
}
@media (min-width: 321px) and (max-width: 575px) {
  .copy-btn {
    font-size: 14px;
  }
}
.copy-btn:focus {
  color: #ffa53b;
}
.copy-btn:focus svg path {
  stroke: #fe9400;
}
.copy-btn:hover {
  color: #ffa53b;
}
.copy-btn:hover svg path {
  stroke: #fe9400;
}

.reports .title2 {
  margin-bottom: 24px;
}

.reports-item-content {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  margin: 24px 0;
}
.reports-item-content img {
  max-width: 220px;
  border-radius: 12px;
  object-fit: cover;
}
@media (min-width: 768px) and (max-width: 991px) {
  .reports-item-content {
    flex-direction: column;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  .reports-item-content {
    flex-direction: column;
  }
}
@media (min-width: 321px) and (max-width: 575px) {
  .reports-item-content {
    flex-direction: column;
  }
}
@media (max-width: 320px) {
  .reports-item-content {
    flex-direction: column;
  }
}

.reports-info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
}
@media (min-width: 768px) and (max-width: 991px) {
  .reports-info {
    width: 100%;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  .reports-info {
    width: 100%;
  }
}
@media (min-width: 321px) and (max-width: 575px) {
  .reports-info {
    width: 100%;
  }
}
.reports-info__title {
  color: #121212;
  font-family: "Unbounded", sans-serif;
  font-size: 24px;
  line-height: 1.4;
  font-weight: 400;
}
@media (min-width: 768px) and (max-width: 991px) {
  .reports-info__title {
    font-size: 20px;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  .reports-info__title {
    font-size: 18px;
  }
}
@media (min-width: 321px) and (max-width: 575px) {
  .reports-info__title {
    font-size: 16px;
  }
}
@media (max-width: 320px) {
  .reports-info__title {
    font-size: 16px;
  }
}
.reports-info__descr {
  color: #1d252b;
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
  margin-top: 8px;
}
.reports-info__date {
  color: #4e5f6e;
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  line-height: 1.5;
  font-weight: 400;
}

.seperator {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid #1d252b;
}
@media (min-width: 768px) and (max-width: 991px) {
  .seperator {
    width: 100%;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  .seperator {
    width: 100%;
  }
}
@media (min-width: 321px) and (max-width: 575px) {
  .seperator {
    width: 100%;
  }
}
@media (max-width: 320px) {
  .seperator {
    width: 100%;
  }
}

.reports-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  border: 1px solid #121212;
  border-radius: 8px;
  text-decoration: none;
  color: #121212;
  background: transparent;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
}
.reports-btn svg {
  width: 20px;
  height: 20px;
}
.reports-btn:hover {
  background: #fe9400;
  color: #fff;
}
.reports-btn:hover svg path {
  stroke: #fff;
}

.single-report {
  margin-top: 24px;
}
.single-report p {
  color: #4e5f6e;
  font-family: "Manrope", sans-serif;
  font-size: 15px;
  line-height: 1.5;
  font-weight: 400;
  margin: 15px 0;
}

.our-projects {
  position: relative;
  padding: 32px 0 60px 0;
}
.our-projects__btn {
  display: flex;
  margin-left: auto;
  padding: 10px 24px;
}

.projects {
  display: grid;
}
.projects .project {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid transparent;
}
.projects .project__title {
  margin-top: 24px;
  color: #121212;
  font-family: "Unbounded", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.4;
}
.projects .project__descr {
  color: #1d252b;
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 24px;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  flex: 1 0 0;
  align-self: stretch;
}

.projects-view {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 2px 0px;
  margin-top: 34px;
  gap: 8px;
}

.project-single__image{
	max-width: 672px !important;
	height: 584px !important;
	object-fit: cover;
}

.project-single__image {
  float: right;
  margin: 0 0 20px 20px;
}

.our-projects__link-wrapper {
  display: flex;
  justify-content: flex-end;
}

.border-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  position: relative;
  text-decoration: none;
  color: #121212;
  transition: color 0.3s ease;
}

.border-link::before,
.border-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  height: 1px;
  transition: all 0.4s ease;
}

.border-link::before {
  left: 0;
  width: 100%;
  background-color: #121212;
  z-index: 1;
}

.border-link::after {
  right: 0;
  width: 0%;
  background-color: #fe9400;
  z-index: 2;
}

.border-link:hover::after {
  width: 100%;
  left: 0;
  right: auto;
}

.border-link:hover {
  color: #fe9400;
}

.border-link:hover svg path {
  stroke: #fe9400;
}

.project {
  border-radius: 8px;
  padding: 16px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.04);
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.project.border {
  border: 1px solid #e8ecf2;
}
.project:hover {
  border-radius: 16px;
  border: 1px solid #fe9400;
  background: #fff;
  box-shadow: 0px 0px 24px 10px rgba(0, 0, 0, 0.08);
}

.projects {
  position: relative;
}
.projects .title2 {
  margin-bottom: 24px;
}

.projects .grid {
  gap: 32px;
}

.project img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  object-position: top center;
  border-radius: 12px;
}

 

span.disabled,
a.disabled {
  pointer-events: none;
  opacity: 0.5;
  cursor: not-allowed;
}

.swiper-wrapper {
  flex-grow: 2;
}

.swiper-slide {
  flex-grow: 1;
}

.project-gallery .swiper-slide img {
  width: 432px !important;
  height: 576px !important;
  object-fit: cover;
  
}

.partner .swiper-slide img {
  box-sizing: content-box;
  object-fit: cover;
  border-radius: 16px;
  background: #fff;
  padding: 35px 39px 0;
  box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.04);
}

.partner-banner-wrapper {
  display: flex;
}

.partner-banner {
  max-width: 1368px;
  margin: 0 auto 100px;
  display: flex;
  padding: 24px;
  margin-top: 40px;
  justify-content: center;
  align-items: center;
  align-self: stretch;
  border-radius: 16px;
  background: #e8ecf2;
}
.partner-banner__buttons {
  display: flex;
  gap: 24px;
}
.partner-banner__buttons svg {
  width: auto;
}
.partner-banner__buttons .tertiary:hover svg path {
  stroke: #fe9400;
}
.partner-banner__text {
  flex: 1 0 0;
  max-width: 786px;
  color: #1d252b;
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
}

.partners-listing .title2 {
  margin-top: 24px;
  margin-bottom: 32px;
}
.partners-listing__content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.partners-listing .item {
  color: #1d252b;
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
}
.partners-listing .item:hover {
  color: #ff6600;
}

.partnership {
  padding: 60px 20px;
  background: #fff;
}
.partnership__container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}
.partnership__text {
  flex: 1 1 40%;
}
.partnership__text .partnership__title {
  align-self: stretch;
  color: #fe9400;
  font-family: "Unbounded", sans-serif;
  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.4;
  margin-bottom: 20px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .partnership__text .partnership__title {
    font-size: 32px;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  .partnership__text .partnership__title {
    font-size: 28px;
  }
}
@media (min-width: 321px) and (max-width: 575px) {
  .partnership__text .partnership__title {
    font-size: 24px;
  }
}
.partnership__text .partnership__desc {
  font-size: 16px;
  color: #1d252b;
  font-family: "Unbounded", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.4;
}
.partnership__form {
  flex: 1 1 50%;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.partnership__form .form__input,
.partnership__form .form__select,
.partnership__form .form__textarea {
  padding: 12px 16px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 14px;
  width: 100%;
  resize: none;
  cursor: pointer;
}
.partnership__form .form__select {
  color: #c8cfd6;
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
}
.partnership__form .form__textarea {
  min-height: 100px;
}
.partnership__form .form__button {
  display: flex;
  align-items: center;
  align-self: flex-end;
  padding: 10px 24px;
  gap: 8px;
}
.partnership__form .form__button svg {
  width: auto;
}

.form__group {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  gap: 4px;
  color: #1d252b;
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.5;
  box-sizing: border-box;
}

input:focus,
textarea:focus,
.form__input:focus,
.select-button:focus,
.form__textarea:focus {
  border-color: #ff6600;
  outline: none;
  background: #fff;
}

.form__textarea::placeholder,
.form__input::placeholder,
.form__select::placeholder {
  color: #c8cfd6;
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
}

.contacts .contacts-wrap {
  display: flex;
  justify-content: space-between;
  gap: 24px;
}
@media (min-width: 576px) and (max-width: 767px) {
  .contacts .contacts-wrap {
    flex-direction: column;
    gap: 30px;
  }
}
@media (min-width: 321px) and (max-width: 575px) {
  .contacts .contacts-wrap {
    flex-direction: column;
    gap: 30px;
  }
}
@media (max-width: 320px) {
  .contacts .contacts-wrap {
    flex-direction: column;
    gap: 30px;
  }
}
.contacts iframe {
  width: 687px !important;
  height: 502px;
}
@media (min-width: 576px) and (max-width: 767px) {
  .contacts iframe {
    width: 100% !important;
    height: 502px !important;
  }
}
@media (min-width: 321px) and (max-width: 575px) {
  .contacts iframe {
    width: 100% !important;
    height: 400px !important;
  }
}
@media (max-width: 320px) {
  .contacts iframe {
    width: 100% !important;
    height: 400px !important;
  }
}
.contacts .title2 {
  margin-bottom: 24px;
}
.contacts .contacts-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.contacts .contacts-list .contacts-item {
  display: flex;
  align-items: center;
  gap: 16px;
}
.contacts .contacts-list__title {
  color: #1d252b;
  font-family: "Unbounded", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  word-break: break-word;
}
.contacts .item svg {
  width: auto;
}
.contacts .address-info {
  margin-top: 24px;
}
.contacts .address-info__title {
  color: #fe9400;
  font-family: "Unbounded", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
}
.contacts .address-list {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.contacts .address-list__item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}
.contacts .address-list__item-wrap {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.contacts .address-list__item-title {
  color: #121212;
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.5;
}

.contacts .address-list__item-title a:hover {
    color: #fe9400;
}

.contacts .address-list__item-descr {
  color: #121212;
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
}

.contacts .address-list__item-descr:hover {
    text-decoration: underline;
}

form {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 0 24px rgba(0, 0, 0, 0.04);
}

input,
textarea,
.form__input,
.select-button {
  display: block;
  padding: 8px 16px;
  align-self: stretch;
  border: 1px solid #c8cfd6;
  border-radius: 8px;
  background: #fff;
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: #333;
  transition: all 0.3s;
}

input:focus,
textarea:focus,
.form__input:focus,
.select-button:focus,
.textarea:focus {
  border-color: #ff6600;
  outline: none;
  background: #fff;
}

textarea {
  resize: none;
  max-height: 45px;
  min-height: 20px;
}

.form__input::placeholder,
.selected-value {
  color: #c8cfd6;
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}

.form__label {
  color: #1d252b;
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  transition: all 0.3s;
}

.form-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 24px;
  gap: 8px;
  margin-top: 24px;
  align-self: end;
  border-radius: 8px;
  background: #121212;
}

.form__group {
  display: flex;
  align-items: stretch;
  width: 100%;
  margin-top: 8px;
  margin-bottom: 8px;
}

.form__group textarea {
  padding: 8px 12px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 6px;
  transition: border-color 0.3s;
}

.form__group textarea::placeholder {
  color: #c8cfd6;
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}

.custom-select {
  position: relative;
  display: inline-block;
}

.select-button {
  font-size: 15px;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  cursor: pointer;
  width: 100%;
}

.select-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
  border: 1px solid #caced1;
  border-radius: 0.25rem;
  background: #fff;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  max-height: 230px;
  overflow-y: auto;
  width: 100%;
}
.select-dropdown.hidden {
  display: none;
}
.select-dropdown li {
  padding: 10px;
  cursor: pointer;
  display: flex;
  gap: 0.5rem;
  align-items: center;
}
.select-dropdown li:hover, .select-dropdown li:focus {
  background-color: #f2f2f2;
  border-radius: 4px;
}
.select-dropdown li.selected {
  background-color: #f2f2f2;
  border-radius: 4px;
  font-weight: bold;
}
.select-dropdown::-webkit-scrollbar {
  width: 7px;
}
.select-dropdown::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 25px;
}
.select-dropdown::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 25px;
}

.volunteer-content {
  gap: 25px;
}
.volunteer-content .volunteer-subtitle {
  color: #1d252b;
  font-family: "Unbounded", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.volunteer-content ul li {
  list-style-type: disc;
}
.volunteer-content .volunteer-list {
  display: flex;
  max-width: 671px;
  padding: 24px;
  border-radius: 16px;
  background: #e8ecf2;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}
.volunteer-content .volunteer-list .volunteer-wrap {
  gap: 10px;
  display: flex;
  flex-direction: column;
  padding-left: 28px;
}
.volunteer-content .volunteer-descr {
  margin: 16px 0;
  max-width: 672px;
}

.volunteer-form__subtitle {
  color: #fe9400;
  font-family: "Unbounded", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 24px;
}

.helper-form {
  padding: 0px 20px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.04);
}
.helper-form .strong {
  color: #121212;
  font-family: "Unbounded", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
}
.helper-form__descr {
  margin-top: 16px;
}
.helper-form__text {
  margin-top: 16px;
}
.helper-form__wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  margin: 0 auto;
}
.helper-form__info {
  flex: 1 1 45%;
}
.helper-form__title {
  margin-bottom: 24px;
}
.helper-form__content {
  border-radius: 16px;
  background: #e8ecf2;
  padding: 24px;
  border-radius: 12px;
}
.helper-form__content p,
.helper-form__content strong {
  margin-bottom: 10px;
  color: #121212;
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
}
.helper-form__content strong {
  font-weight: 700;
}
.helper-form__list {
  padding-left: 20px;
}
@media (min-width: 576px) and (max-width: 767px) {
  .helper-form__list {
    padding-left: 0;
  }
}
@media (min-width: 321px) and (max-width: 575px) {
  .helper-form__list {
    padding-left: 0;
  }
}
@media (max-width: 320px) {
  .helper-form__list {
    padding-left: 0;
  }
}
.helper-form__list li {
  margin-bottom: 16px;
}
.helper-form__form {
  flex: 1 1 45%;
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}
.helper-form__form-title {
  color: #ff7a00;
  margin-bottom: 20px;
  font-size: 18px;
}
.helper-form__label {
  display: block;
  margin-bottom: 16px;
  font-weight: 500;
}
.helper-form__input, .helper-form__select, .helper-form__textarea {
  width: 100%;
  margin-top: 4px;
  padding: 10px;
  border-radius: 6px;
  color: #c8cfd6;
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  border: 1px solid #c8cfd6;
}
.helper-form__submit {
  background: #000;
  color: #fff;
  padding: 10px 24px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
  align-self: flex-end;
  transition: background 0.3s ease;
}
.helper-form__submit:hover {
  background: #333;
}
.helper-form__fieldset {
  margin-bottom: 20px;
  border: none;
  padding: 0;
}
.helper-form__legend {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #333;
}
.helper-form__option {
  display: flex;
  margin-bottom: 10px;
  font-size: 16px;
  color: #333;
}
.helper-form__option input[type=radio] {
  margin-right: 10px;
  vertical-align: middle;
}

input:focus,
textarea:focus,
select:focus,
.form__input:focus,
.form__textarea:focus,
.helper-form__select:focus {
  border-color: #ff6600;
  outline: none;
  background: #fff;
}

.helper-form__input,
.helper-form__select,
.helper-form__textarea {
  color: #333;
  background: #fff;
  border: 1px solid #c8cfd6;
  border-radius: 8px;
  align-self: stretch;
  padding: 8px 16px;
  font-family: Manrope, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  transition: all 0.3s;
  display: block;
}

.flex-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 24px;
}
@media (min-width: 576px) and (max-width: 767px) {
  .flex-bottom {
    gap: 20px;
  }
}

.text-volonteur {
  color: #4e5f6e;
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
}

/* ============
   UTILS
   ============ */
*,
*::before,
*::after {
  box-sizing: border-box !important;
}

html,
body {
  height: 100%;
  margin: 0;
  scroll-behavior: smooth;
}

body {
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  margin: 0;
  padding: 0;
  line-height: 1.5;
  color: #1d252b;
  background: #fbfcfc;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1;
}
@media screen and (max-width: 1368px) {
  main {
    display: block;
  }
}

.container {
  max-width: 1368px;
  margin: 0 auto;
  padding: 0 16px;
}
@media (min-width: 992px) and (max-width: 1367px) {
  .container {
    max-width: 100%;
    padding: 0 16px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .container {
    max-width: 768px;
    padding: 0 16px;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  .container {
    max-width: 100%;
    padding: 0 20px;
  }
}
@media (min-width: 321px) and (max-width: 575px) {
  .container {
    max-width: 100%;
    max-width: 400px;
    padding: 0 16px;
  }
}
@media (max-width: 320px) {
  .container {
    max-width: 100%;
    max-width: 350px;
    padding: 0 12px;
  }
}

@media (max-width: 1024px) {
  .nav-list {
    display: flex;
    list-style: none;
    gap: 20px;
  }
  .nav-list .nav-link {
    text-decoration: none;
    color: #000;
    padding: 10px;
    font-size: 20px;
    transition: color 0.3s ease;
  }
  .nav-list .nav-link:hover {
    color: #fe9400;
  }
  .nav-list .current a {
    color: #fe9400;
  }
}
@media (max-width: 1024px) and (min-width: 1368px) and (max-width: 1920px) {
  .nav-list {
    display: none;
  }
}
@media (max-width: 1024px) {
  .soc-links {
    display: flex;
    gap: 10px;
    width: 100%;
  }
  .menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
  }
  .menu-toggle .burger-icon {
    display: block;
    width: 30px;
    height: 3px;
    background-color: #000;
    position: relative;
    transition: all 0.3s ease;
    z-index: 9999;
  }
  .menu-toggle .burger-icon::before, .menu-toggle .burger-icon::after {
    content: "";
    position: absolute;
    width: 30px;
    height: 3px;
    background-color: #000;
    transition: all 0.3s ease;
  }
  .menu-toggle .burger-icon::before {
    top: -8px;
  }
  .menu-toggle .burger-icon::after {
    top: 8px;
  }
  .lang {
    display: flex;
    align-items: center;
    gap: 5px;
  }
}
@media (max-width: 1024px) {
  .nav-list {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 0px;
    left: 0;
    right: 0;
    background-color: #fff;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }
  .nav-list.show {
    display: flex;
    z-index: 1;
    min-height: 100%;
  }
  .menu-toggle {
    display: block;
    padding: 10px;
  }
  .menu-toggle.active .burger-icon {
    background-color: transparent;
  }
  .menu-toggle.active .burger-icon::before {
    top: 0;
    transform: rotate(45deg);
  }
  .menu-toggle.active .burger-icon::after {
    top: 0;
    transform: rotate(-45deg);
  }
}
.mb-32 {
  margin-bottom: 32px;
}

.m-20 {
  margin: 20px;
}

.p-10 {
  padding: 10px;
}

.p-20 {
  padding: 20px;
}

@media (max-width: 1024px) {
  /* Header */
  .header-content {
    justify-content: space-between;
    max-width: none;
  }
  .header-logo {
    margin-right: 10px;
    min-width: 230px;
  }
  nav {
    flex-wrap: nowrap;
  }
  .nav-list {
    justify-content: center;
    gap: 15px;
  }
  .soc-links {
    justify-content: center;
    gap: 8px;
  }
  .lang {
    display: none;
  }
  /* Hero */
  .hero {
    justify-content: center;
    text-align: center;
  }
  .hero img {
    width: 100%;
  }
  .hero-text {
    position: absolute;
    bottom: 40px;
    left: 15px;
  }
  /* About Us */
  .about-us-content {
    flex-direction: column;
  }
  .about-us-wrap {
    display: flex;
    flex-direction: column;
  }
  .about-us-info {
    margin-bottom: 30px;
  }
  /* Our Projects */
  .projects {
    flex-wrap: wrap;
  }
  .cols-3 {
    grid-template-columns: 1fr 1fr;
  }
  .project {
    flex: 1 1 100%;
  }
  /* Reports */
  /* Volunteer */
  .volunteer-content {
    flex-direction: column;
    align-items: center;
  }
  .volunteer-form {
    width: 100%;
  }
  /* Footer */
  .footer__top {
    flex-wrap: wrap;
    gap: 20px;
  }
  .footer__nav {
    flex-wrap: wrap;
    justify-content: center;
  }
  .footer__socials {
    flex-wrap: wrap;
    justify-content: center;
  }
  .partner-banner-wrapper {
    gap: 20px;
  }
  .partner-banner__buttons {
    flex-direction: column;
    gap: 20px;
  }
}
@media (max-width: 768px) {
  /* Header */
  .header {
    padding: 5px 20px;
  }
  .header .button {
    display: none;
  }
  .header-logo {
    margin-right: 10px;
    min-width: 230px;
  }
  .hero-text {
    position: absolute;
    left: 0;
    bottom: 0;
    top: 50%;
    transform: translateY(-50%, 50%);
  }
  .header-content {
    flex-wrap: nowrap;
    justify-content: space-between;
    max-width: none;
  }
  .lang {
    display: none;
  }
  nav {
    flex-wrap: nowrap;
  }
  .nav-list {
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }
  .soc-links {
    display: none !important;
  }
  /* Hero */
  .hero {
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
  }
  .hero .container {
    padding: 0;
  }
  .hero img {
    max-width: 100%;
    min-height: 100vh;
    object-fit: cover;
  }
  .hero .hero-title {
    font-size: 28px;
  }
  .hero-img,
  .hero-text {
    width: 100%;
    margin-bottom: 20px;
  }
  /* About Us */
  .about-us-content {
    flex-direction: column;
  }
  .about-us img {
    max-width: 100%;
    min-height: auto;
  }
  .about-us-info {
    margin-bottom: 30px;
  }
  /* Our Projects */
  .projects {
    flex-wrap: wrap;
  }
  .cols-3 {
    grid-template-columns: 1fr 1fr;
  }
  .project {
    flex: 1 1 100%;
  }
  /* Reports */
  /* Volunteer */
  .volunteer-content {
    flex-direction: column;
    align-items: center;
  }
  .volunteer-form {
    width: 100%;
  }
  .volunteer-list {
    min-width: 100%;
  }
  /* Footer */
  .footer__top {
    flex-wrap: wrap;
    gap: 20px;
  }
  .footer__nav {
    flex-wrap: wrap;
    justify-content: flex-start;
  }
  .footer__socials {
    flex-wrap: wrap;
    justify-content: center;
  }
  .partner-banner-wrapper {
    flex-direction: column;
    gap: 20px;
  }
}
@media (max-width: 480px) {
  .header {
    padding: 10px 4px;
  }
  /* Header */
  .header-content {
    flex-wrap: nowrap;
  }
  nav {
    flex-wrap: nowrap;
  }
  .nav .button {
    display: none;
  }
  .nav-list {
    justify-content: center;
    gap: 12px;
  }
  .soc-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px;
    display: none !important;
  }
  /* Hero */
  .hero {
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
  }
  .hero .container {
    padding: 0;
  }
  .hero img {
    max-width: 100%;
    min-height: 100vh;
    object-fit: cover;
  }
  .hero-title {
    font-size: 20px;
  }
  .hero-img,
  .hero-text {
    width: 100%;
    margin-bottom: 15px;
  }
  .lang {
    display: none;
  }
  /* About Us */
  .about-us img {
    max-width: 100%;
    min-height: auto;
  }
  .about-us-content {
    flex-direction: column;
  }
  .about-us-info {
    margin-bottom: 20px;
  }
  /* Our Projects */
  .projects {
    flex-wrap: wrap;
  }
  .cols-3 {
    grid-template-columns: 1fr;
  }
  .project {
    flex: 1 1 100%;
  }
  /* Reports */
  /* Volunteer */
  .volunteer-content {
    flex-direction: column;
    align-items: center;
  }
  .volunteer-info {
    width: 100%;
  }
  .volunteer-list {
    width: 100%;
    min-width: 100%;
  }
  .volunteer-form {
    width: 100%;
  }
  /* Footer */
  .footer__top {
    flex-wrap: wrap;
    gap: 20px;
  }
  .footer__nav {
    flex-wrap: wrap;
    justify-content: flex-start;
  }
  .footer__socials {
    flex-wrap: wrap;
    justify-content: center;
  }
  .partner-banner-wrapper {
    flex-direction: column;
    gap: 20px;
  }
  .partner-banner__buttons {
    flex-direction: column;
    gap: 10px;
  }
}
#copy-alert {
  position: fixed;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, #ff8c00, #ffca28);
  color: white;
  padding: 12px 24px;
  border-radius: 12px;
  font-family: sans-serif;
  font-weight: 500;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
  transition: top 0.4s ease, opacity 0.4s ease;
  opacity: 0;
  z-index: 9999;
}

#copy-alert.show {
  top: 20px;
  opacity: 1;
}

/* Основной контейнер слайдера */
.swiper {
  width: 100%;
  padding: 20px 0;
}

.swiper-wrapper {
  display: flex;
}

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

.swiper-pagination-bullet {
  width: 6px;
  height: 6px;
  border-radius: 16px;
  background: #c8cfd6;
  box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.04);
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.swiper-pagination-bullet-active {
  width: 6px;
  height: 6px;
  border-radius: 16px;
  background: #fe9400 !important;
  box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.04);
  transform: scale(1.2);
}

.swiper-button-prev,
.swiper-button-next {
  background-color: rgba(0, 0, 0, 0.4) !important;
  border-radius: 50% !important;
  width: 40px !important;
  height: 40px !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  color: #fff !important;
  font-size: 20px !important;
  box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.1) !important;
  transition: background-color 0.3s ease, box-shadow 0.3s ease !important;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
  background-color: #fe9400 !important;
  box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.2) !important;
}

.swiper-button-prev::after,
.swiper-button-next::after {
  font-size: 20px !important;
}

.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}

#metaslider-id-60 .flexslider .flex-direction-nav li a {
  background-color: rgba(0, 0, 0, 0.4) !important;
  border-radius: 50% !important;
  width: 40px !important;
  height: 40px !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  color: #fff !important;
  font-size: 20px !important;
  box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.1) !important;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}
#metaslider-id-60 .flexslider .flex-direction-nav li a:hover {
  background-color: #fe9400 !important;
  box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.2) !important;
}
#metaslider-id-60 .flexslider .flex-direction-nav li a:focus {
  outline: none !important;
  border: none !important;
}


.section {
  padding-top: 100px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .section {
    padding-top: 50px;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  .section {
    padding-top: 50px;
  }
}
@media (min-width: 321px) and (max-width: 575px) {
  .section {
    padding-top: 40px;
  }
}
@media (max-width: 320px) {
  .section {
    padding-top: 32px;
  }
}

.title2 {
  color: #1d252b;
  font-family: "Unbounded", sans-serif;
  font-size: 56px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.3;
}
@media (min-width: 768px) and (max-width: 991px) {
  .title2 {
    font-size: 40px;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  .title2 {
    font-size: 32px;
  }
}
@media (min-width: 321px) and (max-width: 575px) {
  .title2 {
    font-size: 28px;
  }
}
@media (max-width: 320px) {
  .title2 {
    font-size: 24px;
  }
}

.title-h3 {
  color: #1d252b;
  font-family: "Unbounded", sans-serif;
  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.4;
}
@media (min-width: 768px) and (max-width: 991px) {
  .title-h3 {
    font-size: 32px;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  .title-h3 {
    font-size: 28px;
  }
}
@media (min-width: 321px) and (max-width: 575px) {
  .title-h3 {
    font-size: 24px;
  }
}
@media (max-width: 320px) {
  .title-h3 {
    font-size: 20px;
  }
}

.item {
  color: #1d252b;
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.5;
}

.descr {
  color: #1d252b;
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
}

.bold {
  font-weight: 700;
}

.current {
  position: relative;
}
.current a {
  color: #fe9400;
}
.current::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 1px;
  background-color: #fe9400;
}

/* по умолчанию 3 слайда */
#metaslider_50 .flex-slide {
  width: 33.333% !important;
}

/* планшеты — 2 слайда */
@media (max-width: 1024px) {
  #metaslider_50 .flex-slide {
    width: 50% !important;
  }
}
/* телефоны — 1 слайд */
@media (max-width: 768px) {
  #metaslider_50 .flex-slide {
    width: 100% !important;
  }
}
/* ============
   PAGE PROJECTS STYLES 
   ============ */
.project-gallery {
  margin-top: 60px;
}
.project-gallery .swiper {
  padding-bottom: 40px;
}
.project-gallery .swiper-slide img {
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}
.project-gallery .swiper-pagination {
  text-align: center;
  margin-top: 20px;
}
.project-gallery .swiper-button-prev,
.project-gallery .swiper-button-next {
  color: #333;
}

.project-single__layout {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .project-single__layout {
    flex-direction: column;
    gap: 20px;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  .project-single__layout {
    flex-direction: column;
    gap: 16px;
  }
}
@media (min-width: 321px) and (max-width: 575px) {
  .project-single__layout {
    flex-direction: column;
    gap: 12px;
  }
}
.project-single__layout .project-single__text {
  flex: 1;
  /* max-width: 672px; */
}

/* ============
   BREADCRUMBS STYLES
   ============ */
.breadcrumbs {
  font-size: 14px;
  padding-top: 24px;
  margin-bottom: 24px;
}
.breadcrumbs span {
  color: #4e5f6e;
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  text-decoration: none;
}
.breadcrumbs a {
  color: #121212;
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
}
.breadcrumbs a:hover {
  text-decoration: underline;
}

.nf-form-title {
  color: #fe9400;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
}

.nf-form-layout form {
  box-shadow: none !important;
}

#metaslider-id-60 .flexslider .flex-control-nav li a.flex-active {
  background: #fe9400 !important;
}

/* ============
   PAGINTATION STYLES
   ============ */
.pagination {
  margin-bottom: 30px;
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 32px;
}
.pagination .page-numbers {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 8px;
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  text-decoration: none;
  border: 1px solid #f5cba7;
  transition: all 0.2s ease;
}
.pagination .page-numbers:hover {
  background: #fe9400;
  color: #fff;
}
.pagination .page-numbers.current {
  background: #fe9400;
  color: #fff;
  pointer-events: none;
}
.pagination .page-numbers.disabled {
  background-color: #fff3e6;
  color: #999;
  border: 1px solid #eee;
  cursor: not-allowed;
  pointer-events: none;
}
.pagination .page-numbers.dots {
  background: none;
  border: none;
  color: #aaa;
  pointer-events: none;
}

.metaslider.ms-theme-default-base .flexslider .flex-control-nav li a:focus{
   outline: 2px solid white !important;
}

.flex-control-paging li a{
    width: 8px !important;
    height: 8px !important;
}

#metaslider-id-60 .flexslider .flex-control-nav li a:not(.flex-active){
    background: #c8cfd6 !important;
}

/*div#nf-form-5-cont{*/
/*    padding: 35px;*/
/*}*/

@media (min-width: 576px) and (max-width: 767px) {
 div#nf-form-5-cont{
    padding: 5px !important;
}
}

@media (min-width: 321px) and (max-width: 575px) {
 div#nf-form-5-cont{
    padding: 5px !important;
}
}

.gtranslate-wrapper {
  position: absolute;
  top: 30px; 
  right: 30px;
  z-index: 9999;
}

.gt_float_switcher .gt-selected .gt-current-lang span.gt_float_switcher-arrow{
    height: 14px !important;
    width: 8px !important;
}


.wp-block-gallery.has-nested-images figure.wp-block-image:has(figcaption):before{
    backdrop-filter: blur(0px);
}

.wp-block-gallery.has-nested-images figure.wp-block-image figcaption{
    background: #ffa53b;
    color: black;
    text-shadow: none;
}


.volunteer-form{
    padding: 20px;
}