* {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

body {
  -webkit-font-smoothing: antialiased;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

p {
  margin: 0 0 20px 0;
  text-rendering: optimizeLegibility;
}

p img {
  margin: 0;
}

a,
a:visited,
a:hover,
a:focus {
  text-decoration: none;
  outline: 0;
}

ul {
  list-style: disc outside;
}

ol {
  list-style: decimal;
}

li {
  display: list-item;
  *display: inline;
  *zoom: 1;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  border: 0;
  -ms-interpolation-mode: bicubic;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  vertical-align: middle;
}

caption, th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
  float: none !important;
}

:focus {
  outline: 0;
}

sub, sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}

sup {
  top: -5px;
}

sub {
  bottom: 2px;
}

input::-webkit-input-placeholder {
  opacity: 1;
}

input::-moz-placeholder {
  opacity: 1;
}

input:-moz-placeholder {
  opacity: 1;
}

input:-ms-input-placeholder {
  opacity: 1;
}

textarea::-webkit-input-placeholder {
  opacity: 1;
}

textarea::-moz-placeholder {
  opacity: 1;
}

textarea:-moz-placeholder {
  opacity: 1;
}

textarea:-ms-input-placeholder {
  opacity: 1;
}

/*------------------------------------------------------------------------------------------- */
/*----------------------------------------- FONTS ------------------------------------------- */
/*------------------------------------------------------------------------------------------- */
@font-face {
  font-family: "UA-brand";
  src: url("../fonts/UA-brand-Black.woff2") format("woff2"), url("../fonts/UA-brand-Black.woff") format("woff");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "UA-brand";
  src: url("../fonts/UA-brand.woff2") format("woff2"), url("../fonts/UA-brand.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "UA-brand";
  src: url("../fonts/UA-brand-Bold.woff2") format("woff2"), url("../fonts/UA-brand-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
/*------------------------------------------------------------------------------------------- */
/*------------------------------------ START SETTINGS --------------------------------------- */
/*------------------------------------------------------------------------------------------- */
* {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

html, body {
  min-height: 100vh;
  font-family: "UA-brand", serif;
  color: #0A0B0A;
  background-color: #fff;
}

.wrapper {
  display: flex;
  min-height: 100vh;
  padding-right: 30px;
  padding-left: 471px;
}

footer {
  position: relative;
  width: 100%;
}

.layout {
  width: 100%;
  max-width: 1170px;
  padding: 112px 0 132px;
}

.side__panel {
  width: 405px;
  border-right: 1px solid rgba(224, 224, 224, 0.5);
  padding: 14px 50px 30px 65px;
  margin-right: 66px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  background-color: #fff;
}

.limit {
  width: 100%;
  margin: 0 auto;
  max-width: 1340px;
  position: relative;
  padding: 0 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  height: 54px;
  background-color: #FFCC00;
  border-radius: 8px;
  padding: 0 32px;
  font-size: 16px;
  color: #0A0B0A;
  cursor: pointer;
  transition: background-color, 0.3s;
}
.button svg {
  margin: 0 10px 0 -9px;
}
.button:hover {
  background-color: #f3c303;
}
.button.disable {
  background-color: rgba(136, 143, 157, 0.1);
  color: #888F9D;
  pointer-events: none;
  cursor: default;
}
.button.primary {
  background-color: #276DF6;
  color: #fff;
}
.button.primary:hover {
  background-color: #2168f3;
}

h1 {
  font-size: clamp(40px, 2.604vw, 50px);
  font-weight: 700;
  line-height: 130%;
  color: #0A0B0A;
  margin-bottom: 54px;
}

section {
  margin-bottom: 144px;
}
section:last-child {
  margin-bottom: 0;
}

.alt__news__card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-bottom: 18px;
  border-bottom: 1px solid #E0E0E0;
  margin-bottom: 20px;
}
.alt__news__card .date {
  color: #7D7D7D;
  font-size: 12px;
  font-weight: 400;
  line-height: 150%;
}
.alt__news__card h3 {
  color: #000;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  margin-bottom: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -moz-box;
  -moz-box-orient: vertical;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  line-clamp: 3;
  box-orient: vertical;
}
.alt__news__card .label {
  margin-bottom: 10px;
  padding: 0 8px;
  font-size: 12px;
  font-weight: 400;
  line-height: 24px;
  border: 1px solid;
  border-radius: 20px;
}
.alt__news__card .label.active {
  color: #149A4A;
  border-color: #149A4A;
}
.alt__news__card .label.finished {
  color: #0038A9;
  border-color: #0038A9;
}
.alt__news__card:hover h3 {
  color: #0038A9;
}

.paginator {
  display: flex;
  justify-content: center;
  margin-top: 60px;
}
.paginator ul {
  display: flex;
  justify-content: center;
  align-items: center;
  list-style: none;
}
.paginator ul li {
  margin: 0 4px;
}
.paginator ul a, .paginator ul span {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  border-radius: 100%;
  font-size: 16px;
  font-weight: 400;
  line-height: 120%;
  color: #0A0B0A;
}
.paginator ul span {
  cursor: default;
}
.paginator ul a:hover,
.paginator ul a.active {
  background-color: #FFCC00;
}
.paginator ul .prev {
  margin-right: 8px;
}
.paginator ul .prev a {
  background-color: transparent !important;
}
.paginator ul .prev a:hover path {
  fill: #0A0B0A;
}
.paginator ul .prev:hover {
  background-color: transparent;
}
.paginator ul .next {
  margin-left: 8px;
}
.paginator ul .next a {
  background-color: transparent !important;
}
.paginator ul .next a:hover path {
  fill: #0A0B0A;
}
.paginator ul .next:hover {
  background-color: transparent;
}

/*------------------------------------------------------------------------------------------- */
/*----------------------------------------- HEADER ------------------------------------------ */
/*------------------------------------------------------------------------------------------- */
header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 30px;
}
header .top-side {
  margin-bottom: clamp(30px, 5.684vh, 54px);
}
header .logo {
  margin-left: -28px;
}
header .nav {
  display: flex;
  flex-direction: column;
  width: 100%;
  list-style: none;
}
header .nav li {
  position: relative;
  width: 100%;
  padding-right: 33px;
  margin-bottom: clamp(30px, 5.263vh, 50px);
}
header .nav li.active:after {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 100%;
  background-color: #0A0B0A;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
header .nav li.active a {
  color: #0A0B0A;
}
header .nav a {
  font-size: 18px;
  font-weight: 400;
  color: #888F9D;
  transition: color, 0.3s;
}
header .nav a:hover {
  color: #0A0B0A;
}

.mob__header {
  display: none;
  transition: all, 0.5s;
}
.mob__header.hide {
  transform: translateY(-105%);
}

.close__menu {
  display: none;
}

/*------------------------------------------------------------------------------------------- */
/*----------------------------------------- FOOTER ------------------------------------------ */
/*------------------------------------------------------------------------------------------- */
footer a {
  color: #888F9D;
  font-size: 14px;
  margin-bottom: 20px;
  display: inline-block;
}
footer a:hover {
  text-decoration: underline;
}
footer .contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: clamp(20px, 4.211vh, 40px);
  grid-gap: 0;
}
footer .contact a {
  color: #888F9D;
  display: inline-flex;
  align-items: center;
  margin-bottom: 13px;
  font-size: 14px;
}
footer .contact a:last-child {
  margin-bottom: 0;
}
footer .contact a img, footer .contact a svg {
  margin-right: 10px;
}
footer .contact a:hover {
  text-decoration: none;
}
footer .copyright {
  color: #888F9D;
  font-size: 14px;
}

/*------------------------------------------------------------------------------------------- */
/*---------------------------------------- CONTENT ------------------------------------------ */
/*------------------------------------------------------------------------------------------- */
.main__block {
  padding-bottom: 46px;
}
.main__block h1 {
  margin-bottom: 30px;
  max-width: 798px;
}
.main__block p {
  font-size: clamp(20px, 1.25vw, 24px);
  margin-bottom: 0;
  max-width: 570px;
}
.main__block .pic {
  width: 100%;
  position: relative;
  padding-bottom: 48.72%;
}
.main__block .pic > img {
  width: 68.71%;
  position: absolute;
  bottom: 0;
  left: 9%;
}
.main__block .pic .img1 {
  position: absolute;
  width: 27.69%;
  right: 7.5%;
  top: -10.5%;
  border-radius: 16px;
  border: 1px solid #FFF;
  box-shadow: 0 4px 21px 0 rgba(2, 49, 144, 0.16);
  overflow: hidden;
}
.main__block .pic .img2 {
  position: absolute;
  width: 18.63%;
  bottom: 9.47%;
  left: -1.45%;
  border-radius: 16px;
  border: 1px solid #FFF;
  box-shadow: 0 4px 21px 0 rgba(2, 49, 144, 0.16);
  overflow: hidden;
}
.main__block .pic .img3 {
  position: absolute;
  width: 14.53%;
  bottom: 23.47%;
  right: 5.21%;
  border-radius: 16px;
  border: 1px solid #FFF;
  box-shadow: 0 4px 21px 0 rgba(2, 49, 144, 0.16);
  overflow: hidden;
}

.news__block {
  display: flex;
  justify-content: space-between;
}
.news__block .info {
  width: 57.26%;
  min-width: 50%;
  position: relative;
  background-color: #0038A9;
  border-radius: 16px;
  overflow: hidden;
  padding: 54px;
  font-size: 16px;
  color: #fff;
  font-style: normal;
  font-weight: 400;
  line-height: 1.7;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.news__block .info h2 {
  width: 100%;
  color: #FFF;
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 18px;
  line-height: 1.4;
}
.news__block .info p {
  width: 100%;
  font-size: 16px;
  color: #fff;
  font-style: normal;
  font-weight: 400;
  line-height: 1.7;
}
.news__block .info p:last-of-type {
  margin-bottom: 0;
}
.news__block .info .button {
  margin-top: 34px;
}
.news__block .info a:not(.button) {
  color: #fff;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  margin-top: 35px;
}
.news__block .info a:not(.button) svg {
  margin-left: 12px;
  transform: translateY(2px);
}
.news__block .info img {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  opacity: 0.1;
}
.news__block .info > * {
  position: relative;
  z-index: 2;
}
.news__block .over__news {
  width: 440px;
  max-width: 50%;
  margin-left: 60px;
  display: flex;
  flex-direction: column;
}
.news__block .over__news h2 {
  font-size: 38px;
  font-weight: 700;
  line-height: 150%;
  margin-bottom: 30px;
}

.view__all {
  color: #0038A9;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
}
.view__all svg {
  margin-left: 12px;
}
.view__all:hover {
  text-decoration: underline;
}

.project__block .header {
  display: flex;
  align-items: center;
  margin-bottom: 48px;
}
.project__block .header h2 {
  font-size: 38px;
  font-weight: 700;
  line-height: 150%;
  margin-bottom: 0;
  margin-right: auto;
}
.project__block .header h1 {
  margin-bottom: 0;
  margin-right: auto;
}
.project__block .header .label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  width: 288px;
  height: 74px;
  border-radius: 16px;
  border: 1px solid;
  color: #000;
  font-size: 20px;
  font-weight: 400;
  line-height: 150%;
  margin-left: 16px;
}
.project__block .header .label span {
  font-size: 38px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
}
.project__block .header .label.active {
  border-color: #149A4A;
}
.project__block .header .label.active span {
  color: #149A4A;
}
.project__block .header .label.finished {
  border-color: #0038A9;
}
.project__block .header .label.finished span {
  color: #0038A9;
}

.project .mob {
  display: none;
}
.project .donate__container {
  position: sticky;
  top: 100vh;
}
.project .donate__button {
  position: absolute;
  left: 100%;
  bottom: 100%;
  transform: translate(50px, -30px);
}

.project__container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 48px 30px;
}
.project__container.news {
  grid-template-columns: repeat(6, 1fr);
}
.project__container.news .card {
  grid-column: span 2;
}
.project__container.news .card:nth-child(1), .project__container.news .card:nth-child(2) {
  grid-column: span 3;
}
.project__container.news .card:nth-child(1) .pic img, .project__container.news .card:nth-child(2) .pic img {
  aspect-ratio: 19.5/9;
}
.project__container.news .card:nth-child(1) .name, .project__container.news .card:nth-child(2) .name {
  font-size: 22px;
}
.project__container.news .card:nth-child(1) p, .project__container.news .card:nth-child(2) p {
  display: none;
}
.project__container.news .card .name {
  font-size: 20px;
  font-weight: 700;
  line-height: 140%;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -moz-box;
  -moz-box-orient: vertical;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  line-clamp: 3;
  box-orient: vertical;
}
.project__container.news .card .pic img {
  aspect-ratio: 370/208;
}

.card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.card .pic {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 15px;
}
.card .pic img {
  aspect-ratio: 185/113;
  object-fit: cover;
  width: 100%;
}
.card .name {
  color: #0A0B0A;
  font-size: 18px;
  font-weight: 400;
  line-height: 140%;
  margin-bottom: 14px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -moz-box;
  -moz-box-orient: vertical;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-clamp: 2;
  box-orient: vertical;
}
.card .name:last-child {
  margin-bottom: 0;
}
.card p {
  color: #888F9D;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  margin-bottom: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -moz-box;
  -moz-box-orient: vertical;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-clamp: 2;
  box-orient: vertical;
}
.card .label {
  margin-bottom: 10px;
  padding: 0 8px;
  font-size: 12px;
  font-weight: 400;
  line-height: 24px;
  border: 1px solid;
  border-radius: 20px;
  width: auto;
}
.card .label.active {
  color: #149A4A;
  border-color: #149A4A;
}
.card .label.finished {
  color: #0038A9;
  border-color: #0038A9;
}
.card:hover .name {
  color: #0038A9;
}

@keyframes circle {
  from {
    transform: scale(1);
    opacity: 0.14;
  }
  to {
    transform: scale(1.8);
    opacity: 0;
  }
}
.donate__block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 72px 53px;
  border-radius: 16px;
  background: rgba(224, 224, 224, 0.2);
}
.donate__block .text {
  max-width: 798px;
}
.donate__block h2 {
  font-size: 40px;
  font-weight: 700;
  line-height: 130%;
  max-width: 744px;
  margin-bottom: 10px;
}
.donate__block p {
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  max-width: 744px;
}
.donate__block p:last-of-type {
  margin-bottom: 0;
}
.donate__block .donate__button {
  margin: 0 auto;
}

.donate__button {
  width: 130px;
  aspect-ratio: 1/1;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #1A64F6;
  color: #fff;
  position: relative;
  text-align: center;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
  text-transform: uppercase;
}
.donate__button svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.donate__button svg circle {
  transform-origin: center center;
}
.donate__button svg circle.c1 {
  animation: circle 3s 2s infinite linear;
}
.donate__button svg circle.c2 {
  animation: circle 3s 1s infinite linear;
}
.donate__button svg circle.c3 {
  animation: circle 3s 0s infinite linear;
}

.content {
  max-width: 770px;
  margin: 0 auto;
}
.content .header {
  min-height: 122px;
  padding-left: 200px;
  margin-bottom: 42px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.content .header h1 {
  margin-bottom: 0;
  font-size: 32px;
  font-weight: 700;
  line-height: 140%;
}
.content .header .date {
  color: #888F9D;
  font-size: 14px;
  font-weight: 400;
  line-height: 150%;
  margin-bottom: 6px;
}
.content .header .label {
  margin-bottom: 10px;
  padding: 0 8px;
  font-size: 12px;
  font-weight: 400;
  line-height: 24px;
  border: 1px solid;
  border-radius: 20px;
}
.content .header .label.active {
  color: #149A4A;
  border-color: #149A4A;
}
.content .header .label.finished {
  color: #0038A9;
  border-color: #0038A9;
}
.content .header img {
  width: 170px;
  height: 122px;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 10px;
  margin: 0;
}
.content p, .content li {
  font-size: 16px;
  font-weight: 400;
  line-height: 155%;
}
.content p a, .content li a {
  color: #0036A0;
  text-decoration: underline;
}
.content p a:hover, .content li a:hover {
  text-decoration: none;
}
.content > h1 {
  font-size: 36px;
  font-weight: 700;
  line-height: 140%;
  margin-bottom: 42px;
}
.content h2, .content h3, .content h4, .content h5, .content h6 {
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  margin-bottom: 20px;
  margin-top: 40px;
}
.content h2:first-child, .content h3:first-child, .content h4:first-child, .content h5:first-child, .content h6:first-child {
  margin-top: 0;
}
.content h2 {
  font-size: 30px;
}
.content h3 {
  font-size: 28px;
}
.content h4 {
  font-size: 26px;
  margin-bottom: 14px;
}
.content h5 {
  font-size: 24px;
  margin-bottom: 12px;
}
.content h6 {
  font-size: 22px;
  margin-bottom: 10px;
}
.content img {
  border-radius: 16px;
  margin: 15px 0 30px;
}
.content ul, .content ol {
  margin: 10px 0 30px;
  list-style: none;
}
.content ul li, .content ol li {
  margin-bottom: 15px;
  padding-left: 20px;
  position: relative;
}
.content ul li:last-of-type, .content ol li:last-of-type {
  margin-bottom: 0;
}
.content ol {
  counter-reset: counter;
}
.content ol li {
  counter-increment: counter;
}
.content ol li:before {
  content: counter(counter) ". ";
  font-weight: 600;
  position: absolute;
  top: 0;
  left: 0;
}
.content ul li:before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 100%;
  position: absolute;
  top: 10px;
  left: 3px;
  background-color: #0036A0;
}
.content .table__wrapper {
  margin-top: 40px;
  margin-bottom: 40px;
  width: 100%;
}
.content table {
  margin-top: 40px;
  margin-bottom: 40px;
  width: 100%;
}
.content table:first-child {
  margin-top: 0;
}
.content table:last-child {
  margin-bottom: 0;
}
.content table th, .content table thead td, .content table td {
  font-weight: 300;
  padding: 16px 20px;
  font-size: 14px;
  line-height: 140%;
  color: #FFFFFF;
  border-right: 1px solid #0548CF;
}
.content table th:last-of-type, .content table thead td:last-of-type, .content table td:last-of-type {
  border-right: none;
}
.content table th, .content table thead td {
  background: #0036A0;
}
.content table th:first-of-type, .content table thead td:first-of-type {
  border-radius: 16px 0 0 0;
}
.content table th:last-of-type, .content table thead td:last-of-type {
  border-radius: 0 16px 0 0;
}
.content table tbody td {
  font-weight: 600;
  color: #0A0B0A;
  border-right: 1px solid #E0E0E0;
}
.content table tbody td:last-of-type {
  border-right: none;
}
.content table tbody tr:last-of-type td:first-of-type {
  border-radius: 0 0 0 16px;
}
.content table tbody tr:last-of-type td:last-of-type {
  border-radius: 0 0 16px 0;
}
.content table tbody tr td {
  background: #F9F9F9;
}
.content table tbody tr:nth-child(even) td {
  background: #E7E9EB;
}

.project__slider {
  margin-bottom: 11px;
}
.project__slider .slick-dots {
  display: flex;
  position: absolute;
  bottom: 23px;
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
}
.project__slider .slick-dots li {
  padding: 0;
  margin: 0 4px;
}
.project__slider .slick-dots li:before {
  display: none;
}
.project__slider .slick-dots li button {
  font-size: 0;
  width: 9px;
  height: 9px;
  border-radius: 100%;
  border: 1px solid rgba(10, 11, 10, 0.5);
  background: #FFF;
  cursor: pointer;
  transition: all, 0.3s;
}
.project__slider .slick-dots li.slick-active button {
  background: #FFCC00;
  border-color: #FFCC00;
}
.project__slider:not(.slick-initialized) img {
  display: none;
}
.project__slider:not(.slick-initialized) img:first-of-type {
  display: block;
}
.project__slider img {
  border-radius: 16px;
}
.project__slider-container {
  margin: 50px 0;
}
.project__slider-container img {
  margin: 0;
  aspect-ratio: 16/9;
}
.project__slider-nav img {
  border-radius: 4px;
  width: 100%;
}
.project__slider-nav:not(.slick-initialized) {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 10px;
}
.project__slider-nav:not(.slick-initialized) img {
  display: none;
}
.project__slider-nav:not(.slick-initialized) img:nth-child(-n+4) {
  display: block;
}
.project__slider-nav .slick-list:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 86px;
  height: 100%;
  background: linear-gradient(90deg, #FFF 5px, rgba(255, 255, 255, 0) 100%);
}
.project__slider-nav .slick-list:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  width: 86px;
  height: 100%;
  background: linear-gradient(-90deg, #FFF 5px, rgba(255, 255, 255, 0) 100%);
}
.project__slider-nav.slick-initialized {
  margin: 0 -5px;
}
.project__slider-nav.slick-initialized .slick-slide {
  margin: 0 5px;
}
.project__slider-nav .nav-slide {
  position: relative;
}
.project__slider-nav .nav-slide:before {
  border-radius: 4px;
  content: "";
  width: calc(100% - 6px);
  height: calc(100% - 6px);
  border: 3px solid #FFCC00;
  opacity: 0;
  transition: opacity, 0.5s;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}
.project__slider-nav .nav-slide.slick-current:before {
  opacity: 1;
}
.project__slider-nav .arrow {
  position: absolute;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 100%;
  border: 1px solid #E0E0E0;
  background: #FFF;
  cursor: pointer;
  z-index: 5;
  transition: all, 0.3s;
}
.project__slider-nav .arrow:hover {
  background-color: #FFCC00;
  border-color: #FFCC00;
}
.project__slider-nav .arrow.arrow-left {
  left: 5px;
  transform: translate(-50%, -50%);
}
.project__slider-nav .arrow.arrow-right {
  right: 5px;
  transform: translate(50%, -50%);
}

.contact {
  display: grid;
  grid-template-columns: 288px 1fr;
  grid-gap: 20px 80px;
}
.contact h1 {
  width: 100%;
  margin-bottom: 78px;
}
.contact .pic {
  grid-column: 1/2;
  grid-row: 2/3;
  height: 310px;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
}
.contact .contacts {
  grid-column: 2/3;
  grid-row: 1/2;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 22px 30px;
}
.contact .contacts-item {
  font-size: 18px;
  font-weight: 400;
  line-height: 150%;
}
.contact .contacts a {
  color: #0038a9;
  text-decoration: underline;
}
.contact .contacts a:hover {
  text-decoration: none;
}
.contact .contacts a[href^="tel:"], .contact .contacts a[href^="mailto:"] {
  color: inherit;
  text-decoration: none;
}
.contact .map {
  grid-column: 2/3;
  grid-row: 2/3;
  border-radius: 16px;
  overflow: hidden;
}
.contact .map iframe {
  width: 100% !important;
  height: 310px;
}
.contact .title {
  color: #888F9D;
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 10px;
}
.contact .name {
  font-size: 40px;
  font-weight: 400;
  margin-bottom: 0;
}

.donate__page {
  max-width: 770px;
  margin: 0 auto;
}
.donate__page-header {
  display: grid;
  grid-template-columns: 310px 1fr;
  grid-gap: 40px;
  align-items: start;
}
.donate__page-header h1 {
  font-size: 36px;
  font-weight: 700;
  line-height: 130%;
  margin-bottom: 20px;
}
.donate__page-header p {
  font-size: 16px;
  line-height: 160%;
}
.donate__page-header p:last-of-type {
  margin-bottom: 0;
}
.donate__page-header .button {
  margin-top: 30px;
}
.donate__page .pay__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 22px;
}
.donate__page .pay__container-item {
  border-radius: 12px;
  overflow: hidden;
}
.donate__page h2 {
  text-align: center;
  font-size: 26px;
  font-weight: 700;
  line-height: 140%;
  max-width: 427px;
  margin: 82px auto 52px;
}
.donate__page h2:first-child {
  margin-top: 0;
}

.tabs-nav {
  margin-bottom: 40px;
}
.tabs-nav:not(.slick-initialized) {
  display: flex;
}
.tabs-nav-item {
  flex: 1;
  padding: 12px;
  text-align: center;
  color: #888F9D;
  font-size: 18px;
  font-weight: 700;
  line-height: 150%;
  border-bottom: 1px solid rgba(224, 224, 224, 0.5);
  cursor: pointer;
}
.tabs-nav-item.active {
  color: #0A0B0A;
  border-bottom-color: #0036A0;
}
.tabs-content {
  display: none;
}
.tabs-content.active {
  display: block;
}
.tabs-content .row {
  display: flex;
  border-radius: 5px;
  background: #FAFAFA;
}
.tabs-content .row:nth-child(even) {
  background-color: transparent;
}
.tabs-content .row-item {
  width: 50%;
  padding: 12px 24px;
}
.tabs-content .row-item:first-of-type {
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%;
}
.tabs-content .row-item:last-of-type {
  padding-left: 0;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
}

.pay__page {
  max-width: 770px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.pay__page h1 {
  text-align: center;
  font-size: 38px;
  margin-bottom: 87px;
}

.pay__info {
  width: 100%;
  max-width: 615px;
  margin: 0 auto 84px;
}
.pay__info-row {
  margin-bottom: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 18px;
  font-weight: 400;
  line-height: 120%;
}
.pay__info-row:last-of-type {
  margin-bottom: 0;
}
.pay__info-row .cell {
  width: 360px;
  display: flex;
  text-align: left;
  margin-left: 20px;
  font-weight: 700;
}
.pay__info input {
  background-color: transparent;
  border: none;
  border-bottom: 1px solid #0036A0;
  padding: 0 7px;
  color: #0036A0;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  margin-right: 40px;
  width: 220px;
}
.pay__info select {
  background-color: transparent;
  color: #0036A0;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
}

.googlepay__button {
  border-radius: 8px;
  background: #101B1F;
  display: inline-flex;
  align-items: center;
  height: 54px;
  margin-bottom: 70px;
  cursor: pointer;
  color: #fff;
  padding: 0 27px;
  font-size: 18px;
  font-weight: 400;
  line-height: 110%;
}
.googlepay__button img, .googlepay__button svg {
  margin-left: 10px;
}

.pay__form {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  padding: 0 74px 92px;
  background: #F1F4FE;
}
.pay__form .radio__container {
  margin: 0 -74px 64px;
}
.pay__form .radio__container:not(.slick-initialized) {
  display: flex;
}
.pay__form .radio__container .radio {
  flex: 1;
  position: relative;
}
.pay__form .radio__container .radio .pic {
  width: 100%;
  height: 67px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 15px;
  background-color: #F7F9FF;
}
.pay__form .radio__container .radio input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  cursor: pointer;
  opacity: 0;
}
.pay__form .radio__container .radio input:checked + .pic {
  background-color: #FFCC00;
}

.partners__block .header {
  display: flex;
  align-items: center;
  margin-bottom: 48px;
}
.partners__block .header h2 {
  font-size: 38px;
  font-weight: 700;
  line-height: 150%;
  margin-bottom: 0;
  margin-right: auto;
}
.partners__block .partners__container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 30px;
}
.partners__block .partners-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
}

.about__block .main__pic {
  margin-bottom: 54px;
  border-radius: 16px;
  overflow: hidden;
}
.about__block .main__pic img {
  width: 100%;
  aspect-ratio: 1170/358;
  object-fit: cover;
  object-position: center bottom;
}
.about__block .main__pic + h2 {
  margin-top: 0;
}
.about__block .limit {
  max-width: 830px;
}
.about__block h2 {
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  line-height: 130%;
  margin-bottom: 36px;
  margin-top: 68px;
}
.about__block h2:first-child {
  margin-top: 0;
}
.about__block h3 {
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 155%;
  margin-bottom: 12px;
}
.about__block ul {
  list-style: none;
  margin-bottom: 20px;
}
.about__block ul li {
  position: relative;
  padding-left: 34px;
  margin-bottom: 30px;
}
.about__block ul li:before {
  content: "";
  width: 19px;
  height: 19px;
  border-radius: 100%;
  background-color: #0038A9;
  box-shadow: inset 0 0 0 5px #fff, 0 0 0 1px #D4D7DC;
  position: absolute;
  top: 2px;
  left: 0;
}
.about__block ul li:last-of-type {
  margin-bottom: 0;
}
.about__block ul li a {
  color: #0038A9;
  text-decoration: underline;
}
.about__block ul li a:hover {
  text-decoration: none;
}
.about__block ul li h3 {
  transform: translateY(-5px);
  margin-bottom: 7px;
}
.about__block li, .about__block p {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 155%;
}
.about__block .successes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 25px;
  margin-bottom: 30px;
}
.about__block .successes-item {
  padding: 40px 30px;
  border-radius: 16px;
  background: #F9F9F9;
  display: flex;
  flex-direction: column;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
}
.about__block .successes-item .num {
  width: 100%;
  color: #0038A9;
  font-size: 52px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  display: block;
  margin-bottom: 15px;
}

.about__projects {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 30px;
  margin-bottom: 42px;
}
.about__projects-item {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 370/247;
}
.about__projects-item:first-of-type {
  grid-column: span 2;
  aspect-ratio: 770/515;
}
.about__projects-item img {
  width: 100%;
  height: auto;
}

@media (max-width: 1650px) {
  .side__panel {
    width: 355px;
    padding: 14px 30px 30px 45px;
    margin-right: 30px;
  }
  .wrapper {
    padding-left: 385px;
  }
  .project .donate__container {
    top: 150px;
    z-index: 100;
  }
  .project .donate__button {
    left: 100%;
    transform: translate(-100%, -9px);
  }
}
@media (max-width: 1460px) {
  .contact {
    display: flex;
    grid-gap: 0;
    flex-wrap: wrap;
  }
  .contact .head {
    margin-bottom: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .contact .pic {
    width: 270px;
    margin: 0 auto 50px;
  }
  .contact {
    justify-content: space-between;
  }
  .contact .map {
    width: 100%;
    margin-top: 50px;
  }
  .project .donate__button {
    transform: translate(-106%, 60px);
    position: fixed;
    top: 0;
  }
  .wrapper {
    overflow: hidden;
  }
}
@media (max-width: 1360px) {
  .project__block .header h2 {
    font-size: 36px;
  }
  .project__block .header h2 {
    font-size: 36px;
  }
  .project__block .header .label {
    width: 254px;
  }
  .project__block .header .label span {
    font-size: 32px;
  }
  .project__container {
    grid-template-columns: repeat(2, 1fr);
  }
  .donate__block h2 {
    font-size: 36px;
  }
  .donate__block p {
    font-size: 20px;
  }
  .donate__block .text {
    max-width: 720px;
  }
}
@media (max-width: 1300px) {
  .main__block p {
    max-width: 410px;
  }
}
@media (max-width: 1250px) {
  .contact .head {
    width: 320px;
  }
  .news__block {
    flex-direction: column;
  }
  .news__block .info {
    width: 100%;
    margin-bottom: 50px;
  }
  .news__block .over__news {
    margin-left: 0;
  }
  .donate__block .text {
    max-width: 650px;
  }
  .news__block .over__news {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 20px 26px;
  }
  .news__block .over__news h2 {
    margin-bottom: 10px;
  }
  .news__block .over__news .alt__news__card {
    margin-bottom: 0;
  }
  .news__block .over__news {
    width: 100%;
    max-width: 100%;
  }
  .news__block .over__news h2 {
    grid-column: span 2;
  }
}
@media (max-width: 1200px) {
  .mob__header {
    display: flex;
    align-items: center;
    padding: 14px 30px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 500;
    background-color: #fff;
  }
  .wrapper {
    padding: 0 30px;
  }
  .side__panel {
    transform: translateX(-100%);
    transition: all, 0.5s;
    z-index: 501;
  }
  .side__panel.open {
    transform: translateX(0);
  }
  .wrapper {
    flex-direction: column;
  }
  .menu__button {
    margin-right: 40px;
    cursor: pointer;
  }
  .layout {
    padding: 150px 0 132px;
  }
  .side__panel {
    width: 452px;
  }
  .top-side {
    display: flex;
    align-items: center;
  }
  .close__menu {
    margin-right: 40px;
    display: block;
    cursor: pointer;
  }
  header .logo {
    margin-bottom: 0;
    margin-left: 0;
  }
  .side__panel {
    padding: 14px 30px 30px 112px;
  }
  .side__panel:before {
    content: "";
    width: 100vw;
    height: 100%;
    background: rgba(10, 11, 10, 0.1);
    position: absolute;
    top: 0;
    left: 100%;
    pointer-events: none;
    visibility: hidden;
    transition: opacity, 0.5s;
  }
  .side__panel.open:before {
    opacity: 1;
    visibility: visible;
  }
  header .top-side {
    margin-left: -85px;
  }
  .project .donate__container {
    z-index: 500;
  }
}
@media (max-width: 1000px) {
  .partners__block .partners__container {
    grid-template-columns: repeat(3, 1fr);
  }
  .donate__block {
    padding: 50px 42px;
  }
  .donate__block h2 {
    font-size: 32px;
  }
  .donate__block p {
    max-width: 450px;
  }
}
@media (max-width: 900px) {
  .main__block {
    padding-top: 75px;
    border-bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 235px;
  }
  .main__block h1 {
    margin-bottom: 30px;
    max-width: 497px;
  }
  .main__block p {
    max-width: 497px;
  }
  .main__block .pic {
    margin-top: 68px;
  }
  .main__block .pic .img2 {
    left: 0;
  }
  .project__block .header h1,
  .project__block .header h2 {
    width: 100%;
    margin-bottom: 30px;
  }
  .project__block .header .label {
    margin-left: 0;
    margin-right: 16px;
  }
  .project__block .header {
    flex-wrap: wrap;
  }
  .wrapper {
    padding: 0 24px;
  }
  .donate__block .text {
    max-width: 570px;
  }
  .project__container.news {
    grid-template-columns: repeat(2, 1fr);
  }
  .project__container.news .card:nth-child(1), .project__container.news .card:nth-child(2) {
    grid-column: span 2;
  }
  .project__container.news .card {
    grid-column: span 1;
  }
  .donate__page-header h1 {
    font-size: 32px;
  }
  .project__block .header .label {
    height: 64px;
    font-size: 18px;
  }
  .project__block .header .label {
    width: 235px;
  }
  .project__block .header .label span {
    font-size: 28px;
  }
  .card .label {
    padding: 0 10px;
  }
  .project__container {
    grid-gap: 30px;
  }
  .alt__news__card .label {
    margin-bottom: 0;
    line-height: 22px;
    border-radius: 30px;
  }
  .alt__news__card {
    margin-bottom: 30px;
  }
  .more__cards {
    display: flex;
    flex-direction: column;
  }
  .more__cards .view__all {
    margin-top: auto;
  }
  .main__block {
    padding-top: 0;
    margin-bottom: 54px;
  }
  .main__block h1 {
    max-width: 525px;
  }
  .main__block p {
    max-width: 525px;
  }
  .news__block .info {
    padding: 53px 79px;
  }
  .news__block .info {
    margin-bottom: 33px;
  }
  .main__block {
    margin-bottom: 0;
  }
  .card p {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -moz-box;
    -moz-box-orient: vertical;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    line-clamp: 3;
    box-orient: vertical;
  }
  .layout {
    padding-top: 130px;
  }
  .paginator {
    justify-content: flex-start;
  }
  .about__block .main__pic img {
    aspect-ratio: 720/358;
  }
  .about__block .limit {
    max-width: 100%;
    padding: 0;
  }
}
@media (max-width: 700px) {
  .contact {
    flex-direction: column;
  }
  .contact .head {
    width: 100%;
    text-align: center;
  }
  h1 {
    text-align: center;
  }
  .about__block H1 {
    text-align: left;
    margin-bottom: 30px;
  }
  .contact .contacts {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
  .contact .contacts-item {
    text-align: center;
    width: 100%;
  }
  .contact .contacts-item a {
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    display: inline-block;
  }
  .project__block .header {
    justify-content: center;
  }
  .content .header h1 {
    text-align: left;
  }
  .donate__page-header {
    grid-template-columns: 1fr;
  }
  .donate__page-header .text {
    text-align: center;
  }
  .donate__page .pay__container {
    max-width: 300px;
    margin: 0 auto;
  }
  .about__block .successes {
    grid-template-columns: repeat(1, 1fr);
  }
  .about__block .successes-item {
    padding: 40px 85px;
  }
}
@media (max-width: 650px) {
  .main__block .pic .img1 {
    display: none;
  }
  .main__block .pic .img2 {
    display: none;
  }
  .main__block .pic .img3 {
    display: none;
  }
  .main__block .pic > img {
    width: 100%;
    position: static;
  }
  .main__block .pic {
    padding-bottom: 0;
  }
  .main__block h1 {
    text-align: center;
  }
  .main__block p {
    text-align: center;
    margin: 0 auto;
  }
  .news__block .info {
    min-width: initial;
    border-radius: 0;
    margin: 0 -24px 50px;
  }
  .news__block .info {
    width: calc(100% + 48px);
  }
  .donate__block {
    flex-direction: column;
  }
  .donate__block h2 {
    text-align: center;
  }
  .donate__block p {
    text-align: center;
  }
  .donate__block .text {
    max-width: 100%;
    margin-bottom: 60px;
  }
  .content .table__wrapper {
    width: calc(100% + 48px);
    margin-left: -24px;
    margin-right: -24px;
    padding: 0 24px 20px;
    overflow-x: scroll;
  }
  .content .table__wrapper table {
    min-width: 600px;
  }
  .donate__block {
    padding: 47px 28px;
    align-items: center;
  }
  .donate__block p {
    max-width: 100%;
  }
  .partners__block .partners__container {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .project .donate__container {
    display: none;
  }
  .content .header {
    padding-left: 0;
  }
  .content .header img {
    width: 100%;
    height: auto;
    margin: 0 0 20px;
    position: static;
  }
  .project__slider-container {
    display: none;
  }
  .project .mob {
    display: inline-flex;
    margin-bottom: 50px;
  }
  .about__block .successes-item {
    padding: 40px 15px;
    align-items: center;
  }
  .about__block .successes-item * {
    width: 100%;
    max-width: 240px;
  }
}
@media (max-width: 550px) {
  h1 {
    font-size: 28px;
  }
  .main__block p {
    font-size: 16px;
  }
  .news__block .info h2 {
    font-size: 26px;
  }
  .news__block .over__news h2 {
    font-size: 28px;
  }
  .project__block .header h2 {
    font-size: 28px;
  }
  .project__block .header .label {
    width: 288px;
  }
  .project__container {
    grid-template-columns: repeat(1, 1fr);
  }
  .project__block .header .label {
    margin-right: 0;
    margin-bottom: 20px;
  }
  .project__block .header .label.finished {
    margin-bottom: 0;
  }
  .project__block .header .label {
    height: 64px;
  }
  .project__container.news {
    grid-template-columns: repeat(1, 1fr);
  }
  .project__container.news .card:nth-child(1), .project__container.news .card:nth-child(2) {
    grid-column: span 1;
  }
  .project__container.news .card:nth-child(1) .name, .project__container.news .card:nth-child(2) .name {
    font-size: 20px;
  }
  .project__container.news .card:nth-child(1) p, .project__container.news .card:nth-child(2) p {
    display: block;
  }
  .content .header {
    padding-left: 0;
  }
  .content .header img {
    width: 100%;
    height: auto;
    position: static;
    margin-bottom: 20px;
  }
  .content .header h1 {
    font-size: 30px;
  }
  .content h2 {
    font-size: 26px;
  }
  .content h3 {
    font-size: 24px;
  }
  .content h4 {
    font-size: 22px;
  }
  .content h5 {
    font-size: 20px;
  }
  .content h6 {
    font-size: 18px;
  }
  .news__block .info {
    padding: 54px 24px;
  }
  .news__block .over__news {
    grid-template-columns: repeat(1, 1fr);
  }
  .news__block .over__news h2 {
    grid-column: span 1;
  }
  .project__block .header {
    justify-content: flex-start;
  }
  .tabs-content .row {
    flex-direction: column;
    padding: 12px 24px;
  }
  .tabs-content .row-item {
    padding: 0;
    width: 100%;
  }
  .tabs-content .row-item:first-of-type {
    margin-bottom: 5px;
  }
  .slick-slide {
    height: auto;
  }
  div.slick-list:nth-child(1) > div:nth-child(1) {
    display: flex;
  }
  .tabs-nav-item {
    display: flex !important;
    align-items: center;
    text-align: center;
    justify-content: center;
  }
  .tabs-nav .arrow-right {
    position: absolute;
    top: 10px;
    right: 0;
    z-index: 5;
  }
  .tabs-nav .arrow-left {
    position: absolute;
    top: 10px;
    right: 28px;
    z-index: 5;
  }
  .about__projects {
    grid-template-columns: repeat(1, 1fr);
  }
  .about__projects-item:first-of-type {
    grid-column: inherit;
  }
  .about__projects-item {
    aspect-ratio: 344/231 !important;
  }
  .about__block h2 {
    font-size: 22PX;
  }
  .news__block .info {
    flex-direction: column;
    align-items: flex-start;
  }
  .news__block .info .button {
    order: 2;
  }
}
@media (max-width: 480px) {
  .wrapper {
    padding: 0 18px;
  }
  .about__block .main__pic {
    margin-bottom: 30px;
  }
}
@media (max-width: 450px) {
  .side__panel {
    width: 100%;
  }
  .side__panel {
    padding: 14px 30px 30px;
  }
  header .nav {
    align-items: center;
  }
  header .nav li {
    padding-right: 0;
    text-align: center;
  }
  header .nav li.active::after {
    display: none;
  }
  header {
    align-items: center;
  }
  footer .contact {
    align-items: center;
  }
  footer {
    text-align: center;
  }
  header .logo {
    width: 220px;
  }
  .close__menu {
    margin-right: 0;
    position: absolute;
    left: 30px;
  }
  header .top-side {
    margin-left: 0;
  }
  .mob__header .logo {
    width: 220px;
  }
  .tabs-nav-item {
    padding: 12px 5px;
    font-size: 16px;
  }
  .tabs-content .row-item:last-of-type {
    word-break: break-all;
    width: 100%;
  }
}

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