@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;
  }
}
@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: 30px;
}
@media screen and (max-width: 768px) {
  header .container {
    margin-bottom: 0;
  }
}

.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: #545454;
  font-family: "Georgia";
  font-size: 32px;
  line-height: 110%;
  font-weight: 400;
  margin: 0;
  margin-bottom: 10px;
  letter-spacing: 0.06em;
}

.logo p {
  color: #292929;
  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: #545454;
  -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: #292929;
  }
}
header nav li:active:not(.current-page) {
  color: #545454;
  border-bottom: solid 3px #f1cdb3;
}

.current-page a {
  cursor: default;
}

.current-page {
  color: #292929;
  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: #000000;
  left: 0;
  width: 100%;
  height: 2px;
  top: 10px;
}

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

.burger:before {
  top: 0;
}

.burger:after {
  bottom: 0;
}

.menu-panel {
  height: 100vh;
  width: 320px;
  background: #F6F6F6;
  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: #545454;
  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;
}

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 (hover: hover) and (pointer: fine) {
  .common-button:hover:not(.disabled) {
    background-color: #fddcc4;
  }
}
.common-button:active:not(.disabled) {
  background-color: #f1cdb3;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

h1,
h2 {
  font-family: "Georgia";
  font-weight: 400;
  font-size: 35px;
  line-height: 130%;
  letter-spacing: 0.06em;
  color: #545454;
}
@media screen and (max-width: 650px) {
  h1,
h2 {
    font-size: calc(2vw + 20px);
  }
}
@media screen and (max-width: 320px) {
  h1,
h2 {
    font-size: 25px;
  }
}

.our-friends {
  background: #f6f6f6;
}

.our-friends .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: 768px) {
  .our-friends .container {
    padding-bottom: 75px;
  }
}
@media screen and (max-width: 650px) {
  .our-friends .container {
    padding-bottom: 42px;
  }
}
@media screen and (max-width: 450px) {
  .our-friends .container {
    padding-left: 3vw;
    padding-right: 3vw;
  }
}
@media screen and (max-width: 320px) {
  .our-friends .container {
    padding: 30px 15px 42px;
  }
}

.our-friends h1 {
  text-align: center;
  margin: 50px 0 59px;
}
@media screen and (max-width: 768px) {
  .our-friends h1 {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 320px) {
  .our-friends h1 {
    margin: 10px 0 42px;
  }
}

.cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  row-gap: 30px;
  margin-bottom: 60px;
  -webkit-column-gap: 15px;
     -moz-column-gap: 15px;
          column-gap: 15px;
}
@media screen and (max-width: 1204px) {
  .cards {
    -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
  }
}
@media screen and (max-width: 768px) {
  .cards {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-column-gap: 40px;
       -moz-column-gap: 40px;
            column-gap: 40px;
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 715px) {
  .cards {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
  }
}
@media screen and (max-width: 320px) {
  .cards {
    margin-bottom: 43px;
  }
}

.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;
}

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

@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);
}

@media screen and (max-width: 1204px) {
  .tab-hide {
    display: none;
  }
}
@media screen and (max-width: 619px) {
  .mobile-hide {
    display: none;
  }
}
.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:not(.disabled) {
    border-color: #fddcc4;
  }
}
.trans-button:active:not(.disabled) {
  border-color: #f1cdb3;
}

.pagination {
  width: 340px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 400px) {
  .pagination {
    width: 100%;
    -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
  }
}
@media screen and (max-width: 320px) {
  .pagination {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: 300px;
  }
}

.circle {
  width: 52px;
  height: 52px;
  font-size: 20px;
  line-height: 115%;
  padding-bottom: 1px;
}

.disabled {
  border-color: #cdcdcd;
  color: #cdcdcd;
  cursor: default;
}

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: 1025px) {
  footer .container {
    min-height: 639px;
    padding: calc(32vw - 183px);
    padding-top: 30px;
    background-position: center bottom;
  }
}
@media screen and (max-width: 650px) {
  footer .container {
    min-height: 809px;
    padding: 10px;
    padding-top: 30px;
    background-size: 275px;
  }
}
@media screen and (max-width: 320px) {
  footer .container {
    background-size: 81%;
  }
}

.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;
}
@media screen and (max-width: 1250px) {
  .footer-info {
    max-width: 59vw;
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
  }
}
@media screen and (max-width: 1025px) {
  .footer-info {
    -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
    max-width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .footer-info {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    max-width: 740px;
  }
}
@media screen and (max-width: 650px) {
  .footer-info {
    -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;
    min-height: 470px;
  }
}

.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: 650px) {
  .footer-column {
    height: 207px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

@media screen and (max-width: 650px) {
  .footer-column:last-child {
    height: 222px;
  }
  .footer-column:last-child .footer-item {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
footer h2 {
  color: #ffffff;
  max-width: 280px;
  margin: 0;
}
@media screen and (max-width: 650px) {
  footer h2 {
    text-align: center;
  }
}

.footer-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 650px) {
  .footer-item {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100%;
  }
}

.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;
}
/*# sourceMappingURL=style.css.map */