:root {
  --color-light-xl: #ffffff;
  --color-light-l: #f6f6f6;
  --color-light-s: #fafafa;
  --color-dark-s: #cdcdcd;
  --color-dark-m: #b2b2b2;
  --color-dark-l: #545454;
  --color-dark-xl: #4c4c4c;
  --color-dark-2xl: #444444;
  --color-dark-3xl: #292929;
  --color-primary-light: #fddcc4;
  --color-primary: #f1cdb3;
  --fs-7: 44px;
  --fs-6: 35px;
  --fs-5: 32px;
  --fs-4: 20px;
  --fs-3: 17px;
  --fs-2: 15px;
  --fs-1: 13px;
  --fs-0: 12px;
  --lh-8: 57.2px;
  --lh-7: 45px;
  --lh-6: 35.2px;
  --lh-5: 24px;
  --lh-4: 23px;
  --lh-3: 22.1px;
  --lh-2: 18px;
  --lh-1: 16.5px;
  --lh-0: 14.95px;
}

.button-primary, .button-circle-primary, .button-secondary, .button-circle-secondary {
  border: 0;
  outline: 0;
  padding: 15px 45px;
  border-radius: 100px;
  font-size: var(--fs-3);
  line-height: var(--lh-3);
  letter-spacing: 1.02px;
  color: var(--color-dark-3xl);
  background-color: var(--color-primary);
  transition: all 0.2s ease-in-out;
}
.button-primary:not(:disabled):hover, .button-circle-primary:not(:disabled):hover, .button-secondary:not(:disabled):hover, .button-circle-secondary:not(:disabled):hover {
  background-color: var(--color-primary-light);
  cursor: pointer;
}

.button-secondary, .button-circle-secondary {
  background-color: transparent;
  outline: 2px solid var(--color-primary);
  outline-offset: -2px;
}
.button-secondary:not(:disabled):hover, .button-circle-secondary:not(:disabled):hover {
  outline-color: var(--color-primary-light);
}

.button-circle-secondary {
  min-width: 52px;
  min-height: 52px;
  padding: 0;
  font-size: var(--fs-4);
  line-height: var(--lh-4);
}
.button-circle-secondary:disabled {
  min-width: 52px;
  min-height: 52px;
  padding: 0;
  font-size: var(--fs-4);
  line-height: var(--lh-4);
  border: 0;
  outline: 2px solid var(--color-dark-s);
  outline-offset: -2px;
  background-color: var(--color-light-l);
  color: var(--color-dark-s);
  border-radius: 50%;
}

.button-circle-primary {
  min-width: 52px;
  min-height: 52px;
  padding: 0;
  font-size: var(--fs-4);
  line-height: var(--lh-4);
}

.button-burger-icon {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 22px;
  align-self: center;
  background: none;
  outline: 0;
  border: 0;
  z-index: 0;
  transition: z-index 0.2s step-end, rotate 0.2s ease-in-out;
}
@media screen and (max-width: 767px) {
  .button-burger-icon {
    display: flex;
    position: absolute;
    top: 48px;
    right: 21px;
  }
}
.button-burger-icon_active {
  rotate: -90deg;
  z-index: 2;
  transition: z-index 0.2s step-start, rotate 0.2s ease-in-out;
}
.button-burger-icon__line {
  width: 100%;
  height: 2.5px;
  background-color: var(--color-primary);
}
.button-burger-icon__line_black {
  background-color: #000;
}

.credit-card {
  font-size: var(--fs-4);
  line-height: var(--lh-4);
  color: var(--color-dark-l);
  background-color: var(--color-primary);
  letter-spacing: 1.2px;
  padding: 10px 15px 10px 60px;
  border-radius: 9px;
  background-image: url(../../img/icons/credit-card.svg);
  background-repeat: no-repeat;
  background-position: 15px;
  transition: all 0.2s ease-in-out;
}
@media screen and (max-width: 767px) {
  .credit-card {
    font-size: var(--fs-2);
    line-height: var(--lh-1);
    letter-spacing: 1px;
    white-space: nowrap;
    padding: 13px 15px 13px 60px;
  }
}
.credit-card:hover {
  cursor: pointer;
  background-color: var(--color-primary-light);
  color: var(--color-dark-3xl);
}

.email-address,
.phone-number,
.address {
  font-size: var(--fs-4);
  line-height: var(--lh-4);
  letter-spacing: 1.2px;
  color: var(--color-primary);
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}
.email-address:hover,
.phone-number:hover,
.address:hover {
  color: var(--color-primary-light);
}

.popup-container {
  display: none;
  justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.popup-container_active {
  display: flex;
}
.popup-container .popup {
  display: flex;
  flex-direction: row;
  justify-content: center;
  background-color: var(--color-light-s);
  border-radius: 9px;
  width: 240px;
  align-self: center;
  position: relative;
  z-index: 99;
}
@media screen and (min-width: 768px) {
  .popup-container .popup {
    width: 630px;
  }
}
@media screen and (min-width: 1280px) {
  .popup-container .popup {
    width: 900px;
  }
}
.popup-container .popup__button {
  position: absolute;
  top: -52px;
  right: -30px;
}
@media screen and (min-width: 768px) {
  .popup-container .popup__button {
    right: -43px;
  }
}
@media screen and (min-width: 1280px) {
  .popup-container .popup__button {
    right: -43px;
  }
}
.popup-container .popup__image {
  display: none;
  border-radius: 9px;
}
@media screen and (min-width: 768px) {
  .popup-container .popup__image {
    display: block;
    width: 350px;
    height: 350px;
  }
}
@media screen and (min-width: 1280px) {
  .popup-container .popup__image {
    display: block;
    width: 500px;
    height: 500px;
  }
}
.popup-container .popup__content {
  align-self: center;
  color: #000;
  padding: 10px 10px 11px;
}
@media screen and (min-width: 768px) {
  .popup-container .popup__content {
    align-self: flex-start;
    padding-right: 5px;
  }
}
@media screen and (min-width: 1280px) {
  .popup-container .popup__content {
    padding: 52px 20px 0 28px;
  }
}
.popup-container .popup__name {
  font-size: var(--fs-6);
  line-height: 45px;
  letter-spacing: 2.1px;
  text-align: center;
  margin-bottom: 10px;
}
@media screen and (min-width: 768px) {
  .popup-container .popup__name {
    text-align: left;
  }
}
.popup-container .popup__type-and-breed {
  font-size: var(--fs-4);
  line-height: var(--lh-4);
  letter-spacing: 1.2px;
  text-align: center;
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .popup-container .popup__type-and-breed {
    text-align: left;
  }
}
@media screen and (min-width: 1280px) {
  .popup-container .popup__type-and-breed {
    margin-bottom: 40px;
  }
}
.popup-container .popup__info {
  font-size: var(--fs-1);
  line-height: 14px;
  letter-spacing: 0.78px;
  text-align: justify;
  margin-bottom: 24px;
}
@media screen and (min-width: 768px) {
  .popup-container .popup__info {
    margin-bottom: 20px;
    text-align: left;
  }
}
@media screen and (min-width: 1280px) {
  .popup-container .popup__info {
    font-size: var(--fs-2);
    line-height: 17px;
    letter-spacing: 0.9px;
    margin-bottom: 40px;
  }
}
.popup-container .popup__info-list {
  margin-left: 15px;
}
.popup-container .popup__info-list-item {
  font-size: var(--fs-2);
  line-height: 17px;
  letter-spacing: 0.9px;
}
.popup-container .popup__info-list-item:not(:last-child) {
  margin-bottom: 6px;
}
@media screen and (min-width: 1280px) {
  .popup-container .popup__info-list-item:not(:last-child) {
    margin-bottom: 11px;
  }
}
.popup-container .popup__info-list-item span:nth-of-type(1) {
  font-weight: 700;
}

* {
  font-family: Georgia, "Times New Roman", Times, serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 400;
}

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

li::marker {
  color: var(--color-primary);
  font-size: 1rem;
}

.logo__title {
  font-size: var(--fs-5);
  color: var(--color-primary);
  line-height: var(--lh-6);
  letter-spacing: 2px;
  transition: all 0.2s ease-in-out;
}
.logo__title:hover {
  color: var(--color-light-s);
}
.logo__title_color-dark {
  color: var(--color-dark-l);
}
.logo__title_color-dark:hover {
  color: var(--color-dark-m);
}
.logo__subtitle {
  font-family: Arial, Helvetica, sans-serif;
  font-size: var(--fs-1);
  color: var(--color-light-xl);
  line-height: var(--lh-0);
  letter-spacing: 1.3px;
}
.logo__subtitle_color-dark {
  color: var(--color-dark-3xl);
}

.navigation {
  font-size: var(--fs-2);
}
.navigation__links {
  list-style-type: none;
  align-self: center;
}
.navigation__link {
  color: var(--color-dark-s);
  font-family: Arial, Helvetica, sans-serif;
  line-height: var(--lh-5);
  letter-spacing: 0.06px;
  text-decoration: none;
  transition: all 0.2s ease-in-out;
}
@media screen and (max-width: 767px) {
  .navigation__link {
    font-size: var(--fs-5);
    line-height: var(--lh-6);
    position: relative;
  }
}
.navigation__link_color-dark {
  color: var(--color-dark-l);
}
.navigation__link_color-dark:hover {
  color: var(--color-dark-3xl) !important;
}
@media screen and (max-width: 767px) {
  .navigation__link_active::after {
    position: absolute;
    top: 41px;
    display: block;
    content: "";
    width: 100%;
    height: 3px;
    background-color: var(--color-primary);
  }
}
.navigation__link_active {
  color: var(--color-light-s);
  pointer-events: none;
}
.navigation__link_active_color-dark {
  color: var(--color-dark-3xl);
}
.navigation__link_active::after {
  display: block;
  content: "";
  width: 100%;
  height: 3px;
  background-color: var(--color-primary);
}
.navigation__link:hover {
  color: var(--color-light-s);
}

.module__title {
  font-size: var(--fs-6);
  color: var(--color-dark-l);
  line-height: var(--lh-7);
  letter-spacing: 2.1px;
  transition: all 0.2s ease-in-out;
}
@media screen and (max-width: 767px) {
  .module__title {
    font-size: 25px;
    line-height: 32.5px;
    letter-spacing: 1.5px;
  }
}
.module__title_start {
  font-size: var(--fs-7);
  color: var(--color-light-xl);
  line-height: var(--lh-8);
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  .module__title_start {
    font-size: 25px;
    line-height: 32.5px;
    letter-spacing: 1.5px;
  }
}
.module__title_footer {
  color: var(--color-light-xl);
}
@media screen and (max-width: 767px) {
  .module__title_footer {
    max-width: 278px;
    white-space: initial;
  }
}
.module__subtitle {
  font-family: Arial, Helvetica, sans-serif;
  font-size: var(--fs-2);
  color: var(--color-dark-xl);
  line-height: var(--lh-5);
}
.module__subtitle_start {
  color: var(--color-dark-s);
}
.module__subtitle_donation {
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: var(--fs-2);
  color: var(--color-dark-l);
  line-height: var(--lh-1);
  letter-spacing: 0.9px;
}
@media screen and (max-width: 767px) {
  .module__subtitle_donation {
    line-height: var(--lh-4);
    letter-spacing: 0px;
  }
}
.module__legal-info {
  font-family: Arial, Helvetica, sans-serif;
  font-size: var(--fs-0);
  line-height: var(--lh-2);
  letter-spacing: unset;
  color: var(--color-dark-m);
  font-style: italic;
  word-wrap: break-word;
}
.module__help-icon-title {
  font-size: var(--fs-4);
  line-height: var(--lh-4);
  letter-spacing: 1.2px;
  color: var(--color-dark-l);
}
@media screen and (max-width: 767px) {
  .module__help-icon-title {
    font-size: var(--fs-2);
    line-height: var(--lh-1);
  }
}

.slider__pet-name {
  font-size: var(--fs-4);
  color: var(--color-dark-l);
  line-height: 22.72px;
  letter-spacing: 1.2px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

.container {
  position: relative;
  overflow: hidden;
}

.logo {
  white-space: nowrap;
}
.logo__title {
  margin-bottom: 10px;
}
.logo__subtitle {
  margin-left: 4px;
}

.header {
  margin: 0 auto;
}
.header_color-light {
  min-height: 120px;
}

.navigation {
  position: absolute;
  top: 0;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 30px 40px;
  width: 100%;
}
@media screen and (max-width: 1279px) {
  .navigation {
    padding: 30px 30px;
  }
}
@media screen and (max-width: 767px) {
  .navigation {
    padding: 30px 20px 0;
  }
}
.navigation_color-light {
  position: unset;
}
.navigation__links {
  display: flex;
  flex-direction: row;
  gap: 35px;
  transition: transform 0.2s ease-in-out;
}
@media screen and (max-width: 767px) {
  .navigation__links {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    row-gap: 56px;
    padding-top: 158px;
    position: fixed;
    top: 0;
    right: 0;
    width: 320px;
    background-color: var(--color-dark-3xl);
    height: 100vh;
    transform: translateX(100%);
  }
  .navigation__links_light-bg {
    background-color: var(--color-light-xl);
  }
  .navigation__links_active {
    transform: translateX(0);
    z-index: 2;
  }
}

.overlay, .popup-overlay {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  z-index: -1;
  background-color: #000;
  opacity: 0;
  transition: z-index 0.2s step-end, opacity 0.2s ease-in-out;
}
.overlay_active, .popup-overlay_active {
  opacity: 0.5;
  z-index: 1;
  transition: z-index 0.2s step-start, opacity 0.2s ease-in-out;
}

.slider {
  width: 1200px;
  height: 435px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin: 60px auto;
}
@media screen and (max-width: 1279px) {
  .slider {
    width: 708px;
  }
}
@media screen and (max-width: 767px) {
  .slider {
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 42px;
    max-width: 320px;
    width: 270px;
    height: 451px;
  }
}
.slider_pets-page {
  height: 100%;
  transition: all 0.5s ease-in-out;
  display: block;
}
@media screen and (min-width: 768px) and (max-width: 1279px) {
  .slider_pets-page {
    padding: 0 64px;
  }
}
@media screen and (max-width: 1279px) {
  .slider_pets-page {
    margin: 30px auto 40px;
  }
}
@media screen and (max-width: 767px) {
  .slider_pets-page {
    margin: 42px auto 0;
  }
}
.slider__cards-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: clip;
}
.slider__cards {
  gap: 0px 90px;
  display: flex;
  position: absolute;
  top: 0;
  left: -56px;
  transform: translateX(-31%);
}
@media screen and (max-width: 1279px) {
  .slider__cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 0px 40px;
  }
}
@media screen and (max-width: 767px) {
  .slider__cards {
    grid-template-columns: 1fr;
    top: 0;
    left: -34px;
  }
}
.slider__cards_pets-page {
  display: grid;
  place-items: center;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px 40px;
  transform: translateX(0);
  position: unset;
}
@media screen and (max-width: 1279px) {
  .slider__cards_pets-page {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 40px;
  }
}
@media screen and (max-width: 767px) {
  .slider__cards_pets-page {
    grid-template-columns: 1fr;
  }
}
.slider__card {
  width: 270px;
  height: 435px;
  background-color: var(--color-light-s);
  border-radius: 9px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 30px;
  transition: all 0.2s ease-in-out;
}
@media screen and (max-width: 1279px) {
  .slider__card_pets-page:nth-last-child(2) {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .slider__card_pets-page {
    margin-bottom: 0px !important;
  }
  .slider__card_pets-page:nth-last-child(-n+4) {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .slider__card {
    margin-bottom: 20px;
  }
}
.slider__card:hover {
  cursor: pointer;
  background-color: var(--color-light-xl);
  box-shadow: 0px 2px 35px 14px rgba(13, 13, 13, 0.04);
}
.slider__card:hover .button-secondary, .slider__card:hover .button-circle-secondary {
  outline-color: var(--color-primary-light);
  background-color: var(--color-primary-light);
}
.slider__button {
  align-self: center;
}
@media screen and (max-width: 1279px) {
  .slider__button:first-child {
    margin-right: 12px;
  }
  .slider__button:last-child {
    margin-left: 12px;
  }
}
@media screen and (max-width: 767px) {
  .slider__button:first-child, .slider__button:last-child {
    order: 1;
  }
  .slider__button:first-child {
    margin-right: 40px;
  }
  .slider__button:last-child {
    margin-left: 40px;
  }
}

.module {
  padding: 80px 40px 100px;
}
@media screen and (max-width: 1279px) {
  .module {
    padding: 80px 30px 100px;
  }
}
@media screen and (max-width: 767px) {
  .module {
    padding: 42px 10px;
  }
}
.module__wrapper {
  display: flex;
  flex-direction: row;
  justify-content: center;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}
@media screen and (max-width: 1279px) {
  .module__wrapper {
    flex-direction: column;
    padding: 0;
  }
}
.module__wrapper_start {
  padding: 0 40px;
}
@media screen and (min-width: 1280px) {
  .module__wrapper_about {
    max-width: 1680px;
  }
}
@media screen and (max-width: 1279px) {
  .module__wrapper_about {
    flex-direction: column-reverse;
  }
}
.module__wrapper_pets {
  flex-direction: column;
  align-items: center;
}
.module__wrapper_help {
  flex-direction: column;
}
@media screen and (max-width: 1279px) {
  .module__wrapper_donation {
    flex-direction: column-reverse;
  }
}
.module__wrapper_footer {
  display: block;
  padding: 40px 40px 0px 40px;
}
@media screen and (max-width: 1279px) {
  .module__wrapper_footer {
    padding: 30px 30px 0px 30px;
  }
}
@media screen and (max-width: 767px) {
  .module__wrapper_footer {
    padding: 30px 10px 0px 10px;
  }
}
.module__content {
  align-items: center;
  transition: all 0.5s ease-in-out;
}
.module__content_start {
  align-self: center;
  padding-bottom: 80px;
}
@media screen and (max-width: 1279px) {
  .module__content_start {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-bottom: 100px;
    max-width: 65%;
  }
}
@media screen and (max-width: 767px) {
  .module__content_start {
    width: unset;
    text-align: center;
    align-items: center;
    padding-bottom: 105px;
    max-width: 100%;
  }
}
.module__content_about {
  max-width: 430px;
  align-self: center;
  margin-left: 120px;
}
@media screen and (min-width: 1280px) {
  .module__content_about {
    max-width: 38%;
  }
}
@media screen and (max-width: 1279px) {
  .module__content_about {
    margin: 0 0 80px 0;
    max-width: 60.7%;
  }
}
@media screen and (max-width: 767px) {
  .module__content_about {
    max-width: 100%;
    padding: 0 15px;
    text-align: justify;
    margin-bottom: 42px;
  }
}
@media screen and (max-width: 1279px) {
  .module__content_pets {
    height: initial;
    margin-bottom: 0;
  }
}
@media screen and (max-width: 767px) {
  .module__content_pets {
    margin-bottom: 36px;
  }
}
.module__content_help {
  height: 431px;
}
.module__content_donation {
  width: 380px;
  align-self: center;
  margin-left: 30px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media screen and (max-width: 1279px) {
  .module__content_donation {
    margin: 0 0 60px 0;
  }
}
@media screen and (max-width: 767px) {
  .module__content_donation {
    width: unset;
    align-items: center;
    padding: 0 10px;
    text-align: justify;
    margin-bottom: 42px;
    max-width: 320px;
  }
}
.module__content_footer {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
}
@media screen and (max-width: 1279px) {
  .module__content_footer {
    flex-wrap: wrap;
    justify-content: center;
    gap: 65px 60px;
  }
}
@media screen and (max-width: 767px) {
  .module__content_footer {
    row-gap: 40px;
    justify-content: center;
  }
}
.module__image_start {
  width: 698px;
  height: 728px;
  align-self: self-end;
  margin-left: 42px;
}
@media screen and (max-width: 1279px) {
  .module__image_start {
    width: 569px;
    height: 593px;
    margin: 0;
  }
}
@media screen and (max-width: 767px) {
  .module__image_start {
    max-width: 87%;
    height: 100%;
  }
}
.module__image_about {
  width: 300px;
  height: 408px;
  align-self: center;
}
@media screen and (max-width: 767px) {
  .module__image_about {
    max-width: 87%;
    height: 100%;
  }
}
.module__image_donation {
  width: 505px;
  height: 261px;
  align-self: center;
}
@media screen and (max-width: 767px) {
  .module__image_donation {
    max-width: 87%;
    height: 100%;
  }
}
.module__image_footer {
  width: 300px;
  height: 310px;
  align-self: self-end;
}
@media screen and (max-width: 767px) {
  .module__image_footer {
    width: 260px;
    height: 269px;
  }
}
.module_start {
  padding: 180px 0 0 0;
  background: url(../../img/noise_transparent@2x.png), radial-gradient(100% 215.42% at 0% 0%, #5b483a 0%, #262425 100%);
}
@media screen and (max-width: 1279px) {
  .module_start {
    padding: 150px 30px 0;
  }
}
@media screen and (max-width: 767px) {
  .module_start {
    padding: 150px 10px 0;
  }
}
.module_pets {
  background-color: var(--color-light-l);
}
@media screen and (max-width: 1279px) {
  .module_pets {
    padding: 80px 30px 100px;
  }
}
@media screen and (max-width: 767px) {
  .module_pets {
    padding: 42px 10px;
  }
}
@media screen and (max-width: 1279px) {
  .module_pets-page {
    padding: 80px 30px 70px;
  }
}
@media screen and (max-width: 767px) {
  .module_pets-page {
    padding: 42px 10px;
  }
}
@media screen and (max-width: 1279px) {
  .module_help {
    padding: 80px 69px 100px;
  }
}
@media screen and (max-width: 767px) {
  .module_help {
    padding: 42px 15px;
  }
}
.module_donation {
  background-color: var(--color-light-l);
}
.module_footer {
  padding: 40px 40px 0 40px;
  background: url(../../img/noise_transparent@2x.png), radial-gradient(100% 215.42% at 0% 0%, #5b483a 0%, #262425 100%);
  padding: 0;
}
@media screen and (max-width: 767px) {
  .module__title {
    text-align: center;
  }
}
.module__title_start {
  margin-bottom: 42px;
}
.module__title_pets {
  text-align: center;
}
.module__title_help {
  text-align: center;
}
@media screen and (max-width: 1279px) {
  .module__title_help {
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 767px) {
  .module__title_help {
    margin-bottom: 42px;
  }
}
.module__title_donation {
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .module__title_footer {
    align-self: center;
  }
}
.module__subtitle_about:not(:first-child) {
  margin-top: 25px;
}
@media screen and (max-width: 767px) {
  .module__subtitle_about:not(:first-child) {
    margin-top: 22px;
  }
}
.module__subtitle_donation {
  margin-bottom: 20px;
}
.module__button {
  margin-top: 42px;
}
@media screen and (max-width: 1279px) {
  .module__button {
    align-self: center;
  }
}
.module__buttons {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  margin: 0 auto;
  max-width: 32%;
}
@media screen and (max-width: 1279px) {
  .module__buttons {
    margin-bottom: 7px;
    max-width: 54%;
  }
}
@media screen and (max-width: 767px) {
  .module__buttons {
    margin-top: 42px;
    margin-bottom: 0;
    max-width: 100%;
  }
}
@media screen and (min-width: 320px) and (max-width: 380px) {
  .module__buttons {
    max-width: 100%;
    justify-content: space-between;
  }
}
.module__help-icons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  column-gap: 120px;
  row-gap: 55px;
  padding: 60px 40px 0 40px;
  transition: all 0.5s ease-in-out;
}
@media screen and (max-width: 1279px) {
  .module__help-icons {
    display: grid;
    column-gap: 65px;
    row-gap: 55px;
    padding: 0;
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 520px) {
  .module__help-icons {
    grid-template-columns: repeat(2, 1fr);
    white-space: nowrap;
    gap: 30px;
  }
}
.module__help-icon-wrapper {
  height: 113px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .module__help-icon-wrapper {
    height: 87px;
  }
}
@media screen and (max-width: 767px) {
  .module__help-icon {
    max-width: 50px;
    max-height: 50px;
  }
}
.module__card {
  margin-bottom: 20px;
}
.module__content-item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 234px;
  margin-top: 16px;
  transition: all 0.5s ease-in-out;
}
.module__content-item:nth-child(1) {
  max-width: 279px;
}
.module__content-item:nth-child(2) {
  width: 302px;
}
@media screen and (max-width: 1279px) {
  .module__content-item {
    margin-top: 0;
  }
}
@media screen and (max-width: 767px) {
  .module__content-item:nth-child(1) {
    width: 278px;
    height: 208px;
    align-items: center;
  }
  .module__content-item:nth-child(2) {
    width: 300px;
    height: 222px;
  }
}
.module__content-item-link {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.module__content-item-link:hover .module__content-item-image {
  scale: 1.1;
  filter: brightness(2);
  rotate: -5deg;
}
.module__content-item-link:hover .email-address,
.module__content-item-link:hover .phone-number,
.module__content-item-link:hover .address {
  color: var(--color-light-s);
}
.module__content-item-image {
  margin-right: 20px;
  transition: all 0.2s ease-in-out;
}

/*# sourceMappingURL=main.css.map */
