* {
  margin: 0;
  padding: 0;
  font-family: sans-serif;
}

ul, li {
  padding: 0;
  margin: 0;
  list-style: none;
}

a {
  text-decoration: none;
  font-family: 'Poppins', sans-serif;
}

.wrap {
  width: 80%;
  margin: 0 auto;
}

.wrap-menu-burger {
  display: none;
}

h1, h2, h3, h4, h5 {
  font-family: 'Poppins', sans-serif;
  font-weight: bold;
}

h2 {
  font-size: 45px;
  color: #000;
}

.btn {
  padding: 20px 40px;
  text-transform: uppercase;
  font-weight: bold;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  background: #fff;
  color: #ec660f;
  border: 3px solid #ec660f;
  display: inline-block;
  cursor: pointer;
}

.btn:hover {
  background: #ec660f;
  color: #fff;
  border: 3px solid transparent;
}

.news-btn {
  padding: 20px 40px;
  text-transform: uppercase;
  font-weight: bold;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  background: #fff;
  color: #afacac;
  border: 3px solid #afacac;
  display: inline-block;
  cursor: pointer;
}

.news-btn:hover {
  background: #afacac;
  color: #fff;
  border: 3px solid transparent;
}

.thin-title {
  font-weight: 100;
}

.up {
  position: fixed;
  bottom: 60px;
  right: 20px;
  width: 50px;
  height: 50px;
  border: 2px solid #ec660f;
  text-align: center;
  line-height: 50px;
  background: transparent;
  color: #ec660f;
  font-size: 20px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  display: none;
  cursor: pointer;
  z-index: 999;
}

.up:hover {
  background: #ec660f;
  color: #fff;
  border-color: #fff;
}

.preloader {
  position: fixed;
  background: #fefefe;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  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;
}

header {
  width: 100%;
  height: 100vh;
  background: url('../images/header/terrier.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  padding-top: 50px;
}

header .wrap nav {
  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;
}

header .wrap nav .nav-brand {
  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;
}

header .wrap nav .nav-brand .brand {
  width: 35px;
  margin-right: 8px;
}

header .wrap nav .nav-brand a {
  font-size: 25px;
  letter-spacing: 1.5px;
}

header .wrap nav .nav-brand a span:nth-child(1) {
  font-weight: bold;
  color: #000;
}

header .wrap nav .nav-brand a span:nth-child(2) {
  font-weight: 100;
  color: #232a31;
}

header .wrap nav .menu {
  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;
}

header .wrap nav .menu li a {
  color: #232a31;
  text-transform: uppercase;
  margin-left: 30px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

header .wrap nav .menu li a:hover {
  color: #ec660f;
}

header .wrap nav .menu li .active-page {
  color: #ec660f;
}

header .wrap .cont-title {
  margin-top: 200px;
  padding-left: 40px;
  border-left: 4px solid #ec660f;
}

header .wrap .cont-title span {
  font-size: 40px;
  margin-bottom: 25px;
}

header .wrap .cont-title h1 {
  font-size: 60px;
}

header .wrap .cont-title h1 span {
  color: #ec660f;
  font-size: 60px;
}

header .wrap .menu-burger {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

header .wrap .menu-burger .burger {
  width: 25px;
  height: 20px;
  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;
  margin-right: 20px;
  cursor: pointer;
}

header .wrap .menu-burger .burger .burger-line {
  width: 100%;
  height: 15%;
  background: #000;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

header .wrap .menu-burger .burger .line-one-active {
  -webkit-transform: rotate(45deg) translateY(4px) translateX(5px);
          transform: rotate(45deg) translateY(4px) translateX(5px);
}

header .wrap .menu-burger .burger .line-two-active {
  -webkit-transform: scale(0);
          transform: scale(0);
}

header .wrap .menu-burger .burger .line-three-active {
  -webkit-transform: rotate(-45deg) translateY(-4px) translateX(5px);
          transform: rotate(-45deg) translateY(-4px) translateX(5px);
}

header .wrap .menu-burger h2 {
  font-weight: normal;
  color: #232a31;
  font-size: 28px;
}

.header-page {
  width: 100%;
  padding-top: 50px;
}

.header-page .wrap nav {
  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;
}

.header-page .wrap nav .nav-brand {
  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;
}

.header-page .wrap nav .nav-brand .brand {
  width: 35px;
  margin-right: 8px;
}

.header-page .wrap nav .nav-brand a {
  font-size: 25px;
  letter-spacing: 1.5px;
}

.header-page .wrap nav .nav-brand a span:nth-child(1) {
  font-weight: bold;
  color: #000;
}

.header-page .wrap nav .nav-brand a span:nth-child(2) {
  font-weight: 100;
  color: #232a31;
}

.header-page .wrap nav .menu {
  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;
}

.header-page .wrap nav .menu li a {
  color: #232a31;
  text-transform: uppercase;
  margin-left: 30px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.header-page .wrap nav .menu li a:hover {
  color: #ec660f;
}

.header-page .wrap nav .menu li .active-page {
  color: #ec660f;
}

.header-page .wrap .menu-burger {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header-page .wrap .menu-burger .burger {
  width: 25px;
  height: 20px;
  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;
  margin-right: 20px;
  cursor: pointer;
}

.header-page .wrap .menu-burger .burger .burger-line {
  width: 100%;
  height: 15%;
  background: #000;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.header-page .wrap .menu-burger .burger .line-one-active {
  -webkit-transform: rotate(45deg) translateY(4px) translateX(5px);
          transform: rotate(45deg) translateY(4px) translateX(5px);
}

.header-page .wrap .menu-burger .burger .line-two-active {
  -webkit-transform: scale(0);
          transform: scale(0);
}

.header-page .wrap .menu-burger .burger .line-three-active {
  -webkit-transform: rotate(-45deg) translateY(-4px) translateX(5px);
          transform: rotate(-45deg) translateY(-4px) translateX(5px);
}

.header-page .wrap .menu-burger h2 {
  font-weight: normal;
  color: #232a31;
  font-size: 28px;
}

.header-page .under-menu {
  width: 100%;
  background: #f7f7f7;
  padding: 40px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 50px;
}

.header-page .under-menu .wrap ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-transform: uppercase;
  font-size: 14px;
}

.header-page .under-menu .wrap ul li:nth-child(1) {
  margin-right: 20px;
}

.header-page .under-menu .wrap ul li:nth-child(2) {
  margin-left: 20px;
}

.header-page .under-menu .wrap ul li a {
  color: #000;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.header-page .under-menu .wrap ul li a:hover {
  color: #ec660f;
}

#about {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 650px;
}

#about .about-img {
  width: 50%;
  height: 100%;
  background: #232a31;
  background: #232a31;
  overflow: hidden;
  position: relative;
}

#about .about-img .inner-img {
  position: absolute;
  width: 120%;
  height: 120%;
  background-image: url(../images/about/dog-about.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
}

#about .about-img .inner-img:hover {
  -webkit-transform: translate(-10%, -10%) scale(0.9);
          transform: translate(-10%, -10%) scale(0.9);
}

#about .about-txt {
  width: 50%;
  height: 100%;
  padding: 120px 80px 0 80px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

#about .about-txt p {
  margin: 70px 0 30px 0;
  color: #454545;
  font-size: 16px;
  line-height: 30px;
}

.about-content {
  margin-top: 90px;
  padding-bottom: 150px;
}

.about-content .wrap .about-content-img {
  float: left;
  margin: 0 30px 30px 0;
  width: 500px;
  height: 450px;
  background: url(../images/about/adorable.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.about-content .wrap h2 {
  margin-bottom: 40px;
}

.about-content .wrap p {
  line-height: 1.5em;
  color: #454545;
  margin-bottom: 50px;
}

.our-awards {
  padding: 150px 0;
  background: #f7f7f7;
}

.our-awards .wrap {
  text-align: center;
  width: 80%;
  margin: 0 auto;
  text-align: center;
}

.our-awards .wrap h2 {
  display: inline-block;
  margin-bottom: 50px;
}

.our-awards .wrap .our-awards-cont {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.our-awards .wrap .our-awards-cont .award-item {
  width: 350px;
  height: 350px;
  text-align: center;
}

.our-awards .wrap .our-awards-cont .award-item .award-item-img {
  width: 80%;
  height: 80%;
  margin: 0 auto;
}

.our-awards .wrap .our-awards-cont .award-item .aig-1 {
  background: url(../images/about/aig-1.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.our-awards .wrap .our-awards-cont .award-item .aig-2 {
  background: url(../images/about/aig-2.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.our-awards .wrap .our-awards-cont .award-item .aig-3 {
  background: url(../images/about/aig-3.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.our-awards .wrap .our-awards-cont .award-item h4 {
  margin-top: 30px;
}

.address-inst {
  width: 100%;
  height: 100vh;
  background: grey url(../images/about/kitten.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.address-inst .address-inst-title {
  width: 50%;
  margin-left: 10%;
}

.address-inst .address-inst-title h2 {
  color: #fff;
  line-height: 1.3em;
}

#gallery {
  padding: 80px 0;
}

#gallery .wrap {
  text-align: center;
}

#gallery .wrap h2 {
  margin-bottom: 60px;
}

#gallery .wrap .cont-btn {
  width: 100%;
  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;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#gallery .wrap .cont-btn .gallery-btn {
  padding: 20px 40px;
  font-weight: bold;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  color: #ec660f;
  background: #fff;
  border: 3px solid #ec660f;
  margin: 0 12px 20px;
  cursor: pointer;
}

#gallery .wrap .cont-btn .gallery-btn:hover {
  color: #fff;
  background: #ec660f;
  border: 3px solid transparent;
}

#gallery .wrap .cont-btn .gallery-btn-active {
  position: relative;
  background: #ec660f;
  color: #fff;
}

#gallery .wrap .cont-btn .gallery-btn-active::before {
  content: "";
  position: absolute;
  bottom: -20px;
  left: calc(50% - 10px);
  border: 10px solid transparent;
  border-top: 10px solid #ec660f;
}

#gallery .wrap .cont-gallery {
  width: 100%;
  margin: 50px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#gallery .wrap .cont-gallery .gallery-img {
  width: 350px;
  height: 350px;
  background: #454545;
  margin-bottom: 10px;
  position: relative;
}

#gallery .wrap .cont-gallery .gallery-img .gallery-img-child {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(236, 102, 15, 0.5);
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transition: all 0.8s ease;
  transition: all 0.8s ease;
  text-transform: uppercase;
  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;
  color: #fff;
}

#gallery .wrap .cont-gallery .gallery-img .gallery-img-child h4 {
  display: inline-block;
  text-transform: uppercase;
  position: relative;
}

#gallery .wrap .cont-gallery .gallery-img .gallery-img-child h4::before {
  position: absolute;
  content: '';
  width: 80%;
  height: 4px;
  background: #fff;
  top: -20px;
  left: 10%;
}

#gallery .wrap .cont-gallery .gallery-img .gallery-img-child h4::after {
  position: absolute;
  content: '';
  width: 80%;
  height: 4px;
  background: #fff;
  bottom: -20px;
  right: 10%;
}

#gallery .wrap .cont-gallery .gallery-img:hover > .gallery-img-child {
  -webkit-transform: scale(1);
          transform: scale(1);
}

#gallery .wrap .cont-gallery .gallery-item-1 {
  background: url(../images/gallery/dachshund.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  overflow: hidden;
}

#gallery .wrap .cont-gallery .gallery-item-2 {
  background: url(../images/gallery/raccoon-1.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  overflow: hidden;
}

#gallery .wrap .cont-gallery .gallery-item-3 {
  background: url(../images/gallery/raccoon-2.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  overflow: hidden;
}

#gallery .wrap .cont-gallery .gallery-item-4 {
  background: url(../images/gallery/cat-2.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  overflow: hidden;
}

#gallery .wrap .cont-gallery .gallery-item-5 {
  background: url(../images/gallery/dog.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  overflow: hidden;
}

#gallery .wrap .cont-gallery .gallery-item-6 {
  background: url(../images/gallery/cat-1.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  overflow: hidden;
}

#blog {
  padding: 120px 0;
  background: #232a31;
}

#blog .wrap {
  text-align: center;
}

#blog .wrap h2 {
  color: #fff;
}

#blog .wrap .cont-blog {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 70px 0;
}

#blog .wrap .cont-blog .blog-card {
  width: 340px;
  padding-bottom: 40px;
  border-bottom: 1px solid #545454;
  color: #fff;
  text-align: left;
  margin-bottom: 20px;
}

#blog .wrap .cont-blog .blog-card .blog-img {
  width: 100%;
  height: 340px;
  background: #454545;
  position: relative;
  overflow: hidden;
}

#blog .wrap .cont-blog .blog-card .blog-img:hover > .blog-card-inside {
  top: 0;
}

#blog .wrap .cont-blog .blog-card .blog-img .blog-card-inside {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 340px;
  left: 0;
  background: rgba(236, 102, 15, 0.5);
  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;
  -webkit-transition: 0.6s;
  transition: 0.6s;
}

#blog .wrap .cont-blog .blog-card .blog-img .blog-card-inside h4 {
  display: block;
  width: 100%;
  text-align: center;
  padding: 20px 0;
  background: rgba(236, 102, 15, 0.8);
  color: #fff;
}

#blog .wrap .cont-blog .blog-card .blog-img-1 {
  background-image: url(../images/blog/blog-1.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  overflow: hidden;
}

#blog .wrap .cont-blog .blog-card .blog-img-2 {
  background-image: url(../images/blog/blog-2.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  overflow: hidden;
}

#blog .wrap .cont-blog .blog-card .blog-img-3 {
  background-image: url(../images/blog/blog-3.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  overflow: hidden;
}

#blog .wrap .cont-blog .blog-card span {
  margin: 40px 0;
  font-weight: bold;
  display: inline-block;
}

#blog .wrap .cont-blog .blog-card a {
  color: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

#blog .wrap .cont-blog .blog-card a:hover {
  color: #ec660f;
}

#blog .wrap .cont-blog .blog-card a h4 {
  text-transform: uppercase;
}

#contacts {
  width: 100%;
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0 10%;
  background: url(../images/contacts/child-1538561_1280.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

#contacts .wrap-contacts {
  width: 60%;
}

#contacts .wrap-contacts h2 {
  color: #fff;
  margin-bottom: 70px;
}

#contacts .wrap-contacts h2 span {
  font-weight: 100;
}

#contacts .wrap-contacts form .msg {
  padding: 20px 0 20px 40px;
  outline: none;
  border: 3px solid transparent;
  width: 400px;
}

#contacts .wrap-contacts form .btn {
  margin-left: -5px;
}

footer {
  background: #f7f7f7;
  padding: 90px 0;
  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: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

footer .footer-icons {
  width: 100%;
  text-align: center;
  margin-top: 20px;
}

footer .footer-icons .fab {
  margin: 0 10px;
  color: #000;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  padding: 10px;
  position: relative;
}

footer .footer-icons .fab:hover {
  color: #ec660f;
  background-color: rgba(84, 84, 84, 0.2);
  border-radius: 5px;
}

.gallery-main {
  padding: 120px 0;
}

.gallery-main .wrap {
  text-align: center;
}

.gallery-main .wrap h1 {
  font-size: 60px;
  margin-bottom: 40px;
}

.gallery-main .wrap p {
  line-height: 25px;
  color: #454545;
}

.gallery-main .wrap .gallery-container {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 80px;
  position: relative;
}

.gallery-main .wrap .gallery-container .gallery-page-img {
  display: block;
  height: 600px;
  background: #232a31;
  position: relative;
  margin-bottom: 20px;
  cursor: pointer;
}

.gallery-main .wrap .gallery-container .gallery-page-img .gallery-img-child {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(236, 102, 15, 0.5);
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transition: all 0.8s ease;
  transition: all 0.8s ease;
  text-transform: uppercase;
  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;
  color: #fff;
}

.gallery-main .wrap .gallery-container .gallery-page-img .gallery-img-child h4 {
  display: inline-block;
  text-transform: uppercase;
  position: relative;
}

.gallery-main .wrap .gallery-container .gallery-page-img .gallery-img-child h4::before {
  position: absolute;
  content: '';
  width: 80%;
  height: 4px;
  background: #fff;
  top: -20px;
  left: 10%;
}

.gallery-main .wrap .gallery-container .gallery-page-img .gallery-img-child h4::after {
  position: absolute;
  content: '';
  width: 80%;
  height: 4px;
  background: #fff;
  bottom: -20px;
  right: 10%;
}

.gallery-main .wrap .gallery-container .gallery-page-img:hover > .gallery-img-child {
  -webkit-transform: scale(1);
          transform: scale(1);
}

.gallery-main .wrap .gallery-container .gallery-main-item-1 {
  width: 100%;
  background: url(../images/gallery/dog-1.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  position: relative;
}

.gallery-main .wrap .gallery-container .gallery-main-item-1 h3 {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  padding: 10px 20px;
  background-color: #000;
  text-transform: uppercase;
  color: #fff;
  letter-spacing: 0.2em;
}

.gallery-main .wrap .gallery-container .gallery-main-item-2 {
  width: 48.7%;
  background: url(../images/gallery/cat-1.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.gallery-main .wrap .gallery-container .gallery-main-item-3 {
  width: 48.7%;
  background: url(../images/gallery/cat-2.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.gallery-main .wrap .gallery-container .gallery-main-item-4 {
  width: 100%;
  background: url(../images/gallery/raccoon-1.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.gallery-main .wrap .gallery-container .gallery-main-item-5 {
  width: 32%;
  background: url(../images/gallery/dog-2.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.gallery-main .wrap .gallery-container .gallery-main-item-6 {
  width: 32%;
  background: url(../images/gallery/dog-3.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.gallery-main .wrap .gallery-container .gallery-main-item-7 {
  width: 32%;
  background: url(../images/gallery/cat-3.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.gallery-main .wrap .gallery-container .gallery-main-item-8 {
  width: 30%;
  background: url(../images/gallery/dachshund.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.gallery-main .wrap .gallery-container .gallery-main-item-9 {
  width: 68%;
  background: url(../images/gallery/dog.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.gallery-hank {
  padding: 120px 0;
}

.gallery-hank .wrap {
  text-align: center;
}

.gallery-hank .wrap h1 {
  font-size: 60px;
  font-weight: normal;
}

.gallery-hank .wrap .gallery-container {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 80px;
  position: relative;
}

.gallery-hank .wrap .gallery-container .gallery-hank-img {
  display: block;
  height: 200px;
  width: 30%;
  background: #232a31;
  position: relative;
  margin-bottom: 20px;
  cursor: pointer;
}

.gallery-hank .wrap .gallery-container .gallery-hank-img .gallery-img-child {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(236, 102, 15, 0.5);
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transition: all 0.8s ease;
  transition: all 0.8s ease;
  text-transform: uppercase;
  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;
  color: #fff;
}

.gallery-hank .wrap .gallery-container .gallery-hank-img .gallery-img-child h4 {
  display: inline-block;
  text-transform: uppercase;
  position: relative;
}

.gallery-hank .wrap .gallery-container .gallery-hank-img .gallery-img-child h4::before {
  position: absolute;
  content: '';
  width: 80%;
  height: 4px;
  background: #fff;
  top: -20px;
  left: 10%;
}

.gallery-hank .wrap .gallery-container .gallery-hank-img .gallery-img-child h4::after {
  position: absolute;
  content: '';
  width: 80%;
  height: 4px;
  background: #fff;
  bottom: -20px;
  right: 10%;
}

.gallery-hank .wrap .gallery-container .gallery-hank-img:hover > .gallery-img-child {
  -webkit-transform: scale(1);
          transform: scale(1);
}

.gallery-hank .wrap .gallery-container .gallery-hank-item-1 {
  background: url(../images/gallery/dachshund.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.gallery-hank .wrap .gallery-container .gallery-hank-item-2 {
  background: url(../images/gallery/dog-3.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.gallery-hank .wrap .gallery-container .gallery-hank-item-3 {
  background: url(../images/about/adorable.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.gallery-hank .wrap .gallery-container .gallery-hank-item-4 {
  background: url(../images/blog/blog-2.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.gallery-hank .wrap .gallery-container .gallery-hank-item-5 {
  background: url(../images/blog/blog-3.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.news-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 90px 0;
}

.news-wrap article {
  width: 65%;
}

.news-wrap article section {
  margin-bottom: 80px;
}

.news-wrap article section .news-section-img {
  width: 100%;
  height: 400px;
  background: #232a31;
  overflow: hidden;
  position: relative;
}

.news-wrap article section .news-section-img .inner-img {
  position: absolute;
  width: 120%;
  height: 120%;
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
}

.news-wrap article section .news-section-img .inner-img:hover {
  -webkit-transform: translate(-10%, -10%) scale(0.9);
          transform: translate(-10%, -10%) scale(0.9);
}

.news-wrap article section .news-section-img .inner-img-1 {
  background: url(../images/blog/blog-3.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.news-wrap article section .news-section-img .inner-img-2 {
  background: url(../images/blog/blog-2.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.news-wrap article section .news-section-img .inner-img-3 {
  background: url(../images/blog/blog-1.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.news-wrap article section .news-section-img .inner-img-4 {
  background: url(../images/gallery/dog-2.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.news-wrap article section .news-start-title {
  margin-top: 70px;
  padding-left: 10px;
}

.news-wrap article section .news-start-title h3 {
  margin-bottom: 25px;
  text-transform: capitalize;
}

.news-wrap article section .news-start-title p {
  line-height: 25px;
  color: #454545;
  margin-bottom: 25px;
}

.news-wrap article section .news-dates-media {
  padding: 0 10px;
  width: 100%;
  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;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 14px;
  color: #afacac;
}

.news-wrap article section .news-dates-media .news-media a {
  padding: 10px;
  color: #afacac;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.news-wrap article section .news-dates-media .news-media a:hover {
  color: #ec660f;
  background-color: rgba(84, 84, 84, 0.2);
  border-radius: 5px;
}

.news-wrap article section .news-btn-container {
  width: 100%;
  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;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  font-size: 12px;
  margin-top: 40px;
}

.news-wrap article section .news-btn-container .news-group-btn {
  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;
}

.news-wrap article section .news-btn-container .news-group-btn .news-btn {
  padding: 10px 20px;
  border-width: 2px;
  margin: 0 10px;
}

.news-wrap article section .news-btn-container .btn {
  padding: 10px 20px;
  border-width: 2px;
  margin-right: 20px;
}

.news-wrap aside {
  width: 35%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-left: 20px;
}

.news-wrap aside h3 {
  color: #afacac;
  display: inline-block;
  position: relative;
}

.news-wrap aside h3:before {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  height: 2px;
  width: 120%;
  background: #afacac;
}

.news-wrap aside .news-group-btn {
  margin: 50px 0;
}

.news-wrap aside .news-group-btn .news-btn {
  padding: 10px 20px;
  border-width: 2px;
  font-size: 12px;
  margin-bottom: 5px;
}

.news-wrap aside .news-comments {
  margin: 40px 0;
}

.news-wrap aside .news-comments li {
  margin-bottom: 20px;
  line-height: 23px;
}

.news-wrap aside .news-comments li a {
  font-weight: bold;
  color: #000;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.news-wrap aside .news-comments li a:hover {
  color: #ec660f;
}

.news-wrap aside .news-categories {
  margin: 40px 0 40px 18px;
}

.news-wrap aside .news-categories li {
  padding-left: 20px;
  margin-bottom: 20px;
  list-style-image: url(../images/news/right-arrow.svg);
}

.news-wrap aside .news-categories li a {
  font-weight: bold;
  color: #000;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.news-wrap aside .news-categories li a:hover {
  color: #ec660f;
}

.news-wrap aside .calendar {
  width: 350px;
  height: auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-top: 50px;
}

.news-wrap aside .calendar .calendar-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: raw;
          flex-direction: raw;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.news-wrap aside .calendar .calendar-header span:nth-child(1) {
  margin: 0 50px 0 20px;
  font-weight: bold;
}

.news-wrap aside .calendar .calendar-header span:nth-child(1) a {
  color: #afacac;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.news-wrap aside .calendar .calendar-header span:nth-child(1) a:hover {
  color: #ec660f;
}

.news-wrap aside .calendar .calendar-header span:nth-child(2) {
  font-weight: bold;
}

.news-wrap aside .calendar .calendar-date {
  padding: 20px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(25px, 1fr))[auto-fit];
      grid-template-columns: repeat(auto-fit, minmax(25px, 1fr));
  grid-gap: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.news-wrap aside .calendar .calendar-date .calendar-day {
  text-transform: uppercase;
  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;
  height: 25px;
  color: #afacac;
}

.news-wrap aside .calendar .calendar-date .calendar-number-active {
  color: #fff;
  background-color: #ec660f;
  cursor: pointer;
}

.news-wrap aside .calendar .calendar-date .calendar-number {
  text-transform: uppercase;
  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;
  height: 25px;
}

.contacts-page {
  padding: 100px 0;
}

.contacts-page .wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.contacts-page .wrap .contacts-container {
  width: 50%;
  padding-right: 70px;
}

.contacts-page .wrap .contacts-container .contacts-header h1 {
  margin-bottom: 40px;
}

.contacts-page .wrap .contacts-container .contacts-header h4 {
  margin-bottom: 20px;
  font-weight: 100;
}

.contacts-page .wrap .contacts-container .contacts-header h4 a {
  color: #000;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  font-weight: bold;
}

.contacts-page .wrap .contacts-container .contacts-header h4 a:hover {
  color: #ec660f;
}

.contacts-page .wrap .contacts-container .contacts-header p {
  margin-top: 60px;
}

.contacts-page .wrap .contacts-container form {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-top: 40px;
  width: 100%;
  background: #f7f7f7;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 30px 20px;
}

.contacts-page .wrap .contacts-container form input, .contacts-page .wrap .contacts-container form textarea {
  padding: 20px 30px;
  background: #fff;
  border: none;
  outline: none;
  margin-bottom: 3px;
}

.contacts-page .wrap .contacts-container form textarea {
  height: 100px;
}

.contacts-page .wrap .contacts-container form div {
  margin: 30px auto 0;
}

.contacts-page .wrap .contacts-img {
  width: 50%;
  height: 730px;
  background: url(../images/contacts/dog-contacts.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
/*# sourceMappingURL=main.css.map */
