body {
  background-color: #fff;
  color: #222;
}

.wrapper {
  min-height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.main {
  flex: 1 1 auto;
  min-height: 100%;
  height: 100%;
}

.container {
  max-width: 1140px;
  /*1110px + 30px*/
  padding: 0 15px;
  margin: 0 auto;
}

.hidden {
  overflow: hidden;
}


/* btn */

.btn {
  text-align: center;
  display: inline-block;
  color: #FFF;
  font-family: 'Montserrat';
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 25px;
  text-transform: uppercase;

  padding: 15px 35px;
  border-radius: 50px;
  background-color: #E570AB;
  transition: background-color 234ms;
}

@media (max-width: 448px) {
  .btn {
    width: 100%;
  }
}

.btn:hover {
  background-color: #e4308a;
  transition: background-color 234ms;
}

/* burger */

.burger {
  display: none;
  width: 25px;
  height: 15px;

  position: relative;
  z-index: 9999;
  background-color: transparent;
}

@media (max-width: 716px) {
  .burger {
    display: block;
  }
}

.burger>span {
  transition: transform 234ms, top 234ms, bottom 234ms;
  width: 100%;
  height: 2px;
  background-color: #E570AB;
  border-radius: 2px;

  position: absolute;
  left: 0;
}

.burger>span:nth-child(1) {
  top: 0;
}

.burger>span:nth-child(2) {
  top: 50%;
  transform: scale(1) translateY(-50%);
}

.burger>span:nth-child(3) {
  bottom: 0;
}

/* Burger--active */

.burger--active>span {
  background-color: #222;
  transition: transform 234ms, top 234ms, bottom 234ms;
}

.burger--active>span:nth-child(1) {
  top: 7px;
  transform: rotate(45deg);
}

.burger--active>span:nth-child(2) {
  top: 50%;
  transform: scale(0) translateY(-50%);
}

.burger--active>span:nth-child(3) {
  bottom: 6px;
  transform: rotate(-45deg);
}


/* header/Шапка */

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #fff;
  z-index: 9999;

}

.header__wrapper {
  min-height: 85px;

  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

@media (max-width: 410px) {
  .header__logo {
    width: 100px;
  }
}

.header__inner {
  display: flex;
  align-items: center;
  gap: 25px;
}

@media (max-width: 716px) {
  .header__menu {
    background-color: #E570AB;
    position: absolute;
    top: -100vh;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 999;

    display: flex;
    justify-content: center;
    align-items: center;
    transition: top 234ms;

  }

  .header__menu--active {
    top: 0;
    transition: top 234ms;
  }
}



.header__menu-list {
  display: flex;
  align-items: center;
  gap: 25px;
}

@media (max-width: 716px) {
  .header__menu-list {
    flex-direction: column;
    gap: 40px;
  }
}

.header__menu-link {
  color: #222;
  font-family: 'Montserrat';
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  position: relative;
}

@media (max-width: 716px) {
  .header__menu-link {
    font-size: 20px;
  }
}

.header__menu-link::after {
  content: "";
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background-color: #222;

  position: absolute;
  left: 0;
  bottom: -10px;

  transform: scale(0);
  transition: transform 234ms;
}

.header__menu-link:hover::after {
  content: "";
  transform: scale(1);
  transition: transform 234ms;
}

.header__btn {
  color: #FFF;
  font-family: 'Montserrat';
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px;

  padding: 10px 20px;
  border-radius: 100px;
  background-color: #E570AB;
  transition: background-color 234ms;

}

@media (max-width: 410px) {
  .header__btn {
    font-size: 14px;
    padding: 7px 10px;
  }
}

.header__btn:hover {
  background-color: #e4308a;
  transition: background-color 234ms;
}


/* section hero */
.hero {
  background: url("../img/bg/hero-bg.jpg") center /cover no-repeat;
}

.hero__wrapper {
  padding: 160px 0 75px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 45px;
}

@media (max-width: 1081px) {
  .hero__wrapper {
    flex-wrap: wrap;
  }
}

@media (max-width: 556px) {
  .hero__wrapper {
    padding: 111px 0 23px 0;
  }
}

.hero__image {
  max-width: 540px;
  max-height: 480px;
}

.hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__text {
  padding-left: 15px;
  display: flex;
  flex-direction: column;
}

@media (max-width: 1081px) {
  .hero__text {
    padding-left: 0;
    text-align: center;
    align-items: center;

  }
}


.hero__title {
  max-width: 540px;

  color: #FFF;
  font-family: 'Gabriela';
  font-size: 42px;
  font-style: normal;
  font-weight: 400;
  line-height: 50px;
  margin-bottom: 25px;
}

@media (max-width: 556px) {
  .hero__title {
    font-size: 8vw;
    line-height: normal;
    margin-bottom: 18px;
  }
}

.hero__subtitle {
  color: #FFF;
  font-family: 'Montserrat';
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 25px;
  margin-bottom: 50px;
}

@media (max-width: 556px) {
  .hero__subtitle {
    font-size: 16px;
    line-height: normal;
    margin-bottom: 30px;
  }
}

.hero__buttons {
  max-width: 235px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

@media (max-width: 448px) {
  .hero__buttons {
    max-width: 100%;
    width: 100%;
  }

  .hero__btn {
    width: 100%;
  }
}

.hero__link {
  color: #FFF;
  font-family: 'Montserrat';
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 25px;
  /* 138.889% */
  text-transform: uppercase;
  position: relative;
}

.hero__link::after {
  content: "";
  width: 100%;
  height: 4px;
  border-radius: 2px;
  background-color: #fff;

  position: absolute;
  left: 0;
  bottom: -10px;

  transform: scale(0);
  transition: transform 234ms;
}

.hero__link:hover::after {
  content: "";
  transform: scale(1);
  transition: transform 234ms;
}

/* section donation */

.donation {
  background: url("../img/bg/donation-bg.jpg") center /cover no-repeat;
}

.donation__wrapper {
  padding: 100px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media (max-width: 715px) {
  .donation__wrapper {
    padding: 50px 0;
  }
}

.donation__list {}

.donation__item {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 76px;
}

@media (max-width: 715px) {
  .donation__item {
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 30px;
  }

  .donation__item:nth-child(2n)>.donation__item-image {
    order: 1;
  }

  .donation__item:nth-child(2n)>.donation__item-desc {
    order: 2;
  }

}





.donation__item-image {
  max-width: 350px;
  max-height: 282px;
}

.donation__item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.donation__item-desc {
  color: #222;
  font-family: 'Montserrat';
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 25px;
  max-width: 350px;
}

@media (max-width: 324px) {
  .donation__item-desc {
    font-size: 18px;
    text-align: center;
  }
}

.donation__item-desc span {
  font-weight: 700;
}

.donation__text {
  padding: 10px;
  color: #333;
  text-align: center;
  font-family: 'Montserrat';
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 25px;

  border-radius: 5px;
  background: #FFF;
  max-width: 730px;
  margin-bottom: 30px;
}

.donation__btn {}


/* about */

.about {
  background-color: #fff;
}

.about__wrapper {
  padding: 50px 0;
}


.about__title {
  color: #222;
  text-align: center;
  font-family: 'Gabriela';
  font-size: 36px;
  font-style: normal;
  font-weight: 400;
  line-height: 45px;
  margin-bottom: 40px;
}

.about__inner {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  justify-content: center;
}

@media (max-width: 925px) {
  .about__inner {
    flex-wrap: wrap;
  }
}

.about__image {
  max-width: 350px;
  max-height: 350px;
}

.about__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about__desc {
  max-width: 540px;
  color: #222;
  font-family: 'Montserrat';
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 25px;
}

.about__desc span {
  display: inline-block;
  margin-bottom: 10px;
}

/* stock */


.stock {
  background: url("../img/bg/stock-bg.jpg") center /cover no-repeat;
}

.stock__wrapper {
  padding: 100px 0;
}

@media (max-width: 1025px) {
  .stock__wrapper {
    padding: 50px 0;
  }
}

.stock__title {
  color: #FFF;
  text-align: center;
  font-family: 'Gabriela';
  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  line-height: 45px;
  margin-bottom: 25px;
}

@media (max-width: 586px) {
  .stock__title {
    font-size: 8vw;
    line-height: normal;
  }
}

.stock__subtitle {
  color: #FFF;
  text-align: center;
  font-family: 'Montserrat';
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
  margin-bottom: 75px;
}

@media (max-width: 586px) {
  .stock__subtitle {
    font-size: 16px;
  }
}

.stock__list {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  margin-bottom: 75px;
}

@media (max-width: 1025px) {
  .stock__list {
    flex-wrap: wrap;
    justify-content: center;
  }
}

.stock__item {
  flex: 0 1 350px;

  text-align: center;
}

.stock__item-image {
  margin-bottom: 15px;

}

.stock__item-image img {
  height: 150px;
}


.stock__item-desc {
  color: #FFF;
  text-align: center;
  font-family: 'Montserrat';
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 25px;
}

.stock__item-desc span {
  font-weight: 700;
}

.stock__icons {}

.stock__icons-title {
  color: #FFF;
  text-align: center;
  font-family: 'Gabriela';
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: 40px;
  margin-bottom: 25px;
}

@media (max-width: 586px) {
  .stock__icons-title {
    font-size: 8vw;
    line-height: normal;
  }
}

.stock__icons-list {
  display: flex;
  align-items: center;
  gap: 30px;
}

@media (max-width: 1025px) {
  .stock__icons-list {
    flex-wrap: wrap;
    justify-content: center;
  }
}

/* to-whom */

.to-whom {
  background-color: #F6F2FF;
}

.to-whom__wrapper {
  padding: 50px 0;
}

.to-whom__title {
  color: #333;
  text-align: center;
  font-family: 'Gabriela';
  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  line-height: 45px;
  margin-bottom: 75px;
}

.to-whom__swiper {
  position: relative;
  margin-bottom: 115px;
}

.to-whom__slider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

@media (max-width: 1050px) {
  .to-whom__slider {
    flex-wrap: wrap;
    justify-content: center;
  }
}

.to-whom__slider-image {
  max-width: 350px;
  max-height: 350px;
}

.to-whom__slider-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.to-whom__slider-text {
  max-width: 540px;
}

.to-whom__slider-name {
  color: #333;
  font-family: 'Gabriela';
  font-size: 28px;
  font-style: normal;
  font-weight: 400;
  line-height: 35px;
  margin-bottom: 15px;
}

.to-whom__slider-desc {
  color: #222;
  font-family: 'Montserrat';
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 25px;
  /* 156.25% */
}

.to-whom__swiper-button-prev {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}

@media (max-width: 339px) {
  .to-whom__swiper-button-prev {
    top: 37%;
  }
}

@media (max-width: 280px) {
  .to-whom__swiper-button-prev {
    top: 28%;
  }
}

.to-whom__swiper-button-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
}

@media (max-width: 339px) {
  .to-whom__swiper-button-next {
    top: 37%;
  }
}

@media (max-width: 280px) {
  .to-whom__swiper-button-next {
    top: 28%;
  }
}

.swiper-button-next::after,
.swiper-button-prev::after {
  display: none;
}

.to-whom__form {
  padding: 15px;
  max-width: 1000px;
  width: 100%;
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.26);

  display: flex;
  flex-direction: column;
  align-items: center;
}

.to-whom__form-title {
  color: #222;
  text-align: center;
  font-family: 'Montserrat';
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 25px;
  margin-bottom: 10px;
}

.to-whom__form-list {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  margin-bottom: 10px;
  max-width: 100%;
  width: 100%;
}

@media (max-width: 405px) {
  .to-whom__form-list {
    flex-wrap: wrap;
  }
}

.to-whom__form-item {
  max-width: 100px;
  width: 100%;
  color: #222;
  text-align: center;
  font-family: 'Montserrat';
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #999;
  cursor: pointer;
  transition: color 234ms, border 234ms;
}

@media (max-width: 405px) {
  .to-whom__form-item {
    max-width: 100%;
  }
}

.to-whom__form-item:hover {
  color: #E570AB;
  border: 1px solid #E570AB;
  transition: color 234ms, border 234ms;
}

.to-whom__form-item--active {
  color: #E570AB;
  border: 1px solid #E570AB;
}

.to-whom__form-label {
  display: inline-block;
  position: relative;
  max-width: 430px;
  width: 100%;
  min-height: 60px;
  margin-bottom: 10px;
}

.to-whom__form-label>span {
  color: #666;
  text-align: center;
  font-family: 'Montserrat';
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 15px;

  position: absolute;
  top: 10px;
  left: 10px;
}

.to-whom__form-input {
  padding: 30px 10px 10px 10px;
  border-radius: 5px;
  border: 1px solid #999;
  max-width: 430px;
  width: 100%;
  height: 60px;

  color: #222;
  text-align: left;
  font-family: 'Montserrat';
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  transition: border 234ms;
}

.to-whom__form-input:focus {
  border: 1px solid #E570AB;
  transition: border 234ms;
}

.to-whom__form-input:hover {
  border: 1px solid #E570AB;
  transition: border 234ms;
}

.to-whom__form-button {
  padding: 15px;
  color: #FFF;
  font-family: 'Montserrat';
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 25px;
  text-transform: uppercase;
  border-radius: 50px;
  background: #E570AB;
  transition: background-color 234ms;
}

.to-whom__form-button:hover {
  background-color: #e4308a;
  transition: background-color 234ms;
}




/* section foundation */


.foundation {
  background-color: #fff;
}

.foundation__wrapper {
  padding: 50px 0;
}

.foundation__title {
  color: #222;
  text-align: center;
  font-family: 'Gabriela';
  font-size: 36px;
  font-style: normal;
  font-weight: 400;
  line-height: 45px;
  margin-bottom: 40px;
}

.foundation__inner {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  justify-content: center;
}

@media (max-width: 681px) {
  .foundation__inner {
    flex-wrap: wrap;
  }
}

.fondation__image {
  max-width: 160px;
  max-height: 160px;
}

.fondation__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.foundation__desc {
  max-width: 540px;
  color: #222;
  font-family: 'Montserrat';
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 25px;
  margin-bottom: 10px;
}

.foundation__desc span {
  display: inline-block;
  margin-bottom: 10px;
}

.foundation__desc-link {
  color: #E570AB;
}


.foundation__socials-title {
  color: #222;
  font-family: 'Montserrat';
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 25px;
  margin-bottom: 10px;
}

.foundation__socials-list {
  display: flex;
  align-items: center;
  gap: 15px;
}

.foundation__socials-link svg {
  padding: 10px;
  border-radius: 50%;
  border: 1px solid red;
  width: 40px;
  height: 40px;
}


/* footer */

.footer {
  background: #222;
}

.footer__wrapper {
  min-height: 70px;
  display: flex;
  justify-content: flex-end;
  align-items: center;

}

.footer__copy {
  color: #FFF;
  font-family: 'Montserrat';
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
}