.book {
  position: relative;
}
.book__link {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}
.book__action {
  font-weight: 700;
  flex: 0 0 auto;
  margin-top: 20px;
}
.book__action .btn {
  position: relative;
  z-index: 2;
  margin-bottom: 16px;
}
.book__action .btn:not(:last-child) {
  margin-right: 16px;
}
.book__block--mobile .book__action {
  margin-top: 0;
}
.book__block--mobile .btn {
  height: 44px;
  padding: 0 20px;
  font-size: 4px;
  margin-right: 0;
  width: 100%;
}

/**************************** Buttons */
.btn {
  height: 60px;
  padding: 0 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.btn.btn-red {
  font-family: "Circe", Arial, sans-serif;
  font-weight: 800;
  font-size: 17px;
  text-transform: uppercase;
  text-align: center;
  color: #fff;
  background-color: #FB393D;
  transition: all 0.3s ease;
}
.btn.btn-red:hover {
  background-color: #e72e31;
}
@media (max-width: 767px) {
  .btn.btn-red {
    font-size: 14px;
  }
}
.btn.btn-black {
  font-family: "Circe", Arial, sans-serif;
  font-weight: 800;
  font-size: 17px;
  text-transform: uppercase;
  text-align: center;
  color: #fff;
  background-color: #000;
  transition: all 0.3s ease;
}
.btn.btn-black:hover {
  background-color: #1a1a1a;
}
@media (max-width: 767px) {
  .btn.btn-black {
    font-size: 14px;
  }
}
.btn.btn-white {
  font-family: "Circe", Arial, sans-serif;
  font-weight: 800;
  font-size: 17px;
  text-transform: uppercase;
  text-align: center;
  color: #111;
  background-color: #fff;
  transition: all 0.3s ease;
}
.btn.btn-white:hover {
  background-color: #f3f3f3 !important;
}
@media (max-width: 767px) {
  .btn.btn-white {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .btn {
    height: 50px;
    padding: 0 24px;
  }
}

/**************************** Forms */
.b-radio-block {
  display: flex;
  flex-direction: column;
}
.b-radio-block label {
  font-size: 18px;
  font-weight: 400;
  color: #848484;
  display: flex;
  align-items: center;
  margin-bottom: 18px;
}
.b-radio-block label input {
  width: 29px;
  min-width: 29px;
  height: 29px;
  min-height: 29px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: #E5E5E5;
  border: none;
  border-radius: 100%;
  margin-right: 14px;
  position: relative;
}
.b-radio-block label input:after {
  content: "";
  background: #FB393D;
  width: 19px;
  height: 19px;
  position: absolute;
  top: 5px;
  left: 5px;
  border-radius: 100%;
  opacity: 0;
  transform: scale(0);
  transition: all 0.3s ease;
}
.b-radio-block label input:checked:after {
  opacity: 1;
  transform: scale(1);
}

/**************************** Fonds */
.fonds-list {
  display: flex;
  flex-wrap: wrap;
  margin: -25px;
}
.fonds-list .fonds-list-item {
  width: calc(50% - 50px);
  margin: 25px;
}
@media (max-width: 1024px) {
  .fonds-list .fonds-list-item {
    width: calc(50% - 24px);
    margin: 12px;
  }
}
@media (max-width: 992px) {
  .fonds-list .fonds-list-item {
    margin: 0 0 25px 0;
    width: 100%;
  }
}
@media (max-width: 1024px) {
  .fonds-list {
    margin: -12px;
  }
}
@media (max-width: 992px) {
  .fonds-list {
    margin: 0;
  }
}

.fonds-list-item {
  display: flex;
  position: relative;
}
.fonds-list-item__abs-link {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
}
.fonds-list-item__img {
  width: 200px;
  min-width: 200px;
}
.fonds-list-item__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 600px) {
  .fonds-list-item__img {
    width: 140px;
    min-width: 140px;
  }
}
.fonds-list-item__info {
  width: calc(100% - 200px);
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  border-right: 1px solid rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding: 30px 14px 30px 30px;
}
@media (max-width: 600px) {
  .fonds-list-item__info {
    width: calc(100% - 140px);
    padding: 16px;
  }
}
.fonds-list-item__element {
  margin-bottom: 20px;
}
.fonds-list-item__title {
  font-weight: 900;
  font-size: 18px;
  margin-bottom: 10px;
  line-height: 1;
  font-family: Arial;
}
@media (max-width: 600px) {
  .fonds-list-item__title {
    font-size: 16px;
  }
}
.fonds-list-item__text {
  font-weight: 400;
  font-size: 18px;
  margin-bottom: 14px;
  line-height: 1.4;
  font-family: Arial;
}
@media (max-width: 600px) {
  .fonds-list-item__text {
    font-size: 14px;
  }
}
.fonds-list-item__link a {
  font-weight: 700;
  font-size: 17px;
  line-height: 1;
  color: #FB393D;
  text-decoration: underline;
  font-family: Arial;
}
.fonds-list-item__link a:hover {
  text-decoration: none;
}
@media (max-width: 600px) {
  .fonds-list-item__link a {
    font-size: 14px;
  }
}
.fonds-list-item:hover .fonds-list-item__link a {
  text-decoration: none;
}

/**************************** Support project */
.support-project {
  background: #f4f4f4;
  padding: 46px 20px;
  width: 100%;
}
.support-project__left {
  font-family: "Circe", Arial, sans-serif;
  font-weight: 800;
  font-size: 36px;
  line-height: 1.2;
  color: #111;
  width: calc(100% - 250px);
}
@media (max-width: 992px) {
  .support-project__left {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .support-project__left {
    font-size: 24px;
  }
}
.support-project__right {
  width: 250px;
  text-align: right;
}
@media (max-width: 992px) {
  .support-project__right {
    width: 100%;
    text-align: left;
    margin-top: 18px;
  }
}

.support-project-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .support-project-wrap {
    flex-wrap: wrap;
  }
}

/**************************** Titles */
.content-header__row {
  display: flex;
  flex-wrap: wrap;
}
.content-header__row p {
  color: #9B9B9B;
  max-width: 860px;
}
.content-header__row p:not(:last-child) {
  margin-bottom: 20px;
}
.content-header__row h2 {
  font-family: "Circe Bold", sans-serif;
  font-weight: 800;
  text-transform: none !important;
}
@media (max-width: 580px) {
  .content-header__row h2 {
    line-height: 1.1;
  }
}

.fonds {
  margin-top: 40px;
}
@media (max-width: 600px) {
  .fonds .content-header__row {
    flex-direction: row;
  }
}

.memories-item {
  padding: 0 20px 24px 20px;
  background: #ececec;
  height: 100%;
  position: relative;
  transition: all 0.3s ease;
}
.memories-item__link {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}
.memories-item__header {
  display: flex;
  align-items: flex-end;
}
.memories-item__header__img {
  width: 82px;
  min-width: 82px;
}
.memories-item__header__img img {
  border-bottom: 4px solid #FB393D;
  width: 82px;
  min-width: 82px;
  height: 82px;
  display: block;
  object-fit: cover;
}
.memories-item__header__person {
  margin-left: 18px;
}
.memories-item__person-type {
  width: 100%;
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  color: #9B9B9B;
}
.memories-item__person-name {
  font-weight: 800;
  font-size: 16px;
  color: #111;
  margin-top: 8px;
}
.memories-item__info {
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 13px;
  line-height: 138%;
  background: linear-gradient(180deg, #111 60.93%, rgba(17, 17, 17, 0) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-top: 24px;
  height: 92px;
}
.memories-item__meta {
  margin-top: 18px;
  display: flex;
  justify-content: flex-end;
}
.memories-item__meta__views {
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='7' viewBox='0 0 10 7' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5.00024 0.644531C2.71262 0.644531 0.788372 1.97391 0.218262 3.50153C0.788372 5.02915 2.71262 6.35852 5.00024 6.35852C7.28786 6.35852 9.21211 5.02915 9.78236 3.50153C9.21211 1.97391 7.28786 0.644531 5.00024 0.644531ZM5.00024 5.55354C3.86705 5.55354 2.94823 4.63471 2.94823 3.50153C2.94823 2.36819 3.86705 1.44951 5.00024 1.44951C6.13372 1.44951 7.0524 2.36819 7.0524 3.50153C7.0524 4.63471 6.13372 5.55354 5.00024 5.55354ZM5.00024 2.19384C4.27819 2.19384 3.69255 2.77933 3.69255 3.50153C3.69255 4.22387 4.27819 4.80937 5.00024 4.80937C5.72229 4.80937 6.30808 4.22387 6.30808 3.50153C6.30808 2.77933 5.72229 2.19384 5.00024 2.19384Z' fill='%239B9B9B'/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-position: left;
  padding-left: 18px;
  font-family: "Arial";
  font-weight: 400;
  font-size: 13px;
  color: #9B9B9B;
}
.memories-item__meta__comments {
  background-image: url("data:image/svg+xml,%3Csvg width='8' height='9' viewBox='0 0 8 9' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_2401_3481)'%3E%3Cpath d='M4 0.500977C1.78333 0.500977 0 2.07276 0 4.00727C0 5.11559 0.583333 6.10299 1.48333 6.74783L1.54564 8.05858C1.55725 8.30291 1.72554 8.3826 1.92097 8.23697L3 7.43297C3.31667 7.51357 3.65 7.53372 4 7.53372C6.21667 7.53372 8 5.96193 8 4.02742C8 2.09292 6.21667 0.500977 4 0.500977Z' fill='%239B9B9B'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_2401_3481'%3E%3Crect width='8' height='8' fill='white' transform='translate(0 0.5)'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-position: left;
  padding-left: 18px;
  font-family: "Arial";
  font-weight: 400;
  font-size: 13px;
  color: #9B9B9B;
  margin-left: 18px;
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
}
.memories-item__meta__comments:hover {
  color: #000;
}
.memories-item:hover {
  background: #e3e3e3;
}

.swiper-donated,
.swiper-memories {
  padding-bottom: 40px !important;
}
.swiper-donated .swiper-slide,
.swiper-memories .swiper-slide {
  height: auto;
}
.swiper-donated .swiper-pagination,
.swiper-memories .swiper-pagination {
  display: flex;
}
.swiper-donated .swiper-pagination .swiper-pagination-bullet,
.swiper-memories .swiper-pagination .swiper-pagination-bullet {
  height: 4px;
  background: #e1e1e1;
  width: 100%;
  border-radius: 0;
  opacity: 1;
}
.swiper-donated .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active,
.swiper-memories .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #FB393D;
}

/**************************** Donated */
.donated-people-item {
  padding: 40px 32px;
  background: #ececec;
  height: 100%;
}
.donated-people-item__date {
  font-family: "Arial";
  font-weight: 400;
  font-size: 14px;
  color: #9B9B9B;
  margin-bottom: 24px;
  line-height: 1;
}
.donated-people-item__name {
  font-weight: 800;
  font-size: 24px;
  color: #000;
  margin-bottom: 24px;
  line-height: 1;
}
.donated-people-item__price {
  font-weight: 400;
  font-size: 24px;
  color: #000;
  line-height: 1;
}

/**************************** Completed projects */
.completed-projects {
  display: flex;
  flex-wrap: wrap;
  margin: -10px;
}
@media (max-width: 460px) {
  .completed-projects {
    margin: 0;
  }
}

.completed-project-item {
  width: calc(33.3333333333% - 20px);
  margin: 10px;
  background: #e5e5e5;
  display: flex;
  flex-direction: column;
  position: relative;
}
.completed-project-item__link {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}
.completed-project-item__img {
  position: relative;
}
.completed-project-item__img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.completed-project-item__status {
  background: rgba(155, 155, 155, 0.8);
  padding: 21px 0;
  font-weight: 800;
  font-size: 14px;
  line-height: 1;
  text-transform: uppercase;
  text-align: center;
  color: #fff;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}
.completed-project-item__info {
  padding: 24px 20px;
}
.completed-project-item__title {
  font-weight: 800;
  font-size: 27px;
  line-height: 1;
  color: #000;
  margin-bottom: 12px;
}
@media (max-width: 840px) {
  .completed-project-item__title {
    font-size: 20px;
  }
}
.completed-project-item__text {
  font-family: "Arial";
  font-weight: 400;
  font-size: 18px;
  line-height: 1.4;
  color: #9B9B9B;
  padding-bottom: 70px;
}
@media (max-width: 840px) {
  .completed-project-item__text {
    padding-bottom: 30px;
    font-size: 16px;
  }
}
.completed-project-item__action {
  margin-top: auto;
  height: 162px;
}
.completed-project-item__action .btn {
  width: 100%;
  height: 100%;
  cursor: pointer;
  position: relative;
  z-index: 2;
}
.completed-project-item__action .btn[disabled] {
  background: #d3d3d3;
  pointer-events: none;
  color: #111;
}
@media (max-width: 840px) {
  .completed-project-item__action {
    height: 100px;
  }
}
@media (max-width: 840px) {
  .completed-project-item {
    width: calc(50% - 20px);
  }
}
@media (max-width: 460px) {
  .completed-project-item {
    width: 100%;
    margin: 0 0 20px 0;
  }
}

/**************************** Popup */
.books-choice.books-choice-popup {
  max-height: calc(100% - 100px);
  z-index: 99999;
  overflow: auto;
  width: 1120px;
  background-color: #e1e1e1;
  padding: 32px 24px;
}
@media (max-width: 1140px) {
  .books-choice.books-choice-popup {
    width: 100%;
  }
}
@media (max-width: 900px) {
  .books-choice.books-choice-popup {
    width: 100%;
    max-height: calc(100vh - 75px);
    transform: none;
    top: 75px;
    left: 0;
    height: 100vh;
    padding: 30px 18px;
  }
}

.books-choice {
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 6;
  transform: translate(-50%, -50%);
  width: 400px;
  padding: 15px 25px 30px;
  background-color: #e1e1e1;
  border: 1px solid #FFFFFF;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s;
}
.books-choice__close {
  cursor: pointer;
  position: absolute;
  right: 30px;
  top: 30px;
}
@media (max-width: 900px) {
  .books-choice__close {
    right: 10px;
    top: 10px;
  }
}
.books-choice.active {
  opacity: 1;
  visibility: visible;
}

.books-choice-list {
  border-bottom: 1px solid #C0C0C0;
  padding-bottom: 14px;
  margin-bottom: 22px;
}

.books-choice-item {
  display: flex;
  margin-bottom: 16px;
}
.books-choice-item__img img {
  width: 170px;
  min-width: 170px;
  border: 2px solid #fff;
  box-shadow: 0 0 14px 0 rgba(0, 0, 0, 0.3);
}
@media (max-width: 540px) {
  .books-choice-item__img img {
    width: 80px;
    min-width: 80px;
  }
}
.books-choice-item__info {
  width: calc(100% - 170px);
  padding-left: 14px;
  padding-top: 20px;
}
@media (max-width: 600px) {
  .books-choice-item__info {
    width: 100%;
    padding-left: 0;
  }
}
.books-choice-item__title {
  font-family: "Circe", Arial, sans-serif;
  font-weight: 800;
  font-size: 24px;
  line-height: 1.1;
  margin-bottom: 18px;
  padding-right: 50px;
}
@media (max-width: 600px) {
  .books-choice-item__title {
    padding-right: 0;
    font-size: 20px;
  }
}
.books-choice-item__text {
  font-family: "Arial";
  font-weight: 400;
  font-size: 16px;
  line-height: 1.2;
  color: #9B9B9B;
  margin-bottom: 16px;
}
@media (max-width: 600px) {
  .books-choice-item {
    flex-direction: column;
  }
}

.books-choice-annotate__alert {
  font-family: "Circe", Arial, sans-serif;
  font-weight: 800;
  font-size: 18px;
  text-transform: uppercase;
  color: #ff3334;
  margin-bottom: 2px;
}
.books-choice-annotate__text {
  font-family: "Arial";
  font-weight: 400;
  font-size: 18px;
  line-height: 1.4;
  color: #111;
}
.books-choice-annotate__ship {
  margin-top: 18px;
  font-family: "Arial";
  font-style: italic;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.2;
  color: #111;
  padding-left: 8px;
  border-left: 2px solid #FB393D;
}

/**************************** Help fond */
.help-fond-wrap {
  display: flex;
  background: #e1e1e1;
}
.help-fond-wrap__slide {
  width: 349px;
  border-right: 1px solid #fff;
  padding: 32px 48px 32px 32px;
}
@media (max-width: 1100px) {
  .help-fond-wrap__slide {
    width: 300px;
  }
}
@media (max-width: 992px) {
  .help-fond-wrap__slide {
    width: 100%;
    padding: 20px;
  }
}
.help-fond-wrap__form {
  width: calc(100% - 349px);
}
@media (max-width: 1100px) {
  .help-fond-wrap__form {
    width: calc(100% - 300px);
  }
}
@media (max-width: 992px) {
  .help-fond-wrap__form {
    width: 100%;
  }
}
@media (max-width: 992px) {
  .help-fond-wrap {
    flex-wrap: wrap;
  }
}

.help-fond-wrap-swiper {
  height: 100%;
}
.help-fond-wrap-swiper .swiper-button-prev {
  top: auto;
  bottom: 0;
  left: auto;
  right: 50px;
  margin: 0;
  transform: none;
  width: 40px;
  height: 40px;
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M28 38L12 19.5L28 0.999998' stroke='%23111111' stroke-width='2' stroke-miterlimit='10'/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-position: center;
}
.help-fond-wrap-swiper .swiper-button-prev:after {
  display: none;
}
.help-fond-wrap-swiper .swiper-button-next {
  top: auto;
  bottom: 0;
  right: 0;
  margin: 0;
  transform: none;
  width: 40px;
  height: 40px;
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 38L28 19.5L12 1' stroke='%23111111' stroke-width='2' stroke-miterlimit='10'/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-position: center;
}
.help-fond-wrap-swiper .swiper-button-next:after {
  display: none;
}

.help-fond-slide {
  height: 100%;
  display: flex;
  flex-direction: column;
}
.help-fond-slide__price {
  font-family: Circe, Arial, sans-serif;
  font-weight: 700;
  font-size: 48px;
  line-height: 1;
}
@media (max-width: 767px) {
  .help-fond-slide__price {
    font-size: 32px;
  }
}
.help-fond-slide__info {
  font-family: "Arial";
  font-weight: 400;
  font-size: 18px;
  margin-top: 16px;
}
.help-fond-slide__icon {
  margin-top: auto;
  background-image: url("data:image/svg+xml,%3Csvg width='120' height='120' viewBox='0 0 120 120' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0L120 120H0V0Z' fill='%23D6D6D6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  width: 120px;
  height: 120px;
  display: flex;
  align-items: flex-end;
}
.help-fond-slide__icon svg {
  margin-left: 22px;
  margin-bottom: 22px;
}
@media (max-width: 992px) {
  .help-fond-slide__icon {
    margin-top: 24px;
  }
}

/**************************** New payment */
.payment__button {
  background: #fff;
  color: #111;
  font-weight: 800;
  font-size: 17px;
  text-transform: uppercase;
}

.payment__rules p {
  margin-top: 30px;
  font-style: italic;
  font-weight: 400;
  font-size: 14px;
}
@media (max-width: 480px) {
  .payment__rules {
    margin-bottom: 24px;
  }
}

.payment__input input {
  font-weight: 800;
  font-size: 17px;
  text-transform: uppercase;
}
.payment__input input::-webkit-input-placeholder {
  color: #9ca3af;
}
.payment__input input::-moz-placeholder {
  color: #9ca3af;
}
.payment__input input:-ms-input-placeholder {
  color: #9ca3af;
}
.payment__input input:-moz-placeholder {
  color: #9ca3af;
}

.payment__radio input:checked ~ .button {
  background: #111 !important;
  color: #fff !important;
}

.checkbox i {
  border: 1px solid #9ca3af;
}

/**************************** News sidebar */
.help-sidebar__title {
  font-family: "Circe", Arial, sans-serif;
  font-weight: 800;
  font-size: 27px;
  margin-bottom: 20px;
}
@media (max-width: 480px) {
  .help-sidebar__title {
    font-size: 20px;
  }
}

.help-sidebar-list {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.help-sidebar-book-item {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
.help-sidebar-book-item__img {
  width: 142px;
  min-width: 142px;
  font-size: 0;
}
@media (max-width: 480px) {
  .help-sidebar-book-item__img {
    width: 80px;
    min-width: 80px;
  }
}
.help-sidebar-book-item__info {
  width: calc(100% - 142px);
  padding-left: 20px;
  display: flex;
  flex-direction: column;
}
@media (max-width: 480px) {
  .help-sidebar-book-item__info {
    width: calc(100% - 80px);
  }
}
.help-sidebar-book-item__title {
  font-family: "Circe", Arial, sans-serif;
  font-weight: 800;
  font-size: 16px;
  line-height: 1.2;
  margin-bottom: 8px;
}
.help-sidebar-book-item__description {
  font-family: "Arial";
  font-weight: 400;
  font-size: 14px;
  line-height: 1.4;
  background: linear-gradient(180deg, #000 60.28%, rgba(102, 102, 102, 0) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  height: 100px;
}
.help-sidebar-book-item__price {
  margin-top: auto;
  padding-top: 20px;
  font-family: "Circe", Arial, sans-serif;
  font-weight: 800;
  font-size: 24px;
  line-height: 1;
}
.help-sidebar-book-item__action {
  margin-top: 20px;
  width: 100%;
}
.help-sidebar-book-item__action .btn {
  width: 100%;
  margin-bottom: 12px;
  padding-left: 10px;
  padding-right: 10px;
}

.help-sidebar-film-item {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
.help-sidebar-film-item__info {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.help-sidebar-film-item__img {
  margin: 10px 0;
}
.help-sidebar-film-item__img img {
  width: 100%;
  height: auto;
}
.help-sidebar-film-item__title {
  font-family: "Circe", Arial, sans-serif;
  font-weight: 800;
  font-size: 16px;
  line-height: 1.2;
  margin-bottom: 8px;
}
.help-sidebar-film-item__description {
  font-family: "Arial";
  font-weight: 400;
  font-size: 14px;
  line-height: 1.4;
  background: linear-gradient(180deg, #000 60.28%, rgba(102, 102, 102, 0) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  height: 100px;
}
.help-sidebar-film-item__price {
  margin-top: auto;
  padding-top: 20px;
  font-family: "Circe", Arial, sans-serif;
  font-weight: 800;
  font-size: 24px;
  line-height: 1;
}
.help-sidebar-film-item__action {
  margin-top: 20px;
  width: 100%;
}
.help-sidebar-film-item__action .btn {
  width: 100%;
  margin-bottom: 12px;
  padding-left: 10px;
  padding-right: 10px;
}

/**************************** Payment success/error pages */
.payment-error-page {
  padding: 40px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-top: -40px;
  margin-bottom: -40px;
  background-image: url("../images/payment/payment-error-bg.png");
  background-repeat: no-repeat;
  background-position: right;
  background-size: contain;
  height: 715px;
  margin-right: -40px;
  margin-left: -40px;
  width: calc(100% + 80px);
}
.payment-error-page__title {
  font-family: "Circe", Arial, sans-serif;
  font-weight: 800;
  font-size: 48px;
  line-height: 100%;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .payment-error-page__title {
    margin-bottom: 20px;
  }
}
@media (max-width: 640px) {
  .payment-error-page__title {
    font-size: 32px;
  }
}
.payment-error-page__text {
  font-family: "Arial";
  font-weight: 400;
  font-size: 18px;
  color: #FB393D;
  margin-bottom: 46px;
}
@media (max-width: 767px) {
  .payment-error-page__text {
    margin-bottom: 20px;
  }
}
@media (max-width: 640px) {
  .payment-error-page__text {
    font-size: 14px;
  }
}
@media (max-width: 1200px) {
  .payment-error-page {
    padding-left: 20px;
  }
}
@media (max-width: 1024px) {
  .payment-error-page {
    margin-left: -20px;
    margin-right: -20px;
    width: calc(100% + 40px);
  }
}
@media (max-width: 767px) {
  .payment-error-page {
    height: 490px;
  }
}
@media (max-width: 640px) {
  .payment-error-page {
    background-position: 180% 0;
  }
}
@media (max-width: 540px) {
  .payment-error-page {
    background: none;
    height: auto;
    width: auto;
    margin: 0;
    padding: 40px 0;
  }
}

.payment-success-page {
  padding: 40px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-top: -40px;
  margin-bottom: -40px;
  background-image: url("../images/payment/payment-error-bg.png");
  background-repeat: no-repeat;
  background-position: right;
  background-size: contain;
  height: 715px;
  margin-right: -40px;
  margin-left: -40px;
  width: calc(100% + 80px);
}
.payment-success-page__title {
  font-family: "Circe", Arial, sans-serif;
  font-weight: 800;
  font-size: 48px;
  line-height: 100%;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .payment-success-page__title {
    margin-bottom: 20px;
  }
}
@media (max-width: 640px) {
  .payment-success-page__title {
    font-size: 32px;
  }
}
.payment-success-page__text {
  font-family: "Arial";
  font-weight: 400;
  font-size: 18px;
  color: #9B9B9B;
  margin-bottom: 20px;
  max-width: 440px;
}
.payment-success-page__text p:not(:last-child) {
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .payment-success-page__text p:not(:last-child) {
    margin-bottom: 20px;
  }
}
@media (max-width: 767px) {
  .payment-success-page__text {
    margin-bottom: 20px;
  }
}
@media (max-width: 640px) {
  .payment-success-page__text {
    font-size: 14px;
  }
}
.payment-success-page__btn {
  display: flex;
}
.payment-success-page__btn a.social-link {
  width: 60px;
  height: 60px;
  background: #fb3a3c;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.payment-success-page__btn a.social-link img {
  width: 34px;
  height: auto;
}
.payment-success-page__btn a {
  margin-right: 8px;
}
@media (max-width: 767px) {
  .payment-success-page__btn img {
    width: 50px;
    height: 50px;
  }
}
@media (max-width: 1200px) {
  .payment-success-page {
    padding-left: 20px;
  }
}
@media (max-width: 1024px) {
  .payment-success-page {
    margin-left: -20px;
    margin-right: -20px;
    width: calc(100% + 40px);
  }
}
@media (max-width: 767px) {
  .payment-success-page {
    height: 490px;
  }
}
@media (max-width: 992px) {
  .payment-success-page {
    background-position: calc(100% + 180px) 0;
    height: auto;
    padding: 40px 20px;
  }
}
@media (max-width: 800px) {
  .payment-success-page {
    background-position: calc(100% + 230px) 0;
  }
}
@media (max-width: 540px) {
  .payment-success-page {
    background: none;
    height: auto;
    width: auto;
    margin: 0;
  }
}
@media screen and (max-width: 480px) {
  .payment-success-page {
    padding: 40px 0;
  }
}

/**************************** Main fond block */
.main-block-fond {
  display: flex;
}
@media (max-width: 700px) {
  .main-block-fond {
    flex-wrap: wrap;
  }
}
.main-block-fond__slider {
  width: calc(100% - 492px);
}
.main-block-fond__slider .swiper {
  height: 100%;
}
@media (max-width: 992px) {
  .main-block-fond__slider {
    width: 50%;
  }
}
@media (max-width: 700px) {
  .main-block-fond__slider {
    width: 100%;
  }
}
.main-block-fond__info {
  width: 492px;
  padding-top: 32px;
  display: flex;
  flex-direction: column;
}
@media (max-width: 992px) {
  .main-block-fond__info {
    width: 50%;
  }
}
@media (max-width: 700px) {
  .main-block-fond__info {
    width: 100%;
  }
}
.main-block-fond__info h1 {
  padding-left: 42px;
  padding-right: 42px;
  font-family: "Circe", Arial, sans-serif;
  font-weight: 800;
  font-size: 49px;
  line-height: 1;
  text-transform: uppercase;
  color: #FB393D;
  margin: 0 0 8px 0;
}
.main-block-fond__info h1 span {
  color: #000;
}
@media (max-width: 992px) {
  .main-block-fond__info h1 {
    font-size: 30px;
    padding-left: 20px;
    padding-right: 20px;
  }
}
.main-block-fond__info small {
  padding-left: 42px;
  padding-right: 42px;
  font-family: "Arial";
  font-weight: 400;
  font-size: 14px;
  line-height: 1.1;
  text-transform: uppercase;
  color: #9B9B9B;
  display: block;
}
@media (max-width: 992px) {
  .main-block-fond__info small {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.main-block-fond__title {
  font-family: "Arial";
  font-weight: 800;
  font-size: 27px;
  line-height: 100%;
  color: #FB393D;
  padding-left: 42px;
  padding-right: 42px;
  padding-top: 40px;
  padding-bottom: 28px;
}
@media (max-width: 992px) {
  .main-block-fond__title {
    padding: 20px;
    font-size: 18px;
  }
}
.main-block-fond__text {
  font-family: "Arial";
  font-weight: 400;
  font-size: 18px;
  line-height: 1.3;
  padding-left: 42px;
  padding-right: 42px;
  padding-bottom: 32px;
}
@media (max-width: 992px) {
  .main-block-fond__text {
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 20px;
    font-size: 16px;
  }
}
.main-block-fond__footer {
  background: #000;
  color: #fff;
  padding: 38px;
  font-family: "Arial";
  font-weight: 700;
  font-size: 18px;
  line-height: 1.3;
  margin-top: auto;
}
@media (max-width: 992px) {
  .main-block-fond__footer {
    padding: 20px;
    font-size: 16px;
  }
}

.veterans-slider-item {
  position: relative;
}
.veterans-slider-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.veterans-slider-item:before {
  content: "";
  height: 6px;
  background: rgba(255, 255, 255, 0.32);
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
}
.veterans-slider-item:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  height: 6px;
  width: 0;
  transition: all 8s linear;
  background: #FB393D;
}
.veterans-slider-item.swiper-slide-active:after {
  width: 100%;
}
.veterans-slider-item__quote {
  background: #FB393D;
  width: 275px;
  min-height: 230px;
  position: absolute;
  bottom: 32px;
  left: 32px;
  padding: 30px 22px;
}
.veterans-slider-item__quote:before {
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg width='55' height='56' viewBox='0 0 55 56' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2.07775 0H27.4624V18.248C27.4624 25.5954 26.83 31.377 25.5653 35.5927C24.3006 39.8084 21.8916 43.6327 18.3384 47.0655C14.8453 50.438 10.3887 53.0879 4.96852 55.0151L0 44.4457C5.11908 42.7594 8.76267 40.4106 10.9307 37.3994C13.0988 34.3882 14.2431 30.3833 14.3635 25.3846H2.07775V0Z' fill='white'/%3E%3Cpath d='M29.6158 0H55.0005V18.248C55.0005 25.5954 54.3681 31.377 53.1034 35.5927C51.8387 39.8084 49.4297 43.6327 45.8765 47.0655C42.3834 50.438 37.9268 53.0879 32.5066 55.0151L27.5381 44.4457C32.6572 42.7594 36.3008 40.4106 38.4688 37.3994C40.6369 34.3882 41.7812 30.3833 41.9016 25.3846H29.6158V0Z' fill='white'/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  width: 55px;
  height: 56px;
  position: absolute;
  top: -40px;
  left: 10px;
}
.veterans-slider-item__quote p {
  color: #fff;
  line-height: 1.5;
}
.veterans-slider-item__quote p i {
  font-family: "Arial";
  font-style: italic;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.4;
  color: #fff;
  display: block;
}
@media (max-width: 700px) {
  .veterans-slider-item__quote p i {
    font-size: 12px;
    line-height: 1.2;
  }
}
.veterans-slider-item__quote p strong {
  font-family: "Arial";
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
  color: #fff;
  display: block;
  margin-top: 24px;
}
@media (max-width: 700px) {
  .veterans-slider-item__quote p strong {
    margin-top: 10px;
    font-size: 12px;
  }
}
@media (max-width: 700px) {
  .veterans-slider-item__quote {
    padding: 30px 16px;
    min-height: auto;
    width: 80%;
  }
}

.main-block-fond-support {
  background: #f4f4f4;
  padding: 38px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.main-block-fond-support__text {
  width: calc(100% - 400px);
}
@media (max-width: 992px) {
  .main-block-fond-support__text {
    width: calc(100% - 300px);
  }
}
@media (max-width: 767px) {
  .main-block-fond-support__text {
    width: 100%;
  }
}
.main-block-fond-support__btn {
  width: 400px;
  text-align: right;
}
@media (max-width: 992px) {
  .main-block-fond-support__btn {
    width: 300px;
  }
}
@media (max-width: 767px) {
  .main-block-fond-support__btn {
    width: 100%;
    text-align: left;
    margin-top: 20px;
  }
}
@media (max-width: 992px) {
  .main-block-fond-support {
    padding: 20px;
  }
}

/**************************** Partners */
@media (min-width: 1024px) {
  .partners-block .swiper-wrapper {
    display: flex;
    flex-wrap: wrap;
    margin: 20px -20px -20px -20px;
  }
}
@media (min-width: 1024px) {
  .partners-block .partners-item {
    width: calc(20% - 40px);
    margin: 20px;
  }
}
.partners-block .swiper-pagination {
  display: flex;
}
.partners-block .swiper-pagination .swiper-pagination-bullet {
  height: 4px;
  background: #e1e1e1;
  width: 100%;
  border-radius: 0;
  opacity: 1;
}
.partners-block .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #FB393D;
}

@media (min-width: 1024px) {
  .partners-item.swiper-slide {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: auto;
  }
}
@media (max-width: 1023px) {
  .partners-item.swiper-slide {
    height: 160px;
  }
}
.partners-item__img {
  width: 90%;
  height: 90%;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.partners-item__img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@media (max-width: 1023px) {
  .partners-item__img img {
    width: 50%;
    max-height: 50%;
    margin: auto;
  }
}
@media (max-width: 1023px) {
  .partners-item__img {
    width: 100%;
    height: 100%;
    padding: 40px;
  }
}
@media (max-width: 600px) {
  .partners-item__img {
    padding: 30px 0;
  }
}
.partners-item__link {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
}

/**************************** Description */
.b-help__description__full a {
  color: #FB393D;
  border-bottom: 1px dotted;
  transition: all 0.3s ease;
}
.b-help__description__full a:hover {
  color: #000;
  border-bottom: 1px dotted;
}
.b-help__description__full h3 {
  font-size: 24px;
  margin-bottom: 16px;
}
.b-help__description__full h3:not(:first-child) {
  margin-top: 40px;
}
@media (max-width: 992px) {
  .b-help__description__full h3 {
    font-size: 18px;
  }
}
.b-help__description__full p {
  font-size: 18px;
  color: #111111;
}
@media (max-width: 992px) {
  .b-help__description__full h3 {
    font-size: 18px;
  }
}

.b-help__rewards {
  margin-top: 40px;
}

.static-stat {
  display: flex;
  flex-wrap: wrap;
}
.static-stat li {
  width: 50%;
  font-size: 18px;
  padding-right: 40px;
  margin-bottom: 36px;
}
.static-stat li strong {
  font-size: 48px;
  font-weight: 800;
  color: #FB393D;
  display: block;
  line-height: 1;
  font-family: "Circe", Arial, sans-serif;
}
@media (max-width: 992px) {
  .static-stat li strong {
    font-size: 24px;
  }
}
@media (max-width: 992px) {
  .static-stat li {
    font-size: 14px;
    padding-right: 10px;
  }
}

.project-gallery {
  margin: 40px 0;
  background: #EDEDED;
  border: 1px solid rgba(0, 0, 0, 0.2);
  position: relative;
}
.project-gallery .swiper-slide {
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M18.3333 31.6667C25.6971 31.6667 31.6667 25.6971 31.6667 18.3333C31.6667 10.9695 25.6971 5 18.3333 5C10.9695 5 5 10.9695 5 18.3333C5 25.6971 10.9695 31.6667 18.3333 31.6667Z' stroke='%23FB393D' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M35 35L27.75 27.75' stroke='%23FB393D' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M18 11L18 25M25 18L11 18' stroke='%23FB393D' stroke-width='2' stroke-miterlimit='10'/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-position: calc(100% - 20px) calc(100% - 20px);
}
.project-gallery .swiper-slide img {
  margin: 0 auto;
  height: 428px;
  max-width: 80%;
  object-fit: contain;
}
@media (max-width: 767px) {
  .project-gallery .swiper-slide img {
    max-width: 100%;
    height: 360px;
  }
}
@media (max-width: 1280px) {
  .project-gallery .swiper-slide {
    padding: 0 40px;
  }
}
@media (max-width: 767px) {
  .project-gallery .swiper-slide {
    padding: 32px 40px;
    background-position: calc(100% - 5px) calc(100% - 5px);
  }
}
.project-gallery .swiper-button-next {
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 38L28 19.5L12 1' stroke='%23111111' stroke-width='2' stroke-miterlimit='10'/%3E%3C/svg%3E%0A");
  width: 40px;
  height: 40px;
  left: auto;
  right: -40px;
}
.project-gallery .swiper-button-next:after {
  display: none;
}
@media (max-width: 1280px) {
  .project-gallery .swiper-button-next {
    right: 0;
  }
}
.project-gallery .swiper-button-prev {
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M28 38L12 19.5L28 0.999998' stroke='%23111111' stroke-width='2' stroke-miterlimit='10'/%3E%3C/svg%3E%0A");
  width: 40px;
  height: 40px;
  left: -40px;
}
.project-gallery .swiper-button-prev:after {
  display: none;
}
@media (max-width: 1280px) {
  .project-gallery .swiper-button-prev {
    left: 0;
  }
}

.money-info {
  margin-top: 40px;
}
.money-info__title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .money-info__title {
    font-size: 18px;
    margin-bottom: 18px;
  }
}

.money-info-list {
  display: flex;
  flex-wrap: wrap;
}

.money-info-item {
  width: 50%;
  padding-right: 80px;
  margin-bottom: 40px;
  display: flex;
  align-items: center;
}
.money-info-item__icon {
  margin-right: 16px;
  width: 120px;
  min-width: 120px;
  height: 120px;
}
.money-info-item__icon svg,
.money-info-item__icon img {
  width: 100%;
  height: auto;
}
@media (max-width: 767px) {
  .money-info-item__icon {
    width: 60px;
    min-width: 60px;
    height: 60px;
  }
}
.money-info-item__info {
  font-size: 18px;
}
.money-info-item__info p:not(:last-child) {
  margin-bottom: 6px;
}
@media (max-width: 767px) {
  .money-info-item__info {
    font-size: 14px;
  }
}
@media (max-width: 992px) {
  .money-info-item {
    padding-right: 30px;
  }
}
@media (max-width: 767px) {
  .money-info-item {
    width: 100%;
    padding-right: 0;
    margin-bottom: 30px;
  }
}

/**************************** Rewards */
.b-help__rewards .b-help-card--accented {
  width: 100%;
}
.b-help__rewards .b-help-card--accented .b-help-card__main {
  max-width: 100%;
  display: flex;
  align-items: center;
  flex-direction: row;
}
@media (max-width: 1023px) {
  .b-help__rewards .b-help-card--accented .b-help-card__main {
    font-size: 16px;
    padding: 16px;
    flex-direction: column;
  }
}
.b-help__rewards .b-help-card--accented .b-help-card__title {
  width: calc(100% - 390px);
  min-width: calc(100% - 390px);
  font-family: "Circe", Arial, sans-serif;
  font-size: 24px;
  color: #fff;
  padding-right: 40px;
  margin-bottom: 0;
}
@media (max-width: 1023px) {
  .b-help__rewards .b-help-card--accented .b-help-card__title {
    font-size: 16px;
    width: 100%;
    min-width: 100%;
    margin-bottom: 14px;
    line-height: 1;
  }
}
.b-help__rewards .b-help-card--accented .books-list {
  width: calc(100% - 390px);
  min-width: calc(100% - 390px);
}
@media (max-width: 1023px) {
  .b-help__rewards .b-help-card--accented .books-list {
    width: 100%;
    min-width: 100%;
  }
}
.b-help__rewards .b-help-card--accented .b-help-card__info {
  width: 390px;
  display: flex;
  flex-direction: row;
  gap: 0;
}
.b-help__rewards .b-help-card--accented .b-help-card__info .b-help-card__wrap {
  width: 180px;
  padding-right: 20px;
  justify-content: space-between;
}
.b-help__rewards .b-help-card--accented .b-help-card__info .b-help-card__wrap .b-input-block {
  font-size: 24px;
}
.b-help__rewards .b-help-card--accented .b-help-card__info .b-help-card__wrap .b-input-block__input {
  margin-bottom: 0;
}
.b-help__rewards .b-help-card--accented .b-help-card__info .b-help-card__wrap .b-input-block__suffix {
  top: 0;
  transform: none;
}
@media (max-width: 1023px) {
  .b-help__rewards .b-help-card--accented .b-help-card__info .b-help-card__wrap {
    width: 100%;
    padding-right: 0;
    padding-bottom: 30px;
  }
  .b-help__rewards .b-help-card--accented .b-help-card__info .b-help-card__wrap .b-help-card__sign {
    font-size: 11px;
  }
}
.b-help__rewards .b-help-card--accented .b-help-card__info .btn {
  width: calc(100% - 180px);
}
@media (max-width: 1023px) {
  .b-help__rewards .b-help-card--accented .b-help-card__info .btn {
    width: 100%;
  }
}
@media (max-width: 1023px) {
  .b-help__rewards .b-help-card--accented .b-help-card__info {
    width: 100%;
    padding-right: 0;
    flex-direction: column;
    align-items: flex-start;
  }
}
.b-help__rewards .b-help__row:not(:last-child) {
  margin-bottom: 20px;
}
.b-help__rewards .b-help__help-card.b-help-card:not(.b-help-card--accented) {
  background-color: #e5e5e5;
  flex-direction: column;
  position: relative;
}
.b-help__rewards .b-help__help-card.b-help-card:not(.b-help-card--accented) .b-help-card__title {
  width: calc(100% - 390px);
  min-width: calc(100% - 390px);
  font-family: "Circe", Arial, sans-serif;
  font-size: 24px;
  padding-right: 40px;
}
@media (max-width: 1023px) {
  .b-help__rewards .b-help__help-card.b-help-card:not(.b-help-card--accented) .b-help-card__title {
    font-size: 16px;
    width: 100%;
    min-width: 100%;
    margin-bottom: 14px;
    line-height: 1;
  }
}
.b-help__rewards .b-help__help-card.b-help-card:not(.b-help-card--accented) .books-list {
  width: calc(100% - 390px);
  min-width: calc(100% - 390px);
}
@media (max-width: 1023px) {
  .b-help__rewards .b-help__help-card.b-help-card:not(.b-help-card--accented) .books-list {
    width: 100%;
    min-width: 100%;
  }
}
.b-help__rewards .b-help__help-card.b-help-card:not(.b-help-card--accented) .b-help-card__main {
  width: 100%;
  max-width: 100%;
}
.b-help__rewards .b-help__help-card.b-help-card:not(.b-help-card--accented) .b-help-card__info {
  position: absolute;
  top: 30px;
  right: 20px;
  width: 390px;
  display: flex;
  flex-direction: row;
  gap: 0;
}
.b-help__rewards .b-help__help-card.b-help-card:not(.b-help-card--accented) .b-help-card__info .b-help-card__wrap {
  width: 180px;
  min-width: 180px;
  margin-right: 0;
  padding-right: 20px;
  justify-content: space-between;
}
.b-help__rewards .b-help__help-card.b-help-card:not(.b-help-card--accented) .b-help-card__info .b-help-card__wrap .b-help-card__sign {
  color: #000;
}
@media (max-width: 1023px) {
  .b-help__rewards .b-help__help-card.b-help-card:not(.b-help-card--accented) .b-help-card__info .b-help-card__wrap .b-help-card__sign {
    font-size: 11px;
  }
}
.b-help__rewards .b-help__help-card.b-help-card:not(.b-help-card--accented) .b-help-card__info .b-help-card__wrap .b-help-card__num {
  font-size: 24px;
  margin-bottom: 0;
  border-bottom: 1px solid #000;
}
.b-help__rewards .b-help__help-card.b-help-card:not(.b-help-card--accented) .b-help-card__info .b-help-card__wrap .b-input-block__suffix {
  top: 0;
  transform: none;
}
@media (max-width: 1023px) {
  .b-help__rewards .b-help__help-card.b-help-card:not(.b-help-card--accented) .b-help-card__info .b-help-card__wrap {
    width: 100%;
    padding-right: 0;
    padding-bottom: 30px;
  }
}
.b-help__rewards .b-help__help-card.b-help-card:not(.b-help-card--accented) .b-help-card__info .btn {
  width: calc(100% - 180px);
}
@media (max-width: 1023px) {
  .b-help__rewards .b-help__help-card.b-help-card:not(.b-help-card--accented) .b-help-card__info .btn {
    width: 100%;
  }
}
@media (max-width: 1023px) {
  .b-help__rewards .b-help__help-card.b-help-card:not(.b-help-card--accented) .b-help-card__info {
    width: 100%;
    padding-right: 0;
    flex-direction: column;
    align-items: flex-start;
    position: static;
    margin-top: 30px;
  }
}
.b-help__rewards .b-help__help-card.b-help-card:not(.b-help-card--accented) .b-help-card__content {
  background-color: #e5e5e5;
  margin-left: 0;
  padding: 0 20px 20px 20px;
  flex-direction: column;
  align-items: flex-start;
}

.books-list {
  list-style: disc;
  padding-left: 20px;
  font-size: 18px;
}
@media (max-width: 1023px) {
  .books-list {
    font-size: 14px;
  }
}

.more-rewards-info-btn {
  color: #9B9B9B;
  font-size: 18px;
  font-weight: 400;
  display: inline-flex;
  align-items: center;
}
.more-rewards-info-btn:before {
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 9L12 15L18 9' stroke='%239B9B9B' stroke-width='2' stroke-linecap='square'/%3E%3C/svg%3E%0A");
  content: "";
  width: 24px;
  height: 24px;
  margin-right: 4px;
  transition: all 0.3s ease;
}
.more-rewards-info-btn.is-opened:before {
  transform: rotate(180deg);
}
.more-rewards-info-btn__hide {
  display: none;
}
.more-rewards-info-btn.is-opened .more-rewards-info-btn__hide {
  display: block;
}
.more-rewards-info-btn.is-opened .more-rewards-info-btn__more {
  display: none;
}

.more-reward-info-block {
  height: 0;
  overflow: hidden;
  border-top: 1px solid #C0C0C0;
  opacity: 0;
  transition: all 0.3s ease;
}
.more-reward-info-block.is-opened {
  height: auto;
  opacity: 1;
}
.more-reward-info-block .book__content,
.more-reward-info-block .book__body {
  height: auto !important;
}
@media (max-width: 1023px) {
  .more-reward-info-block .book {
    padding: 0;
    margin-bottom: 32px;
  }
}
.more-reward-info-block .book__block {
  padding: 0;
  margin-bottom: 10px;
  background: transparent;
  display: flex !important;
}
@media (max-width: 1023px) {
  .more-reward-info-block .book__block {
    flex-direction: column;
  }
}
.more-reward-info-block .book__image {
  margin-top: 0;
  position: relative;
}
.more-reward-info-block .book__image img {
  border: 2px solid #fff;
}
@media (max-width: 1023px) {
  .more-reward-info-block .book__image {
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
  }
  .more-reward-info-block .book__image img {
    width: 170px;
    margin: 0 auto;
  }
}
.more-reward-info-block .book__content {
  max-width: 90%;
}
.more-reward-info-block .book__content h4 {
  font-size: 24px;
  margin-top: 20px;
}
@media (max-width: 1023px) {
  .more-reward-info-block .book__content h4 {
    font-size: 16px;
    margin-top: 0;
  }
}
.more-reward-info-block .book__content p {
  color: #9B9B9B;
  font-size: 16px;
}
@media (max-width: 1023px) {
  .more-reward-info-block .book__content p {
    font-size: 14px;
  }
}
.more-reward-info-block .book__content:before {
  display: none;
}
@media (max-width: 1023px) {
  .more-reward-info-block .book__content {
    max-width: 100%;
  }
}
.more-reward-info-block .books-choice-annotate {
  border-top: 1px solid #C0C0C0;
  padding-top: 20px;
  margin-top: 20px;
  padding-bottom: 20px;
}

.book-choice-img {
  background-color: #fff;
  padding: 6px;
  display: flex;
  justify-content: space-between;
}
.book-choice-img .b-help-reward__sign {
  margin-left: auto;
  margin-right: 10px;
  font-size: 10px;
  position: relative;
  z-index: 20;
  cursor: pointer;
}

.book-zoom {
  background-image: url("data:image/svg+xml,%3Csvg width='15' height='16' viewBox='0 0 15 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6.49257 11.4851C8.97374 11.4851 10.9851 9.47374 10.9851 6.99257C10.9851 4.51139 8.97374 2.5 6.49257 2.5C4.01139 2.5 2 4.51139 2 6.99257C2 9.47374 4.01139 11.4851 6.49257 11.4851Z' stroke='%23848484' stroke-miterlimit='10'/%3E%3Cpath d='M9.72852 10.084L13.1583 13.5138' stroke='%23848484' stroke-miterlimit='10'/%3E%3Cpath d='M6.49219 4.86719V9.0216' stroke='%23848484' stroke-miterlimit='10'/%3E%3Cpath d='M4.41602 6.94434H8.57043' stroke='%23848484' stroke-miterlimit='10'/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-position: left;
  font-size: 10px;
  font-weight: 400;
  color: #848484;
  padding-left: 20px;
  position: relative;
  z-index: 10;
}

@media (max-width: 1024px) {
  .b-help__team {
    margin-top: 40px;
  }
}

@media (max-width: 1024px) {
  .b-help-card__button {
    line-height: 1;
  }
}
@media (max-width: 480px) {
  .b-help-card__button {
    width: 100%;
  }
}
.project-img {
  background-size: cover;
  background-position: center;
}

.b-help-reward__text {
  font-size: 18px;
}

.b-help-card__help-reward {
  padding-top: 20px;
}

.help-sidebar-film-item__title,
.help-sidebar-book-item__title {
  font-size: 18px;
}

.help-sidebar-film-item__description,
.help-sidebar-book-item__description {
  font-size: 16px;
}

/**************************** Link block */
.link-block-preview {
  display: flex;
  margin: 0 0 20px 0;
}
.link-block-preview__media {
  width: 180px;
  min-width: 180px;
}
.link-block-preview__media img {
  width: 100%;
  height: auto;
}
.link-block-preview__info {
  padding-left: 16px;
  width: calc(100% - 180px);
}
.link-block-preview__info__title {
  margin-bottom: 2px;
}

/**************************** SMI */
.smi-project-item {
  display: flex;
  position: relative;
  margin-bottom: 48px;
}
.smi-project-item__abs-link {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  border-bottom: none !important;
}
.smi-project-item__media {
  width: 180px;
  min-width: 180px;
}
.smi-project-item__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 480px) {
  .smi-project-item__media {
    width: 100px;
    min-width: 100px;
  }
}
.smi-project-item__info {
  width: calc(100% - 180px);
  padding: 6px 0 6px 20px;
}
@media (max-width: 480px) {
  .smi-project-item__info {
    width: calc(100% - 100px);
  }
}
.smi-project-item__info__title {
  font-family: "Circe", Arial, sans-serif;
  font-weight: 800;
  font-size: 18px;
  line-height: 1.5;
  margin-bottom: 16px;
}
.smi-project-item__info__text {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.4;
  max-height: 76px;
  overflow: hidden;
  position: relative;
  margin-bottom: 16px;
  background: linear-gradient(180deg, #000 60.28%, rgba(102, 102, 102, 0) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.smi-project-item__info__link a {
  color: #FB393D;
  font-size: 18px;
  text-decoration: underline;
  border-bottom: none;
}

/**************************** Tabs */
.content-nav._parts {
  border-bottom: 2px solid #242424;
  box-shadow: none;
}
.content-nav._parts .content-nav__item {
  background: #F0F0F0;
  margin-right: 0;
  padding: 16px 14px;
  min-width: 180px;
}
.content-nav._parts .content-nav__item a {
  font-size: 21px;
  font-weight: 300;
  color: #242424;
  font-family: "Circe", Arial, sans-serif;
}
.content-nav._parts .content-nav__item.is-active {
  background: #242424;
  box-shadow: none;
}
.content-nav._parts .content-nav__item.is-active a {
  color: #fff;
}
@media (max-width: 767px) {
  .content-nav._parts .content-nav__item {
    min-width: inherit;
  }
}

/**************************** Links */
.dark-link {
  text-decoration: underline;
  font-style: normal;
  transition: all 0.3s ease;
  font-size: 14px;
}
.dark-link:hover {
  text-decoration: none;
}

.decline-payment {
  text-align: center;
  padding-top: 10px;
}

/*# sourceMappingURL=nstyles.css.map */
