@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;600&display=swap");
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  scroll-behavior: smooth;
  font-family: "Georgia", sans-serif;
  font-weight: 400;
  font-style: normal;
}

body {
  width: 100%;
  overflow-x: hidden;
}

main {
  position: relative;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

section {
  padding-top: 80px;
  padding-bottom: 100px;
}

h2 {
  font-size: 35px;
  line-height: 130%;
  letter-spacing: 0.06em;
  color: #545454;
}

/* link_active */
/* Auto layout */
.burger {
  display: none;
  z-index: 10;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.burger.open {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}
.burger span {
  width: 30px;
  height: 2px;
  background-color: #f1cdb3;
}

aside#burgerMenu.open .burger-menu {
  right: 0;
}
aside#burgerMenu.open .burger-menu-overlay {
  display: block;
}

.burger-menu {
  margin: auto;
  text-decoration: none;
  font-weight: 400;
  font-size: 32px;
  line-height: 1.6;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #292929;
  z-index: 9;
  width: 320px;
  height: 100vh;
  position: fixed;
  top: 0;
  right: -100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.burger-menu-overlay {
  background: rgba(41, 41, 41, 0.6);
  right: 0;
  top: 0;
  width: 100%;
  height: 110%;
  position: absolute;
  display: none;
}
.burger-menu-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.burger-menu-item {
  list-style-type: none;
  border-bottom: 3px solid transparent;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
}
.burger-menu-item a {
  color: #cdcdcd;
  font-family: "Arial", sans-serif;
  text-decoration: none;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
}
.burger-menu-item a:hover {
  color: #fafafa;
}
.burger-menu-item__inactive {
  border-bottom: 3px solid #f1cdb3;
}
.burger-menu-item__inactive .burger-menu_link {
  color: #fafafa;
}
.burger-menu-item__inactive:hover {
  cursor: default;
}

header {
  padding-top: 30px;
  height: 120px;
}
header .header-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
header .header-logo {
  text-decoration: none;
}
header .header-logo:hover {
  cursor: pointer;
}
header .header-logo_title {
  font-size: 32px;
  line-height: 110%;
  letter-spacing: 0.06em;
  color: #f1cdb3;
}
header .header-logo_subtitle {
  font-family: "Arial", sans-serif;
  margin-top: 10px;
  text-align: center;
  font-size: 13px;
  letter-spacing: 0.1em;
  color: #fff;
}
header .header-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  list-style-type: none;
  padding: 0;
  -webkit-column-gap: 35px;
     -moz-column-gap: 35px;
          column-gap: 35px;
}
header .header-menu_item {
  list-style-type: none;
  border-bottom: 3px solid transparent;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
}
header .header-menu_item__inactive {
  border-bottom: 3px solid #f1cdb3;
}
header .header-menu_item__inactive .header-menu_link {
  color: #fafafa;
}
header .header-menu_item__inactive:hover {
  cursor: default;
}
header .header-menu_link {
  font-family: "Arial", sans-serif;
  text-decoration: none;
  font-size: 15px;
  line-height: 1.6;
  color: #cdcdcd;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
}
header .header-menu_link:hover {
  color: #fafafa;
}

.start {
  padding: 0;
  position: relative;
}
.start-container {
  height: 100%;
  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-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.start::before {
  content: "";
  position: absolute;
  top: -120px;
  left: 0;
  width: 100%;
  height: calc(100% + 120px);
  background: url("../img/bg/start-screen-gradient-background.jpg") no-repeat center center;
  background-size: cover;
  z-index: -1;
}
.start-wrapper {
  height: 100%;
  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;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.start-content {
  margin-top: -15px;
  width: 460px;
  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-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 42px;
}
.start-bg {
  margin-top: 60px;
  width: 698px;
  -ms-flex-item-align: end;
      align-self: flex-end;
  margin-left: auto;
}
.start-heading {
  font-size: 44px;
  color: #fff;
  letter-spacing: 0em;
}
.start-descr {
  font-family: "Arial", sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: #cdcdcd;
}
.start-button {
  text-decoration: none;
  font-size: 17px;
  line-height: 22px;
  letter-spacing: 0.06em;
  color: #292929;
  text-align: center;
  border-radius: 100px;
  padding: 15px;
  width: 208px;
  height: 52px;
  background: #f1cdb3;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.start-button:hover {
  background: #fddcc4;
  cursor: pointer;
}

.about-wrapper {
  margin-top: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 120px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.about-content {
  width: 430px;
}
.about-article {
  margin-top: 25px;
}
.about p {
  margin-top: 25px;
  font-family: "Arial", sans-serif;
  font-size: 15px;
  line-height: 24px;
  color: #4c4c4c;
}

.pets {
  background: #f6f6f6;
}
.pets-container {
  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-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 60px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.pets-heading {
  text-align: center;
  max-width: 400px;
}
.pets-button {
  border-radius: 100px;
  padding: 15px 40px;
  width: 261px;
  height: 52px;
  background: #f1cdb3;
  font-size: 17px;
  letter-spacing: 0.05em;
  line-height: 1.3;
  text-align: center;
  color: #292929;
  text-decoration: none;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.pets-button:hover {
  background: #fddcc4;
  cursor: pointer;
}
.pets-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}

.slider {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  gap: 12px;
}
.slider_arrow {
  font-size: 20px;
  color: #cdcdcd;
  border-radius: 100px;
  border: 2px solid #f1cdb3;
  width: 52px;
  height: 52px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.slider_arrow svg {
  width: 14px;
  height: 6px;
}
.slider_arrow svg path {
  fill: #292929;
}
.slider_arrow__inactive {
  border: 2px solid #cdcdcd;
}
.slider_arrow__inactive svg path {
  fill: #cdcdcd;
}
.slider_arrow__active {
  color: #292929;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.slider_arrow__active:hover {
  cursor: pointer;
  border: 2px solid #fddcc4;
  background: #fddcc4;
}
.slider_arrow__active svg path {
  fill: #292929;
}
.slider_arrow__current {
  color: #292929;
  background: #f1cdb3;
}
.slider-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 435px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  overflow: hidden;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 90px;
}
.slider-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -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;
  border-radius: 9px;
  width: 270px;
  -webkit-transform: scale(0.95);
          transform: scale(0.95);
  height: 435px;
  background: #fafafa;
  opacity: 0;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.slider-item:hover {
  background: #fff;
  -webkit-transform: scale(1);
          transform: scale(1);
  cursor: pointer;
}
.slider-item:hover .slider-item_button {
  border: 2px solid #fddcc4;
  background: #fddcc4;
}
.slider-item_active {
  opacity: 1;
}
.slider-item_element {
  margin-bottom: 30px;
}
.slider-item_img {
  border-radius: 9px 9px 0 0;
  width: 270px;
  height: 270px;
}
.slider-item_name {
  text-transform: capitalize;
  font-size: 20px;
  letter-spacing: 0.06em;
  color: #545454;
}
.slider-item_button {
  text-decoration: none;
  font-size: 17px;
  line-height: 1;
  letter-spacing: 0.06em;
  color: #292929;
  text-align: center;
  border: 2px solid #f1cdb3;
  border-radius: 100px;
  padding: 15px;
  width: 187px;
  height: 52px;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

.help-container {
  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-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 60px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.help-heading {
  text-align: center;
  max-width: 310px;
}
.help-wrapper {
  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;
  -webkit-column-gap: 120px;
     -moz-column-gap: 120px;
          column-gap: 120px;
  row-gap: 55px;
}
.help-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;
  gap: 30px;
}
.help-item_icon {
  height: 60px;
  width: 60px;
}
.help-item_title {
  font-size: 20px;
  line-height: 1.15;
  letter-spacing: 0.06em;
  text-align: center;
  color: #545454;
}

.donation {
  background: #f6f6f6;
}
.donation-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
}
.donation-content {
  max-width: 380px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
.donation-subtitle {
  font-size: 15px;
  line-height: 1.1;
  letter-spacing: 0.06em;
  color: #545454;
}
.donation-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-item-align: start;
      align-self: flex-start;
  background: #f1cdb3;
  border-radius: 9px;
  padding: 10px 15px;
  width: auto;
  gap: 15px;
}
.donation-card_number {
  text-decoration: none;
  font-size: 20px;
  line-height: 1.15;
  letter-spacing: 0.05em;
  color: #545454;
}
.donation-card_number:hover {
  cursor: pointer;
}
.donation-descr {
  font-family: "Arial", sans-serif;
  font-style: italic;
  font-weight: 400;
  font-size: 12px;
  line-height: 1.5;
  color: #b2b2b2;
}

.footer {
  padding-top: 40px;
  background: url("../img/bg/footer-gradient-background.png") no-repeat center center;
  background-size: cover;
}
.footer-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  gap: 155px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.footer-contentbox {
  margin-top: 16px;
  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-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 234px;
}
.footer-contentbox_1 {
  width: 279px;
}
.footer-contentbox_2 {
  width: 301px;
}
.footer-contentbox_heading {
  font-family: "Georgia", sans-serif;
  font-weight: 400;
  font-size: 35px;
  line-height: 1.3;
  letter-spacing: 0.06em;
  color: #fff;
}
.footer-contentbox_line {
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.footer-contentbox_line:hover .footer-contentbox_descr {
  color: #fddcc4;
}
.footer-contentbox_descr {
  font-family: "Georgia", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.15;
  letter-spacing: 0.06em;
  color: #f1cdb3;
}
.footer-img {
  -ms-flex-item-align: end;
      align-self: flex-end;
  margin-left: auto;
}

.modal {
  background: rgba(41, 41, 41, 0.6);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.modal-close {
  position: absolute;
  top: -52px;
  right: -43px;
  border-radius: 100px;
}
.modal-close svg {
  -webkit-transition: all 1s;
  transition: all 1s;
}
.modal-close svg:hover {
  cursor: pointer;
  fill: #f1cdb3;
}
.modal-close:hover {
  cursor: pointer;
  fill: #f1cdb3;
}
.modal-window {
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  margin: 0;
  z-index: 999;
  width: 900px;
  border-radius: 9px;
  -webkit-box-shadow: 0 2px 35px 14px rgba(13, 13, 13, 0.04);
          box-shadow: 0 2px 35px 14px rgba(13, 13, 13, 0.04);
  background: #fafafa;
}
.modal-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.modal-img {
  border-radius: 9px 0 0 9px;
  width: 50%;
  /* Чтобы сохранить пропорции */
  -o-object-fit: cover;
     object-fit: cover;
}
.modal-content {
  padding: 50px 20px 30px 30px;
  font-family: "Georgia", sans-serif;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: #000;
  width: 350px;
}
.modal-content_header {
  font-size: 35px;
  line-height: 1.3;
}
.modal-content_subheader {
  padding-top: 10px;
  font-size: 20px;
  line-height: 1.15;
}
.modal-content_descr {
  font-size: 15px;
  line-height: 1.1;
  padding: 40px 0;
}
.modal-content_additional {
  padding-bottom: 10px;
  font-weight: 700;
  line-height: 1.1;
}
.modal-content_additional:before {
  content: "•";
  padding-right: 10px;
  color: #f1cdb3;
}
.modal-content_additional span {
  font-weight: 400;
}

.pets_page .burger span {
  background-color: #000;
}
.pets_page .header-logo_title {
  color: #545454;
}
.pets_page .header-logo_subtitle {
  color: #292929;
}
.pets_page .header-menu_item__inactive .header-menu_link {
  color: #292929;
}
.pets_page .header-menu_link {
  color: #545454;
}
.pets_page .header-menu_link:hover {
  color: #292929;
}
.pets_page .header-menu_link__inactive .header-menu_link {
  color: #fafafa;
}
.pets_page .pets-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}
.pets_page .slider {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 60px;
}
.pets_page .slider-wrapper {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 40px;
  row-gap: 30px;
  height: 900px;
}

@media (max-width: 1240px) {
  .container {
    padding: 0 30px;
  }
  .start-content {
    padding-top: 40px;
  }
  .start-bg {
    margin-top: 100px;
    width: 570px;
  }
  .start-button {
    -ms-flex-item-align: center;
        align-self: center;
  }
  .slider-wrapper {
    gap: 40px;
  }
  .footer {
    padding-top: 30px;
  }
  .footer-container {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 60px;
  }
  .footer-contentbox {
    margin-top: 0;
  }
  .footer-img {
    margin-left: 0;
  }
}
@media (max-width: 949px) {
  .container {
    padding: 0 30px;
  }
  .about-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 80px;
  }
  .help-wrapper {
    -webkit-column-gap: 60px;
       -moz-column-gap: 60px;
            column-gap: 60px;
  }
  .help-item {
    width: 170px;
  }
  .donation-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 60px;
  }
  .pets_page .pets {
    padding-bottom: 75px;
  }
  .pets_page .pets-container {
    gap: 30px;
  }
  .pets_page .slider {
    gap: 40px;
  }
  .pets_page .slider-wrapper {
    height: 1365px;
  }
  .modal-window {
    width: 630px;
  }
  .modal-content {
    padding: 10px;
    width: 260px;
  }
  .modal-content_descr {
    padding: 20px 0;
    font-size: 13px;
  }
  .modal-content_additional {
    padding-bottom: 5px;
  }
}
@media (max-width: 767px) {
  h2 {
    font-size: 25px;
    text-align: center;
  }
  .container {
    padding: 0 10px;
  }
  section {
    padding-top: 41px;
    padding-bottom: 42px;
  }
  .burger {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .burger-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  header .header-wrapper {
    padding: 0 10px;
  }
  header .header-menu {
    display: none;
  }
  .start-content {
    margin: 0;
    padding-top: 30px;
  }
  .start-heading {
    font-size: 25px;
    letter-spacing: 0.06em;
  }
  .start-descr {
    text-align: center;
  }
  .start-bg {
    margin-top: 105px;
    width: 260px;
  }
  .about-wrapper {
    gap: 40px;
  }
  .about-content {
    padding: 0 15px;
    width: 100%;
  }
  .about-article {
    text-align: justify;
  }
  .about p {
    margin-top: 22px;
  }
  .pets-container {
    gap: 42px;
  }
  .main_page .slider {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-column-gap: 80px;
       -moz-column-gap: 80px;
            column-gap: 80px;
    row-gap: 20px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .main_page .slider-wrapper {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .main_page .slider_arrow__rigth {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
  .main_page .slider_arrow__left {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .pets_page .pets {
    padding-bottom: 42px;
  }
  .pets_page .pets-container {
    gap: 42px;
  }
  .pets_page .pets-nav {
    gap: 10px;
  }
  .help-container {
    gap: 42px;
  }
  .help-wrapper {
    gap: 30px;
  }
  .help-item {
    width: 130px;
    gap: 20px;
  }
  .help-item_icon {
    height: 50px;
    width: 50px;
  }
  .help-item_title {
    font-size: 15px;
  }
  .donation-container {
    gap: 42px;
  }
  .donation-content {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .donation-subtitle {
    letter-spacing: 0em;
    text-align: center;
    line-height: 1.6;
  }
  .donation-card {
    -ms-flex-item-align: center;
        align-self: center;
  }
  .donation-card_number {
    font-size: 15px;
  }
  .donation-descr {
    padding: 0 10px;
    text-align: justify;
  }
  .donation .donation-img {
    width: 100%;
  }
  .footer-container {
    gap: 40px;
  }
  .footer-contentbox {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 210px;
  }
  .footer-contentbox_2 {
    height: 220px;
  }
  .footer-contentbox_2 h3 {
    width: 270px;
  }
  .footer-contentbox_2 a {
    -ms-flex-item-align: start;
        align-self: start;
  }
  .footer-contentbox_heading {
    font-size: 25px;
    text-align: center;
  }
  .modal-close {
    right: -31px;
  }
  .modal-window {
    width: 240px;
  }
  .modal-img {
    display: none;
  }
  .modal-content {
    padding: 10px;
  }
  .modal-content_header {
    text-align: center;
  }
  .modal-content_subheader {
    text-align: center;
  }
  .modal-content_descr {
    text-align: justify;
  }
  .modal-content_additional {
    font-size: 15px;
    padding-bottom: 5px;
  }
}
@media (max-width: 468px) {
  .start-content {
    width: 100%;
  }
  .about-image {
    width: 260px;
  }
  .help-wrapper {
    width: 290px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .donation-img {
    width: 260px;
  }
  .footer-img {
    width: 260px;
  }
}
@media (max-width: 310px) {
  .help-wrapper {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}/*# sourceMappingURL=style.css.map */