@charset "UTF-8";
html {
  scroll-behavior: smooth;
  -webkit-tap-highlight-color: transparent;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 30px 40px 0;
}
@media screen and (max-width: 768px) {
  .container {
    padding: 30px;
    padding-bottom: 0;
  }
}
@media screen and (max-width: 320px) {
  .container {
    padding: 30px 20px;
  }
}

header .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 90px;
}
@media screen and (max-width: 768px) {
  header .container {
    margin-bottom: 30px;
  }
}

.start-screen {
  background: url("../../assets/images/noise_transparent.png"), radial-gradient(100% 215.42% at 0% 0%, #5B483A 0%, #262425 100%), #211F20;
}

.logo {
  width: 184px;
  white-space: nowrap;
  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;
}

@media (hover: hover) and (pointer: fine) {
  .logo:hover {
    cursor: pointer;
  }
}
.logo h2 {
  color: #f1cdb3;
  font-family: "Georgia";
  font-size: 32px;
  line-height: 110%;
  font-weight: 400;
  margin: 0;
  margin-bottom: 10px;
  letter-spacing: 0.06em;
}

.logo p {
  color: #ffffff;
  font-family: "Arial";
  font-weight: 400;
  font-size: 13px;
  line-height: 15px;
  letter-spacing: 0.1em;
  margin: 0;
}

header ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  list-style-type: none;
  width: 443px;
  padding: 0;
  font-family: "Arial";
  font-weight: 400;
  font-size: 15px;
  line-height: 160%;
}

@media screen and (max-width: 767px) {
  nav {
    display: none;
  }
}
header nav li {
  color: #cdcdcd;
  -webkit-transition: color 0.3s, border 0.075s;
  transition: color 0.3s, border 0.075s;
}

@media (hover: hover) and (pointer: fine) {
  header li:hover:not(.current-page) {
    color: #fafafa;
  }
}
header nav li:active:not(.current-page) {
  color: #fafafa;
  border-bottom: solid 3px #f1cdb3;
}

.current-page a {
  cursor: default;
}

.current-page {
  color: #fafafa;
  border-bottom: solid 3px #f1cdb3;
}

.burger {
  display: none;
  cursor: pointer;
  width: 30px;
  height: 22px;
  position: relative;
  margin-top: 19px;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}
@media screen and (max-width: 767px) {
  .burger {
    display: block;
  }
}

.rotated {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

.burger span {
  position: absolute;
  background-color: #f1cdb3;
  left: 0;
  width: 100%;
  height: 2px;
  top: 10px;
}

.burger:before,
.burger:after {
  content: "";
  position: absolute;
  background: #f1cdb3;
  width: 100%;
  height: 2px;
}

.burger:before {
  top: 0;
}

.burger:after {
  bottom: 0;
}

.menu-panel {
  height: 100vh;
  width: 320px;
  background: #292929;
  position: fixed;
  right: -320px;
  top: 0;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}
.menu-panel ul {
  margin: 0;
  width: auto;
  height: 100vh;
  -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;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #cdcdcd;
  font-size: 32px;
  gap: 40px;
}

.blackout {
  display: none;
  opacity: 0;
  background: rgba(41, 41, 41, 0.6);
  height: 100vh;
  width: 100vw;
  position: fixed;
  left: 0;
  top: 0;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.blackout-popup {
  display: none;
  opacity: 0;
  background: rgba(41, 41, 41, 0.6);
  height: 100vh;
  width: 100vw;
  position: fixed;
  left: 0;
  top: 0;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.blackout-on {
  opacity: 1;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.start-screen-block {
  background: url("../../assets/images/start-screen-puppy.png") no-repeat;
  background-position-x: calc(100% - 40px);
  min-height: 728px;
}
@media screen and (max-width: 1250px) {
  .start-screen-block {
    background-position: bottom right;
    background-size: 55%;
    min-height: calc(1045px - 20vw);
  }
}
@media screen and (max-width: 1000px) {
  .start-screen-block {
    background-size: 60%;
  }
}
@media screen and (max-width: 950px) {
  .start-screen-block {
    min-height: 800px;
  }
}
@media screen and (max-width: 768px) {
  .start-screen-block {
    background-position: calc(100% - 28px) calc(100% + 5px);
    background-size: 75%;
    min-height: 1045px;
  }
}
@media screen and (max-width: 740px) {
  .start-screen-block {
    min-height: 950px;
    background-size: 500px;
  }
}
@media screen and (max-width: 560px) {
  .start-screen-block {
    min-height: calc(112vw + 330px);
    background-size: 90%;
  }
}
@media screen and (max-width: 320px) {
  .start-screen-block {
    background-position: calc(100% - 9px) bottom;
    background-size: 82%;
    min-height: 673px;
  }
  .start-screen-block.container {
    padding: 0 10px;
  }
}

.start-screen-content > *,
.about-pets > * {
  margin: 0;
}

.start-screen-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 322px;
  margin-top: 133px;
}
@media screen and (max-width: 1250px) {
  .start-screen-content {
    margin-top: calc(33vw - 300px);
  }
}
@media screen and (max-width: 768px) {
  .start-screen-content {
    max-width: 460px;
    margin: auto;
  }
}
@media screen and (max-width: 560px) {
  .start-screen-content {
    height: 300px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media screen and (max-width: 320px) {
  .start-screen-content {
    height: 296px;
  }
  .start-screen-content p {
    text-align: center;
  }
}

h1 {
  font-family: "Georgia";
  font-weight: 400;
  font-size: 44px;
  line-height: 130%;
  color: #ffffff;
  max-width: 310px;
}
@media screen and (max-width: 560px) {
  h1 {
    font-size: calc(6vw + 5px);
    text-align: center;
    letter-spacing: 0.06em;
  }
}
@media screen and (max-width: 320px) {
  h1 {
    font-size: 25px;
  }
}

p {
  font-family: "Arial";
  font-weight: 400;
  font-size: 15px;
  line-height: 160%;
  color: #cdcdcd;
  max-width: 460px;
}

.common-button {
  padding: 0;
  border: none;
  border-radius: 100px;
  background: #f1cdb3;
  width: 207px;
  height: 52px;
  color: #292929;
  font-family: "Georgia";
  font-weight: 400;
  font-size: 17px;
  line-height: 130%;
  letter-spacing: 0.06em;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 768px) {
  .start-screen-content .common-button {
    margin: 0 auto;
  }
}

@media (hover: hover) and (pointer: fine) {
  .common-button:hover {
    background-color: #fddcc4;
  }
}
.common-button:active {
  background-color: #f1cdb3;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.about {
  padding: 50px 0 100px;
}
@media screen and (max-width: 320px) {
  .about {
    padding: 11px 5px 13px;
  }
}

.about .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 120px;
}
@media screen and (max-width: 950px) {
  .about .container {
    gap: calc(60vw - 450px);
  }
}
@media screen and (max-width: 768px) {
  .about .container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 80px;
  }
}
@media screen and (max-width: 320px) {
  .about .container {
    gap: 40px;
  }
}

.about img {
  height: 100%;
  max-width: 96%;
}

.about-pets {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  max-width: 430px;
}
@media screen and (max-width: 768px) {
  .about-pets {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    min-height: 380px;
    gap: 24px;
  }
}
@media screen and (max-width: 320px) {
  .about-pets {
    text-align: justify;
  }
}

h2 {
  font-family: "Georgia";
  font-weight: 400;
  font-size: 35px;
  line-height: 130%;
  letter-spacing: 0.06em;
  color: #545454;
}
@media screen and (max-width: 560px) {
  h2 {
    text-align: center;
    font-size: calc(6vw + 3px);
  }
}
@media screen and (max-width: 320px) {
  h2 {
    font-size: 25px;
  }
}

.about p {
  color: #4C4C4C;
  max-width: 430px;
}

.our-friends {
  background: #f6f6f6;
}

.our-friends .container,
.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-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-bottom: 100px;
}
@media screen and (max-width: 320px) {
  .our-friends .container,
.help .container {
    padding: 30px 0 42px;
  }
}

.our-friends h2,
.help h2 {
  text-align: center;
  margin: 50px 0 59px;
}
@media screen and (max-width: 320px) {
  .our-friends h2,
.help h2 {
    margin: 12px 0 41px;
  }
}

.carousel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .carousel {
    gap: 12px;
    -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
  }
}
@media screen and (max-width: 460px) {
  .carousel {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 20px;
    -webkit-column-gap: 80px;
       -moz-column-gap: 80px;
            column-gap: 80px;
    margin-bottom: 42px;
  }
}

.cards-wrapper {
  position: relative;
  width: 80vw;
  max-width: 990px;
  height: 435px;
  overflow: hidden;
}
@media screen and (max-width: 1250px) {
  .cards-wrapper {
    max-width: 870px;
  }
}
@media screen and (max-width: 1100px) {
  .cards-wrapper {
    max-width: calc(20vw + 415px);
  }
}
@media screen and (max-width: 768px) {
  .cards-wrapper {
    max-width: 580px;
  }
}
@media screen and (max-width: 767px) {
  .cards-wrapper {
    max-width: calc(104vw - 218px);
  }
}
@media screen and (max-width: 767px) {
  .cards-wrapper {
    max-width: 270px;
  }
}
@media screen and (max-width: 460px) {
  .cards-wrapper {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
}

.cards {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 90px;
  left: -1080px;
}
@-webkit-keyframes to-left {
  from {
    left: -1080px;
  }
  to {
    left: 0;
  }
}
@keyframes to-left {
  from {
    left: -1080px;
  }
  to {
    left: 0;
  }
}
@-webkit-keyframes to-right {
  from {
    left: -1080px;
  }
  to {
    left: -2160px;
  }
}
@keyframes to-right {
  from {
    left: -1080px;
  }
  to {
    left: -2160px;
  }
}
@media screen and (max-width: 1250px) {
  .cards {
    gap: 30px;
    left: -900px;
  }
  @-webkit-keyframes to-left {
    from {
      left: -900px;
    }
    to {
      left: 0;
    }
  }
  @keyframes to-left {
    from {
      left: -900px;
    }
    to {
      left: 0;
    }
  }
  @-webkit-keyframes to-right {
    from {
      left: -900px;
    }
    to {
      left: -1800px;
    }
  }
  @keyframes to-right {
    from {
      left: -900px;
    }
    to {
      left: -1800px;
    }
  }
}
@media screen and (max-width: 1100px) {
  .cards {
    gap: calc(20vw - 125px);
    left: calc(-290px - 40vw);
  }
  @-webkit-keyframes to-left {
    from {
      left: calc(-290px - 40vw);
    }
    to {
      left: 0;
    }
  }
  @keyframes to-left {
    from {
      left: calc(-290px - 40vw);
    }
    to {
      left: 0;
    }
  }
  @-webkit-keyframes to-right {
    from {
      left: calc(-290px - 40vw);
    }
    to {
      left: calc(2 * (-290px - 40vw));
    }
  }
  @keyframes to-right {
    from {
      left: calc(-290px - 40vw);
    }
    to {
      left: calc(2 * (-290px - 40vw));
    }
  }
}
@media screen and (max-width: 768px) {
  .cards {
    gap: 40px;
    left: -620px;
  }
  @-webkit-keyframes to-left {
    from {
      left: -620px;
    }
    to {
      left: 0;
    }
  }
  @keyframes to-left {
    from {
      left: -620px;
    }
    to {
      left: 0;
    }
  }
  @-webkit-keyframes to-right {
    from {
      left: -620px;
    }
    to {
      left: -1240px;
    }
  }
  @keyframes to-right {
    from {
      left: -620px;
    }
    to {
      left: -1240px;
    }
  }
}
@media screen and (max-width: 767px) {
  .cards {
    gap: calc(104vw - 758px);
    left: calc(488px - 104vw);
  }
  @-webkit-keyframes to-left {
    from {
      left: calc(488px - 104vw);
    }
    to {
      left: 0;
    }
  }
  @keyframes to-left {
    from {
      left: calc(488px - 104vw);
    }
    to {
      left: 0;
    }
  }
  @-webkit-keyframes to-right {
    from {
      left: calc(488px - 104vw);
    }
    to {
      left: calc(2 * (488px - 104vw));
    }
  }
  @keyframes to-right {
    from {
      left: calc(488px - 104vw);
    }
    to {
      left: calc(2 * (488px - 104vw));
    }
  }
}
@media screen and (max-width: 729px) {
  .cards {
    left: -270px;
  }
  @-webkit-keyframes to-left {
    from {
      left: -270px;
    }
    to {
      left: 0;
    }
  }
  @keyframes to-left {
    from {
      left: -270px;
    }
    to {
      left: 0;
    }
  }
  @-webkit-keyframes to-right {
    from {
      left: -270px;
    }
    to {
      left: -540px;
    }
  }
  @keyframes to-right {
    from {
      left: -270px;
    }
    to {
      left: -540px;
    }
  }
}

.move-to-left {
  -webkit-animation: to-left 1s ease-in-out;
          animation: to-left 1s ease-in-out;
}

.move-to-right {
  -webkit-animation: to-right 1s ease-in-out;
          animation: to-right 1s ease-in-out;
}

.card {
  width: 270px;
  height: 435px;
  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;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #fafafa;
  border-radius: 9px;
  padding-bottom: 30px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  cursor: pointer;
}

@media (hover: hover) and (pointer: fine) {
  .card:hover {
    background-color: #ffffff;
    -webkit-box-shadow: 0px 2px 35px 14px rgba(13, 13, 13, 0.04);
            box-shadow: 0px 2px 35px 14px rgba(13, 13, 13, 0.04);
  }
  .card:hover button {
    background-color: #fddcc4;
    border-color: #fddcc4;
  }
}
.card:active button {
  background-color: #f1cdb3;
  border-color: #f1cdb3;
}

.card:active img {
  -webkit-filter: saturate(1.5);
          filter: saturate(1.5);
}

.card:active img.cat {
  -webkit-filter: hue-rotate(90deg);
          filter: hue-rotate(90deg);
}

.card img {
  border-radius: 9px 9px 0px 0px;
  width: 100%;
  -o-object-fit: none;
     object-fit: none;
  height: 100%;
  max-height: 270px;
}

.name {
  font-family: "Georgia";
  font-weight: 400;
  font-size: 20px;
  line-height: 23px;
  letter-spacing: 0.06em;
  color: #545454;
}

.trans-button {
  background: transparent;
  border: solid 2px #f1cdb3;
  width: 187px;
}

@media (hover: hover) and (pointer: fine) {
  .trans-button:hover {
    border-color: #fddcc4;
  }
}
.trans-button:active {
  border-color: #f1cdb3;
}

.arrow {
  width: 52px;
  height: 52px;
  background: url("../../assets/icons/arrow.svg") no-repeat 50%;
}

.left {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.our-friends .container > button {
  width: 261px;
}

@media screen and (max-width: 768px) {
  .help .container {
    padding-left: 69px;
    padding-right: 69px;
  }
}
@media screen and (max-width: 560px) {
  .help .container {
    padding-left: calc(30vw - 100px);
    padding-right: calc(30vw - 100px);
  }
}
@media screen and (max-width: 350px) {
  .help .container {
    padding-left: 7px;
    padding-right: 7px;
  }
}
@media screen and (max-width: 320px) {
  .help .container {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.help h2 {
  max-width: 310px;
}

.help-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  row-gap: 55px;
  -webkit-column-gap: 120px;
     -moz-column-gap: 120px;
          column-gap: 120px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 768px) {
  .help-items {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-column-gap: 10px;
       -moz-column-gap: 10px;
            column-gap: 10px;
  }
}
@media screen and (max-width: 460px) {
  .help-items {
    -webkit-column-gap: 0;
       -moz-column-gap: 0;
            column-gap: 0;
  }
}
@media screen and (max-width: 320px) {
  .help-items {
    row-gap: 30px;
  }
}

.help-item {
  height: 113px;
  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;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .help-item {
    min-width: 170px;
  }
}
@media screen and (max-width: 350px) {
  .help-item {
    height: 87px;
    min-width: 130px;
  }
}

.icon-holder {
  height: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 320px) {
  .icon-holder {
    height: 47px;
  }
}

.help img {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.help p {
  font-family: "Georgia";
  font-size: 20px;
  line-height: 115%;
  letter-spacing: 0.06em;
  color: #545454;
  margin: 0;
}
@media screen and (max-width: 320px) {
  .help p {
    font-size: 15px;
  }
}

.donation {
  background-color: #f6f6f6;
}

.donation .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
  padding-top: 80px;
  padding-bottom: 100px;
}
@media screen and (max-width: 768px) {
  .donation .container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 60px;
  }
}
@media screen and (max-width: 350px) {
  .donation .container {
    padding: 50px 20px;
  }
}
@media screen and (max-width: 320px) {
  .donation .container {
    padding: 42px 10px;
    gap: 41px;
  }
}

.donation img {
  height: 100%;
}
@media screen and (max-width: 320px) {
  .donation img {
    max-width: 87%;
  }
}

@media screen and (max-width: 1100px) {
  .donation .container > img {
    width: 50%;
  }
}
@media screen and (max-width: 768px) {
  .donation .container > img {
    width: auto;
  }
}

.donation-text {
  max-width: 380px;
  width: auto;
  height: 282px;
  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;
}
@media screen and (max-width: 560px) {
  .donation-text {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media screen and (max-width: 320px) {
  .donation-text {
    width: 300px;
    height: 282px;
  }
}

.donation h2 {
  margin: 0;
}

.donation p {
  color: #545454;
  margin: 0;
  font-family: "Georgia";
  line-height: 110%;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 460px) {
  .donation p {
    letter-spacing: 0;
    text-align: center;
  }
}

.credit-card-panel {
  width: 349px;
  height: 43px;
  padding: 10px 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background-color: #f1cdb3;
  border-radius: 9px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
@media screen and (max-width: 560px) {
  .credit-card-panel {
    gap: 15px;
    width: auto;
  }
}
@media screen and (max-width: 320px) {
  .credit-card-panel {
    width: 281px;
    margin-top: 2px;
  }
}

@media (hover: hover) and (pointer: fine) {
  .credit-card-panel:hover {
    cursor: pointer;
    background-color: #fddcc4;
  }
}
.credit-card-panel p {
  font-size: 20px;
}
@media screen and (max-width: 560px) {
  .credit-card-panel p {
    font-size: 17px;
  }
}
@media screen and (max-width: 460px) {
  .credit-card-panel p {
    font-size: 15px;
    letter-spacing: 0.06em;
    padding-top: 5px;
  }
}

.donation .legal-info {
  font-family: "Arial";
  font-style: italic;
  font-size: 12px;
  line-height: 18px;
  color: #b2b2b2;
  letter-spacing: 0;
}
@media screen and (max-width: 560px) {
  .donation .legal-info {
    text-align: justify;
  }
}
@media screen and (max-width: 320px) {
  .donation .legal-info {
    width: 280px;
  }
}

footer {
  background: url("../../assets/images/noise_transparent.png"), radial-gradient(110.67% 538.64% at 5.73% 50%, #513D2F 0%, #1A1A1C 100%), #211F20;
}

footer .container {
  background: url("../../assets/images/footer-puppy.png") no-repeat calc(100% - 40px) 100%;
  padding-top: 56px;
  padding-bottom: 60px;
}
@media screen and (max-width: 1030px) {
  footer .container {
    background-position: 50% bottom;
    min-height: 640px;
  }
}
@media screen and (max-width: 768px) {
  footer .container {
    padding: 30px 65px;
  }
}
@media screen and (max-width: 767px) {
  footer .container {
    padding: 30px calc(51vw - 320px);
  }
}
@media screen and (max-width: 660px) {
  footer .container {
    padding: 30px 20px;
  }
}
@media screen and (max-width: 580px) {
  footer .container {
    min-height: 809px;
  }
}
@media screen and (max-width: 320px) {
  footer .container {
    background-size: 81%;
    padding: 30px 10px;
  }
}

.footer-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 740px;
  gap: 40px;
}
@media screen and (max-width: 1250px) {
  .footer-info {
    max-width: 65%;
  }
}
@media screen and (max-width: 1030px) {
  .footer-info {
    max-width: 98%;
  }
}
@media screen and (max-width: 768px) {
  .footer-info {
    max-width: 740px;
  }
}
@media screen and (max-width: 660px) {
  .footer-info {
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
  }
}
@media screen and (max-width: 580px) {
  .footer-info {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.footer-column {
  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;
}
@media screen and (max-width: 580px) {
  .footer-column {
    height: 208px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

@media screen and (max-width: 320px) {
  .footer-column:last-child {
    height: 222px;
  }
  .footer-column:last-child .footer-item {
    width: 100%;
  }
}
footer h2 {
  color: #ffffff;
  max-width: 280px;
  margin: 0;
}
@media screen and (max-width: 660px) {
  footer h2 {
    font-size: calc(2vw + 20px);
  }
}
@media screen and (max-width: 320px) {
  footer h2 {
    font-size: 25px;
  }
}

.footer-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.footer-item img {
  cursor: pointer;
}

footer p {
  max-width: 260px;
  color: #f1cdb3;
  font-family: "Georgia";
  font-size: 20px;
  line-height: 115%;
  letter-spacing: 0.06em;
  margin: 0;
}

@media (hover: hover) and (pointer: fine) {
  .footer-item a:hover,
.footer-item img:hover + p a {
    text-decoration: underline;
  }
}
.popup {
  background: #fafafa;
  max-width: 900px;
  width: 85%;
  max-height: 500px;
  height: 85%;
  position: fixed;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  border-radius: 9px;
  -webkit-box-shadow: 0px 2px 35px 14px rgba(13, 13, 13, 0.04);
          box-shadow: 0px 2px 35px 14px rgba(13, 13, 13, 0.04);
}
@media screen and (max-width: 768px) {
  .popup {
    max-width: 630px;
    max-height: 350px;
  }
}
@media screen and (max-width: 600px) {
  .popup {
    width: 80%;
    height: 80%;
  }
}
@media screen and (max-width: 320px) {
  .popup {
    max-width: 240px;
    min-height: 341px;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    max-height: none;
  }
}
.popup > img {
  border-radius: 9px 0px 0px 9px;
  height: 50vw;
  max-height: 100%;
  max-width: 60%;
  margin: auto 0;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 767px) {
  .popup > img {
    height: 40vw;
    max-width: 50%;
  }
}
@media screen and (max-width: 600px) {
  .popup > img {
    height: 30vw;
    max-width: 40%;
  }
}
@media screen and (max-width: 530px) {
  .popup > img {
    display: none;
  }
}

.close {
  position: absolute;
  right: -41px;
  top: -52px;
}
@media screen and (max-width: 768px) {
  .close {
    right: -43px;
  }
}
@media screen and (max-width: 530px) {
  .close {
    right: -31px;
  }
}

.description {
  width: 100%;
  height: 100%;
  max-width: 351px;
  max-height: 362px;
  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;
  margin: 50px 20px 0 0;
}
@media screen and (max-width: 768px) {
  .description {
    max-width: 261px;
    max-height: 303px;
    margin: 10px 9px 0 0;
  }
}
@media screen and (max-width: 530px) {
  .description {
    margin: 10px;
    max-width: 100%;
    max-height: 90%;
  }
  .description .title {
    text-align: center;
  }
  .description h2 {
    font-size: 35px;
  }
}
@media screen and (max-width: 320px) {
  .description {
    max-width: 220px;
    min-height: 321px;
  }
}
.description * {
  color: #000000;
  margin: 0;
  letter-spacing: 0.06em;
}
.description p {
  font-family: "Georgia";
  line-height: 110%;
  margin-top: 14px;
}
@media screen and (max-width: 768px) {
  .description p {
    font-size: 13px;
    margin-top: 8px;
  }
}
@media screen and (max-width: 530px) {
  .description p {
    text-align: justify;
  }
}
.description ul {
  font-family: "Georgia";
  font-weight: 400;
  font-size: 15px;
  line-height: 110%;
  padding-left: 15px;
  list-style: none;
}
.description li {
  margin-top: 12px;
}
@media screen and (max-width: 768px) {
  .description li {
    margin-top: 6px;
  }
}
@media screen and (max-width: 320px) {
  .description li {
    margin-top: 7px;
  }
}
.description li::before {
  content: "•";
  color: #f1cdb3;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
}

h3 {
  font-family: "Georgia";
  font-weight: 400;
  font-size: 20px;
  line-height: 115%;
  padding-top: 9px;
}

.bold {
  font-weight: bold;
}

.circle {
  width: 52px;
  height: 52px;
  font-size: 20px;
  line-height: 115%;
  padding-bottom: 1px;
}
/*# sourceMappingURL=style.css.map */