@charset "UTF-8";
/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
}

.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}

[dir="rtl"] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/*
SCSS variables are information about icon's compiled state, stored under its original file name

.icon-home {
  width: $icon-home-width;
}

The large array-like variables contain all information about a single icon
$icon-home: x y offset_x offset_y width height total_width total_height image_path;

At the bottom of this section, we provide information about the spritesheet itself
$spritesheet: width height image $spritesheet-sprites;
*/
/*
The provided mixins are intended to be used with the array-like variables

.icon-home {
  @include sprite-width($icon-home);
}

.icon-email {
  @include sprite($icon-email);
}

Example usage in HTML:

`display: block` sprite:
<div class="icon-home"></div>

To change `display` (e.g. `display: inline-block;`), we suggest using a common CSS class:

// CSS
.icon {
  display: inline-block;
}

// HTML
<i class="icon icon-home"></i>
*/
/*
The `sprites` mixin generates identical output to the CSS template
  but can be overridden inside of SCSS

@include sprites($spritesheet-sprites);
*/
@font-face {
  font-family: "HouschkaPro";
  src: url("../fonts/HouschkaProMedium.woff2") format("woff2"), url("../fonts/HouschkaProMedium.woff") format("woff"), url("../fonts/HouschkaProMedium.ttf") format("truetype");
  font-weight: 400;
}

@font-face {
  font-family: "HouschkaPro";
  src: url("../fonts/HouschkaProDemiBold.woff2") format("woff2"), url("../fonts/HouschkaProDemiBold.woff") format("woff"), url("../fonts/HouschkaProDemiBold.ttf") format("truetype");
  font-weight: 600;
}

@font-face {
  font-family: "HouschkaPro";
  src: url("../fonts/HouschkaProBold.woff2") format("woff2"), url("../fonts/HouschkaProBold.woff") format("woff"), url("../fonts/HouschkaProBold.ttf") format("truetype");
  font-weight: 700;
}

html {
  box-sizing: border-box;
}

*, *:before, *:after {
  box-sizing: inherit;
}

button {
  border: none;
}

a {
  text-decoration: none;
}

.ib {
  display: inline-block;
  vertical-align: top;
}

.db {
  display: block;
}

.content-max-width {
  max-width: 1040px;
  margin: auto;
  padding: 0.1px 37px;
  height: 100%;
}

@media (max-width: 599px) {
  .content-max-width {
    padding: 0.1px 10px;
  }
}

.a-no-underline {
  text-decoration: none;
}

.bg-sprite {
  position: absolute;
  z-index: -1;
}

.slider-arrow {
  display: none;
  z-index: 1;
  position: absolute;
  cursor: pointer;
}

.pr {
  position: relative;
}

.is-hidden {
  display: none;
}

.fade-up {
  opacity: 0;
  -webkit-transform: translate3d(0, 50px, 0);
          transform: translate3d(0, 50px, 0);
  -webkit-transition: opacity .3s,-webkit-transform 0.6s;
  transition: opacity .3s,-webkit-transform 0.6s;
  transition: transform 0.6s,opacity .3s;
  transition: transform 0.6s,opacity .3s,-webkit-transform 0.6s;
}

.fade-up.in-view {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}

.delay-03 {
  -webkit-transition-delay: .3s;
          transition-delay: .3s;
}

.delay-06 {
  -webkit-transition-delay: .6s;
          transition-delay: .6s;
}

/* Slider */
.slick-loading .slick-list {
  background: #fff url("../images/ajax-loader.gif") center center no-repeat;
}

/* Icons */
/* Arrows */
.slick-prev,
.slick-next {
  position: absolute;
  display: block;
  height: 20px;
  width: 20px;
  line-height: 0px;
  font-size: 0px;
  cursor: pointer;
  background: transparent;
  color: transparent;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  padding: 0;
  border: none;
  outline: none;
}

.slick-prev:hover, .slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  outline: none;
  background: transparent;
  color: transparent;
}

.slick-prev:hover:before, .slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
  opacity: 1;
}

.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: 0.25;
}

.slick-prev:before,
.slick-next:before {
  font-family: "HouschkaPro", sans-serif;
  font-size: 20px;
  line-height: 1;
  color: white;
  opacity: 0.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-prev {
  left: -25px;
}

[dir="rtl"] .slick-prev {
  left: auto;
  right: -25px;
}

.slick-prev:before {
  content: "←";
}

[dir="rtl"] .slick-prev:before {
  content: "→";
}

.slick-next {
  right: -25px;
}

[dir="rtl"] .slick-next {
  left: -25px;
  right: auto;
}

.slick-next:before {
  content: "→";
}

[dir="rtl"] .slick-next:before {
  content: "←";
}

/* Dots */
.slick-dotted.slick-slider {
  margin-bottom: 30px;
}

.slick-dots {
  position: absolute;
  bottom: -25px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%;
}

.slick-dots li {
  position: relative;
  display: inline-block;
  height: 20px;
  width: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}

.slick-dots li button {
  border: 0;
  background: transparent;
  display: block;
  height: 20px;
  width: 20px;
  outline: none;
  line-height: 0px;
  font-size: 0px;
  color: transparent;
  padding: 5px;
  cursor: pointer;
}

.slick-dots li button:hover, .slick-dots li button:focus {
  outline: none;
}

.slick-dots li button:hover:before, .slick-dots li button:focus:before {
  opacity: 1;
}

.slick-dots li button:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "•";
  width: 20px;
  height: 20px;
  font-family: "HouschkaPro", sans-serif;
  font-size: 20px;
  line-height: 20px;
  text-align: center;
  color: black;
  opacity: 0.25;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-dots li.slick-active button:before {
  color: black;
  opacity: 0.75;
}

header {
  height: 97px;
}

header .content-max-width {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 26px 20px;
}

header nav {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-left: 70px;
  width: 300px;
}

header nav a {
  color: black;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
}

header .green-button {
  margin-left: 15px;
}

@media (max-width: 1039px) {
  header nav {
    display: none;
  }
  header .green-button {
    display: none;
  }
  header .lang-select {
    display: none;
  }
  header .header-contacts {
    display: none;
  }
  header .spaceholder {
    display: none;
  }
}

.icon-sidebar {
  cursor: pointer;
  display: none;
}

@media (max-width: 1039px) {
  .icon-sidebar {
    display: inline-block;
  }
}

.header-logo span {
  color: black;
  font-size: 24px;
  font-weight: 700;
  margin-left: 15px;
}

@media (max-width: 1039px) {
  .header-logo {
    margin: 0 auto;
    height: 26px;
  }
}

@media (max-width: 599px) {
  .header-logo span {
    display: none;
  }
}

.lang-select {
  margin-left: 55px;
  color: #a6afa8;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
}

.lang-triangle {
  display: inline-block;
  vertical-align: middle;
  margin-left: 5px;
  border-style: solid;
  height: 0;
  width: 0;
  border-color: #d9e2d7 transparent transparent;
  border-width: 5px 5px 0;
  cursor: pointer;
}

.header-contacts {
  color: black;
  font-size: 17px;
  font-weight: 700;
  margin-left: 50px;
}

.header-contacts span {
  display: block;
  margin-top: 4px;
  color: #92cc2e;
  font-size: 14px;
  font-weight: 500;
  text-decoration: underline;
  cursor: pointer;
}

.icon-call-back {
  cursor: pointer;
  display: none;
}

@media (max-width: 1039px) {
  .icon-call-back {
    display: inline-block;
  }
}

aside {
  visibility: hidden;
  opacity: 0;
  position: fixed;
  top: 0;
  left: -268px;
  z-index: 5;
  width: 268px;
  height: 100%;
  overflow-y: auto;
  background-color: #3a3b39;
  box-shadow: 9px 0 27px rgba(0, 0, 0, 0.24);
  padding: 32px 18px;
  -webkit-transition: all 0.33s ease-in-out;
  transition: all 0.33s ease-in-out;
}

aside.active {
  visibility: visible;
  opacity: 1;
  left: 0;
}

aside .sidebar-header {
  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;
}

aside .header-logo, aside .lang-select {
  margin: 0;
}

aside .icon-sidebar-close {
  cursor: pointer;
  margin-right: 10px;
}

aside nav {
  margin: 20px 0;
}

aside nav a {
  display: block;
  height: 45px;
  line-height: 45px;
  color: #99a09b;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  border-bottom: solid 1px #484947;
  border-top: solid 1px #323331;
}

aside nav a:first-child {
  border-top: none;
}

aside nav a:last-child {
  border-bottom: none;
}

aside nav .indented {
  padding-left: 25px;
}

aside .green-button {
  margin: auto;
}

aside .header-contacts {
  color: white;
  width: 160px;
  margin: 40px auto;
  text-align: center;
}

aside .copyrights {
  text-align: center;
  color: #a6afa8;
  font-size: 14px;
  font-weight: 500;
}

.hero {
  height: 587px;
  background: url("../images/hero-bg.jpg") center top;
  background-size: cover;
}

@media (max-width: 859px) {
  .hero {
    height: 550px;
  }
}

.hero .content-max-width {
  position: relative;
}

.hero p {
  margin: 40px auto 0;
  text-align: center;
  max-width: 760px;
  color: #858e85;
}

@media (max-width: 859px) {
  .hero p {
    max-width: 480px;
  }
}

@media (max-width: 599px) {
  .hero p {
    margin: 25px auto 0;
  }
}

.hero .green-button {
  margin: 30px auto 0;
}

.hero .icon-hero-arrow-left {
  top: 50%;
}

.hero .icon-hero-arrow-right {
  top: 50%;
  right: 37px;
}

@media (max-width: 599px) {
  .hero .icon-hero-arrow-right, .hero .icon-hero-arrow-left {
    display: none;
  }
}

.hero img {
  margin: auto;
  width: 100%;
  max-width: 521px;
  height: auto;
}

.hero-slider-index {
  margin-top: 174px;
}

@media (max-width: 859px) {
  .hero-slider-index {
    margin-top: 90px;
  }
}

.hero-slider-services {
  margin-top: 50px;
}

.hero-green-text {
  text-align: center;
  margin: 35px auto 70px;
  max-width: 625px;
  color: #92cc2e;
  font-size: 24px;
  font-weight: 300;
}

@media (max-width: 859px) {
  .hero-green-text {
    margin: 35px auto 40px;
  }
}

@media (max-width: 599px) {
  .hero-green-text {
    font-size: 20px;
  }
}

h1 {
  margin: auto;
  max-width: 700px;
  text-align: center;
  color: white;
  font-size: 38px;
  font-weight: 600;
}

@media (max-width: 859px) {
  h1 {
    max-width: 550px;
  }
}

@media (max-width: 599px) {
  h1 {
    font-size: 24px;
  }
}

.hero-links {
  text-align: center;
  margin: 10px auto 0;
  max-width: 530px;
}

.hero-links a {
  color: #92cc2e;
  font-size: 24px;
  font-weight: 300;
  line-height: 23px;
}

@media (max-width: 859px) {
  .hero-links {
    text-align: center;
    max-width: 400px;
  }
}

@media (max-width: 859px) {
  .hero-links {
    margin: 20px auto 0;
  }
  .hero-links a {
    font-size: 22px;
  }
}

.about-us h2 {
  margin: 40px auto;
}

.portfolio-entry {
  margin: 0 10px 25px;
  width: 305px;
  position: relative;
}

@media (max-width: 1039px) {
  .portfolio-entry {
    margin: 0 auto 25px;
  }
}

.portfolio-entry .overlay {
  display: none;
  text-align: center;
  padding: 80px 40px;
  color: white;
  font-size: 20px;
  font-weight: 500;
  position: absolute;
  width: 305px;
  height: 201px;
  background-color: rgba(0, 0, 0, 0.75);
}

.portfolio-entry .overlay span {
  font-size: 13px;
}

.portfolio-entry .overlay a {
  color: #92cc2e;
}

.portfolio-entry:hover .overlay {
  display: block;
}

.services-line {
  margin-top: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

@media (max-width: 599px) {
  .services-line {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

.service-block {
  width: 290px;
  margin-right: 15px;
}

.service-block:nth-child(2) {
  width: 280px;
}

.service-block .right-block {
  margin-left: 15px;
}

.service-block i {
  margin-top: 10px;
}

.service-block .category {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
}

.service-block .category:hover {
  text-decoration: underline;
}

.service-block .subcategories a {
  display: block;
  margin: 13px 0 0;
  font-size: 16px;
  font-weight: 600;
}

.service-block .subcategories a:first-child {
  margin-top: 24px;
}

@media (max-width: 859px) {
  .service-block {
    margin: 0 auto 40px;
  }
  .service-block:last-child {
    margin-bottom: 0;
  }
}

@media (max-width: 599px) {
  .service-block {
    width: 280px;
  }
}

.service-block-full {
  margin-top: 20px;
}

@media (max-width: 859px) {
  .service-block-full {
    max-width: 512px;
    margin: 20px auto;
  }
}

@media (max-width: 599px) {
  .service-block-full {
    margin-top: 50px;
  }
}

.service-block-full:first-child {
  margin-top: 40px;
}

.service-block-full i {
  margin-top: -10px;
}

@media (max-width: 599px) {
  .service-block-full i {
    display: block;
    margin: auto;
  }
}

.service-block-full .category {
  margin: 15px 0 0 20px;
  font-size: 24px;
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: none;
}

.service-block-full .category:hover {
  text-decoration: underline;
}

@media (max-width: 599px) {
  .service-block-full .category {
    display: block;
    text-align: center;
    margin-left: 0;
  }
}

.service-block-full .right-block {
  width: calc(100% - 321px);
  margin: 13px 0 0 60px;
}

@media (max-width: 859px) {
  .service-block-full .right-block {
    display: none;
  }
}

.service-block-full .subcategories {
  margin-left: 94px;
}

.service-block-full .subcategories a {
  display: block;
  margin: 13px 0 0;
  font-size: 16px;
  font-weight: 600;
  color: #92cc2e;
}

@media (max-width: 599px) {
  .service-block-full .subcategories {
    display: block;
    text-align: center;
    margin-left: 0;
  }
}

.portfolio h2 {
  margin: 40px auto;
}

.portfolio .icon-hero-arrow-left {
  top: 5px;
  left: 0;
}

.portfolio .icon-hero-arrow-right {
  top: 5px;
  right: 0;
}

@media (max-width: 599px) {
  .portfolio .icon-hero-arrow-left, .portfolio .icon-hero-arrow-right {
    display: none;
  }
}

.price-list p {
  margin-top: 40px;
  margin-bottom: 50px;
}

.price-card {
  margin: 0 auto 20px;
  text-align: center;
  width: 305px;
  height: 321px;
  background-color: white;
  border: 3px solid #edf1ee;
}

.price-card h3 {
  margin-top: 35px;
  color: #92cc2e;
  font-size: 24px;
  font-weight: 600;
}

.price-card .name {
  display: block;
  margin-top: 35px;
  color: #92cc2e;
  font-size: 24px;
  font-weight: 600;
  text-decoration: none;
}

.price-card .name:hover {
  text-decoration: underline;
}

.price-card .price {
  margin: 20px 0;
  font-size: 30px;
  font-weight: 600;
}

.price-card .green-button {
  margin: 20px auto;
}

.price-card .desc {
  margin: 15px 0;
  font-size: 14px;
  font-weight: 500;
  line-height: 18px;
  min-height: 10px;
}

.price-card a {
  color: #828885;
  font-size: 14px;
  font-weight: 500;
}

.service-features .horizontal-menu-line {
  margin: 50px auto 30px;
  background-color: #edf1ee;
  border-radius: 20px;
  max-width: 625px;
  height: 40px;
  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;
}

.service-features .horizontal-menu-line:nth-child(2) {
  display: none;
}

@media (max-width: 859px) {
  .service-features .horizontal-menu-line {
    margin: 50px auto 10px;
  }
  .service-features .horizontal-menu-line:nth-child(2) {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 10px auto 30px;
  }
}

.service-features .tab-menu-item {
  cursor: pointer;
  padding: 0 30px;
  z-index: 1;
  color: #828885;
  font-size: 16px;
  font-weight: 500;
}

@media (max-width: 859px) {
  .service-features .tab-menu-item {
    padding: 0 10px;
  }
  .service-features .tab-menu-item:nth-child(n+3) {
    display: none;
  }
}

.service-features .active {
  color: white;
  font-weight: 600;
  height: 40px;
  background-color: black;
  border-radius: 20px;
  line-height: 40px;
}

#s-features-slider-body {
  margin-bottom: 20px;
}

.about-block h3 {
  font-size: 22px;
  font-weight: 600;
  margin: 0;
}

.about-block .right-block {
  margin-left: 20px;
  max-width: 530px;
}

.about-block img {
  display: inline;
}

@media (max-width: 1039px) {
  .about-block h3 {
    margin-top: 20px;
    text-align: center;
  }
  .about-block .white-button {
    display: block;
    margin: auto;
  }
  .about-block .right-block {
    display: block;
    margin: auto;
  }
  .about-block img {
    display: block;
    margin: auto;
    width: 100%;
    max-width: 335px;
    height: auto;
  }
}

.replies-line {
  margin: 0 0 50px;
}

.comment-square {
  position: relative;
  width: 305px;
  height: 277px;
  background-color: white;
  border: 3px solid #edf1ee;
  margin: 60px 15px 0;
  padding: 55px 25px 0;
}

.comment-square:last-child {
  margin-right: 0;
}

.comment-square img {
  position: absolute;
  top: -45px;
  left: 25px;
}

.comment-square .name {
  font-size: 20px;
  font-weight: 700;
}

.comment-square .website {
  color: #92cc2e;
  font-size: 15px;
  font-weight: 500;
}

.comment-square .comment {
  margin: 25px auto 10px;
  color: black;
  font-size: 15px;
  font-weight: 500;
}

.comment-square a {
  color: #828885;
  font-size: 15px;
  font-weight: 500;
}

.logo-slider {
  margin: 50px 0;
}

.logo-slider img {
  margin: auto;
}

.pre-footer {
  height: 194px;
  background-color: #edf1ee;
}

@media (max-width: 859px) {
  .pre-footer {
    height: 300px;
  }
}

@media (max-width: 599px) {
  .pre-footer {
    height: 340px;
  }
}

.pre-footer .content-max-width {
  position: relative;
  z-index: 0;
  padding-top: 55px;
}

@media (max-width: 859px) {
  .pre-footer .content-max-width {
    padding-top: 35px;
  }
}

.pre-footer h2 {
  display: inline-block;
  margin: 0;
  color: #92cc2e;
  font-size: 36px;
  font-weight: 600;
  text-align: left;
}

@media (max-width: 859px) {
  .pre-footer h2 {
    font-size: 32px;
  }
}

.pre-footer p {
  max-width: 391px;
  font-size: 14px;
  font-weight: 600;
}

@media (max-width: 859px) {
  .pre-footer p {
    max-width: 100%;
  }
}

@media (max-width: 859px) {
  .pre-footer .left-block {
    text-align: center;
    width: 100%;
  }
}

.pre-footer .right-block {
  float: right;
  display: inline-block;
  vertical-align: top;
}

@media (max-width: 859px) {
  .pre-footer .right-block {
    display: block;
    float: none;
    margin: auto;
    width: 210px;
  }
}

.pre-footer input[type="submit"] {
  border: none;
  width: 205px;
  display: block;
  margin: 10px auto 0;
}

.pre-footer input[type="tel"], .pre-footer input[type="email"] {
  margin-right: 5px;
  width: 176px;
  height: 40px;
  background-image: -webkit-linear-gradient(bottom, white 0%, white 99%, white 100%);
  background-image: linear-gradient(to top, white 0%, white 99%, white 100%);
  border-radius: 20px;
  border: none;
  box-shadow: inset 0 2px 0 #d7e3da;
  text-align: center;
  color: #a7b4ac;
  font-size: 14px;
  font-weight: 600;
}

@media (max-width: 859px) {
  .pre-footer input[type="tel"], .pre-footer input[type="email"] {
    display: block;
    margin: 10px auto 0;
  }
}

.pre-footer .bg-hand {
  width: 125px;
  height: 161px;
  background-image: url("../images/bg-hand.jpg");
  left: -140px;
  bottom: 0;
}

.pre-footer .bg-dots {
  margin: 20px 0 0 5px;
  width: 226px;
  height: 6px;
  background-image: url("../images/bg-dots.jpg");
}

@media (max-width: 1039px) {
  .pre-footer .bg-dots {
    width: 50px;
  }
}

@media (max-width: 859px) {
  .pre-footer .bg-dots {
    display: none;
  }
}

footer {
  height: 258px;
  background-image: url("../images/footer-bg.jpg");
  background-size: cover;
  color: #a6afa8;
  font-size: 14px;
  font-weight: 500;
}

@media (max-width: 859px) {
  footer {
    height: 520px;
  }
}

footer a {
  color: #a6afa8;
}

footer .content-max-width {
  padding-top: 35px;
}

footer .flex-line {
  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;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 859px) {
  footer .flex-line {
    display: block;
  }
}

footer .flex-line:nth-child(2) {
  margin: 27px 0;
}

@media (max-width: 859px) {
  footer .flex-line:nth-child(2) {
    text-align: center;
    width: 150px;
    margin: 27px auto;
  }
  footer .flex-line:nth-child(2) img {
    margin-top: 20px;
  }
}

footer nav {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-left: 70px;
  width: 300px;
}

footer nav a {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
}

@media (max-width: 859px) {
  footer nav {
    display: block;
    margin: 30px auto;
  }
  footer nav a {
    text-align: center;
    margin: 15px auto;
    width: 120px;
    display: block;
  }
}

footer hr {
  height: 1px;
  background-color: #474b48;
  border: none;
  margin: 27px 0;
}

.footer-logo span {
  font-size: 24px;
  font-weight: 700;
  line-height: 24px;
  margin-left: 10px;
}

@media (max-width: 859px) {
  .footer-logo {
    width: 134px;
    display: block;
    margin: auto;
  }
}

.footer-contacts {
  font-size: 17px;
  font-weight: 700;
  margin-left: 50px;
}

.footer-contacts span {
  display: block;
  margin-top: 4px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: underline;
  cursor: pointer;
}

.footer-contacts .lang-triangle {
  border-style: solid;
  height: 0;
  width: 0;
  border-color: #a6afa8 transparent transparent;
  border-width: 5px 5px 0;
}

@media (max-width: 859px) {
  .footer-contacts {
    width: 160px;
    margin: auto;
    text-align: center;
  }
}

@media (max-width: 859px) {
  .footer-vote-for-us {
    margin: auto;
    text-align: center;
    display: block;
    width: 270px;
  }
}

.rating-stars {
  vertical-align: baseline;
  margin-left: 5px;
  width: 80px;
}

.rating-stars i {
  vertical-align: baseline;
}

.fullscreen-cover {
  z-index: 100;
  width: 100%;
  height: 100%;
  background-color: rgba(234, 239, 241, 0.8);
  position: fixed;
  top: 0;
}

.popup-window {
  position: absolute;
  left: calc(50% - 263px);
  top: calc(50% - 225px);
  width: 526px;
  background-color: white;
  border-radius: 3px;
  box-shadow: 0 8px 29px rgba(84, 92, 95, 0.4);
  padding: 10px 60px 50px;
  font-size: 13px;
}

@media (max-width: 599px) {
  .popup-window {
    width: 300px;
    left: calc(50% - 150px);
    padding: 10px 20px;
  }
  .popup-window h2 {
    margin: 10px auto;
    width: 180px;
  }
  .popup-window input[type="submit"] {
    margin: 25px 0;
  }
}

.popup-window .icon-popup-close {
  position: absolute;
  right: 10px;
  top: 10px;
  width: 25px;
  height: 25px;
  cursor: pointer;
}

.popup-window .icon-popup-close div {
  width: 100%;
  top: 50%;
  height: 2px;
  margin-top: -1px;
  background: #000000;
  position: relative;
}

.popup-window .icon-popup-close div:first-child {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.popup-window .icon-popup-close div:last-child {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

#call_back_fullscreen, #feedback_fullscreen {
  text-align: center;
}

#call_back_fullscreen h2, #feedback_fullscreen h2 {
  margin: 30px auto 0;
}

#call_back_fullscreen p, #feedback_fullscreen p {
  text-align: center;
  margin-bottom: 30px;
}

#call_back_fullscreen input, #feedback_fullscreen input {
  width: 90%;
  padding: 12px 15px;
  display: block;
  margin: 0 auto;
  background: none;
  border: none;
  text-align: center;
}

#call_back_fullscreen textarea, #feedback_fullscreen textarea {
  display: block;
  margin: 10px auto 0;
  width: 90%;
}

#call_back_fullscreen label, #feedback_fullscreen label {
  display: block;
  margin: 10px auto 0;
  width: 246px;
  height: 40px;
  border: 1px solid #d1d7d8;
  box-shadow: inset 2.1px 2.1px 6px rgba(206, 212, 214, 0.45);
  border-radius: 5px;
}

#call_back_fullscreen textarea, #feedback_fullscreen textarea {
  height: 100px;
}

#call_back_fullscreen button[type="submit"], #feedback_fullscreen button[type="submit"] {
  font-size: 14px;
  display: block;
  margin: 10px auto 0;
  width: 244px;
  height: 44px;
}

.icon-call-back {
  background-image: url(../images/sprite.png);
  background-position: 0px -76px;
  width: 41px;
  height: 42px;
}

.icon-hero-arrow-left {
  background-image: url(../images/sprite.png);
  background-position: 0px -118px;
  width: 15px;
  height: 26px;
}

.icon-hero-arrow-right {
  background-image: url(../images/sprite.png);
  background-position: -15px -118px;
  width: 15px;
  height: 26px;
}

.icon-rating-star {
  background-image: url(../images/sprite.png);
  background-position: -190px -76px;
  width: 11px;
  height: 10px;
}

.icon-service-1 {
  background-image: url(../images/sprite.png);
  background-position: -114px -76px;
  width: 34px;
  height: 32px;
}

.icon-service-2 {
  background-image: url(../images/sprite.png);
  background-position: -41px -76px;
  width: 39px;
  height: 33px;
}

.icon-service-3 {
  background-image: url(../images/sprite.png);
  background-position: -80px -76px;
  width: 34px;
  height: 32px;
}

.icon-service-green-1 {
  background-image: url(../images/sprite.png);
  background-position: -148px 0px;
  width: 74px;
  height: 76px;
}

.icon-service-green-2 {
  background-image: url(../images/sprite.png);
  background-position: -74px 0px;
  width: 74px;
  height: 76px;
}

.icon-service-green-3 {
  background-image: url(../images/sprite.png);
  background-position: 0px 0px;
  width: 74px;
  height: 76px;
}

.icon-sidebar-close {
  background-image: url(../images/sprite.png);
  background-position: -177px -76px;
  width: 13px;
  height: 13px;
}

.icon-sidebar {
  background-image: url(../images/sprite.png);
  background-position: -148px -76px;
  width: 29px;
  height: 24px;
}

body {
  font-family: "HouschkaPro", sans-serif;
}

.browserupgrade {
  margin: 0.2em 0;
  background: #ccc;
  color: #000;
  padding: 0.2em 0;
}

.green-button {
  width: 176px;
  height: 40px;
  background-color: #92cc2e;
  border-radius: 20px;
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.09), inset 0 -2px 0 #86c400;
  text-shadow: 0 2px 1px rgba(125, 183, 26, 0.75);
  color: white;
  font-size: 16px;
  font-weight: 600;
  line-height: 40px;
  text-align: center;
  cursor: pointer;
}

.green-button:hover {
  background-color: #97dc1f;
}

a {
  color: black;
}

a:hover {
  color: #85d200;
}

.white-button {
  width: 176px;
  height: 40px;
  background-color: white;
  border: 2px solid #dce0de;
  border-radius: 20px;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  line-height: 40px;
  cursor: pointer;
}

h2 {
  text-align: center;
  color: black;
  font-size: 28px;
  font-weight: 500;
}

p {
  color: black;
  font-size: 15px;
  font-weight: 500;
}
