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

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

body {
  line-height: 1;
  color: #003333;
  width: 100%;
  overflow-x: hidden;
}
body.hidden {
  overflow: hidden;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

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

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

button,
input,
textarea {
  background-color: transparent;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  outline: none;
  border: 0;
  font-family: "ALSSector";
}

button {
  padding: 0;
  cursor: pointer;
}

/* fonts */
@font-face {
  font-family: "ALSSector";
  src: url("../fonts/ALSSectorRegular.ttf");
  font-weight: 400;
}
@font-face {
  font-family: "ALSSector";
  src: url("../fonts/ALSSectorBold.ttf");
  font-weight: 700;
}
@font-face {
  font-family: "futurafuturisc";
  src: url("../fonts/futurafuturisc-bold.otf");
  font-weight: 400;
}
body {
  font-family: "ALSSector", sans-serif;
}

.swiper-slide {
  -webkit-transition: 0.4s opacity;
  -o-transition: 0.4s opacity;
  transition: 0.4s opacity;
  opacity: 0;
  pointer-events: none;
}

.swiper-slide-visible {
  opacity: 1;
  pointer-events: all;
}

.cont {
  width: 100%;
  max-width: 1600px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  height: 100%;
  margin: 0 auto;
  position: relative;
}

.sim-title {
  margin-bottom: 40px;
  text-align: center;
  color: #003333;
  font-size: 16px;
  line-height: 24px;
  text-transform: uppercase;
  letter-spacing: 0.11em;
}

.sim-arrow {
  position: absolute;
  width: 60px;
  height: 60px;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 9;
  cursor: pointer;
  border-radius: 50%;
  background-image: url("../img/Right-strelka.svg");
  background-size: cover;
}
.sim-arrow.next {
  left: calc(100% + 20px);
}
.sim-arrow.prev {
  -webkit-transform: translateY(-50%) scale(-1, 1);
      -ms-transform: translateY(-50%) scale(-1, 1);
          transform: translateY(-50%) scale(-1, 1);
  right: calc(100% + 20px);
}

.sim-btn {
  height: 86px;
  border-radius: 43px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px solid white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0 53px;
  font-size: 25px;
  line-height: 27px;
  color: white;
  text-transform: uppercase;
}

sup {
  font-size: 0.4em !important;
  text-transform: uppercase;
}

.custom-select {
  position: relative;
  height: 44px;
  z-index: 3;
}
.custom-select .cs-arrow {
  position: absolute;
  right: 18px;
  top: 19px;
  z-index: 2;
  pointer-events: none;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}
.custom-select.opened .cs-arrow {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}
.custom-select.opened .list .option {
  pointer-events: all;
}
.custom-select .actual {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-40%);
      -ms-transform: translateY(-40%);
          transform: translateY(-40%);
  left: 12px;
  font-size: 15px;
  line-height: 16px;
  z-index: 3;
  text-transform: uppercase;
}
.custom-select .list-box {
  max-height: 44px;
  overflow: hidden;
  -webkit-transition: 0.5s max-height;
  -o-transition: 0.5s max-height;
  transition: 0.5s max-height;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 10px;
  border: 2px solid #33cc99;
}
.custom-select .list {
  padding: 52px 0 10px;
  display: grid;
  gap: 12px;
  background-color: #fff;
  font-size: 15px;
  line-height: 16px;
}
.custom-select .list .option {
  pointer-events: none;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0 12px;
  text-transform: uppercase;
  cursor: pointer;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
.custom-select .list .option.active {
  display: none;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 118px;
  z-index: 999;
}
.header.hidden .cont {
  -webkit-transform: translateY(-100%);
      -ms-transform: translateY(-100%);
          transform: translateY(-100%);
}
.header .cont {
  -webkit-transition: 1s -webkit-transform;
  transition: 1s -webkit-transform;
  -o-transition: 1s transform;
  transition: 1s transform;
  transition: 1s transform, 1s -webkit-transform;
  background-color: #60ecb5;
  display: grid;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  grid-template-columns: 1fr 2fr 1fr;
}
.header__logo {
  position: relative;
  z-index: 4;
}
.header__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 26px;
}
.header__nav.mobile {
  display: none;
}
.header__nav .nav-item {
  width: 60px;
  height: 60px;
  position: relative;
  margin-bottom: 12px;
}
.header__nav .nav-item:hover img .fill,
.header__nav .nav-item:hover svg .fill {
  fill: #1fb599;
}
.header__nav .nav-item:hover img .stroke,
.header__nav .nav-item:hover svg .stroke {
  stroke: #1fb599;
}
.header__nav .nav-item:hover .nav-item__title {
  opacity: 1;
}
.header__nav .nav-item img,
.header__nav .nav-item svg {
  width: 100%;
  height: auto;
}
.header__nav .nav-item img .fill,
.header__nav .nav-item svg .fill {
  fill: #fff;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}
.header__nav .nav-item img .stroke,
.header__nav .nav-item svg .stroke {
  stroke: #fff;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}
.header__nav .nav-item__title {
  position: absolute;
  top: calc(100% + 6px);
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  font-size: 14px;
  line-height: 16px;
  color: #1fb599;
  white-space: nowrap;
  opacity: 0;
  -webkit-transition: 0.4s opacity;
  -o-transition: 0.4s opacity;
  transition: 0.4s opacity;
}
.header__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 54px;
  margin-bottom: 12px;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-right: 52px;
}
.header__lang {
  position: relative;
  z-index: 3;
  font-size: 14px;
  line-height: 16px;
}
.header__lang:hover .list {
  opacity: 1;
  pointer-events: all;
}
.header__lang:hover .actual img,
.header__lang:hover .actual svg {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}
.header__lang .actual {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  position: relative;
  z-index: 2;
}
.header__lang .actual img,
.header__lang .actual svg {
  -webkit-transition: 0.3s -webkit-transform;
  transition: 0.3s -webkit-transform;
  -o-transition: 0.3s transform;
  transition: 0.3s transform;
  transition: 0.3s transform, 0.3s -webkit-transform;
}
.header__lang .list {
  opacity: 0;
  -webkit-transition: 0.3s opacity;
  -o-transition: 0.3s opacity;
  transition: 0.3s opacity;
  pointer-events: none;
  left: -8px;
  top: -6px;
  padding: 26px 0 6px 21px;
  width: 64px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-color: #fff;
  border-radius: 6px;
  z-index: -1;
  position: absolute;
  display: grid;
  gap: 6px;
}
.header__donate {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  height: 60px;
  padding: 0 18px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px solid white;
  border-radius: 30px;
  font-size: 14px;
  color: #fff;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}
.header__donate:hover {
  border-color: #1fb599;
  color: #1fb599;
}
.header__donate:hover path {
  fill: #1fb599;
}
.header__donate img,
.header__donate svg {
  width: 38px;
  height: auto;
}
.header__donate img path,
.header__donate svg path {
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}
.header.opened .burger:before {
  bottom: 19px;
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.header.opened .burger:after {
  top: 17px;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}
.header .burger {
  z-index: 4;
  width: 42px;
  height: 42px;
  position: relative;
  cursor: pointer;
}
.header .burger:after {
  content: "";
  position: absolute;
  top: 11px;
  left: 0;
  width: 42px;
  height: 6px;
  background-color: #1fb599;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}
.header .burger:before {
  content: "";
  position: absolute;
  bottom: 11px;
  left: 0;
  width: 42px;
  height: 6px;
  background-color: #1fb599;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}
.header__menu {
  z-index: 3;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
  background-color: #60ecb5;
  max-height: 0;
  overflow: hidden;
  -webkit-transition: 1.3s max-height;
  -o-transition: 1.3s max-height;
  transition: 1.3s max-height;
}
header.opened .header__menu {
  max-height: 100vh;
}
.header__menu .box {
  position: relative;
  top: 0;
  height: 100vh;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-top: 118px;
}
.header__menu .menu-decor {
  left: 180px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}
.header__menu .menu-nav {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 280px;
  display: grid;
  gap: 26px;
  font-size: 25px;
  text-transform: uppercase;
}
.header__menu .menu-nav .nav-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
}
.header__menu .menu-nav .nav-item img,
.header__menu .menu-nav .nav-item svg {
  width: 60px;
  height: auto;
}
.header__menu .menu-nav .nav-item img .fill,
.header__menu .menu-nav .nav-item svg .fill {
  fill: #fff;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}
.header__menu .menu-nav .nav-item img .stroke,
.header__menu .menu-nav .nav-item svg .stroke {
  stroke: #fff;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}

.main {
  overflow: hidden;
  width: 100%;
}

@media screen and (max-width: 1200px) {
  .header__donate {
    display: none;
  }
  .header .menu-decor {
    display: none;
  }
  .header .menu-nav {
    right: unset;
    white-space: nowrap;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
}
.sim-pagin {
  display: none;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 16px;
  -webkit-transition: 0.4s background-color;
  -o-transition: 0.4s background-color;
  transition: 0.4s background-color;
}
.sim-pagin .swiper-pagination-bullet {
  opacity: 1;
  width: 8px;
  height: 8px;
  background-color: #d5d5d5;
}
.sim-pagin .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #60ecb5;
}

@media screen and (max-width: 900px) {
  .sim-title {
    letter-spacing: 2px;
  }

  .sim-pagin {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .header .cont {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .header__nav {
    gap: 10px;
  }
  .header__actions {
    gap: 26px;
  }
}
.menu-mobile {
  display: none;
}

@media screen and (max-width: 740px) {
  .sim-title {
    font-size: 13px;
    line-height: 15px;
    width: 90%;
    margin: 0 auto 20px;
  }

  body {
    padding-bottom: 50px;
  }

  .header {
    height: 60px;
    z-index: 9999;
  }
  .header__menu .box {
    padding-top: 80px;
  }
  .header .menu-mobile {
    display: block;
    text-align: center;
    display: grid;
    gap: 14px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 0 20px;
  }
  .header .menu-mobile__text {
    color: #82978f;
    font-size: 9px;
    line-height: 10px;
  }
  .header .menu-mobile__social {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 4px;
  }
  .header .menu-mobile__social img,
.header .menu-mobile__social svg {
    height: 34px;
    width: auto;
  }
  .header .menu-nav {
    display: inline-grid;
    position: relative;
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
    top: unset;
    gap: 12px;
    margin-bottom: 60px;
  }
  .header .menu-nav .nav-item {
    gap: 14px;
  }
  .header .menu-nav .nav-item svg,
.header .menu-nav .nav-item img {
    width: 34px;
    height: auto;
  }
  .header .menu-nav .nav-item__title {
    font-size: 18px;
    line-height: 22px;
  }
  .header__logo {
    height: 100%;
  }
  .header__logo img {
    height: 100%;
    width: auto;
  }
  .header__nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #fff;
    gap: 16px;
    padding: 10px 0;
    -webkit-box-shadow: 0px -8px 8px 0px rgba(34, 60, 80, 0.2);
            box-shadow: 0px -8px 8px 0px rgba(34, 60, 80, 0.2);
  }
  .header__nav.mobile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    z-index: 999;
    gap: 10px;
  }
  .header__nav .nav-item {
    margin-bottom: 0;
    width: 40px;
    height: 40px;
  }
  .header__nav .nav-item svg .fill {
    fill: #00b699;
  }
  .header__nav .nav-item svg .stroke {
    stroke: #00b699;
  }
  .header__actions {
    margin-bottom: 0;
    padding-right: 20px;
  }
}
.promo {
  position: relative;
  background-color: #60ecb5;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-top: 151px;
  padding: 133px 0 55px;
}
.promo:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 100%;
  -webkit-transform: translateX(-50%) translateY(-2px);
      -ms-transform: translateX(-50%) translateY(-2px);
          transform: translateX(-50%) translateY(-2px);
  width: 20px;
  height: 8px;
  background-color: #60ecb5;
  -webkit-clip-path: polygon(100% 0, 0 0, 50% 100%);
          clip-path: polygon(100% 0, 0 0, 50% 100%);
}
.promo__image {
  position: relative;
  pointer-events: none;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  margin-bottom: 43px;
  height: 283px;
  -ms-interpolation-mode: nearest-neighbor;
      image-rendering: -webkit-optimize-contrast;
      image-rendering: -moz-crisp-edges;
      image-rendering: -o-pixelated;
      image-rendering: pixelated;
}
.promo__box {
  text-align: center;
}
.promo__box .top {
  margin-bottom: 14px;
  font-size: 14px;
  line-height: 16px;
  color: #003333;
}
.promo__box .title {
  font-size: 47px;
  line-height: 48px;
  color: #003333;
  margin-bottom: 30px;
}
.promo__box .buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 35px;
}
.promo__box .buttons span {
  -webkit-transform: translateY(2px);
      -ms-transform: translateY(2px);
          transform: translateY(2px);
}
.promo__box .buttons > * {
  width: 210px;
  height: 86px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px solid white;
  border-radius: 43px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 25px;
  line-height: 27px;
  font-weight: bold;
  text-transform: uppercase;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}
.promo__box .buttons .mis {
  color: white;
}
.promo__box .buttons .mis:hover {
  border-color: #18b396;
  color: #18b396;
}
.promo__box .buttons .about {
  color: #003333;
  background-color: white;
}
.promo__box .buttons .about:hover {
  border-color: #18b396;
  background-color: #18b396;
  color: #fff;
}
.promo .promo-dec {
  position: absolute;
  pointer-events: none;
  z-index: 6;
}
.promo .promo-dec._1 {
  top: 360px;
  left: 318px;
}
.promo .promo-dec._2 {
  top: 250px;
  left: 550px;
}
.promo .promo-dec._3 {
  top: 161px;
  right: 353px;
}
.promo .promo-dec._4 {
  top: 395px;
  right: 305px;
}

.why {
  padding: 80px 0;
  background-color: #f2f3f7;
}
.why__slider {
  max-width: 1180px;
  width: 100%;
  margin: 0 auto;
  position: relative;
}
.why__card {
  padding: 40px 46px;
  height: auto;
  background-color: #fff;
  border-radius: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.why__card .warning {
  position: relative;
  font-size: 14px;
  line-height: 16px;
  padding-left: 20px;
  margin-bottom: 40px;
}
.why__card .warning:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #60ecb5;
}
.why__card .image {
  width: 150px;
  display: block;
  height: auto;
  margin: 0 auto 64px;
}
.why__card .title {
  font-size: 24px;
  line-height: 30px;
  min-height: 60px;
  margin-bottom: 20px;
}
.why__card .text {
  font-size: 14px;
  line-height: 20px;
}

.initiative {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 60px 0 68px;
}
.initiative__img {
  margin-bottom: 28px;
}
.initiative .sim-title {
  margin-bottom: 42px;
}
.initiative__btn {
  font-size: 25px;
  line-height: 27px;
  font-weight: bold;
  text-transform: uppercase;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 43px;
  height: 86px;
  width: 234px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px solid #1fb599;
  color: #1fb599;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}
.initiative__btn:hover {
  background-color: #1fb599;
  color: #fff;
}

.total {
  position: relative;
  background-color: #60ecb5;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 90px 0 64px;
}
.total-dec {
  position: absolute;
  pointer-events: none;
  z-index: 2;
}
.total-dec._1 {
  top: 398px;
  left: 449px;
}
.total-dec._2 {
  top: 136px;
  left: 498px;
}
.total-dec._3 {
  top: 170px;
  right: 607px;
}
.total-dec._4 {
  top: 334px;
  right: 385px;
}
.total__top {
  margin-bottom: 86px;
  font-size: 25px;
  line-height: 27px;
  color: #fff;
  text-align: center;
}
.total__value {
  font-size: 220px;
  text-align: center;
  margin-bottom: 170px;
  font-family: "futurafuturisc";
  color: #fff;
}
.total__wimg {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  top: 130px;
  width: 140px;
  pointer-events: none;
}
.total__mimg {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(calc(-50% - 40px));
      -ms-transform: translateX(calc(-50% - 40px));
          transform: translateX(calc(-50% - 40px));
  top: 262px;
  pointer-events: none;
  -ms-interpolation-mode: nearest-neighbor;
      image-rendering: -webkit-optimize-contrast;
      image-rendering: -moz-crisp-edges;
      image-rendering: -o-pixelated;
      image-rendering: pixelated;
}
.total__box {
  display: grid;
  grid-template-columns: 714px 380px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 70px;
  margin-bottom: 40px;
}
.total__box .info {
  text-align: center;
}
.total__box .info .text1 {
  font-size: 47px;
  line-height: 48px;
  margin-bottom: 18px;
}
.total__box .info .text2 {
  font-size: 25px;
  line-height: 31px;
  margin-bottom: 26px;
}
.total__box .info .text3 {
  font-size: 14px;
  line-height: 20px;
}
.total__box .results {
  background-color: #fff;
  border-radius: 20px;
  padding: 44px 54px 38px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: grid;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
  justify-items: center;
  font-size: 14px;
  line-height: 20px;
  text-align: center;
}
.total__box .results img {
  width: 200px;
  display: block;
}
.total__btn {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
  font-weight: bold;
}
.total__btn span {
  -webkit-transform: translateY(2px);
      -ms-transform: translateY(2px);
          transform: translateY(2px);
}
.total__btn:hover {
  border-color: #18b396;
  color: #18b396;
}

.gray-box {
  background-color: #f2f3f7;
  padding-bottom: 65px;
}
.gray-box > section {
  padding-top: 94px;
}

.whom__slider {
  max-width: 1274px;
  width: 100%;
  margin: 0 auto;
  position: relative;
}
.whom__slide {
  height: 280px;
  position: relative;
  background-color: #fff;
  border-radius: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 40px 40px;
}
.whom__slide .title {
  font-size: 25px;
  line-height: 31px;
}
.whom__slide .image {
  position: absolute;
  right: 30px;
  bottom: 30px;
  width: 52px;
  height: 52px;
}
.whom__slide .image img,
.whom__slide .image svg {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.goals__slider {
  margin: 0 auto;
  max-width: 1180px;
  width: 100%;
  position: relative;
}
.goals__slide {
  height: auto;
  background-color: #60ecb5;
  border-radius: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 50px;
}
.goals__slide > img {
  width: 160px;
  height: auto;
  margin-bottom: 60px;
}
.goals__slide .content {
  display: grid;
  gap: 18px;
}
.goals__slide .title {
  font-size: 25px;
  line-height: 31px;
}
.goals__slide .text {
  font-size: 14px;
  line-height: 20px;
}

.partners__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
}
.partners__item {
  width: 185px;
  height: 185px;
  border-radius: 50%;
  background-color: #fff;
  position: relative;
}
.partners__item:hover img:nth-child(1) {
  opacity: 0;
}
.partners__item:hover img:nth-child(2) {
  opacity: 1;
}
.partners__item img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: 0.4s opacity;
  -o-transition: 0.4s opacity;
  transition: 0.4s opacity;
}
.partners__item img:nth-child(1) {
  opacity: 1;
}
.partners__item img:nth-child(2) {
  opacity: 0;
}

.volunteers__slider {
  max-width: 1274px;
  margin: 0 auto;
  position: relative;
}
.volunteers__slide {
  height: auto !important;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 36px;
  border-radius: 30px;
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 16px;
}
.volunteers__slide .avatar {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}
.volunteers__slide .info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 38px;
}
.volunteers__slide .person {
  font-size: 14px;
  line-height: 15px;
}
.volunteers__slide .person__city {
  color: #1fb599;
}
.volunteers__slide .stats__title {
  text-transform: uppercase;
  font-size: 16px;
  margin-bottom: 16px;
}
.volunteers__slide .stats__value {
  font-size: 24px;
  margin-bottom: 10px;
  padding-bottom: 14px;
  border-bottom: 1px solid #d6e1dd;
}
.volunteers__button {
  position: relative;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  height: 86px;
  width: 318px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 25px;
  line-height: 27px;
  font-weight: 700;
  text-transform: uppercase;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 43px;
  border: 1px solid #3c9;
  color: #3c9;
  margin-top: 48px;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}
.volunteers__button:hover {
  background-color: #3c9;
  color: #fff;
}

.map {
  padding-top: 90px;
  margin-bottom: 80px;
}
.map .custom-select {
  margin-bottom: 7px;
}
.map__box {
  display: grid;
  grid-template-columns: 958px 358px;
  gap: 18px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.map__body {
  height: 575px;
  position: relative;
}
.map__body img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
.map__settings {
  padding-top: 24px;
}
.map__settings .title {
  margin-bottom: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 25px;
  line-height: 27px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
.map__settings .title img,
.map__settings .title svg {
  width: 24px;
  height: auto;
}
.map__settings .select {
  position: relative;
  width: 100%;
  height: 40px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 2px solid #00b699;
  border-radius: 6px;
  box-sizing: border-box;
  padding: 0 20px;
  font-family: "ALSSector";
  font-size: 15px;
  line-height: 16px;
  color: #003333;
  outline: none;
  margin-bottom: 10px;
  display: block;
}
.map__settings .city-list {
  border: 1px solid #e8eaf2;
  /*border-right: 8px solid #e8eaf2;*/
  max-height: 430px;
  overflow-y: auto;
}
.map__settings .city-item {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 22px;
  cursor: pointer;
  border-bottom: 1px solid #e8eaf2;
}
.map__settings .address {
  font-size: 12px;
  line-height: 15px;
  color: #999999;
  max-width: 220px;
}
.map__settings .address img,
.map__settings .address svg {
  width: 12px;
  height: auto;
}
.map__settings .name {
  font-size: 14px;
  line-height: 15px;
}

.project {
  padding: 90px 0 80px;
  background-color: #60ecb5;
}
.project__box {
  max-width: 1180px;
  width: 100%;
  margin: 0 auto;
}
.project__tabs {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 10px;
  margin-bottom: 60px;
}
.project__tabs .tab {
  padding: 22px;
  border-radius: 16px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px solid #00b699;
  width: 100%;
  font-size: 14px;
  line-height: 15px;
  text-transform: uppercase;
  cursor: pointer;
  -webkit-transition-duration: 0.4s;
       -o-transition-duration: 0.4s;
          transition-duration: 0.4s;
  -webkit-transition-property: border-color, background-color;
  -o-transition-property: border-color, background-color;
  transition-property: border-color, background-color;
}
.project__tabs .tab.active {
  border-color: #fff;
  background-color: #fff;
}
.project__big {
  text-align: center;
  font-size: 47px;
  line-height: 48px;
  margin-bottom: 22px;
}
.project__text {
  text-align: center;
  font-size: 14px;
  line-height: 20px;
  margin-bottom: 50px;
}
.project__item {
  display: none;
}
.project__item.active {
  display: block;
}
.project__item .sim-arrow {
  display: none;
}
.project .project-initiative.opened {
  position: relative;
}
.project .project-initiative.opened .sim-arrow {
  display: block;
}
.project .project-initiative .swiper-slide {
  position: relative;
  background-color: #fff;
  border-radius: 20px;
  min-height: 480px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 60px 48px 110px;
  height: auto;
}
.project .project-initiative .swiper-slide .image {
  width: 142px;
  height: auto;
  display: block;
  margin: 0 auto 50px;
}
.project .project-initiative .swiper-slide .title {
  font-size: 25px;
  line-height: 31px;
}
.project .project-initiative .swiper-slide .text {
  font-size: 14px;
  line-height: 16px;
  margin-top: 16px;
}
.project .project-initiative .swiper-slide .action {
  cursor: pointer;
  position: absolute;
  bottom: 38px;
  right: 38px;
  border: 1px solid #00b699;
  height: 60px;
  border-radius: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 12px;
  font-size: 14px;
  line-height: 15px;
  color: #00b699;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}
.project .project-initiative .swiper-slide .action.with-map, .project .project-initiative .swiper-slide .action.with-donate {
  padding: 0 16px;
}
.project .project-initiative .swiper-slide .action.with-map:hover, .project .project-initiative .swiper-slide .action.with-donate:hover {
  background-color: #00b699;
  color: #fff;
}
.project .project-initiative .swiper-slide .action.with-map:hover path, .project .project-initiative .swiper-slide .action.with-donate:hover path {
  fill: #fff;
}
.project .project-initiative .swiper-slide .action.with-map img,
.project .project-initiative .swiper-slide .action.with-map svg, .project .project-initiative .swiper-slide .action.with-donate img,
.project .project-initiative .swiper-slide .action.with-donate svg {
  width: 38px;
  height: auto;
}
.project .project-initiative .swiper-slide .action.with-map img path,
.project .project-initiative .swiper-slide .action.with-map svg path, .project .project-initiative .swiper-slide .action.with-donate img path,
.project .project-initiative .swiper-slide .action.with-donate svg path {
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}
.project .project-initiative .swiper-slide .action.with-map img,
.project .project-initiative .swiper-slide .action.with-map svg {
  width: 24px;
  height: auto;
}
.project .project-initiative .swiper-slide .action.with-social {
  width: 60px;
}
.project .project-tariffs .swiper-slide {
  height: unset;
  position: relative;
  background-color: #fff;
  border-radius: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 36px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 50px;
}
.project .project-tariffs .title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  text-transform: uppercase;
  gap: 8px;
  margin-bottom: 22px;
  letter-spacing: 0.11em;
}
.project .project-tariffs .title img {
  height: 14px;
  width: auto;
}
.project .project-tariffs .list ul {
  display: grid;
  gap: 14px;
}
.project .project-tariffs .list ul li {
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-left: 22px;
  font-size: 14px;
  line-height: 16px;
}
.project .project-tariffs .list ul li:before {
  content: "";
  position: absolute;
  top: 2px;
  left: 0;
  width: 10px;
  height: 10px;
  background-image: url("../img/V.svg");
  background-size: cover;
}
.project .project-tariffs .bottom {
  display: grid;
  justify-items: center;
  gap: 14px;
}
.project .project-tariffs .price {
  color: #1fb599;
  text-transform: uppercase;
}
.project .project-tariffs .submit {
  height: 44px;
  line-height: 44px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0 18px;
  border: 1px solid #1fb599;
  color: #1fb599;
  font-size: 14px;
  border-radius: 12px;
  text-transform: uppercase;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}
.project .project-tariffs .submit:hover {
  color: #fff;
  background-color: #1fb599;
}
.project .tariffs-sub {
  margin-top: 34px;
  text-align: center;
  font-size: 14px;
  line-height: 18px;
}
.project .tariffs-sub a,
.project .tariffs-sub span {
  color: #fff;
  cursor: pointer;
}

.footer {
  background-color: #f2f3f7;
  padding: 74px 0 50px;
}
.footer .custom-select .list-box {
  border-color: #33cc99;
  border-width: 1px;
}
.footer .custom-select .list-box .list {
  background-color: #60ecb5;
}
.footer__person {
  display: block;
  width: 60px;
  margin: 0 auto 34px;
}
.footer__box {
  max-width: 1180px;
  width: 100%;
  background-color: #60ecb5;
  border-radius: 30px;
  margin: 0 auto 54px;
  padding: 60px 0 45px;
}
.footer__form {
  max-width: 560px;
  margin: 0 auto;
}
.footer__form .form-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 16px;
}
.footer__form .input-el {
  display: grid;
  gap: 12px;
}
.footer__form .input-el:last-child {
  grid-column: span 2;
}
.footer__form .input-el .placeholder {
  font-size: 15px;
  line-height: 15px;
  min-height: 15px;
  margin-left: 10px;
}
.footer__form .input-el input {
  width: 100%;
  height: 44px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px solid #00b699;
  border-radius: 8px;
  padding: 0 10px;
}
.footer__form .input-el textarea {
  width: 100%;
  height: 72px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px solid #FFF;
  background-color: #FFF;
  border-radius: 8px;
  padding: 20px 10px;
  resize: none;
}
.footer__form .input-el .select {
  width: 100%;
  position: relative;
  font-size: 14px;
  text-transform: uppercase;
}
.footer__form .input-el .select .actual {
  width: 100%;
  height: 44px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px solid #00b699;
  border-radius: 12px;
  padding: 0 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.footer__form .input-el .select .actual img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.footer__form .input-el .select select {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
}
.footer__form .form-check {
  margin-bottom: 34px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.footer__form .form-check input {
  position: absolute;
  opacity: 0;
}
.footer__form .form-check input:checked + .check {
  background-color: #18b396;
}
.footer__form .form-check .check {
  width: 23px;
  height: 23px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: 0.4s background-color;
  -o-transition: 0.4s background-color;
  transition: 0.4s background-color;
}
.footer__form .form-check .check img,
.footer__form .form-check .check svg {
  width: 60%;
  height: auto;
}
.footer__form .form-check .text {
  -webkit-transform: translateY(2px);
      -ms-transform: translateY(2px);
          transform: translateY(2px);
  font-size: 12px;
  line-height: 14px;
  color: #999999;
}
.footer__form .form-submit {
  height: 86px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-width: 236px;
  background-color: #fff;
  border-radius: 43px;
  font-size: 25px;
  line-height: 27px;
  text-transform: uppercase;
  font-weight: 700;
  position: relative;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}
.footer__form .form-submit:hover {
  background-color: #18b396;
  color: #fff;
}
.footer__bottext {
  font-size: 14px;
  line-height: 16px;
  text-align: center;
  max-width: 940px;
  width: 100%;
  margin: 0 auto 40px;
  color: #999999;
}
.footer__bottext span {
  text-transform: uppercase;
}
.footer__social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8px;
}
.footer__social img {
  height: 32px;
  width: auto;
}

@media screen and (max-width: 1200px) {
  .footer {
    padding: 52px 0 90px;
  }
  .footer__box {
    width: calc(100% - 160px);
  }
  .footer__bottext {
    padding: 0 80px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}
@media screen and (max-width: 900px) {
  .footer__box {
    width: calc(100% - 60px);
  }
}
@media screen and (max-width: 740px) {
  .footer {
    padding: 28px 0 36px;
  }
  .footer__person {
    width: 30px;
    margin-bottom: 14px;
  }
  .footer__box {
    width: 100%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 0 26px;
    background-color: transparent;
  }
  .footer__form .form-box {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .footer__form .form-box .input-el:last-child {
    grid-column: 1;
  }
  .footer__form .input-el {
    gap: 8px;
  }
  .footer__form .input-el:nth-child(4) .placeholder {
    display: none;
  }
  .footer__form .input-el .placeholder {
    font-size: 14px;
    line-height: 16px;
  }
  .footer__form .input-el .select .actual {
    background-color: #fff;
    border-color: #fff;
    color: #1fb599;
  }
  .footer__form .form-check {
    gap: 12px;
    margin-bottom: 30px;
  }
  .footer__form .form-check .text {
    font-size: 9px;
    line-height: 10px;
  }
  .footer__form .form-check .text br {
    content: " ";
    margin-right: 4px;
  }
  .footer__form .form-submit {
    background-color: #1fb599;
    color: #fff;
  }
  .footer__bottext {
    padding: 0 20px;
    margin-bottom: 20px;
  }
  .footer__social img {
    height: 33px;
    width: auto;
  }

  .footer .custom-select .list-box .list {
    background-color: #f2f3f7;
  }

  .footer__form .input-el textarea {
    background-color: #FFF;
    border-color: #FFF;
  }
}
@media screen and (max-width: 1600px) {
  .whom__slider {
    max-width: 1180px;
  }

  .volunteers__slider {
    max-width: 1180px;
  }
}
@media screen and (max-width: 1200px) {
  .promo {
    padding: 130px 0 44px;
  }
  .promo__image {
    height: 196px;
  }
  .promo .promo-dec._1 {
    top: 290px;
    left: 160px;
    width: 72px;
  }
  .promo .promo-dec._2 {
    top: 216px;
    left: 300px;
    width: 28px;
  }
  .promo .promo-dec._3 {
    top: 140px;
    right: 170px;
    left: unset;
    width: 90px;
  }
  .promo .promo-dec._4 {
    top: 310px;
    right: 150px;
    left: unset;
    width: 36px;
  }

  .why {
    padding: 46px 0 80px;
  }
  .why__slider {
    width: calc(100% - 220px);
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }

  .initiative {
    padding: 52px 0;
  }

  .total {
    padding: 70px 0 40px;
  }
  .total .sim-title {
    margin-bottom: 60px;
  }
  .total .total-dec._1 {
    top: 300px;
    left: 200px;
    -webkit-transform: scale(0.8);
        -ms-transform: scale(0.8);
            transform: scale(0.8);
  }
  .total .total-dec._2 {
    top: 100px;
    left: 100px;
    -webkit-transform: scale(0.8);
        -ms-transform: scale(0.8);
            transform: scale(0.8);
  }
  .total .total-dec._3 {
    top: 300px;
    right: 200px;
    -webkit-transform: scale(0.8);
        -ms-transform: scale(0.8);
            transform: scale(0.8);
  }
  .total .total-dec._4 {
    top: 100px;
    right: 100px;
    -webkit-transform: scale(0.8);
        -ms-transform: scale(0.8);
            transform: scale(0.8);
  }
  .total__value {
    font-size: 173px;
    line-height: 173px;
    margin-bottom: 158px;
  }
  .total__wimg {
    top: 110px;
  }
  .total__mimg {
    top: 190px;
  }
  .total__box {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 34px;
  }
  .total__box .info {
    width: 100%;
    max-width: 736px;
  }
  .total__box .results {
    max-width: 380px;
  }

  .gray-box > section {
    padding-top: 64px;
  }

  .whom__slider {
    width: calc(100% - 320px);
  }

  .goals__slider {
    width: calc(100% - 220px);
  }

  .partners__list {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }

  .volunteers__slider {
    width: calc(100% - 220px);
  }

  .map {
    padding-top: 80px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .map__box {
    grid-template-columns: auto 360px;
    gap: 18px;
    padding: 0 16px;
  }

  .project {
    padding: 70px 0;
  }
  .project__tabs {
    margin: 0 50px 64px;
  }
  .project__big, .project__text {
    max-width: 620px;
    margin: 0 auto;
  }
  .project__text {
    margin-bottom: 40px;
  }
  .project__item .project-tariffs,
.project__item .project-initiative {
    margin: 0 auto;
    width: calc(100% - 200px);
    position: relative;
  }
  .project__item .sim-arrow {
    display: block;
  }
}
@media screen and (max-width: 900px) {
  .promo__box .top {
    margin-bottom: 30px;
  }

  .why {
    padding: 40px 0 50px;
  }
  .why__slider {
    width: calc(100% - 24px);
  }
  .why__slider .sim-arrow {
    display: none;
  }

  .total__top {
    margin-bottom: 70px;
  }
  .total__value {
    font-size: 131px;
    line-height: 131px;
    margin-bottom: 200px;
  }
  .total__box .info .text1 {
    font-size: 44px;
    line-height: 46px;
  }
  .total__box .info .text2 {
    font-size: 22px;
    line-height: 24px;
  }

  .whom__slider {
    width: calc(100% - 140px);
  }
  .whom__slider .sim-arrow {
    display: none;
  }
  .whom__slide {
    font-size: 28px;
    line-height: 32px;
  }

  .goals__slide {
    height: auto;
    gap: 40px;
  }
  .goals__slider {
    width: calc(100% - 48px);
  }
  .goals__slider .sim-arrow {
    display: none;
  }

  .partners__list {
    gap: 24px 20px;
  }
  .partners__item:last-child {
    display: none;
  }

  .volunteers__slider {
    width: calc(100% - 140px);
  }
  .volunteers__slider .sim-arrow {
    display: none;
  }
  .volunteers__slider .volunteers-pagin {
    margin-top: 30px;
  }
  .volunteers__button {
    margin-top: 36px;
  }

  .map__box {
    grid-template-columns: auto;
  }
  .map__settings .title {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }

  .project__tabs {
    margin: 0 22px 34px;
  }
  .project__tabs .tab {
    padding-right: 12px;
  }
  .project__item .project-initiative,
.project__item .project-tariffs {
    width: calc(100% - 48px);
  }
  .project__item .project-initiative .sim-arrow,
.project__item .project-tariffs .sim-arrow {
    display: none;
  }
  .project__item .sim-pagin .swiper-pagination-bullet-active {
    background-color: #fff;
  }
  .project__item .tariffs-sub br {
    content: " ";
    margin-right: 4px;
  }
}
.mouse-mobile {
  display: none;
}

@media screen and (max-width: 740px) {
  .promo {
    padding: 92px 0 32px;
  }
  .promo__image {
    margin-bottom: 30px;
  }
  .promo .promo-dec._1 {
    width: 44px;
    left: 40px;
    top: 224px;
  }
  .promo .promo-dec._2 {
    width: 18px;
    left: 30px;
    top: 130px;
  }
  .promo .promo-dec._3 {
    width: 54px;
    top: 86px;
    right: 24px;
  }
  .promo .promo-dec._4 {
    width: 22px;
    right: 26px;
    top: 240px;
  }
  .promo__box .top {
    margin-bottom: 20px;
    font-size: 8px;
    line-height: 16px;
  }
  .promo__box .title {
    font-size: 18px;
    line-height: 19px;
    letter-spacing: 0;
  }
  .promo__box .buttons {
    display: none;
  }
  .promo .mouse-mobile {
    display: block;
    width: 36px;
    margin: 0 auto;
  }
  .promo .mouse-mobile img,
.promo .mouse-mobile svg {
    width: 100%;
    height: auto;
  }

  .why {
    padding: 22px 0 12px;
  }
  .why__slider {
    width: calc(100% - 16px);
  }
  .why__card {
    border-radius: 12px;
    padding: 14px;
    border-radius: 10px;
  }
  .why__card .warning {
    margin-bottom: 14px;
    font-size: 12px;
    line-height: 12px;
    padding-left: 8px;
  }
  .why__card .warning:before {
    width: 4px;
    height: 4px;
  }
  .why__card .image {
    margin-bottom: 20px;
    width: 70px;
  }
  .why__card .title {
    font-size: 14px;
    line-height: 18px;
    min-height: auto;
    margin-bottom: 12px;
  }
  .why__card .text {
    font-size: 12px;
    line-height: 14px;
  }

  .initiative {
    padding: 24px 0 34px;
  }
  .initiative__btn {
    display: none;
  }
  .initiative .sim-title {
    margin-bottom: 0;
    max-width: 98%;
    width: 100%;
  }
  .initiative .sim-title br {
    content: " ";
    margin-right: 4px;
  }

  .total {
    padding: 34px 0 30px;
  }
  .total__top {
    font-size: 12px;
    line-height: 13px;
    margin-bottom: 10px;
  }
  .total__wimg {
    display: none;
  }
  .total__value {
    font-size: 59px;
    line-height: 59px;
    margin-bottom: 116px;
  }
  .total__mimg {
    width: 121px;
    top: 79px;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .total__box {
    margin-bottom: 0;
  }
  .total__box .info {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 0 20px;
  }
  .total__box .info .text1 {
    font-size: 18px;
    line-height: 19px;
  }
  .total__box .info .text2 {
    font-size: 12px;
    line-height: 13px;
  }
  .total__box .info .text3 {
    font-size: 9px;
    line-height: 10px;
  }
  .total__box .results {
    max-width: 200px;
    padding: 18px;
    font-size: 9px;
    line-height: 10px;
    gap: 14px;
  }
  .total__box .results img {
    height: 64px;
    width: auto;
  }
  .total__btn {
    display: none;
  }

  .whom__slider {
    width: calc(100% - 32px);
  }
  .whom__slide {
    border-radius: 12px;
    padding: 16px 16px 140px 16px;
    height: auto;
  }
  .whom__slide .title {
    font-size: 14px;
    line-height: 16px;
  }

  .gray-box {
    padding-bottom: 12px;
  }
  .gray-box > section {
    padding-top: 34px;
  }

  .goals__slider {
    width: calc(100% - 32px);
  }
  .goals__slide {
    border-radius: 12px;
    gap: 12px;
    padding: 14px;
  }
  .goals__slide > img {
    width: 90%;
  }
  .goals__slide .title {
    font-size: 14px;
    line-height: 16px;
  }
  .goals__slide .text {
    font-size: 12px;
    line-height: 14px;
  }
  .goals__slide .content {
    gap: 6px;
  }

  .partners__list {
    gap: 18px 10px;
    width: 90%;
    margin: 0 auto;
  }
  .partners__item {
    width: 90px;
    height: 90px;
  }
  .partners__item:nth-last-child(-n+2) {
    display: none;
  }
  .partners__item img,
.partners__item svg {
    max-width: 80%;
    height: auto;
  }

  .volunteers__slider {
    width: calc(100% - 32px);
  }
  .volunteers__slider .sim-pagin {
    margin-top: 12px;
  }
  .volunteers__slide {
    padding: 14px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 8px;
    border-radius: 12px;
  }
  .volunteers__slide .person {
    font-size: 9px;
    line-height: 10px;
  }
  .volunteers__slide .info {
    gap: 8px;
  }
  .volunteers__slide .stats__title {
    font-size: 9px;
    line-height: 10px;
    margin-bottom: 8px;
  }
  .volunteers__slide .stats__value {
    font-size: 12px;
    line-height: 13px;
    padding-bottom: 6px;
    margin-bottom: 6px;
  }
  .volunteers__slide .stats__stars img {
    height: 7px;
    width: auto;
  }
  .volunteers__button {
    display: none;
  }

  .map {
    margin-bottom: 0;
    padding: 34px 0 30px;
  }
  .map__box {
    grid-template-columns: 1fr;
    padding: 0;
    gap: 10px;
  }
  .map__body {
    width: 100%;
    height: 90vw;
  }
  .map__settings {
    padding: 0 16px;
  }
  .map__settings .title {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 6px;
    text-align: center;
    font-size: 12px;
    line-height: 13px;
  }
  .map__settings .title img {
    width: 12px;
    height: auto;
  }
  .map__settings .city-item {
    padding: 12px 40px 12px 14px;
  }
  .map__settings .city-item .name,
.map__settings .city-item .address {
    font-size: 9px;
    line-height: 10px;
  }

  .project {
    padding: 24px 0;
  }
  .project__tabs {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin: 0 16px 20px;
  }
  .project__tabs .tab {
    padding: 10px;
    border-radius: 8px;
    font-size: 9px;
    line-height: 10px;
  }
  .project__big {
    font-size: 18px;
    line-height: 19px;
    margin-bottom: 18px;
  }
  .project__text {
    font-size: 9px;
    line-height: 10px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 0 40px;
  }
  .project__text br {
    content: " ";
    margin-right: 4px;
  }
  .project .project__item .project-initiative,
.project .project__item .project-tariffs {
    width: calc(100% - 32px);
  }
  .project .project__item .project-initiative .swiper-slide,
.project .project__item .project-tariffs .swiper-slide {
    padding: 24px 30px 110px;
    border-radius: 14px;
    min-height: unset;
  }
  .project .project__item .project-initiative .swiper-slide .title,
.project .project__item .project-tariffs .swiper-slide .title {
    text-align: center;
    font-size: 12px;
    line-height: 13px;
  }
  .project .project__item .project-initiative .swiper-slide .text,
.project .project__item .project-tariffs .swiper-slide .text {
    font-size: 9px;
    line-height: 10px;
    text-align: center;
  }
  .project .project__item .project-initiative .swiper-slide .image,
.project .project__item .project-tariffs .swiper-slide .image {
    margin-bottom: 24px;
  }
  .project .project__item .project-initiative .swiper-slide .action,
.project .project__item .project-tariffs .swiper-slide .action {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    right: 50%;
    -webkit-transform: translateX(50%);
        -ms-transform: translateX(50%);
            transform: translateX(50%);
    white-space: nowrap;
    bottom: 30px;
  }
  .project .project__item .project-initiative .swiper-slide .action__title,
.project .project__item .project-tariffs .swiper-slide .action__title {
    font-size: 12px;
    line-height: 13px;
  }
  .project .project__item .project-initiative .swiper-slide .action.with-map,
.project .project__item .project-tariffs .swiper-slide .action.with-map {
    gap: 12px;
  }
  .project .project__item .project-initiative .swiper-slide .action.with-map img,
.project .project__item .project-tariffs .swiper-slide .action.with-map img {
    width: 23px;
  }
  .project .project__item .project-tariffs .swiper-slide {
    padding: 22px 26px 30px;
  }
  .project .project__item .project-tariffs .swiper-slide .title {
    font-size: 11px;
    line-height: 12px;
    margin-bottom: 24px;
  }
  .project .project__item .project-tariffs .swiper-slide .title img {
    height: 14px;
    width: auto;
  }
  .project .project__item .project-tariffs .swiper-slide .list {
    gap: 12px;
  }
  .project .project__item .project-tariffs .swiper-slide .list li {
    font-size: 9px;
    line-height: 10px;
    padding-left: 12px;
  }
  .project .project__item .project-tariffs .swiper-slide .list li:before {
    width: 7px;
    height: 7px;
    top: 0;
  }
  .project .project__item .project-tariffs .swiper-slide .price {
    font-size: 11px;
    line-height: 12px;
  }
  .project .tariffs-sub {
    padding: 0 16px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    font-size: 9px;
    line-height: 10px;
  }
}
.mission {
  position: relative;
  padding: 144px 0 54px;
  background-color: #60ecb5;
}
.mission.type .mission__title {
  max-width: 700px;
  margin: 0 auto 44px;
}
.mission.type .mission__sub {
  max-width: 700px;
  margin: 0 auto;
  font-size: 25px;
  line-height: 31px;
  text-align: center;
}
.mission .promo-dec {
  position: absolute;
  pointer-events: none;
  z-index: 6;
}
.mission .promo-dec._1 {
  top: 270px;
  left: 460px;
  width: 72px;
}
.mission .promo-dec._2 {
  top: 200px;
  left: 618px;
  width: 28px;
}
.mission .promo-dec._3 {
  top: 142px;
  right: 524px;
  width: 90px;
}
.mission .promo-dec._4 {
  top: 287px;
  right: 500px;
  width: 36px;
}
.mission__image {
  height: 196px;
  width: auto;
  margin: 0 auto 44px;
  position: relative;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}
.mission__title {
  text-align: center;
  font-size: 47px;
  line-height: 48px;
  margin-bottom: 38px;
}
.mission__slider {
  position: relative;
  max-width: 1276px;
  margin: 0 auto 58px;
}
.mission__slide {
  background-color: #fff;
  border-radius: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 28px 28px 70px 28px;
  height: auto;
}
.mission__slide .num {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-top: 2.5px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #1fb599;
  font-size: 16px;
  line-height: 30px;
  color: #fff;
  margin-bottom: 26px;
}
.mission__slide .body {
  font-size: 14px;
  line-height: 20px;
}
.mission__btn {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  height: 88px;
  border: 1px solid #1fb599;
  border-radius: 44px;
  padding: 0 32px;
  font-size: 25px;
  line-height: 27px;
  font-weight: bold;
  text-transform: uppercase;
  color: #1fb599;
  position: relative;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 1400px) {
  .mission__slider {
    max-width: 1000px;
  }
  .mission__slider .sim-pagin {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .mission__slider .sim-pagin .swiper-pagination-bullet-active {
    background-color: #fff;
  }
  .mission .promo-dec._1 {
    top: 30%;
    left: 20%;
  }
  .mission .promo-dec._2 {
    top: 20%;
    left: 34%;
  }
  .mission .promo-dec._3 {
    top: 14%;
    right: 19%;
  }
  .mission .promo-dec._4 {
    top: 33%;
    right: 14%;
  }
}
@media screen and (max-width: 1100px) {
  .mission__slider {
    max-width: calc(100% - 32px);
  }
}
@media screen and (max-width: 740px) {
  .mission {
    padding: 50px 0;
  }
  .mission__title {
    font-size: 28px;
    line-height: 32px;
  }
  .mission .promo-dec._1 {
    width: 44px;
    left: 40px;
    top: 224px;
  }
  .mission .promo-dec._2 {
    width: 18px;
    left: 30px;
    top: 130px;
  }
  .mission .promo-dec._3 {
    width: 54px;
    top: 86px;
    right: 24px;
  }
  .mission .promo-dec._4 {
    width: 22px;
    right: 26px;
    top: 240px;
  }
}
.type-sec {
  background-color: #FFF;
  padding: 68px 0;
}
.type-sec__body {
  max-width: 1130px;
  margin: 0 auto;
  font-size: 14px;
  line-height: 20px;
}
.type-sec__body h2 {
  font-weight: bold;
}
.type-sec__body img {
  max-width: 100%;
  display: block;
  position: relative;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  margin: 30px 0;
}
.type-sec__button {
  position: relative;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 25px;
  line-height: 27px;
  font-weight: 700;
  text-transform: uppercase;
  color: #1fb599;
  border: 1px solid #1fb599;
  border-radius: 43px;
  height: 86px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 30px;
  margin-top: 60px;
}

@media screen and (max-width: 1140px) {
  .type-sec {
    padding: 68px 0;
  }
  .type-sec__body {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 0 30px;
  }
}
.partners__more {
  display: none;
}

@media screen and (max-width: 740px) {
  .promo__box .title {
    font-size: 22px;
    line-height: 24px;
  }
  .promo__image {
    height: 220px;
  }

  .total__mimg {
    width: 141px;
  }
  .total__box .info .text1 {
    font-size: 20px;
    line-height: 22px;
  }
  .total__box .info .text2 {
    font-size: 16px;
    line-height: 18px;
  }
  .total__box .info .text3 {
    font-size: 12px;
    line-height: 14px;
  }
  .total__box .results {
    -webkit-transform: scale(1.1);
        -ms-transform: scale(1.1);
            transform: scale(1.1);
  }
  .total .total-dec {
    display: block;
    -webkit-transform: none !important;
        -ms-transform: none !important;
            transform: none !important;
  }
  .total .total-dec._1 {
    top: 42px;
    left: 28px;
    width: 17px;
  }
  .total .total-dec._2 {
    top: 92px;
    left: 83px;
    width: 35px;
  }
  .total .total-dec._3 {
    top: 110px;
    right: 70px;
    width: 21px;
  }
  .total .total-dec._4 {
    top: 37px;
    right: 31px;
    width: 25px;
  }

  .whom__slide {
    padding-bottom: 100px;
  }
  .whom__slide .title {
    font-size: 12px;
    line-height: 13px;
  }
  .whom__slide .image {
    width: 32px;
    height: 32px;
  }

  .goals__slide > img {
    width: 50%;
    margin-bottom: 4px;
  }
  .goals__slide .title {
    font-size: 12px;
    line-height: 13px;
  }
  .goals__slide .text {
    font-size: 9px;
    line-height: 10px;
  }

  .partners.opened .partners__more {
    display: none;
  }
  .partners.opened .partners__item {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .partners__list {
    width: 62.5%;
  }
  .partners__item {
    width: 28vw;
    height: 28vw;
  }
  .partners__item img {
    width: 60%;
  }
  .partners__more {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
    font-size: 9px;
    height: 20px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    width: 56px;
    border-radius: 10px;
    padding-top: 3px;
    border: 1px solid #33cc99;
    color: #33cc99;
    margin-top: 22px;
  }

  .project .project-initiative {
    max-width: 300px;
  }
  .project .project-initiative .swiper-slide .action {
    bottom: 30px;
  }
  .project .project-initiative .swiper-slide .image {
    width: 130px;
  }

  .mission.type .mission__title {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 0 30px;
    margin-bottom: 22px;
  }

  .mission.type .mission__sub {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 0 30px;
    font-size: 22px;
    line-height: 24px;
  }

  .type-sec {
    padding: 34px 0;
  }

  .type-sec__body {
    padding: 0 16px;
  }

  .why__card .warning {
    font-size: 5px;
    line-height: 6px;
  }
  .why__card .title {
    font-size: 12px;
    line-height: 13px;
    margin-bottom: 8px;
    min-height: 26px;
  }
  .why__card .text {
    font-size: 9px;
    line-height: 10px;
  }

  .initiative__img {
    width: 30px;
    height: auto;
    margin-bottom: 12px;
  }
}

.success-text {
  text-align: center;
  color: #003333;
  font-size: 18px;
  margin-top: 30px;
}

.error-text {
  text-align: center;
  color: #003333;
  font-size: 18px;
  margin-top: 30px;
}

#yamap {
  width:100%;
  height: 550px;
}

@media screen and (max-width: 740px) {
  #yamap {
    height: 90vw;
  }
  .map__settings .city-list {
    max-height: 250px;
  }
}

strong {
  font-weight: bold;
}

.delivery_price {
  display: none;
  padding-bottom: 20px;
}

.field.--file {
  display: flex;
  align-items: center;
  cursor: pointer;
  margin: 15px 0;
}

.field.--file .field--icon {
  flex-shrink: 0;
  margin-right: 10px;
}

.field.--file .field--label {
  font-size: 15px;
  line-height: 15px;
}

.field.--file .field--input {
  display: none;
}

.banner-section {
  padding: 0;
  margin: 30px;
}