@charset "UTF-8";
* {
  padding: 0px;
  margin: 0px;
  border: 0px;
  animation-duration: 1s;
}

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

aside,
nav,
footer,
header,
section {
  display: block;
}

html {
  font-size: 16px;
}

html,
body {
  height: 100%;
  min-width: 320px;
}

body {
  line-height: 1;
  font-family: "sans-serif";
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

input,
button,
textarea {
  font-family: "sans-serif";
  font-size: inherit;
}

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

button {
  cursor: pointer;
  background-color: inherit;
}

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

a,
a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

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

/*
&::-webkit-scrollbar {
	display: none;
}
*/
.flex {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}
.flex.center {
  justify-content: center;
  align-items: center;
}
.flex.between {
  justify-content: space-between;
}
.flex.gap-10 {
  gap: 10px;
}
.flex.gap-20 {
  gap: 20px;
}
.flex.gap-30 {
  gap: 30px;
}
.flex.gap-40 {
  gap: 40px;
}
.flex.gap-50 {
  gap: 50px;
}

.grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.grid.column-3 {
  grid-template-columns: repeat(3, 1fr);
}
.grid.column-4 {
  grid-template-columns: repeat(4, 1fr);
}
.grid.column-5 {
  grid-template-columns: repeat(5, 1fr);
}
.grid.gap-10 {
  grid-gap: 10px;
}
.grid.gap-20 {
  grid-gap: 20px;
}
.grid.gap-30 {
  grid-gap: 30px;
}
.grid.gap-40 {
  grid-gap: 40px;
}

.button {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100px;
  border: 1px solid #FFF;
  color: #FFF;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.button.height-40 {
  height: 40px;
}
.button.height-50 {
  height: 50px;
}
.button.height-70 {
  height: 70px;
}
.button.bg-pink {
  background: linear-gradient(100.72deg, rgba(255, 210, 176, 0.35) 9.38%, rgba(248, 159, 91, 0) 42.12%), #F28734;
  border: unset;
}
.button.padding-30 {
  padding: 0 30px;
}
.button.padding {
  padding: 8px 20px;
}

.contact-link {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  max-width: max-content;
  gap: 6px;
  color: #FFF;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.soc {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  max-width: max-content;
}
.soc img {
  width: 24px;
}

.logo {
  width: 100%;
  max-width: 160px;
  display: block;
}
@media (max-width: 1600px) {
  .logo {
    max-width: 140px;
  }
}
@media (max-width: 1170px) {
  .logo {
    max-width: 140px;
  }
}
.logo img {
  width: 100%;
}

.menu {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
}
.menu li.page_item a {
  color: #4A4A4A;
  font-family: Inter;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  position: relative;
  cursor: pointer;
}
@media (max-width: 1600px) {
  .menu li.page_item a {
    font-size: 16px;
  }
}
.menu li a::before {
  content: "";
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  transition: all 0.5s;
  position: absolute;
  background: #F28734;
}
.menu li a:hover::before {
  width: 100%;
}
.menu li._active a::before {
  width: 100%;
}
.menu li a.button:hover::before,
.menu li._active a.button::before {
  display: none !important;
}
.menu li a:hover,
.menu li._active a {
  color: #F28734;
}

.swiper-pagination {
  width: 100%;
  inset: 0;
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 4px;
}
.swiper-pagination .swiper-pagination-bullet {
  position: relative;
  inset: 0;
  width: 100%;
  max-width: 116px;
  display: block;
  border-radius: 5px;
  background: rgba(47, 82, 51, 0.3);
  opacity: 1;
  transition: all 0.5s;
}
.swiper-pagination .swiper-pagination-bullet-active {
  background: linear-gradient(100.72deg, rgba(255, 210, 176, 0.35) 9.38%, rgba(248, 159, 91, 0) 42.12%), #F28734;
}

.section-title {
  width: 100%;
  max-width: 768px;
  margin: 0 auto;
  margin-bottom: 40px;
}
.section-title h2,
.section-title h1 {
  color: #FFF;
  font-family: Inter;
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-align: center;
}
@media (max-width: 1024px) {
  .section-title h1,
  .section-title h2 {
    font-size: 28px;
  }
}
.section-title p {
  color: #FFF;
  text-align: center;
  font-family: Inter;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
@media (max-width: 1024px) {
  .section-title p {
    font-size: 16px;
  }
}
.section-title.black h1,
.section-title.black h2 {
  color: #4A4A4A;
}
.section-title.black p {
  color: #777;
  margin-top: 10px;
}
.section-title.black p a {
	color: #F28734;
}
.section-title.black p:not(:last-child) {
  margin-bottom: 10px;
}
.burger-btn {
  width: 30px;
  display: block;
  padding: 0;
  margin: 0;
  background: unset;
  position: relative;
}
.burger-btn span {
  width: 100%;
  height: 2px;
  margin-bottom: 9px;
  position: relative;
  transition: all 0.5s;
  transform: rotate(0deg);
  display: block;
  background: #4A4A4A;
}
.burger-btn span:last-child {
  margin-bottom: 0;
}
.burger-btn.close span:nth-child(1) {
  transform: rotate(45deg);
  top: 0;
}
.burger-btn.close span:nth-child(2) {
  opacity: 0;
}
.burger-btn.close span:nth-child(3) {
  transform: rotate(-45deg);
  top: 0;
}

@keyframes rotateAnim {
  0% {
    transform: rotate3d(0, 0, 1, 15deg);
  }
  50% {
    transform: rotate3d(0.2, 0.5, 1, -10deg);
  }
  100% {
    transform: rotate3d(0, 0, 1, 15deg);
  }
}
.romb {
  display: block;
  position: absolute;
  width: 80px;
  height: 40px;
  background: #F28734;
  opacity: 0.2;
  transform: rotate(10deg);
  animation: infinite 2s rotateAnim;
}

body {
  color: #000;
  font-size: 16px;
  font-family: "sans-serif";
  background-color: #fff;
}
body._lock {
  overflow: hidden;
}

.container {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
}
@media (max-width: 1600px) {
  .container {
    max-width: 1170px;
  }
}

.wrapper {
  width: 100%;
  min-height: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.button {
  display: inline-flex;
  padding: 0px 0px;
}
.button._fw {
  width: 100%;
}

.select {
  position: relative;
}
.select__item {
  position: relative;
}
.select__title {
  color: #000;
  border: 1px solid #d9d9d9;
  background-color: #fff;
  cursor: pointer;
  border-radius: 4px;
}
@media (max-width: 1170px) {
  .select__title {
    font-size: 18px;
  }
}
.select__value {
  display: flex;
  font-size: 14px;
  height: 30px;
  padding: 0px 15px;
  align-items: center;
  justify-content: space-between;
  flex-direction: row-reverse;
}
.select__value span {
  height: 1em;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
.select__value:before {
  content: "";
  display: inline-block;
  transition: all 0.3s ease 0s;
  width: 11px;
  height: 7px;
  background: url("../img/icons/select.svg") center/100% no-repeat;
}
.select__input {
  width: 100%;
  background-color: transparent;
  height: 100%;
}
.select__options {
  color: #000;
  position: absolute;
  top: 29px;
  border-radius: 0 0 4px 4px;
  min-width: 100%;
  left: 0;
  background-color: #fff;
  border-top: 0;
  border: 1px solid #d9d9d9;
  border-top: 0;
  font-size: 14px;
  padding: 10px 0px 5px 0px;
}
@media (max-width: 1170px) {
  .select__options {
    font-size: 18px;
  }
}
.select__option {
  cursor: pointer;
  padding: 5px 15px;
  margin: 0px 0px 0px 0px;
}
@media (min-width: 992px) {
  .select__option:hover {
    background: #d9d9d9;
  }
}
.select._active {
  z-index: 5;
}
.select._active .select__value:before {
  transform: rotate(-180deg);
}
.select._active .select__options {
  display: block;
}

input[type=text],
input[type=email],
input[type=tel],
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
input[type=text]:focus,
input[type=email]:focus,
input[type=tel]:focus,
textarea:focus {
  outline: none;
}

.input {
  border-radius: 0 !important;
  width: 100%;
  display: block;
  padding: 0px 20px;
}
textarea.input {
  resize: none;
  padding: 0px 0px;
}

.checkbox {
  position: relative;
}
.checkbox__input {
  position: absolute;
  width: 0;
  height: 0;
  opacity: 0;
  visibility: hidden;
}
.checkbox__input:checked + .checkbox__text:before {
  background: #fff url("../img/icons/check.svg") center no-repeat;
}
.checkbox__text {
  display: inline-flex;
  align-items: center;
  position: relative;
  font-size: 16px;
  color: #ffffff;
  letter-spacing: -0.3px;
  line-height: 1.25;
  cursor: pointer;
}
.checkbox__text:before {
  content: "";
  align-self: flex-start;
  margin: 0px 14px 0px 0px;
  flex: 0 0 20px;
  left: 0;
  top: 0;
  width: 20px;
  height: 18px;
  background: #fff;
  border: 1px solid #a7a9ac;
}
.checkbox a {
  color: #fff;
  text-decoration: underline;
}
@media (min-width: 992px) {
  .checkbox a:hover {
    text-decoration: none;
  }
}
.checkbox._error .checkbox__text:before {
  border: 1px solid #ee1212;
}

.options {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.options__item {
  position: relative;
  cursor: pointer;
}
.options__input {
  position: absolute;
  width: 0;
  height: 0;
  opacity: 0;
  left: 0;
  top: 0;
  visibility: hidden;
}
.options__input:checked + .options__text:after {
  transform: scale(1);
}
.options__text {
  display: inline-flex;
  align-items: center;
  position: relative;
  font-size: 16px;
  color: #ffffff;
  letter-spacing: -0.3px;
  line-height: 1.25;
}
.options__text:before {
  content: "";
  align-self: flex-start;
  margin: 0px 14px 0px 0px;
  flex: 0 0 20px;
  left: 0;
  top: 0;
  border-radius: 50%;
  width: 20px;
  height: 18px;
  background: #fff;
  border: 1px solid #a7a9ac;
}
.options__text:after {
  content: "";
  transition: all 0.3s ease 0s;
  transform: scale(0);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #77243a;
  position: absolute;
  left: 5px;
  top: 4px;
}

.rating {
  display: flex;
  align-items: flex-end;
  font-size: 40px;
  line-height: 0.75;
  transition: opacity 0.3s ease 0s;
}

.rating.rating_sending {
  opacity: 0.2;
}

.rating.rating_set .rating__active,
.rating.rating_set .rating__item {
  cursor: pointer;
}

.rating__body {
  position: relative;
}

.rating__body::before {
  content: "★★★★★";
  display: block;
}

.rating__active {
  position: absolute;
  width: 0%;
  height: 100%;
  top: 0;
  left: 0;
  overflow: hidden;
}

.rating__active::before {
  content: "★★★★★";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  color: #ffd300;
}

.rating__items {
  display: flex;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.rating__item {
  flex: 0 0 20%;
  height: 100%;
  opacity: 0;
}

.rating__value {
  font-size: 50%;
  line-height: 1;
  padding: 0px 0px 0px 10px;
}

.quantity {
  width: 88px;
  height: 40px;
  display: flex;
  border: 1px solid rgba(166, 166, 166, 0.45);
}
.quantity__button {
  flex: 0 0 30px;
  position: relative;
  cursor: pointer;
}
.quantity__button::before, .quantity__button::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transition: all 0.3s ease 0s;
  margin: 0px 0px 0px -4.5px;
  background-color: #a6a6a6;
  width: 9px;
  height: 1px;
}
@media (min-width: 1170px) {
  .quantity__button:hover::before, .quantity__button:hover::after {
    background-color: rgba(0, 0, 0, 0.5);
  }
}
.quantity__button_plus::before {
  transform: rotate(-90deg);
}
.quantity__input {
  flex: 1 1 auto;
}
.quantity__input input {
  height: 100%;
  color: #a6a6a6;
  font-size: 12px;
  width: 100%;
  text-align: center;
}

.help-item {
  width: 100%;
  border-radius: 10px;
  background: #FFF;
  box-shadow: 0px 0px 10px 5px rgba(255, 255, 255, 0.25);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.help-item:hover .help-item__img a img {
  transform: scale(1.1);
}
.help-item .help-item__img {
  width: 100%;
  overflow: hidden;
}
.help-item .help-item__img a {
  width: 100%;
  display: block;
  cursor: pointer;
}
.help-item .help-item__img a img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  transition: all .7s ease;
}
@media (max-width: 1600px) {
  .help-item .help-item__img a img {
    height: 300px;
  }
}
.help-item .help-item__text {
  width: 100%;
  padding: 10px;
  display: flex;
  flex-direction: column;
  flex: 1 1 0;
}
.help-item .help-item__text h4 {
  margin-bottom: 4px;
}
.help-item .help-item__text h4 a {
  color: #4A4A4A;
  text-align: center;
  font-family: inter;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
@media (max-width: 1600px) {
  .help-item .help-item__text h4 a {
    font-size: 16px;
  }
}
.help-item .help-item__text p {
  color: #777;
  font-family: inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 10px;
  flex: 1 1 0;
}
@media (max-width: 1600px) {
  .help-item .help-item__text p {
    font-size: 14px;
  }
}
.help-item .help-item__text .button {
  width: 100%;
}

.popup {
  -webkit-overflow-scrolling: touch;
  z-index: 100;
  padding: 50px 10px;
  position: fixed;
  top: 0px;
  left: 0;
  width: 100%;
  height: 100%;
  transition: visibility 0.8s ease 0s;
  visibility: hidden;
}
.popup::before {
  content: "";
  background-color: rgba(0, 0, 0, 0.9);
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.8s ease 0s;
}
.popup.show {
  visibility: visible;
  overflow: auto;
}
.popup.show::before {
  opacity: 1;
}
.popup.show .popup__body {
  transform: scale(1);
}
.popup._active {
  overflow: auto;
  visibility: visible;
}
.popup._active::before {
  opacity: 1;
}
.popup._active .popup__body {
  transition: all 0.3s ease 0.2s;
  transform: scale(1);
}
.popup__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100%;
  flex: 1 1 auto;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.popup__body {
  transform: scale(0);
  transition: all 0.3s ease 0s;
  background-color: #fff;
  padding: 20px;
  width: 100%;
  max-width: 800px;
}
.popup__close {
  width: 15px;
  height: 15px;
  position: absolute;
  top: 15px;
  right: 15px;
  cursor: pointer;
  z-index: 30;
  background-image: url("../img/icons/close.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.popup__title {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  font-family: Inter;
  gap: 10px;
}
.popup__title p {
  font-size: 24px;
  color: #4A4A4A;
}
.popup__title span {
  font-size: 14px;
  color: #777;
}

.page {
  flex: 1 1 auto;
}

.header {
  width: 100%;
}
.header .header__bottom {
  width: 100%;
  padding: 20px;
  background: #fff;
}
.header .header__bottom .flex {
  width: 100%;
}
.header .header__bottom .burger-btn {
  display: none;
}
.header .header__bottom .header__menus {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}
.header .header__bottom .header__menus nav:last-child ul.nav-menu {
  gap: 8px;
}
.header .header__bottom .header__menus nav:last-child ul.nav-menu li.page_item a {
  font-size: 12px;
}
.header .header__bottom .header__menus nav ul.nav-menu {
  gap: 10px;
}
.header .header__bottom .header__menus nav ul.nav-menu li.page_item._trigger {
	position: relative;
}
.header .header__bottom .header__menus nav ul.nav-menu li.page_item._trigger ul {
	display: none;
	position: absolute;
	top: 100%;
	left: 0px;
	z-index: 2;
	flex-direction: column;
	gap: 10px;
	width: max-content;
	padding: 10px;
	border-radius: 5px;
	background: #fff;
}
.header .header__bottom .header__menus nav ul.nav-menu li.page_item._trigger:hover ul {
	display: flex;
}
.header .header__bottom .header__menus nav ul.nav-menu li.page_item a {
  font-size: 14px;
}
.header .header__bottom .header__menus nav ul.nav-menu .button {
  padding: 4px 8px;
  border: 1px solid #F28734;
}
.header .header__bottom .header__contacts {
  max-width: 220px;
  width: 100%;
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
}
@media (max-width: 1170px) {
  .header .header__bottom .header__contacts {
    display: none;
  }
}
.header .header__bottom .header__contacts .contact-link {
  color: #000;
  font-size: 14px;
  width: 100%;
  justify-content: center;
  display: flex;
  max-width: unset;
  transition: all .3s ease;
}
.header .header__bottom .header__contacts .contact-link:not(:last-child) {
  margin-bottom: 5px;
}
.header .header__bottom .header__contacts .contact-link:hover {
  color: #F28734;
}
@media (max-width: 1170px) {
  .header .header__bottom .header__menus {
    display: none;
  }
  .header .header__bottom .burger-btn {
    display: block;
    min-width: 30px;
  }
}
.header .header__mobile {
  position: absolute;
  left: 0;
  overflow: hidden;
  top: 0;
  width: 0;
  max-width: 500px;
  height: 100vh;
  transition: all 0.5s;
  background: #F28734;
  z-index: 10;
}
.header .header__mobile.header__mobile--active {
  width: 100%;
}
.header .header__mobile .burger-btn {
  position: absolute;
  right: 20px;
  top: 20px;
}
.header .header__mobile .burger-btn span {
  background-color: #fff;
  margin: 0;
}
.header .header__mobile .burger-btn span:first-child {
  top: 2px;
}
.header .header__mobile .main-navigation {
  width: 100%;
  padding: 40px 20px 20px;
}
.header .header__mobile .main-navigation .menu {
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}
.header .header__mobile .main-navigation .menu li.page_item a {
  color: #FFF;
}
.header .header__mobile .header__mobile-contacts {
  padding: 20px;
  width: 100%;
}
.header .header__mobile .header__mobile-contacts .contact-link {
  margin-bottom: 10px;
}
.header .header__mobile .header__mobile-contacts .button {
  margin-top: 30px;
}

.footer {
  width: 100%;
}
.footer .footer__top {
  width: 100%;
  background-color: #FFF;
  padding: 80px 20px 70px;
}
@media (max-width: 1170px) {
  .footer .footer__top {
    padding: 40px 20px;
  }
}
.footer .footer__top .footer__container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
}
@media (max-width: 1170px) {
  .footer .footer__top .footer__container {
    flex-wrap: wrap;
  }
}
.footer .footer__top .footer__container .footer__about {
  width: 100%;
  max-width: 350px;
}
.footer .footer__top .footer__container .footer__about .logo {
  margin-bottom: 18px;
}
.footer .footer__top .footer__container .footer__about h4 {
  color: #F28734;
  font-size: 32px;
  margin-bottom: 20px;
}
.footer .footer__top .footer__container .footer__about .flex {
  margin-bottom: 10px;
  gap: 10px;
}
.footer .footer__top .footer__container .footer__about .flex a {
  color: #4A4A4A;
  font-family: inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.footer .footer__top .footer__container .footer__about p {
  color: #4A4A4A;
  font-family: inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
@media (max-width: 1600px) {
  .footer .footer__top .footer__container .footer__about p {
    font-size: 12px;
  }
}
.footer .footer__top .footer__container h4 {
  color: #4A4A4A;
  font-family: inter;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 20px;
}
.footer .footer__top .footer__container .footer__navigation {
  width: 100%;
  max-width: 400px;
}
.footer .footer__top .footer__container .footer__navigation .flex {
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
}
@media (max-width: 768px) {
  .footer .footer__top .footer__container .footer__navigation .flex {
    flex-wrap: wrap;
  }
  .footer .footer__top .footer__container .footer__about h4 {
    margin-bottom: 10px;
  }
}
.footer .footer__top .footer__container .footer__navigation .flex ul li {
  margin-bottom: 10px;
}
.footer .footer__top .footer__container .footer__navigation .flex ul li:last-child {
  margin-bottom: 0;
}
.footer .footer__top .footer__container .footer__navigation .flex ul li a {
  color: #4A4A4A;
  font-family: inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.footer .footer__top .footer__container .footer__contact {
  width: 100%;
  max-width: 320px;
}
.footer .footer__top .footer__container .footer__contact .contact-link {
  margin-bottom: 14px;
  color: #4A4A4A;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.footer .footer__top .footer__container .footer__contact .contact-link:last-child {
  margin-bottom: 0;
}
.footer .footer__top .footer__container .footer__contact .soc {
  margin-bottom: 20px;
}
.footer .footer__top .footer__container .footer__contact .txt_footer {
  color: #4A4A4A;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  font-family: inter;
  line-height: normal;
}
.footer .footer__bottom {
  width: 100%;
  padding: 10px 20px;
  background: #F28734;
}
.footer .footer__bottom .footer__container p {
  color: #FFF;
  font-family: inter;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-align: center;
}
@media (max-width: 1600px) {
  .footer .footer__bottom .footer__container p {
    font-size: 14px;
  }
}

.main {
  width: 100%;
  position: relative;
  padding: 162px 20px 96px;
}
@media (max-width: 1600px) {
  .main {
    padding: 130px 20px 80px;
  }
}
@media (max-width: 1170px) {
  .main {
    padding: 80px 20px;
  }
}
.main::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.1) 100%);
  z-index: 1;
}
.main .main__swiper {
  z-index: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
.main .main__swiper .swiper-wrapper .swiper-slide {
  width: 100%;
  height: 100%;
}
.main .main__swiper .swiper-wrapper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(2px);
}
.main .main__container {
  position: relative;
  z-index: 2;
}
.main .main__container .main__text {
  width: 100%;
  max-width: 768px;
  margin-bottom: 58px;
}
@media (max-width: 1600px) {
  .main .main__container .main__text {
    max-width: 550px;
  }
}
@media (max-width: 1170px) {
  .main .main__container .main__text {
    margin-bottom: 30px;
    max-width: 420px;
  }
}
.main .main__container .main__text h1 {
  color: #FFF;
  font-family: inter;
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 10px;
}
@media (max-width: 1600px) {
  .main .main__container .main__text h1 {
    font-size: 36px;
  }
}
@media (max-width: 1170px) {
  .main .main__container .main__text h1 {
    font-size: 24px;
  }
}
.main .main__container .main__text p {
  color: #FFF;
  font-family: inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 20px;
}
/* @media (max-width: 1600px) {
  .main .main__container .main__text p {
    font-size: 16px;
  }
} */
@media (max-width: 1170px) {
  .main .main__container .main__text p {
    font-size: 14px;
  }
}
.main .main__container .main__text .button {
  max-width: 320px;
  width: 100%;
}

.help-children {
  width: 100%;
  padding: 96px 20px 60px;
  background: #F4F4F4;
  position: relative;
}
@media (max-width: 1024px) {
  .help-children {
    padding: 60px 20px;
  }
}
.help-children .help-children__container {
  position: relative;
}
.help-children .help-children__container .section-title {
  margin-bottom: 56px;
}
@media (max-width: 1024px) {
  .help-children .help-children__container .section-title {
    margin-bottom: 30px;
  }
}
.help-children .help-children__container .grid {
  width: 100%;
}
@media (max-width: 1024px) {
  .help-children .help-children__container .grid {
    grid-gap: 16px;
  }
}
@media (max-width: 768px) {
  .help-children .help-children__container .grid {
    max-width: 400px;
    margin: 0 auto;
    grid-template-columns: 1fr;
  }
}

.what-help {
  width: 100%;
  padding: 40px 20px;
  position: relative;
}
@media (max-width: 1600px) {
  .what-help .what-help__container {
    max-width: 1024px;
  }
}
.what-help .what-help__container .section-title {
  margin-bottom: 80px;
}
@media (max-width: 1600px) {
  .what-help .what-help__container .section-title {
    margin-bottom: 40px;
  }
}
.what-help .what-help__container .what-help__list {
  width: 100%;
}
.what-help .what-help__container .what-help__list .what-help__item {
  width: 100%;
  margin-bottom: 40px;
}
@media (max-width: 1600px) {
  .what-help .what-help__container .what-help__list .what-help__item {
    margin-bottom: 20px;
  }
}
@media (max-width: 1024px) {
  .what-help .what-help__container .what-help__list .what-help__item {
    gap: 16px;
  }
}
@media (max-width: 768px) {
  .what-help .what-help__container .what-help__list .what-help__item {
    flex-direction: column;
    text-align: center;
  }
}
.what-help .what-help__container .what-help__list .what-help__item:last-child {
  margin-bottom: 0;
}
.what-help .what-help__container .what-help__list .what-help__item .what-help__item-img {
  width: 100%;
  max-width: 120px;
}
/* @media (max-width: 1600px) {
  .what-help .what-help__container .what-help__list .what-help__item .what-help__item-img {
    max-width: 120px;
  }
} */
@media (max-width: 1024px) {
  .what-help .what-help__container .what-help__list .what-help__item .what-help__item-img {
    max-width: 80px;
  }
}
.what-help .what-help__container .what-help__list .what-help__item .what-help__item-img img {
  width: 100%;
  border-radius: 50%;
  background-color: #777;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.25);
}
.what-help .what-help__container .what-help__list .what-help__item .what-help__item-text {
  width: 100%;
  max-width: 1200px;
}
.what-help .what-help__container .what-help__list .what-help__item .what-help__item-text .number {
  color: rgba(47, 82, 51, 0.2);
  text-align: center;
  font-family: inter;
  font-size: 128px;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
  display: none;
  min-width: 74px;
}
@media (max-width: 1600px) {
  .what-help .what-help__container .what-help__list .what-help__item .what-help__item-text .number {
    font-size: 90px;
    min-width: 52px;
  }
}
@media (max-width: 1024px) {
  .what-help .what-help__container .what-help__list .what-help__item .what-help__item-text .number {
    display: none;
  }
}
.what-help .what-help__container .what-help__list .what-help__item .what-help__item-text .text {
  width: 100%;
  max-width: 932px;
}
.what-help .what-help__container .what-help__list .what-help__item .what-help__item-text .text h3 {
  color: #4A4A4A;
  font-family: inter;
  font-size: 36px;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
  margin-bottom: 4px;
}
@media (max-width: 1600px) {
  .what-help .what-help__container .what-help__list .what-help__item .what-help__item-text .text h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
  }
}
.what-help .what-help__container .what-help__list .what-help__item .what-help__item-text .text p {
  color: #777;
  font-family: inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 10px;
}
@media (max-width: 1600px) {
  .what-help .what-help__container .what-help__list .what-help__item .what-help__item-text .text p {
    font-size: 14px;
    margin-bottom: 16px;
  }
}
@media (max-width: 1600px) {
  .what-help .what-help__container .what-help__list .what-help__item .what-help__item-text .text .button {
    height: 40px;
  }
}

.donation {
  width: 100%;
  padding: 100px 20px 64px;
  background: #F4F4F4;
}
@media (max-width: 1024px) {
  .donation {
    padding: 60px 20px;
  }
}
.donation .donation__container .section-title {
  margin-bottom: 40px;
}
.donation .donation__container .donation__form {
  min-height: 300px;
}

.news {
  width: 100%;
  padding: 96px 20px 60px;
  position: relative;
}
@media (max-width: 1024px) {
  .news {
    padding: 60px 20px;
  }
}
.news.news-page {
  background: #F4F4F4;
}
.news .news__container {
  position: relative;
}
.news .news__container .section-title {
  margin-bottom: 56px;
}
@media (max-width: 1024px) {
  .news .news__container .section-title {
    margin-bottom: 30px;
  }
}
.news .news__container .grid {
  width: 100%;
}
@media (max-width: 1024px) {
  .news .news__container .grid {
    grid-gap: 16px;
  }
}
@media (max-width: 768px) {
  .news .news__container .grid {
    max-width: 400px;
    margin: 0 auto;
    grid-template-columns: 1fr;
  }
}

.faq {
  width: 100%;
  padding: 96px 20px 60px;
  background: #F4F4F4;
  position: relative;
}
@media (max-width: 1024px) {
  .faq {
    padding: 60px 20px;
  }
}
.faq .faq__container .section-title {
  margin-bottom: 40px;
}
.faq .faq__container .faq__list {
  width: 100%;
  padding: 50px;
  border-radius: 10px;
  background: #FFF;
}
@media (max-width: 1600px) {
  .faq .faq__container .faq__list {
    padding: 50px 20px;
  }
}
.faq .faq__container .faq__list .faq__item {
  width: 100%;
  margin-bottom: 30px;
  cursor: pointer;
  align-items: center;
}
.faq .faq__container .faq__list .faq__item:last-child {
  margin-bottom: 0;
}
@media (max-width: 1024px) {
  .faq .faq__container .faq__list .faq__item {
    position: relative;
  }
}
.faq .faq__container .faq__list .faq__item .toggle-btn {
  width: 32px;
  height: 32px;
  min-width: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #4A4A4A;
  border-radius: 59%;
  transition: all 0.5s;
  transform: scale(0.7);
}
@media (max-width: 1024px) {
  .faq .faq__container .faq__list .faq__item .toggle-btn {
    width: 24px;
    height: 24px;
    min-width: 24px;
    position: absolute;
    left: 0;
    top: 2px;
  }
}
.faq .faq__container .faq__list .faq__item .toggle-btn span {
  display: block;
  width: 20px;
  height: 4px;
  background-color: #FFF;
  transition: all 0.5s;
  position: relative;
  left: 8px;
}
.faq .faq__container .faq__list .faq__item .toggle-btn span:last-child {
  left: -8px;
  transform: rotate(90deg);
}
@media (max-width: 1024px) {
  .faq .faq__container .faq__list .faq__item .toggle-btn span {
    width: 16px;
    height: 3px;
    left: 6px;
  }
  .faq .faq__container .faq__list .faq__item .toggle-btn span:last-child {
    left: -6px;
  }
}
.faq .faq__container .faq__list .faq__item .faq__item-content {
  width: 100%;
  max-width: 1100px;
}
.faq .faq__container .faq__list .faq__item .faq__item-content h3 {
  color: #4A4A4A;
  font-family: inter;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  transition: all 0.5s;
}
@media (max-width: 1600px) {
  .faq .faq__container .faq__list .faq__item .faq__item-content h3 {
    font-size: 20px;
  }
}
@media (max-width: 1024px) {
  .faq .faq__container .faq__list .faq__item .faq__item-content h3 {
    font-size: 18px;
    padding-left: 38px;
  }
}
.faq .faq__container .faq__list .faq__item .faq__item-content p {
  color: #777;
  font-family: inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-top: 20px;
  display: none;
}
.faq .faq__container .faq__list .faq__item.faq__item--active .toggle-btn {
  background-color: #F28734;
}
.faq .faq__container .faq__list .faq__item.faq__item--active .toggle-btn span:last-child {
  transform: rotate(0deg);
}
.faq .faq__container .faq__list .faq__item.faq__item--active .faq__item-content h3 {
  color: #F28734;
}

.team {
  width: 100%;
  padding: 40px 20px 100px;
  background: #F4F4F4;
  position: relative;
}
@media (max-width: 1024px) {
  .team {
    padding: 50px 20px;
  }
}
.team .team__container .section-title {
  margin-bottom: 40px;
}
.team .team__container .grid {
  grid-gap: 20px;
}
@media (max-width: 1600px) {
  .team .team__container .grid {
    grid-gap: 20px;
  }
}
@media (max-width: 1024px) {
  .team .team__container .grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .team .team__container .grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .team .team__container .grid {
    grid-template-columns: 1fr;
  }
}
.team .team__container .grid .team-item {
  width: 100%;
  border-radius: 10px;
  background: #FFF;
  box-shadow: 0px 0px 10px 5px rgba(255, 255, 255, 0.25);
  overflow: hidden;
}
.team .team__container .grid .team-item .team-item__img {
  width: 100%;
}
.team .team__container .grid .team-item .team-item__img a {
  width: 100%;
  display: block;
  cursor: pointer;
}
.team .team__container .grid .team-item .team-item__img img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}
@media (max-width: 1600px) {
  .team .team__container .grid .team-item .team-item__img a img {
    height: 300px;
  }
}
.team .team__container .grid .team-item .team-item__text {
  width: 100%;
  padding: 10px;
}
.team .team__container .grid .team-item .team-item__text h4 {
  margin-bottom: 4px;
  color: #4A4A4A;
  /* text-align: center; */
  font-family: inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.team .team__container .grid .team-item .team-item__text h4 a {
  color: #4A4A4A;
  text-align: center;
  font-family: inter;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.team .team__container .grid .team-item .team-item__text p {
  color: #777;
  font-family: inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.team .team__container .grid .team-item .team-item__text .button {
  width: 100%;
}

.about {
  width: 100%;
  padding: 50px 20px;
  background: #fff;
}
.about__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.about__inner {
  max-width: 50%;
  width: 100%;
}
.about__video {
  max-width: 320px;
  width: 100%;
}
.about .about__container h2 {
  color: #4A4A4A;
  font-family: inter;
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 20px;
  text-align: center;
}
@media (max-width: 1600px) {
  .about .about__container h2 {
    font-size: 32px;
  }
}
.about .about__container p {
  color: #4A4A4A;
  text-align: center;
  font-family: inter;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
@media (max-width: 1600px) {
  .about .about__container p {
    font-size: 16px;
  }
}

.docs {
  width: 100%;
  padding: 40px 20px 100px;
  background: #F4F4F4;
}
@media (max-width: 1600px) {
  .docs {
    padding-bottom: 60px;
  }
}
.docs .docs__container .section-title {
  margin-bottom: 40px;
}
@media (max-width: 1600px) {
  .docs .docs__container .section-title {
    margin-bottom: 20px;
  }
}
.docs .docs__container .swiper {
  width: 100%;
  margin-bottom: 40px;
}
.docs .docs__container .swiper .swiper-wrapper .swiper-slide {
  width: 100%;
  max-width: 440px;
  margin-right: 40px;
}
@media (max-width: 1600px) {
  .docs .docs__container .swiper .swiper-wrapper .swiper-slide {
    margin-right: 20px;
    max-width: 340px;
  }
}
.docs .docs__container .swiper .swiper-wrapper .swiper-slide img {
  width: 100%;
}
.docs .docs__container .swiper-pagination {
  margin-bottom: 50px;
  width: 100%;
  display: flex;
  justify-content: center;
}
.docs .docs__container .swiper-pagination .swiper-pagination-bullet {
  background: rgba(47, 82, 51, 0.1)
}
.docs .docs__container .swiper-pagination .swiper-pagination-bullet-active {
  background: linear-gradient(100.72deg, rgba(255, 210, 176, 0.35) 9.38%, rgba(248, 159, 91, 0) 42.12%), #F28734;
}
.docs .docs__container .docs-info {
  width: 100%;
  max-width: 768px;
  margin: 0 auto;
}
.docs .docs__container .docs-info p {
  color: #777;
  text-align: center;
  font-family: inter;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 16px;
}
.docs .docs__container .docs-info p:last-child {
  margin-bottom: 0;
}
@media (max-width: 1600px) {
  .docs .docs__container .docs-info p {
    font-size: 16px;
  }
}

.contact {
  width: 100%;
  padding: 40px 20px 100px;
  background: #F4F4F4;
}
@media (max-width: 1024px) {
  .contact {
    padding: 50px 20px;
  }
}
.contact .contact__container .section-title {
  margin-bottom: 40px;
}
.contact .contact__container .contact__box {
  width: 100%;
  background-color: #FFF;
  border-radius: 10px;
  overflow: hidden;
}
.contact .contact__container .contact__box .flex {
  width: 100%;
  padding: 50px;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
}
@media (max-width: 1600px) {
  .contact .contact__container .contact__box .flex {
    padding: 30px 20px;
  }
}
@media (max-width: 1024px) {
  .contact .contact__container .contact__box .flex {
    flex-direction: column;
  }
}
.contact .contact__container .contact__box .flex h4 {
  color: #4A4A4A;
  font-family: inter;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 20px;
}
.contact .contact__container .contact__box .flex .contact__info {
  width: 100%;
  max-width: 360px;
}
.contact .contact__container .contact__box .flex .contact__info .contact-link {
  margin-bottom: 14px;
  color: #4A4A4A;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.contact .contact__container .contact__box .flex .contact__info .contact-link:last-child {
  margin-bottom: 0;
}
.contact .contact__container .contact__box .flex .contact__form {
  width: 100%;
  max-width: 610px;
}
.contact .contact__container .contact__box iframe {
  width: 100%;
  height: 500px;
  border: none;
}
@media (max-width: 1600px) {
  .contact .contact__container .contact__box iframe {
    height: 400px;
  }
}
@media (max-width: 1024px) {
  .contact .contact__container .contact__box iframe {
    height: 300px;
  }
}

.help {
  width: 100%;
  padding: 96px 20px 60px;
  background: #F4F4F4;
  position: relative;
}
.help .wpcf7 {
  max-width: 480px;
  margin: 0 auto;
}
@media (max-width: 1024px) {
  .help {
    padding: 60px 20px;
  }
}
.help .help__container .section-title {
  margin-bottom: 40px;
}
@media (max-width: 1024px) {
  .help .help__container .section-title {
    margin-bottom: 20px;
  }
}
.help .help__container .help__content {
  width: 100%;
  padding: 50px;
  background-color: #fff;
  border-radius: 10px;
}
@media (max-width: 1600px) {
  .help .help__container .help__content {
    padding: 30px 20px;
  }
}
.help .help__container .help__content h4 {
  color: #4A4A4A;
  font-family: inter;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 20px;
}
@media (max-width: 1024px) {
  .help .help__container .help__content h4 {
    font-size: 20px;
  }
}
.help .help__container .help__content p, .help .help__container .help__content li {
  color: #4A4A4A;
  font-family: inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.help .help__container .help__content ul {
  margin-left: 20px;
}
.help .help__container .help__content ul li {
  list-style: number;
}
.help .help__container .help__content ul li a {
  color: #F28734;
  font-family: inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}

.about-family {
  width: 100%;
  padding: 100px 20px 50px;
  background: #F4F4F4;
}
@media (max-width: 768px) {
  .about-family {
    padding: 50px 20px;
  }
}
.about-family .about-family__container .about-family__item {
  gap: 20px;
  border-radius: 10px;
  background: #FFF;
  overflow: hidden;
  margin-bottom: 50px;
}
.about-family .about-family__container .about-family__item:first-child {
  margin-bottom: 0;
}
.about-family .about-family__container .about-family__item:last-child {
  margin-bottom: 0;
}
.about-family .about-family__container .about-family__item .about-family__item-img {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.about-family .about-family__container .about-family__item .about-family__item-img img {
  max-width: 375px;
}
@media (max-width: 768px) {
  .about-family .about-family__container .about-family__item {
    flex-direction: column;
  }
}
@media (max-width: 1024px) {
  .about-family .about-family__container .about-family__item .about-family__item-img {
    width: 100%;
    max-width: 100%;
  }
  .about-family .about-family__container .about-family__item .about-family__item-img img {
    width: 100%;
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  .about-family .about-family__container .about-family__item .about-family__item-img {
    order: 1;
  }
  .about-family .about-family__container .about-family__item .about-family__item-img img {
    height: 300px;
    object-fit: cover;
  }
}
.about-family .about-family__container .about-family__item .about-family__item-text {
  width: 100%;
  max-width: 700px;
  padding: 50px;
}
@media (max-width: 768px) {
  .about-family .about-family__container .about-family__item .about-family__item-text {
    padding: 20px;
    order: 2;
  }
}
.about-family .about-family__container .about-family__item .about-family__item-text .text-item {
  width: 100%;
  margin-bottom: 20px;
}
.about-family .about-family__container .about-family__item .about-family__item-text .text-item:last-child {
  margin-bottom: 0;
}
.about-family .about-family__container .about-family__item .about-family__item-text .text-item h3 {
  color: #4A4A4A;
  font-family: inter;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  .about-family .about-family__container .about-family__item .about-family__item-text .text-item h3 {
    font-size: 20px;
  }
}
.about-family .about-family__container .about-family__item .about-family__item-text .text-item h4 {
  color: #4A4A4A;
  font-family: inter;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 4px;
}
@media (max-width: 768px) {
  .about-family .about-family__container .about-family__item .about-family__item-text .text-item h4 {
    font-size: 18px;
  }
}
.about-family .about-family__container .about-family__item .about-family__item-text .text-item p {
  color: #4A4A4A;
  font-family: inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
@media (max-width: 768px) {
  .about-family .about-family__container .about-family__item .about-family__item-text .text-item p {
    font-size: 14px;
  }
}

.videos {
  width: 100%;
  padding: 50px 20px;
  background: #F4F4F4;
}
.videos .videos__container .section-title {
  margin-bottom: 40px;
}
@media (max-width: 1024px) {
  .videos .videos__container .section-title {
    margin-bottom: 20px;
  }
}
.videos .videos__container .videos__swiper {
  width: 100%;
}
.videos .videos__container .videos__swiper .swiper-wrapper .swiper-slide {
  width: 100%;
  max-width: 440px;
  margin-right: 40px;
}
@media (max-width: 1600px) {
  .videos .videos__container .videos__swiper .swiper-wrapper .swiper-slide {
    margin-right: 20px;
    max-width: 378px;
  }
}
@media (max-width: 480px) {
  .videos .videos__container .videos__swiper .swiper-wrapper .swiper-slide {
    max-width: 100%;
    margin-right: 0;
  }
}
.videos .videos__container .videos__swiper .swiper-wrapper .swiper-slide .videos__item {
  width: 100%;
}
.videos .videos__container .videos__swiper .swiper-wrapper .swiper-slide .videos__item iframe {
  width: 100%;
  height: 250px;
  border-radius: 10px;
  object-fit: cover;
  object-position: center;
}

.docs-swiper {
  width: 100%;
  padding: 50px 20px;
  background: #F4F4F4;
}
.docs-swiper .docs-swiper__container .section-title {
  margin-bottom: 40px;
}
@media (max-width: 1024px) {
  .docs-swiper .docs-swiper__container .section-title {
    margin-bottom: 20px;
  }
}
.docs-swiper .docs-swiper__container .swiper {
  width: 100%;
  margin-bottom: 30px;
}
.docs-swiper .docs-swiper__container .swiper .swiper-wrapper .swiper-slide {
  width: 100%;
  max-width: 440px;
  margin-right: 40px;
}
@media (max-width: 1600px) {
  .docs-swiper .docs-swiper__container .swiper .swiper-wrapper .swiper-slide {
    margin-right: 20px;
    max-width: 378px;
  }
}
.docs-swiper .docs-swiper__container .swiper .swiper-wrapper .swiper-slide img {
  width: 100%;
}
.docs-swiper .docs-swiper__container .navigation {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.docs-swiper .docs-swiper__container .swiper-pagination {
  width: 100%;
  max-width: 200px;
  display: flex;
  justify-content: center;
}
.docs-swiper .docs-swiper__container .swiper-pagination .swiper-pagination-bullet {
  background: rgba(47, 82, 51, 0.3);
}
.docs-swiper .docs-swiper__container .swiper-pagination .swiper-pagination-bullet-active {
  background: linear-gradient(100.72deg, rgba(255, 210, 176, 0.35) 9.38%, rgba(248, 159, 91, 0) 42.12%), #F28734;
}

.project {
  width: 100%;
  padding: 60px 20px;
}
.project .project__container .section-title {
  margin-bottom: 40px;
}
@media (max-width: 1600px) {
  .project .project__container .section-title {
    margin-bottom: 20px;
  }
}
.project .project__container .project__about {
  width: 100%;
  margin-bottom: 40px;
}
.project .project__container .project__about .news-date {
  color: #000;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  display: block;
  margin-bottom: 10px;
}
.project .project__container .project__about .flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
}
@media (max-width: 768px) {
  .project .project__container .project__about .flex {
    flex-direction: column;
    align-items: center;
  }
}
.project .project__container .project__about .flex .project__about-img {
  width: 100%;
  max-width: 600px;
}
@media (max-width: 1600px) {
  .project .project__container .project__about .flex .project__about-img {
    max-width: 460px;
  }
}
.project .project__container .project__about .flex .project__about-img img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 10px;
}
@media (max-width: 1600px) {
  .project .project__container .project__about .flex .project__about-img img {
    height: 300px;
  }
}
.project .project__container .project__about .flex .project__about-text {
  width: 100%;
  max-width: 800px;
}
.project .project__container .project__about .flex .project__about-text p {
  color: #777;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
}
.project .project__container .project__about .flex .project__about-text video {
	max-width: 100%;
}
.project .project__container .project__about .flex .project__about-text img {
	max-width: 100%;
}
@media (max-width: 1600px) {
  .project .project__container .project__about .flex .project__about-text p {
    font-size: 16px;
  }
}
.project .project__container .project__advantages {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}
@media (max-width: 1024px) {
  .project .project__container .project__advantages {
    margin-bottom: 30px;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .project .project__container .project__advantages {
    grid-template-columns: 1fr;
  }
}
.project .project__container .project__advantages .project__advantages-item {
  width: 100%;
  padding: 20px;
  background: linear-gradient(100.72deg, rgba(255, 210, 176, 0.35) 9.38%, rgba(248, 159, 91, 0) 42.12%), #F28734;
  border-radius: 6px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.project .project__container .project__advantages .project__advantages-item h4 {
  color: #fff;
  font-family: Inter;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  text-align: center;
  margin-bottom: 16px;
  line-height: normal;
  text-transform: capitalize;
}
@media (max-width: 1600px) {
  .project .project__container .project__advantages .project__advantages-item h4 {
    font-size: 20px;
  }
}
.project .project__container .project__advantages .project__advantages-item span {
  color: #fff;
  font-family: Inter;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  display: block;
  text-align: center;
}
@media (max-width: 1600px) {
  .project .project__container .project__advantages .project__advantages-item span {
    font-size: 16px;
  }
}
.project .project__container .project__galery {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 16px;
}
@media (max-width: 768px) {
  .project .project__container .project__galery {
    grid-template-rows: repeat(2, 200px);
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 8px;
  }
}
.project .project__container .project__galery img {
  width: 100%;
  object-fit: cover;
  height: 100%;
  border-radius: 10px;
}
.project .project__container .project__galery a {
  margin-bottom: 10px;
}
/* .project .project__container .project__galery a:nth-child(1) {
  grid-column-start: 1;
  grid-column-end: 3;
  grid-row-start: 1;
  grid-row-end: 3;
} */

#leyka-platform-signature {
  display: none !important;
}
.leyka-tpl-star-form .section .section__fields .donor__submit input:disabled {
  background: linear-gradient(100.72deg, rgba(255, 210, 176, 0.35) 9.38%, rgba(248, 159, 91, 0) 42.12%), #F28734;
  opacity: 0.7;
}
.leyka-tpl-star-form .section .section__fields .donor__submit input {
  background: linear-gradient(100.72deg, rgba(255, 210, 176, 0.35) 9.38%, rgba(248, 159, 91, 0) 42.12%), #F28734;
}
.leyka-tpl-star-form .section .section__fields .donor__oferta input:checked + label:before {
  background-color: #F28734;
  border-color: #F28734;
}
.leyka-tpl-star-form .section .section__fields .donor__oferta label svg.icon-checkbox-check {
  fill: #fff
}
.leyka-tpl-star-form .section .section__fields.donor .donor__textfield.required label span.donor__textfield-label:after,
.leyka-tpl-star-form .section .section__fields .donor__oferta label a {
  color: #F28734;
}
.leyka-tpl-star-form .section .section__fields .amount__figure.star-swiper .full-list .swiper-item.flex-amount-item.selected,
.leyka-tpl-star-form .section .section__fields.donor .donor__textfield.focus .leyka-star-field-frame,
.leyka-tpl-star-form .section .section__fields.payments-grid .star-swiper .swiper-item.selected {
  background: rgba(47, 82, 51, 0.1);
  border-color: #F28734;
}
.leyka-tpl-star-form .section .section__fields .star-swiper .full-list .swiper-item.selected {
  background: rgba(47, 82, 51, 0.1);
  border-color: #F28734;
}
.leyka-tpl-star-form .section .section__fields .star-swiper .swiper-item.selected span, .leyka-screen-form .section .section__fields .star-swiper .swiper-item.selected span {
  color: #F28734;
}

.leyka-tpl-star-form .section .section__fields.periodicity a.active, .leyka-screen-form .section .section__fields.periodicity a.active {
  background: linear-gradient(100.72deg, rgba(255, 210, 176, 0.35) 9.38%, rgba(248, 159, 91, 0) 42.12%), #F28734;
  border-color: #F28734;
}
.leyka-shortcode.campaign-card .progressbar-unfulfilled {
  background: rgba(47, 82, 51, 0.1);
}
.leyka-shortcode.campaign-card .progressbar-unfulfilled .progressbar-fulfilled {
  background: linear-gradient(100.72deg, rgba(255, 210, 176, 0.35) 9.38%, rgba(248, 159, 91, 0) 42.12%), #F28734;
}
.leyka-shortcode.campaign-card .bottom-line .target-info .funded {
  color: #F28734;
}

.donor__textfield {
	max-width: 49%;
	width: 100%;
	display: inline-block;
	vertical-align:top;
}
@media(max-width: 768px) {
	.leyka-tpl-star-form .section .section__fields.donor .donor__textfield .leyka-star-field-frame {
		padding: 10px;
	}
	.leyka-tpl-star-form .section .section__fields.donor .donor__textfield label span.donor__textfield-label {
		font-size: 14px;
	}
}

@media screen and (max-width: 639px) {
  .leyka-tpl-star-form .section .section__fields .star-swiper .swiper-item.selected .swiper-item-inner, .leyka-screen-form .section .section__fields .star-swiper .swiper-item.selected .swiper-item-inner {
    background: rgba(47, 82, 51, 0);
    border-color: #F28734;
  }
}
@media screen and (max-width: 639px) {
  .leyka-tpl-star-form .section .section__fields.payments-grid .star-swiper .swiper-item.selected .swiper-item-inner, .leyka-screen-form .section .section__fields.payments-grid .star-swiper .swiper-item.selected .swiper-item-inner {
    background: rgba(47, 82, 51, 0);
    border-color: #F28734;
  }
}


.leyka-tpl-need-help-form .section .section__fields .star-swiper .full-list .swiper-item.active, .leyka-tpl-need-help-form .section .section__fields .star-swiper .full-list .swiper-item.selected {
  border: 2px solid #F28734;
}

.leyka-tpl-need-help-form .section .section__fields.periodicity a.active, .leyka-tpl-need-help-form .section .section__fields.periodicity a.selected, .leyka-tpl-need-help-form .section .section__fields.currencies a.active, .leyka-tpl-need-help-form .section .section__fields.currencies a.selected {
  border: 2px solid #F28734;
}

.leyka-tpl-need-help-form .section .section__fields.donor .donor__textfield.focus .leyka-star-field-frame {
  border: 2px solid #F28734;
}
.wpcf7 p {
  display: flex;
  flex-direction: column;
  gap: 15px
}
.wpcf7 br {
  display: none;
}
.wpcf7 input,
.wpcf7 textarea,
.wpcf7 .wpcf7-response-output,
.wpcf7 span {
  font-family: Inter;
}
.wpcf7 form .wpcf7-response-output  {
  margin: 0;
  margin-top: 15px;
  padding: 10px;
  border-radius: 5px;
}
.wpcf7 input[type=text],
.wpcf7 input[type=tel],
.wpcf7 input[type=date],
.wpcf7 input[type=email] {
  max-width: 100%;
  width: 100%;
  height: 50px;
  padding: 10px 20px;
  border: 1px solid rgba(74,74,74,0.4);
  border-radius: 5px;
}
.wpcf7 textarea {
  max-width: 100%;
  width: 100%;
  height: 100px;
  padding: 10px 20px;
  border: 1px solid rgba(74,74,74,0.4);
  border-radius: 5px;
}
.wpcf7 input[type=submit] {
  border-radius: 100px;
  background: linear-gradient(100.72deg, rgba(255, 210, 176, 0.35) 9.38%, rgba(248, 159, 91, 0) 42.12%), #F28734;
  min-height: 50px;
  cursor: pointer;
  color: #fff;
}

.wpcf7 .wpcf7-spinner {
  display: none;
}


.donations__inner {
  margin-top: 50px;
}
.donations__inner .pagi a,
.donations__inner .pagi {
  color: #F28734;
  font-family: Inter;
}
div[id*="leyka_donors_list"] {
  display: flex;
  flex-direction: column;
  font-family: Inter;
}
div[id*="leyka_donors_list"].wide .ldl-item {
  display: flex;
  flex-direction: column;
  gap: 5px;
  max-width: 100%;
}
div[id*="leyka_donors_list"].wide .ldl-item .purpose, div[id*="leyka_donors_list"].wide .ldl-item .meta, div[id*="leyka_donors_list"].wide .ldl-item .donor-comment {
  margin: 0;
}
div[id*="leyka_donors_list"].wide .ldl-item .purpose a {
  color: #F28734;
  text-decoration: underline;
}
.donations-page {
  background: #F4F4F4;
}

.leyka-js .leyka-pf--active .leyka-pf__overlay {
  display: none !important;
}
.campaign-card {
	font-family: Inter;
}
.open-donation-popup {
  cursor: pointer;
}


.volunteering {
  width: 100%;
  padding: 60px 20px;
}
.volunteering .volunteering__container .section-title {
  margin-bottom: 60px;
}
.volunteering .volunteering__container .flex {
  gap: 20px;
}
@media (max-width: 1024px) {
  .volunteering .volunteering__container .flex {
    flex-direction: column;
  }
}
.volunteering .volunteering__container .flex .volunteering__left {
  width: 100%;
  max-width: 68%;
}
@media (max-width: 1024px) {
  .volunteering .volunteering__container .flex .volunteering__left {
    max-width: 100%;
  }
}
.volunteering .volunteering__container .flex .volunteering__left h2 {
  color: #4A4A4A;
  font-family: inter;
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .volunteering .volunteering__container .flex .volunteering__left h2 {
    font-size: 24px;
  }
}
.volunteering .volunteering__container .flex .volunteering__left p, .volunteering .volunteering__container .flex .volunteering__left li {
  color: #777;
  font-family: inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .volunteering .volunteering__container .flex .volunteering__left p, .volunteering .volunteering__container .flex .volunteering__left li {
    font-size: 14px;
  }
}
.volunteering .volunteering__container .flex .volunteering__left h3 {
  color: #4A4A4A;
  font-family: inter;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 20px;
}
.volunteering .volunteering__container .flex .volunteering__left li a,
.volunteering .volunteering__container .flex .volunteering__left p a {
  color: #F28734;
}
@media (max-width: 768px) {
  .volunteering .volunteering__container .flex .volunteering__left h3 {
    font-size: 18px;
  }
}
.volunteering .volunteering__container .flex .volunteering__left ul {
  margin-bottom: 20px;
  margin-left: 20px;
}
.volunteering .volunteering__container .flex .volunteering__left ul li {
  list-style: disc;
}
.volunteering .volunteering__container .flex .volunteering__left .grid {
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.volunteering .volunteering__container .flex .volunteering__left .grid._text {
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.volunteering .volunteering__container .flex .volunteering__left .grid._text div {
  display: flex;
  flex-direction: column;
}
.volunteering .volunteering__container .flex .volunteering__left .grid._text div img {
  width: 100%;
  height: auto;
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  .volunteering .volunteering__container .flex .volunteering__left .grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .volunteering .volunteering__container .flex .volunteering__left .grid._text {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
@media (max-width: 480px) {
  .volunteering .volunteering__container .flex .volunteering__left .grid._text {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }
}
.volunteering .volunteering__container .flex .volunteering__left .grid img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}
.volunteering .volunteering__container .flex .volunteering__right {
  width: 100%;
  max-width: 30%;
}
@media (max-width: 1024px) {
  .volunteering .volunteering__container .flex .volunteering__right {
    max-width: 100%;
  }
}
.volunteering .volunteering__container .flex .volunteering__right .volunteering__text {
  width: 100%;
  padding: 30px;
  background: linear-gradient(100.72deg, rgba(255, 210, 176, 0.35) 9.38%, rgba(248, 159, 91, 0) 42.12%), #F28734;
  margin-bottom: 30px;
}
.volunteering .volunteering__container .flex .volunteering__right .volunteering__text:last-child {
  margin-bottom: 0;
}
.volunteering .volunteering__container .flex .volunteering__right .volunteering__text h4 {
  color: #fff;
  font-family: inter;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 20px;
  text-align: center;
}
@media (max-width: 768px) {
  .volunteering .volunteering__container .flex .volunteering__right .volunteering__text h4 {
    font-size: 20px;
  }
}
.volunteering .volunteering__container .flex .volunteering__right .volunteering__text p {
  color: #fff;
  font-family: inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
@media (max-width: 768px) {
  .volunteering .volunteering__container .flex .volunteering__right .volunteering__text p {
    font-size: 14px;
  }
}

.help-children .help-children__container .swiper-wrapper {
  align-items: stretch;
}
.help-children .help-children__container .swiper-slide {
  max-width: 440px;
  margin-right: 40px;
  height: auto;
}
.help-children .help-children__container .swiper-slide .help-item {
  height: 100%;
}
@media (max-width: 1600px) {
  .help-children .help-children__container .swiper-slide {
    max-width: 376px;
    margin-right: 20px;
  }
}


.help-children .swiper-pagination {
  max-width: 480px;
  width: 100%;
  display: flex;
  justify-content: center;
  margin: 0 auto;
  margin-top: 40px;
}
.help-children .swiper-pagination .swiper-pagination-bullet {
  background: rgba(47, 82, 51, 0.1)
}
.help-children .swiper-pagination .swiper-pagination-bullet-active {
  background: linear-gradient(100.72deg, rgba(255, 210, 176, 0.35) 9.38%, rgba(248, 159, 91, 0) 42.12%), #F28734;
}

.vol-anketa {
  padding: 60px 20px;
  font-family: Inter;
}
.vol-anketa .vol-anketa__title {
  margin-bottom: 40px;
}
.wpcf7 form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.wpcf7 form a {
  color: #F28734;
}
.wpcf7 .wpcf7-checkbox,
.wpcf7 .wpcf7-radio {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.wpcf7 .wpcf7-list-item {
  margin: 0;
}
.wpcf7 .wpcf7-list-item label {
  display: flex;
  align-items: center;
  gap: 5px;
}
.wpcf7 .g-form-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.partners {
  padding-bottom: 50px;
}
.partners__cont {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  row-gap: 20px;
}

.partners__item {
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.partners__item img {
  max-width: 100%;
  max-height: 80px;
  transition: all .3s ease;
}
.partners__item:hover img {
  opacity: 0.7;
}
.volunteering__swiper {
  margin-bottom: 40px;
}
.volunteering__swiper .swiper-slide {
  max-width: 304px;
}
.volunteering__swiper .swiper-slide:not(:last-child) {
  margin-right: 20px;
}
.volunteering__swiper .swiper-slide img {
  width: 100%;
  margin-bottom: 10px;
}
.volunteering__swiper .swiper-slide p {
  font-size: 18px !important;
  text-align: center;
}






.needhelp-form {
  background-image: url("https://blagovictoria.ru/wp-content/uploads/2025/04/img_4778-1-scaled.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 60px 20px;
  font-family: Inter;
}
.needhelp-form .needhelp-form__title {
  margin-left: 0px;
  margin-right: 0px;
}
.needhelp-form .needhelp-form__title h2,
.needhelp-form .needhelp-form__title p {
  text-align: left;
}

.needhelp-form .needhelp-form__inputs {
  display: flex;
  gap: 20px;
}
.needhelp-form .needhelp-form__input input {
  background: transparent;
  border: 0;
  border-bottom: 1px solid #fff;
  color: #fff;
}
.needhelp-form .needhelp-form__input._amount p {
  position: relative;
}
.needhelp-form .needhelp-form__input._amount span._mess {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  color: #fff;
}
.needhelp-form .needhelp-form__input._amount {
  max-width: 150px;
}
.needhelp-form .needhelp-form__input._email {
  max-width: 220px;
}
.needhelp-form .needhelp-form__btn button {
  padding: 0px 20px;
}
.needhelp-form.needhelp-form .needhelp-form__accept {
  display: block;
  font-size: 14px;
  margin-top: 20px;
  color: #fff;
}
.needhelp-form.needhelp-form .needhelp-form__accept a {
  color: #fff;
  text-decoration: underline;
}




.fam {
  padding: 40px 20px;
  font-family: Inter;
}
.fam__inner {
  display: flex;
  align-items: flex-start;
}
.fam__left {
  width: 70%;
  padding-right: 40px;
  display: flex;
  flex-direction: column;
}
.fam__swiper {
  display: flex;
  flex-direction: column;
  margin-bottom: 40px;
}
.swiper-main {
  width: 100%;
  overflow: hidden;
}
.swiper-main img {
  width: 100%;
  height: 450px;
  object-fit: cover;
}
.swiper-thumbnail {
  width: 100%;
  margin-top: 10px;
}
.swiper-thumbnail .swiper-slide {
  width: 100px;
  height: 100px;
  cursor: pointer;
}
.swiper-thumbnail .swiper-slide:not(:last-child) {
  margin-right: 10px;
}
.swiper-thumbnail .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.fam__img {
  margin-bottom: 40px;
}
.fam__img img {
  max-width: 100%;
  max-height: 500px;
}

.fam__cont .fam__cont-title {
  font-size: 32px;
  font-weight: 700;
  color: #4A4A4A;
  margin-bottom: 20px;
}
.fam__cont h1,
.fam__cont h2,
.fam__cont h3,
.fam__cont h4,
.fam__cont h5,
.fam__cont h6 {
  /* font-size: 32px; */
  font-weight: 700;
  color: #4A4A4A;
  margin-bottom: 10px;
}
.fam__content li,
.fam__content p,
.fam__content span {
  font-size: 14px;
  line-height: 140%;
  color: #777;
}
.fam__content li {
  list-style: disc;
}
.fam__content .leyka-pf {
  max-width: 100% !important;
  margin-top: 40px !important;
}

.fam__right {
  width: 30%;
  position: sticky;
  top: 20px;
}
.fam__right .text-item {
  width: 100%;
  margin-bottom: 20px;
}
.fam__right .text-item:last-child {
  margin-bottom: 0;
}
.fam__right .text-item h3 {
  color: #4A4A4A;
  font-family: inter;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 10px;
}
.footer__logo {
	display: flex;
	margin-bottom: 20px;
}
.footer__logo img {
	max-width: 200px;
}
.fam__left .wp-block-video {
	max-width: 400px;
	width: 100%;
	margin-left: auto;
	margin-right: auto;
}
@media (max-width: 768px) {
  .fam__right .text-item h3 {
    font-size: 20px;
  }
}
.fam__right .text-item h4 {
  color: #4A4A4A;
  font-family: inter;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 4px;
}
@media (max-width: 768px) {
  .fam__right .text-item h4 {
    font-size: 18px;
  }
}
.fam__right .text-item p {
  color: #4A4A4A;
  font-family: inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
@media (max-width: 768px) {
  .fam__right .text-item p {
    font-size: 14px;
  }
}

.leyka-tpl-star-form .section .section__fields.payments-grid .star-swiper .swiper-item span.payment-opt__label,
.leyka-tpl-star-form .section .section__fields.payments-grid .star-swiper .swiper-item .payment-opt__button .payment-opt__icon {
  max-width: 100% !important;
}
#leyka-campaign-finished {
  margin-top: 20px;
}
#post-165 {
  text-align: center;
  padding: 50px 0px;
  font-family: Inter;
}
#post-165 h1 {
  font-size: 32px;
  margin-bottom: 20px;
}

.nf {
	padding: 100px 20px;
}
.leyka-shortcode.campaign-card .bottom-line .target-info .target {
	color: #F28734;
}

.otchot {
	margin: 50px 0px;
	padding: 0px 20px;
}

.otchot__inner {
	display: flex;
	flex-direction: column;
	gap: 25px;
}

.otchot._mes .otchot__cont {
	padding-bottom: 25px;
	border-bottom: 1px solid #ccc;
}

.otchot__cont h3 {
	margin-bottom: 20px;
	font-size: 24px;
	font-weight: 700;
	font-family: Inter;
	color: #F28734;
}
.otchot__cont-inner {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr;
	gap: 30px;
}

.otchot__cont-item {
	box-shadow: 0px 0px 6px 0px rgba(0,0,0,0.15);
	-webkit-box-shadow: 0px 0px 6px 0px rgba(0,0,0,0.15);
	-moz-box-shadow: 0px 0px 6px 0px rgba(0,0,0,0.15);
	border-radius: 10px;
	padding: 20px 20px 170px 20px;
	position: relative;
}

.otchot__cont-item p {
	font-size: 18px;
	font-weight: 700;
	font-family: Inter;
	color: #4A4A4A;
}

.otchot__cont-item ._bg {
	position: absolute;
	bottom: 0px;
	right: 0px;
	max-height: 150px;
	max-width: 60%;
}
.otchot__cont-item a {
	position: absolute;
	bottom: 20px;
	left: 20px;
	width: 24px;
	height: 24px;
}

.otchot__cont-item ._download {
	width: 100%;
	height: 100%;
}

.napravlenie {
	margin: 50px 0px;
	padding: 0px 20px;
}
.napravlenie .section-title {
	margin-bottom: 80px;
}
.napravlenie__inner {
	display: flex;
	flex-direction: column;
	gap: 25px;
}
.napravlenie__item {
	display: flex;
}
.napravlenie__item-img {
	max-width: 450px;
	width: 100%;
	padding-right: 40px;
}
.napravlenie__item-img img {
	width: 100%;
	border-radius: 10px;
}
.napravlenie__item-info {
	flex: 1 1 0;
	border-bottom: 1px solid #ccc;
	display: flex;
    flex-direction: column;
}
.napravlenie__item-title {
	font-size: 28px;
	font-weight: 700;
	font-family: Inter;
	color: #F28734;
	margin-bottom: 20px;
}
.napravlenie__item-text {
	font-size: 16px;
	font-family: Inter;
	color: #4A4A4A;
	margin-bottom: 40px;
}
.napravlenie__item-link {
	font-size: 16px;
	font-family: Inter;
	color: #F28734;
	font-weight: 500;
	text-decoration: underline;
	font-size: 18px;
}

.single-nap {
	margin: 50px 0px;
	padding: 0px 20px;
}

.single-nap__desc {
	background: #F28734;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 80px;
	display: flex;
    flex-direction: column;
    align-items: center;
}
.single-nap__desc p {
	font-size: 18px;
    color: #fff;
    font-family: 'Inter';
    line-height: 140%;
    text-align: center;
}
.single-nap__puncts-cont {
	display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 20px;
}
.single-nap__puncts-item {
    box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.15);
    -webkit-box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 0px 0px 6px 0px rgba(0,0,0,0.15);
    padding: 20px;
    border-radius: 10px;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	transition: all .3s ease-in-out;
}
.single-nap__puncts-item:hover {
	background: #F28734;
}
.single-nap__puncts-item:hover .single-nap__puncts-item-name {
	color: #fff;
}
.single-nap__puncts-item-name {
	font-size: 20px;
	font-weight: 700;
	color: #4A4A4A;
	font-family: Inter;
	text-align: center;
	line-height: 140%;
	transition: all .3s ease-in-out;
}

.single-nap__puncts-item-modal {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.5);
	z-index: 100;
	justify-content: center;
	align-items: center;
	padding: 20px;
	overflow: auto;
}
.single-nap__puncts-item-modal-inner {
	background: #fff;
    max-width: 768px;
    padding: 20px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
	text-align: center;
}
.single-nap__puncts-item-modal-inner p {
	font-size: 24px;
	font-weight: 700;
	color: #F28734;
	font-family: Inter;
	margin-bottom: 20px;
}
.single-nap__puncts-item-modal-inner span {
	font-size: 18px;
    font-family: 'Inter';
    line-height: 140%;
    color: #000;
    margin-bottom: 40px;
}
.single-nap__puncts-item-modal-inner button {
	display: flex;
    align-self: center;
    padding: 10px 20px;
    background: #F28734;
    color: #fff;
    font-family: 'Inter';
    border-radius: 100px;
	border: 1px solid #F28734;
	transition: all .3s ease-in-out;
}
.single-nap__puncts-item-modal-inner button:hover {
	background: #fff;
	color: #F28734;
}
.single-nap__puncts-item-modal._active {
	display: flex;
}
.single-nap__puncts h2 {
	font-size: 28px;
	font-weight: 700;
	font-family: Inter;
	text-align: center;
	margin-bottom: 20px;
	color: #F28734;
}
@media(max-width:992px) {
  .partners__cont {
    grid-template-columns: repeat(6, 1fr);
  }
  .fam__left {
    width: 60%;
  }
  .fam__right {
    width: 40%;
  }
}
@media(max-width:768px) {
  .partners__cont {
    grid-template-columns: repeat(4, 1fr);
    row-gap: 10px;
  }
  .needhelp-form .needhelp-form__inputs {
    flex-direction: column;
    gap: 10px;
  }
  .needhelp-form .needhelp-form__input._amount {
    max-width: 100%;
  }
  .needhelp-form .needhelp-form__input._email {
    max-width: 100%;
  }
  .fam__inner {
    flex-direction: column-reverse;
  }
  .fam__left {
    width: 100%;
  }
  .fam__right {
    width: 100%;
    position: static;
    margin-bottom: 20px;
  }
  .leyka-tpl-star-form .section .section__fields.periodicity a, .leyka-screen-form .section .section__fields.periodicity a {
    font-size: 12px;
  }
	.napravlenie__item {
		flex-direction: column;
	}
	.napravlenie__item-img {
		max-width: 100%;
		padding: 0px;
		margin-bottom: 20px;
	}
	.napravlenie__item-info {
		padding-bottom: 20px;
	}
	.single-nap__puncts-cont {
		grid-template-columns: 1fr;
	}
	.otchot__cont-inner {
		grid-template-columns: 1fr 1fr;
	}

}
@media(max-width:480px) {
	.otchot__cont-inner {
		grid-template-columns: 1fr;
	}
}