:root {
  --color-main: var(--color-blue-slate);
  --ff-main: var(--ff-poppins);
  --radius-tr-br: 0 40px;
  --radius-tr-bl: 0 30px;
  --radius-tl-bl: 40px 0;
  --transition: 0.2s linear;
  --color-blue-slate: #395362;
  --color-blue-deep: #004b70;
  --color-blue-light: #ddf4ff;
  --color-blue-steel: #395362;
  --ff-poppins: "Poppins", sans-serif;
  --padding-section: var(--padding-80);
  --padding-80: 80px;
}
@media only screen and (width <= 1070px) {
  :root {
    --padding-section: var(--padding-40);
    --padding-40: 40px;
  }
}

@font-face {
  font-family: Poppins;
  src: url("../fonts/Poppins-Black.eot");
  src: url("../fonts/Poppins-Black.eot?#iefix") format("embedded-opentype"), url("../fonts/Poppins-Black.woff2") format("woff2"), url("../fonts/Poppins-Black.woff") format("woff"), url("../fonts/Poppins-Black.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: Poppins;
  src: url("../fonts/Poppins-Bold.eot");
  src: url("../fonts/Poppins-Bold.eot?#iefix") format("embedded-opentype"), url("../fonts/Poppins-Bold.woff2") format("woff2"), url("../fonts/Poppins-Bold.woff") format("woff"), url("../fonts/Poppins-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: Poppins;
  src: url("../fonts/Poppins-Medium.eot");
  src: url("../fonts/Poppins-Medium.eot?#iefix") format("embedded-opentype"), url("../fonts/Poppins-Medium.woff2") format("woff2"), url("../fonts/Poppins-Medium.woff") format("woff"), url("../fonts/Poppins-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: Poppins;
  src: url("../fonts/Poppins-Regular.eot");
  src: url("../fonts/Poppins-Regular.eot?#iefix") format("embedded-opentype"), url("../fonts/Poppins-Regular.woff2") format("woff2"), url("../fonts/Poppins-Regular.woff") format("woff"), url("../fonts/Poppins-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
.lock {
  overflow: hidden;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  margin: 0;
  font-family: var(--ff-main);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: var(--color-main);
  font-style: normal;
}

img {
  transition: 0.3s;
}

p,
h1,
h2,
h3,
h4,
.h4,
h5 {
  cursor: default;
}

div,
p,
form,
input,
a,
span,
button,
textarea,
input {
  margin: 0;
  padding: 0;
  transition: var(--transition);
  box-sizing: border-box;
}

ul,
li {
  display: block;
  margin: 0;
  padding: 0;
}

a,
a:hover,
a:active {
  text-decoration: none;
}

a {
  font-family: var(--ff-main);
  font-weight: 400;
  color: var(--color-main);
}

img {
  max-width: 100%;
}

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

a p,
a span,
a div,
a li,
a label,
a input,
a button {
  cursor: pointer;
}

span {
  color: inherit;
}

ul li {
  display: block;
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}

a,
a svg,
a svg path,
a p,
a div {
  transition: var(--transition);
  cursor: pointer;
}

svg,
svg path,
svg rect {
  transition: var(--transition);
}

p,
span,
li,
ul,
div,
h1,
h2,
h3,
h4,
.h4,
h5,
h6,
input,
textarea,
button,
label,
strong,
b {
  cursor: default;
}

h1,
h2,
h3,
h4,
.h4,
h5,
h6 {
  margin: 0;
  padding: 0;
  color: var(--color-blue-deep);
  transition: var(--transition);
}

h1,
.h1 {
  font-size: 48px;
  font-style: normal;
  font-weight: 500;
  line-height: 52px;
}

h2,
.h2 {
  font-size: 42px;
  font-style: normal;
  font-weight: 500;
  line-height: 44px;
}

h3,
.h3 {
  font-size: 28px;
  font-style: normal;
  font-weight: 500;
  line-height: 32px;
}
h3.small,
.h3.small {
  font-size: 22px;
  line-height: 30px;
}

@media only screen and (width >= 768px) {
  .phone a {
    pointer-events: none;
  }
  .phone:hover a {
    text-decoration: underline;
    cursor: pointer;
    text-underline-offset: 5px;
    text-decoration-thickness: 1px;
  }
}
@media only screen and (width <= 768px) {
  h1,
  .h1 {
    font-size: 28px;
    font-weight: 600;
    line-height: 36px;
  }
  h2,
  .h2 {
    font-size: 26px;
    font-weight: 500;
    line-height: 36px;
  }
  h3,
  .h3 {
    font-size: 22px;
    font-weight: 500;
    line-height: 28px;
  }
}
#wpadminbar {
  display: none;
}

.container {
  width: 100%;
  max-width: 1382px;
  margin: 0 auto;
  padding-right: 16px;
  padding-left: 16px;
}

.grecaptcha-badge {
  visibility: hidden;
}

.btn-wrapper {
  display: flex;
  align-items: center;
  width: 169px;
}

.slider-nav {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-width: 190px;
  max-width: 195px;
  padding: 8px;
  border-radius: 40px;
  overflow: hidden;
  gap: 14px;
}
.slider-nav::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: var(--color-blue-light);
  backdrop-filter: blur(6px);
}
.slider-nav .swiper-button-prev,
.slider-nav .swiper-button-next {
  position: static;
  display: block;
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  margin: 0;
  border-radius: 50%;
  overflow: hidden;
}
.slider-nav .swiper-button-prev::after,
.slider-nav .swiper-button-next::after {
  display: none;
}
.slider-nav .swiper-button-prev:hover,
.slider-nav .swiper-button-next:hover {
  background: var(--color-blue-deep);
}
.slider-nav .swiper-button-prev:hover svg path,
.slider-nav .swiper-button-next:hover svg path {
  stroke: #fff;
}
.slider-nav .swiper-pagination {
  position: static;
  display: block;
  width: 100%;
  height: 100%;
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
  text-align: center;
  font-style: normal;
}

.swiper-scrollbar {
  position: static !important;
  margin-top: 40px;
  background: #e1ecf3;
  border-radius: 10px;
}
.swiper-scrollbar .swiper-scrollbar-drag {
  background: var(--color-blue-deep);
  border-radius: 10px;
}

@media (width >= 1200px) and (width <= 1360px) {
  body {
    zoom: 90%;
  }
}
.header {
  position: fixed;
  top: 32px;
  right: 0;
  left: 0;
  z-index: 100;
  width: 100vw;
}
.header .content {
  width: 100%;
  max-width: 1382px;
  margin: 0 auto;
  padding: 0 16px;
}
.header .container {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  max-width: 100%;
  padding-right: 10px;
  padding-left: 30px;
}
.header .container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 24px 0;
  backdrop-filter: blur(6px);
}
.header .container .header-logo {
  padding: 8px 0;
}
.header .container nav {
  position: relative;
}
.header .container .wrapper {
  display: flex;
  justify-content: flex-end;
  align-items: stretch;
  gap: 30px;
  width: 100%;
}
.header .container .wrapper .menu {
  display: flex;
  justify-content: flex-end;
  align-items: stretch;
  align-items: center;
  height: 100%;
  gap: 30px;
}
.header .container .wrapper .menu > li {
  display: flex;
  align-items: center;
  height: 100%;
}
.header .container .wrapper .menu li a {
  color: var(--color-blue-deep);
  white-space: nowrap;
}
.header .burger-wrap {
  display: none;
}
.header .burger {
  position: relative;
  width: 32px;
  min-width: 32px;
  height: 32px;
  min-height: 32px;
  color: #577657;
  background: transparent;
  border: none;
  transition: 0.3s ease-in-out;
  cursor: pointer;
}
.header .burger span {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 85%;
  height: 2px;
  background: #577657;
  transition: transform 1s;
  transform: scale(1) translate(-50%);
}
.header .burger::after, .header .burger::before {
  content: "";
  position: absolute;
  left: 50%;
  display: block;
  width: 85%;
  height: 2px;
  background: #577657;
  transition: transform 1s;
}
.header .burger::before {
  top: 0;
  transform: translate(-50%, 6px);
}
.header .burger::after {
  bottom: 0;
  transform: translate(-50%, -6px);
}
.header .burger.active span {
  transition: transform 1s;
  transform: scale(0);
}
.header .burger.active::before {
  background-color: #577657;
  transition: transform 1s, background-color 0.3s ease-in-out;
  transform: rotate(45deg) translateY(21px) translateX(4%);
}
.header .burger.active::after {
  background-color: #577657;
  transition: transform 1s, background-color 0.3s ease-in-out;
  transform: rotate(-45deg) translateY(-15px) translate(1px, -5px);
}
.header .sub-menu-1 {
  position: absolute;
  top: 100%;
  right: 0;
  display: none;
  justify-content: space-between;
  width: 100%;
  min-width: 495px;
  padding: 30px;
  gap: 30px;
}
.header .sub-menu-1::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background: rgba(221, 244, 255, 0.8);
  border-radius: 0 40px;
  backdrop-filter: blur(6px);
}
.header .sub-menu-1 li + li {
  margin-top: 12px;
}
.header .sub-menu-1 a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}
.header .sub-menu .photos {
  position: relative;
  width: 100%;
  max-width: 207px;
  border-radius: 0 30px;
  overflow: hidden;
  aspect-ratio: 207.5/144.55;
}
.header .sub-menu .photos .photo {
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}
.header .sub-menu .photos .photo.active {
  opacity: 1;
}
.header .sub-menu .photos img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media only screen and (width <= 992px) {
  .header {
    top: 0;
    height: 48px;
    background-color: #fff;
  }
  .header::before {
    display: none;
  }
  .header .burger-wrap {
    display: flex;
    align-items: center;
  }
  .header .container .header-logo {
    height: 100%;
    max-height: 44px;
    padding-top: 2px;
    padding-bottom: 2px;
  }
  .header .container .header-logo svg {
    display: block;
    width: 69px;
    height: 44px;
  }
  .header .container .wrapper {
    display: none;
  }
}

.menu > li > a {
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}
.menu > li.menu-item-has-children > a {
  display: flex;
  align-items: center;
  gap: 4px;
}
.menu > li.menu-item-has-children > a::after {
  content: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTcgN0wxNyAxNyIgc3Ryb2tlPSIjMDA0QjcwIiBzdHJva2UtbGluZWNhcD0icm91bmQiLz4KPHBhdGggZD0iTTE3IDdWMTdINyIgc3Ryb2tlPSIjMDA0QjcwIiBzdHJva2UtbGluZWNhcD0icm91bmQiLz4KPC9zdmc+Cg==");
  display: block;
  width: 24px;
  height: 24px;
  transition: 0.3s ease-in-out;
}
.menu > li.menu-item-has-children.active > a::after {
  transform: rotate(-90deg);
}
.menu > li.menu-item-has-children.active .sub-menu-1 {
  display: flex;
}

.burger-menu {
  display: none;
}

@media only screen and (width <= 992px) {
  .burger-menu {
    position: fixed;
    top: 48px;
    left: 0;
    z-index: 99999;
    display: block;
    width: 100%;
    height: 100%;
    background-color: #f2f7fa;
    opacity: 0;
    overflow: auto;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
    pointer-events: none;
    visibility: hidden;
  }
  .burger-menu.active {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
  }
  .burger-menu .container {
    min-height: 100%;
    padding-top: 71px;
    padding-bottom: 71px;
    text-align: center;
  }
  .burger-menu .menu {
    display: inline-flex;
    flex-direction: column;
    gap: 56px;
    align-items: center;
  }
  .burger-menu .menu > li.menu-item-has-children.active .sub-menu-1 {
    justify-content: center !important;
  }
  .burger-menu .menu > li {
    position: relative;
  }
  .burger-menu .menu > li:first-child::after {
    content: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjI5IiBoZWlnaHQ9IjEzMyIgdmlld0JveD0iMCAwIDIyOSAxMzMiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjxwYXRoIGQ9Ik0yMTEuMzQzIDAuMzUzMTQ5Vjc3Ljg2MzNDMjExLjM0MyA5OC44NzQgMTk0LjQyMiAxMTUuODI0IDE3My40NDYgMTE1LjgyNEgxNi41NjlNMCAxMzIuNDIxSDE3My42MjJDMjAzLjc2NCAxMzIuNDIxIDIyOC4wODggMTA4LjA1NSAyMjguMDg4IDc3Ljg2MzNWMCIgc3Ryb2tlPSIjMjU3QkE1Ii8+Cjwvc3ZnPgo=");
    position: absolute;
    right: -106px;
    bottom: -37px;
    display: block;
    pointer-events: none;
  }
  .burger-menu .menu > li:nth-child(4)::after {
    content: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjkxIiBoZWlnaHQ9IjQxMyIgdmlld0JveD0iMCAwIDI5MSA0MTMiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjxwYXRoIGQ9Ik0zNTcuMjYzIDE0MS4wNzJIMzE2LjAxNkMyODUuODc1IDE0MS4wNzIgMjYxLjU1IDE2NS40MzcgMjYxLjU1IDE5NS42MjlWMzkxLjI1OUwyMjIuMjQzIDM4MS43MjRWMjM2Ljk0NUgxNy4yNDUzVjE1Ny44NDVIMjIyLjI0M1YwTTIwNS42NzQgMFYxNDEuMjQ5SDAuNVYyNTMuNTQxSDIwNS42NzRWMzkzLjU1NEwyNzguMTE5IDQxMS45MTZWMTk1LjYyOUMyNzguMTE5IDE3NC42MTkgMjk1LjA0MSAxNTcuNjY5IDMxNi4wMTYgMTU3LjY2OUgzNTcuMjYzIiBzdHJva2U9IiMyNTdCQTUiLz4KPC9zdmc+Cg==");
    position: absolute;
    top: -565.3%;
    right: -140px;
    display: block;
    pointer-events: none;
  }
  .burger-menu .menu a {
    font-size: 24px;
    font-weight: 400;
    line-height: 32px;
    color: var(--color-blue-deep);
    font-style: normal;
  }
  .burger-menu .menu .sub-menu-1 {
    display: none;
  }
  .burger-menu .menu .menu-item-has-children a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
  }
  .burger-menu .menu .sub-menu-wrap {
    display: flex;
    flex-direction: column;
    padding-top: 20px;
    text-align: center;
    gap: 20px;
  }
  .burger-menu .menu li {
    display: inline-block;
    text-align: center;
  }
  .burger-menu .btn {
    margin: 0 auto;
    margin-top: 216px;
  }
}
.btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 176px;
  height: 56px;
  min-height: 56px;
  max-height: 56px;
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
  border-radius: 50px;
  overflow: hidden;
  transition: var(--transition);
  cursor: pointer;
}
.btn-first {
  color: var(--color-blue-deep);
  background: #fff;
}
.btn-first:hover {
  background: var(--color-blue-light);
}
.btn-second {
  max-width: 169px;
  color: #fff;
  background: var(--color-blue-deep);
}
.btn-second:hover {
  background: var(--color-blue-slate);
}
.btn-third {
  max-width: 169px;
  color: #fff;
  background: transparent;
  border: 1px solid #fff;
}
.btn-third:hover {
  color: var(--color-blue-deep);
  background: var(--color-blue-light);
}
.btn.donate {
  color: #fff;
  background-color: #ed2c28;
  border-radius: 24px 0;
}
.btn.donate:hover {
  color: #fff;
  background-color: #c2201c;
}

.btn-round {
  position: absolute;
  right: -50%;
  bottom: -50%;
  z-index: 2;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  width: 70px;
  height: 70px;
  background-color: #fff;
  border-radius: 71% 0 0;
}
.btn-round::before {
  content: "";
  position: absolute;
  top: -26%;
  right: -14.9%;
  display: block;
  width: 57.15%;
  height: 48.58%;
  border-radius: 0 0 63%;
  box-shadow: inset -5.3px -10px 0 5px #fff;
}
.btn-round::after {
  content: "";
  position: absolute;
  bottom: -21.1%;
  left: -42%;
  display: block;
  width: 57.15%;
  height: 48.58%;
  border-radius: 0 0 63%;
  box-shadow: inset -5.3px -10px 0 5px #fff;
}
.btn-round svg {
  display: block;
  width: 74.3%;
  height: auto;
}

.link {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 4px;
  transition: var(--transition);
}
.link:hover {
  text-decoration: underline;
  text-underline-offset: 5px;
  text-decoration-thickness: 1px;
  color: var(--color-blue-deep);
}
.link:hover svg {
  display: none;
}

.photo-hover {
  overflow: hidden;
  transition: 0.4s linear;
}
.photo-hover .btn-round {
  transition: 0.4s linear;
}
.photo-hover:hover {
  border-radius: 0 40px;
}
.photo-hover:hover .btn-round {
  right: 0;
  bottom: 0;
}
@media only screen and (width <= 992px) {
  .photo-hover {
    border-radius: 0 24px !important;
  }
  .photo-hover .btn-round {
    display: none !important;
  }
}

main {
  padding-top: 173px;
}
@media only screen and (width <= 992px) {
  main {
    padding-top: 112px;
  }
}

.page-hero {
  padding-bottom: 40px;
  text-align: center;
}
.page-hero h1 {
  max-width: 890px;
  margin: 0 auto;
  text-align: center;
}

.wp-text h1:first-child,
.wp-text h2:first-child,
.wp-text h3:first-child,
.wp-text h4:first-child,
.wp-text h5:first-child {
  margin-top: 0;
}
.wp-text h1:last-child,
.wp-text h2:last-child,
.wp-text h3:last-child,
.wp-text h4:last-child,
.wp-text h5:last-child {
  margin-bottom: 0;
}
.wp-text h1,
.wp-text h2 {
  margin: 32px 0 12px;
}
.wp-text h3,
.wp-text h4,
.wp-text h5 {
  margin: 32px 0 12px;
}
.wp-text a:not(.btn, .wp-block-button__link) {
  text-decoration: underline;
  text-underline-offset: 4px;
}
.wp-text a:not(.btn, .wp-block-button__link):hover {
  color: var(--color-pink);
}
.wp-text p {
  margin: 12px 0;
}
.wp-text p:first-child {
  margin-top: 0;
}
.wp-text p:last-child {
  margin-bottom: 0;
}
.wp-text ul {
  margin: 32px 0;
  padding: 0;
  list-style: none;
}
.wp-text ul:first-child {
  margin-top: 0;
}
.wp-text ul:last-child {
  margin-bottom: 0;
}
.wp-text ul li {
  position: relative;
  padding-left: 25px;
  list-style: none;
}
.wp-text ul li:not(:last-of-type) {
  margin-bottom: 12px;
}
.wp-text ul li::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  display: block;
  width: 8px;
  height: 8px;
  background-color: var(--color-blue-deep);
  border-radius: 50%;
}
.wp-text ol {
  padding-left: 16px;
}
.wp-text ol li {
  display: list-item;
}
.wp-text .wp-block-group h4 {
  margin-bottom: 24px;
}
.wp-text .wp-block-group h4 + p {
  margin-top: 0;
}
.wp-text .wp-block-group:not(.wp-block-group > .wp-block-group) {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
  margin-top: 32px;
  margin-bottom: 32px;
}
.wp-text .wp-block-group:not(.wp-block-group > .wp-block-group) .wp-block-group.is-vertical {
  flex: 1;
  gap: 0;
}
.wp-text .wp-block-group:not(.wp-block-group > .wp-block-group) .wp-block-group.is-vertical p {
  text-align: justify;
}
@media only screen and (width >= 992px) {
  .wp-text .wp-block-group:not(.wp-block-group > .wp-block-group) .wp-block-image {
    flex: 0 0 48.04%;
    max-width: 48.04%;
  }
  .wp-text .wp-block-group:not(.wp-block-group > .wp-block-group) .wp-block-image img {
    display: block;
    width: 100%;
    height: auto;
    margin-top: 0;
  }
}
.wp-text .wp-block-group:has(.wp-block-image + .wp-block-image) {
  gap: 0;
  overflow: hidden;
}
.wp-text .wp-block-group:has(.wp-block-image + .wp-block-image) .wp-block-image {
  flex: 1;
  max-width: none;
}
.wp-text p:not(.has-text-align-center),
.wp-text li {
  text-align: justify;
}
.wp-text .wp-block-image {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.wp-text .wp-block-image:first-child {
  margin-top: 0;
}
.wp-text .wp-block-image:last-child {
  margin-bottom: 0;
}
.wp-text .wp-block-image img {
  width: 100%;
  height: auto;
}
.wp-text .wp-block-media-text {
  gap: 30px;
  margin: 40px 0;
}
.wp-text .wp-block-media-text .wp-block-media-text__content {
  padding: 0;
}
.wp-text .wp-block-columns {
  gap: 30px;
  margin: 40px 0;
}
.wp-text .wp-block-columns .wp-block-image {
  margin: 0;
}
.wp-text img {
  margin-top: 24px;
}
.wp-text h2 + figure img {
  margin-top: 0;
}
.wp-text figure + p {
  margin-top: 32px;
}
.wp-text .is-vertically-aligned-center figure img {
  margin-top: 0;
}
@media only screen and (width <= 1024px) {
  .wp-text .wp-block-group {
    flex-direction: column;
    align-items: center !important;
    gap: 32px !important;
  }
  .wp-text .wp-block-group .wp-block-image {
    flex: 0 0 100%;
    max-width: 100%;
    margin-top: 0;
    margin-bottom: 0;
  }
  .wp-text .wp-block-group .wp-block-group.is-vertical {
    padding-left: 0;
    text-align: center;
  }
  .wp-text .wp-block-group:has(.wp-block-image + .wp-block-image) {
    flex-direction: row;
    gap: 0 !important;
  }
}

.wp-small-block > h2,
.wp-small-block > h3,
.wp-small-block > h4,
.wp-small-block > h5,
.wp-small-block > p,
.wp-small-block > ol,
.wp-small-block > ul {
  width: 816px;
  max-width: 100%;
  margin-right: auto;
  margin-left: auto;
}

.text-bg {
  padding: 24px 64px;
}
.text-bg * {
  color: #fff;
}
.text-bg h1,
.text-bg h2,
.text-bg h3,
.text-bg h4,
.text-bg h5 {
  text-align: left;
}
.text-bg .author {
  margin-top: 32px;
  text-align: right;
}

.donation-module .project-details {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 30px;
  margin-bottom: 32px;
}
.donation-module .project-details .left,
.donation-module .project-details .right {
  width: 100%;
}
.donation-module .project-details .left .title,
.donation-module .project-details .right .title {
  font-size: 22px;
  font-style: normal;
  font-weight: 500;
  line-height: 32px;
  color: var(--color-blue-deep);
}
.donation-module .project-details .left {
  max-width: 545px;
}
.donation-module .project-details .right {
  max-width: 315px;
}
.donation-module .guttenberg-gallery .photo.swiper-slide {
  border-radius: var(--radius-tr-br);
  aspect-ratio: 890/500;
  overflow: hidden;
}
.donation-module .guttenberg-gallery .photo.swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  margin: 0;
}
.donation-module .guttenberg-gallery .wrapper-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 32px;
  gap: 32px;
}

.accent-block {
  margin-top: 32px;
  margin-bottom: 32px;
  padding: 40px;
  color: #fff;
  background-color: #257ba5;
  border-radius: var(--radius-tl-bl);
}
.accent-block .title {
  margin-bottom: 12px;
  font-size: 24px;
  font-weight: 500;
  line-height: normal;
  font-style: italic;
}

.wp-block-buttons {
  margin: 0 auto;
}

.breadcrumbs-wrap {
  padding-top: 80px;
  padding-bottom: 80px;
  overflow: auto;
}
.breadcrumbs-wrap .btn-back {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 14px;
}
.breadcrumbs-wrap .breadcrumbs {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 100%;
  white-space: nowrap;
  gap: 24px;
}

.footer {
  padding-top: 40px;
  padding-bottom: 40px;
}
.footer * {
  color: #fff;
}
.footer .top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}
.footer .top .wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 65.926%;
  gap: 30px;
}
.footer .top .wrapper .socials {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 26px;
}
.footer .top .wrapper .socials a .main-svg {
  display: block;
}
.footer .top .wrapper .socials a .hover-svg {
  display: none;
}
.footer .top .wrapper .socials a:hover .main-svg {
  display: none;
}
.footer .top .wrapper .socials a:hover .hover-svg {
  display: block;
}
.footer .top .wrapper .contacts {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}
.footer .top .wrapper .contacts a:hover {
  text-decoration: underline;
  text-underline-offset: 5px;
  text-decoration-thickness: 1px;
}
.footer .middle {
  display: flex;
  justify-content: center;
  padding: 76px 0;
}
.footer .middle .title {
  position: relative;
}
.footer .middle .title .donate {
  position: absolute;
  right: 20%;
  bottom: 100%;
  opacity: 0;
  pointer-events: none;
}
.footer .middle .title:hover .donate {
  opacity: 1;
  pointer-events: auto;
}
.footer .middle .title:hover .mask {
  opacity: 1;
}
.footer .middle .mask {
  position: absolute;
  left: 50%;
  opacity: 0;
  transform: translateX(-50%);
}
.footer .bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
}
.footer .bottom .developer {
  text-align: right;
}
.footer .developer a:hover {
  text-decoration: underline;
  text-underline-offset: 5px;
  text-decoration-thickness: 1px;
}
@media only screen and (width <= 900px) {
  .footer .top {
    flex-direction: column;
    gap: 64px;
  }
  .footer .top .wrapper {
    order: 1;
    width: 100%;
    max-width: 600px;
  }
  .footer .top .logo {
    order: 0;
  }
  .footer .middle svg {
    width: 100%;
    max-width: 482px;
    height: auto;
  }
  .footer .bottom {
    flex-direction: column;
    align-items: center;
    gap: 0;
    text-align: center !important;
  }
  .footer .bottom p {
    text-align: center;
  }
}
@media only screen and (width <= 576px) {
  .footer .top .wrapper {
    flex-direction: column;
    align-items: center;
    gap: 64px;
  }
  .footer .top .wrapper .socials {
    order: 1;
  }
}

body.wp-singular {
  background: #f2f7fa;
}

.container {
  max-width: 1150px;
}

.page-content {
  position: relative;
  overflow: hidden;
}
.page-content .container:not(.testimonial .container) {
  background: #fff;
  border-radius: 40px;
}
.page-content .container:not(.testimonial .container) .wrapper {
  width: 100%;
  max-width: 890px;
  margin: 0 auto;
  padding-top: 60px;
  padding-bottom: 80px;
}
.page-content.realisation .bg {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: -1;
  width: 100%;
  transform: translateX(-50%);
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top center;
     object-position: top center;
}

.testimonial {
  padding-top: var(--padding-section);
  padding-bottom: var(--padding-section);
  padding-left: calc((100vw - 1365px) / 2);
}
.testimonial .container {
  max-width: 100%;
  padding-right: 0;
}
.testimonial .title {
  margin-bottom: 40px;
  text-align: center;
}
.testimonial .list .swiper-wrapper {
  align-items: stretch;
}
.testimonial .list .item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: auto !important;
  height: 100%;
  padding: 32px;
  background: #fff;
  border: 1px solid rgba(37, 123, 165, 0.5);
  border-radius: 0 40px;
}
.testimonial .list .item .top {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-bottom: 16px;
}
.testimonial .list .item .top .photo {
  width: 100%;
  max-width: 60px;
  border-radius: 50%;
  overflow: hidden;
  aspect-ratio: 60/60;
}
.testimonial .list .item .top .photo img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.testimonial .list .item .link-defaul {
  display: block;
  margin: 24px 0 0 auto;
  color: var(--color-blue-deep);
}
@media only screen and (width <= 768px) {
  .testimonial .container {
    padding-right: 16px;
  }
}
