:root {
  --white: #ffffff;
  --whiteBackground: #f7f7f7;
  --black: #000000;
  --whitesmoke: #f4f4f4;
  --lightGray: #ededed;
  --gold: #ffcb08;
  --forestGreen: #008734;
  --mediumSeaGreen: #3aaa35;
  --darkSlateGray: #151822;
  --silver: #c4c4c4;
  --darkGray: #5a5a5a;
}

html,
body {
  height: 100%;
}

body {
  overflow-y: hidden;
  overflow-x: hidden;
  font-family: "Open Sans";
  color: var(--black);
}

.wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  min-height: 100%;
}

.main {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  -webkit-box-flex: 1;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
  background-color: var(--whiteBackground);
}

.footer {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

.container {
  max-width: 1236px;
  margin: 0 auto;
  padding: 0 18px;
}

button {
  border: none;
  cursor: pointer;
  outline: none;
  background-color: transparent;
  padding: 0;
}

/* LOADER */
.mask {
  background-color: #fff;
  position: fixed;
  top: 0;
  z-index: 500;
  transition: 0.6s;
  width: 100%;
  height: 100vh;
  display: -ms-grid;
  display: grid;
  place-items: center;
  -webkit-transition: 0.6s;
  -moz-transition: 0.6s;
  -ms-transition: 0.6s;
  -o-transition: 0.6s;
}

.mask.hide {
  opacity: 0;
  visibility: hidden;
  z-index: -500;
}

.loader {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.img-text {
  position: relative;
  display: inline-block;
}

.img-heart {
  position: absolute;
  top: 15%;
  left: 55%;
  transform: translate(-50%, -2%);
  z-index: -1;
  -webkit-transform: translate(-50%, -2%);
  -moz-transform: translate(-50%, -2%);
  -ms-transform: translate(-50%, -2%);
  -o-transform: translate(-50%, -2%);
}

.img-heart svg {
  -webkit-animation-name: img-heart;
  animation-name: img-heart;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

.img-heart svg path {
  -webkit-animation-name: img-heart-fill;
  animation-name: img-heart-fill;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

.loader img {
  margin-left: 10px;
  margin-bottom: 7px;
  width: 55px;
  height: 30px;
  display: inline-block;
}

@-webkit-keyframes img-heart {
  0% {
    width: 31px;
    height: 29px;
  }

  50% {
    width: 59px;
    height: 57px;
    transform: translateY(-25%);
    -webkit-transform: translateY(-25%);
    -moz-transform: translateY(-25%);
    -ms-transform: translateY(-25%);
    -o-transform: translateY(-25%);
  }

  60% {
    width: 31px;
    height: 29px;
    transform: translateY(0%);
    -webkit-transform: translateY(0%);
    -moz-transform: translateY(0%);
    -ms-transform: translateY(0%);
    -o-transform: translateY(0%);
  }
}

@keyframes img-heart {
  0% {
    width: 31px;
    height: 29px;
  }

  50% {
    width: 59px;
    height: 57px;
    transform: translateY(-25%);
    -webkit-transform: translateY(-25%);
    -moz-transform: translateY(-25%);
    -ms-transform: translateY(-25%);
    -o-transform: translateY(-25%);
  }

  60% {
    width: 31px;
    height: 29px;
    transform: translateY(0%);
    -webkit-transform: translateY(0%);
    -moz-transform: translateY(0%);
    -ms-transform: translateY(0%);
    -o-transform: translateY(0%);
  }
}

@-webkit-keyframes img-heart-fill {
  0% {
    fill: #3dad36;
  }

  50% {
    fill: #7feb78;
  }

  60% {
    fill: #3dad36;
  }
}

@keyframes img-heart-fill {
  0% {
    fill: #3dad36;
  }

  50% {
    fill: #7feb78;
  }

  60% {
    fill: #3dad36;
  }
}

/* HEADER SECTION */

.burger-button {
  position: relative;
  display: none;
  border: none;
  cursor: pointer;
  width: 28px;
  height: 22px;
}

.burger-button svg rect {
  position: absolute;
  transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
}

.burger-button.active svg rect:first-child {
  transform: rotate(45deg) translate(3px, -3px);
  -webkit-transform: rotate(45deg) translate(3px, -3px);
  -moz-transform: rotate(45deg) translate(3px, -3px);
  -ms-transform: rotate(45deg) translate(3px, -3px);
  -o-transform: rotate(45deg) translate(3px, -3px);
}

.burger-button.active svg rect:nth-child(2) {
  width: 0;
  opacity: 0;
  visibility: hidden;
}

.burger-button.active svg rect:last-child {
  transform: rotate(-45deg) translate(-12px, -4px);
  -webkit-transform: rotate(-45deg) translate(-12px, -4px);
  -moz-transform: rotate(-45deg) translate(-12px, -4px);
  -ms-transform: rotate(-45deg) translate(-12px, -4px);
  -o-transform: rotate(-45deg) translate(-12px, -4px);
}

/* .burger-button.active {
  background-image: url("../img/burger-close-menu-icon.svg");
} */

/* .burger-icon,
.burger-icon::before,
.burger-icon::after {
  content: "";
  background-color: #000;
  border-radius: 3px;
  height: 2px;
  width: 28px;
  display: flex;
  flex-direction: column;
  position: absolute;
  left: 0;
  -webkit-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
} */

/* .burger-icon::before {
  top: 10px;
  left: 0;
} */

/* .burger-icon::after {
  bottom: 10px;
  left: 0;
} */

/* .burger-button.active .burger-icon {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
} */

/* .burger-button.active .burger-icon::before {
  top: 0;
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
} */

/* .burger-button.active .burger-icon::after {
  bottom: 0;
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
} */

/* * {
  border: 1px solid red;
} */

.header__mobile {
  position: absolute;
  z-index: 5;
  top: 65px;
  left: 0;
  right: 0;
  background-color: var(--white);
  padding: 40px 0;
  -webkit-transition: all 0.7s ease;
  -o-transition: all 0.7s ease;
  transition: all 0.7s ease;
  -webkit-transform: translateX(200%);
  -ms-transform: translateX(200%);
  transform: translateX(200%);
}

.header__mobile.show {
  -webkit-box-shadow: inset 0px 10px 10px -10px rgba(0, 0, 0, 0.15);
  box-shadow: inset 0px 10px 10px -10px rgba(0, 0, 0, 0.15);
  -webkit-transform: translateX(0%);
  -ms-transform: translateX(0%);
  transform: translateX(0%);
  height: 100vh;
  overflow-y: auto;
}

.header__mobile-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-bottom: 70px;
}

.menu-mobile .menu__list {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 24px 0;
  margin-top: 20px;
}

/* .menu-mobile .menu__list .menu__list-item:not(:last-child) {
  margin-bottom: 24px;
} */

#header__mobile>div>div>nav>ul>li>a {
  display: block;
}

#header__mobile>div>div>nav>ul>li>a::before {
  width: 105px;
}

.menu-mobile .menu__list .menu__list-item .menu__list-link.has-sub::after {
  left: 80px;
  top: 3px;
  right: -10px;
}

a.help__btn-mobile {
  max-width: 284px;
  margin-left: 0;
  margin-right: 0;
}

.header__mobile-form {
  position: relative;
  width: 284px;
}

.header__mobile-input {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  background-color: var(--whitesmoke);
  border: none;
  outline: none;
  border-radius: 6px;
  height: 50px;
  width: 100%;
  padding: 0 50px 0 10px;
}

.header__mobile-search-btn {
  position: absolute;
  top: 12px;
  width: 29px;
  height: 29px;
  right: 10px;
  border: none;
  outline: none;
  background-color: transparent;
  background-image: url(../img/search-icon.svg);
  background-repeat: no-repeat;
  cursor: pointer;
}

.burger__btn span {
  width: 28px;
  height: 2px;
  background-color: var(--black);
  border-radius: 3px;
  display: block;
}

.header {
  -webkit-box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.15);
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 100;
  background-color: #fff;
}

.header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 15px 0;
}

.header__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0 20px;
  margin-right: 50px;
}

.header__logo-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.header__logo-link img {
  height: 35px;
  width: 143px;
  display: inline-block;
}

.header__logo-img {
  width: 56px;
  height: 30px;
}

.menu__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 40px;
}

.menu__list-link {
  padding: 0 10px;
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  color: var(--black);
  white-space: nowrap;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.menu__list-link.current {
  position: relative;
  font-weight: 600;
  padding-bottom: 8px;
  /* border-bottom: 2px solid var(--forestGreen); */
}

.menu__list-link.current::before {
  content: "";
  position: absolute;
  height: 2px;
  width: 100%;
  background-color: var(--forestGreen);
  bottom: 0;
  left: 0;
}

.menu__list-link:hover {
  color: #5f5f5f;
}

.menu__list-link.active {
  color: #5f5f5f;
}

.menu__list-link svg {
  margin-left: 9px;
}

.menu__list-item {
  position: relative;
}

.has-sub::after {
  content: "";
  position: absolute;
  background-image: url("../img/chevron.svg");
  width: 16px;
  height: 16px;
  top: 4px;
  right: -10px;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.has-sub.active::after {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

ul.sub-menu__list {
  position: absolute;
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px 0;
  min-width: 180px;
  padding: 16px;
  border-radius: 6px;
  top: 30px;
  left: 10px;
  background-color: var(--white);
  opacity: 0;
  visibility: hidden;
}

ul.sub-menu__list-mobile {
  position: static;
}

ul.sub-menu__list-mobile.show {
  display: block;
  opacity: 1;
  visibility: visible;
  padding-bottom: 0;
  gap: 16px;
}

ul.sub-menu__list.show {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  opacity: 1;
  visibility: visible;
  z-index: 21;
  -webkit-filter: drop-shadow(0px 3px 10px rgba(0, 0, 0, 0.2));
  filter: drop-shadow(0px 3px 10px rgba(0, 0, 0, 0.2));
}

.menu-mobile ul.sub-menu__list.show {
  -webkit-filter: none;
  filter: none;
}

.sub-menu__list-link {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  color: var(--black);
  white-space: nowrap;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.sub-menu__list-link:hover {
  color: #5f5f5f;
}

.sub-menu__list-link:focus {
  color: #5f5f5f;
}

.user-navigation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-left: auto;
}

.search__btn {
  display: -ms-grid;
  display: grid;
  place-items: center;
}

.help__btn {
  margin: 0 25px 0 23px;
  padding: 14px 33px;
  background-color: var(--gold);
  border-radius: 6px;
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 22px;
  text-align: center;
  color: var(--black);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.help__btn:hover {
  background-color: #ffe609;
}

.user-login {
  display: -ms-grid;
  display: grid;
  place-items: center;
}

.select-language {
  position: relative;
  margin-right: 29px;
  padding-right: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: var(--black);
}

.select-language::after {
  content: "";
  position: absolute;
  background-image: url("../img/chevron.svg");
  width: 16px;
  height: 16px;
  top: 3px;
  right: 0;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.select-language.active::after {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

.select-language .select-language__list {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
  top: 30px;
  left: -10px;
  background-color: var(--white);
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  padding: 16px;
  border-radius: 6px;
  opacity: 0;
  visibility: hidden;
  color: var(--black);
  -webkit-filter: drop-shadow(0px 3px 10px rgba(0, 0, 0, 0.2));
  filter: drop-shadow(0px 3px 10px rgba(0, 0, 0, 0.2));
}

.select-language .select-language__list.show {
  opacity: 1;
  visibility: visible;
  z-index: 21;
}

.header__bottom {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  left: 0;
  right: 0;
  padding: 20px 0;
  border-top: 1px solid var(--lightGray);
  background-color: var(--white);
  -webkit-box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.04);
  box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.04);
}

.header__bottom.show {
  opacity: 1;
  visibility: visible;
  z-index: 20;
}

.form__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.form {
  position: relative;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.form__search-input {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 25px;
  width: 100%;
  height: 60px;
  border: none;
  border-radius: 6px;
  background: var(--whitesmoke);
  padding: 0 60px 0 10px;
  outline: none;
}

.form__search-btn {
  position: absolute;
  right: 22px;
  top: 18px;
  background-image: url("../img/search-icon.svg");
  background-repeat: no-repeat;
  background-color: transparent;
  width: 29px;
  height: 29px;
  border: none;
  cursor: pointer;
}

.close-search {
  margin-left: 20px;
  margin-right: 16px;
  width: 30px;
  height: 30px;
  background-color: var(--silver);
  border-radius: 50%;
}

/* HERO SECTION */

.hero {
  padding-top: 65px;
  background-color: var(--lightGray);
}

.slider__item {
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  height: 700px;
  width: 100%;
  margin: auto;
  -webkit-user-select: text;
  -moz-user-select: text;
  -ms-user-select: text;
  user-select: text;
}

.slider__item-img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center center;
  object-position: center center;
}

.offer {
  position: absolute;
  bottom: 154px;
  /* margin-top: 210px; */
}

.offer__title {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 700;
  font-size: 54px;
  line-height: 74px;
  color: #ffffff;
  max-width: 726px;
  margin-bottom: 59px;
}

.offer__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 30px;
}

.offer__btn .help__btn {
  margin: 0;
  padding: 16.5px 10px;
  min-width: 200px;
  display: inline-block;
}

.more__btn {
  background-color: var(--white);
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 22px;
  text-align: center;
  color: var(--black);
  padding: 16.5px 10px;
  min-width: 200px;
  display: inline-block;
  border-radius: 6px;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.more__btn:hover {
  background-color: #dfeaef;
}

#hero-slider .slick-dots {
  position: absolute;
  bottom: 100px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 0 9px;
}

#hero-slider .slick-dots li button {
  font-size: 0;
  border: none;
  width: 13px;
  height: 13px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
}

#hero-slider .slick-dots .slick-active button {
  background-color: var(--white);
}

.hero__text {
  background-color: var(--mediumSeaGreen);
  border-radius: 12px;
  text-align: center;
  max-width: 978px;
  margin: 0 auto;
  padding: 30px 40px;
  -webkit-transform: translateY(-40px);
  -ms-transform: translateY(-40px);
  transform: translateY(-40px);
}

.hero__text p {
  color: var(--white);
  text-align: center;
  font-family: "Open Sans";
  font-style: italic;
  font-weight: 400;
  font-size: 22px;
  line-height: 30px;
}

.certificate__banner,
.caf__banner,
.forbes__banner,
.com__banner {
  display: flex;
  align-items: center;
  margin-top: 60px;
  width: 100%;
}

.com__banner {
  flex-direction: row-reverse;
}

.certificate__inner-img-border
{
  z-index: 3;
  border: 5px solid #22354F;
  border-radius: inherit;
}
.certificate__outer-img-border{
  background-color: white;
  border: 3px solid #ffffff;
  border-radius: 10px;
  max-width: 200px;
  z-index: 2;
}

.certificate__banner img
{
  border-radius: inherit;
  z-index: 1;
}

.caf__banner img {
  z-index: 2;
}

.certificate__banner-text,
.caf__banner-text,
.forbes__banner-text {
  background-color: #22354F;
  padding: 20px 60px;
  border-radius: 12px;
  transform: translateX(-40px);
}

.certificate__banner-text {
  align-self: left;
}

.com__banner-img-block {
  border: 3px solid #fff; 
  border-radius: 10px; 
  max-width: 300px;
  z-index: 2;
}

.forbes__banner-img-block {
  border: 3px solid #fff; 
  border-radius: 50%; 
  max-width: 200px;
  z-index: 2;
}

.certificate__banner.--right {
  justify-content: flex-end;
}

.certificate__banner{
  justify-content: flex-start;
}

.certificate__banner.--right .certificate__banner-text,
.com__banner-text {
  background-color: #22354F;
  padding: 20px 60px;
  border-radius: 12px;
  transform: translateX(40px);
}
.certificate__banner-text h3,
.caf__banner-text h3,
.forbes__banner-text h3,
.com__banner-text h3 {
  color: #fff;
  line-height: 32px;
  font-size: 24px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 10px;
}
.certificate__banner-text p,
.caf__banner-text p,
.forbes__banner-text p,
.com__banner-text p {
  color: #fff;
  line-height: 24px;
  font-size: 18px;
  text-align: center;
}

.who-help .section__wrapper {
  padding: 60px 0;
}

.who-help .section__title {
  font-weight: 600;
  line-height: 44px;
}

.who-help .section__text {
  line-height: 24.5px;
}

.who-help .main-btn {
  padding: 16px 24px;
  font-weight: 600;
}

.who-help .main-btn.bg-yellow {
 max-width: 200px;
 width: 100%;
}

.who-help .section__pic-desktop {
  width: auto;
  height: 100%;
  transform: scale(1.3);
}

.who-help .section__pic-mobile {
  display: none;
}

.who-help__btn-mobile {
  display: none;
}

.docs .table-list {
  align-items: flex-start;
  gap: 3rem;
  position: relative;
}

.docs .table-list .table-list__item {
  margin-left: 0;
}

.cert-wrapper {
  margin-block: 80px;
  display: flex;
  flex-wrap: wrap;
  column-gap: 20px;
  row-gap: 48px;

  & .cert-item {
    color: black;
    flex: 1 1 30%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 24px;
    font-size: 14px;

    & .image-wrapper {
      width: 120px;
      height: 120px;
      background-color: white;
      border: 2px solid #018734;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;

      & img {
        display: block;
        object-fit: cover;
        width: 80px;
      }
    }
  }

  @media (max-width: 768px) {
    row-gap: 36px;
    column-gap: 15px;

    & .cert-item {
      flex: 1 1 calc(50% - 15px);
    }
  }
}

/* ASSIST SECTION */

.assist {
  padding: 20px 0 60px;
  background-color: var(--lightGray);
}

.thanks__content {
  margin-top: 160px;
  margin-bottom: 60px;

  & .programs__list {
    display: flex;
    justify-content: center;
  }

  @media (max-width: 768px) {
    margin-top: 100px;
    margin-bottom: 40px;
  }
}

.thanks__title {
  font-family: "Open Sans";
  font-weight: 600;
  font-size: 28px;
  line-height: 100%;
  letter-spacing: 0%;
  margin-bottom: 20px;
  text-align: center;
  color: var(--black);

  @media (max-width: 768px) {
    font-size: 22px;
  }
}

.thanks__text {
  font-family: Open Sans;
  font-weight: 400;
  font-size: 15px;
  line-height: 100%;
  letter-spacing: 0%;
  margin-bottom: 60px;
  text-align: center;
  color: var(--black);

  @media (max-width: 768px) {
    margin-bottom: 40px;
  }
}

.assist__title,
.map__title,
.news__title,
.partners__title,
.charity__title,
.donors__title {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 600;
  font-size: 32px;
  line-height: 44px;
  text-align: center;
  margin-bottom: 30px;
  color: var(--black);
}

.assist__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.assist__item {
  max-width: 380px;
  width: 100%;
  text-align: center;
  padding: 20px;
  border-radius: 12px;
  background-color: var(--white);
  border: 2px solid transparent;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.assist__item:hover {
  border: 2px solid var(--forestGreen);
}

.assist__item:hover .assist__item-buttons .help__btn {
  background-color: #ffe609;
}

.assist__item-title {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 25px;
  color: var(--black);
  margin: 10px 0;
}

.assist__item-text {
  font-weight: 400;
  font-size: 15px;
  line-height: 20px;
  color: var(--black);
}

.assist__item-text span {
  margin-left: 10px;
  font-weight: 600;
  font-size: 18px;
  line-height: 25px;
}

.assist__item-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: 10px;
  gap: 10px 20px;
}

.assist__item-buttons .help__btn {
  display: inline-block;
  margin: 0;
}

.assist__item-buttons .details__btn {
  display: inline-block;
  background-color: #f0f4f6;
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 22px;
  display: -ms-grid;
  display: grid;
  place-items: center;
  color: var(--black);
  padding: 11px 30px;
  border-radius: 6px;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.assist__item-buttons .details__btn:hover {
  background-color: #dfeaef;
}

/* MAP SECTION */

.map {
  padding: 60px 0;
}

.map iframe {
  width: 100%;
  height: 700px;
}

/* ACHIEVEMENT SECTION */

.achievement {
  padding: 40px 0 100px;
  background: -o-linear-gradient(bottom,
      rgba(0, 135, 52, 0.9),
      rgba(0, 135, 52, 0.9)),
    url("../img/IMG_7284-min.jpg");
  background: -webkit-gradient(linear,
      left bottom, left top,
      from(rgba(0, 135, 52, 0.9)),
      to(rgba(0, 135, 52, 0.9))),
    url("../img/IMG_7284-min.jpg");
  background: linear-gradient(0deg,
      rgba(0, 135, 52, 0.9),
      rgba(0, 135, 52, 0.9)),
    url("../img/IMG_7284-min.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.achievement__title {
  margin-bottom: 30px;
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 600;
  font-size: 32px;
  line-height: 44px;
  color: var(--white);
  text-align: center;
}

.achievement__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-evenly;
  -ms-flex-pack: space-evenly;
  justify-content: space-evenly;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 50px 40px;
}

.achievement__item {
  max-width: 240px;
  text-align: center;
  color: var(--white);
}

.achievement__item:nth-child(1) .achievement__item-img {
  background-image: url("../img/budget-desktop.svg");
  width: 130px;
  height: 130px;
  background-repeat: no-repeat;
  margin: 0 auto;
  background-position: center center;
  background-size: cover;
}

.achievement__item:nth-child(2) .achievement__item-img {
  background-image: url("../img/monthly-desktop.svg");
  width: 130px;
  height: 130px;
  background-repeat: no-repeat;
  margin: 0 auto;
  background-position: center center;
  background-size: cover;
}

.achievement__item:nth-child(3) .achievement__item-img {
  background-image: url("../img/support-desktop.svg");
  width: 130px;
  height: 130px;
  background-repeat: no-repeat;
  margin: 0 auto;
  background-position: center center;
  background-size: cover;
}

.achievement__item:nth-child(4) .achievement__item-img {
  background-image: url("../img/child-desktop.svg");
  width: 130px;
  height: 130px;
  background-repeat: no-repeat;
  margin: 0 auto;
  background-position: center center;
  background-size: cover;
}

.achievement__item b {
  position: relative;
  display: block;
  font-weight: 600;
  font-size: 35px;
  line-height: 54px;
  letter-spacing: -0.04em;
  margin: 20px 0;
  padding-bottom: 10px;
}

.achievement__item b::after {
  content: "";
  position: absolute;
  width: 240px;
  height: 1px;
  background-color: #fff;
  bottom: 0;
  left: 0;
}

.achievement__item b span {
  font-size: 24px;
  line-height: 32px;
}

.achievement__item p {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 25px;
  text-align: center;
}

/* NEWS SECTION */

.news-hero {
  background-color: #008734;
  background-image: url(../img/News-head-svg.svg);
  background-position: right;
  background-repeat: no-repeat;

  @media (max-width: 1236px) {
    background-image: initial;
  }

  & .news-hero__content {
    padding: 80px 18px;
    margin-inline: auto;
    max-width: 1236px;
    display: flex;
    flex-direction: column;
    gap: 32px;

    & .news-hero__title {
      font-weight: 700;
      font-size: 54px;
      line-height: 100%;
      color: #FFFFFF;
    }

    & p {
      max-width: 417px;
      font-weight: 400;
      font-size: 18px;
      line-height: 100%;
      color: #FFFFFF;
    }

    & .horizontal-line {
      width: 100%;
      max-width: 417px;
      height: 1px;
      /* background: #ffffff; */
      /* border: 1px solid; */
      background: linear-gradient(90deg, #FFFFFF 0%, rgba(255, 255, 255, 0) 100%);
    }

    @media (max-width: 480px) {
      padding-block: 40px;
      gap: 24px;

      & .news-hero__title {
        font-weight: 600;
        font-size: 28px;
        line-height: 100%;
      }

      & p {
        font-size: 16px;
      }
    }
  }
}

ul.categories__list {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 40px;
  padding-inline: 18px;
  margin-inline: auto;
  max-width: 1236px;

  @media (max-width: 1236px) {
    flex-wrap: nowrap;
    max-width: none;
    padding-inline: 0;
    margin-inline: 0;
    overflow-x: auto;
  }

  @media (max-width: 480px) {
    margin-bottom: 24px;
  }

  & .category {
    flex-shrink: 0;
    padding: 16px 32px;
    border-radius: 64px;
    background-color: none;
    border: 1px solid #C4C4C4;
    color: #151822;
    font-weight: 600;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: 0%;
    transition: 0.3s ease-out;
    cursor: pointer;

    &:hover {
      background-color: #F4F4F4;
    }

    &.active {
      border: none;
      color: white;
      background-color: #008734;
    }

    @media (max-width: 480px) {
      padding: 8px 16px;
      font-size: 15px;
    }

    @media (max-width: 1236px) {
      &:first-of-type {
        margin-left: 18px;
      }

      &:last-of-type {
        margin-right: 18px;
      }
    }
  }
}

.news {
  padding-top: 80px;

  @media (max-width: 1200px) {
    padding-top: 65px;
  }
}

.news.section__wrapper,
.news .section__wrapper {
  padding: 60px 0;

  @media (max-width: 480px) {
    padding-block: 24px;
  }
}

.news .section__title {
  font-weight: 600;
}

.news__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 32px;
  align-items: stretch;

  @media (max-width: 480px) {
    gap: 16px;
  }
}

.news__list-item {
  flex: 1 1 378px;
  max-width: 378px;
  display: flex;
  flex-direction: column;
  height: auto;
}

.news__list-item > .card-link > h4 {
  padding-block: 16px;
  font-family: "Open Sans";
  font-weight: 700;
  font-size: 16px;
  color: var(--black);
}

.card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 16px 16px 20px;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  background-color: #fff;
  flex-grow: 1;
  height: 100%;
  box-shadow: 0px 2px 2px 0px #0000000D;
  transition: ease-out 0.3s;
}

.card:hover {
  box-shadow: 0px 3px 10px 0px #00000033;
}

.card-category {
  padding: 6px;
  border-radius: 16px;
  background: #008734;
  text-decoration: none;
  color: white;
  font-weight: 600;
  font-style: SemiBold;
  font-size: 11px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;

  position: absolute;
  left: 24px;
  top: 24px;
}

.card-link {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.card-link:hover .card-image img {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
  z-index: -10;
}


.card img {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border-radius: 12px;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  aspect-ratio: 347 / 254;
}

.gradient-img {
  border-radius: 12px;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: -o-linear-gradient(top,
      rgba(0, 0, 0, 0) 16.98%,
      rgba(0, 0, 0, 0.7) 100%);
  background: -webkit-gradient(linear,
      left top, left bottom,
      color-stop(16.98%, rgba(0, 0, 0, 0)),
      to(rgba(0, 0, 0, 0.7)));
  background: linear-gradient(180deg,
      rgba(0, 0, 0, 0) 16.98%,
      rgba(0, 0, 0, 0.7) 100%);
}

.card-content {
  height: max-content;
  color: black;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.card:hover {
  -webkit-filter: drop-shadow(0px 3px 10px rgba(0, 0, 0, 0.2));
  filter: drop-shadow(0px 3px 10px rgba(0, 0, 0, 0.2));
}

.card-content h4 {
  font-weight: 600;
  font-style: SemiBold;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 0%;
  color: #151822;
  margin-block: 16px 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;

  @media (max-width: 768px) {
    font-size: 16px;
  }
}

.card-content p {
  font-weight: 400;
  font-style: Regular;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 0%;
  color: #6B6B6B;
}

.all-news__btn {
  padding: 17px 37px;
  display: inline-block;
  font-weight: 700;
  font-size: 18px;
  line-height: 25px;
  text-align: center;
  color: var(--forestGreen);
  border: 2px solid var(--forestGreen);
  border-radius: 6px;
  -webkit-box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.15);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  margin: 30px auto 0;
}

.btn__wrapper {
  text-align: center;
}

.all-news__btn:hover {
  background-color: var(--forestGreen);
  color: var(--white);
}

.section__wrapper.news-detail {
  padding-block: 80px 60px;

  @media (max-width: 1200px) {
    padding-block: 65px 50px;
  }

  @media (max-width: 425px) {
    padding-block: 60px 32px;
  }

  & .container-section {
    padding-top: 40px;
    max-width: 790px;
    margin-inline: auto;

    @media (max-width: 768px) {
      padding-inline: 18px;
    }

    @media (max-width: 480px) {
      padding-top: 24px;
    }
  }

  & .creation_date {
    & p {
      font-weight: 400;
      font-size: 14px;
      line-height: 100%;
      letter-spacing: 0%;
      color: #6B6B6B;
    }
  }

  & .company__footer {
    padding-block: 40px;
    border-top: none;
    border-bottom: 1px solid #C4C4C4;
    display: flex;
    align-items: center;

    @media (max-width: 480px) {
      padding-block: 32px;
    }

    & a.profile-companies__socials-link {
      display: flex;
      align-items: center;
    }

    & span {
      font-weight: 600;
    }
  }

  & .donation-card {
    gap: 24px;
    border-radius: 12px;
    padding: 24px;
    background-color: #008734;
    color: white;

    & h2 {
      font-weight: 600;
      font-size: 28px;
      line-height: 100%;
      letter-spacing: 0%;
      margin-bottom: 24px;

      @media (max-width: 768px) {
        margin-bottom: 8px;
        font-size: 22px;
      }
    }

    & .donation-card__content {
      display: flex;
      justify-content: space-between;

      @media (max-width: 768px) {
        flex-direction: column;
        row-gap: 24px;

        .help__btn {
          margin-inline: 0;
        }
      }

      & p {
        font-weight: 400;
        font-size: 16px;
        line-height: 24px;
        letter-spacing: 0%;
      }
    }
  }
}

.news-detail .hero-section {
  position: relative; /* Встановлює контекст позиціонування для дочірніх елементів */
  width: 100%;
  height: auto; /* Висота секції (70% від висоти екрана), можна змінити */
  overflow: hidden; /* Ховаємо все, що виходить за межі блоку */
  color: white; /* Колір тексту за замовчуванням */

  /* Стиль для зображення */
  & img {
    position: absolute; /* Позиціонування відносно .hero-section */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Масштабує зображення, щоб воно повністю заповнило блок, зберігаючи пропорції */
    object-position: center; /* Центрує зображення */
  }
  
  /* Напівпрозорий шар поверх зображення */
  & .hero-overlay {
    position: relative;
    background: linear-gradient(270deg, rgba(0, 0, 0, 0) 8.15%, rgba(0, 0, 0, 0.32) 40.72%, rgba(0, 0, 0, 0.64) 95.44%);
  }
  
  /* Контейнер для текстового контенту */
  & .hero-content {
    max-width: 1236px;
    padding: 40px 18px 60px;
    margin-inline: auto;

    @media (max-width: 480px) {
      padding-bottom: 48px;
    }
  }
  
  /* Стиль для тега "Соціальні програми" */
  & .category {
    display: inline-block;
    background-color: #EDEDED;
    color: #6B6B6B;
    padding: 8px 12px;
    border-radius: 24px;
    font-weight: 600;
    font-size: 14px;
    line-height: 16px;
    letter-spacing: 0%;
    text-align: center;
    margin-bottom: 16px;

    @media (max-width: 480px) {
      padding: 4px 8px;
      font-size: 12px;
    }
  }
  
  /* Стиль для головного заголовка */
  & .hero-content h1 {
    font-size: 54px;
    font-weight: 700;
    line-height: 60px;
    max-width: 1100px; /* Обмеження ширини заголовка для кращої читабельності */
    margin-top: 0;
    margin-bottom: 0;
    letter-spacing: 0%;

    @media (max-width: 480px) {
      font-size: 28px; 
      line-height: 100%;
    }
  }
  
  /* Стиль для круглої стрілки навігації */
  & .back-btn {
    border: 1px solid #FFFFFF;
    bottom: 120%; /* Розміщення над текстом */
    left: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 24px;
    font-weight: 300;
    transition: background-color 0.3s, color 0.3s;
    margin-bottom: 32px;
    
    &::before {
      content: '';
      width: 9px;
      height: 16px;
      margin-right: 4px;
      mask-image: url("../../img/svg/back-arrow.svg");
      background-color: white;
    }
    
    &:hover {
      background-color: white;

      &::before {
        background-color: black;
      }
    }

    @media (max-width: 480px) {
      margin-bottom: 24px;
    }
  }
}
    
.more-news-section {
  margin-top: 40px;
  max-width: 1236px;
  padding: 0 18px;
  margin-inline: auto;

  @media (max-width: 480px) {
    margin-top: 32px;
  }

  & h1 {
    font-weight: 600;
    font-size: 32px;
    line-height: 100%;
    letter-spacing: 0%;
    margin-bottom: 16px;
  }

  & .all-news__btn {
    margin-top: 40px;
  }
}

/* PARTNERS SECTION */

.partners,
.donors {
  padding: 60px 0;
  background-color: var(--lightGray);
}

.charity {
  padding: 60px 0 103px;
  background-color: var(--lightGray);
}

.charity__slider {
  padding: 0 70px;
}

.charity__slider-item {
  width: 180px;
  height: 150px;
  display: -ms-grid !important;
  display: grid !important;
  place-items: center;
}

.partners__slider,
.donors__slider {
  position: relative;
  margin-bottom: 36px;
  padding: 0 65px;
}

.charity__logo {
  display: -ms-grid;
  display: grid;
  place-items: center;
  min-height: 120px;
}

.partners__logo,
.donors__logo {
  min-height: 120px;
  min-width: 0;
  display: -ms-grid;
  display: grid;
  place-items: center;
}

.donors__logo {
  max-height: 120px;
}

.partners__logo img {
  display: block;
  height: 100px;
  -o-object-fit: contain;
  object-fit: contain;
  max-width: 120px;
}

.donors__logo img {
  display: block;
  -o-object-fit: contain;
  object-fit: contain;
  max-height: 120px;
}

.charity__logo img {
  max-width: 120px;
  height: 100px;
  -o-object-fit: contain;
  object-fit: contain;
}

.partners__slider .slick-dots,
.charity__slider .slick-dots,
.donors__slider .slick-dots{
  position: absolute;
  bottom: -60px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 0 9px;
}

.partners__slider .slick-dots li button,
.charity__slider .slick-dots li button,
.donors__slider .slick-dots li button{
  font-size: 0;
  border: none;
  width: 13px;
  height: 13px;
  background: var(--silver);
  border-radius: 50%;
}

.partners__slider .slick-dots .slick-active button,
.charity__slider .slick-dots .slick-active button,
.donors__slider .slick-dots .slick-active button{
  background-color: var(--mediumSeaGreen);
}

.partners__slider .slick-next,
.partners__slider .slick-prev,
.charity__slider .slick-next,
.charity__slider .slick-prev,
.donors__slider .slick-next,
.donors__slider .slick-prev{
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--silver);
}

.partners__slider .slick-next:hover,
.partners__slider .slick-prev:hover,
.charity__slider .slick-next:hover,
.charity__slider .slick-prev:hover,
.donors__slider .slick-next:hover,
.donors__slider .slick-prev:hover{
  background-color: var(--mediumSeaGreen);
}

.partners__slider .slick-prev,
.charity__slider .slick-prev,
.donors__slider .slick-prev{
  background-image: url("../img/chevron-white.svg");
  background-repeat: no-repeat;
  background-position: center center;
  z-index: 10;
  left: 0;
}

.partners__slider .slick-next,
.charity__slider .slick-next,
.donors__slider .slick-next{
  right: 0;
  background-image: url("../img/chevron-white.svg");
  background-repeat: no-repeat;
  background-position: center center;
  -webkit-transform: rotate(180deg) translateY(50%);
  -ms-transform: rotate(180deg) translateY(50%);
  transform: rotate(180deg) translateY(50%);
}

/* PROGRAM SECTION */

.program {
  padding: 125px 0 60px;
}

.program__wrapper {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, auto));
}

.program__content {
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  grid-column: 1 / span 1;
}

.aside {
  padding-left: 40px;
  -ms-grid-column: 2;
  -ms-grid-column-span: 1;
  grid-column: 2 / span 1;
  width: 325px;
}

.aside__title {
  font-weight: 600;
  font-size: 28px;
  line-height: 38px;
}

.aside .news__list {
  margin-top: 30px;
}

.program__content-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.program__title {
  font-weight: 600;
  font-size: 28px;
  line-height: 38px;
  margin-bottom: 17px !important;
}

.program__presentation-btn {
  position: relative;
  padding: 16.5px 21px 16.5px 63px;
  border-radius: 6px;
  background-color: var(--mediumSeaGreen);
  color: var(--white);
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}

.program__presentation-btn::before {
  content: "";
  position: absolute;
  width: 30px;
  height: 30px;
  top: 12px;
  left: 18px;
  background-image: url("../img/presentation-icon.svg");
}

.program__content-midle img {
  margin: 13px 0 30px;
  border-radius: 12px;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.program__label {
  padding: 3px 6px;
  background-color: var(--forestGreen);
  font-size: 11px;
  color: var(--white);
  font-weight: 600;
  border-radius: 12px;
  position: absolute;
  top: 8px;
  right: 8px;
}

.program__list-item .img-wrapper {
  position: relative;
}

.program__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.program__info .program__help-btn {
  width: 240px;
  padding: 16.5px 20px;
}

.programs__content-nav .program__help-btn {
  padding: 11px 22px;
  width: auto;
}

.program__info-collect {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  margin-right: 50px;
}

.program__info-collect p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  font-size: 22px;
  line-height: 30px;
  color: var(--black);
}

.program__info-collect p b {
  font-weight: 400;
}

.program__info-collect p b span {
  color: var(--silver);
}

.program__remains-collect {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.program__remains-collect p {
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  color: var(--black);
}

.program__remains-collect b {
  font-weight: 600;
  font-size: 16px;
  line-height: 22px;
}

.progress-container {
  width: 100%;
  min-height: 3px;
  border-radius: 4px;
  background-color: var(--lightGray);
  margin: 8px 0;
}

.progress {
  width: 56%;
  min-height: 3px;
  border-radius: 4px;
  background-color: var(--mediumSeaGreen);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.program__help-btn {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  background-color: var(--gold);
  border-radius: 6px;
  font-family: "Open Sans";
  font-weight: 600;
  font-size: 16px;
  line-height: 22px;
  text-align: center;
  color: var(--black);
  padding: 16.5px 74.5px;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: inline-block;
}

.program__help-btn:hover {
  background-color: #ffe609;
}

.program__text {
  margin-top: 30px;
}

/* .program__text p:first-child {
  font-weight: 600;
  font-size: 15px;
  line-height: 20px;
  color: var(--black);
}

.program__text p {
  font-weight: 400;
  font-size: 15px;
  line-height: 20px;
  color: var(--black);
} */

/* .program__text p span {
  display: block;
  font-weight: 600;
} */

.program__text p:not(:first-child) {
  margin-top: 16px;
}

.program__text p b {
  font-weight: 600;
}

.program__content-bottom {
  margin-top: 40px;
}

.content__bottom-title {
  font-weight: 600;
  font-size: 22px;
  line-height: 30px;
  margin-bottom: 20px;
}

.video-container {
  width: 100%;
  overflow-x: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  padding-bottom: 20px;
}

.video-container::-webkit-scrollbar {
  height: 4px;
  background-color: rgb(242, 242, 242);
}

.video-container::-webkit-scrollbar-thumb {
  background-color: rgb(187, 187, 187);
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
}

.video-block {
  max-width: 278px;
  min-width: 278px;
}

.video-block__content {
  border-radius: 12px;
  max-width: 100%;
}

.video-block__inner {
  position: relative;
}

.video-block__inner iframe {
  min-width: 278px;
}

.video-block__button {
  border-radius: 12px;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: -o-linear-gradient(bottom,
      rgba(0, 0, 0, 0.4),
      rgba(0, 0, 0, 0.4));
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.4)), to(rgba(0, 0, 0, 0.4)));
  background: -o-linear-gradient(bottom, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4));
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4));
  width: 100%;
}

.video-block__title {
  font-weight: 600;
  font-size: 16px;
  line-height: 22px;
  margin-top: 10px;
}

/* PROGRAMS SECTION */

.programs {
  background-color: var(--whiteBackground);
}

.programs__top {
  padding-top: 105px;
}

.programs__top-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.programs__top-title {
  font-weight: 600;
  font-size: 22px;
  line-height: 30px;
}

.reset-filter {
  color: var(--forestGreen);
  font-weight: 600;
  font-size: 16px;
  line-height: 22px;
}

.programs__filter-items {
  margin-top: 30px;
  gap: 16px;
  display: flex;
  align-items: flex-start;
  overflow-x: scroll;
  position: relative;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 20px;
}

.programs__filter-items::-webkit-scrollbar {
  display: none;
}

.custom-scrollbar {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 5px;
  background-color: #EDEDED;
  border-radius: 10px;
  width: 100%;
  transform: translateX(0);
  transform-origin: left center;
}

.custom-scrollbar-thumb {
  position: absolute;
  height: 100%;
  background-color: #008734;
  border-radius: 10px;
  cursor: pointer;
  transform: translateX(0);
  transform-origin: left center;
}


.program__description-title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 20px;
}

.program__description  {
  margin-top: 30px;
  display: none;
}

.program__description-text {
  font-size: 18px;
  line-height: 24px;
  margin-bottom: 10px;
}

.program__description-text:last-child {
  margin-bottom: 0;
}

.filter__item {
  cursor: pointer;
  width: 100%;
  max-width: 150px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

div.mixitup-control-active>button {
  background-color: var(--forestGreen);
}

div.mixitup-control-active>button path {
  fill: #fff;
}

div.mixitup-control-active>p {
  color: var(--forestGreen);
}

.filter__item path,
.filter__item:hover button,
.filter__item:hover p {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.filter__item:hover path {
  fill: var(--white);
}

.filter__item:hover button {
  background-color: var(--forestGreen);
}

.filter__item:hover p {
  color: var(--forestGreen);
}

.filter__item p {
  margin-top: 10px;
  font-weight: 600;
  font-size: 14px;
  line-height: 19px;
  text-align: center;
}

.filter__item button {
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: var(--white);
  -webkit-box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.15);
  display: -ms-grid;
  display: grid;
  place-items: center;
}

.programs__content {
  padding: 60px 0 60px;
}

.programs__content-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 30px;
}

.programs__content-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: end;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.programs__content-nav a {
  margin-right: auto;
}

.content-nav__wrapper {
  position: relative;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  border-bottom: 2px solid var(--lightGray);
}

.programs__content-nav button {
  font-size: 18px;
  padding: 0 20px 10px;
  /* padding-bottom: 10px; */
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  color: var(--darkGray);
}

.programs__content-nav button.active {
  border-color: var(--forestGreen);
  color: var(--black);
  font-weight: 600;
}

.programs__content-nav button:hover {
  color: var(--black);
}

.border-btn {
  left: 0px;
  position: absolute;
  height: 2px;
  width: 50%;
  background-color: green;
  bottom: -2px;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.programs__content-nav button:focus {
  color: var(--black);
}

.program__map {
  width: 100%;
  transition: none;
  -webkit-transition: none;
  -moz-transition: none;
  -ms-transition: none;
  -o-transition: none;
}

.programs__content-title {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-right: 20px;
}

.programs__content-title h2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
  font-weight: 600;
  font-size: 32px;
  line-height: 44px;
  min-height: 55px;
}

.programs__content-title h2 .wrapper-icon {
  display: -ms-grid;
  display: grid;
  place-items: center;
  width: 55px;
  height: 55px;
  border: 2px solid var(--forestGreen);
  border-radius: 50%;
}

.programs__content-title h2 svg {
  width: 38px;
  height: 38px;
}

.programs__content-title h2 svg path {
  fill: #008734;
}

.programs__content-title a {
  padding: 11.5px 14.5px;
}

.programs__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  /* -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center; */
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 30px;
}

.program__list-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  max-width: 380px;
  border-radius: 12px;
  background-color: var(--white);
  overflow: hidden;
}

.img-wrapper {
  position: relative;
  height: 180px;
  overflow: hidden;
}

.img-wrapper img {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: top;
  object-position: top;
  width: 100%;
  height: 100%;
}

.program__list-item:hover img {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

.program__list-item:hover {
  -webkit-box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.2);
}

.program__list-item:hover .program__help-btn {
  background-color: #ffe609;
}

.program__list-item img {
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}

.program__item-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding: 20px;
}

.program__item-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.program__item-title h6 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  /* Кількість рядків, яку ви хочете показати */
  -webkit-box-orient: vertical;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  font-weight: 600;
  font-size: 18px;
  line-height: 25px;
  margin-bottom: 6px;
}

.program__item-title p {
  font-weight: 400;
  font-size: 14px;
  line-height: 19px;
  color: #898989;
}

.program__item-content .program__info .program__info-collect {
  margin: 20px 0;
}

.program__item-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 20px;
}

.program__help-btn {
  padding: 12px 35px;
  width: 160px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 16px;
  line-height: 22px;
  background-color: var(--gold);
  color: var(--black);
}

.program__details-btn {
  display: inline-block;
  background-color: #f0f4f6;
  font-weight: 600;
  font-size: 16px;
  line-height: 22px;
  color: var(--black);
  padding: 11px 34px;
  border-radius: 6px;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  width: 160px;
  text-align: center;
}

.program__details-btn:hover {
  background-color: #dfeaef;
}

/* FOOTER SECTION */

.footer {
  background-color: var(--darkSlateGray);
  color: var(--white);
}

.footer__inner {
  padding: 40px 0;
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 50px;
}

.footer__logo-img {
  width: 191px;
  height: 50px;
}

.footer__col-main .footer__text {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  color: var(--whitesmoke);
  margin: 20px 0;
  max-width: 284px;
}

ul.social__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}

.social__list-item .social__list-link svg {
  width: 30px;
  height: 30px;
}

.footer__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 16px 0;
}

.footer__nav-link {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 25px;
  color: var(--white);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.footer__nav-link:hover {
  color: #dadada;
}

.footer__col-contacts .footer__title {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 25px;
  margin-bottom: 10px;
}

.footer__col-contacts .footer__title:not(:first-child) {
  margin-top: 10px;
}

.footer__col-contacts a {
  color: var(--gold);
  display: block;
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 25px;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.footer__col-contacts a:hover {
  color: #ffe609;
}

.footer__inner div {
  padding: 0 10px;
}

.footer__col-charity p {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 25px;
  margin-bottom: 20px;
  max-width: 241px;
}

.footer__btn:hover {
  background-color: #ffe609;
  color: var(--black);
}

.footer__btn {
  color: var(--gold);
  border: 1px solid var(--gold);
  border-radius: 6px;
  padding: 12px 30px;
  text-align: center;
  font-weight: 600;
  font-size: 22px;
  line-height: 30px;
  display: inline-block;
  white-space: nowrap;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.footer__copyright {
  padding: 20px 0;
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  color: var(--white);
  border-top: 1px solid var(--silver);
}

/* DONATION SECTION */

.donation {
  padding-top: 80px;
  background-color: #f7f7f7;
}

.donation__top {
  padding: 40px 0;
  border-bottom: 2px solid #ededed;
}

.donation__title {
  font-family: 'Open Sans';
  font-size: 28px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 30px;
}

.donation__top-nav {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  grid-gap: 1rem;
}

.donation__nav-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 20px 10px;
  text-align: center;
  border-radius: 12px;
  background: #FFF;
  -webkit-box-shadow: 0px 1px 10px 0px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 1px 10px 0px rgba(0, 0, 0, 0.15);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.donation__nav-item:hover {
  border: 2px solid var(--forestGreen);
  /* background-color: var(--forestGreen); */
}

.donation__nav-item:hover h6 {
  color: var(--forestGreen);
}

.donation__nav-item svg path {
  -webkit-transition: fill 0.3s ease;
  -o-transition: fill 0.3s ease;
  transition: fill 0.3s ease;
}

.donation__nav-item:hover svg path {
  fill: var(--forestGreen);
}

.donation__nav-item h6 {
  font-family: 'Open Sans';
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-top: 10px;
  color: #000;
  -webkit-transition: color 0.3s ease;
  -o-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

.paymentByCard {
  padding: 40px 0;
  background-color: #f7f7f7;
}

.paymentByCard__title,
.bank-transfer__title,
.transfer-abroad__title,
.pay-crypto__title,
.other-patments__title,
.reoprting__title {
  font-family: 'Open Sans';
  font-size: 28px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 30px;
}

.donation-card,
.bank-transfer__card {
  border-radius: 12px;
  background-color: #fff;
  padding: 20px;
  max-width: 712px;
}

.donation-card__price {
  position: relative;
  margin: 40px 0;
}

.donation-card__title,
.your-data-form__title,
.regular-payment__title {
  font-family: 'Open Sans';
  font-size: 22px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 20px;
}

.enter-amount {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}

.enter-amount input {
  border-radius: 12px;
  background: #F4F4F4;
  padding: 22px 22px;
  border: none;
  font-family: 'Open Sans';
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  outline: none;
  width: 100%;
  color: #6B6B6B;
  border: 1px solid transparent;
}

.enter-amount input:focus {
  border: 1px solid #c4c4c4;
}

.enter-amount input::-webkit-input-placeholder,
.enter-amount input::-moz-placeholder,
.enter-amount input:-ms-input-placeholder,
.enter-amount input::-ms-input-placeholder,
.enter-amount input::placeholder {
  font-family: 'Open Sans';
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: #6B6B6B;
}

.radio__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
}

.donat-inner {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(70px, 1fr));
  gap: 16px;
}

.custom-radio {
  display: inline-block;
  background-color: var(--whitesmoke);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
  color: #000;
  font-size: 15px;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.custom-radio-sum {
  height: 40px;
  background-color: var(--whitesmoke);
  display: inline-block;
  text-align: center;
  vertical-align: sub;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 12px;
  font-size: 15px;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  cursor: pointer;
}

.custom-radio-sum svg {
  margin-right: 5px;
  -webkit-transform: translateY(1px);
  -ms-transform: translateY(1px);
  transform: translateY(1px);
}

.real-radio:checked+.custom-radio-sum svg path {
  fill: #fff;
}

.real-radio:checked+.custom-radio-sum {
  background-color: var(--forestGreen);
  color: #fff;
}

.real-radio {
  width: 0px;
  height: 0px;
  position: absolute;
  z-index: -1;
}

.real-radio:checked+.custom-radio {
  background-color: var(--forestGreen);
  color: #fff;
}

.select-amount p {
  margin-bottom: 10px;
}

.regular-payment {
  margin-bottom: 40px;
}

.regular-payment__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 20px;
}

.regular-payment__date {
  width: 100%;
}

.regular-payment__date p,
.regular-payment__regularity p {
  font-size: 15px;
  margin-bottom: 10px;
}

.regular-payment__date input {
  width: 100%;
  padding: 10px 22px;
  border: none;
  border-radius: 12px;
  background-color: var(--whitesmoke);
  height: 50px;
  color: #6B6B6B;
  outline: none;
  border: 1px solid transparent;
}

.regular-payment__date input:focus {
  border: 1px solid #d6d6d6;
}

::-webkit-calendar-picker-indicator {
  color: transparent;
  background: url('/static/new/img/calendar-icon.svg') no-repeat center;
  background-size: contain;
}

.regular-payment__regularity div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}

.regular-payment__regularity div label span {
  width: 158px;
  height: 50px;
}

.your-data-form__inputs {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.your-data-form__inputs div label {
  display: block;
  font-size: 15px;
  margin-bottom: 10px;
}

.your-data-form__inputs div input {
  width: 100%;
  border: none;
  padding: 12px 22px;
  background-color: #f4f4f4;
  border-radius: 12px;
  font-size: 18px;
  line-height: 24.51px;
  font-weight: 400;
  border: 1px solid transparent;
  outline: none;
  color: #6B6B6B;
}

.your-data-form__inputs div input:focus {
  border: 1px solid #c4c4c4;
}

.your-data-form__inputs div input::-webkit-input-placeholder,
.your-data-form__inputs div input::-moz-placeholder,
.your-data-form__inputs div input:-ms-input-placeholder,
.your-data-form__inputs div input::-ms-input-placeholder,
.your-data-form__inputs div input::placeholder {
  font-size: 18;
  color: #6B6B6B;
}

.privacy-policy {
  margin-bottom: 20px;
}

.real-checkbox {
  width: 20px;
  height: 20px;
  position: absolute;
  z-index: 10;
  opacity: 0;
}

.custom-checkbox {
  position: relative;
  width: 20px;
  height: 20px;
  border: 1px solid var(--forestGreen);
  border-radius: 4px;
  display: inline-block;
  vertical-align: sub;
  margin-right: 10px;
}

.custom-checkbox::before {
  content: '';
  position: absolute;
  width: 14px;
  height: 12px;
  background-image: url('../img/check.svg');
  background-repeat: no-repeat;
  background-size: contain;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%) scale(0);
  -ms-transform: translate(-50%, -50%) scale(0);
  transform: translate(-50%, -50%) scale(0);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.real-checkbox:checked+.custom-checkbox::before {
  -webkit-transform: translate(-50%, -50%) scale(1);
  -ms-transform: translate(-50%, -50%) scale(1);
  transform: translate(-50%, -50%) scale(1);
}

.real-checkbox:checked+.custom-checkbox {
  background-color: var(--forestGreen);
}

.privacy-policy label a {
  color: var(--forestGreen);
}

.submit-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
}

.submit-btn {
  padding: 11px 22px;
  border-radius: 6px;
  border: none;
  background-color: var(--gold);
  font-size: 16px;
  font-weight: 600;
  width: 48%;
  -webkit-transition: background-color 0.3s ease;
  -o-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
  cursor: pointer;
}

.submit-btn:hover {
  background-color: #FFE609;
}

.bank-transfer {
  background-color: #f7f7f7;
  padding: 40px 0;
}

.nav-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -ms-flex-pack: distribute;
  justify-content: space-around;
}

.nav-button {
  border: none;
  border-bottom: 2px solid #ededed;
  background-color: transparent;
  cursor: pointer;
  padding: 16px 20px;
  font-size: 18px;
  outline: none;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  color: #6B6B6B;
}

.nav-button.active {
  color: #000;
  font-weight: 600;
}

.nav-line {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  background-color: var(--forestGreen);
  -webkit-transition: width 0.3s ease, -webkit-transform 0.3s ease;
  transition: width 0.3s ease, -webkit-transform 0.3s ease;
  -o-transition: transform 0.3s ease, width 0.3s ease;
  transition: transform 0.3s ease, width 0.3s ease;
  transition: transform 0.3s ease, width 0.3s ease, -webkit-transform 0.3s ease;
  /* Додали перехід для згладжування змін позиції і ширини */
}

/*  */

.bank-transfer__card-content {
  display: none;
}

.bank-transfer__card-content.active {
  display: block;
}


.bank-tranfer__privat,
.bank-tranfer__otp {
  margin-top: 40px;
}

.notification {
  display: none;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-wrap: nowrap;
  gap: 20px;
  position: fixed;
  bottom: 20px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  border: 2px solid var(--gold);
  background-color: #fff;
  color: var(--gold);
  padding: 11px 22px;
  border-radius: 5px;
  z-index: 999;
}


.privat__title,
.otp__title {
  position: relative;
  display: block;
  margin-bottom: 7px;
  padding-left: 40px;
}

.privat__title::before {
  content: '';
  position: absolute;
  width: 24px;
  height: 24px;
  left: 0px;
  background-image: url('../img/privat-icon.png');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}

.otp__title::before {
  content: '';
  position: absolute;
  width: 24px;
  height: 24px;
  left: 0px;
  background-image: url('../img/otp-icon.svg');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}

.bank-tranfer__privat label,
.bank-tranfer__otp label {
  display: block;
  margin-bottom: 6px;
  margin-top: 10px;
}

.bank-tranfer__privat>span,
.bank-tranfer__otp>span {
  position: relative;
  font-size: 20px;
  font-weight: 600;
  padding-right: 16px;
  word-break: break-word;
}

.copy-btn {
  -webkit-transform: translateY(5px);
  -ms-transform: translateY(5px);
  transform: translateY(5px);
}

.copy-all-data {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 20px;
  padding: 13px 27px;
  border-radius: 6px;
  border: 2px solid var(--gold);
  margin-top: 10px;
  color: var(--gold);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-weight: 600;
}

.copy-all-data span {
  margin-right: 44px;
}

.copy-all-data:hover {
  background-color: var(--gold);
  color: #fff;
}

.copy-all-data svg path {
  -webkit-transition: fill 0.3s ease;
  -o-transition: fill 0.3s ease;
  transition: fill 0.3s ease;
}

.copy-all-data:hover svg path {
  fill: #fff;
}

.transfer-abroad {
  padding: 40px 0;
  background-color: #f7f7f7;
}

.small-cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.small-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
  padding: 20px;
  border-radius: 12px;
  background-color: #fff;
  max-width: 285px;
}

.small-card p {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.small-card p a {
  color: var(--forestGreen);
  font-weight: 600;
}

.small-card p span {
  color: var(--forestGreen);
}

.small-card-top {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  gap: 10px;
}

.small-card-top span {
  font-weight: 600;
  font-size: 18px;
  line-height: 24.51px;
}

.small-card img {
  position: relative;
  max-height: 35px;
  -o-object-fit: contain;
  object-fit: contain;
}

.any-wallet-img::before {
  content: '///';
  position: absolute;
  right: 0px;
  width: 100px;
  height: 20px;
}

.pay-btn {
  margin-top: 20px;
  padding: 11px 22px;
  display: block;
  background-color: var(--gold);
  border-radius: 6px;
  text-align: center;
  font-weight: 600;
  color: #000;
  width: 100%;
  -webkit-transition: background-color 0.3s ease;
  -o-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}

.pay-btn:hover {
  background-color: #FFE609;
  color: #000;
}

.pay-crypto,
.other-payments {
  padding: 40px 0;
  background-color: #F7F7F7;
}

.accordion__wrapper {
  width: 410px;
}

/* ACCORDION START */

.accordion {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}

.accordion-button.sub-accordion-button,
.accordion-button.sub-accordion-button:not(.collapsed) {
  background-color: transparent;
}

/* .sub-accordion-button:not(.collapsed) {

} */

.accordion-item:first-of-type {
  border-top-left-radius: 0rem;
  border-top-right-radius: 0rem;
  border-radius: 12px;
}

.accordion-item:first-of-type .accordion-button {
  border-top-left-radius: calc(12px);
  border-top-right-radius: calc(12px);
}

.accordion-item:last-of-type {
  border-bottom-right-radius: 0rem;
  border-bottom-left-radius: 0rem;
  border-radius: 12px;
}

.accordion-item:last-of-type .accordion-button.collapsed {
  border-bottom-right-radius: calc(12px);
  border-bottom-left-radius: calc(12px);
}

.accordion-item {
  border: none;
  border-radius: 12px;
  background-color: transparent;
}

.accordion-body {
  padding: 6px 0px;
}

.sub-accordion-body {
  display: flex;
  gap: 6px 16px;
  flex-wrap: wrap;
}

.accordion-body__item {
  max-width: 90px;
  text-align: center;
}

.accordion-body__item a {
  color: #000;
  text-decoration: none;
}

.accordion-body__item img {
  margin: 0 auto;
}

.accordion-button {
  font-weight: 600;
  padding: 10px 22px;
  border-radius: 12px;
}

.accordion-button:not(.collapsed) {
  color: #000;
  background-color: #fff;
  box-shadow: none;
}

.accordion-button:focus {
  border: none;
  box-shadow: none;
}

.accordion-button::after {
  display: none;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  margin-left: auto;
  content: "";
  background-image: none;
  background-repeat: no-repeat;
  background-size: contain;
  transition: transform .2s ease-in-out;
}

.accordion-button:not(.collapsed)::after {
  display: none;
  background-image: none;
  transform: rotate(90deg);
}

.accordion-button svg {
  margin-left: auto;
  transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) svg {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

.accordion-button:not(.collapsed) svg path {
  fill: var(--forestGreen);
}

.accordion-button:not(.collapsed) svg rect {
  stroke: var(--forestGreen);
}

/* ACCORDION END */


.accordion.active+.panel {
  margin-top: 10px;
}

.panel {
  padding: 0 18px;
  max-height: 0;
  overflow: hidden;
  -webkit-transition: max-height 0.2s ease-out;
  -o-transition: max-height 0.2s ease-out;
  transition: max-height 0.2s ease-out;
}

/*  */

.reporting {
  background-color: #f7f7f7;
  padding: 40px 0;
  position: absolute;
  right: 0px;
  top: 0px;
}

/* .reoprting__title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 30px;
} */

.donation__wrapper {
  position: relative;
}

.donation__inner {
  background-color: #f7f7f7;

}

.who__gallery--title {
  font-weight: 600;
  text-align: center;
  margin-bottom: 30px;
}

.who__gallery--container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.who__gallery--column {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.who__gallery--column img {
  width: 285px;
  height: auto;
}

.section__wrapper-sm.who-we-are {
  padding-bottom: 0;
}

.section__wrapper.who-we-are--green {
  padding-top: 70px;
}

.who-we-are--green .section__pic-desktop {
  width: 581px;
  transform: scale(1) !important;
  margin-left: 20px;
  position: relative;
  z-index: 2;
}

.who-we-are--green .section__pic-desktop-lines {
  position: absolute;
  bottom: -84px;
  right: 0;
  z-index: 1;
}

.who-we-are--green .section__pic-desktop-romb {
  position: absolute;
  top: 12px;
  right: 23px;
  z-index: 1;
}

.section__wrapper-sm.who-we-are--white {
  padding-bottom: 60px;
}

.section__wrapper-sm.who-we-are--gray {
  padding-bottom: 60px;
}

.who-we-are--gray .who-we-are-values {
  margin-top: -100px;
}

.who-we-are--white .section__pic,
.who-we-are--gray .section__pic {
  position: relative;
}

.who-we-are--white .who-we-are-help {
  position: relative;
  z-index: 2;
}

.who-we-are--white .who-we-are-help-mobile {
  display: none;
}

.who-we-are--white .who-we-are-dots {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -40px;
  z-index: 3;
}

.who-we-are--white .who-we-are-line {
  position: absolute;
  left: 40%;
  transform: translateX(-50%);
  bottom: 20px;
  z-index: 3;
}

.who-we-are--white .who-we-are-circle {
  position: absolute;
  right: 20px;
  bottom: -15px;
  z-index: 1;
}

.who-we-are--gray .who-we-are-values-mobile {
  display: none;
}

.who-we-are--gray .who-we-are-line2 {
  position: absolute;
  bottom: 30px;
  right: -60px;
}

.who-we-are--gray .who-we-are-line3 {
  position: absolute;
  left: -80px;
  bottom: 100px;
}

.who-we-are--gray .who-we-are-line4 {
  position: absolute;
  bottom: 60px;
  right: 0;
}

.vacancy-card {
  height: 455px;
  width: 285px;
  border-radius: 12px;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.05);
}

.vacancy-card__picture {
  position: relative;
  width: 100%;
  min-height: 180px;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  overflow: hidden
}

.vacancy-card__picture::after {
  opacity: .7;
  z-index: 2
}

.vacancy-card__bottom {
  padding: 20px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.vacancy-card__title {
  font-weight: 600;
  margin-bottom: 8px;
}

.vacancy-card__caption {
  display: -webkit-box;
  font-size: 14px;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #898989;
}

.vacancy-card__caption li {
  display: list-item;
}

.vacancy-card__caption ul {
  list-style-type: disc;
  list-style: disc;
}

.vacancy-card__text {
  margin-top: 0
}

.vacancy-info__text {
  display: flex;
  flex-direction: column; 
  gap: 20px;
}

.vacancy-info__text ul {
  padding-left: 20px;
  list-style-type: disc;
  list-style: disc;
}

.vacancy__contact-btn {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  background-color: var(--gold);
  border-radius: 6px;
  font-family: "Open Sans";
  font-weight: 600;
  font-size: 16px;
  line-height: 22px;
  text-align: center;
  color: var(--black);
  padding: 16.5px 74.5px;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: inline-block;
}

.section__title-wrapper {
  width: 100%;
  max-width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  margin-bottom: 2rem;
}

.vacancy__btn-wrap.mobile {
  display: none;
}

/* ADAPTIVE */

@media (max-width: 1200px) {

  .who-help .section__pic-desktop {
    display: none;
  }

  .who-help .section__wrapper {
    padding-bottom: 0px;
  }

  .who-help .section__pic-mobile.who-help {
    display: block;
    width: 800px;
    max-width: unset;
    margin-left: -80px;
    height: 400px;
    object-fit: cover;
    object-position: top;
  }

  .who-we-are--green .section__pic-mobile {
    display: block;
    width: 900px;
    max-width: unset;
    margin-top: -100px;
    margin-right: -180px;
  }

  .who-we-are--green .section__pic-desktop-lines,
  .who-we-are--green .section__pic-desktop-romb {
    display: none;
  }

  .who-we-are--white .section__content {
    flex-direction: column-reverse;
  }

  .who-we-are--white .section__content .section__left {
    justify-content: center;
    margin-top: 30px;
  }

  .who-we-are--gray .who-we-are-values {
    margin-top: -30px;
  }
  
  .donation {
    padding-top: 65px;
  }

  .header__inner .menu {
    display: none;
  }

  .user-navigation .search__btn {
    display: none;
  }

  .user-navigation .help__btn {
    display: none;
  }

  .user-navigation .user-login {
    display: none;
  }

  .user-navigation .burger-button {
    display: block;
  }

  .header__mobile-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
  }

  .header__mobile-form {
    width: 100%;
  }

  a.help__btn-mobile {
    max-width: 100%;
  }

  #header__mobile>div>div>nav {
    width: 100%;
  }

  #header__mobile>div>div>nav>ul>li>a::after {
    right: 16px;
    left: auto;
  }
}

@media (max-width: 1160px) {
  .reporting {
    position: static;
  }
}

@media (max-width: 970px) {
  .caf__banner {
   flex-direction: column;
   margin-top: 130px;
  }

  .com__banner {
    flex-direction: column;
    margin-top: 160px;
   }

  .forbes__banner, .certificate__banner {
    flex-direction: column;
    margin-top: 160px;
   }

   .certificate__banner.--right {
    flex-direction: column-reverse;
   }

   .certificate__banner h3 {
    margin-top: 15px;
   }

  .certificate__banner-text,
  .certificate__banner.--right .certificate__banner-text,
  .caf__banner-text,
  .forbes__banner-text,
  .com__banner-text {
    padding: 16px;
    padding-top: 100px;
    transform: none;
  }

  .certificate__outer-img-border {
    position: absolute;
    transform: translate(-50%, -50%);
    left: 50%;
  }

  .caf__banner img {
    position: absolute;
    transform: translate(-50%, -50%);
    left: 50%;
  }

  .com__banner-img-block,
  .forbes__banner-img-block {
    position: absolute;
    transform: translate(-50%, -50%);
    left: 50%;
    width: 200px;
  }

  .hero__text {
    border-radius: 0px;
  }

  .program__wrapper {
    display: block;
  }

  .aside {
    width: 100%;
    padding: 40px 0 0;
  }

  .program__content-midle img {
    margin: 13px auto 30px;
  }

  .map iframe {
    width: 100%;
    height: 600px;
  }

  .donation__top-nav {
    grid-template-columns: repeat(auto-fit, minmax(100%, 1fr));
    gap: 20px;
  }

  .donation__nav-item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    padding: 10px 16px;
    gap: 16px;
    font-size: 16px;
  }

  .donation__nav-item h6 {
    margin: 0;
  }
}

@media (max-width: 768px) {
  .who-we-are--white .who-we-are-help-mobile {
    display: block;
    max-width: unset;
    width: 500px;
  }

  .who-we-are--gray .who-we-are-values-mobile {
    display: block;
    max-width: unset;
    margin-left: -100px;
    width: 600px;
  }
  
  .who-we-are--white .who-we-are-help,
  .who-we-are--white .who-we-are-line,
  .who-we-are--white .who-we-are-circle,
  .who-we-are--white .who-we-are-dots {
    display: none;
  }

  .who-we-are--gray .who-we-are-values,
  .who-we-are--gray .who-we-are-line2,
  .who-we-are--gray .who-we-are-line3,
  .who-we-are--gray .who-we-are-line4 {
    display: none;
  }

  .who-we-are--green .section__pic-mobile {
    transform: scale(0.9);
    margin-right: 0;
    margin-left: -90px;
  }

  .donation__top {
    padding: 20px 0;
  }

  .paymentByCard,
  .bank-transfer,
  .transfer-abroad,
  .pay-crypto,
  .other-payments,
  .reporting {
    padding: 30px 0;
  }

  .donation__title,
  .paymentByCard__title,
  .bank-transfer__title,
  .transfer-abroad__title,
  .pay-crypto__title,
  .other-patments__title {
    font-size: 22px;
  }

  .donation__nav-item svg {
    width: 35px;
    height: 35px;
  }

  .offer__title {
    max-width: 500px;
    font-size: 32px;
    line-height: 42px;
  }

  .news__list {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .program__content-top {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 20px;
  }

  .program__info {
    display: block;
  }

  .program__info .program__help-btn {
    margin-top: 20px;
  }

  .program__info-collect {
    margin-right: 0;
  }

  .program__content-midle img {
    margin: 19px auto 20px;
  }

  .programs__content-nav {
    margin-top: 9px;
  }

  .map iframe {
    height: 500px;
  }

  .regular-payment__inner {
    /* display: flex;
    justify-content: space-between;
    gap: 20px; */
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

}

@media (max-width: 550px) {
  .who__gallery--container {
    grid-template-columns: repeat(2, 1fr);
  }

  .who-help .section__pic-mobile.who-help {
    width: 600px;
    height: 300px;
  }

 .who__gallery--title {
    font-size: 22px;
 }

 .who-we-are--green .section__pic {
  height: 400px;
 }
  
  .who-we-are--green .section__pic-mobile {
    transform: scale(1.1);
    width: 500px;
    margin-left: -50px;
    object-fit: cover;
    margin-top: 0px;
  }

  .who-help .main-btn {
    padding: 16px 20px;
    font-size: 16px;
  }

  .who-help__btn {
    display: none;
  }

  .who-help__btn-mobile {
    display: flex;
    width: 100%;
  }

  .who-help .main-btn.bg-yellow {
    max-width: unset;
   }

  .who-help .section__title {
    text-align: center;
    font-size: 22px;
    line-height: 30px;
  }

  .who-help .section__text {
    font-size: 16px;
  }

  .offer__btn .help__btn,
  .offer__btn .more__btn {
    min-width: 130px;
    margin: 0;
  }

  .partners__logo,
  .charity__logo,
  .donors__logo
   {
    margin: 0 auto;
    min-height: 0;
  }

  .partners__logo img,
  .charity__logo img,
  .donors__logo img{
    width: 84px;
    max-height: 84px;
    /* object-fit: cover; */
  }

  .partners__slider,
  .donors__slider{
    padding: 0;
  }

  .charity__slider {
    padding: 0;
  }

  .programs__top-title {
    font-size: 18px;
    line-height: 25px;
  }

  .programs__top {
    padding-top: 85px;
  }

  .reset-filter {
    font-size: 14px;
    line-height: 19px;
  }

  .filter__item {
    max-width: 80px;
  }

  .filter__item button {
    width: 52px;
    height: 52px;
  }

  .filter__item button svg {
    width: 32px;
    height: 32px;
  }

  .filter__item p {
    font-size: 11px;
    line-height: 15px;
  }

  .programs__content {
    padding: 46px 0 40px;
  }

  .programs__content-nav button {
    font-size: 14px;
    padding: 0 5px 10px;
  }

  .programs__content-nav .program__help-btn {
    padding: 11.5px 14.5px;
    text-align: center;
    width: 120px;
  }

  .map iframe {
    height: 300px;
  }

  .programs__content-title h2 .wrapper-icon {
    width: 42px;
    height: 42px;
    border-width: 1px;
  }

  .programs__content-title h2 .wrapper-icon svg {
    width: 30px;
    height: 30px;
  }

  .bank-transfer__card-top button span {
    display: none;
  }

  .custom-radio {
    width: 38px;
    height: 38px;
    font-size: 13px;
  }

  .currency {
    position: absolute;
    top: -5px;
    right: 0px;
  }

  .enter-amount input {
    padding: 14px 22px;
    font-size: 16px;
    line-height: 21.79px;
  }

  .enter-amount input::-webkit-input-placeholder,
  .enter-amount input::-moz-placeholder,
  .enter-amount input:-ms-input-placeholder,
  .enter-amount input::-ms-input-placeholder,
  .enter-amount input::placeholder {
    font-size: 16px;
  }

  .your-data-form__inputs div input {
    font-size: 16px;
    line-height: 21.79px;
    padding: 11.5px 22px;
  }

  .regular-payment__date input {
    height: 45px;
    padding: 12.5px 22px;
  }
}

@media (max-width: 500px) {
  .copy-all-data {
    width: 100%;
    padding: 13px 24px;
  }

  .submit-form {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
    gap: 10px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }

  .donat-inner {
    grid-template-columns: repeat(auto-fit, minmax(90px, 1fr));
  }

  .submit-btn {
    width: 100%;
  }

  .accordion__wrapper {
    width: 100%;
  }
}

@media (max-width: 425px) {
  .who-we-are--green .section__pic-mobile {
    transform: scale(1);
    margin-top: 20px;
  }

  .small-card {
    max-width: 100%;
  }

  .donation {
    padding-top: 60px;
  }

  .offer {
    bottom: 300px;
    width: 90%;
  }

  .offer__title {
    max-width: 250px;
    font-weight: 600;
    font-size: 28px;
    line-height: 38px;
  }

  .offer__btn {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .offer__btn a {
    width: 100%;
  }

  .header__logo {
    margin-right: 25px;
    gap: 0 9px;
  }

  .header__logo-img {
    width: 33px;
    height: 18px;
  }

  .header__logo-link img {
    height: 30px;
    width: 123px;
    display: inline-block;
  }

  .header__mobile {
    top: 60px;
  }

  .select-language {
    margin-right: 44px;
  }

  .hero {
    padding-top: 60px;
  }

  .hero .slider {
    height: 601px;
  }

  .hero #hero-slider .slick-list {
    height: 601px;
  }

  .assist {
    padding: 0 0 40px;
  }

  .assist__items {
    display: block;
  }

  .assist__item {
    max-width: 100%;
    padding: 20px 14px;
  }

  .assist__item svg {
    width: 70px;
    height: 70px;
  }

  .assist__item-buttons {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .assist__item-buttons a {
    width: 100%;
  }

  .assist__item:not(:first-child) {
    margin-top: 20px;
  }

  .assist__title,
  .map__title,
  .news__title,
  .partners__title,
  .charity__title,
  .achievement__title,
  .donors__title {
    font-size: 24px;
    line-height: 33px;
  }

  .assist__item-buttons a {
    min-width: 118px;
  }

  .assist__item-buttons .help__btn {
    padding: 9px 13px;
  }

  .assist__item-buttons .details__btn {
    padding: 9px;
  }

  .hero__text p {
    font-size: 18px;
    line-height: 25px;
  }

  .hero__text {
    padding: 30px 0px;
  }

  .assist__item-title {
    font-size: 16px;
    line-height: 22px;
  }

  .assist__item-text {
    font-size: 14px;
    line-height: 19px;
  }

  .assist__item-text span {
    font-size: 16px;
    line-height: 22px;
  }

  .achievement {
    padding: 40px 0;
  }

  .achievement__item {
    max-width: 284px;
  }

  .achievement__item:nth-child(1) .achievement__item-img {
    background-image: url("../img/budget-mobile.svg");
    width: 70px;
    height: 70px;
  }

  .achievement__item:nth-child(2) .achievement__item-img {
    background-image: url("../img/monthly-mobile.svg");
    width: 70px;
    height: 70px;
  }

  .achievement__item:nth-child(3) .achievement__item-img {
    background-image: url("../img/support-mobile.svg");
    width: 70px;
    height: 70px;
  }

  .achievement__item:nth-child(4) .achievement__item-img {
    background-image: url("../img/child-mobile.svg");
    width: 70px;
    height: 70px;
  }

  .achievement__item b {
    font-size: 24px;
    line-height: 32px;
    margin: 10px 40px;
    padding-bottom: 4px;
    color: inherit !important;
    text-decoration: none !important;
  }

  .achievement__item b::after {
    width: 100%;
  }

  .achievement__item b span {
    font-size: 16px;
    line-height: 22px;
  }

  .achievement__item p {
    font-size: 14px;
    line-height: 19px;
  }

  .news {
    padding-top: 60px;
  }

  .news__list-item {
    max-width: 100%;
  }

  .partners,
  .donors {
    padding: 40px 0;
  }

  .charity {
    padding: 40px 0 103px;
  }

  .offer__btn {
    gap: 0 20px;
  }

  .map {
    padding: 40px 0;
  }

  .map iframe {
    height: 300px;
  }

  .partners__slider .slick-dots,
  .donors__slider .slick-dots {
    bottom: -30px;
  }

  .charity__slider-item {
    height: 120px;
  }

  .charity__logo img {
    width: 110px;
  }

  .program {
    padding: 80px 0 20px;
  }

  .program__title {
    font-size: 22px;
    line-height: 30px;
  }

  .program__presentation-btn {
    padding: 14px 21px 14px 63px;
  }

  .program__help-btn {
    display: block;
  }

  .program__text {
    margin-top: 20px;
  }

  .program__content-bottom {
    margin-top: 30px;
  }

  .aside .news__list {
    margin-top: 20px;
  }

  .program__item-buttons {
    gap: 20px;
  }

  .program__item-buttons a {
    width: 100%;
    text-align: center;
    padding: 12px 9px;
  }

  .program__item-content .program__info .program__info-collect {
    margin: 16px 0;
  }

  .program__info-collect p {
    font-size: 20px;
  }

  .program__remains-collect p {
    font-size: 15px;
  }

  .programs__top {
    padding-top: 80px;
  }

  .programs__content-title h2 {
    font-size: 22px;
    line-height: 30px;
  }

  .programs__content-title h2 .wrapper-icon {
    width: 42px;
    height: 42px;
  }

  .programs__content-title h2 svg {
    width: 30px;
    height: 30px;
  }

  .program__info .program__help-btn {
    width: 100%;
    padding: 14px 20px;
  }

  .nav-button {
    padding: 8px 20px;
    font-size: 16px;
  }

  .donation-card__title,
  .your-data-form__title,
  .regular-payment__title {
    font-size: 20px;
  }

  .your-data-form__inputs div input {
    font-size: 16px;
  }

  .regular-payment__regularity div label span,
  .regular-payment__regularity div label {
    width: 100%;
  }

  .donation-card,
  .bank-transfer__card {
    padding: 20px 14px;
  }

  .donat-inner {
    grid-template-columns: repeat(auto-fit, minmax(70px, 1fr));
  }

  .custom-radio-sum svg {
    -webkit-transform: translateY(0px);
    -ms-transform: translateY(0px);
    transform: translateY(0px);
  }
  
  .vacancy-card {
    height: 434px;
  }

  .section__title-wrapper {
    justify-content: start;
  }

  .vacancy__btn-wrap {
    display: none;
  }

  .vacancy__btn-wrap.mobile {
    display: block;
  }
}

#liqpay_widget_popup_background {
  display: none;
}
#liqpay_widget_popup_container {
  display: none;
}