html,
body {
  height: 100%;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
}

html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

*,
*:before,
*:after {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

.wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 100%;
}

.header,
.footer {
  -ms-flex-negative: 1;
      flex-shrink: 1;
}

.main {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -ms-flex-preferred-size: auto;
      flex-basis: auto;
}

.container {
  position: relative;
  max-width: 1280px;
  width: 100%;
  padding: 0 15px;
  margin: 0 auto;
}

a {
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

/* Блок с Новостями */
.main-news .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 25px 15px;
}
.main-news__title {
  padding: 0;
  margin: 0 0 20px;
  font-size: 24px;
  font-weight: normal;
  text-align: center;
}

.main-news__wrap {
  margin-bottom: 20px;
}

.main-news__list,
.inner-news__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 0;
  margin: 0 -15px -15px;
  list-style: none;
}
.news-item {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  width: calc(33.333% - 30px);
  max-width: 400px;
  min-width: 290px;
  margin: 0 15px 15px;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.news-item__link {
  position: relative;
  display: block;
  color: #fff;
  text-decoration: none;
}
.news-item__pic {
  width: 100%;
  height: auto;
  font-size: 0;
  overflow: hidden;
}
.news-item__img {
  width: 100%;
  height: auto;
}
.news-item__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.news-item__date {
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  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: 70px;
  height: 70px;
  font-size: 14px;
  text-align: center;
  color: black;
  background-color: #f3840a;
}
.news-item__title {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 20px;
  margin: 0;
  font-size: 17px;
  font-weight: normal;
  color: #fff;
  background-color: rgba(0,0,0,0.5);
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.news-item:hover {
  -webkit-box-shadow: 3px 3px 15px 0 rgba(0,0,0,0.5);
          box-shadow: 3px 3px 15px 0 rgba(0,0,0,0.5);
}
.news-item__link:hover .news-item__title {
  background-color: rgba(0,0,0,0.7);
}

.main-news__btn {
  -ms-flex-item-align: end;
      align-self: flex-end;
  display: inline-block;
  font-size: 16px;
  color: black;
  text-decoration: none;
}
.main-news__btn:hover {
  color: #f3840a;
  text-decoration: underline;
}

/* ШАпка сайта */

.header-upRow {
  padding: 20px 0;
  background-image: url('/images/header-bg.png');
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
}
.header-upRow .container {
  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;
}
.header .centerCol {
  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: 15px 0;
}
.header-logo {
  display: block;
  max-width: 480px;
  width: 100%;
  height: auto;
  margin-bottom: 15px;
  font-size: 0;
  text-decoration: none;
}
.header-logo img {
  width: 100%;
  height: auto;
}
.header-text {
  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;
  margin-bottom: 15px;
}
.header-text img {
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  display: inline-block;
  max-width: 90px;
  height: auto;
  margin-right: 10px;
}
.header-text p {
  padding: 0;
  margin: 0;
  font-size: 20px;
}
.header-contact {
  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;
}
.header-mail,
.header-tel {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 10px;
  font-size: 16px;
  color: black;
  text-decoration: none;
}
.header-tel i,
.header-mail i {
  display: inline-block;
  margin-right: 5px;
}
.header-tel:hover,
.header-mail:hover {
  color: #f3840a;
}
.header-leftCol,
.header-rightCol {
  width: 17%;
  height: auto;
  font-size: 0;
  overflow: hidden;
}
.header-rightCol {
  width: 18%;
}

.header-leftCol img,
.header-rightCol img {
  width: 100%;
  height: auto;
}
.header-lowRow {
  position: relative;
  padding: 3px 0;
  background-color: #251d1d;
}
.header-lowRow::before,
.header-lowRow::after {
  content: "";
  top: 0;
  left: 0;
  right: 0;
  display: block;
  border-top: 1px solid #8c6a1b;
}
.header-lowRow::after {
  top: initial;
  bottom: 0;
}
.header-nav__btn {
  display: none;
}
.header-nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0;
  margin: 0;
  list-style: none;
}
.header-nav__item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.header-nav__item:not(:last-child) {
  margin-right: 1px;
}
.header-nav__item::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -1px;
  -webkit-transform: translatey(-50%);
      -ms-transform: translatey(-50%);
          transform: translatey(-50%);
  display: block;
  height: 16px;
  border-right: 1px solid #8c6a1b;
}
.header-nav__item:last-child::after {
  display: none;
}
.header-nav__link {
  display: inline-block;
  padding: 15px 20px;
  font-size: 16px;
  color: #fff;
  text-align: center;
  text-decoration: none;
}
.header-nav__link:hover {
  background-color: #f3840a;
  color: #251d1d;
}

/* Основной контент */
.content-nav {
  padding: 75px 0 30px;
  background-image: url("/images/mainbg.jpg");
  background-repeat: repeat;
}
.content-nav__btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.content-nav__btn {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 400px;
  height: 100px;
  padding: 0 5%;
  margin: 0 50px;
  border: 1px solid #000;
  border-radius: 10px;
  font-size: 28px;
  text-decoration: none;
  text-align: center;
  color: black;
  background-color: #f3840a;
}
.main:not(.main--inner) .content-nav__img {
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: translate(-30%, -30%);
      -ms-transform: translate(-30%, -30%);
          transform: translate(-30%, -30%);
}
/* Хлеб крошки + кнопки на внутренних */
.main--inner .content-nav {
  padding: 0 0 0;
}
.main--inner .content-nav .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 15px;
}
.breadcrumbs {
  font-size: 14px;
}
.breadcrumbs #path span {
  color: #707070;
}
.breadcrumbs #path a span {
  text-decoration: none;
  color: black
}
.breadcrumbs #path a:hover {
  text-decoration: underline;
}
.main--inner .content-nav__btn {
  width: auto;
  height: auto;
  margin: 0 0;
  padding: 0 0;
  border: none;
  font-size: 18px;
  background-color: transparent;
}
.main--inner .content-nav__btn:first-child {
  margin-right: 30px;
}
.main--inner .content-nav__btn:hover {
  color: #f3840a;
}
.main--inner .content-nav__img {
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 66px;
  height: 46px;
  margin-right: 10px;
  border: 1px solid black;
  border-radius: 5px;
  font-size: 0;
  background-color: #f3840a;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.main--inner .content-nav__btn:hover .content-nav__img {
  -webkit-box-shadow: 0 0 5px 1px rgba(0,0,0,0.4);
          box-shadow: 0 0 5px 1px rgba(0,0,0,0.4);
}
.main--inner .content-nav__img img {
  max-width: 60%;
  height: auto;
}

/* Подвал сайта */
.footer {
  font-size: 14px;
}
.footer .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 10px 15px;
}
.footer-upRow .container {
  padding-top: 12px;
}
.footer-upRow .container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 15px;
  right: 15px;
  display: block;
  border-top: 2px solid #c8c8c8;
}
.footer-contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.footer-tel,
.footer-mail {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 16px;
  color: black;
  text-decoration: none;
}
.footer-tel i,
.footer-mail i {
  display: inline-block;
  margin-right: 5px;
  color: #f3840a;
}
.footer-tel:hover,
.footer-mail:hover {
  color: #f3840a;
}
.footer-mess {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 15px;
}
.footer-mess__btn {
  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: 36px;
  height: 36px;
  color: #858585;
  text-decoration: none;
}
.footer-mess__btn:hover {
  color: #f3840a;
}
.footer-social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.footer-social__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0;
  margin: 0 0 0 15px;
  list-style: none;
}
.footer-social__item {
  width: 36px;
  height: 36px;
  border: 1px solid #858585;
  border-radius: 50%;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.footer-social__item:not(:last-child) {
  margin-right: 5px;
}
.footer-social__item:hover {
  border-color: #251d1d;
}
.footer-social__link {
  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: 100%;
  height: 100%;
  text-decoration: none;
  color: #858585;
}
.footer-social__link:hover {
  color: #f3840a;
}


.footer-lowRow {
  color: #898989;
  background-color: #251d1d;
}
.madeIn__text {
  padding: 0;
  margin: 0;
}
.madeIn__text a {
  text-decoration: none;
  color: #f3840a;
}
.madeIn__text a:hover {
  text-decoration: underline;
}

/* Детальная страницы собаки */
.dog-detail {
  padding: 30px 0 0;
}
.dog-detail h2 {
  padding: 0;
  margin: 0;
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: normal;
}
.dog-info {
  margin-bottom: 50px;
}
.dog-info .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.dog-info__img {
  position: relative;
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  max-width: 30%;
  width: 100%;
  margin-right: 50px;
  border: 3px solid #fff;
  font-size: 0;
  overflow: hidden;
  -webkit-box-shadow: 0 0 5px 0 rgba(0,0,0,0.2);
          box-shadow: 0 0 5px 0 rgba(0,0,0,0.2);
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.dog-info__img:hover {
  -webkit-box-shadow: 0 0 10px 0 rgba(0,0,0,0.4);
          box-shadow: 0 0 10px 0 rgba(0,0,0,0.4);
}
.dog-info__img a {
  position: relative;
  display: block;
  text-decoration: none;
  color: black;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.dog-info__img img {
  width: 100%;
  height: auto;
}
.dog-info__img a i {
  position: absolute;
  right: 5%;
  bottom: 5%;
  font-size: 26px;
  color: rgba(255,255,255,0.7);
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.dog-info__img:hover a i {
  color: white;
}
.dog-info__name {
  padding: 0;
  margin: 0;
  margin-bottom: 30px;
  font-size: 30px;
  font-weight: normal;
}
.dog-info__row {
  padding: 0;
  margin: 0;
  margin-bottom: 5px;
  font-size: 16px;
}
.dog-info__subtitle {
  font-weight: bold;
}
.dog-info__row a {
  color: black;
}
.dog-info__row a:hover {
  color: #f3840a;
}

.family-info {
  margin-bottom: 25px;
}

.family-info .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.pedigree {
  width: calc(65% - 25px);
  margin-right: 25px;
}
.features {
  width: 35%;
}
.pedigree h2,
.features h2 {
  padding: 0;
  margin: 0;
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: normal;
}
.pedigree__table-wrap {
  width: 100%;
  -webkit-box-shadow: 0 0 5px 0 rgba(0,0,0,0.2);
          box-shadow: 0 0 5px 0 rgba(0,0,0,0.2);
}
.dogs-tree {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  font-size: 14px;
}
.dogs-tree td {
  width: 33.3333%;
  padding: 10px;
  border: 1px solid #eaeaea;
  text-align: center;
  vertical-align: middle;
}
.dogs-tree td a {
  display: inline-block;
  color: black;
  text-decoration: none;
}
.dogs-tree td a:hover {
  text-decoration: underline;
}
.features__content {
  width: 100%;
  padding: 10px 18px;
  -webkit-box-shadow: 0 0 5px 0 rgba(0,0,0,0.2);
          box-shadow: 0 0 5px 0 rgba(0,0,0,0.2);
}

.features__content p {
  padding: 0;
  margin: 0;
  margin-bottom: 10px;
}
.features__content p:last-of-type {
  margin-bottom: 0;
}
.dog-photos {
  padding: 25px 0;
  background-image: url(/images/mainbg.jpg);
  background-repeat: repeat;
}

.dog-photos h2 {
  padding: 0;
  margin: 0;
  margin-bottom: 20px;
  font-size: 20px;
}
.photo-slider__wrap {
  padding: 5px;
  -webkit-box-shadow: 0 0 5px 0 rgba(0,0,0,0.2);
          box-shadow: 0 0 5px 0 rgba(0,0,0,0.2);
  background-color: #fff;
}
.dog-photos h2 {
  font-weight: normal;
}
.dog-photos h2 a {
  color: black;
  text-decoration: none;
}
.dog-photos h2 a:hover {
  text-decoration: underline;
}
.swiper-container {
  width: 100%;
  height: auto;
}
.slide-item {
  width: 100%;
  font-size: 0;
}
.slide-item a {
  position: relative;
  display: inline-block;
  width: 100%;
  text-decoration: none;
  overflow: hidden;
}
.slide-item a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.slide-item a:hover::before {
  background-color: rgba(0,0,0,0.2);
}
.slide-item a img {
  width: 100%;
  height: auto;
}
.swiper-prev,
.swiper-next {
  position: absolute;
  bottom: 20px;
  z-index: 100;
  cursor: pointer;
}
.swiper-prev {
  left: 20px;
}
.swiper-next {
  right: 20px;
}
.swiper-prev i,
.swiper-next i {
  color: rgba(211, 211, 211, 0.7);
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.swiper-prev:hover i,
.swiper-next:hover i {
 color: #f3840a;
}
.dog-child {
  padding: 25px 0;
}
.childs-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 -20px;
}
.child-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: calc(50% - 40px);
  margin: 0 20px 40px;
}
.child-item__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  text-decoration: none;
  color: black;
}
.child-item__name {
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  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;
  min-width: 80px;
  padding: 5px;
  margin-right: 15px;
  border: 1px solid #000;
  border-radius: 5px;
  font-size: 46px;
  font-weight: bold;
  background-color: #f3840a;
}
.child-item__caption p {
  padding: 0;
  margin: 0;
  margin-bottom: 3px;
}

.dog-caption .container {
  padding: 25px 15px;
}

.dog-news .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-bottom: 25px;
}
.dog-news__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 0;
  margin: 0 -10px;
}
.dog-news__item {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: calc(25% - 20px);
  max-width: 320px;
  min-width: 280px;
  margin: 0 10px 20px;
}
.dog-news__link {
  display: block;
  width: 100%;
  padding: 20px;
  border: 1px solid transparent;
  text-decoration: none;
  color: black;
  -webkit-box-shadow: 0 0 5px 0 rgba(0,0,0,0.25);
          box-shadow: 0 0 5px 0 rgba(0,0,0,0.25);
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.dog-news__link:hover {
  border: 1px solid #eaeaea;
  -webkit-box-shadow: 0 0 8px 0 rgba(0,0,0,0.35);
          box-shadow: 0 0 8px 0 rgba(0,0,0,0.35);
}
.dog-news__date {
  display: block;
  margin-bottom: 5px;
  font-size: 14px;
}
.dog-news__title {
  padding: 0;
  margin: 0;
  font-size: 16px;
  font-weight: normal;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.dog-news__link:hover .dog-news__title {
  color: #f3840a;
}
.dog-news__all-btn {
  -ms-flex-item-align: end;
      align-self: flex-end;
  display: inline-block;
  margin-bottom: 20px;
  text-decoration: none;
  color: black;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.dog-news__all-btn:hover {
  color: #f3840a;
}


/* СТили для фотографий и альбомов */
.album-list {
  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;
  margin: 0 -20px;
}
.album-item {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: calc(33.333% - 40px);
  max-width: 350px;
  min-width: 250px;
  margin: 0 20px 30px;
}
.album-item__link {
  display: block;
  padding:  10px 10px 15px;
  font-size: 0;
  text-decoration: none;
  color: black;
}
.album-item__pic {
  position: relative;
  width: 100%;
  height: auto;
  margin-bottom: 10px;
  border-radius: 10px;
  font-size: 0;
  overflow: hidden;
  -webkit-box-shadow: 0 0 10px 0 rgba(0,0,0,0.25);
          box-shadow: 0 0 10px 0 rgba(0,0,0,0.25);
}
.album-item__link:hover .album-item__pic {
  -webkit-box-shadow: 0 0 15px 2px rgba(0,0,0,0.35);
          box-shadow: 0 0 15px 2px rgba(0,0,0,0.35);
}
.album-item__pic::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.album-item__link:hover .album-item__pic::after {
  background-color: rgba(0,0,0,0.1);
}
.album-item__img {
  width: 100%;
  height: auto;
}
.album-item__title {
  padding: 0;
  margin: 0;
  font-size: 18px;
  font-weight: normal;
  text-align: center;
}

.photo-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 -15px;
}
.photo-list .pager {
  width: 100%;
  margin: 15px 0;
}
.photo-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: calc(20% - 30px);
  margin: 0 15px 30px;
}
.photo-item__link {
  position: relative;
  display: block;
  border-radius: 5px;
  font-size: 0;
  text-decoration: none;
  overflow: hidden;
  -webkit-box-shadow: 0 0 5px 0 rgba(0,0,0,0.5);
          box-shadow: 0 0 5px 0 rgba(0,0,0,0.5);
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.photo-item__link:hover {
  -webkit-box-shadow: 0 0 10px 1px rgba(0,0,0,0.6);
          box-shadow: 0 0 10px 1px rgba(0,0,0,0.6);
}
.photo-item__link::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.photo-item__link:hover::after {
  background-color: rgba(0,0,0,0.15);
}
.photo-item__img {
  width: 100%;
  height: auto;
}

/* Плашки собак в каталоге */
.all-dog-list {
  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;
  margin: 15px -15px 0;
}
.dog-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  width: calc(25% - 30px);
  min-width: 250px;
  max-width: 350px;
  margin: 0 15px 30px;
}
.dog-item__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  padding: 10px;
  border: 1px solid transparent;
  border-radius: 5px;
  text-decoration: none;
  color: black;
  overflow: hidden;
  -webkit-box-shadow: 0 0 10px 0 rgba(0,0,0,0.25);
          box-shadow: 0 0 10px 0 rgba(0,0,0,0.25);
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.dog-item__wrap:hover {
  border-color: #eaeaea;
  -webkit-box-shadow: 0 0 12px 0 rgba(0,0,0,0.35);
          box-shadow: 0 0 12px 0 rgba(0,0,0,0.35);
}
.dog-item__link {
  display: block;
  text-decoration: none;
  color: black;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.dog-item__pic {
  width: 100%;
  height: auto;
  margin-bottom: 15px;
  border-radius: 5px;
  font-size: 0;
  overflow: hidden;
}
.dog-item__pic img {
  width: 100%;
  height: auto;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.dog-item__link:hover img {
  -webkit-transform: scale(1.03);
      -ms-transform: scale(1.03);
          transform: scale(1.03);
}
.dog-item__title {
  padding: 0;
  margin: 0 0 15px;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.dog-item__link:hover .dog-item__title {
  color: #f3840a;
}
.dog-item__info {
  padding: 0 0 10px;
}
.dog-item__row {
  padding: 4px 8px;
  margin: 0 0 5px;
  font-size: 14px;
}
.dog-item__row:last-of-type {
  margin-bottom: 0;
}
.dog-item__row:nth-of-type(odd) {
  background-color: #eaeaea;
}
.dog-item__row a {
  color: black;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.dog-item__row a:hover {
  color: #f3840a;
}

/* Пометы */
.pomet-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 -15px;
}
.pomet-item {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  width: calc(20% - 30px);
  max-width: 230px;
  min-width: 180px;
  margin: 0 15px 30px;
  padding: 10px;
  border: 1px solid transparent;
  border-radius: 5px;
  -webkit-box-shadow: 0 0 5px 0 rgba(0,0,0,0.25);
          box-shadow: 0 0 5px 0 rgba(0,0,0,0.25);
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.pomet-item:hover {
  border-color: #eaeaea;
  -webkit-box-shadow: 0 0 10px 0 rgba(0,0,0,0.35);
          box-shadow: 0 0 10px 0 rgba(0,0,0,0.35);
}
.pomet-item__link {
  display: block;
  text-decoration: none;
  color: black;
}
.pomet-item__name {
  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: 100%;
  padding: 25px 0;
  margin-bottom: 10px;
  border: 2px solid black;
  border-radius: 5px;
  font-size: 40px;
  font-weight: bold;
  background-color: #f3840a;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.pomet-item__link:hover .pomet-item__name {
  background-color: #d47108;
}
.pomet-item__title {
  padding: 0;
  margin: 0 0 15px;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.pomet-item__link:hover .pomet-item__title {
  color: #f3840a;
}
.pomet-date {
  display: block;
  margin-bottom: 10px;
  font-size: 14px;
  text-align: center;
}
.pomet-info {
  padding: 0;
  margin: 0 0 10px;
  font-size: 14px;
  text-align: center;
}
.pomet-info b {
  display: block;
  margin-bottom: 5px;
}

/* Pomet detail page */
.pomet-detail {
  padding-bottom: 25px;
}
.pomet-detail__parents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 -25px 40px;
}
.parent {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 25px
}
.parent__link,
.parent__not-link {
  display: block;
  max-width: 300px;
  text-decoration: none;
}
.parent__pic {
  margin-bottom: 15px;
  border: 2px solid #eaeaea;
  border-radius: 5px;
  font-size: 0;
  overflow: hidden;
  -webkit-box-shadow: 0 0 5px 0 rgba(0,0,0,0.25);
          box-shadow: 0 0 5px 0 rgba(0,0,0,0.25);
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.parent__link:hover .parent__pic {
  border-color: #f3840a;
  -webkit-box-shadow: 0 0 10px 0 rgba(0,0,0,0.35);
          box-shadow: 0 0 10px 0 rgba(0,0,0,0.35);
}
.parent__img {
  width: 100%;
  height: auto;
}
.parent__title {
  padding: 0;
  margin: 0;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  color: black;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.parent__link:hover .parent__title {
  color: #f3840a;
}
.pomet-detail__childs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 -15px;
}
.child {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: calc(16.666% - 30px);
  margin: 0 15px 30px;
}
.child__link {
  display: block;
  width: 100%;
  padding: 5px;
  border: 1px solid transparent;
  border-radius: 5px;
  text-decoration: none;
  color: black;
  -webkit-box-shadow: 0 0 5px 0 rgba(0,0,0,0.25);
          box-shadow: 0 0 5px 0 rgba(0,0,0,0.25);
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.child__link:hover {
  border-color: #eaeaea;
  -webkit-box-shadow: 0 0 10px 0 rgba(0,0,0,0.35);
          box-shadow: 0 0 10px 0 rgba(0,0,0,0.35);
}
.child__pic {
  width: 100%;
  height: auto;
  margin-bottom: 10px;
  border-radius: 5px;
  font-size: 0;
  overflow: hidden;
}
.child__img {
  width: 100%;
  height: auto;
}
.child__title {
  padding: 0;
  margin: 0 0 5px;
  font-size: 16px;
  font-weight: normal;
  text-align: center;
  color: black;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.child__link:hover .child__title {
  color: #f3840a;
}
.child__title + span {
  display: inline-block;
  width: 100%;
  font-size: 14px;
  text-align: center;
}
.features__content {
  position: relative;
  min-height: 70px;
  padding-right: 50px;
}
.features-icon {
  position: absolute;
  top: 10px;
  right: 10px;
  color: rgba(0,0,0,0.15);
}

.inner-list {
  padding: 0;
  margin: 0;
  list-style: none;
}
.inner-list li {
  position: relative;
  width: 100%;
}
/* .inner-list:not(.admin-inner-list) li::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: block;
  width: 280px;
  height: 3px;
  background-color: #f3840a;
} */
.inner-list li a {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 5px 10px;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  color: black;
}
.inner-list li a:hover {
  color: #f3840a;
}
.inner-list li a span {
  display: inline-block;
  margin: 0 10px;
}
/* .inner-list .icon-left {
  transform: rotate(-90deg);
}
.inner-list .icon-right {
  transform: rotate(90deg);
} */
.list-icon {
  color: #f3840a;
}

.dogs-list {
  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;
  padding: 0;
  margin: 15px 0;
  list-style: none;
}

.dogs-list__item {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: calc(30% - 30px);
  max-width: 350px;
  min-width: 250px;
  margin: 0 15px 30px;
}

.dogs-list__link {
  display: block;
  width: 100%;
  padding: 8px;
  border-radius: 5px;
  text-decoration: none;
  color: black;
  -webkit-box-shadow: 0 0 12px 0 rgba(0,0,0,0.25);
          box-shadow: 0 0 12px 0 rgba(0,0,0,0.25);
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.dogs-list__link:hover {
  -webkit-box-shadow: 0 0 15px 0 rgba(0,0,0,0.35);
          box-shadow: 0 0 15px 0 rgba(0,0,0,0.35);
}

.dogs-list__pic {
  width: 100%;
  margin-bottom: 15px;
  border-radius: 5px;
  font-size: 0;
  overflow: hidden;
}

.dogs-list__pic img {
  width: 100%;
  height: auto;
}

.dogs-list__title {
  padding: 0;
  margin: 0 0 15px;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.dogs-list__link:hover .dogs-list__title {
  color: #f3840a;
}

@media screen and (max-width: 960px) {
  .header-leftCol,
  .header-rightCol {
    display: none;
  }
  .header-nav__link {
    padding: 15px 30px;
  }
  .content-nav {
    padding: 50px 0 30px;
  }
  .content-nav__btn {
    width: 300px;
    height: 100px;
    font-size: 24px;
  }
  .main:not(.main--inner) .content-nav__img {
    width: 90px;
    -webkit-transform: translate(-40%, -30%);
        -ms-transform: translate(-40%, -30%);
            transform: translate(-40%, -30%);
  }
  .main:not(.main--inner) .content-nav__btn:last-of-type .content-nav__img {
    width: 110px;
  }
  .main:not(.main--inner) .content-nav__img img {
    width: 100%;
    height: auto;
  }
  .dog-info__img {
    max-width: 50%;
  }
  .family-info {
    margin-bottom: 20px;
  }
  .family-info .container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .pedigree {
    width: 100%;
    margin-bottom: 25px;
  }
  .features {
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .main--inner .content-nav .container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .header-nav__btn {
    display: block;
    padding: 15px 30px;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    text-align: center;
    color: #fff;
  }
  .header-nav__list {
    display: none;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    border-top: 1px solid #8c6a1b;
  }
  .header-nav__item:not(:last-child) {
    margin-right: 0px;
    margin-bottom: 1px;
  }
  .header-nav__link {
    display: block;
    text-align: center;
  }
  .header-nav__item::after {
    top: calc(100% + 1px);
    left: 50%;
    right: initial;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
    height: 1px;
    width: 100%;
    border-right: none;
    border-bottom: 1px solid #8c6a1b;
  }
  .breadcrumbs {
    margin-bottom: 15px;
  }
  .main:not(.main--inner) .content-nav {
    padding: 30px 0;
  }
  .main:not(.main--inner) .content-nav__btn {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    width: calc(50% - 30px);
    height: auto;
    padding: 15px;
    margin: 0 15px;
    font-size: 24px;
    text-align: left;
  }
  .main:not(.main--inner) .content-nav__img {
    position: relative;
    top: initial;
    left: initial;
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
    width: 70px;
    margin-right: 20px;
  }
  .main-news__list,
  .inner-news__list {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .footer .container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .footer-contact {
    margin-bottom: 10px;
  }
  .copyright {
    margin-bottom: 10px;
  }
}

@media screen and (max-width: 700px) {
  .main:not(.main--inner) .content-nav__btns {
    -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;
  }
  .main:not(.main--inner) .content-nav__btn {
    width: 80%;
    min-height: 108px;
  }
  .main:not(.main--inner) .content-nav__btn:first-of-type {
    margin-bottom: 15px;
  }
  .main:not(.main--inner) .content-nav__btn:last-of-type .content-nav__img {
    width: 85px;
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
  }
}

@media screen and (max-width: 640px) {
  .dog-info .container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column
  }
  .dog-info__img {
    max-width: 100%;
    margin-bottom: 20px;
  }
  .dog-info {
    margin-bottom: 25px;
  }
}

@media screen and (max-width: 480px) {
  .main:not(.main--inner) .content-nav__btn {
    width: 100%;
    margin: 0 0;
  }
  .main--inner .content-nav__btns {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .main--inner .content-nav__btn:first-child {
    margin-right: 0;
    margin-bottom: 10px;
  }
  .footer-contact {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .footer-mess {
    margin: 10px 0;
  }
}

@media screen and (max-width: 425px) {
  .header-contact {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column
  }
  .header-mail {
    margin-bottom: 10px;
  }
  .header-text {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .header-text img {
    margin-right: 0;
    margin-bottom: 10px;
  }
  .header-text p {
    text-align: center;
  }
}