@charset "UTF-8";
@font-face {
  font-family: "Arial";
  src: url("../../assets/fonts/Arial/ARIAL.TTF") format("truetype");
}
@font-face {
  font-family: "Georgia";
  src: url("../../assets/fonts/Georgia/georgia.ttf") format("truetype");
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Georgia, "Times New Roman", Times, serif;
  background-color: #ffffff;
}

a {
  text-decoration: none;
}

li {
  list-style-type: none;
}

html {
  scroll-behavior: smooth;
}

.header-not-only__background {
  background: url(../../assets/images/noise_transparent@2x.png), radial-gradient(100% 215.42% at 0% 0%, #5b483a 0%, #262425 100%);
}

.wrapper {
  margin: 0 auto;
  max-width: 1280px;
}

.wrap-header-not-only {
  margin: 0 auto;
}

.header {
  max-width: 1200px;
  margin: 0 auto 100px;
  padding-top: 30px;
  height: 60px;
  display: flex;
  justify-content: space-between;
}

.logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.logo__title {
  color: #f1cdb3;
  font-style: normal;
  font-weight: 400;
  font-size: 32px;
  line-height: 35px;
  letter-spacing: 0.06em;
  margin-bottom: 10px;
}
.logo__text {
  font-family: Arial, Helvetica, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 13px;
  line-height: 15px;
  color: #ffffff;
  letter-spacing: 0.1em;
}

.burger {
  display: none;
  cursor: pointer;
  flex-direction: column;
  height: 22px;
  justify-content: space-between;
  position: fixed;
  top: 35px;
  right: 20px;
  width: 29px;
  z-index: 2;
  transition: all 0.4s ease;
}
.burger .bar {
  width: 100%;
  height: 2px;
  background-color: #f1cdb3;
}
.burger.active {
  transform: rotate(90deg) translate(14px, 0);
}

.nav-links {
  display: flex;
  width: 440px;
  justify-content: space-between;
  align-items: center;
}
.nav-links__item {
  font-family: Arial, Helvetica, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 24px;
  color: #cdcdcd;
  transition: 0.3s;
}
.nav-links__item:hover {
  color: #fafafa;
}
.nav-links__item-active {
  color: #fafafa;
  border-bottom: 3px solid #f1cdb3;
  padding-bottom: 3px;
  cursor: default;
}

.not-only {
  margin: 0 auto;
  max-width: 1200px;
  display: flex;
  justify-content: space-around;
}
.not-only__info {
  width: 460px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 167px;
  margin-right: 35px;
}
.not-only__info-title {
  font-family: Georgia, "Times New Roman", Times, serif;
  font-style: normal;
  font-weight: 400;
  font-size: 44px;
  line-height: 130%;
  color: #ffffff;
  margin-bottom: 42px;
}
.not-only__info-text {
  font-family: Arial, Helvetica, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 160%;
  color: #cdcdcd;
  margin-bottom: 42px;
}
.not-only__info-btn {
  width: 207px;
  height: 52px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #f1cdb3;
  border-radius: 100px;
  font-family: Georgia, "Times New Roman", Times, serif;
  font-style: normal;
  font-weight: 400;
  font-size: 17px;
  line-height: 130%;
  letter-spacing: 0.06em;
  color: #292929;
  transition: 0.3s;
}
.not-only__info-btn:hover {
  background: #fddcc4;
}
.not-only__info-btn:active {
  transform: scale(0.95);
}
.not-only__image {
  width: 698px;
  height: 731px;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url(../../assets/images/start-screen-puppy.svg);
}

.about-background {
  background-color: #ffffff;
}

.about {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  padding-top: 80px;
  padding-bottom: 87px;
}
.about__image {
  width: 300px;
  margin-left: 175px;
  height: 408px;
  margin-right: 120px;
}
.about__info {
  max-width: 430px;
}
.about__info-title {
  font-family: Georgia, "Times New Roman", Times, serif;
  font-style: normal;
  font-weight: 400;
  font-size: 35px;
  line-height: 130%;
  letter-spacing: 0.06em;
  color: #545454;
  margin-top: 15px;
  margin-bottom: 25px;
}
.about__info-text {
  font-family: Arial, Helvetica, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 160%;
  color: #4c4c4c;
  margin-bottom: 25px;
}

.cards-active,
.cards-left,
.cards-right {
  display: flex;
}

.carousel {
  display: flex;
  position: relative;
  left: -1080px;
}

.carousel-wrapper {
  width: 990px;
  overflow: hidden;
}

@keyframes move-right {
  from {
    left: -1080px;
  }
  to {
    left: -2160px;
  }
}
.transition-right {
  animation-name: move-right;
  animation-duration: 5s;
}

@keyframes move-left {
  from {
    left: -1080px;
  }
  to {
    left: 0px;
  }
}
.transition-left {
  animation-name: move-left;
  animation-duration: 5s;
}

.our-friends__background {
  background-color: #f6f6f6;
}

.our-friends {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 80px;
}
.our-friends__title {
  max-width: 400px;
  font-family: Georgia, "Times New Roman", Times, serif;
  font-style: normal;
  font-weight: 400;
  font-size: 35px;
  line-height: 130%;
  letter-spacing: 0.06em;
  color: #545454;
}

.our-friends__wrapper {
  width: 1200px;
  margin-top: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.our-friends__arrows-small {
  display: none;
}

.our-friends__card {
  width: 270px;
  height: 435px;
  background-color: #fafafa;
  border-radius: 9px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-right: 90px;
  margin-bottom: 58px;
  transition: 0.3s;
}
.our-friends__card-image {
  margin-bottom: 30px;
}
.our-friends__card-title {
  font-family: Georgia, "Times New Roman", Times, serif;
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 23px;
  text-align: center;
  letter-spacing: 0.06em;
  color: #545454;
  margin-bottom: 30px;
}
.our-friends__card-btn {
  width: 187px;
  height: 52px;
  border: 2px solid #f1cdb3;
  border-radius: 100px;
  transition: 0.3s;
  font-family: Georgia, "Times New Roman", Times, serif;
  font-style: normal;
  font-weight: 400;
  font-size: 17px;
  line-height: 130%;
  letter-spacing: 0.06em;
  color: #292929;
}
.our-friends__card-btn:active {
  transform: scale(0.95);
}
.our-friends__card:hover {
  cursor: pointer;
  background-color: #ffffff;
}
.our-friends__card:hover .our-friends__card-btn {
  cursor: pointer;
  background-color: #fddcc4;
  border: 2px solid transparent;
}

.our-friends__btn {
  width: 261px;
  height: 52px;
  background-color: #f1cdb3;
  border-radius: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 100px;
  transition: 0.3s;
  font-family: Georgia, "Times New Roman", Times, serif;
  font-style: normal;
  font-weight: 400;
  font-size: 17px;
  line-height: 130%;
  letter-spacing: 0.06em;
  color: #292929;
}
.our-friends__btn:hover {
  background-color: #fddcc4;
}
.our-friends__btn:active {
  transform: scale(0.95);
}

.our-friends__arrow-btn {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #f1cdb3;
  border-radius: 100px;
  margin-bottom: 60px;
  transition: 0.3s;
}
.our-friends__arrow-btn:hover {
  cursor: pointer;
  background-color: #fddcc4;
  border: 2px solid transparent;
}
.our-friends__arrow-btn:active {
  transform: scale(0.95);
}

.help__background {
  background-color: #ffffff;
}

.help {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 80px;
  padding-bottom: 100px;
}

.help__title {
  font-family: Georgia, "Times New Roman", Times, serif;
  font-style: normal;
  font-weight: 400;
  font-size: 35px;
  line-height: 130%;
  letter-spacing: 0.06em;
  color: #545454;
}

.help__wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 1140px;
}

.help__wrapper-card {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  padding-top: 57px;
  justify-content: center;
  gap: 55px 120px;
}

.help__card {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.help__card-img {
  margin-bottom: 30px;
}
.help__card .mb-35 {
  margin-bottom: 35px;
}
.help__card-title {
  font-family: Georgia, "Times New Roman", Times, serif;
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 115%;
  letter-spacing: 0.06em;
  color: #545454;
}

.small-gaps {
  width: 85%;
}

.in-addition__background {
  background-color: #f6f6f6;
}

.in-addition {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 70px;
  padding-bottom: 98px;
}
.in-addition__img {
  padding-top: 9px;
}
.in-addition__info {
  margin-left: 30px;
}
.in-addition__info-title {
  max-width: 300px;
  font-family: Georgia, "Times New Roman", Times, serif;
  font-style: normal;
  font-weight: 400;
  font-size: 35px;
  line-height: 130%;
  letter-spacing: 0.06em;
  color: #545454;
  padding-top: 10px;
  margin-bottom: 20px;
}
.in-addition__info-text {
  font-family: Georgia, "Times New Roman", Times, serif;
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 110%;
  letter-spacing: 0.06em;
  color: #545454;
  margin-bottom: 20px;
}
.in-addition__info-text-small {
  max-width: 380px;
  font-family: "Arial";
  font-style: italic;
  font-weight: 400;
  font-size: 12px;
  line-height: 18px;
  color: #b2b2b2;
}

.in-addition__bank {
  width: 349px;
  height: 43px;
  background: #f1cdb3;
  border-radius: 9px;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  transition: 0.3s;
  margin-bottom: 20px;
}
.in-addition__bank-icon {
  width: 30px;
  height: 23px;
  background-image: url(../../assets/icons/credit-card.svg);
}
.in-addition__bank-info {
  font-family: Georgia, "Times New Roman", Times, serif;
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 115%;
  letter-spacing: 0.06em;
  color: #545454;
}
.in-addition__bank:active {
  transform: scale(0.95);
}

.footer__background {
  background: url(../../assets/images/noise_transparent@2x.png), radial-gradient(110.67% 538.64% at 5.73% 50%, #513d2f 0%, #1a1a1c 100%), #211f20;
}

#footer {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 40px;
}

.footer__wrapper {
  max-width: 1200px;
  display: flex;
}

.contacts,
.location {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  margin-right: 160px;
}

.contacts {
  max-width: 279px;
}

.location {
  max-width: 302px;
}

.contacts__title,
.location__title {
  font-family: Georgia, "Times New Roman", Times, serif;
  font-style: normal;
  font-weight: 400;
  font-size: 35px;
  line-height: 130%;
  letter-spacing: 0.06em;
  color: #ffffff;
  padding-top: 16px;
}

.contacts__title {
  margin-bottom: 40px;
}

.location__title {
  margin-bottom: 34px;
}

.contacts__link,
.location__wrapper {
  display: flex;
  align-items: center;
  justify-content: start;
}

.contacts__link {
  margin-bottom: 40px;
}

.location__wrapper {
  margin-bottom: 32px;
}

.contacts__icon {
  width: 44px;
  height: 32px;
  background-repeat: no-repeat;
  margin-right: 20px;
}
.contacts__icon-letter {
  background-image: url(../../assets/icons/mail.svg);
}
.contacts__icon-phone {
  background-image: url(../../assets/icons/phone.svg);
}

.contacts__info,
.location__address {
  font-family: Georgia, "Times New Roman", Times, serif;
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 115%;
  letter-spacing: 0.06em;
  color: #f1cdb3;
}

.location__icon {
  width: 45px;
  height: 32px;
  background-image: url(../../assets/icons/pin.svg);
  background-repeat: no-repeat;
  margin-right: 20px;
}
.location__icon-london {
  margin-right: 0;
}

.footer__img {
  background-image: url(../../assets/images/footer-puppy.svg);
  width: 300px;
  height: 310px;
}

.pets-header__background {
  background-color: #ffffff;
}

.pets-header {
  height: 120px;
  display: flex;
  align-items: center;
  padding-top: 0;
  margin: 0 auto;
}
.pets-header .logo__title {
  color: #545454;
}
.pets-header .logo__text {
  color: #292929;
}
.pets-header .nav-links__item {
  color: #545454;
}
.pets-header .nav-links__item:hover {
  color: #292929;
}

.pets-our-friends__background {
  background-color: #f6f6f6;
}

.our-friends__cards-field {
  max-width: 1200px;
  margin-bottom: 60px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 30px 40px;
  padding-top: 60px;
}
.our-friends__cards-field .our-friends__card {
  margin: 0;
}

.our-friends__controls-container {
  width: 340px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 100px;
}

.our-friends__controls-inactive {
  width: 52px;
  height: 52px;
  border: 2px solid #cdcdcd;
  border-radius: 100px;
}

.our-friends__controls-current {
  width: 52px;
  height: 52px;
  background: #f1cdb3;
  border-radius: 100px;
  border: none;
  font-family: Georgia, "Times New Roman", Times, serif;
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 115%;
  letter-spacing: 0.06em;
  text-align: center;
  color: #292929;
}

.our-friends__controls-active {
  width: 52px;
  height: 52px;
  border: 2px solid #f1cdb3;
  border-radius: 100px;
  transition: 0.3s;
}
.our-friends__controls-active:hover {
  cursor: pointer;
  background-color: #fddcc4;
  border: 2px solid transparent;
}
.our-friends__controls-active:active {
  transform: scale(0.95);
}

.overlay-modal {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(41, 41, 41, 0.6);
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: -2;
  top: 0;
  left: 0;
  transition: all 0.5s ease;
  opacity: 0;
}
.overlay-modal.active {
  opacity: 1;
  z-index: 2;
}

.modal-content {
  display: grid;
  grid-template-columns: 55% 1fr;
  column-gap: 4%;
  width: 900px;
  height: 500px;
  background-color: #fafafa;
  border-radius: 9px;
}

.modal {
  display: flex;
  flex-direction: column-reverse;
  align-items: flex-end;
}

.modal-btn-container {
  position: relative;
}

.modal-btn {
  width: 52px;
  height: 52px;
  border: 2px solid #f1cdb3;
  border-radius: 100px;
  background-color: transparent;
  position: absolute;
  bottom: 0;
  right: -43px;
  transition: 0.3s;
  cursor: pointer;
}

.modal-btn:hover {
  background-color: #f1cdb3;
}

.modal-content__image {
  width: 100%;
}

.modal-content__info {
  width: 351px;
  height: 362px;
  padding-top: 51px;
}

.modal-content__info-title {
  font-family: Georgia, "Times New Roman", Times, serif;
  font-style: normal;
  font-weight: 400;
  font-size: 35px;
  line-height: 110%;
  letter-spacing: 0.06em;
  color: #000000;
  margin-bottom: 14px;
}

.modal-content__info-subtitle {
  font-family: Georgia, "Times New Roman", Times, serif;
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 115%;
  letter-spacing: 0.06em;
  color: #000000;
  margin-bottom: 40px;
}

.modal-content__info-text {
  font-family: Georgia, "Times New Roman", Times, serif;
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 115%;
  letter-spacing: 0.06em;
  color: #000000;
  margin-bottom: 43px;
}

.modal-content__info-list li:before {
  content: "•";
  color: #f1cdb3;
  margin-right: 10px;
}
.modal-content__info-list li {
  margin-bottom: 10px;
  font-family: Georgia, "Times New Roman", Times, serif;
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 110%;
  letter-spacing: 0.06em;
  color: #000000;
}

@media screen and (min-width: 1280px) {
  .header-not-only__background,
  .about-background,
  .our-friends__background,
  .help__background,
  .in-addition__background,
  .footer__background,
  .pets-header__background,
  .pets-our-friends__background {
    min-width: 1280px;
  }
}
@media screen and (max-width: 1200px) {
  .wrapper {
    max-width: 1200px;
  }
  .header-not-only__background {
    max-width: 1200px;
  }
  .header {
    max-width: 708px;
    margin: 0 auto 76px;
  }
  .not-only {
    max-width: 1200px;
    flex-direction: column;
    align-items: center;
    margin-left: 65px;
  }
  .not-only__info {
    padding-top: 0;
    padding-bottom: 100px;
    margin-right: 65px;
  }
  .not-only__image {
    max-width: 569px;
    height: 593px;
    margin-left: 75px;
  }
  .not-only__button {
    width: 100%;
    display: flex;
    justify-content: center;
  }
  .about-background {
    max-width: 1200px;
  }
  .about {
    flex-direction: column-reverse;
    align-items: center;
    padding-top: 65px;
    padding-bottom: 100px;
  }
  .about__info {
    padding-bottom: 55px;
  }
  .about__info-title {
    margin-bottom: 23px;
  }
  .about__image {
    margin-left: 125px;
  }
  .our-friends__background {
    max-width: 1200px;
  }
  .our-friends__wrapper {
    max-width: 708px;
    margin-top: 58px;
    margin-bottom: 60px;
  }
  .our-friends__card {
    margin: 0;
    margin-right: 40px;
  }
  .carousel {
    left: -919px;
  }
  .carousel-wrapper {
    width: 990px;
    overflow: hidden;
  }
  @keyframes move-right {
    from {
      left: -919px;
    }
    to {
      left: -1530px;
    }
  }
  .transition-right {
    animation-name: move-right;
    animation-duration: 3s;
  }
  @keyframes move-left {
    from {
      left: -919px;
    }
    to {
      left: -300px;
    }
  }
  .transition-left {
    animation-name: move-left;
    animation-duration: 3s;
  }
  .our-friends__arrow-btn {
    margin-bottom: 0;
    width: 80px;
  }
  .none-medium {
    display: none;
  }
  .help__background {
    max-width: 1200px;
  }
  .help__wrapper {
    max-width: 630px;
  }
  .help__wrapper-card {
    display: grid;
    grid-template-columns: auto auto auto;
    row-gap: 55px;
    column-gap: 70px;
    padding-top: 60px;
  }
  .in-addition__background {
    max-width: 1200px;
  }
  .in-addition {
    flex-direction: column-reverse;
  }
  .in-addition__info {
    margin-left: 0;
  }
  .in-addition__img {
    padding-top: 60px;
  }
  .footer__background {
    max-width: 1200px;
  }
  .footer__wrapper {
    flex-wrap: wrap;
    max-width: 640px;
  }
  .footer__wrapper .contacts {
    margin-right: 58px;
  }
  .footer__wrapper .contacts__icon {
    margin-right: 16px;
  }
  .footer__wrapper .location {
    margin-right: 0;
  }
  #footer {
    padding-top: 15px;
  }
  .footer__img {
    margin-left: 169px;
    margin-top: 23px;
  }
  .pets-our-friends__background .our-friends {
    padding-top: 4px;
  }
  .pets-our-friends__background .our-friends__cards-field {
    max-width: 708px;
    padding-top: 30px;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 1fr);
    margin-bottom: 40px;
  }
  .pets-our-friends__background .our-friends__controls-container {
    margin-bottom: 74px;
  }
  .modal-content {
    width: 630px;
    height: 350px;
    column-gap: 2%;
  }
  .modal-content__info {
    padding-top: 14px;
    width: 261px;
  }
  .modal-content__info-subtitle {
    margin-bottom: 19px;
  }
  .modal-content__info-text {
    font-size: 13px;
    margin-bottom: 15px;
  }
  .modal-content__info-list li {
    margin-bottom: 6px;
  }
}
@media screen and (max-width: 767px) {
  .wrapper {
    max-width: 300px;
  }
  .header {
    max-width: 280px;
    padding-top: 35px;
  }
  .none-small {
    display: none;
  }
  .burger {
    display: flex;
  }
  .not-only {
    margin-left: 0;
  }
  .not-only__info {
    max-width: 300px;
    margin-right: 0;
    align-items: center;
    padding-bottom: 105px;
  }
  .not-only__image {
    width: 260px;
    height: 271px;
    margin-left: 40px;
  }
  .not-only__info-title {
    font-size: 25px;
    letter-spacing: 0.06em;
    text-align: center;
  }
  .not-only__info-text {
    text-align: center;
  }
  .about {
    padding-top: 26px;
    padding-bottom: 44px;
  }
  .about__info {
    padding-bottom: 17px;
  }
  .about__info-title {
    font-size: 25px;
    text-align: center;
  }
  .about__info-text {
    max-width: 270px;
    text-align: justify;
  }
  .about__image {
    width: 260px;
    height: 353px;
    margin-left: 0;
    margin-right: 0;
  }
  .our-friends {
    padding-top: 39px;
  }
  .our-friends__title {
    font-size: 25px;
  }
  .our-friends__wrapper {
    max-width: 300px;
    margin-top: 41px;
    margin-bottom: 20px;
  }
  .our-friends__arrow-btn {
    width: 52px;
  }
  .our-friends__arrows-small {
    width: 270px;
    display: flex;
    justify-content: space-around;
    margin-bottom: 43px;
  }
  .our-friends__btn {
    margin-bottom: 42px;
  }
  .carousel-wrapper {
    width: 300px;
    overflow: hidden;
  }
  @keyframes move-right {
    from {
      left: -919px;
    }
    to {
      left: -1219px;
    }
  }
  .transition-right {
    animation-name: move-right;
    animation-duration: 3s;
  }
  @keyframes move-left {
    from {
      left: -919px;
    }
    to {
      left: -605px;
    }
  }
  .transition-left {
    animation-name: move-left;
    animation-duration: 3s;
  }
  .help {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .help__title {
    font-size: 25px;
  }
  .help__wrapper {
    max-width: 300px;
  }
  .help__wrapper-card {
    max-width: 290px;
    padding-top: 40px;
    grid-template-columns: auto auto;
    column-gap: 40px;
    row-gap: 27px;
  }
  .help__card-title {
    font-size: 15px;
  }
  .help__card-img {
    width: 50px;
    height: 50px;
    margin-bottom: 23px;
  }
  .help__card .mb-35 {
    margin-bottom: 21px;
  }
  .in-addition {
    padding-top: 32px;
    padding-bottom: 43px;
  }
  .in-addition__info-title {
    font-size: 25px;
    text-align: center;
    max-width: 220px;
    margin-left: 35px;
  }
  .in-addition__info-text {
    line-height: 160%;
    letter-spacing: 0;
    text-align: center;
  }
  .in-addition__bank {
    width: 281px;
  }
  .in-addition__bank-info {
    font-size: 15px;
    line-height: 110%;
  }
  .in-addition__info-text-small {
    max-width: 280px;
    text-align: justify;
  }
  .in-addition__img {
    width: 260px;
    padding-top: 40px;
  }
  .footer__wrapper {
    max-width: 300px;
    align-items: center;
    justify-content: center;
  }
  .footer__wrapper .contacts {
    margin-right: 0;
    align-items: center;
  }
  .footer__wrapper .contacts__title {
    font-size: 25px;
    text-align: center;
  }
  .footer__wrapper .location {
    max-width: 290px;
  }
  .footer__wrapper .location__title {
    padding-top: 0;
    font-size: 25px;
    text-align: center;
    margin-bottom: 38px;
  }
  .footer__wrapper .location__wrapper {
    width: 300px;
    margin-bottom: 40px;
  }
  .footer__wrapper .location__icon {
    margin-right: 12px;
  }
  .footer__wrapper .location__icon-london {
    margin-right: -7px;
  }
  .footer__img {
    background-image: url(../../assets/images/footer-puppy.png);
    margin-left: 0;
    margin-top: 0px;
    width: 260px;
    height: 269px;
  }
  .pets-header {
    padding-top: 0;
    margin: 0 auto;
  }
  .pets-our-friends__background .our-friends {
    padding-top: 40px;
  }
  .pets-our-friends__background .our-friends__cards-field {
    grid-template-columns: auto;
    padding-top: 43px;
  }
  .pets-our-friends__background .our-friends__controls-container {
    max-width: 300px;
    margin-bottom: 44px;
  }
  .modal-content {
    width: 240px;
    height: 400px;
    display: flex;
    padding-left: 10px;
  }
  .modal-content__image {
    display: none;
  }
  .modal-content__info {
    width: 220px;
  }
  .modal-btn {
    right: -30px;
  }
  .modal-content__info-title,
  .modal-content__info-subtitle {
    text-align: center;
  }
  .modal-content__info-text {
    line-height: 110%;
    margin-bottom: 23px;
  }
}
.menu-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 320px;
  height: 100%;
  position: fixed;
  right: -320px;
  top: 0;
  transition: all 0.5s ease;
  z-index: 1;
  background: #292929;
}

.menu-container.active {
  right: 0;
}

.menu {
  flex-direction: column;
  width: 243px;
  height: 327px;
}
.menu .nav-links__item {
  font-size: 32px;
  line-height: 160%;
}

.overlay {
  background-color: rgba(1, 1, 1, 0.7);
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: -1;
  top: 0;
  left: 0;
  transition: all 0.5s ease;
  opacity: 0;
}
.overlay.active {
  opacity: 1;
  z-index: 1;
}

.body-overflow {
  overflow: hidden;
}

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