@font-face {
  font-family: "Arial";
  font-style: normal;
  font-weight: 400;
  src: url("../../assets/fonts/arial/arial-regular.ttf") format("truetype");
}
@font-face {
  font-family: "Arial";
  font-style: bold;
  font-weight: 700;
  src: url("../../assets/fonts/arial/arial-bold.ttf") format("truetype");
}
@font-face {
  font-family: "Arial";
  font-style: italic;
  font-weight: 400;
  src: url("../../assets/fonts/arial/arial-italic.ttf") format("truetype");
}
@font-face {
  font-family: "Georgia";
  font-style: normal;
  font-weight: 400;
  src: url("../../assets/fonts/georgia/georgia-regular.ttf") format("truetype");
}
@font-face {
  font-family: "Georgia";
  font-style: bold;
  font-weight: 700;
  src: url("../../assets/fonts/georgia/georgia-bold.ttf") format("truetype");
}
@media screen {
  html,
  body {
    scroll-behavior: smooth;
  }
}
:root {
  --white-color: #ffffff;
  --color-primary-normal: #f1cdb3;
  --color-primary-light-hover: #fddcc4;
  --color-light-l-background-sections: #f6f6f6;
  --color-light-s-text: #fafafa;
  --color-dark-s-text: #cdcdcd;
  --color-dark-3xl-text: #292929;
  --color-dark-l-text: #545454;
  --color-dark-xl-text: #4c4c4c;
  --color-dark-m-text: #b2b2b2;
}
* {
  box-sizing: border-box;
  margin: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  min-height: 100vh;
  margin: 0;
  padding: 0;
  flex-direction: column;
  justify-content: space-between;
  font-size: 15px;
  line-height: 24px;
}
body,
html {
  height: 100%;
}
.container {
  max-width: 1280px;
  margin: 0 auto;
}
/* Общие стили*/
/* HEADER */
header {
  height: 120px;
  background: var(--white-color);
}
.header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 30px 40px;
  background: var(--white-color);
}
/* LOGO */
.logo {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 60px;
}
.header-logo {
  display: flex;
  align-items: center;
  font-family: "Georgia";
  font-style: normal;
  font-weight: 400;
  font-size: 32px;
  line-height: 110%;
  letter-spacing: 0.06em;
  color: var(--color-dark-l-text);
  text-decoration: none;
  transition: 0.5s;
}
.header-logo:hover {
  cursor: pointer;
  color: var(--color-dark-3xl-text);
  font-weight: 500;
  transition: 0.5s;
}
.sub-logo {
  display: flex;
  align-items: center;
  align-self: flex-end;
  font-family: "Arial";
  font-style: normal;
  font-weight: 400;
  font-size: 13px;
  line-height: 15px;
  letter-spacing: 0.1em;
  color: var(--color-dark-3xl-text);
}
/* NAVIGATION */
.nav {
  display: flex;
}
.nav-list {
  display: flex;
  gap: 35px;
}
.nav-item {
  display: flex;
  align-items: center;
}
.nav-link {
  font-family: "Arial";
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 160%;
  color: var(--color-dark-l-text);
  text-decoration: none;
  transition: 0.5s;
}
.nav-link:hover {
  color: var(--color-dark-3xl-text);
  transition: 0.5s;
}
.nav-link-our-pets {
  font-family: "Arial";
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 160%;
  color: var(--color-dark-3xl-text);
  border-bottom: 3px solid var(--color-primary-normal);
  text-decoration: none;
  pointer-events: none;
}
.burger {
  display: none;
}
/* OUR PETS */
main {
  background: var(--color-light-l-background-sections);
}
.our-pets {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 80px 40px 100px;
}
.our-pets-title {
  font-family: "Georgia";
  font-style: normal;
  font-weight: 400;
  font-size: 35px;
  line-height: 46px;
  letter-spacing: 0.06em;
  color: var(--color-dark-l-text);
  width: 400px;
  height: 90px;
  align-self: center;
  text-align: center;
  margin-bottom: 60px;
}
.wrapper-cards-of-pets {
  display: grid;
  grid-template-columns: 25% 25% 25% 25%;
  grid-template-rows: 50% 50%;
  gap: 20px 10px;
}
.wrapper-button-our-pets {
  display: flex;
  align-self: center;
  flex-direction: row;
  justify-content: space-between;
  margin-top: 70px;
  width: 340px;
  height: 52px;
  transition: 0.5s;
}
.btn-arrow {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 52px;
  height: 52px;
  border: 2px solid var(--color-primary-normal);
  box-sizing: border-box;
  border-radius: 100px;
  align-self: center;
  cursor: pointer;
  transition: 0.5s;
  background-color: var(--color-light-l-background-sections);
}
.btn-arrow:hover {
  cursor: pointer;
  transition: 0.5s;
  background-color: var(--color-primary-light-hover);
  border: 2px solid var(--color-primary-light-hover);
}
.btn-arrow-1 {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 52px;
  height: 52px;
  border: 2px solid var(--color-primary-normal);
  box-sizing: border-box;
  border-radius: 100px;
  align-self: center;
  background: var(--color-primary-normal);
  cursor: default;
  transition: 0.5s;
}
.btn-arrow-left {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 52px;
  height: 52px;
  border: 2px solid var(--color-dark-s-text);
  box-sizing: border-box;
  border-radius: 100px;
  align-self: center;
  color: var(--color-dark-s-text);
  background-color: var(--color-light-l-background-sections);
  pointer-events: none;
  cursor: none;
}
.cards-of-pets {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--color-light-s-text);
  border-radius: 9px;
  width: 270px;
  height: 435px;
  transition: 0.5s;
}
.cards-of-pets:hover {
  background: var(--white-color);
  cursor: pointer;
  box-shadow: 0 2px 35px 14px rgba(13, 13, 13, 0.04);
  transition: 0.5s;
}
.cards-of-pets:hover .button-learn-more {
  cursor: pointer;
  background: var(--color-primary-light-hover);
  border: 2px solid var(--color-primary-light-hover);
  transition: 0.5s;
}
.foto-pets {
  width: 270px;
  height: 270px;
}
.name-of-pets {
  font-family: "Georgia";
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 23px;
  display: flex;
  align-self: center;
  text-align: center;
  letter-spacing: 0.06em;
  color: var(--color-dark-l-text);
}
.button-learn-more {
  display: flex;
  align-self: center;
  width: 187px;
  height: 52px;
  border-radius: 100px;
  text-decoration: none;
  border: 2px solid var(--color-primary-normal);
  box-sizing: border-box;
  margin-bottom: 30px;
  transition: 0.5s;
}
.button-learn-more:hover {
  cursor: pointer;
  background: var(--color-primary-light-hover);
  border: 2px solid var(--color-primary-light-hover);
  transition: 0.5s;
}
.button-text {
  font-family: "Georgia";
  font-style: normal;
  font-weight: 400;
  font-size: 17px;
  line-height: 130%;
  color: var(--color-dark-3xl-text);
  margin: auto;
  letter-spacing: 0.06em;
}
/* FOOTER */
footer {
  background: url(../../assets/img/noise_transparent@2x.png),
    radial-gradient(100% 215.42% at 0% 0%, #5b483a 0%, #262425 100%),
    linear-gradient(0deg, #211f20, #211f20);
}
.footer-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 40px 40px 0;
}
.contacts-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 279px;
  height: 234px;
  margin-top: 15px;
}
.address-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 302px;
  height: 234px;
  margin-top: 15px;
}
.footer-puppy-wrapper {
  width: 300px;
  height: 310px;
}
.footer-title {
  height: 90px;
  font-family: "Georgia";
  font-style: normal;
  font-weight: 400;
  font-size: 35px;
  line-height: 130%;
  letter-spacing: 0.06em;
  color: var(--white-color);
  align-self: flex-start;
}
.footer-link-container {
  display: flex;
  flex-direction: row;
  align-self: flex-start;
  align-items: center;
  line-height: 115%;
  transition: 0.5s;
}
.footer-link-container:hover .footer-list-item-text {
  color: var(--color-primary-light-hover);
  transition: 0.5s;
}
.footer-list-item-text {
  font-family: "Georgia";
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 115%;
  letter-spacing: 0.06em;
  color: var(--color-primary-normal);
  margin-left: 20px;
  transition: 0.5s;
}
.no-underline {
  text-decoration: none;
}
.icon-place {
  height: 32px;
}
/* !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! */
@media screen and (max-width: 767.98px) {
  .nav {
    /* display: none; */
    position: fixed;
    top: 0px;
    right: -100%;
    /* background: var(--color-dark-3xl-text); */
    background: var(--color-dark-3xl-text);
    width: 320px;
    height: 100%;
    transition: right 1s;
  }
  .nav .nav-list {
    display: flex;
    flex-direction: column;
    align-self: center;
    text-align: center;
    margin: auto;
    padding: 0;
    gap: 40px;
  }
  .nav .nav-item {
    display: flex;
    align-items: center;
    margin: auto;
    padding: 0;
  }
  .nav-link {
    font-size: 32px;
    color: var(--color-dark-s-text);
    transition: 0.4s;
  }
  .nav-link:hover {
    color: var(--color-dark-s-text);
    transition: 0.5s;
  }
  .nav-link-our-pets {
    font-size: 32px;
    color: var(--color-light-s-text);
  }
  .nav.open {
    display: flex;
    position: absolute;
    /* transform: translate(0, 0); */
    right: 0;
    transition: right 0.6s;
    z-index: 500;
  }
  .burger {
    display: inline-block;
    cursor: pointer;
    position: absolute;
    top: 49px;
    right: 20px;
    transform: translate(-50%, -50%);
    z-index: 1000;
  }
  .bar1, .bar2, .bar3 {
    width: 30px;
    height: 2px;
    background-color: #000000;
    margin: 10px 0;
    transition: 0.4s;
  }
  /* Rotate first bar */
  .active .bar1 {
    -webkit-transform: rotate(-90deg) translate(-10px, 10px) ;
    transform: rotate(-90deg) translate(-10px, 10px) ;
  }
  /* Fade out the second bar */
  .active .bar2 {
    -webkit-transform: rotate(-90deg) translate(2px, 0px) ;
    transform: rotate(-90deg) translate(2px, 0px) ;
  }
  /* Rotate last bar */
  .active .bar3 {
    -webkit-transform: rotate(90deg) translate(-14px, 10px) ;
    transform: rotate(90deg) translate(-14px, 10px) ;
  }
  .hidden {
    overflow: hidden;
  }
  .all.shadow {
    position: fixed;
    left: 0;
    top: 0;
    height: 100vh;
    width: 100vw;
    background: #000;
    opacity: 0.35;
    z-index: 10;
  }
}

@media screen and (min-width: 601px) and (max-width: 1279px) {
  /* стили для 768*/
  .container {
    max-width: 1279px;
    min-width: 541px;
  }
  /* HEADER */
  .header {
    padding: 30px 30px 60px;
  }
  /*OUR PETS  */
  .our-pets {
    padding: 80px 30px 75px;
  }
  .our-pets-title {
    margin-bottom: 30px;
  }
  .wrapper-cards-of-pets {
    display: flex;
    flex-wrap: wrap;
    /* gap: 30px 40px; */
    gap: 30px 10px;
    justify-content: space-between;
    align-items: center;
    padding: 0 auto;
  }
  .wrapper-button-our-pets {
    margin-top: 40px;
  }
  .footer-wrapper {
    flex-wrap: wrap;
    padding: 30px 63px 0;
  }
  .contacts-wrapper {
    margin-bottom: 0;
    margin-top: 0;
  }
  .address-wrapper {
    margin-bottom: 0;
    margin-top: 0;
  }
  .footer-puppy {
    margin: 65px auto 0;
  }
}
@media screen and (min-Width: 600px) and (max-width: 877px) {
  .cards-of-pets-none768 {
    display: none;
  }
}
@media screen and (min-width: 750px) and (max-width: 770px) {
  .wrapper-cards-of-pets {
    padding: 0 65px;
  }
}
@media screen and (min-width: 560px) and (max-width: 750px) {
  .wrapper-cards-of-pets {
    padding: 0 auto;
  }
}
@media screen and (min-width: 20px) and (max-width: 601px) {
  /* HEADER */
  .header {
    padding: 30px 20px;
  }
  /* OUR FRIENDS */
  .container {
    max-width: 520px;
    min-width: 240px;
  }
  .our-pets {
    padding: 42px 40px 42px;
  }
  .our-pets-title {
    font-size: 25px;
    line-height: 32.5px;
    max-width: 300px;
    max-height: 64px;
    margin-bottom: 0;
  }
  .wrapper-cards-of-pets {
    display: flex;
    gap: 30px;
    padding: 42px 0;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .wrapper-button-our-pets {
    margin-top: 0;
    width: 300px;
  }
  .cards-of-pets-none320 {
    display: none;
  }
  /* FOOTER */
  .footer-wrapper {
    flex-direction: column;
    flex-wrap: nowrap;
    padding: 30px 10px 0;
  }
  .footer-title {
    font-size: 25px;
    line-height: 130%;
    align-self: flex-start;
    text-align: center;
  }
  .contacts-wrapper {
    display: flex;
    flex-direction: column;
    gap: 40px;
    width: 278px;
    height: 208px;
    margin: 0 auto 40px;
  }
  .address-wrapper {
    display: flex;
    flex-direction: column;
    gap: 40px;
    width: 294px;
    height: 222px;
    margin: 0 auto 40px;
  }
  .footer-list-item-text {
    margin-left: 19px;
  }
  .footer-link-container {
    align-self: center;
  }
  .located {
    margin-right: 25px;
  }
  .footer-puppy {
    width: 260px;
    height: 269px;
    align-self: center;
  }
}
@media screen and (min-width: 20px) and (max-width: 612px) {
  .wrapper-cards-of-pets {
    justify-content: center;
  }
}
@media screen and (min-width: 779px) {
  footer {
    background: url(../../assets/img/noise_transparent@2x.png),
    /* linear-gradient(0deg, #211F20, #211F20), */
    radial-gradient(75.67% 538.64% at 5.73% 50%, #513D2F 0%, #1A1A1C 100%);
  }
}
@media screen and (min-width: 400px) and (max-width: 780px) {
  footer {
    background: url(../../assets/img/noise_transparent@2x.png),
    /* linear-gradient(0deg, #211F20, #211F20), */
    radial-gradient(72.67% 538.64% at 5.73% 50%, #513D2F 0%, #1A1A1C 100%);
  }
}
@media screen and (min-width: 300px) and (max-width: 401px) {
  footer {
    background: url(../../assets/img/noise_transparent@2x.png),
    radial-gradient(71.67% 538.64% at 5.73% 50%, #513D2F 0%, #1A1A1C 100%);
  }
}