@import url("https://fonts.googleapis.com/css?family=Roboto:300,400,500,700&display=swap");

.icon-contract {
  width: 32px;
  height: 32px;
  background-image: url("../img/sprite.png");
  background-position: -123px 0px;
}

.icon-instag {
  width: 32px;
  height: 32px;
  background-image: url("../img/sprite.png");
  background-position: -44px -75px;
}

.icon-instaw {
  width: 18px;
  height: 18px;
  background-image: url("../img/sprite.png");
  background-position: -165px -114px;
}

.icon-mobile {
  width: 15px;
  height: 25px;
  background-image: url("../img/sprite.png");
  background-position: -165px -79px;
}

.icon-mobilew {
  width: 20px;
  height: 34px;
  background-image: url("../img/sprite.png");
  background-position: -165px 0px;
}

.icon-next {
  width: 29px;
  height: 65px;
  background-image: url("../img/sprite.png");
  background-position: -39px 0px;
}

.icon-pin {
  width: 19px;
  height: 25px;
  background-image: url("../img/sprite.png");
  background-position: -165px -44px;
}

.icon-pintw {
  width: 26px;
  height: 34px;
  background-image: url("../img/sprite.png");
  background-position: -123px -42px;
}

.icon-prev {
  width: 29px;
  height: 65px;
  background-image: url("../img/sprite.png");
  background-position: 0px 0px;
}

.icon-vkg {
  width: 35px;
  height: 35px;
  background-image: url("../img/sprite.png");
  background-position: -78px 0px;
}

.icon-vkw {
  width: 24px;
  height: 13px;
  background-image: url("../img/sprite.png");
  background-position: -123px -86px;
}

.icon-work {
  width: 28px;
  height: 28px;
  background-image: url("../img/sprite.png");
  background-position: 0px -119px;
}

.icon-workw {
  width: 34px;
  height: 34px;
  background-image: url("../img/sprite.png");
  background-position: 0px -75px;
}

*,
::after,
::before {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  position: relative;
  overflow-x: hidden;
  min-width: 320px;
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  background-color: #fff;
  line-height: 1.3;
}

button {
  border: none;
  border: 0;
}

*:focus {
  outline: 0;
}

.text-center {
  text-align: center !important;
}

.content p {
  color: #4f4f4f;
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 46px;
  line-height: 1.3;
}

.content h3 {
  font-size: 25px;
  font-weight: 500;
  margin-bottom: 15px;
  color: #578041;
}

.content .mauto {
  margin-left: auto;
  margin-right: auto;
}

.content img {
  display: block;
  max-width: 100%;
  height: auto;
}

.content .mb-15 {
  margin-bottom: 15px;
}

.content .mb-3 {
  margin-bottom: 30px;
}

.content .mb-4 {
  margin-bottom: 40px;
}

.content .mb-5 {
  margin-bottom: 50px;
}

.content .mb-6 {
  margin-bottom: 60px;
}

.content .mb-7 {
  margin-bottom: 70px;
}

.content [class^="col"] {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  word-wrap: break-word;
  margin-left: 15px;
  margin-right: 15px;
}

.content .col-md-1 {
  width: -webkit-calc(8.33333% - 30px);
  width: calc(8.33333% - 30px);
}

.content .col-md-2 {
  width: -webkit-calc(16.66667% - 30px);
  width: calc(16.66667% - 30px);
}

.content .col-md-3 {
  width: -webkit-calc(25% - 30px);
  width: calc(25% - 30px);
}

.content .col-md-4 {
  width: -webkit-calc(33.33333% - 30px);
  width: calc(33.33333% - 30px);
}

.content .col-md-5 {
  width: -webkit-calc(41.66667% - 30px);
  width: calc(41.66667% - 30px);
}

.content .col-md-6 {
  width: -webkit-calc(50% - 30px);
  width: calc(50% - 30px);
}

.content .col-md-7 {
  width: -webkit-calc(58.33333% - 30px);
  width: calc(58.33333% - 30px);
}

.content .col-md-8 {
  width: -webkit-calc(66.66667% - 30px);
  width: calc(66.66667% - 30px);
}

.content .col-md-9 {
  width: -webkit-calc(75% - 30px);
  width: calc(75% - 30px);
}

.content .col-md-10 {
  width: -webkit-calc(83.33333% - 30px);
  width: calc(83.33333% - 30px);
}

.content .col-md-11 {
  width: -webkit-calc(91.66667% - 30px);
  width: calc(91.66667% - 30px);
}

.content .col-md-12 {
  width: -webkit-calc(100% - 30px);
  width: calc(100% - 30px);
}

.row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
}

@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }

  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }

  to {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
}

@keyframes pulse {
  0% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }

  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }

  to {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
}

@-webkit-keyframes bounceInLeft {
  0%, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0);
  }

  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }

  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
  }

  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

@keyframes bounceInLeft {
  0%, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0);
  }

  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }

  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
  }

  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

[class^='icon-'] {
  display: inline-block;
}

.mt-90 {
  margin-top: 50px;
}

button:focus {
  outline: 0;
}

a {
  -webkit-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

.container {
  max-width: 1170px;
  margin: 0 auto;
  padding-left: 15px;
  padding-right: 15px;
}

.bgcircle-left,
.bgcircle-right {
  position: relative;
}

.bgcircle-left:before,
.bgcircle-right:before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  z-index: -1;
  width: 330px;
  height: 795px;
  background-repeat: no-repeat;
  background-size: cover;
}

.bgcircle-left:before {
  background-image: url(../img/circleleft.png);
  background-position: top right;
  left: 0;
}

.bgcircle-right:before {
  background-image: url(../img/circleright.png);
  background-position: top left;
  right: 0;
}

.btn-defaut {
  display: inline-block;
  font-size: 16px;
  font-weight: 500;
  background: #578041;
  border-radius: 38px;
  padding: 13px 27px;
  color: #fff;
  cursor: pointer;
  text-decoration: none;
  -webkit-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

.btn-defaut:hover {
  background: #76a75d;
  color: #000;
  text-decoration: none;
  -webkit-animation: pulse 1s infinite linear;
  animation: pulse 1s infinite linear;
}

.title {
  text-align: center;
  color: #578041;
  font-size: 36px;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 30px;
  width: 100%;
}

header.header {
  padding-top: 17px;
  position: relative;
  z-index: 2;
  background-color: #FFFBFB;
  padding-bottom: 8px;
}

header.header .row {
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

header.header .logo {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  word-wrap: break-word;
  margin-left: 15px;
  margin-right: 15px;
}

header.header .logo a {
  text-decoration: none;
}

header.header .logo a img {
  max-width: 229px;
}

header.header .logo a:hover {
  opacity: 0.7;
}

header.header .header_right {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  word-wrap: break-word;
  margin-left: 15px;
  margin-right: 15px;
  margin-left: auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: 0;
}

header.header .header_right .info_item {
  color: #585858;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  font-weight: 700;
  font-size: 15px;
  margin-left: 40px;
  margin-right: 40px;
}

header.header .header_right .info_item address {
  text-transform: none;
  font-style: normal;
  color: #585858;
}

header.header .header_right .info_item a {
  text-decoration: none;
  color: #585858;
  border-bottom: 1px solid transparent;
}

header.header .header_right .info_item a:hover {
  color: #578041;
  border-color: #578041;
}

header.header .header_right .info_item i {
  margin-right: 11px;
}

#menu-control {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 47px;
  cursor: pointer;
  border-radius: 50%;
  background-color: #FFFBFB;
  padding: 6px 3px;
  border: 7px solid #FFFBFB;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  word-wrap: break-word;
  margin-left: 15px;
  margin-right: 15px;
}

#menu-control:before,
#menu-control:after {
  content: '';
}

#menu-control:before,
#menu-control:after,
#menu-control span {
  display: block;
  width: 100%;
  height: 4px;
  background-color: #578041;
  border-radius: 3px;
  -webkit-transform-origin: center;
  -ms-transform-origin: center;
  transform-origin: center;
  -webkit-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

#menu-control span {
  background-color: #578041;
  margin-top: 4.5px;
  margin-bottom: 4.5px;
}

#menu-btn {
  display: none;
}

#menu-btn:checked + #menu-control:before {
  -webkit-transform: rotate(-35deg) translate(-5px, 7px);
  -ms-transform: rotate(-35deg) translate(-5px, 7px);
  transform: rotate(-35deg) translate(-5px, 7px);
}

#menu-btn:checked + #menu-control:after {
  -webkit-transform: rotate(35deg) translate(-5px, -7px);
  -ms-transform: rotate(35deg) translate(-5px, -7px);
  transform: rotate(35deg) translate(-5px, -7px);
}

#menu-btn:checked + #menu-control span {
  -webkit-transform: translateX(-150%);
  -ms-transform: translateX(-150%);
  transform: translateX(-150%);
}

header #menu-control {
  display: block;
  position: relative;
  z-index: 3;
  overflow: hidden;
  -webkit-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

header #menu-btn:checked + #menu-control {
  position: fixed;
  top: 10px;
  right: 10px;
}

header #menu-btn:checked + #menu-control + .nav-bar {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  position: fixed;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow-y: scroll;
  -webkit-animation: bounceInLeft 1s ease;
  animation: bounceInLeft 1s ease;
}

.nav-bar {
  margin-top: 0;
  display: none;
  -webkit-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
  background-image: url(../img/repeatbg.jpg);
}

.nav-bar .menu {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 15px;
}

.nav-bar .menu li a {
  font-size: 16px;
  font-weight: 700;
  color: #585858;
  text-decoration: none;
  padding-bottom: 3px;
  margin-bottom: 10px;
  display: block;
  position: relative;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.nav-bar .menu li a:after {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  background-color: transparent;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  -webkit-transform: scaleX(0);
  -ms-transform: scaleX(0);
  transform: scaleX(0);
}

.nav-bar .menu li a:hover {
  color: #578041;
}

.nav-bar .menu li a:hover:after {
  background-color: #578041;
  -webkit-transform: scaleX(1);
  -ms-transform: scaleX(1);
  transform: scaleX(1);
}

.nav-bar .menu .active > a {
  color: #578041;
}

.nav-bar .menu .active > a:after {
  background-color: #578041;
  -webkit-transform: scaleX(1);
  -ms-transform: scaleX(1);
  transform: scaleX(1);
}

.nav-bar-footer .menu {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.nav-bar-footer .menu li a {
  font-size: 20 px;
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
  padding-bottom: 3px;
  display: block;
  position: relative;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.nav-bar-footer .menu li a:after {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  background-color: transparent;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  -webkit-transform: scaleX(0);
  -ms-transform: scaleX(0);
  transform: scaleX(0);
}

.nav-bar-footer .menu li a:hover {
  color: #ffffff;
}

.nav-bar-footer .menu li a:hover:after {
  background-color: #ffffff;
  -webkit-transform: scaleX(1);
  -ms-transform: scaleX(1);
  transform: scaleX(1);
}

.nav-bar-footer .menu .active > a {
  color: #ffffff;
}

.nav-bar-footer .menu .active > a:after {
  background-color: #ffffff;
  -webkit-transform: scaleX(1);
  -ms-transform: scaleX(1);
  transform: scaleX(1);
}

.slick-dots {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 10px;
}

.slick-dots li {
  margin: 0 9px;
}

.slick-dots li span {
  display: block;
  width: 25px;
  height: 25px;
  -webkit-box-shadow: inset 1px 4px 8px rgba(0, 0, 0, 0.17);
  box-shadow: inset 1px 4px 8px rgba(0, 0, 0, 0.17);
  border-radius: 50%;
  background-color: #fafafa;
  -webkit-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

.slick-dots .slick-active span {
  background-color: #578041;
}

.slick-slider {
  position: relative;
}

.slick-slider .slick-arrow {
  background: none;
  border: 0;
  border: none;
  display: block;
  position: absolute;
  -webkit-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
  cursor: pointer;
  padding: 5px;
  z-index: 1;
}

.slick-slider .slick-arrow:hover {
  background-color: #fff;
}

.slick-slider .slick-next {
  right: 10px;
}

.slick-slider .slick-prev {
  left: 10px;
}

.home-top {
  overflow: hidden;
  -webkit-transform: translateY(-40px);
  -ms-transform: translateY(-40px);
  transform: translateY(-40px);
}

.home-top .slick-slider .slick-arrow {
  top: -50%;
  background-color: rgba(225, 225, 225, 0.54);
}

.home-top .slick-slider .slick-arrow:hover {
  background-color: #fff;
}

.home-top .slick-slider:hover .slick-arrow,
.home-top .slick-slider:focus .slick-arrow {
  display: block;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

#slider {
  border-bottom: 3px dashed #e1e1e1;
}

#slider .slider-item {
  position: relative;
}

#slider .slider-item img {
  display: block;
  max-width: 100%;
  height: auto;
}

#slider .slider_item_text {
  position: absolute;
  bottom: 0;
  left: 0;
  max-width: 40%;
  width: 100%;
  padding-right: 133px;
  padding-top: 40px;
  padding-bottom: 37px;
  background-image: url(../img/bgslidtext.png);
  background-position: top right;
  background-repeat: no-repeat;
  background-size: cover;
}

#slider .slider_item_text .box {
  color: #535353;
  font-weight: 700;
  margin-left: auto;
  max-width: 303px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

#slider .slider_item_text .box .title-slider {
  line-height: 1.3;
  margin-bottom: 20px;
  font-size: 24px;
  color: #588041;
}

#slider .slider_item_text .box .btn {
  max-width: 230px;
}

#slider .slick-active .slider_item_text {
  -webkit-animation: bounceInLeft 1s ease;
  animation: bounceInLeft 1s ease;
}

.services-home .btn {
  max-width: 195px;
  margin-left: auto;
  margin-right: auto;
  display: block;
  width: 100%;
  text-align: center;
}

.services-home .item {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  word-wrap: break-word;
  margin-left: 15px;
  margin-right: 15px;
  text-decoration: none;
  background: #FCFCFC;
  border: 1px solid rgba(88, 128, 65, 0.2);
  box-sizing: border-box;
  -webkit-box-shadow: 4px 6px 10px rgba(0, 0, 0, 0.19);
  box-shadow: 4px 6px 10px rgba(0, 0, 0, 0.19);
  border-radius: 50px;
  padding: 30px 12px;
  width: 200px;
  height: 220px;
  margin-bottom: 30px;
  position: relative;
  -webkit-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

.services-home .item:before {
  content: '';
  display: block;
  position: absolute;
  top: -20%;
  left: -20%;
  width: 140%;
  height: 140%;
  background: url(../img/itembg.png);
  background-position: center;
  background-size: cover;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

.services-home .item:hover {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-box-shadow: 0;
  box-shadow: 0;
  border-color: transparent;
}

.services-home .item:hover .box-wrap {
  -webkit-transform: scale(0.9);
  -ms-transform: scale(0.9);
  transform: scale(0.9);
}

.services-home .item:hover:before {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

.services-home .item .box-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 100%;
  position: relative;
  z-index: 1;
  -webkit-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

.services-home .item img {
  max-width: 100%;
  height: auto;
  display: block;
  margin-bottom: 30px;
}

.services-home .item .title-item {
  text-align: center;
  font-size: 14px;
  font-weight: 400;
  color: #565656;
}

.nicescroll-rails {
  -webkit-box-shadow: inset 1px 4px 8px rgba(0, 0, 0, 0.17) !important;
  box-shadow: inset 1px 4px 8px rgba(0, 0, 0, 0.17) !important;
  background-color: #ffffff !important;
  border-radius: 20px;
}

.select2-container--default .select2-results__option[aria-selected=true] {
  background-color: #fff;
  color: #578041;
}

.select2-results__option {
  color: #000;
  color: #b2b2b2;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
  background-color: #578041;
  color: #fff;
}

.select_buttom {
  margin-top: 45px;
  margin-bottom: 45px;
  width: 100%;
  display: block;
}

.select_buttom .container .scroll_bar {
  max-width: 700px;
  margin: 0 auto;
  background: #FDFBFB;
  border: 1px solid #E2E2E2;
  -webkit-box-shadow: 4px 6px 10px rgba(0, 0, 0, 0.19);
  box-shadow: 4px 6px 10px rgba(0, 0, 0, 0.19);
  border-radius: 20px;
  padding: 25px;
}

.select_buttom .container .scroll_bar .list {
  width: 100%;
  height: 200px;
}

.select_buttom .container .scroll_bar .list li {
  margin-bottom: 15px;
}

.select_buttom .container .scroll_bar .list li:last-child {
  margin-bottom: 0;
}

.select_buttom .container .scroll_bar .list li a {
  font-size: 18px;
  line-height: 22px;
  color: #AFAFAF;
  text-decoration: none;
}

.select_buttom .container .scroll_bar .list li a:hover {
  color: #588041;
}

.about {
  margin-bottom: 80px;
}

.about .row {
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.about .row .col-3 {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  word-wrap: break-word;
  margin-left: 15px;
  margin-right: 15px;
  width: -webkit-calc(25% - 30px);
  width: calc(25% - 30px);
  padding-right: 15px;
}

.about .row .col-3 .box-img {
  -webkit-box-shadow: 7px 20px 13px rgba(60, 60, 60, 0.05);
  box-shadow: 7px 20px 13px rgba(60, 60, 60, 0.05);
  border-radius: 35px;
  background-color: #ffffff;
  padding: 25px;
}

.about .row .col-3 .box-img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 25px;
}

.about .row .col-8 {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  word-wrap: break-word;
  margin-left: 15px;
  margin-right: 15px;
  width: -webkit-calc(66.66667% - 30px);
  width: calc(66.66667% - 30px);
  padding-left: 15px;
}

.about .row .col-8 .position {
  color: #6d6d6d;
  font-size: 14px;
  font-weight: 500;
}

.about .row .col-8 .name {
  font-weight: 500;
  color: #578041;
  font-size: 24px;
  margin-bottom: 30px;
  margin-top: 15px;
}

.about .row .col-8 .desc {
  color: #4f4f4f;
  font-size: 16px;
  font-weight: 300;
  margin-bottom: 46px;
  line-height: 1.3;
  margin-bottom: 20px;
}

.about .row .col-8 .more {
  text-decoration: none;
  color: #578041;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
}

.about .row .col-8 .more:hover {
  color: #000;
}

.discont {
  background-image: url(../img/repeatbg.jpg);
  position: relative;
  overflow: hidden;
}

.discont img {
  position: absolute;
  -o-object-fit: cover;
  object-fit: cover;
  top: 0;
  display: block;
  right: 0;
  z-index: 0;
}

.discont .container {
  height: 391px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  z-index: 1;
}

.discont .container .text {
  max-width: 549px;
}

.discont .container .text .title-discont {
  color: #5c5c5b;
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  text-transform: uppercase;
  line-height: 1.2;
}

.discont .container .text a {
  margin: 0 auto;
  max-width: 225px;
  display: block;
  text-align: center;
}

.advantages {
  margin-top: 70px;
}

.advantages .title {
  margin-bottom: 60px;
}

.advantages .row {
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.advantages .item-adv {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  word-wrap: break-word;
  margin-left: 15px;
  margin-right: 15px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  max-width: 157px;
  margin-bottom: 15px;
}

.advantages .item-adv img {
  margin-bottom: 20px;
  max-width: 100%;
  height: auto;
  display: block;
}

.advantages .item-adv .title-adv {
  text-align: center;
  font-size: 16px;
  color: #565656;
}

.social {
  padding-top: 75px;
  padding-bottom: 80px;
  border-bottom: 3px dashed #e1e1e1;
}

.social .slick-list {
  padding-top: 25px !important;
  padding-bottom: 25px !important;
}

.social .title {
  margin-bottom: 50px;
}

.social .social-btn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.social .social-btn a {
  margin: 0 15px;
}

.social .social-btn a:hover {
  opacity: 0.7;
}

.social .social-slider {
  padding-bottom: 75px;
}

.social .social-slider .item {
  text-align: center;
  opacity: 0.9;
  -webkit-transform: scale(0.8);
  -ms-transform: scale(0.8);
  transform: scale(0.8);
  display: block;
  -webkit-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

.social .social-slider .item img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 20%;
  margin: 0 auto;
}

.social .slick-active.slick-center .item {
  opacity: 1;
  -webkit-transform: scale(1.3);
  -ms-transform: scale(1.3);
  transform: scale(1.3);
}

.social .slick-active .item {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

.social .slick-slide {
  padding: 0px  35px;
}

.social .slick-slide .item {
  display: -webkit-box !important;
  display: -webkit-flex !important;
  display: -ms-flexbox !important;
  display: flex !important;
  margin: 0 auto;
}

.contact-footer {
  margin-top: 75px;
  padding-bottom: 67px;
  position: relative;
  background-position: left center;
  background-repeat: no-repeat;
  background-size: contain;
}

.contact-footer .box_desc {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  word-wrap: break-word;
  margin-left: 15px;
  margin-right: 15px;
  max-width: 470px;
  margin-left: auto;
  position: relative;
  margin-right: 0;
  z-index: 1;
}

.contact-footer .title {
  margin-bottom: 20px;
}

.contact-footer .text-bold {
  color: #565656;
  font-size: 20px;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.contact-footer .address {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}

.contact-footer .green {
  color: #578041;
}

.contact-footer .green a {
  color: #578041;
  text-decoration: none;
}

.contact-footer .green a:hover {
  color: #5d5d5d;
}

.contact-footer .text {
  margin-bottom: 47px;
  font-size: 14px;
  color: #565656;
}

.contact-footer .text-form {
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin: 20px;
  color: #565656;
}

.contact-footer .form_defaut {
  margin-top: 40px;
}

.text {
  color: #686868;
  font-size: 14px;
  font-weight: 400;
  line-height: 24.02px;
}

.form_defaut .form-group {
  margin-bottom: 16px;
  max-width: 100%;
}

.form_defaut .form-group input {
  background: #FFFFFF;
  -webkit-box-shadow: inset 2px 2px 10px rgba(0, 0, 0, 0.25);
  box-shadow: inset 2px 2px 10px rgba(0, 0, 0, 0.25);
  border-radius: 50px;
  display: block;
  padding: 10px 40px;
  max-width: 100%;
  width: 100%;
  border: none;
  border: 0;
}

.form-checkbox {
  margin-bottom: 25px;
}

.form-checkbox label span.checked {
  display: inline-block;
  border-radius: 100%;
  vertical-align: middle;
  margin-left: 20px;
  width: 20px;
  height: 20px;
  position: relative;
  -webkit-box-shadow: inset 1px 4px 8px rgba(0, 0, 0, 0.17);
  box-shadow: inset 1px 4px 8px rgba(0, 0, 0, 0.17);
  background-color: #fafafa;
}

.form-checkbox label span.checked:before {
  content: '';
  position: absolute;
  background-color: #578041;
  top: 0;
  left: 0;
  max-width: 100%;
  width: 100%;
  height: 100%;
  border-radius: 100%;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

.form-checkbox input {
  display: none;
}

.form-checkbox input:checked + label span.checked:before {
  -webkit-transform: scale(0.5);
  -ms-transform: scale(0.5);
  transform: scale(0.5);
}

.form-checkbox span.text {
  font-size: 14px;
  font-weight: 400;
  color: #565656;
  letter-spacing: 0.03em;
}

.form-checkbox span.text a {
  color: #578041;
  text-decoration: none;
}

.form-checkbox span.text a:hover {
  text-decoration: underline;
  color: #000;
}

footer {
  background-color: #578041;
  display: block;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  background-image: url(../img/footerbg.jpg);
}

footer .container {
  border-top: 3px dashed #405f30;
  margin-top: 20px;
  padding-top: 30px;
  padding-bottom: 30px;
}

footer .container .left {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  word-wrap: break-word;
  margin-left: 15px;
  margin-right: 15px;
  width: -webkit-calc(16.66667% - 30px);
  width: calc(16.66667% - 30px);
}

footer .container .left p {
  font-size: 12px;
  color: #fff;
  font-weight: 500;
}

footer .container .left p a {
  color: #fff;
  text-decoration: none;
}

footer .container .left p a:hover {
  text-decoration: underline;
}

footer .container .left p:nth-child(1) {
  margin-bottom: 22px;
}

footer .container .midle {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  word-wrap: break-word;
  margin-left: 15px;
  margin-right: 15px;
  width: -webkit-calc(70.66667% - 30px);
  width: calc(70.66667% - 30px);
}

footer .container .right {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  word-wrap: break-word;
  margin-left: 15px;
  margin-right: 15px;
  width: -webkit-calc(12.66667% - 30px);
  width-width: -webkit-calc(12.66667% - 30px);
  width-width: calc(12.66667% - 30px);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  text-align: right;
}

footer .container .right .social-foot {
  text-align: right;
}

footer .container .right .social-foot a:first-child {
  margin-right: 25px;
}

footer .container .right p {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  margin-top: auto;
}

.services .row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
  -webkit-justify-content: space-around;
  -ms-flex-pack: distribute;
  justify-content: space-around;
}

.services .row .item {
  max-width: 215px;
  background: #FDFBFB;
  border: 1px solid #E2E2E2;
  -webkit-box-shadow: 4px 6px 10px rgba(0, 0, 0, 0.19);
  box-shadow: 4px 6px 10px rgba(0, 0, 0, 0.19);
  border-radius: 50px;
  padding: 24px;
  display: block;
  text-decoration: none;
  cursor: pointer;
}

.services .row .item:hover {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

.services .row .item .title_box {
  color: #588041;
  margin-bottom: 20px;
  font-size: 18px;
  display: block;
  text-transform: uppercase;
  text-align: center;
}

.services .row .item .info {
  font-size: 11px;
  color: #565656;
  text-align: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.services .row .item .info span {
  margin-bottom: 20px;
  text-transform: uppercase;
}

.services .row .item .info span:last-child {
  margin-bottom: 0;
}

@media only screen and (max-width: 1600px) {
  .discont .container .text .title-discont {
    max-width: 500px;
  }
}

@media only screen and (max-width: 1400px) {
  .bgcircle-left:before,
  .bgcircle-right:before {
    width: 250px;
    height: 620px;
  }
}

@media only screen and (max-width: 1200px) {
  header.header .header_right .info_item {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    word-wrap: break-word;
    margin-left: 15px;
    margin-right: 15px;
  }

  .services .row {
    -webkit-justify-content: space-around;
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }

  .services .row .item {
    margin-left: 15px;
    margin-right: 15px;
    margin-bottom: 15px;
  }
}

@media only screen and (max-width: 1120px) {
  footer .container .right,
  footer .container .left {
    width: -webkit-calc(16.66667% - 30px);
    width: calc(16.66667% - 30px);
  }

  footer .container .midle {
    width: -webkit-calc(66.66667% - 30px);
    width: calc(66.66667% - 30px);
  }
}

@media only screen and (max-width: 1100px) {
  #slider .slider_item_text {
    max-width: 50%;
  }
}

@media only screen and (max-width: 1062px) {
  .contact-footer {
    padding-bottom: 25px;
    background-image: url(../img/repeatbg.jpg) !important;
  }

  .contact-footer:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    display: block;
    opacity: 0.7;
    background-color: #fff;
  }
}

@media only screen and (max-width: 1012px) {
  header.header .row {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  header.header .logo {
    margin-bottom: 15px;
  }

  header.header .header_right {
    margin-right: auto;
    width: 100%;
    -webkit-justify-content: space-around;
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }

  header #menu-control {
    position: fixed;
    top: 10px;
    right: 10px;
  }
}

@media only screen and (max-width: 1000px) {
  .services-home .row {
    -webkit-justify-content: space-around;
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }

  .advantages .title {
    margin-bottom: 35px;
  }

  .contact-footer .box_desc {
    margin-left: auto;
    margin-right: auto;
  }

  .form_defaut .form-group input {
    padding: 10px 15px;
  }
}

@media only screen and (max-width: 980px) {
  footer .container .row {
    -webkit-justify-content: space-around;
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }

  footer .container .right,
  footer .container .left {
    width: -webkit-calc(33.33333% - 30px);
    width: calc(33.33333% - 30px);
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
    -ms-flex-order: 1;
    order: 1;
  }

  footer .container .midle {
    width: -webkit-calc(100% - 30px);
    width: calc(100% - 30px);
    -webkit-box-ordinal-group: 1;
    -webkit-order: 0;
    -ms-flex-order: 0;
    order: 0;
    margin-bottom: 25px;
  }
}

@media only screen and (max-width: 950px) {
  .about .row .col-3 {
    width: -webkit-calc(41.66667% - 30px);
    width: calc(41.66667% - 30px);
  }

  .about .row .col-8 {
    width: -webkit-calc(58.33333% - 30px);
    width: calc(58.33333% - 30px);
  }
}

@media only screen and (max-width: 940px) {
  header.header {
    padding-bottom: 25px;
    border-radius: 0;
  }
}

@media only screen and (max-width: 914px) {
  header.header .header_right .info_item {
    margin-bottom: 10px;
  }
}

@media only screen and (max-width: 900px) {
  .bgcircle-left:before,
  .bgcircle-right:before {
    display: none;
  }
}

@media only screen and (max-width: 850px) {
  .advantages .row {
    -webkit-justify-content: space-around;
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }
}

@media only screen and (max-width: 830px) {
  #slider .slider_item_text {
    max-width: 100%;
    padding-right: 0;
    padding-left: 0;
    background-color: #fff;
    position: static;
  }

  #slider .slider_item_text .box {
    margin-right: auto;
  }

  #slider .slider_item_text .box .title-slider {
    text-align: center;
  }

  #slider .slider_item_text .box .btn {
    margin-left: auto;
    margin-right: auto;
  }
}

@media only screen and (max-width: 800px) {
  .nav-bar .menu li {
    margin-bottom: 15px;
  }

  .nav-bar-footer {
    display: block;
  }

  .home-top {
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }

  .about .row .col-8 .name {
    margin-bottom: 25px;
  }

  .discont img {
    display: none;
  }

  .discont .container .text {
    margin: 0 auto;
  }

  .social .title {
    margin-bottom: 35px;
  }
}

@media screen and (max-width: 780px) {
  .content .col-sm-1 {
    width: -webkit-calc(8.33333% - 30px);
    width: calc(8.33333% - 30px);
  }

  .content .col-sm-2 {
    width: -webkit-calc(16.66667% - 30px);
    width: calc(16.66667% - 30px);
  }

  .content .col-sm-3 {
    width: -webkit-calc(25% - 30px);
    width: calc(25% - 30px);
  }

  .content .col-sm-4 {
    width: -webkit-calc(33.33333% - 30px);
    width: calc(33.33333% - 30px);
  }

  .content .col-sm-5 {
    width: -webkit-calc(41.66667% - 30px);
    width: calc(41.66667% - 30px);
  }

  .content .col-sm-6 {
    width: -webkit-calc(50% - 30px);
    width: calc(50% - 30px);
  }

  .content .col-sm-7 {
    width: -webkit-calc(58.33333% - 30px);
    width: calc(58.33333% - 30px);
  }

  .content .col-sm-8 {
    width: -webkit-calc(66.66667% - 30px);
    width: calc(66.66667% - 30px);
  }

  .content .col-sm-9 {
    width: -webkit-calc(75% - 30px);
    width: calc(75% - 30px);
  }

  .content .col-sm-10 {
    width: -webkit-calc(83.33333% - 30px);
    width: calc(83.33333% - 30px);
  }

  .content .col-sm-11 {
    width: -webkit-calc(91.66667% - 30px);
    width: calc(91.66667% - 30px);
  }

  .content .col-sm-12 {
    width: -webkit-calc(100% - 30px);
    width: calc(100% - 30px);
  }

  .container {
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media only screen and (max-width: 700px) {
  footer .nav-bar-footer .menu {
    -webkit-justify-content: space-around;
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }

  footer .nav-bar-footer .menu li {
    margin-left: 10px;
    margin-right: 10px;
    margin-bottom: 10px;
  }
}

@media only screen and (max-width: 650px) {
  .about .row {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .about .row .col-3 {
    width: -webkit-calc(100% - 30px);
    width: calc(100% - 30px);
    max-width: 300px;
    margin-bottom: 25px;
    padding-right: 0;
  }

  .about .row .col-8 {
    width: -webkit-calc(100% - 30px);
    width: calc(100% - 30px);
    text-align: center;
    padding-left: 0;
  }
}

@media only screen and (max-width: 600px) {
  .title {
    margin-bottom: 25px;
    font-size: 25px;
  }

  header.header .logo a img {
    width: 82px;
    height: 79px;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: left;
    object-position: left;
  }

  .discont .container .text .title-discont {
    font-size: 35px;
  }

  .social .slick-active.slick-center .item {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }

  .contact-footer {
    margin-top: 0;
    padding-top: 35px;
    padding-left: 10px;
    padding-right: 10px;
  }

  .contact-footer .address {
    font-size: 16px;
  }

  .contact-footer .text {
    margin-bottom: 20px;
  }

  .contact-footer .form_defaut {
    margin-top: 30px;
  }

  .form_defaut .btn {
    padding: 10px 15px;
    font-size: 16px;
  }

  footer .container .right,
  footer .container .left {
    width: -webkit-calc(50% - 30px);
    width: calc(50% - 30px);
  }
}

@media only screen and (max-width: 490px) {
  .services .row .item {
    margin-left: 0;
    margin-right: 0;
  }
}

@media screen and (max-width: 480px) {
  .content .col-xs-1 {
    width: -webkit-calc(8.33333% - 30px);
    width: calc(8.33333% - 30px);
  }

  .content .col-xs-2 {
    width: -webkit-calc(16.66667% - 30px);
    width: calc(16.66667% - 30px);
  }

  .content .col-xs-3 {
    width: -webkit-calc(25% - 30px);
    width: calc(25% - 30px);
  }

  .content .col-xs-4 {
    width: -webkit-calc(33.33333% - 30px);
    width: calc(33.33333% - 30px);
  }

  .content .col-xs-5 {
    width: -webkit-calc(41.66667% - 30px);
    width: calc(41.66667% - 30px);
  }

  .content .col-xs-6 {
    width: -webkit-calc(50% - 30px);
    width: calc(50% - 30px);
  }

  .content .col-xs-7 {
    width: -webkit-calc(58.33333% - 30px);
    width: calc(58.33333% - 30px);
  }

  .content .col-xs-8 {
    width: -webkit-calc(66.66667% - 30px);
    width: calc(66.66667% - 30px);
  }

  .content .col-xs-9 {
    width: -webkit-calc(75% - 30px);
    width: calc(75% - 30px);
  }

  .content .col-xs-10 {
    width: -webkit-calc(83.33333% - 30px);
    width: calc(83.33333% - 30px);
  }

  .content .col-xs-11 {
    width: -webkit-calc(91.66667% - 30px);
    width: calc(91.66667% - 30px);
  }

  .content .col-xs-12 {
    width: -webkit-calc(100% - 30px);
    width: calc(100% - 30px);
  }
}

@media only screen and (max-width: 450px) {
  .advantages .item-adv {
    width: -webkit-calc(50% - 30px);
    width: calc(50% - 30px);
  }
}