@charset "UTF-8";
/*** LAYOUT ***/
/*** BUTTONS ***/
/*** FONTS ***/
/*** MEDIA QUERIES ***/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none;
}
*::after, *::before {
  box-sizing: border-box;
}

html {
  font-size: 10px;
  scroll-behavior: smooth;
}

body {
  position: relative;
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 2.4rem;
  font-family: Arial, Helvetica, sans-serif;
}
body.no-scroll {
  overflow: hidden;
}

h1 {
  font-weight: 400;
  font-size: 3.2rem;
  line-height: 3.5rem;
  font-family: "Georgia", "Times New Roman", Times, serif;
  letter-spacing: 0.06em;
  color: #F1CDB3;
}

h2 {
  font-weight: 400;
  font-size: 4.4rem;
  line-height: 5.7rem;
  font-family: "Georgia", "Times New Roman", Times, serif;
  color: #FFFFFF;
}
@media only screen and (max-width: 425px) {
  h2 {
    font-weight: 400;
    font-size: 2.5rem;
    line-height: 3.2rem;
    font-family: "Georgia", "Times New Roman", Times, serif;
    letter-spacing: 0.06em;
  }
}

h3 {
  font-weight: 400;
  font-size: 3.5rem;
  line-height: 4.5rem;
  font-family: "Georgia", "Times New Roman", Times, serif;
  letter-spacing: 0.06em;
  color: #545454;
}
@media only screen and (max-width: 470px) {
  h3 {
    font-weight: 400;
    font-size: 2.5rem;
    line-height: 3.2rem;
    font-family: "Georgia", "Times New Roman", Times, serif;
    letter-spacing: 0.06em;
  }
}

h4 {
  font-weight: 400;
  font-size: 2rem;
  line-height: 2.3rem;
  font-family: "Georgia", "Times New Roman", Times, serif;
  letter-spacing: 0.06em;
  color: #545454;
}

h5, .donation__bank {
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 1.7rem;
  font-family: "Georgia", "Times New Roman", Times, serif;
  letter-spacing: 0.06em;
  color: #545454;
}
@media only screen and (max-width: 425px) {
  h5, .donation__bank {
    font-weight: 400;
    font-size: 1.5rem;
    line-height: 2.4rem;
    font-family: "Georgia", "Times New Roman", Times, serif;
    letter-spacing: 0;
  }
}

a {
  text-decoration: none;
  color: inherit;
}

.wrapper {
  max-width: 1200px;
  margin: 0 auto;
}
@media only screen and (max-width: 1279px) {
  .wrapper {
    max-width: none;
    padding: 0 40px;
  }
}
@media only screen and (max-width: 1024px) {
  .wrapper {
    padding: 0 30px;
  }
}
@media only screen and (max-width: 425px) {
  .wrapper {
    padding: 0 10px;
  }
}

.header__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0;
  padding-top: 30px;
  padding-bottom: 30px;
}
@media only screen and (max-width: 425px) {
  .header__wrapper {
    padding: 30px 20px;
  }
}
.header__logo {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  flex-direction: column;
  transition: opacity 0.3s ease;
}
.header__logo:hover {
  opacity: 0.7;
}
.header__subtitle {
  font-weight: 400;
  font-size: 1.3rem;
  line-height: 1.5rem;
  font-family: Arial, Helvetica, sans-serif;
  color: #FFFFFF;
  letter-spacing: 0.1em;
}
.header__navigation {
  transition: all 0.5s;
}
@media only screen and (max-width: 767px) {
  .header__navigation {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transform: translateX(100vw);
  }
}
.header__navigation.active-menu {
  position: absolute;
  top: 0;
  left: 0;
  width: 320px;
  height: 100vh;
  overflow-x: hidden;
  z-index: 2;
  background: #292929;
  transform: translateX(calc(100vw - 320px));
}
.header__navigation .navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 36px;
  padding-bottom: 5px;
}
@media only screen and (max-width: 767px) {
  .header__navigation .navigation {
    flex-direction: column;
    padding-top: 248px;
  }
}
.header__navigation .navigation__link {
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 2.4rem;
  font-family: Arial, Helvetica, sans-serif;
  color: #CDCDCD;
  transition: color 0.5s ease;
}
@media only screen and (max-width: 767px) {
  .header__navigation .navigation__link {
    font-weight: 400;
    font-size: 3.2rem;
    line-height: 5.1rem;
    font-family: Arial, Helvetica, sans-serif;
  }
}
.header__navigation .navigation__link:hover {
  color: #FAFAFA;
}
.header__navigation .navigation__link_active {
  cursor: initial;
  padding-bottom: 5px;
  border-bottom: 3px solid #F1CDB3;
  color: #FAFAFA;
}
.header__burger-menu {
  cursor: pointer;
  display: none;
  position: relative;
  width: 30px;
  height: 22px;
  transition: transform 0.5s;
}
@media only screen and (max-width: 767px) {
  .header__burger-menu {
    display: initial;
  }
}
.header__burger-menu.active-menu {
  z-index: 3;
  transform: rotate(90deg);
}
.header__burger-menu .burger-menu__line, .header__burger-menu .burger-menu__line::after, .header__burger-menu .burger-menu__line::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #F1CDB3;
}
.header__burger-menu .burger-menu__line::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
}
.header__burger-menu .burger-menu__line::after {
  content: "";
  position: absolute;
  top: 20px;
  left: 0;
}
.header__blackout {
  position: absolute;
  top: 0;
  left: 0;
  position: fixed;
  width: 100vw;
  height: 100vh;
  opacity: 0.4;
  background: #292929;
  display: none;
  transition: all 0.5s;
}
.header__blackout.active-menu {
  display: initial;
}

button, .link-button {
  cursor: pointer;
  width: 207px;
  height: 52px;
  border-radius: 100px;
  border: 2px solid #F1CDB3;
  outline: none;
  background: inherit;
  font-family: "Georgia", "Times New Roman", Times, serif;
  font-size: 1.7rem;
  line-height: 2.2rem;
  letter-spacing: 0.06em;
  color: #292929;
  transition: background 0.5s ease;
}
button:hover, .link-button:hover {
  border: 2px solid #FDDCC4;
  background: #FDDCC4;
}

.button_colored {
  border: 2px solid #F1CDB3;
  background: #F1CDB3;
}

.link-button {
  display: block;
  background: #F1CDB3;
  text-align: center;
  padding: 13px 0;
}

.slider-button {
  cursor: pointer;
  display: inline-block;
  width: 52px;
  height: 52px;
  border: 2px solid #F1CDB3;
  border-radius: 100px;
  text-align: center;
  font-weight: 500;
  line-height: 4.8rem;
  color: #292929;
}
.slider-button:hover:enabled {
  border: 2px solid #FDDCC4;
  background: #FDDCC4;
}
.slider-button:disabled {
  cursor: initial;
  pointer-events: none;
  border: 2px solid #CDCDCD;
  color: #CDCDCD;
}

button, .link-button {
  cursor: pointer;
  width: 207px;
  height: 52px;
  border-radius: 100px;
  border: 2px solid #F1CDB3;
  outline: none;
  background: inherit;
  font-family: "Georgia", "Times New Roman", Times, serif;
  font-size: 1.7rem;
  line-height: 2.2rem;
  letter-spacing: 0.06em;
  color: #292929;
  transition: background 0.5s ease;
}
button:hover, .link-button:hover {
  border: 2px solid #FDDCC4;
  background: #FDDCC4;
}

.button_colored {
  border: 2px solid #F1CDB3;
  background: #F1CDB3;
}

.link-button {
  display: block;
  background: #F1CDB3;
  text-align: center;
  padding: 13px 0;
}

.slider-button {
  cursor: pointer;
  display: inline-block;
  width: 52px;
  height: 52px;
  border: 2px solid #F1CDB3;
  border-radius: 100px;
  text-align: center;
  font-weight: 500;
  line-height: 4.8rem;
  color: #292929;
}
.slider-button:hover:enabled {
  border: 2px solid #FDDCC4;
  background: #FDDCC4;
}
.slider-button:disabled {
  cursor: initial;
  pointer-events: none;
  border: 2px solid #CDCDCD;
  color: #CDCDCD;
}

.popup {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  position: fixed;
  width: 100vw;
  height: 100vh;
  z-index: 1;
  background: rgba(41, 41, 41, 0.6);
}
.popup.active {
  display: initial;
}
.popup__wrapper {
  position: absolute;
  top: 50vh;
  left: 50vw;
  transform: translate(-50%, -50%);
  z-index: 2;
  border-radius: 9px;
  background: #FAFAFA;
  box-shadow: 0px 2px 35px 14px rgba(13, 13, 13, 0.04);
}
@media only screen and (max-width: 1024px) {
  .popup__wrapper {
    width: 630px;
    height: 350px;
  }
}
@media only screen and (max-width: 470px) {
  .popup__wrapper {
    width: 240px;
    height: 390px;
  }
}
.popup__close {
  position: absolute;
  top: -50px;
  left: 890px;
  font-weight: 400;
  font-size: 24px;
  line-height: 24px;
  z-index: 2;
  font-weight: 700;
  transform: rotate(45deg);
  background: none;
}
@media only screen and (max-width: 1024px) {
  .popup__close {
    top: -45px;
    left: 626px;
  }
}
@media only screen and (max-width: 470px) {
  .popup__close {
    left: 220px;
    top: -53px;
  }
}
.popup__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 29px;
  align-items: stretch;
  height: 100%;
}
@media only screen and (max-width: 1024px) {
  .popup__content {
    gap: 11px;
  }
}
@media only screen and (max-width: 470px) {
  .popup__content {
    align-items: center;
  }
}
.popup__image {
  min-width: 500px;
  border-radius: 9px 0px 0px 9px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media only screen and (max-width: 1024px) {
  .popup__image {
    min-width: 350px;
  }
}
@media only screen and (max-width: 470px) {
  .popup__image {
    display: none;
  }
}
.popup__info {
  min-width: 350px;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  flex-direction: column;
  align-items: flex-start;
  padding: 50px 20px 88px 0;
}
@media only screen and (max-width: 1024px) {
  .popup__info {
    min-width: 260px;
    gap: 20px;
    padding: 10px 8px 37px 0;
  }
}
@media only screen and (max-width: 470px) {
  .popup__info {
    min-width: 220px;
    align-items: center;
    padding: 10px;
  }
}
.popup__info * {
  color: #000000;
}
.popup__name {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  flex-direction: column;
  align-items: flex-start;
}
@media only screen and (max-width: 470px) {
  .popup__name {
    align-items: center;
  }
}
@media only screen and (max-width: 470px) {
  .popup__subtitle {
    text-align: center;
  }
}
@media only screen and (max-width: 1024px) {
  .popup__description {
    font-weight: 400;
    font-size: 1.3rem;
    line-height: 1.4rem;
    font-family: "Georgia", "Times New Roman", Times, serif;
  }
}
@media only screen and (max-width: 470px) {
  .popup__description {
    text-align: justify;
    letter-spacing: 0.06em;
  }
}
.popup__features {
  list-style: circle;
}
.popup__feature {
  margin-bottom: 6px;
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 1.7rem;
  font-family: "Georgia", "Times New Roman", Times, serif;
  letter-spacing: 0.06em;
}
.popup__feature::before {
  content: "•";
  margin-right: 10px;
  color: #F1CDB3;
}

.pets__card {
  position: relative;
  border-radius: 9px;
  background: #FAFAFA;
  transition: box-shadow 0.8s ease;
}
@media only screen and (max-width: 470px) {
  .pets__card {
    margin-bottom: 30px;
  }
}
.pets__card:hover {
  cursor: pointer;
  background: #FFFFFF;
  box-shadow: 0px 2px 35px 14px rgba(13, 13, 13, 0.04);
}
.pets__card:hover .card__button {
  border: 2px solid #FDDCC4;
  background: #FDDCC4;
  pointer-events: none;
}
.pets__card .card__image {
  display: block;
  max-width: 270px;
  min-height: 270px;
  -o-object-fit: cover;
     object-fit: cover;
}
.pets__card .card__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  flex-direction: column;
  padding: 30px 0 30px;
  width: 100%;
}
.pets__card .card__button {
  width: 187px;
}

@media only screen and (max-width: 1024px) {
  .help__card {
    width: 170px;
  }
}
@media only screen and (max-width: 470px) {
  .help__card {
    width: 130px;
  }
}
.help__card .card__image {
  display: block;
  width: 60px;
  height: 60px;
  margin: 0 auto 30px;
}
@media only screen and (max-width: 470px) {
  .help__card .card__image {
    width: 50px;
    height: 50px;
  }
}
@media only screen and (max-width: 425px) {
  .help__card .card__image {
    margin-bottom: 20px;
  }
}
.help__card .card__name {
  text-align: center;
}
@media only screen and (max-width: 425px) {
  .help__card .card__name {
    font-weight: 400;
    font-size: 1.5rem;
    line-height: 1.7rem;
    font-family: "Georgia", "Times New Roman", Times, serif;
  }
}

.footer {
  background: url(../../assets/images/background-noise.png), radial-gradient(110.67% 538.64% at 5.73% 50%, #513D2F 0%, #1A1A1C 100%), #211F20;
}
.footer__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0;
  align-items: flex-start;
  padding-top: 40px;
}
@media only screen and (max-width: 1024px) {
  .footer__wrapper {
    flex-wrap: wrap;
    gap: 62px 30px;
    padding: 30px 63px 0;
  }
}
@media only screen and (max-width: 767px) {
  .footer__wrapper {
    justify-content: center;
    -moz-column-gap: 60px;
         column-gap: 60px;
  }
}
@media only screen and (max-width: 470px) {
  .footer__wrapper {
    row-gap: 40px;
  }
}
.footer__contacts, .footer__addresses {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 17px;
}
@media only screen and (max-width: 1024px) {
  .footer__contacts, .footer__addresses {
    padding-top: 0;
  }
}
@media only screen and (max-width: 470px) {
  .footer__contacts, .footer__addresses {
    align-items: center;
  }
}
.footer__contacts {
  max-width: 280px;
}
.footer__addresses {
  max-width: 302px;
  gap: 33px;
}
@media only screen and (max-width: 470px) {
  .footer__addresses {
    gap: 40px;
  }
}
@media only screen and (max-width: 470px) {
  .footer__addresses .footer__title {
    padding: 0 15px;
  }
}
.footer__title {
  color: #FFFFFF;
}
@media only screen and (max-width: 470px) {
  .footer__title {
    text-align: center;
  }
}
.footer__contact, .footer__address {
  display: inline-block;
  position: relative;
  padding-left: 60px;
  line-height: 3.2rem;
  height: 32px;
  vertical-align: middle;
  color: #F1CDB3;
  transition: opacity 0.3s ease;
}
.footer__contact:hover, .footer__address:hover {
  opacity: 0.7;
}
.footer__contact::before, .footer__address::before {
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 32px;
  top: 50%;
  transform: translateY(-50%);
}
.footer__contact.mail::before, .footer__address.mail::before {
  content: url(../../assets/icons/mail.svg);
  margin-top: 3px;
}
.footer__contact.phone::before, .footer__address.phone::before {
  content: url(../../assets/icons/phone.svg);
}
.footer__address {
  box-sizing: content-box;
  min-width: 260px;
  padding-left: 42px;
}
.footer__address::before {
  content: url(../../assets/icons/pin.svg);
  width: 22px;
  height: 32px;
}
a:first-of-type .footer__address {
  height: 46px;
  line-height: 2.3rem;
}
.footer__image {
  max-width: 300px;
  min-width: 260px;
}
@media only screen and (max-width: 1024px) {
  .footer__image {
    margin: 0 auto;
  }
}
.footer__image img {
  display: block;
  width: 100%;
}

.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

.promo {
  padding-top: 180px;
  background: url(../../assets/images/background-noise.png), radial-gradient(100% 215.42% at 0% 0%, #5B483A 0%, #262425 100%), #211F20;
}
@media only screen and (max-width: 1024px) {
  .promo {
    padding-top: 150px;
  }
}
.promo__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 42px;
  width: 100%;
}
@media only screen and (max-width: 1024px) {
  .promo__wrapper {
    flex-direction: column;
    gap: 100px;
  }
}
@media only screen and (max-width: 425px) {
  .promo__wrapper {
    gap: 106px;
  }
}
.promo__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 42px;
  flex-direction: column;
  align-items: flex-start;
  margin-top: -80px;
  max-width: 460px;
  flex-shrink: 0;
}
@media only screen and (max-width: 1024px) {
  .promo__content {
    margin-top: 0px;
  }
}
.promo__title {
  max-width: 310px;
}
@media only screen and (max-width: 425px) {
  .promo__title {
    max-width: 200px;
    margin: 0 auto;
    text-align: center;
  }
}
.promo__description {
  color: #CDCDCD;
}
@media only screen and (max-width: 425px) {
  .promo__description {
    text-align: center;
  }
}
@media only screen and (max-width: 1024px) {
  .promo__button {
    align-self: center;
  }
}
@media only screen and (max-width: 1024px) {
  .promo__image {
    align-self: flex-end;
  }
}
.promo__image img {
  display: block;
  width: 100%;
}
@media only screen and (max-width: 1024px) {
  .promo__image {
    max-width: 569px;
  }
}
@media only screen and (max-width: 425px) {
  .promo__image {
    max-width: 260px;
  }
}

.about__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 120px;
  justify-content: center;
  padding-top: 80px;
  padding-bottom: 100px;
}
@media only screen and (max-width: 1024px) {
  .about__wrapper {
    flex-direction: column;
    gap: 80px;
  }
}
@media only screen and (max-width: 425px) {
  .about__wrapper {
    gap: 41px;
    padding-top: 42px;
    padding-bottom: 42px;
  }
}
.about__image {
  display: block;
}
@media only screen and (max-width: 425px) {
  .about__image {
    max-width: 260px;
  }
}
.about__info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 25px;
  flex-direction: column;
  align-items: flex-start;
  max-width: 430px;
}
@media only screen and (max-width: 1024px) {
  .about__info {
    order: -1;
  }
}
@media only screen and (max-width: 425px) {
  .about__info {
    max-width: 300px;
  }
}
@media only screen and (max-width: 425px) {
  .about__title {
    align-self: center;
    text-align: center;
  }
}
.about__description {
  color: #545454;
}
@media only screen and (max-width: 425px) {
  .about__description {
    padding: 0 15px;
    text-align: justify;
  }
}
@media only screen and (max-width: 425px) {
  .about__description:last-of-type {
    margin-top: -3px;
  }
}

.pets {
  position: relative;
  background: #F6F6F6;
}
.pets__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
  flex-direction: column;
  padding-top: 80px;
  padding-bottom: 100px;
  position: relative;
}
@media only screen and (max-width: 470px) {
  .pets__wrapper {
    gap: 42px;
    padding-top: 42px;
    padding-bottom: 42px;
  }
}
.pets__title {
  max-width: 400px;
  text-align: center;
}
.pets__slider {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 53px;
  width: 100%;
}
@media only screen and (max-width: 1024px) {
  .pets__slider {
    gap: 12px;
  }
}
@media only screen and (max-width: 470px) {
  .pets__slider {
    flex-direction: column;
    position: relative;
  }
}
.pets__prev, .pets__next {
  flex-shrink: 0;
}
@media only screen and (max-width: 470px) {
  .pets__prev, .pets__next {
    position: absolute;
    top: 455px;
    left: 19%;
  }
}
.pets__prev {
  rotate: 180deg;
}
@media only screen and (max-width: 470px) {
  .pets__next {
    left: 63%;
  }
}
.pets__gallery-wrapper {
  position: relative;
  width: 990px;
  overflow: hidden;
}
@media only screen and (max-width: 1279px) {
  .pets__gallery-wrapper {
    width: 580px;
  }
}
@media only screen and (max-width: 767px) {
  .pets__gallery-wrapper {
    width: 270px;
  }
}
.pets__gallery {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 90px;
  position: relative;
  left: -1080px;
}
@media only screen and (max-width: 1279px) {
  .pets__gallery {
    gap: 0 40px;
    left: -620px;
  }
}
@media only screen and (max-width: 767px) {
  .pets__gallery {
    left: -310px;
    order: -1;
  }
}
@keyframes move-left {
  from {
    left: -1080px;
  }
  to {
    left: 0;
  }
}
@keyframes move-left-desktop {
  from {
    left: -620px;
  }
  to {
    left: 0;
  }
}
@keyframes move-left-tablet {
  from {
    left: -310px;
  }
  to {
    left: 0;
  }
}
.pets__gallery.go-prev {
  animation-name: move-left;
  animation-duration: 2s;
}
@media only screen and (max-width: 1279px) {
  .pets__gallery.go-prev {
    animation-name: move-left-desktop;
  }
}
@media only screen and (max-width: 767px) {
  .pets__gallery.go-prev {
    animation-name: move-left-tablet;
  }
}
@keyframes move-right {
  from {
    left: -1080px;
  }
  to {
    left: -2160px;
  }
}
@keyframes move-right-desktop {
  from {
    left: -620px;
  }
  to {
    left: -1240px;
  }
}
@keyframes move-right-tablet {
  from {
    left: -310px;
  }
  to {
    left: -620px;
  }
}
.pets__gallery.go-next {
  animation-name: move-right;
  animation-duration: 2s;
}
@media only screen and (max-width: 1279px) {
  .pets__gallery.go-next {
    animation-name: move-right-desktop;
  }
}
@media only screen and (max-width: 767px) {
  .pets__gallery.go-next {
    animation-name: move-right-tablet;
  }
}
.pets__cards {
  display: flex;
  gap: 90px;
  width: 100%;
}
@media only screen and (max-width: 1279px) {
  .pets__cards {
    gap: 40px;
  }
}
@media only screen and (max-width: 767px) {
  .pets__cards {
    gap: 40px;
  }
}
.pets__button {
  width: 261px;
}
@media only screen and (max-width: 470px) {
  .pets__button {
    margin-top: 42px;
  }
}

.help__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
  flex-direction: column;
  padding-top: 80px;
  padding-bottom: 100px;
}
@media only screen and (max-width: 470px) {
  .help__wrapper {
    gap: 42px;
    padding-top: 42px;
    padding-bottom: 42px;
  }
}
.help__title {
  max-width: 310px;
  text-align: center;
}
@media only screen and (max-width: 470px) {
  .help__title {
    max-width: 222px;
  }
}
.help__variants {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 120px;
  row-gap: 55px;
  justify-content: center;
  align-content: center;
  flex-wrap: wrap;
  width: 100%;
}
@media only screen and (max-width: 1024px) {
  .help__variants {
    -moz-column-gap: 60px;
         column-gap: 60px;
  }
}
@media only screen and (max-width: 470px) {
  .help__variants {
    justify-content: space-between;
    gap: 30px;
    padding-left: 5px;
    padding-right: 5px;
  }
}

.donation {
  background: #F6F6F6;
}
.donation__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  justify-content: center;
  padding-top: 80px;
  padding-bottom: 100px;
}
@media only screen and (max-width: 1024px) {
  .donation__wrapper {
    flex-direction: column;
    gap: 60px;
  }
}
@media only screen and (max-width: 470px) {
  .donation__wrapper {
    gap: 42px;
    padding-top: 42px;
    padding-bottom: 42px;
  }
}
.donation__image img {
  display: block;
  width: 100%;
}
@media only screen and (max-width: 470px) {
  .donation__image {
    max-width: 260px;
  }
}
.donation__info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-direction: column;
  align-items: flex-start;
  max-width: 380px;
}
@media only screen and (max-width: 1024px) {
  .donation__info {
    gap: 20px;
    order: -1;
  }
}
@media only screen and (max-width: 470px) {
  .donation__info {
    max-width: 300px;
    align-items: center;
  }
}
@media only screen and (max-width: 470px) {
  .donation__title {
    text-align: center;
  }
}
.donation__card {
  position: relative;
  border-radius: 9px;
  background: #F1CDB3;
  transition: background 0.5s ease;
}
.donation__card:hover {
  background: #FDDCC4;
}
.donation__card .card__number {
  padding: 10px 15px 10px 60px;
}
@media only screen and (max-width: 470px) {
  .donation__card .card__number {
    font-weight: 400;
    font-size: 1.5rem;
    line-height: 1.7rem;
    font-family: "Georgia", "Times New Roman", Times, serif;
    padding-top: 13px;
    padding-bottom: 13px;
  }
}
.donation__card .card__number::before {
  content: url(../../assets/icons/credit-card.svg);
  position: absolute;
  top: 10px;
  left: 15px;
}
.donation__description {
  font-weight: 400;
  font-size: 1.2rem;
  line-height: 1.8rem;
  font-family: Arial, Helvetica, sans-serif;
  font-style: italic;
  color: #B2B2B2;
}
@media only screen and (max-width: 470px) {
  .donation__description {
    padding-left: 10px;
    padding-right: 10px;
    text-align: justify;
  }
}/*# sourceMappingURL=style.css.map */