.header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-left: 80px;
  padding-right: 80px;
  color: #171717;
  font-family: PT Serif;
  -webkit-animation: animation-name 5s;
          animation: animation-name 5s;
}

.header__title {
  display: block;
  text-decoration: none;
  font-family: "PT Serif";
  font-weight: bold;
  font-size: 25px;
  line-height: 33px;
  letter-spacing: 2.5px;
  color: #171717;
}

.header__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style-type: none;
  font-size: 14px;
  line-height: 19px;
}

.header__menu li {
  padding: 5px;
}

.header__menu li:hover {
  background-color: skyblue;
}

.header__menu li a {
  text-decoration: none;
  color: #171717;
}

.header__menu li a.active {
  color: #c9a96e;
}

@-webkit-keyframes animation-name {
  from {
    background-color: yellow;
  }
  to {
    background-color: white;
  }
}

@keyframes animation-name {
  from {
    background-color: yellow;
  }
  to {
    background-color: white;
  }
}

@media (max-width: 420px) {
  .header {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-left: 20px;
    padding-right: 20px;
    text-align: center;
  }
  .header__title {
    margin: 14px;
  }
}

.intro {
  background-image: url(/image/hero.png);
  font-family: "PT Serif";
  color: #ffffff;
  background-repeat: no-repeat;
  background-size: cover;
}

.intro__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 700px;
  padding-bottom: 60px;
}

.intro__subtitle {
  font-weight: bold;
  font-size: 40px;
  line-height: 50px;
  width: 560px;
}

.intro__item a {
  text-decoration: none;
  color: #ffffff;
}

@media (max-width: 420px) {
  .intro__subtitle {
    width: 100%;
  }
  .intro {
    background-size: cover;
  }
  .intro {
    background-size: cover;
  }
  .intro__container {
    padding: 19px;
  }
}

@media (max-width: 1040px) {
  .intro {
    background-size: cover;
  }
  .intro__container {
    padding: 20px;
  }
}

.line {
  height: 200px;
  display: -ms-grid;
  display: grid;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-grid-columns: (minmax(200px, 1fr))[auto-fill];
      grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  -ms-grid-rows: 1fr;
      grid-template-rows: 1fr;
  -webkit-column-gap: 10px;
          column-gap: 10px;
  overflow: hidden;
}

.line__img {
  height: 200px;
  display: block;
}

@media (max-width: 420px) {
  .line {
    height: 560px;
    -ms-grid-columns: (minmax(180px, 1fr))[auto-fill];
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    row-gap: 10px;
  }
  .line__img {
    width: 180px;
    height: 180px;
  }
}

.categories {
  width: 270px;
  font-size: 16px;
  line-height: 21px;
  text-align: center;
  color: #171717;
  padding-left: 0;
}

.categories__link {
  text-decoration: none;
  list-style-type: none;
  color: #666666;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-top: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #eeeeee;
}

.categories__link:last-child {
  border-bottom: none;
}

.social {
  width: 270px;
  font-family: PT Serif;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  text-align: center;
  color: #171717;
  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;
}

.social__link {
  width: 32%;
  background-color: #eeeeee;
  margin-bottom: 1.33%;
  padding: 10px;
  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;
}

.social__link img {
  width: 20px;
  height: 20px;
}

.social__link a {
  display: none;
}

.social__link p {
  display: inline;
}

.card {
  width: 270px;
  text-align: center;
  margin-bottom: 70px;
  -webkit-box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.1);
}

.card_wide {
  width: 370px;
}

.card_large {
  width: 770px;
  text-align: left;
}

.card__description {
  font-weight: bold;
  font-size: 16px;
  line-height: 21px;
  color: #171717;
  margin-top: 4px;
  margin-bottom: 4px;
  margin-left: 84px;
  margin-right: 83px;
}

.card__subtitle {
  font-style: italic;
  font-weight: normal;
  font-size: 14px;
  line-height: 19px;
  text-decoration: none;
  color: #b1b1b1;
  margin-bottom: 14px;
  margin-left: 68px;
  margin-right: 67px;
}

.card__content {
  text-align: left;
  margin-left: 20px;
  margin-right: 20px;
  margin-bottom: 14px;
}

.card__pol {
  color: #666666;
  padding: 15px 20px;
  max-width: 690px;
}

.card__part {
  border-top: 1px solid #eeeeee;
  padding: 15px 20px;
}

.card__part_noborder {
  border-top: none;
}

.card__link {
  font-weight: normal;
  font-size: 12px;
  line-height: 16px;
  text-decoration: none;
  color: #c9a96e;
  text-transform: uppercase;
  margin-left: 20px;
  margin-right: 20px;
}

.card__image {
  max-width: 100%;
}

.card__info {
  font-weight: normal;
  font-size: 12px;
  line-height: 16px;
}

.card__info a {
  text-decoration: none;
  list-style-type: none;
  color: #666666;
}

@media (max-width: 420px) {
  .card__content {
    text-align: center;
    margin-left: 7px;
  }
}

@media (max-width: 1040px) {
  .card_large {
    width: 100%;
    margin-right: 9px;
  }
}

.columns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.columns__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.columns__item_66 {
  width: 66.66%;
  padding-top: 20px;
}

.columns__lines {
  width: 100%;
  height: 200px;
  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;
  overflow: hidden;
}

.columns__line {
  height: 200px;
  width: 200px;
  margin-right: 10px;
}

.columns__item_33 {
  width: 33.33%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media (max-width: 420px) {
  .columns__item_66,
  .columns__item_33 {
    width: 100%;
  }
  .columns {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .columns__lines {
    height: 150vw;
  }
  .columns__line {
    height: auto;
    width: 48vw;
    margin: auto;
  }
}

@media (max-width: 1040px) {
  .columns__item_33,
  .columns__item_66 {
    width: 100%;
  }
}

.tags {
  width: 270px;
  font-family: PT Serif;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  text-align: center;
  color: #171717;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.tags__link {
  margin-bottom: 10px;
  margin-right: 10px;
  padding: 10px 14px;
  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;
  background-color: #eeeeee;
}

.tags__link a {
  text-decoration: none;
  list-style-type: none;
  color: #666666;
}

.footer {
  width: 1170px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.footer__title {
  margin-bottom: 57px;
  font-family: "PT Serif";
  font-weight: bold;
  font-size: 25px;
  text-align: center;
  line-height: 33px;
  letter-spacing: 2.5px;
  color: #171717;
}

.footer__menu {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 29px;
  width: 357px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  list-style-type: none;
  font-family: PT Sans;
  font-style: normal;
  font-size: 14px;
  line-height: 19px;
  text-decoration: none;
}

.footer__menu:hover {
  -webkit-transform: scale(2);
          transform: scale(2);
}

.footer__menu li {
  padding: 5px;
}

.footer__menu a {
  text-decoration: none;
  color: #171717;
}

.footer__list {
  width: 307px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  list-style-type: none;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 74px;
}

.footer__image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background-color: #faf4f4;
  color: #c9a96e;
}

.footer__link {
  font-family: PT Sans;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 18px;
  text-align: center;
  color: #666666;
}

.scroll {
  width: 509px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0 auto;
  font-family: HK Grotesk;
  font-size: 14px;
  line-height: 16px;
  list-style: none;
  color: #171717;
}

@media (max-width: 420px) {
  .scroll {
    padding: 14px;
    -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
  }
  .scroll__item_extreme {
    display: none;
  }
}

.container {
  width: 1270px;
  max-width: 100%;
  margin: 0 auto;
}

.section-title {
  font-family: PT Serif;
  font-size: 24px;
  line-height: 32px;
  margin-top: 81px;
  text-align: center;
  color: #171717;
}

.button {
  width: 270px;
  padding: 15px;
  margin-bottom: 20px;
  margin-top: 20px;
  border: 1px solid #eeeeee;
  text-align: center;
}

.card__image,
.card__link {
  -webkit-transition: 1s;
  transition: 1s;
}

.card.active .card__image {
  -webkit-transform: scale(1.4) rotate(-4deg);
          transform: scale(1.4) rotate(-4deg);
}

.card.active .card__link {
  font-size: 20px;
}

.overlay {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
  visibility: hidden;
}

.overlay_active {
  visibility: visible;
}

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

.overlay__item {
  width: 300px;
  height: 200px;
  background-color: #fff;
  padding: 20px;
  text-align: center;
}

/* Cats */
.cats-place {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.cats-place_item {
  width: 300px;
}

.cat_img {
  max-width: 100%;
  border-radius: 50%;
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  margin: 0px;
}
/*# sourceMappingURL=style.css.map */