/* Base */
/* Reset and base styles  */
* {
  padding: 0px;
  margin: 0px;
  border: none;
}

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

/* Links */
a,
a:link,
a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

/* Common */
aside,
nav,
footer,
header,
section,
main {
  display: block;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  font-size: inherit;
  font-weight: inherit;
}

ul,
ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

img,
svg {
  max-width: 100%;
  height: auto;
}

address {
  font-style: normal;
}

/* Form */
input,
textarea,
button,
select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background-color: transparent;
}

input::-ms-clear {
  display: none;
}

button,
input[type=submit] {
  display: inline-block;
  box-shadow: none;
  background-color: transparent;
  background: none;
  cursor: pointer;
}

input:focus,
input:active,
button:focus,
button:active {
  outline: none;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

label {
  cursor: pointer;
}

legend {
  display: block;
}

:root {
  --container-width: 1300px;
  --container-padding: 15px;
  --font-main: "Gilroy", sans-serif;
  --page-bg: #fff;
  --text-color: #000;
  --text-muted: #909090;
  --accent: #ffc30d;
  --text-white: #fff;
  --black: #000;
  --viking: #64afdc;
  --feijoa: #b1d686;
  --ecstasy: #f5831f;
  --denim: #1d7abf;
  --curious-blue: #28aae1;
  --lightning-yellow: #ffc415;
  --sun: #fbac18;
}

.dark {
  --page-bg: #252526;
  --text-color: #fff;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--page-bg);
  color: var(--text-color);
  font-family: var(--font-main);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  display: block;
}

section {
  padding-top: 70px;
}
section.main {
  padding-top: 0;
}

.btn-donate {
  font-size: 34px;
  font-weight: bold;
  padding: 10px 40px;
  border-radius: 75px;
  max-width: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 1023px) {
  .btn-donate {
    font-size: 28px;
    padding: 10px 25px;
  }
}
.btn-donate::before {
  content: "";
  position: relative;
  left: 0px;
  bottom: 0px;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: block;
  z-index: 1;
  margin-right: 10px;
  background-image: url("./../img/icons/arrow_button.svg");
  background-size: contain;
  background-repeat: no-repeat;
  transition: all 0.3s ease-in-out;
}
.btn-donate:hover::before {
  transform: rotate(45deg);
}
.btn-donate--orange {
  color: #000000;
  background: #f5831f;
}
.btn-donate--orange:hover {
  background: #e56b00;
}
.btn-donate--white {
  border: 1px solid #000000;
  color: #000000;
  background: #ffffff;
}
.btn-donate--white:hover {
  background: #cccccc;
}
.btn-donate--white::before {
  background-image: url("./../img/icons/arrow_button-yellow.svg");
}
.btn-donate--trans {
  border: 1px solid #000000;
  color: #000000;
  background: transparent;
}
.btn-donate--trans::before {
  background-image: url("./../img/icons/arrow_button-orange2.svg");
}
.btn-donate--footer {
  color: #000000 !important;
  background: #fbac18;
  min-width: 300px;
  font-size: 44px;
  text-decoration: none !important;
  transition: all 0.3s ease-in-out;
}
.btn-donate--footer:hover {
  background: #f5831f;
}
.btn-donate--footer::before {
  width: 32px;
  height: 32px;
  margin-right: 20px;
}
@media (max-width: 767px) {
  .btn-donate--footer {
    font-size: 28px;
    padding: 10px 25px;
    min-width: auto;
  }
}
.btn-donate--yellow {
  color: #000000;
  background: #fbac18;
}
.btn-donate--yellow:hover {
  background: #f5831f;
}
.btn-donate--black {
  color: #ffffff;
  background: #000000;
}
.btn-donate--ar-orange::before {
  background-image: url("./../img/icons/arrow_button_orange.svg");
}

.btn-inline {
  display: flex;
}
.btn-inline a {
  margin-bottom: 15px;
}
.btn-inline a.btn-long {
  max-width: none;
}
.btn-inline a:nth-child(1) {
  margin-right: 15px;
}
@media (max-width: 475px) {
  .btn-inline a:nth-child(1) {
    margin-left: 0;
  }
}
.btn-inline a:nth-child(2) {
  margin-right: 15px;
}
@media (max-width: 475px) {
  .btn-inline a:nth-child(2) {
    margin-left: 0;
  }
}
@media (max-width: 870px) {
  .btn-inline {
    flex-wrap: wrap;
  }
}
@media (max-width: 475px) {
  .btn-inline {
    flex-direction: column;
  }
  .btn-inline a {
    margin-left: 0;
    margin: 10px 0;
  }
}

.title-1 {
  font-size: 44px;
  font-style: normal;
  font-weight: bold;
  line-height: normal;
}
.title-1.color-white {
  color: var(--text-white);
}
@media (max-width: 1200px) {
  .title-1 {
    font-size: 34px;
  }
}
@media (max-width: 767px) {
  .title-1 {
    font-size: 30px;
  }
}

.title-4 {
  font-size: 36px;
  font-style: normal;
  font-weight: bold;
  line-height: normal;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .title-4 {
    font-size: 24px;
  }
}

.title-2 {
  font-size: 67px;
  font-style: normal;
  font-weight: bold;
  line-height: normal;
  text-transform: uppercase;
}
@media (max-width: 1200px) {
  .title-2 {
    font-size: 47px;
  }
}
@media (max-width: 767px) {
  .title-2 {
    font-size: 40px;
  }
}
.title-2--regular {
  font-weight: 400;
}
.title-2--line {
  display: flex;
  align-items: center;
  justify-content: center;
}
.title-2--line::after {
  content: "";
  position: absolute;
  width: 565px;
  height: 45px;
  z-index: -1;
  background-image: url("./../img/icons/line.svg");
  background-repeat: no-repeat;
  background-size: contain;
}
@media (max-width: 767px) {
  .title-2--line::after {
    width: 80%;
  }
}
.title-2--line-yellow2 {
  display: flex;
  align-items: center;
  justify-content: center;
}
.title-2--line-yellow2::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 3.9375rem;
  z-index: -1;
  background-image: url("./../img/icons/line-yellow2.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
@media (max-width: 767px) {
  .title-2--line-yellow2::after {
    width: 80%;
  }
}
.title-2--line-yellow3 {
  display: flex;
  align-items: center;
  justify-content: center;
}
.title-2--line-yellow3::after {
  content: "";
  position: absolute;
  width: 80%;
  height: 5rem;
  z-index: -1;
  background-image: url("./../img/icons/line-yellow3.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
@media (max-width: 1200px) {
  .title-2--line-yellow3::after {
    width: 95%;
  }
}
@media (max-width: 767px) {
  .title-2--line-yellow3::after {
    width: 80%;
  }
}
.title-2--star {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.title-2--star::after {
  content: "";
  position: absolute;
  width: 156px;
  height: 124px;
  z-index: -1;
  margin-left: -400px;
  background-image: url("./../img/icons/pupils_des.svg");
  background-repeat: no-repeat;
  background-size: contain;
}
@media (max-width: 767px) {
  .title-2--star::after {
    width: 100px;
    height: 80px;
    margin-left: -200px;
  }
}
.title-2--sline {
  display: flex;
  align-items: center;
  justify-content: center;
}
.title-2--sline::after {
  content: "";
  position: absolute;
  width: 410px;
  height: 120px;
  z-index: -1;
  background-image: url("./../img/icons/sline.svg");
  background-repeat: no-repeat;
  background-size: contain;
}
@media (max-width: 767px) {
  .title-2--sline::after {
    width: 300px;
    height: 80px;
  }
}
.title-2--sline-yellow {
  display: flex;
  align-items: center;
  justify-content: center;
}
.title-2--sline-yellow::after {
  content: "";
  position: absolute;
  width: 410px;
  height: 120px;
  z-index: -1;
  background-image: url("./../img/icons/sline-yellow.svg");
  background-repeat: no-repeat;
  background-size: contain;
}
@media (max-width: 767px) {
  .title-2--sline-yellow::after {
    width: 300px;
    height: 80px;
  }
}
.title-2--sline-feijoa {
  display: flex;
  align-items: center;
  justify-content: center;
}
.title-2--sline-feijoa::after {
  content: "";
  position: absolute;
  width: 576px;
  height: 168px;
  z-index: -1;
  background-image: url("../img/icons/sline-feijoa.svg");
  background-repeat: no-repeat;
  background-size: contain;
}
@media (max-width: 767px) {
  .title-2--sline-feijoa::after {
    width: 220px;
    height: 80px;
  }
}
.title-2--sline-feijoa2 {
  display: flex;
  align-items: center;
  justify-content: center;
}
.title-2--sline-feijoa2::after {
  content: "";
  position: absolute;
  width: 37.3125rem;
  height: 12.375rem;
  z-index: -1;
  background-image: url("../img/icons/line-zigzag-feijoa-thin.svg");
  background-repeat: no-repeat;
  background-size: contain;
}
@media (max-width: 767px) {
  .title-2--sline-feijoa2::after {
    width: 220px;
    height: 80px;
  }
}
.title-2--sline-curious-blue {
  display: flex;
  align-items: center;
  justify-content: center;
}
.title-2--sline-curious-blue::after {
  content: "";
  position: absolute;
  width: 38.6875rem;
  height: 13.125rem;
  z-index: -1;
  background-image: url("../img/icons/sline-curious-blue.svg");
  background-repeat: no-repeat;
  background-size: contain;
}
@media (max-width: 767px) {
  .title-2--sline-curious-blue::after {
    width: 220px;
    height: 80px;
  }
}

.title-3 {
  font-size: 48px;
  font-style: normal;
  font-weight: bold;
  line-height: normal;
  text-transform: uppercase;
}
@media (max-width: 1200px) {
  .title-3 {
    font-size: 38px;
  }
}

.title {
  font-weight: 700;
}
.title span {
  position: relative;
  display: inline-flex;
}
.title span::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: -1;
  -webkit-mask-image: var(--svg);
          mask-image: var(--svg);
  -webkit-mask-position: center center;
          mask-position: center center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  width: calc(100% + 6.25rem);
  height: calc(100% + 5rem);
  background-color: var(--denim);
  transition: background-color 0.2s ease-in;
  transform: translate(-50%, -50%);
}
@media (max-width: 87.5em) {
  .title span::after {
    width: 110%;
  }
}
.title--lined span::after {
  --svg: url("data:image/svg+xml,%3Csvg width='421' height='60' viewBox='0 0 421 60' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M25 35C102.616 35 180.007 30 257.64 30C290.116 30 322.494 25 355.05 25C368.571 25 384.836 25 396 25' stroke='%23B1D686' stroke-width='50' stroke-linecap='round' /%3E%3C/svg%3E");
}
.title--lined-feijoa span::after {
  background-color: var(--feijoa);
}

.text {
  color: var(--text-color);
  font-size: 20px;
  font-style: normal;
  font-weight: 450;
  line-height: 150%; /* 27px */
}
.text.color-white {
  color: var(--text-white);
}
@media (max-width: 1200px) {
  .text {
    font-size: 18px;
  }
}

.headblock {
  display: flex;
  text-align: center;
  align-content: center;
  justify-content: center;
  flex-direction: column;
}

#moreText {
  display: none;
}

.page--hackaton .container {
  --container-width: 85.375rem;
}
.page--hackaton .partners {
  padding-top: 7.1875rem;
}
@media (max-width: 63.9375em) {
  .page--hackaton .partners {
    padding-top: 4.375rem;
  }
}

.none {
  display: none !important;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  border: 0;
  padding: 0;
  white-space: nowrap;
  -webkit-clip-path: inset(100%);
          clip-path: inset(100%);
  clip: rect(0 0 0 0);
  overflow: hidden;
}

.no-scroll {
  overflow-y: hidden;
}

.container {
  padding: 0 var(--container-padding);
  max-width: var(--container-width);
  margin: 0 auto;
  position: relative;
}

.container-right {
  /* overflow-x: hidden; */
  padding-left: calc((100% - var(--container-width)) / 2 + var(--container-padding));
}
@media (max-width: 1229px) {
  .container-right {
    padding-left: var(--container-padding);
    padding-right: var(--container-padding);
  }
}

.container-left {
  /* overflow-x: hidden; */
  padding-right: calc((100% - var(--container-width)) / 2 + var(--container-padding));
}
@media (max-width: 1229px) {
  .container-left {
    padding-left: var(--container-padding);
    padding-right: var(--container-padding);
  }
}

html,
body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.footer {
  margin-top: auto;
}

.footer {
  padding: 60px 0;
  background-color: #e3e3e3;
}

.section__title, .section__subtitle {
  font-weight: 700;
  text-transform: uppercase;
}
.section__title {
  font-size: clamp(2rem, 1.55rem + 2.25vw, 4.25rem);
}
.section__title--large {
  font-size: clamp(2rem, 1.2rem + 4vw, 6rem);
}
.section__title--bg-denim {
  display: flex;
}
.section__title--bg-denim span {
  padding: 2.3125rem 1.875rem;
  background-color: var(--denim);
}
@media (max-width: 63.9375em) {
  .section__title--bg-denim span {
    padding: 0.9375rem 1.25rem;
  }
}
.section__subtitle {
  font-size: clamp(1.5rem, 1.05rem + 2.25vw, 3.75rem);
}

/* Blocks */
.aboutus-precont {
  border-radius: 60px;
  padding: 40px 70px;
  border: 1px solid #000000;
  font-size: 24px;
  margin: 70px 0 50px 0;
}
@media (max-width: 767px) {
  .aboutus-precont {
    font-size: 20px;
    padding: 20px;
    border-radius: 30px;
  }
}
.aboutus-precont p {
  margin-bottom: 1rem;
}
.aboutus-precont a {
  margin-top: 30px;
  text-transform: uppercase;
  font-size: 20px;
  max-width: 350px;
}
.aboutus-precont a.not {
  text-transform: none;
  color: #000000;
  text-decoration: underline;
  max-width: none;
  margin: 0;
  font-size: unset;
}
.aboutus-precont.mb0 {
  margin-bottom: 0;
}
.aboutus-precont.no-border {
  border: none;
  margin-top: 0;
  padding-top: 0;
}
.aboutus-precont.no-border.pb0 {
  padding-bottom: 0;
}
.aboutus-precont.dop {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  padding-bottom: 80px;
}
.aboutus-precont.dop.pb0 {
  padding-bottom: 0;
}
@media (max-width: 767px) {
  .aboutus-precont.dop {
    padding-bottom: 50px;
  }
}
.aboutus-precont.dop a {
  max-width: none;
}
.aboutus-precont.dopv .fundraising-block {
  margin-top: 20px;
}
.aboutus-precont.dopv .fundraising-block-item:hover .fundraising-block-img img {
  transform: scale(1.1);
}
.aboutus-precont.dopv .fundraising-block-img img {
  transform: scale(1);
}
.aboutus-precont.dopv a {
  max-width: none;
}
.aboutus-precont.dopv .btnfblock a {
  flex-direction: row;
}
.aboutus-ab-item {
  padding: 0 35px;
}
@media (max-width: 767px) {
  .aboutus-ab-item {
    padding: 0 10px;
  }
}
.aboutus-ab-item .ab-item--head {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 22px;
  min-height: 58px;
}
@media (max-width: 1200px) {
  .aboutus-ab-item .ab-item--head {
    font-size: 21px;
  }
}
.aboutus-ab-item .ab-item--img {
  margin-bottom: 35px;
  position: relative;
}
.aboutus-ab-item .ab-item--des {
  width: 156px;
  height: 124px;
  background-image: url("./../img/icons/aboutus_des.svg");
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  right: 0;
  bottom: -70px;
  z-index: -1;
}
.aboutus-ab-item .ab-item--forname {
  font-size: 16px;
  min-height: 91px;
}
@media (max-width: 767px) {
  .aboutus-ab-item .ab-item--content {
    font-size: 14px;
  }
}
.aboutus-ab-item .ab-item--name {
  font-size: 28px;
  font-weight: bold;
  text-transform: uppercase;
}
@media (max-width: 1200px) {
  .aboutus-ab-item .ab-item--name {
    font-size: 24px;
  }
}
.aboutus-ab-item .ab-item--work {
  font-size: 16px;
  font-weight: bold;
  text-transform: uppercase;
}
.aboutus-ab-item .btn-click-action {
  font-size: 24px;
  color: #fbac18;
  margin-top: 15px;
}
@media (max-width: 767px) {
  .aboutus-ab-item .btn-click-action {
    font-size: 18px;
  }
}
.aboutus-slider {
  position: relative;
}
.aboutus-slider .swiper-aboutus-nav {
  position: absolute;
  width: 100%;
  top: 0;
  z-index: 10;
}
.aboutus-slider .swiper-aboutus {
  display: block;
  width: 125px;
  height: 125px;
  position: absolute;
  z-index: 10;
  background-image: url("./../img/icons/aboutus_arrow.svg");
  background-repeat: no-repeat;
  background-size: contain;
  top: 320px;
  opacity: 0.7;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
@media (max-width: 1200px) {
  .aboutus-slider .swiper-aboutus {
    width: 80px;
    height: 80px;
  }
}
@media (max-width: 767px) {
  .aboutus-slider .swiper-aboutus {
    width: 48px;
    height: 48px;
    top: 280px;
  }
}
.aboutus-slider .swiper-aboutus:hover {
  opacity: 1;
}
.aboutus-slider .swiper-aboutus-next {
  right: 20px;
}
.aboutus-slider .swiper-aboutus-prev {
  left: 20px;
  transform: rotate(180deg);
}

.footer-nav {
  display: grid;
  gap: 24px;
}
@media (max-width: 767px) {
  .footer-nav {
    gap: 12px;
  }
}

.footer-nav__title {
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%; /* 27px */
}

.footer-nav__list {
  font-size: 16px;
  font-style: normal;
  font-weight: 450;
  line-height: 150%; /* 24px */
}
.footer-nav__list li {
  padding: 8px 0;
}

.footer {
  padding: 30px 0 40px 0;
  background: #000000;
  color: var(--text-white);
  font-size: 20px;
}
@media (max-width: 767px) {
  .footer {
    font-size: 16px;
  }
}
.footer a {
  color: var(--text-white);
  text-decoration: underline;
}
.footer__row {
  display: flex;
}
@media (max-width: 767px) {
  .footer__row {
    flex-direction: column;
  }
}
.footer__payment {
  width: 50%;
}
@media (max-width: 767px) {
  .footer__payment {
    width: 100%;
  }
}
.footer__join {
  width: 50%;
  padding-left: 10%;
}
@media (max-width: 767px) {
  .footer__join {
    width: 100%;
    padding-left: 0;
    margin-top: 30px;
  }
}
.footer__join__btn {
  margin: 30px 0;
}
.footer__join__soc {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 300px;
  gap: 40px;
  margin: 45px 0;
}
@media (max-width: 767px) {
  .footer__join__soc {
    justify-content: flex-start;
    width: 100%;
    gap: 20px;
    margin: 35px 0;
  }
  .footer__join__soc svg {
    width: 40px;
    height: auto;
  }
}
.footer__join__contact {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}
.footer__join__contact__icon {
  width: 50px;
  padding-right: 20px;
  display: flex;
  align-items: center;
}
.footer__join__contact__text {
  display: flex;
  flex-direction: column;
}
.footer__title {
  color: #FBAC18;
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .footer__title {
    font-size: 20px;
  }
}

.formfollow {
  position: fixed;
  z-index: 1000;
  width: 100vw;
  height: 100vh;
}
.formfollow--container {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px 0 20px;
  position: relative;
  z-index: 10;
}
.formfollow--bg {
  background-color: #000000;
  opacity: 0.6;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}
.formfollow--inner {
  max-width: 600px;
  position: relative;
  padding: 45px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.9);
}
@media (max-width: 767px) {
  .formfollow--inner {
    padding: 35px 25px 25px 25px;
  }
}
.formfollow--inner.succes .formfollow--def {
  display: none;
}
.formfollow--inner.succes .formfollow--succes {
  display: block;
}
.formfollow--close {
  font-size: 40px;
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 0 10px;
  line-height: 40px;
  z-index: 10;
  transform: rotate(45deg);
  opacity: 0.5;
  cursor: pointer;
  transform-origin: center center;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 767px) {
  .formfollow--close {
    top: 5px;
    right: 5px;
  }
}
.formfollow--close:hover {
  transform: rotate(-45deg);
}
.formfollow--head {
  font-size: 23px;
  font-weight: bold;
}
@media (max-width: 767px) {
  .formfollow--head {
    font-size: 20px;
  }
}
.formfollow--desc {
  font-size: 16px;
}
.formfollow__input {
  font-size: 20px;
  width: 100%;
  height: 40px;
  border-bottom: 1px solid #000000;
  margin: 13px 0;
}
@media (max-width: 767px) {
  .formfollow__input {
    font-size: 14px;
  }
}
.formfollow__input:-webkit-autofill {
  background: transparent !important;
}
.formfollow__input:-webkit-autofill:hover {
  background: transparent !important;
}
.formfollow__input:-webkit-autofill:focus {
  background: transparent !important;
}
.formfollow-form {
  position: relative;
}
.formfollow-form__btn {
  background-image: url("./../img/icons/arrow_button_orange.svg");
  width: 30px;
  height: 30px;
  right: 0;
  top: 18px;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  transform: rotate(0deg);
}
.formfollow-form__btn:hover {
  transform: rotate(45deg);
}
.formfollow-form.error .formfollow__input {
  border-bottom: 1px solid red;
}
.formfollow--succes {
  display: none;
}
.formfollow-fordots {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.formfollow-dots {
  margin-top: 10px;
  width: 13.4px;
  height: 13.4px;
  background: #ffc30d;
  color: #ffc30d;
  border-radius: 50%;
  box-shadow: 22.4px 0, -22.4px 0;
  animation: dots-u8fzftmd 1s infinite linear alternate;
}

@keyframes dots-u8fzftmd {
  0% {
    box-shadow: 22.4px 0, -22.4px 0;
  }
  33% {
    box-shadow: 22.4px 0, -22.4px 0 rgba(255, 195, 13, 0.13);
    background: rgba(255, 195, 13, 0.13);
  }
  66% {
    box-shadow: 22.4px 0 rgba(255, 195, 13, 0.13), -22.4px 0;
    background: rgba(255, 195, 13, 0.13);
  }
}
.follow_button {
  position: fixed;
  right: 0;
  bottom: 0;
  cursor: pointer;
  z-index: 90;
  width: 200px;
  height: 200px;
}
@media (max-width: 767px) {
  .follow_button {
    width: 100px;
    height: 100px;
  }
}
.follow_button .mpd {
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
}
.follow_button .mpd-1 {
  transition: 0.3s;
  opacity: 1;
  transform-origin: center center;
  animation: hoverWave linear 1s infinite;
}
.follow_button .mpd-2 {
  fill: #ffffff;
  transition: 0.3s;
  opacity: 1;
  transform-origin: center center;
  animation: hoverWave2 linear 1s infinite;
}
.follow_button .mpd-inner {
  transform-origin: center center;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: 1200ms ease 0s normal none 1 running shake;
  animation-iteration-count: infinite;
  -webkit-animation: 1200ms ease 0s normal none 1 running shake;
  -webkit-animation-iteration-count: infinite;
}
@keyframes hoverWave {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  40% {
    transform: scale(1.1);
    opacity: 0.7;
  }
  80% {
    transform: scale(1.2);
    opacity: 0.4;
  }
  100% {
    transform: scale(1.3);
    opacity: 0;
  }
}
@keyframes hoverWave2 {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  30% {
    transform: scale(1.1);
    opacity: 0.7;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.4;
  }
  80% {
    transform: scale(1.3);
    opacity: 0;
  }
  100% {
    transform: scale(1.4);
    opacity: 0;
  }
}
@keyframes shake {
  0% {
    transform: rotateZ(0deg);
    -ms-transform: rotateZ(0deg);
    -webkit-transform: rotateZ(0deg);
  }
  10% {
    transform: rotateZ(-30deg);
    -ms-transform: rotateZ(-30deg);
    -webkit-transform: rotateZ(-30deg);
  }
  20% {
    transform: rotateZ(15deg);
    -ms-transform: rotateZ(15deg);
    -webkit-transform: rotateZ(15deg);
  }
  30% {
    transform: rotateZ(-10deg);
    -ms-transform: rotateZ(-10deg);
    -webkit-transform: rotateZ(-10deg);
  }
  40% {
    transform: rotateZ(7.5deg);
    -ms-transform: rotateZ(7.5deg);
    -webkit-transform: rotateZ(7.5deg);
  }
  50% {
    transform: rotateZ(-6deg);
    -ms-transform: rotateZ(-6deg);
    -webkit-transform: rotateZ(-6deg);
  }
  60% {
    transform: rotateZ(5deg);
    -ms-transform: rotateZ(5deg);
    -webkit-transform: rotateZ(5deg);
  }
  70% {
    transform: rotateZ(-4.28571deg);
    -ms-transform: rotateZ(-4.28571deg);
    -webkit-transform: rotateZ(-4.28571deg);
  }
  80% {
    transform: rotateZ(3.75deg);
    -ms-transform: rotateZ(3.75deg);
    -webkit-transform: rotateZ(3.75deg);
  }
  90% {
    transform: rotateZ(-3.33333deg);
    -ms-transform: rotateZ(-3.33333deg);
    -webkit-transform: rotateZ(-3.33333deg);
  }
  100% {
    transform: rotateZ(0deg);
    -ms-transform: rotateZ(0deg);
    -webkit-transform: rotateZ(0deg);
  }
}
.foundation .title-2 {
  margin: 150px 0 80px 0;
}
@media (max-width: 1023px) {
  .foundation .title-2 {
    margin: 50px 0 20px 0;
  }
}
.foundation .swiper-scrollbar-honorary {
  height: 20px;
  border-radius: 60px;
  width: 80%;
  margin: 20px auto 0 auto;
  background: #f7f7f7;
}
.foundation .swiper-scrollbar-foundation {
  height: 20px;
  border-radius: 60px;
  width: 80%;
  margin: 20px auto 0 auto;
  background: #f7f7f7;
}
.foundation .swiper-scrollbar-office {
  height: 20px;
  border-radius: 60px;
  width: 80%;
  margin: 20px auto 0 auto;
  background: #f7f7f7;
}
.foundation .swiper-scrollbar-drag {
  cursor: grab;
  background-color: #fdfdfd;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.15);
}
.foundation h3 {
  font-size: 28px;
  font-weight: 700;
  margin: 60px 0 60px 30px;
}
@media (max-width: 767px) {
  .foundation h3 {
    margin: 30px 0 30px 10px;
  }
}
.foundation .foundation-slider .aboutus-ab-item .ab-item--des {
  background-image: url("./../img/icons/aboutus_des2.svg");
}
.foundation .office-slider .aboutus-ab-item .ab-item--des {
  background-image: url("./../img/icons/aboutus_des3.svg");
}

.fundraising {
  background-color: #fec214;
  overflow: hidden;
  border-radius: 60px;
  position: relative;
  z-index: 0;
  max-width: calc(var(--container-width) - 30px);
  margin: 70px auto 0 auto;
}
@media (max-width: 767px) {
  .fundraising {
    border-radius: 30px;
  }
}
.fundraising .container {
  position: relative;
}
.fundraising-bg {
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  top: 0;
  background-image: url("./../img/icons/fundraising3.webp");
  background-position: top center;
  background-repeat: no-repeat;
}
.fundraising-content {
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  width: 63%;
  font-size: 28px;
}
@media (max-width: 767px) {
  .fundraising-content {
    width: 90%;
    font-size: 20px;
  }
}
.fundraising-desc {
  text-align: center;
  margin-top: 25px;
}
.fundraising-line {
  width: 100%;
  height: 25px;
  background-color: #8dd2ef;
  border-radius: 100px;
  overflow: hidden;
  margin-top: 55px;
  position: relative;
  display: flex;
}
.fundraising-line-bar {
  content: "";
  display: block;
  width: 30%;
  height: 100%;
  position: absolute;
  background-color: #ffffff;
  border-radius: 100px;
}
.fundraising-items {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
}
@media (max-width: 767px) {
  .fundraising-items {
    margin-top: 15px;
  }
}
.fundraising .donat-raised {
  font-weight: bold;
}
.fundraising .btnblock {
  margin-top: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 125px;
}
@media (max-width: 767px) {
  .fundraising .btnblock {
    padding-bottom: 50px;
    margin-top: 45px;
    flex-direction: column;
  }
}
.fundraising .btnblock .btn-donate {
  margin: 0 25px;
}
@media (max-width: 767px) {
  .fundraising .btnblock .btn-donate {
    min-width: 200px;
    margin-bottom: 20px;
  }
}
.fundraising-block {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  justify-content: space-between;
  margin-top: 60px;
}
@media (max-width: 870px) {
  .fundraising-block {
    width: 80%;
    margin: 60px auto;
  }
}
@media (max-width: 767px) {
  .fundraising-block {
    width: 100%;
    padding: 0 20px;
  }
}
.fundraising-block-item {
  width: 47%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 870px) {
  .fundraising-block-item {
    width: 100%;
  }
}
.fundraising-block-item a {
  display: flex;
  flex-direction: column;
}
.fundraising-block-item:hover .fundraising-block-img img {
  transform: scale(1.4);
}
.fundraising-block-img {
  display: flex;
  width: 100%;
  height: 240px;
  overflow: hidden;
  border-radius: 15px;
  align-items: center;
  justify-content: center;
}
@media (max-width: 475px) {
  .fundraising-block-img {
    height: 180px;
  }
}
.fundraising-block-img img {
  display: block;
  transform: scale(1.3);
  transition: all 0.3s ease-in-out;
}
.fundraising-block-name {
  font-size: 28px;
  font-weight: 700;
  color: #000000;
  margin-top: 15px;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .fundraising-block-name {
    font-size: 24px;
  }
}
.fundraising-block-cost {
  font-size: 28px;
  font-weight: 400;
  color: #000000;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .fundraising-block-cost {
    font-size: 24px;
  }
}
.fundraising-block--col3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}
.fundraising-block--col3 .fundraising-block-item {
  width: 100%;
}
.fundraising-block--col3 .fundraising-block-img {
  height: unset;
}
@media (max-width: 62em) {
  .fundraising-block--col3 {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 54.375em) {
  .fundraising-block--col3 {
    width: 100%;
    margin: 0;
  }
}
@media (max-width: 35.9375em) {
  .fundraising-block--col3 {
    grid-template-columns: 1fr;
  }
}
.fundraising .btnfblock {
  margin-bottom: 50px;
  display: flex;
  justify-content: space-between;
}
.fundraising .btnfblock a {
  display: flex;
  flex-direction: row;
}
@media (max-width: 767px) {
  .fundraising .btnfblock .btn-donate {
    font-size: 20px;
  }
}

.header {
  padding: 16px 0;
  background-color: var(--accent);
}

.main {
  background-color: var(--accent);
  border-radius: 0 0 60px 60px;
}
@media (max-width: 767px) {
  .main {
    border-radius: 0;
  }
}
@media (max-width: 767px) {
  .main .container {
    padding: 0;
  }
}
.main__grid {
  display: flex;
  align-items: center;
}
@media (max-width: 1400px) {
  .main__grid {
    width: 90%;
    margin: 0 auto;
  }
}
@media (max-width: 870px) {
  .main__grid {
    height: 500px;
  }
}
@media (max-width: 767px) {
  .main__grid {
    height: 610px;
  }
}
.main__desc {
  max-width: 540px;
  position: absolute;
  z-index: 1;
  margin-left: 80px;
}
@media (max-width: 767px) {
  .main__desc {
    margin-left: 20px;
    max-width: 82%;
  }
}
.main__desc .main__text {
  margin-top: 18px;
}
@media (max-width: 374px) {
  .main__desc .main__text .text {
    font-size: 16px;
  }
}
.main__picture {
  overflow: hidden;
  position: relative;
  border-radius: 40px 40px 0 0;
}
@media (max-width: 870px) {
  .main__picture {
    height: 100%;
  }
}
.main__picture img {
  width: 100%;
  height: auto;
}
@media (max-width: 870px) {
  .main__picture img {
    max-width: none;
    height: 100%;
    width: auto;
    margin-left: -20%;
  }
}
@media (max-width: 767px) {
  .main__picture img {
    margin-left: -300px;
  }
}
@media (max-width: 475px) {
  .main__picture img {
    margin-left: -440px;
  }
}
.main__picture::before {
  width: 50%;
  height: 100%;
  content: "";
  display: block;
  position: absolute;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.84) 28.65%, rgba(0, 0, 0, 0) 100%);
}
@media (max-width: 767px) {
  .main__picture::before {
    width: 70%;
  }
}
.main__btn {
  margin-top: 50px;
}
.main__bg {
  background-color: var(--accent);
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -1;
  top: 0;
  border-radius: 0 0 60px 60px;
}

.upper {
  text-transform: uppercase;
}

.mainslider .main-slider {
  margin-top: 96px;
  position: relative;
}
@media (max-width: 767px) {
  .mainslider .main-slider {
    margin-top: 60px;
  }
}
.mainslider .swiper-slide {
  height: 100%;
}
.mainslider .swiper-slide img {
  display: block;
  width: 100%;
  height: 31rem;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 1200px) {
  .mainslider .swiper-slide img {
    height: 25rem;
  }
}
@media (max-width: 767px) {
  .mainslider .swiper-slide img {
    height: 15rem;
  }
}
.mainslider .swiper-main-nav {
  position: absolute;
  width: 100%;
  top: 35%;
  z-index: 1;
  height: 0;
}
@media (max-width: 1200px) {
  .mainslider .swiper-main-nav {
    top: 40%;
  }
}
.mainslider .swiper-main-nav .swiper-arrow {
  width: 125px;
  height: 125px;
  display: block;
  background-image: url("./../img/icons/mainslider-arrow.svg");
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  opacity: 0.7;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
@media (max-width: 1200px) {
  .mainslider .swiper-main-nav .swiper-arrow {
    width: 80px;
    height: 80px;
  }
}
@media (max-width: 767px) {
  .mainslider .swiper-main-nav .swiper-arrow {
    width: 48px;
    height: 48px;
  }
}
.mainslider .swiper-main-nav .swiper-arrow:hover {
  opacity: 1;
}
.mainslider .swiper-main-nav .swiper-main-next {
  right: 2%;
}
@media (max-width: 767px) {
  .mainslider .swiper-main-nav .swiper-main-next {
    right: 5%;
  }
}
.mainslider .swiper-main-nav .swiper-main-prev {
  left: 2%;
  transform: rotate(180deg);
}
@media (max-width: 767px) {
  .mainslider .swiper-main-nav .swiper-main-prev {
    left: 5%;
  }
}
.mainslider .swiper-main-pag {
  position: absolute;
  bottom: 30px;
  width: 100%;
  z-index: 10;
}
.mainslider .swiper-main-pag .swiper-main-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
}
.mainslider .swiper-main-pag .swiper-main-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #ffffff;
}

.maps--container {
  display: flex;
  margin-top: 50px;
}
@media (max-width: 767px) {
  .maps--container {
    flex-direction: column-reverse;
  }
}
.maps--left {
  width: 65%;
  padding-right: 30px;
}
@media (max-width: 767px) {
  .maps--left {
    width: 100%;
    padding-right: 0;
    margin-top: 30px;
  }
}
.maps--pano {
  display: inline-block;
  position: relative;
  margin-bottom: 50px;
}
.maps--pano img {
  border-radius: 20px;
}
@media (max-width: 767px) {
  .maps--pano {
    width: 100%;
  }
  .maps--pano img {
    width: 100%;
    height: auto;
  }
}
.maps--line {
  position: absolute;
  right: -110%;
  top: 50px;
  width: 100%;
}
@media (max-width: 767px) {
  .maps--line {
    transform: rotate(-70deg);
    right: 43%;
    top: -55%;
    width: 60%;
  }
}
.maps--title {
  font-size: 30px;
  font-weight: bold;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .maps--title {
    font-size: 20px;
  }
}
.maps--content {
  font-size: 16px;
  font-weight: bold;
  margin-left: 20px;
  position: relative;
  min-height: 330px;
}
@media (max-width: 767px) {
  .maps--content {
    font-size: 16px;
    min-height: auto;
  }
}
.maps--content ul {
  margin-left: 0;
  margin-top: 25px;
  position: absolute;
  max-width: 500px;
  width: 170%;
}
@media (max-width: 767px) {
  .maps--content ul {
    position: relative;
    width: 100%;
  }
}
.maps--content ul li {
  list-style: disc;
  margin-bottom: 1rem;
}

.mediab-slider {
  padding: 50px 0 30px 0;
  background-color: #8dd2ef;
  background-image: url("./../img/icons/media_bg.webp");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
.mediab .mediab-slider {
  margin-top: 25px;
  position: relative;
}
.mediab .mediab-slider .swiper-scrollbar-mediab {
  height: 20px;
  border-radius: 60px;
  width: 80%;
  margin: 20px auto 0 auto;
  background: #fec214;
}
.mediab .mediab-slider .swiper-scrollbar-drag {
  cursor: grab;
  background-color: #fff0c3;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.15);
}
.mediab .swiper-slide {
  height: 100%;
  border-radius: 15px;
  overflow: hidden;
}
.mediab .swiper-slide img {
  display: block;
  width: auto;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transform-origin: center center;
}
@media (max-width: 767px) {
  .mediab .swiper-slide img {
    width: 100%;
  }
}
.mediab-title {
  font-size: 24px;
  font-weight: bold;
  padding-left: 30px;
  width: 74%;
}
@media (max-width: 1200px) {
  .mediab-title {
    font-size: 18px;
    padding-left: 20px;
  }
}
.mediab-desc {
  font-size: 14px;
}
.mediab-icon {
  width: 85px;
  height: 85px;
  background-image: url("./../img/icons/media-icon.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  position: relative;
}
@media (max-width: 1200px) {
  .mediab-icon {
    width: 45px;
    height: 45px;
  }
}
.mediab-box {
  position: absolute;
  width: 100%;
  height: 130px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.64) 28.65%, rgba(0, 0, 0, 0) 100%);
  color: #ffffff;
  padding: 25px 15px;
  display: flex;
  z-index: 1;
}
@media (max-width: 1200px) {
  .mediab-box {
    height: 110px;
    padding: 15px;
  }
}
.mediab-link img {
  transition: all 0.3s ease-in-out;
  transform: scale(1);
}
.mediab-link:hover img {
  transform: scale(1.1);
}

.mobile-nav {
  position: fixed;
  top: -100%;
  width: 100%;
  height: 100%;
  z-index: 99;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 40px;
  padding-bottom: 40px;
  background: var(--accent);
  transition: all 0.2s ease-in;
}

.mobile-nav--open {
  top: 0;
}

.mobile-nav a {
  color: #000000;
}

.mobile-nav__list {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 20px;
  font-size: 28px;
}
.mobile-nav__list .active {
  opacity: 0.5;
}

/* Nav Icon */
.mobile-nav-btn {
  --time: 0.1s;
  --width: 40px;
  --height: 30px;
  --line-height: 2px;
  --spacing: 8px;
  --color: #000;
  --radius: 4px;
  /* Fixed height and width */
  /* height: var(--height); */
  /* width: var(--width); */
  /* Dynamic height and width */
  height: calc(var(--line-height) * 3 + var(--spacing) * 2);
  width: var(--width);
  display: flex;
  justify-content: center;
  align-items: center;
}

.nav-icon {
  position: relative;
  width: var(--width);
  height: var(--line-height);
  background-color: var(--color);
  border-radius: var(--radius);
}

.nav-icon::before,
.nav-icon::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  width: var(--width);
  height: var(--line-height);
  border-radius: var(--radius);
  background-color: var(--color);
  transition: transform var(--time) ease-in, top var(--time) linear var(--time);
}

.nav-icon::before {
  /* top: calc(var(--line-height) * -2); */
  top: calc(-1 * (var(--line-height) + var(--spacing)));
}

.nav-icon::after {
  /* top: calc(var(--line-height) * 2); */
  top: calc(var(--line-height) + var(--spacing));
}

.nav-icon.nav-icon--active {
  background-color: transparent;
}

.nav-icon.nav-icon--active::before,
.nav-icon.nav-icon--active::after {
  top: 0;
  transition: top var(--time) linear, transform var(--time) ease-in var(--time);
}

.nav-icon.nav-icon--active::before {
  transform: rotate(45deg);
}

.nav-icon.nav-icon--active::after {
  transform: rotate(-45deg);
}

/* Layout */
.mobile-nav-btn {
  position: relative;
  z-index: 999;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
}

.nav__logo {
  flex-shrink: 0;
}

.nav__list {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 58px;
}
@media (max-width: 1023px) {
  .nav__list {
    gap: 35px;
  }
}
.nav__list a {
  color: #000000;
}
.nav__list a:hover,
.nav__list a.active {
  color: #000000;
  text-decoration: underline;
}
@media (max-width: 767px) {
  .nav__list {
    display: none;
  }
}

.nav__btns {
  display: flex;
  gap: 12px;
}
@media (max-width: 767px) {
  .nav__btns {
    display: none;
  }
}

.nav__icon {
  display: none;
}
@media (max-width: 767px) {
  .nav__icon {
    display: block;
  }
}

.ourgoals-items {
  margin-top: 75px;
  align-items: flex-start;
  justify-content: space-around;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 20px 20px;
  padding: 0 20px;
}
@media (max-width: 767px) {
  .ourgoals-items {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}
.ourgoals-item {
  margin: 0 40px 0 0;
}
@media (max-width: 767px) {
  .ourgoals-item {
    margin: 0;
    padding: 0 30px;
  }
}
.ourgoals-item--text {
  font-size: 28px;
  font-weight: bold;
  text-align: left;
  text-transform: uppercase;
  min-height: 100px;
}
@media (max-width: 767px) {
  .ourgoals-item--text {
    text-align: center;
    font-size: 20px;
    min-height: auto;
  }
}
.ourgoals-item--des {
  width: 100%;
  height: 40px;
  background-image: url("./../img/icons/ardown.svg");
  background-repeat: no-repeat;
  background-position: center center;
  margin: 50px 0 20px 0;
}
.ourgoals-item--dop {
  font-size: 28px;
}
@media (max-width: 767px) {
  .ourgoals-item--dop {
    font-size: 20px;
  }
}
.ourgoals-item--dop ul {
  list-style: decimal;
  margin-bottom: 40px;
  min-height: 165px;
}
@media (max-width: 767px) {
  .ourgoals-item--dop ul {
    min-height: auto;
  }
}
.ourgoals-item--dop ul li {
  list-style: decimal;
}
.ourgoals-item--dop-bot p {
  margin-bottom: 17px;
}
.ourgoals-item--dop-bot p::before {
  display: block;
  content: "";
  position: absolute;
  width: 32px;
  height: 36px;
  background-image: url("./../img/icons/pok.svg");
  background-repeat: no-repeat;
  background-size: contain;
  margin-left: -33px;
}
.ourgoals-item--icon {
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .ourgoals-item--icon {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

.partners {
  padding-bottom: 40px;
}
.partners-slider {
  padding: 50px 0 30px 0;
  background-color: transparent;
}
.partners .partners-slider {
  margin-top: 25px;
  position: relative;
}
.partners .partners-slider .partners_des_1 {
  width: 490px;
  height: 470px;
  display: block;
  position: absolute;
  z-index: 10;
  mix-blend-mode: hard-light;
  opacity: 0.8;
  bottom: 0;
  left: 0;
  background-image: url("./../img/icons/partners_des_1.svg");
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: contain;
}
@media (max-width: 767px) {
  .partners .partners-slider .partners_des_1 {
    width: 200px;
    height: 200px;
    bottom: 70px;
  }
}
.partners .partners-slider .partners_des_2 {
  width: 320px;
  height: 310px;
  display: block;
  position: absolute;
  z-index: 10;
  mix-blend-mode: hard-light;
  opacity: 1;
  top: 0;
  right: 0;
  background-image: url("./../img/icons/partners_des_2.svg");
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: contain;
}
@media (max-width: 767px) {
  .partners .partners-slider .partners_des_2 {
    width: 130px;
    height: 190px;
  }
}
.partners .partners-slider .swiper-scrollbar-partners {
  height: 20px;
  border-radius: 60px;
  width: 80%;
  margin: 20px auto 0 auto;
  background: #f7f7f7;
}
.partners .partners-slider .swiper-scrollbar-drag {
  cursor: grab;
  background-color: #fdfdfd;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.15);
}
.partners .partners-slider .slide-partn {
  width: 100%;
  min-height: 155px;
  height: 100%;
  border-radius: 15px;
  border: 1px solid #000000;
  display: flex;
  align-items: center;
  justify-content: center;
}
.partners .swiper-slide {
  height: 100%;
}
.partners .swiper-slide img {
  position: relative;
  display: block;
}
.partners-title {
  font-size: 30px;
  font-weight: bold;
}
@media (max-width: 1200px) {
  .partners-title {
    font-size: 20px;
  }
}
.partners-desc {
  font-size: 14px;
}
.partners-box {
  position: absolute;
  width: 100%;
  height: 64px;
  background: #ffffff;
  color: #000000;
  padding: 14px 15px;
  text-align: center;
  z-index: 1;
}
.partners__descr {
  margin-top: 3.75rem;
  font-size: 1.25rem;
}

.propage {
  padding: 0;
}
.propage__all {
  padding: 0;
}
.propage__all .aboutus-precont ul {
  margin-left: 30px;
  margin-bottom: 20px;
  margin-top: 10px;
}
.propage__all .aboutus-precont ul li {
  list-style-type: disc;
}
.propage__all .sliced {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 1023px) {
  .propage__all .sliced {
    flex-direction: column-reverse;
  }
}

.mt-30 {
  margin-top: 30px;
}

#swiper-proj {
  border-radius: 60px;
  overflow: hidden;
}

.prop__picture {
  position: relative;
  display: flex;
  justify-content: center;
}
.prop__picture img {
  width: 100vw;
}
.prop__picture:before {
  left: 0;
  width: 50%;
  height: 100%;
  content: "";
  display: block;
  position: absolute;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.84) 28.65%, rgba(0, 0, 0, 0) 100%);
}
.prop__picture.v2:before {
  display: none;
}

.promain_text {
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  height: 100%;
  align-items: center;
  width: 100%;
}
.promain_text .container {
  width: 100%;
}
.promain_text .main__title {
  display: flex;
  flex-direction: column;
  align-items: baseline;
}
.promain_text .title-1 {
  font-size: 64px;
  margin-top: -80px;
  width: auto;
  display: inline-block;
}
@media (max-width: 1200px) {
  .promain_text .title-1 {
    font-size: 47px;
  }
}
@media (max-width: 767px) {
  .promain_text .title-1 {
    font-size: 30px;
  }
}
.promain_text .title-1_dop {
  font-size: 20px;
  color: #ffffff;
  width: auto;
  display: inline-block;
}
@media (max-width: 767px) {
  .promain_text .title-1_dop {
    font-size: 17px;
  }
}

.policy {
  text-decoration: none !important;
  font-weight: bold;
}

.projs .slice_left {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.projs img {
  border-radius: 60px;
  text-align: center;
  margin: 50px 0;
}
@media (max-width: 767px) {
  .projs img {
    border-radius: 30px;
  }
}

.slice_left {
  max-width: 915px;
  width: 70%;
}
.slice_left.w100 {
  width: 100%;
  max-width: none;
}
@media (max-width: 1023px) {
  .slice_left {
    max-width: none;
    width: 100%;
  }
}
.slice_left .main-slider {
  position: relative;
}
.slice_left .swiper-main-pag {
  width: 100%;
  position: absolute;
  bottom: 30px;
  z-index: 10;
  display: flex;
  justify-content: center;
}
.slice_left .swiper-main-pag .swiper-main-pagination {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  width: 90%;
}
.slice_left .swiper-main-pag .swiper-main-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: #ffffff;
  margin-bottom: 10px;
}
.slice_right {
  padding-top: 50px;
  width: 27%;
}
@media (max-width: 1023px) {
  .slice_right {
    width: 100%;
  }
}

.sticky {
  top: 10px;
  border: 1px solid #000000;
  border-radius: 30px;
}
@media (max-width: 1023px) {
  .sticky {
    position: relative !important;
  }
}
.sticky_in {
  padding: 35px;
  box-sizing: border-box;
}
@media (max-width: 1023px) {
  .sticky_in {
    padding-left: 20%;
    padding-right: 20%;
  }
}
@media (max-width: 635px) {
  .sticky_in {
    padding: 35px;
  }
}
.sticky_top {
  display: flex;
  justify-content: space-around;
  padding-bottom: 5px;
  border-bottom: 1px solid #000000;
  font-size: 24px;
}
.sticky_mon {
  cursor: pointer;
}
.sticky_mon.active {
  background-image: url("./../img/icons/ffact.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
}
.sticky_cur {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: space-around;
  padding-bottom: 0px;
  border-bottom: 1px solid #000000;
  align-items: flex-end;
  margin-top: 25px;
}
.sticky_curr {
  font-size: 67px;
  min-width: 100px;
}
.sticky_curr::-moz-placeholder {
  color: #000000;
}
.sticky_curr::placeholder {
  color: #000000;
}
.sticky_dopc {
  font-size: 40px;
  color: #c8c8c8;
  font-weight: bold;
}
.sticky_chek {
  display: flex;
  justify-content: space-around;
  margin: 10px 0 20px 0;
}
.sticky_chekim {
  font-size: 27px;
  font-weight: bold;
  border: 1px solid #000000;
  border-radius: 75px;
  padding: 7px 0;
  width: 85px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.sticky_chekim:hover {
  color: #f5831f;
  border-color: #ffc30d;
}
.sticky_chekim.active {
  color: #f5831f;
  border-color: #ffc30d;
}
.sticky_chekim span {
  color: #c8c8c8;
  margin-left: 5px;
}

.shelterteam-item.aboutus-ab-item {
  padding: 0;
}
.shelterteam-item.aboutus-ab-item .btn-click-action {
  color: #f5831f;
  font-size: 14px;
  text-align: right;
  float: right;
}

.pupils-item.aboutus-ab-item {
  padding: 0;
}
.pupils-item.aboutus-ab-item .btn-click-action {
  color: #f5831f;
  font-size: 14px;
  text-align: right;
  float: right;
}

.projects-slider {
  padding: 50px 0 30px 0;
  background-color: #8dd2ef;
  background-image: url("./../img/icons/media_bg.webp");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
.projects .projects-slider {
  margin-top: 25px;
  position: relative;
}
.projects .projects-slider .swiper-scrollbar-projects {
  height: 20px;
  border-radius: 60px;
  width: 80%;
  margin: 20px auto 0 auto;
  background: #afe7ff;
}
.projects .projects-slider .swiper-scrollbar-drag {
  cursor: grab;
  background-color: #f4fcff;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.15);
}
.projects .swiper-slide {
  height: 100%;
  border-radius: 15px;
  overflow: hidden;
}
.projects .swiper-slide img {
  display: block;
  width: auto;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transform-origin: center center;
}
@media (max-width: 767px) {
  .projects .swiper-slide img {
    width: 100%;
  }
}
.projects-title {
  font-size: 24px;
  font-weight: bold;
  text-transform: uppercase;
}
@media (max-width: 1200px) {
  .projects-title {
    font-size: 18px;
  }
}
.projects-desc {
  font-size: 14px;
}
.projects-box {
  position: absolute;
  width: 100%;
  height: 90px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.64) 28.65%, rgba(0, 0, 0, 0) 100%);
  color: #ffffff;
  padding: 25px 15px;
  z-index: 1;
}
@media (max-width: 1200px) {
  .projects-box {
    height: 70px;
    padding: 15px;
  }
}
.projects-link img {
  transition: all 0.3s ease-in-out;
  transform: scale(1);
}
.projects-link:hover img {
  transform: scale(1.1);
}

.prshelter--container {
  background-color: #fbac18;
  padding: 57px 80px;
  border-radius: 60px;
  position: relative;
  overflow: hidden;
  background-image: url("./../img/icons/pshelter_bg.webp");
  background-repeat: no-repeat;
  background-size: cover;
}
@media (max-width: 767px) {
  .prshelter--container {
    padding: 20px 10px;
    border-radius: 30px;
    background-size: 490px;
    background-position: top center;
  }
}
.prshelter--container .desc {
  font-size: 20px;
  font-weight: bold;
  margin-top: 15px;
}
.prshelter--container .pshelter-des {
  width: 320px;
  height: 280px;
  background-image: url("./../img/icons/pshelter_des.svg");
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: contain;
  position: absolute;
  z-index: 1;
  left: 0;
  bottom: 0;
}
@media (max-width: 767px) {
  .prshelter--container .pshelter-des {
    z-index: 0;
  }
}
.prshelter-block {
  width: 100%;
  position: relative;
  display: flex;
  justify-content: space-between;
  margin-top: 50px;
}
@media (max-width: 767px) {
  .prshelter-block {
    flex-direction: column;
  }
}
.prshelter-slider {
  width: 45%;
  position: relative;
  display: flex;
  align-items: center;
}
.prshelter-slider img {
  border-radius: 20px;
}
@media (max-width: 767px) {
  .prshelter-slider {
    width: 100%;
  }
}
.prshelter-slider .swiper-prshelter-nav {
  z-index: 10;
}
.prshelter-slider .pshelter-arrow {
  position: absolute;
  z-index: 1;
  width: 25px;
  height: 45px;
  display: block;
  background-image: url("./../img/icons/pshelter_arrow.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  opacity: 0.7;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.prshelter-slider .pshelter-arrow:hover {
  opacity: 1;
}
.prshelter-slider .swiper-pshelter-next {
  right: -50px;
  top: 45%;
}
@media (max-width: 767px) {
  .prshelter-slider .swiper-pshelter-next {
    right: 10px;
  }
}
.prshelter-slider .swiper-pshelter-prev {
  left: -50px;
  top: 45%;
  transform: rotate(180deg);
}
@media (max-width: 767px) {
  .prshelter-slider .swiper-pshelter-prev {
    left: 10px;
  }
}
.prshelter-content {
  width: 45%;
  font-size: 24px;
}
@media (max-width: 767px) {
  .prshelter-content {
    width: 100%;
    font-size: 20px;
    margin-top: 20px;
    z-index: 1;
  }
}
.prshelter-content p {
  margin-bottom: 1rem;
}

.pupils-des {
  position: absolute;
  right: 0;
  top: 140px;
  z-index: 1;
  mix-blend-mode: overlay;
}
.pupils-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 20px 20px;
  margin-top: 86px;
}
@media (max-width: 767px) {
  .pupils-items {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
.pupils-item {
  background-color: #fbac18;
  border-radius: 30px;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .pupils-item {
    max-width: 440px;
  }
}
.pupils-item:hover .pupils-img img {
  transform: scale(1.1);
}
.pupils-item.pi-green {
  background-color: #b1d686;
}
.pupils-item.pi-green .pupils-icon {
  fill: #b1d686;
}
.pupils-item.pi-blue {
  background-color: #8dd2ef;
}
.pupils-item.pi-blue .pupils-icon {
  fill: #8dd3f1;
}
.pupils-item.pi-orange {
  background-color: #ffc30d;
}
.pupils-item.pi-orange .pupils-icon {
  fill: #fbac18;
}
.pupils-content {
  padding: 27px;
  position: relative;
  z-index: 2;
}
.pupils-name {
  font-size: 28px;
  font-weight: bold;
}
@media (max-width: 767px) {
  .pupils-name {
    font-size: 22px;
  }
}
.pupils-work {
  font-size: 16px;
  margin-top: 5px;
}
.pupils-desc {
  font-size: 14px;
  margin-top: 19px;
}
.pupils-img {
  position: relative;
  z-index: 1;
  width: 100%;
  overflow: hidden;
}
.pupils-img img {
  width: 100%;
  height: auto;
  transition: all 0.3s ease-in-out;
}

.scroll-down {
  position: relative;
  display: inline-block;
  overflow: hidden;
}

.scroll-down__text {
  animation: rotation 10s linear 0s infinite running normal;
}

.scroll-down__icon {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.shelterteam-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 20px 20px;
  margin-top: 86px;
}
@media (max-width: 767px) {
  .shelterteam-items {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
.shelterteam-item {
  background-color: #fbac18;
  border-radius: 30px;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .shelterteam-item {
    max-width: 440px;
  }
}
.shelterteam-item:hover .shelterteam-img img {
  transform: scale(1.1);
}
.shelterteam-content {
  padding: 27px;
}
.shelterteam-name {
  font-size: 28px;
  font-weight: bold;
}
@media (max-width: 767px) {
  .shelterteam-name {
    font-size: 22px;
  }
}
.shelterteam-work {
  font-size: 16px;
  margin-top: 5px;
}
.shelterteam-desc {
  font-size: 14px;
  margin-top: 19px;
}
.shelterteam-img {
  overflow: hidden;
}
.shelterteam-img img {
  transition: all 0.3s ease-in-out;
}

.timeline .des-future::before {
  display: block;
  content: "";
  background-image: url("./../img/icons/future.webp");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  width: 260px;
  height: 42px;
  position: absolute;
  margin: 0 0 0 -20px;
  z-index: -1;
}
@media (max-width: 767px) {
  .timeline .des-future::before {
    width: 190px;
    margin: -5px 0 0 -20px;
  }
}
.timeline-block {
  display: grid;
  grid-template-columns: 1fr 2fr;
  grid-gap: 20px 20px;
  border: 1px solid;
  padding: 60px;
  border-radius: 60px;
  background-image: url("./../img/icons/hands.webp");
  background-repeat: no-repeat;
  background-position: left -50px top 40px;
  background-size: 50%;
  overflow: hidden;
}
@media (max-width: 767px) {
  .timeline-block {
    display: flex;
    flex-direction: column;
    padding: 30px 20px;
    background-size: 350px;
    border-radius: 30px;
  }
}
.timeline-content {
  font-size: 28px;
}
.timeline-content.m-80 {
  margin-bottom: 80px;
}
@media (max-width: 767px) {
  .timeline-content {
    font-size: 20px;
  }
}
.timeline-content p {
  margin-bottom: 1rem;
}
.timeline-dop {
  margin-top: 100px;
}
@media (max-width: 767px) {
  .timeline-dop {
    margin-top: 50px;
  }
}

.hero {
  color: var(--text-white);
}
.hero__wrapper {
  display: flex;
  flex-flow: column;
}
.hero--feijoa {
  background-color: var(--feijoa);
}
.hero--hackaton {
  overflow: clip;
  padding-top: clamp(1.25rem, -0.3125rem + 7.8125vw, 9.0625rem);
  padding-bottom: clamp(1.25rem, 0.25rem + 5vw, 6.25rem);
}
.hero--hackaton .section__subtitle {
  padding: 3.75rem 0;
  max-width: 50rem;
}
@media (max-width: 63.9375em) {
  .hero--hackaton .section__subtitle {
    padding: 1.875rem 0;
  }
}
.hero--hackaton .hero__wrapper {
  position: relative;
  z-index: 1;
}
.hero--hackaton .hero__image {
  position: absolute;
  z-index: -1;
  top: 50%;
  right: -40%;
  transform: translateY(-50%);
}
@media (max-width: 63.9375em) {
  .hero--hackaton .hero__image {
    display: none;
  }
}
@media (max-width: 63.9375em) {
  .hero--hackaton {
    background-image: url("../img/icons/line-zigzag.svg");
    background-position: left center;
    background-size: cover;
    background-repeat: no-repeat;
  }
}
.hero--projects {
  overflow: clip;
  padding-top: clamp(1.25rem, -0.3125rem + 7.8125vw, 9.0625rem);
  padding-bottom: clamp(1.25rem, -0.0625rem + 6.5625vw, 7.8125rem);
}
.hero--projects .section__title {
  line-height: 99%;
}
.hero--projects .hero__wrapper {
  position: relative;
  z-index: 1;
}
.hero--projects .hero__image {
  position: absolute;
  z-index: -1;
  width: clamp(6.25rem, 1.875rem + 21.875vw, 28.125rem);
  aspect-ratio: 0.93;
  top: -6.875rem;
  right: 1.875rem;
}
.hero--projects .hero__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 85.3125em) {
  .hero--projects .hero__image {
    top: 50%;
    right: 0;
    transform: translateY(-50%);
  }
}
.hero--project {
  padding-top: clamp(1.25rem, -0.3125rem + 7.8125vw, 9.0625rem);
  padding-bottom: clamp(1.25rem, -0.0625rem + 6.5625vw, 7.8125rem);
}
.hero--project .section__subtitle {
  padding: 3.75rem 0;
  max-width: 50rem;
}
@media (max-width: 63.9375em) {
  .hero--project .section__subtitle {
    padding: 1.875rem 0;
  }
}
.hero--project .hero__wrapper {
  display: flex;
  flex-flow: row;
  align-items: center;
  gap: 3.75rem;
}
@media (max-width: 63.9375em) {
  .hero--project .hero__wrapper {
    gap: 1.25rem;
  }
}
@media (max-width: 47.9375em) {
  .hero--project .hero__wrapper {
    flex-flow: column;
  }
  .hero--project .hero__wrapper .section__title {
    text-align: center;
  }
}
.hero--project .hero__image {
  flex-shrink: 0;
  border-radius: 50%;
  width: 17.5rem;
  aspect-ratio: 1;
  overflow: clip;
}
.hero--project .hero__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
@media (max-width: 63.9375em) {
  .hero--project .hero__image {
    width: 12.5rem;
  }
}

.description__wrapper {
  font-size: clamp(1rem, 0.85rem + 0.75vw, 1.75rem);
  padding: 2.5rem 4.5625rem;
  border-radius: 3.75rem;
  border: 1px solid var(--black);
}
.description__wrapper p:not(:last-child) {
  margin-bottom: 1.25rem;
}
.description__wrapper a {
  color: var(--black);
  text-decoration: underline;
  text-underline-offset: 0.375rem;
  text-decoration-thickness: 0.03125rem;
}
@media (max-width: 63.9375em) {
  .description__wrapper {
    border-radius: 1.875rem;
    padding: 1.25rem;
  }
}
.description__actions {
  display: flex;
  margin-top: 4.125rem;
  gap: 4.375rem;
}
.description__actions .btn-donate {
  flex: 1 1 0%;
  max-width: unset;
  gap: 3.125rem;
}
@media (max-width: 75em) {
  .description__actions {
    gap: 0.625rem;
  }
  .description__actions .btn-donate {
    gap: 0.625rem;
  }
}
@media (max-width: 61.9375em) {
  .description__actions {
    margin-top: 1.25rem;
  }
  .description__actions .btn-donate {
    font-size: 1rem;
  }
}
@media (max-width: 35.9375em) {
  .description__actions {
    flex-flow: column;
  }
}
.description .title--lined + ul {
  margin-top: 0.625rem;
}
.description ul li::before {
  content: "";
  display: inline-block;
  width: 1.125rem;
  aspect-ratio: 1;
  background-color: var(--sun);
  border-radius: 50%;
  margin-right: 0.625rem;
}
@media (max-width: 63.9375em) {
  .description ul li::before {
    width: 1rem;
    margin-right: 0.5rem;
  }
}
@media (max-width: 47.9375em) {
  .description ul li::before {
    width: 0.875rem;
  }
}
.description--project .title span::after {
  width: 130%;
}
.description--project .title--lined span::after {
  --svg: url("data:image/svg+xml,%3Csvg width='273' height='60' viewBox='0 0 273 60' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M25 35C71.6533 35 118.171 30 164.835 30C184.356 30 203.817 25 223.386 25C231.513 25 241.289 25 248 25' stroke='%23B1D686' stroke-width='50' stroke-linecap='round'/%3E%3C/svg%3E%0A");
}
.participate {
  font-size: clamp(1rem, 0.85rem + 0.75vw, 1.75rem);
}
.participate__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 6.25rem;
  gap: 3.5625rem;
}
.participate__list li {
  position: relative;
  padding: 1.875rem 10rem 1.875rem 1.875rem;
  background-color: var(--lightning-yellow);
  border-radius: 3.125rem;
  min-height: 13.75rem;
  text-transform: uppercase;
}
.participate__list li .num {
  position: absolute;
  top: 50%;
  right: 1.25rem;
  transform: translateY(-50%);
}
.participate__list li .num img {
  width: 90%;
  height: 90%;
}
.participate__list li:first-child .num {
  right: 3.75rem;
}
@media (max-width: 47.9375em) {
  .participate__list li:first-child .num {
    right: 1.875rem;
  }
}
@media (max-width: 63.9375em) {
  .participate__list {
    gap: 0.625rem;
  }
  .participate__list li {
    border-radius: 1.5625rem;
  }
}
@media (max-width: 47.9375em) {
  .participate__list {
    margin-top: 1.875rem;
    grid-template-columns: 1fr;
  }
  .participate__list li {
    padding-right: 7.5rem;
    min-height: 9.375rem;
  }
  .participate__list li .num {
    right: 0;
  }
  .participate__list li .num img {
    scale: 0.5;
  }
}
.remuneration {
  padding-top: 11.875rem;
}
.remuneration .headblock {
  position: relative;
}
.remuneration .headblock .title-2--regular {
  font-size: clamp(1.375rem, 0.8125rem + 2.8125vw, 4.1875rem);
}
.remuneration__list-icon {
  position: absolute;
  z-index: -1;
  bottom: 55%;
  right: 9%;
  width: 18.5rem;
  aspect-ratio: 0.68;
}
.remuneration__list-icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 75em) {
  .remuneration__list-icon {
    width: 13.75rem;
  }
}
@media (max-width: 47.9375em) {
  .remuneration__list-icon {
    bottom: 85%;
    right: 0;
    width: 7.8125rem;
  }
}
.remuneration__list {
  position: relative;
  margin-top: 4.375rem;
}
.remuneration__list ul {
  display: grid;
  grid-template-columns: 1fr 42% 1fr;
  align-items: end;
}
.remuneration__list ul + ul {
  margin-top: 1.25rem;
}
.remuneration__list ul li {
  font-weight: 700;
}
.remuneration__list ul li p:not([class]) {
  color: var(--text-white);
}
.remuneration__list ul li:nth-of-type(1) .remuneration__item {
  border-radius: 1.25rem 0 0 1.25rem;
}
@media (max-width: 47.9375em) {
  .remuneration__list ul li:nth-of-type(1) {
    order: 2;
    grid-column: 1/3;
  }
  .remuneration__list ul li:nth-of-type(1) .remuneration__item {
    border-radius: 0 0 0 1.25rem;
  }
}
.remuneration__list ul li:nth-of-type(2) {
  font-size: clamp(2rem, 0.9rem + 5.5vw, 7.5rem);
}
.remuneration__list ul li:nth-of-type(2) .remuneration__item {
  border-radius: 1.25rem 1.25rem 0 0;
  background-color: var(--denim);
  padding: 1.875rem;
}
@media (max-width: 47.9375em) {
  .remuneration__list ul li:nth-of-type(2) {
    grid-column: 1/-1;
  }
}
.remuneration__list ul li:nth-of-type(3) .remuneration__item {
  border-radius: 0 1.25rem 1.25rem 0;
}
@media (max-width: 47.9375em) {
  .remuneration__list ul li:nth-of-type(3) {
    order: 3;
    grid-column: 3/-1;
  }
  .remuneration__list ul li:nth-of-type(3) .remuneration__item {
    border-radius: 0 0 1.25rem 0;
    border-left: 1px solid var(--denim);
  }
}
.remuneration__list ul li:nth-of-type(1), .remuneration__list ul li:nth-of-type(3) {
  font-size: clamp(1.75rem, 0.85rem + 4.5vw, 6.25rem);
}
.remuneration__list ul li:nth-of-type(1) .remuneration__item, .remuneration__list ul li:nth-of-type(3) .remuneration__item {
  padding: 0.625rem;
}
.remuneration__list ul li .remuneration__sponsor {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--black);
  border-radius: 0 0 1.25rem 1.25rem;
  padding: 0.625rem 3.5rem;
  font-weight: 400;
  font-size: clamp(1rem, 0.825rem + 0.875vw, 1.875rem);
  gap: 3.5rem;
}
.remuneration__list ul li .remuneration__sponsor p {
  text-align: right;
}
.remuneration__list ul li .remuneration__sponsor p:not([class]) {
  color: var(--black);
}
@media (max-width: 63.9375em) {
  .remuneration__list ul li .remuneration__sponsor {
    padding: 0.625rem 1.25rem;
  }
}
@media (max-width: 47.9375em) {
  .remuneration__list ul li .remuneration__sponsor .remuneration__sponsor-logo {
    width: 9.375rem;
  }
}
@media (max-width: 47.9375em) {
  .remuneration__list ul {
    margin-top: 2.1875rem;
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
.remuneration__list .title-2 {
  font-size: clamp(1.375rem, 0.8125rem + 2.8125vw, 4.1875rem);
}
@media (max-width: 35.3125em) {
  .remuneration__list {
    margin-top: 1.875rem;
  }
}
.remuneration__item {
  display: flex;
  justify-content: center;
  flex-flow: column;
  background-color: var(--curious-blue);
}
.remuneration__item p {
  text-align: center;
}
@media (max-width: 63.9375em) {
  .remuneration {
    padding-top: 4.375rem;
  }
}

.projects-eligibility {
  padding-top: 8.75rem;
}
.projects-eligibility__list {
  margin-top: 5.3125rem;
}
.projects-eligibility__list ul {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
}
.projects-eligibility__list ul li {
  position: relative;
  display: flex;
  flex-flow: column;
  padding-bottom: 6.75rem;
  font-weight: 700;
  font-size: clamp(1.125rem, 1rem + 0.625vw, 1.75rem);
  text-transform: uppercase;
  gap: 1.125rem;
}
.projects-eligibility__list ul li::after {
  content: "";
  position: absolute;
  bottom: 1.25rem;
  left: 50%;
  width: 2rem;
  height: 2rem;
  transform: translateX(-50%);
  background: url("../img/icons/arrow-down-feijoa.svg") no-repeat center/contain;
}
@media (max-width: 62em) {
  .projects-eligibility__list ul {
    grid-template-columns: 1fr 1fr;
  }
  .projects-eligibility__list ul li {
    padding-bottom: 3.125rem;
  }
  .projects-eligibility__list ul li::after {
    bottom: 0;
    width: 1.5rem;
    height: 1.5rem;
  }
}
@media (max-width: 35.9375em) {
  .projects-eligibility__list ul {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 35.9375em) {
  .projects-eligibility__list {
    margin-top: 2.5rem;
  }
}
.projects-eligibility__footer {
  margin-top: 2.5rem;
  border-radius: 1.25rem;
  padding: 2.125rem 0;
  text-align: center;
  text-transform: uppercase;
  color: var(--text-white);
  background-color: var(--feijoa);
  background-image: url("../img/icons/line-zigzag.svg");
  background-position: left 6.25rem center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media (max-width: 63.9375em) {
  .projects-eligibility__footer {
    padding: 1rem 0;
    background-position: left 1.25rem center;
    background-size: 150%;
  }
}
.projects-eligibility--projects-list {
  padding-top: 6.25rem;
}
.projects-eligibility--projects-list .projects-eligibility__list {
  margin-top: 0;
}
@media (max-width: 63.9375em) {
  .projects-eligibility {
    padding-top: 4.375rem;
  }
}

.urban-hackathon-participation {
  padding-top: 5.375rem;
}
.urban-hackathon-participation .headblock .title-2 {
  position: relative;
}
.urban-hackathon-participation .headblock .title-2 span {
  position: relative;
}
.urban-hackathon-participation .headblock .title-2 span::before {
  content: "";
  position: absolute;
  top: -4.25rem;
  left: 2.8125rem;
  z-index: -1;
  width: 16.5rem;
  aspect-ratio: 1.32;
  background: url("../img/icons/heart-big.svg") center/contain no-repeat;
}
@media (max-width: 63.9375em) {
  .urban-hackathon-participation .headblock .title-2 span::before {
    top: -2.375rem;
    width: 9.375rem;
  }
}
@media (max-width: 35.9375em) {
  .urban-hackathon-participation .headblock .title-2 span::before {
    left: 0.625rem;
  }
}
.urban-hackathon-participation__list {
  margin-top: 6.75rem;
}
.urban-hackathon-participation__list ul {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.25rem, 0.425rem + 4.125vw, 5.375rem) clamp(1.25rem, -0.475rem + 8.625vw, 9.875rem);
}
.urban-hackathon-participation__list ul li {
  position: relative;
  display: flex;
  flex-flow: column;
  font-size: clamp(1rem, 0.85rem + 0.75vw, 1.75rem);
  gap: 1.25rem;
}
.urban-hackathon-participation__list ul li::after {
  content: "";
  position: absolute;
  top: -3.125rem;
  right: 0;
  width: 6.5625rem;
  aspect-ratio: 1;
  background: url("../img/icons/icon5.svg") center/contain no-repeat;
}
.urban-hackathon-participation__list ul li .title {
  padding-right: 6.875rem;
  text-transform: uppercase;
}
@media (max-width: 63.9375em) {
  .urban-hackathon-participation__list ul li::after {
    top: -2.1875rem;
    width: 5rem;
  }
  .urban-hackathon-participation__list ul li .title {
    padding-right: 5.625rem;
  }
}
@media (max-width: 35.3125em) {
  .urban-hackathon-participation__list ul li::after {
    top: -1.25rem;
    width: 2.5rem;
  }
  .urban-hackathon-participation__list ul li .title {
    padding-right: 2.8125rem;
  }
}
@media (max-width: 47.9375em) {
  .urban-hackathon-participation__list ul {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 23.375em) {
  .urban-hackathon-participation__list ul {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 63.9375em) {
  .urban-hackathon-participation__list {
    margin-top: 3.125rem;
  }
}

.participation-form {
  padding-top: 7.1875rem;
}
.participation-form__actions {
  display: flex;
  margin-top: 4.125rem;
  gap: 4.375rem;
}
.participation-form__actions .btn-donate {
  flex: 1 1 0%;
  max-width: unset;
  gap: 3.125rem;
}
@media (max-width: 75em) {
  .participation-form__actions {
    gap: 0.625rem;
  }
  .participation-form__actions .btn-donate {
    gap: 0.625rem;
  }
}
@media (max-width: 61.9375em) {
  .participation-form__actions {
    margin-top: 1.25rem;
  }
  .participation-form__actions .btn-donate {
    font-size: 1rem;
  }
}
@media (max-width: 35.9375em) {
  .participation-form__actions {
    flex-flow: column;
  }
}
@media (max-width: 63.9375em) {
  .participation-form {
    padding-top: 4.375rem;
  }
}

.projects-list {
  padding: 6.25rem 0 8.125rem;
}
.projects-list__list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.375rem;
}
@media (max-width: 63.9375em) {
  .projects-list__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.625rem;
  }
}
.projects-list__group-header {
  position: relative;
  display: flex;
  flex-flow: column;
  padding-bottom: 6.75rem;
  font-weight: 700;
  font-size: clamp(1rem, 0.85rem + 0.75vw, 1.75rem);
  text-transform: uppercase;
  gap: 1.125rem;
}
.projects-list__group-header::after {
  content: "";
  position: absolute;
  bottom: 1.25rem;
  left: 50%;
  width: 2rem;
  height: 2rem;
  transform: translateX(-50%);
  background: url("../img/icons/arrow-down-feijoa.svg") no-repeat center/contain;
}
@media (max-width: 63.9375em) {
  .projects-list__group-header--group1 {
    order: 1;
  }
}
@media (max-width: 63.9375em) {
  .projects-list__group-header--group2 {
    order: 2;
  }
}
@media (max-width: 63.9375em) {
  .projects-list__group-header--group3 {
    order: 5;
  }
}
@media (max-width: 63.9375em) {
  .projects-list__group-header--group4 {
    order: 6;
  }
}
@media (max-width: 63.9375em) {
  .projects-list__group-header {
    padding-bottom: 3.75rem;
  }
  .projects-list__group-header::after {
    bottom: 0.625rem;
  }
}
.projects-list__group-list {
  --color: var(--text-muted);
}
.projects-list__group-list ul {
  border-radius: 1.25rem;
  padding: 2.125rem 0.4375rem;
  border: 0.3125rem solid var(--color);
}
@media (max-width: 63.9375em) {
  .projects-list__group-list ul {
    border-width: 0.125rem;
    padding: 1.25rem 0.3125rem;
  }
}
.projects-list__group-list li {
  display: flex;
  align-items: center;
  gap: 0.9375rem;
}
.projects-list__group-list li .image {
  flex-shrink: 0;
  border-radius: 50%;
  width: 7.125rem;
  aspect-ratio: 1;
  background-color: var(--text-muted);
  overflow: hidden;
  align-self: center;
}
.projects-list__group-list li .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 35.9375em) {
  .projects-list__group-list li .image {
    width: 5rem;
  }
}
.projects-list__group-list li .project-info {
  display: flex;
  flex-flow: column;
  gap: 1.125rem;
}
.projects-list__group-list li .project-info > a {
  font-size: clamp(1rem, 0.95rem + 0.25vw, 1.25rem);
  color: var(--lightning-yellow);
  text-underline-offset: 0.375rem;
  text-decoration-thickness: 0.03125rem;
}
@media not all and (pointer: coarse) {
  .projects-list__group-list li .project-info > a:hover {
    text-decoration: underline;
  }
}
.projects-list__group-list li .title {
  font-weight: 700;
  font-size: clamp(1rem, 0.95rem + 0.25vw, 1.25rem);
  text-transform: uppercase;
}
.projects-list__group-list li:not(:last-child) {
  margin-bottom: 2.5rem;
}
@media (max-width: 63.9375em) {
  .projects-list__group-list li:not(:last-child) {
    margin-bottom: 1.25rem;
  }
}
@media (max-width: 85.3125em) {
  .projects-list__group-list li {
    flex-flow: column;
    align-items: flex-start;
  }
}
@media (max-width: 63.9375em) {
  .projects-list__group-list li {
    flex-flow: row;
    align-items: center;
  }
}
@media (max-width: 40.625em) {
  .projects-list__group-list li {
    flex-flow: column;
    align-items: flex-start;
  }
}
.projects-list__group-list--group1 {
  --color: var(--feijoa);
}
@media (max-width: 63.9375em) {
  .projects-list__group-list--group1 {
    order: 3;
    margin-bottom: 1.25rem;
  }
}
.projects-list__group-list--group2 {
  --color: var(--curious-blue);
}
@media (max-width: 63.9375em) {
  .projects-list__group-list--group2 {
    order: 4;
    margin-bottom: 1.25rem;
  }
}
.projects-list__group-list--group3 {
  --color: var(--sun);
}
@media (max-width: 63.9375em) {
  .projects-list__group-list--group3 {
    order: 7;
  }
}
.projects-list__group-list--group4 {
  --color: var(--curious-blue);
}
@media (max-width: 63.9375em) {
  .projects-list__group-list--group4 {
    order: 8;
  }
}
.projects-list__actions {
  display: flex;
  margin-top: 7.875rem;
}
.projects-list__actions .btn-donate {
  flex-basis: 40.625rem;
  justify-content: flex-start;
  max-width: unset;
  gap: 3.125rem;
}
@media (max-width: 47.9375em) {
  .projects-list__actions .btn-donate {
    flex-basis: 21.875rem;
    font-size: 1.25rem;
    gap: 1.25rem;
  }
}
@media (max-width: 63.9375em) {
  .projects-list__actions {
    margin-top: 3.125rem;
  }
}
@media (max-width: 63.9375em) {
  .projects-list {
    padding: 4.375rem 0;
  }
}

.project-team {
  padding: 12.5rem 0;
}
.project-team__list {
  margin-top: 6.5625rem;
}
.project-team__list ul {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9375rem;
}
.project-team__list ul li {
  display: flex;
  flex-flow: column;
  padding: 2.8125rem 1.25rem;
  border-radius: 1.25rem;
}
.project-team__list ul li .info {
  position: relative;
  display: flex;
  flex-flow: column;
  flex: 1 1 0%;
}
.project-team__list ul li .info::after {
  content: "";
  position: absolute;
  top: -3.125rem;
  right: 0;
  width: 9.75rem;
  aspect-ratio: 1;
  background: url("../img/icons/icon5.svg") center/contain no-repeat;
  z-index: -1;
}
@media (max-width: 63.9375em) {
  .project-team__list ul li .info::after {
    width: 5rem;
    top: 0;
  }
}
.project-team__list ul li .image {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 12.6875rem;
  aspect-ratio: 1;
  -webkit-clip-path: url(#myClipPath);
          clip-path: url(#myClipPath);
  overflow: hidden;
  background-color: var(--text-white);
}
.project-team__list ul li .image::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../img/teams/border.webp");
}
.project-team__list ul li .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center top;
     object-position: center top;
  transition: scale 0.2s ease-out;
}
@media not all and (pointer: coarse) {
  .project-team__list ul li .image:hover img {
    scale: 1.02;
  }
}
@media (max-width: 35.3125em) {
  .project-team__list ul li .image {
    align-self: center;
  }
}
.project-team__list ul li .name {
  margin-top: 2.1875rem;
  font-weight: 700;
  font-size: clamp(1rem, 0.85rem + 0.75vw, 1.75rem);
  text-transform: uppercase;
  color: var(--text-color);
  transition: opacity 0.2s ease-out;
}
@media not all and (pointer: coarse) {
  .project-team__list ul li .name:hover {
    opacity: 0.5;
  }
}
@media (max-width: 63.9375em) {
  .project-team__list ul li .name {
    margin-top: 1.25rem;
  }
}
.project-team__list ul li .position {
  font-weight: 700;
  text-transform: uppercase;
}
.project-team__list ul li .description {
  margin-top: 2.375rem;
  padding-bottom: 0.875rem;
}
@media (max-width: 63.9375em) {
  .project-team__list ul li .description {
    margin-top: 1.25rem;
  }
}
.project-team__list ul li .additional {
  display: flex;
  flex-flow: column;
}
.project-team__list ul li .additional > a {
  color: var(--text-color);
}
@media not all and (pointer: coarse) {
  .project-team__list ul li .additional > a:hover {
    text-decoration: underline;
  }
}
.project-team__list ul li .link-show-more {
  margin-top: auto;
  font-size: clamp(1rem, 0.85rem + 0.75vw, 1.75rem);
  color: var(--accent);
  text-underline-offset: 0.375rem;
  text-decoration-thickness: 0.00625rem;
}
@media not all and (pointer: coarse) {
  .project-team__list ul li .link-show-more:hover {
    text-decoration: underline;
  }
}
@media (max-width: 63.9375em) {
  .project-team__list ul li {
    padding: 1.25rem 0;
  }
}
@media (max-width: 47.9375em) {
  .project-team__list ul {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 35.3125em) {
  .project-team__list ul {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 63.9375em) {
  .project-team__list {
    margin-top: 5rem;
  }
}
@media (max-width: 47.9375em) {
  .project-team__list {
    margin-top: 1.25rem;
  }
}
.project-team__actions {
  display: flex;
  margin-top: 3.125rem;
}
.project-team__actions .btn-donate {
  flex-basis: 40.625rem;
  justify-content: flex-start;
  max-width: unset;
  gap: 3.125rem;
  text-transform: uppercase;
}
@media (max-width: 47.9375em) {
  .project-team__actions .btn-donate {
    flex-basis: 21.875rem;
    font-size: 1.25rem;
    gap: 1.25rem;
  }
}
@media (max-width: 47.9375em) {
  .project-team__actions {
    margin-top: 1.5625rem;
  }
}
@media (max-width: 47.9375em) {
  .project-team {
    padding: 4.375rem 0;
  }
}/*# sourceMappingURL=main.css.map */