@font-face {
  font-family: "Helvetica Neue";
  src: local("Helvetica Neue Roman"), local("Helvetica-Neue-Roman"), url("../fonts/HelveticaNeueCyr-Roman.woff2") format("woff2"), url("../fonts/HelveticaNeueCyr-Roman.woff") format("woff"), url("../fonts/HelveticaNeueCyr-Roman.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Helvetica Neue";
  src: local("Helvetica Neue Bold"), local("Helvetica-Neue-Bold"), url("../fonts/HelveticaNeueCyr-Bold.woff2") format("woff2"), url("../fonts/HelveticaNeueCyr-Bold.woff") format("woff"), url("../fonts/HelveticaNeueCyr-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  margin: 0;
  height: 100%;
  -webkit-overflow-scrolling: touch;
  overflow-scrolling: touch;
  font-family: "Helvetica Neue", sans-serif, Arial;
}

body {
  background: #fff;
  color: #ddd;
  font-size: 18px;
  line-height: 1.4;
  font-weight: 300;
  overflow-x: hidden;
  overflow-y: scroll;
}

.page-wrap {
  height: 100%;
}
@media (max-width: 767px) {
  .page-wrap {
    padding-top: 65px;
    overflow-x: hidden;
  }
}

.header {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  padding: 20px 0;
  z-index: 100;
  background-color: #fff;
  will-change: transform;
}
@media (max-width: 767px) {
  .header {
    display: flex;
    align-items: center;
    height: 65px;
    padding: 0;
  }
}
.header--container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0 40px;
}
@media (max-width: 767px) {
  .header--container {
    padding: 0 16px;
  }
}
.header--left {
  display: flex;
  align-items: center;
}

.header-logo a {
  display: flex;
  text-decoration: none;
}

.header-nav {
  margin-left: 106px;
}
@media (max-width: 767px) {
  .header-nav {
    display: none;
  }
}
.header-nav ul {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.header-nav ul li {
  margin-right: 30px;
}
.header-nav ul li a {
  color: #666666;
  font-weight: 400;
  font-size: 18px;
  text-decoration: none;
  line-height: 1;
  transition: all 200ms ease-out;
  color: #141414;
}
.header-btn {
  display: flex;
}
.header-btn a {
  display: flex;
  padding: 12px 22px;
  color: #141414;
  background: #FDD631;
  border: 2px solid #141414;
  border-radius: 0;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 200ms ease-out;
}
@media (max-width: 767px) {
  .header-btn a {
    padding: 10px 16px 6px;
    font-size: 16px;
  }
}
.header-btn a:hover {
  color: #fff;
  background: #141414;
}

.panels {
  height: 100%;
}
@media (max-width: 767px) {
  .panels {
    height: auto;
  }
}

.panel {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}
@media (max-width: 767px) {
  .panel {
    height: auto;
    padding: 0 16px;
  }
}
.panel--inner {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}
@media (max-width: 767px) {
  .panel--inner {
    flex-wrap: wrap;
    height: auto;
    max-height: none;
  }
}
.panel.panel-1 .panel--inner {
  padding-left: 50px;
}
@media (max-width: 767px) {
  .panel.panel-1 .panel--inner {
    padding-left: 0;
  }
}

.panels-container {
  width: 400%;
  height: 100%;
  display: flex;
  flex-wrap: nowrap;
}
@media (max-width: 767px) {
  .panels-container {
    flex-wrap: wrap;
    width: 100%;
    height: auto;
  }
}

.btn-next a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 79px;
  height: 79px;
  border: 2px solid #141414;
  border-radius: 50%;
  transition: all 200ms ease-out;
}
.btn-next a:hover {
  background: #141414;
}
.btn-next a:hover svg path {
  stroke: #fff;
}
.btn-next a:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  z-index: 5;
}
.btn-next a svg {
  display: flex;
  position: relative;
  z-index: 2;
}
.btn-next a svg path {
  transition: all 200ms ease-out;
}

@media (max-width: 767px) {
  .section-col {
    width: 100%;
    height: auto !important;
  }
}
.section-col img {
  display: flex;
}

.section-col-1 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media (max-width: 767px) {
  .section-col-1 .image-top {
    margin: 30px 0 10px;
  }
  .section-col-1 .image-top img {
    width: 100%;
    height: auto;
  }
  .section-col-1 .image-bottom {
    overflow: hidden;
    margin-bottom: 40px;
  }
  .section-col-1 .image-bottom img {
    width: 150%;
  }
}

.section-col-2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
@media (max-width: 767px) {
  .section-col-2 .image-top {
    width: 100%;
  }
  .section-col-2 .image-top img {
    width: 150%;
  }
}
.section-col-2 .image-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  width: 100%;
}
@media (max-width: 767px) {
  .section-col-2 .image-bottom .btn-next {
    display: none;
  }
  .section-col-2 .image-bottom img {
    width: 60%;
    margin: 80px auto;
  }
}

.members-list {
  display: flex;
  flex-wrap: wrap;
}

.member-item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 300px;
  height: 300px;
  margin-right: 30px;
  margin-bottom: 30px;
  transition: all 200ms ease-out;
}
@media (max-width: 767px) {
  .member-item {
    width: 100%;
    height: auto;
    margin-right: 0;
    margin-bottom: 64px;
    z-index: 5;
  }
  .member-item.member-can-be, .member-item.member-animation-wrap {
    display: none;
  }
}
@media (min-width: 1200px) {
  .member-item:hover .member-overlay {
    right: 0;
    opacity: 1;
    visibility: visible;
    z-index: 5;
    transition: all 400ms ease-out;
  }
  .member-item:first-child {
    margin-left: 100px;
  }
  .member-item.member-animation-wrap {
    margin-left: 200px;
  }
}

.member-img {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
  z-index: 2;
}
@media (max-width: 767px) {
  .member-img {
    position: absolute;
    top: -30px;
    left: -4px;
    width: 100px;
    height: 100px;
  }
  .member-img img {
    width: 100%;
    height: auto;
  }
}
.member-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.member-overlay {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: absolute;
  top: 0;
  right: 10%;
  width: 55%;
  height: 100%;
  padding-left: 20px;
  padding-bottom: 54px;
  background: #FDD631;
  opacity: 0;
  visibility: hidden;
  z-index: -1;
  transition: all 200ms ease-out;
}
@media (max-width: 767px) {
  .member-overlay {
    position: static;
    width: 100%;
    height: auto;
    padding: 90px 30px 40px 40px;
    opacity: 1;
    visibility: visible;
  }
}

.member-inst {
  position: absolute;
  top: -20px;
  right: 40px;
  text-transform: uppercase;
  transform: rotate(-90deg);
  transform-origin: top right;
}
@media (max-width: 767px) {
  .member-inst {
    top: 12px;
    right: 16px;
    transform: none;
  }
}
.member-inst a {
  color: #141414;
  font-size: 16px;
  font-style: italic;
  text-decoration: none;
}
@media (max-width: 767px) {
  .member-inst a {
    font-size: 14px;
  }
}
.member-inst a:hover {
  text-decoration: underline;
}

.member-name {
  margin-bottom: 10px;
  color: #141414;
  font-size: 20px;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .member-name {
    margin-bottom: 0;
  }
}

.member-position {
  color: #141414;
  font-size: 14px;
  font-style: italic;
}
@media (max-width: 767px) {
  .member-position {
    margin-top: 8px;
  }
}

.members-title {
  position: absolute;
  left: 250px;
  bottom: 40px;
}
@media (max-width: 767px) {
  .members-title {
    position: static;
    width: 100%;
  }
  .members-title svg {
    width: 90%;
  }
}

.member-spin {
  -webkit-animation: spin 8s infinite linear;
  animation: spin 8s infinite linear;
}

@-moz-keyframes spin {
  from {
    -moz-transform: rotate(0deg);
  }
  to {
    -moz-transform: rotate(-360deg);
  }
}
@-webkit-keyframes spin {
  from {
    -webkit-transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(-360deg);
  }
}
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(-360deg);
  }
}
.program-col-1 {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 580px;
}
@media (max-width: 767px) {
  .program-col-1 {
    width: 100%;
  }
}
.program-col-1 .row-top {
  display: flex;
  justify-content: flex-end;
  position: relative;
  bottom: -70px;
}
@media (max-width: 767px) {
  .program-col-1 .row-top {
    display: none;
  }
}
.program-col-1 .row-bottom {
  margin-left: -50px;
}
@media (max-width: 767px) {
  .program-col-1 .row-bottom {
    margin-left: 0;
  }
  .program-col-1 .row-bottom svg {
    display: flex;
    width: 90%;
    margin: 0 auto;
  }
}
.program-col-1 .program-case {
  position: absolute;
  top: 58%;
  left: 35%;
  transform: rotate(33deg);
}
@media (max-width: 767px) {
  .program-col-1 .program-case {
    display: none;
  }
}

.program {
  min-width: 740px;
}
@media (max-width: 767px) {
  .program {
    width: 100%;
    min-width: 0;
  }
}
.program--title-mobile {
  display: none;
}
@media (max-width: 767px) {
  .program--title-mobile {
    display: flex;
  }
}
.program--item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  border-bottom: 1px solid #141414;
}
@media (max-width: 767px) {
  .program--item {
    flex-wrap: wrap;
  }
}
.program--left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}
@media (max-width: 767px) {
  .program--left {
    width: 100%;
  }
}
.program--label {
  padding: 4px 12px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 700;
}
.program--label.yellow {
  color: #141414;
  background: #FDD631;
}
.program--label.blue {
  color: #fff;
  background: #1F6FCF;
}
.program--label.black {
  color: #fff;
  background: #111;
}
.program--name {
  margin-top: 16px;
  color: #141414;
  font-size: 20px;
}
.program--name .line {
  text-decoration: line-through;
}
.program--right:empty {
  display: none;
}
@media (max-width: 767px) {
  .program--right {
    width: 100%;
    margin-top: 20px;
  }
  .program--right img {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
  }
}
.program--partners {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 70px;
}
@media (max-width: 767px) {
  .program--partners {
    flex-wrap: wrap;
    justify-content: flex-start;
    margin-top: 40px;
  }
}
.program--partners img {
  display: flex;
  max-width: 120px;
  height: auto;
  max-height: 25px;
}
@media (max-width: 767px) {
  .program--partners img {
    max-height: 35px;
    margin-right: 8vw;
    margin-bottom: 20px;
  }
}
.program--partners .btn-next {
  position: absolute;
  right: 0;
}
@media (max-width: 767px) {
  .program--partners .btn-next {
    display: none;
  }
}

.your-donation {
  position: absolute;
  top: 80px;
  left: 0px;
  transform: rotate(-13deg);
}
@media (max-width: 767px) {
  .your-donation {
    position: static;
    margin-bottom: 60px;
  }
}
.your-donation img {
  width: 150px;
}
@media (max-width: 767px) {
  .your-donation img {
    display: block;
    margin: 0 auto;
  }
}

.contacts {
  width: 100%;
}
.contacts--header {
  display: flex;
  justify-content: flex-start;
  padding-left: 100px;
}
@media (max-width: 767px) {
  .contacts--header {
    margin-top: 30px;
    padding-left: 0;
  }
}
.contacts--content {
  display: flex;
  flex-wrap: wrap;
  height: 450px;
}
.contacts--info {
  position: relative;
  width: 35%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #FDD631;
  border-top-left-radius: 50%;
  border-bottom-left-radius: 50%;
}
@media (max-width: 767px) {
  .contacts--info {
    width: 100%;
    background: none;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }
}
.contacts--info:before {
  content: "";
  position: absolute;
  top: 0;
  left: -10%;
  width: 70%;
  height: 100%;
  background: #FDD631;
  border-top-left-radius: 50%;
  border-bottom-left-radius: 50%;
  z-index: 2;
}
@media (max-width: 767px) {
  .contacts--info:before {
    width: 120%;
  }
}
.contacts--info a {
  position: relative;
  display: flex;
  align-items: center;
  text-decoration: none;
  padding: 16px 0;
  z-index: 5;
}
.contacts--info a:last-child {
  border-top: 1px solid #141414;
}
.contacts--info a .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  margin-right: 16px;
}
.contacts--info a .icon svg {
  display: flex;
}
.contacts--info a span {
  color: #141414;
  font-size: 30px;
  font-weight: 400;
  text-decoration: none;
}
.contacts--info-icon {
  position: absolute;
  top: 28px;
  right: 30px;
  z-index: 5;
}
.contacts--img {
  width: 65%;
  height: 100%;
}
@media (max-width: 767px) {
  .contacts--img {
    display: none;
  }
}
.contacts--img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.contacts--footer-btn {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}
@media (max-width: 767px) {
  .contacts--footer-btn {
    margin-bottom: 80px;
  }
}
.contacts--footer-btn a {
  display: flex;
  padding: 12px 22px;
  color: #141414;
  background: #FDD631;
  border: 2px solid #141414;
  border-radius: 0;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 200ms ease-out;
}
@media (max-width: 767px) {
  .contacts--footer-btn a {
    padding: 8px 16px;
    font-size: 16px;
  }
}
.contacts--footer-btn a:hover {
  color: #fff;
  background: #141414;
}
.contacts--footer-logo {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 10vh;
  padding: 0 2.5vw;
}
@media (max-width: 767px) {
  .contacts--footer-logo {
    flex-wrap: wrap;
    justify-content: center;
    padding: 0;
  }
}
.contacts--footer-logo img {
  width: auto;
  max-height: 4vh;
}
@media (max-width: 767px) {
  .contacts--footer-logo img {
    margin: 0 14px 20px;
  }
}

/* SCROLL DOWN */
.scroll-down {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translate(-50%, 0);
  color: black;
  font-weight: 400;
  text-transform: uppercase;
  font-size: 16px;
  overflow: visible;
}

.scroll-down .arrow {
  position: relative;
  top: -4px;
  margin: 0 auto;
  width: 20px;
  height: 20px;
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4KPHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1MTIgNTEyIj4KPHBhdGggZmlsbD0iYmxhY2siIGQ9Ik00ODMuMiwxOTIuMmMtMjAuNS0yMC41LTUzLjUtMjAuOC03My43LTAuNkwyNTcsMzQ0LjFMMTA0LjUsMTkxLjZjLTIwLjItMjAuMi01My4yLTE5LjktNzMuNywwLjYKCWMtMjAuNSwyMC41LTIwLjgsNTMuNS0wLjYsNzMuN2wxOTAsMTkwYzEwLjEsMTAuMSwyMy40LDE1LjEsMzYuOCwxNWMxMy4zLDAuMSwyNi43LTQuOSwzNi44LTE1bDE5MC0xOTAKCUM1MDMuOSwyNDUuNyw1MDMuNywyMTIuNyw0ODMuMiwxOTIuMnoiLz4KPC9zdmc+);
  background-size: contain;
}

.arrow-right {
  transform: rotate(-90deg);
  position: relative;
  top: -4px;
  margin: 1rem auto;
  width: 20px;
  height: 20px;
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4KPHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1MTIgNTEyIj4KPHBhdGggZmlsbD0iYmxhY2siIGQ9Ik00ODMuMiwxOTIuMmMtMjAuNS0yMC41LTUzLjUtMjAuOC03My43LTAuNkwyNTcsMzQ0LjFMMTA0LjUsMTkxLjZjLTIwLjItMjAuMi01My4yLTE5LjktNzMuNywwLjYKCWMtMjAuNSwyMC41LTIwLjgsNTMuNS0wLjYsNzMuN2wxOTAsMTkwYzEwLjEsMTAuMSwyMy40LDE1LjEsMzYuOCwxNWMxMy4zLDAuMSwyNi43LTQuOSwzNi44LTE1bDE5MC0xOTAKCUM1MDMuOSwyNDUuNyw1MDMuNywyMTIuNyw0ODMuMiwxOTIuMnoiLz4KPC9zdmc+);
  background-size: contain;
}

.form-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding-top: 100px;
}
.form-wrap iframe {
  height: 1300px;
}
@media (max-width: 767px) {
  .form-wrap iframe {
    height: 1500px;
  }
}

@media (min-width: 1200px) and (max-width: 1920px) {
  .header {
    padding: 10px 0;
  }

  .panel--inner {
    padding-top: 70px;
  }
  .panel.panel-1 .panel--inner {
    align-items: flex-start;
    padding-left: 0;
  }
  .panel-0 .section-col {
    width: 47vw;
  }
  .panel-0 .section-col-1 .image-top {
    width: 100%;
  }
  .panel-0 .section-col-1 .image-top img {
    width: 34vw;
  }
  .panel-0 .section-col-1 .image-bottom {
    width: 100%;
  }
  .panel-0 .section-col-1 .image-bottom img {
    width: 42vw;
  }
  .panel-0 .section-col-2 .image-top {
    width: 100%;
  }
  .panel-0 .section-col-2 .image-top img {
    width: 42vw;
  }
  .panel-0 .section-col-2 .image-bottom {
    width: 100%;
    margin-bottom: 3vh;
  }
  .panel-0 .section-col-2 .image-bottom img {
    width: 20vw;
  }

  .members-list {
    padding-left: 2vw;
    padding-top: 5vw;
  }

  .member-item {
    width: 13vw;
    height: 13vw;
    margin-top: 2vh;
    margin-bottom: 5vh;
    margin-right: 2.4vw;
  }
  .member-item:first-child {
    margin-left: 0;
  }
  .member-item.member-animation-wrap {
    margin-left: 5vw;
  }

  .member-overlay {
    width: 100%;
    padding-bottom: 16px;
  }

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

  .members-title {
    left: 4vh;
    bottom: 3vh;
  }
  .members-title svg {
    width: 32vw;
  }

  .member-inst {
    right: 30px;
  }
  .member-inst a {
    font-size: 14px;
  }

  .member-name {
    margin-bottom: 0;
    font-size: 1.2vw;
  }

  .member-position {
    margin-top: 8px;
    font-size: 0.9vw;
  }

  .program-col-1 {
    width: 45vw;
    padding-left: 40px;
  }
  .program-col-1 .your-donation {
    top: 0;
    left: 6vw;
  }
  .program-col-1 .program-case {
    left: 45%;
  }
  .program-col-1 .row-top {
    bottom: 0;
  }
  .program-col-1 .row-top svg {
    height: 34vw;
  }
  .program-col-1 .row-bottom {
    margin-left: 0;
  }
  .program-col-1 .row-bottom svg {
    width: 30vw;
  }

  .program {
    width: 55vw;
    min-width: 0;
    padding-right: 40px;
  }
  .program--item {
    padding: 1.2vh 0;
  }
  .program--left {
    justify-content: center;
  }
  .program--label {
    padding: 3px 6px;
    font-size: 12px;
  }
  .program--name {
    margin-top: 1vh;
    font-size: 18px;
  }
  .program--partners {
    margin: 2vh 0;
  }

  .contacts--header {
    margin-top: -8vh;
  }
  .contacts--header svg {
    width: 30vw;
  }
  .contacts--content {
    height: 50vh;
  }
  .contacts--info:before {
    width: 100%;
    left: 0;
  }
}
@media (min-width: 1200px) {
  .program--right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
  .program--right img {
    display: flex;
    width: 60px;
    height: 60px;
    margin-left: 1vh;
    border-radius: 50%;
    object-fit: cover;
  }
  .program--right img:first-child {
    margin-left: 0;
  }
}
@media (min-width: 1921px) {
  .panel--inner {
    max-height: 700px;
  }
}

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