@charset "UTF-8";
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
  -webkit-user-select: none;
  /* user-select -- это нестандартное свойство */
  -moz-user-select: none;
  /* поэтому нужны префиксы */
  -ms-user-select: none;
}

img {
  max-width: 100%;
  height: auto;
}

a:focus {
  outline: 0;
}

body {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  color: #202020;
  background: #fff;
  position: relative;
}

.loading {
  overflow: hidden;
}

.preload {
  display: none;
}

.loading .preload {
  position: fixed;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: #f5f5f5;
  z-index: 9999;
  color: #fff;
}

a, a > span {
  position: relative;
  color: inherit;
  text-decoration: none;
  line-height: 24px;
}

a:before, a:after, a > span:before, a > span:after {
  content: '';
  position: absolute;
  -webkit-transition: -webkit-transform .5s ease;
  transition: -webkit-transform .5s ease;
  transition: transform .5s ease;
  transition: transform .5s ease, -webkit-transform .5s ease;
}

.header{
height: 100px;
}
.sticky {
  position: fixed !important;
  top: 0;
  left: 0;
  z-index: 99;
  width: 100%;
  margin: 0 auto;
  transition: 0.2s;
   -webkit-animation: headerfixed 0.8s forwards;
    animation: headerfixed 0.8s forwards;
  /*  background: white;*/
}

@-webkit-keyframes headerfixed {
  from {
    -webkit-transform: translateY(-110%);
    transform: translateY(-110%); }
    to {
      -webkit-transform: translateY(0%);
      transform: translateY(0%); } }
      @keyframes headerfixed {
        from {
          -webkit-transform: translateY(-110%);
          transform: translateY(-110%); }
          to {
            -webkit-transform: translateY(0%);
            transform: translateY(0%); } }



.mobile-menu {
  display: none;
}

.breadcrumbs {
  color: #fff;
  padding-top: 20px;
}

/*---HEADER---*/
.top-menu {
  background: #202020;
  height: 30px;
}

.top-menu__wrap {
  height: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.top-menu__wrap-left {
  height: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.top-menu__wrap-right {
  height: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.top-menu__phone {
  height: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0 20px;
  margin-right: 20px;
}

.top-menu__phone-link {
  color: #fff;
  padding-left: 20px;
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.top-menu__phone-link:before {
  content: '';
  position: absolute;
  width: 15px;
  height: 15px;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url("../img/telephone-header-icon.svg") 50% 50% no-repeat;
  background-size: 100%;
}
.top-menu__phone-link:hover {
  color: #ffc216;
  text-decoration: none;
}

.top-menu__mail {
  height: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0 20px;
  margin-right: 20px;
}

.top-menu__mail-link {
  color: #fff;
  padding-left: 20px;
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.top-menu__mail-link:before {
  content: '';
  position: absolute;
  width: 15px;
  height: 15px;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url("../img/mail-header-icon.svg") 50% 50% no-repeat;
  background-size: 100%;
}
.top-menu__mail-link:hover {
  color: #ffc216;
  text-decoration: none;
}

.top-menu__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-right: 40px;
}

.top-menu__nav-item {
  list-style: none;
  margin: 0 10px;
}

.top-menu__nav-link {
  padding: 0 5px;
  color: #fff;
  text-transform: uppercase;
}
.top-menu__nav-link:hover {
  color: #ffc216;
  text-decoration: none;
}

select {
  background: #202020;
  color: #fff;
  border: 0;
  outline: none;
}

.middle-menu {
  background: #fff;
  height: 120px;
}

.middle-menu__wrap {
  height: 120px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.middle-menu__logo {
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.main-menu {
  background: #fff;
  -webkit-box-shadow: 2px 2px 2px 2px #eee;
          box-shadow: 2px 2px 2px 2px #eee;
  height: 70px;
}

.main-menu-wrap {
  height: 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.logo {
  width: 169px;
  height: 57px;
  display: block;
}

.logo img {
  width: 169px;
  height: 57px;
}

.menu-list {
  height: 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.menu-item {
  list-style: none;
  margin: 0 15px;
}

.menu-link {
  color: #202020;
  padding: 5px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  font-size: 16px;
  font-weight: 700;
}
.menu-link:hover {
  color: #202020;
  text-decoration: none;
}
.menu-link:before {
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: #202020;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
}
.menu-link:hover:before {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}

/*---HEADER---*/
/*---BANNER---*/
.white-color {
  color: #fff !important;
}

.banner {
  padding: 100px 0 50px 0;
}

.banner-slider-item {
  outline: none !important;
}

.banner-slider-item img {
  display: block;
  margin: 0 auto;
}

.category-block {
  padding: 50px 0;
}

.category-slider {
  z-index: 11;
}

.category-slider-item {
  width: 100%;
  height: 320px !important;
  position: relative;
  overflow: hidden;
}

.category-slider-cat {
  position: absolute;
  content: "";
  top: 35px;
  right: 35px;
  width: 350px;
  height: 55px;
  font-size: 24px;
  line-height: 55px;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  text-align: center;
  background-color: #ffc216;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.category-slider-cat:hover {
  text-decoration: none;
  color: #202020;
}

.category-slider-img {
  overflow: hidden;
}

.category-slider-item img {
  display: block;
  margin: 0 auto;
  width: 95%;
  height: 320px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  object-fit: cover;
}
.category-slider-item img:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.main-advanteges {
  position: relative;
  background-color: #f5f5f5;
}
.main-advanteges:before {
  position: absolute;
  content: '';
  left: 0;
  right: 0;
  background: #6f9d40;
  height: 450px;
  width: 100%;
  top: -150px;
  z-index: 0;
}

.main-advanteges-item {
  padding: 15px 20px;
  background: #fff;
  margin-bottom: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.main-advanteges-item:hover {
  -webkit-box-shadow: 6px 5px 10px 2px #6f9d40;
          box-shadow: 6px 5px 10px 2px #6f9d40;
}

.main-advanteges-list {
  padding-top: 50px;
}

.main-advanteges-img {
  font-size: 64px;
  color: #f5f5f5;
  font-weight: 700;
  width: 25%;
  text-align: center;
}

.main-advanteges-text {
  font-size: 16px;
  width: 70%;
}

/*---BANNER---*/
/*---SERVICES BLOCK---*/
.services-block {
  padding: 100px 0;
  background-color: #f5f5f5;
}

.block-title {
  font-size: 32px;
  text-align: center;
  font-weight: 700;
  margin-bottom: 50px;
}

.services-item {
  margin-bottom: 50px;
}

.services-item-img, .services-item-descr {
  width: 100%;
  height: 240px;
}

.services-item-descr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.services-item-img {
  overflow: hidden;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.services-item-img img {
  width: 100%;
  height: 240px;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.services-item-img img:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.services-item-item {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
  display: block;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.services-item-item:hover {
  color: #6f9d40;
  text-decoration: none;
}

.services-item-text {
  color: #717171;
  text-align: justify;
}

.services-item-text p {
  margin-bottom: 10px;
}

.more-link {
  color: #6f9d40;
  text-transform: uppercase;
  font-weight: 700;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.more-link:hover {
  color: #6f9d40;
  text-decoration: none;
}
.more-link:before {
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: #6f9d40;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
}
.more-link:hover:before {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}

/*---SERVICES BLOCK---*/
/*---PROJECTS BLOCK---*/
.projects-block {
  padding: 75px 0;
  background: #fff;
}

.left-title {
  text-align: left;
}

.center-link {
  text-align: center;
  margin: 50px auto 0;
  display: block;
  width: 120px;
}

.projects-block-text {
  color: #717171;
  margin-bottom: 50px;
}

.projects-slider .slick-track{
display: flex;
} 
.projects-item {
  display: block !important;
  height: auto !important;
  padding: 20px;
  margin: 0 10px;
  margin-bottom: 10px;
  -webkit-box-shadow: 2px 5px 8px 2px #eee;
          box-shadow: 2px 5px 8px 2px #eee;
  outline: none !important;
}

.projects-item-title {
  font-size: 24px;
  margin-bottom: 20px;
  font-weight: 700;
  display: block;
}
.projects-item-title:hover {
  text-decoration: none;
  color: #6f9d40;
}

.projects-item-text {
  color: #717171;
  margin-bottom: 10px;
  text-align: justify;
}

.bold-text {
  font-weight: 700;
  color: #000;
}

.projects-link {
  display: block;
  width: 200px;
  height: 35px;
  line-height: 35px;
  font-weight: 700;
  background: #6f9d40;
  border: 1px solid transparent;
  color: #fff;
  text-align: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.projects-link:hover {
  text-decoration: none;
  border: 1px solid #6f9d40;
  color: #6f9d40;
  background: #fff;
}

.projects-item-gallery {
  margin-top: 20px;
}

/*.projects-slider .slick-list{
  display: flex;
  align-items: center;
} */
.projects-item-gallery-img {
  border: 3px solid #fff;
}
.projects-item-gallery-img img{
  width: 100%;
  height: 120px;
  object-fit: cover;

}

.banner-slider .slick-track, .clients-slider .slick-track {
  display: flex ;
  align-items: center;
}
.banner-slider-item, .clients-item {
  padding: 0 10px;
}


.projects-item-gallery .slick-dots {
  left: 0;
  bottom: -40px;
  width: 200px;
 /* text-align: left !important;*/
}

.slick-dots li button {
  width: 5px !important;
  height: 5px !important;
  border: 2px solid #6f9d40 !important;
}

.slick-dots li button:before {
  line-height: 14px !important;
  width: 14px !important;
  height: 14px !important;
  content: "" !important;
}

.slick-dots li.slick-active button:before {
  color: #6f9d40 !important;
  background: #6f9d40 !important;
  opacity: 1 !important;
}

.projects-item-gallery .slick-next {
  right: -20px;
  top: auto;
  bottom: -50px;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
  width: 50px;
  height: 50px;
  background-color: #e0e0e0;
}

.projects-item-gallery .slick-prev {
  left: auto;
  right: 31px;
  top: auto;
  bottom: -50px;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
  width: 50px;
  height: 50px;
  background-color: #e0e0e0;
}

.slick-prev:before, .slick-next:before {
  color: red !important;
}

.slick-dots {
  bottom: -40px !important;
  width: 150px !important;
  margin: 0 auto !important;
  left: 50% !important;
  -webkit-transform: translateX(-50%) !important;
          transform: translateX(-50%) !important;
}

.arrow-btn {
  width: 15px;
  height: 15px;
}

.arrow-next {
  position: absolute;
  right: -20px;
  top: auto;
  bottom: -50px;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
  width: 50px;
  height: 50px;
  background: #e0e0e0;
  border: 0;
  outline: none !important;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.arrow-next:hover {
  background-color: #f5f5f5;
}

.arrow-prev {
  position: absolute;
  left: auto;
  right: 31px;
  top: auto;
  bottom: -50px;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
  width: 50px;
  height: 50px;
  background: #e0e0e0;
  border: 0;
  outline: none !important;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.arrow-prev:hover {
  background-color: #f5f5f5;
}

.arrow-next img, .arrow-prev img {
  width: 20px;
  display: block;
  margin: 0 auto;
  cursor: pointer;
}

/*---PROJECTS BLOCK---*/
/*---FEEDBACK BLOCK---*/
.feedback-block {
  padding: 75px 0;
  background: #6f9d40;
}

.feedback-text {
  width: 80%;
  font-size: 30px;
  color: #fff;
  font-weight: 700;
  margin-top: 15px;
}

.feedback-input {
  width: 100%;
  height: 40px;
  border: 1px solid #fff;
  background: transparent;
  padding: 0 10px;
  margin-top: 15px;
  color: #fff;
}

.feedback-input::-webkit-input-placeholder {
  color: #fff;
}

.feedback-input::-moz-placeholder {
  color: #fff;
}

/* Firefox 19+ */
.feedback-input:-moz-placeholder {
  color: #fff;
}

/* Firefox 18- */
.feedback-input:-ms-input-placeholder {
  color: #fff;
}

.feedback-btn {
  width: 100%;
  height: 40px;
  border: 1px solid #fff;
  background: #fff;
  margin-top: 15px;
  color: #6f9d40;
  text-transform: uppercase;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.feedback-btn:hover {
  background-color: #6f9d40;
  border: 1px solid #fff;
  color: #fff;
  cursor: pointer;
}

/*---FEEDBACK BLOCK---*/
/*---FOOTER---*/
.footer {
  background: #f5f5f5;
  padding: 30px 0;
}

.top-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-bottom: 30px;
  border-bottom: 2px solid #d5d5d5;
}

.footer-logo {
  width: 282px;
  height: 94px;
  display: block;
}

.footer-logo img {
  width: 282px;
  height: 94px;
}

.follow-form-title {
  color: #545352;
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 16px;
}

.follow-input {
  width: 280px;
  height: 40px;
  padding: 0 10px;
}

.follow-btn {
  width: 150px;
  height: 40px;
  border: 0;
  background-color: #717171;
  color: #fff;
  text-transform: uppercase;
  margin-left: -3px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.follow-btn:hover {
  background-color: #6f9d40;
  cursor: pointer;
}

.bottom-footer {
  padding-top: 30px;
}

.bottom-footer-list-block {
  margin-bottom: 20px;
}

.bottom-footer-list-title {
  color: #545352;
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 16px;
  display: block;
}
.bottom-footer-list-title:hover {
  color: #545352;
}

.bottom-footer-list {
  padding-left: 0px;
  list-style: none;
}

.bottom-footer-item {
  margin-bottom: 5px;
}

.bottom-footer-link {
  color: #545352;
}
.bottom-footer-link:hover {
  color: #545352;
}

.copyright {
  text-align: center;
  color: #545352;
  font-weight: 700;
  font-size: 12px;
  margin-top: 10px;
}

.dev {
  text-align: center;
  color: #545352;
  margin-top: 5px;
  font-size: 12px;
}

.dev a {
  color: #202020;
}
.dev a:hover {
  color: #202020;
}

/*---FOOTER---*/
/*---SERVICES PAGE---*/
.page-banner {
  padding: 100px 0 50px 0;
}

.page-banner-title {
  font-size: 16px;
  text-transform: uppercase;
  color: #6f9d40;
  margin-bottom: 15px;
}

.page-banner-subtitle {
  font-size: 38px;
  font-weight: 700;
}

.page-services-item-descr {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  height: auto;
}

.page-project-item {
  margin-bottom: 30px;
  height: 100% !important;
}

.expert-block {
  padding: 75px 0 50px 0;
  background-color: #f5f5f5;
}

.expert-item {
  height: 100%;
  padding: 10px;
  background: #fff;
  -webkit-box-shadow: 5px 8px 13px 5px rgba(130, 130, 130, 0.11);
          box-shadow: 5px 8px 13px 5px rgba(130, 130, 130, 0.11);
  margin-bottom: 30px;
}

.expert-img {
  width: 100%;
  height: 200px;
  display: block;
  overflow: hidden;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  margin-bottom: 10px;
}

.expert-img img {
  width: 100%;
  height: 200px;
  display: block;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.expert-img img:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.expert-title {
  font-size: 20px;
  font-weight: 700;
  display: block;
  margin-bottom: 15px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.expert-title:hover {
  text-decoration: none;
  color: #6f9d40;
}

.expert-text {
  margin-bottom: 15px;
}

.our-office-block {
  padding: 75px 0 50px 0;
}

.map-office {
  height: 500px;
}

.clients-block {
  padding: 75px 0;
}

.clients-item {
  outline: none;
}

.clients-item img {
  display: block;
  margin: 0 auto;
}

.clients-slider .slick-dots {
  bottom: -60px !important;
}

/*---SERVICES PAGE---*/
/*---NEWS PAGE---*/
.category-sort {
  padding: 15px 0;
  -webkit-box-shadow: 0 2px 7px 0 rgba(180, 180, 180, 0.39);
          box-shadow: 0 2px 7px 0 rgba(180, 180, 180, 0.39);
  background-color: #ffffff;
  margin-bottom: 25px;
}

.category-sort select {
  background: #fff;
  color: #202020;
  font-size: 18px;
  text-transform: uppercase;
}

.pagination-block {
  background-color: #f5f5f5;
  padding: 15px 0;
  margin-top: 15px;
}

.pagination-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 36px;
}

.pagination-item {
  width: 36px;
  height: 36px;
  text-align: center;
  line-height: 36px;
  border: solid 0.5px #117938;
  background-color: #f9f9f9;
  cursor: pointer;
  font-weight: 700;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.pagination-item:hover {
  background-color: #717171;
  color: #fff;
}

/*---NEWS PAGE---*/
/*---ONE NEWS PAGE---*/
.one-news-block {
  padding: 75px 20px 20px 25px;
  margin-bottom: 10px;
  -webkit-box-shadow: 2px 5px 8px 2px #eee;
          box-shadow: 2px 5px 8px 2px #eee;
  background-color: #ffffff;
  position: relative;
}

.one-news-title {
  color: #6f9d40;
  text-transform: uppercase;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
}

.back-link {
  position: absolute;
  display: block;
  top: 15px;
  left: 45px;
  color: #202020;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.back-link:hover {
  color: #6f9d40;
  text-decoration: none;
}
.back-link:before {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: -20px;
  width: 15px;
  height: 15px;
  background: url(../img/arrow-left.svg) 50% 50% no-repeat;
  background-size: 100%;
}

.one-news-text p {
  text-align: justify;
  margin-bottom: 10px;
  font-size: 16px;
}

.one-news-text img {
  display: block;
  margin: 10px auto;
}

/*---ONE NEWS PAGE---*/
/*---VACANCIES PAGE---*/
.vacancies-list {
  margin-top: 40px;
}

.vacancies-item {
  padding: 20px;
  margin-bottom: 30px;
  -webkit-box-shadow: 2px 5px 8px 2px #eee;
          box-shadow: 2px 5px 8px 2px #eee;
  background-color: #ffffff;
}

.vacancies-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
}

.vacancies-text p {
  text-align: justify;
  margin-bottom: 10px;
}

.vacancies-resume {
  color: #6f9d40;
  font-weight: 700;
}

.vacancies-resume a {
  color: #6f9d40;
}
.vacancies-resume a:hover {
  color: #6f9d40;
}

.expert-list-tite {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}

/*---VACANCIES PAGE---*/
/*---PIG PAGE---*/
.pig-item {
  margin-bottom: 30px;
}

.pig-item-img {
  width: 100%;
  height: 270px;
  display: block;
  overflow: hidden;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.pig-item-img img {
  width: 100%;
  height: 270px;
  display: block;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  object-fit: cover;
}
.pig-item-img img:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.pig-item-title-block {
  width: 100%;
  height: 90px;
  background: #6f9d40;
  padding: 20px;
}

.pig-item-title {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.pig-item-title:hover {
  color: #000;
  text-decoration: none;
}

/*---PIG PAGE---*/
/*---CONTACTS PAGE---*/
.offices-block {
  padding: 50px 0 0 0;
}

.offices-item {
  margin-bottom: 60px;
}

.offices-item-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 15px;
}

.offices-item-address, .offices-item-phone, .offices-item-mail {
  margin-bottom: 30px;
  position: relative;
  padding-left: 50px;
  font-weight: 700;
}

.offices-item-address:before {
  content: "";
  position: absolute;
  width: 35px;
  height: 35px;
  background: url("../img/location.svg") 50% 50% no-repeat;
  background-size: 100%;
  top: 0;
  left: 0;
}

.offices-item-phone:before {
  content: "";
  position: absolute;
  width: 35px;
  height: 35px;
  background: url("../img/phone.svg") 50% 50% no-repeat;
  background-size: 100%;
  top: 0;
  left: 0;
}

.offices-item-mail:before {
  content: "";
  position: absolute;
  width: 35px;
  height: 35px;
  background: url("../img/mail.svg") 50% 50% no-repeat;
  background-size: 100%;
  top: 0;
  left: 0;
}

.offices-item-phone a {
  display: block;
  margin-bottom: 5px;
}
.offices-item-phone a:hover {
  color: #6f9d40;
  text-decoration: none;
}

.offices-item-mail a {
  display: block;
  font-size: 16px;
  margin-bottom: 5px;
}
.offices-item-mail a:hover {
  color: #6f9d40;
  text-decoration: none;
}

.contacts-map-block {
  width: 100%;
  height: 500px;
}

.contacts-map-block iframe {
  width: 100%;
  height: 500px;
}

/*---CONTACTS PAGE---*/
/*---ABOUT PAGE---*/
.about-block {
  background: #f5f5f5;
  padding: 50px 0;
}

.about-map-block {
  padding: 50px 0;
  height: auto;
}

.about-text p {
  margin-bottom: 10px;
}

.about-slider {
  margin-top: 100px;
}

.about-slider-item {
  display: block;
  width: 100%;
  height: 450px;
}

.about-slider-img {
  display: block;
  width: 100%;
  height: 450px;
}

.about-arrow-prev {
  right: 51px;
}

.about-arrow-next {
  right: 0px;
}

/*---ABOUT PAGE---*/
/*---FAQ PAGE---*/
.pig-articles-block {
  border: 1px solid #6f9d40;
  padding: 20px;
  -webkit-box-shadow: 2px 5px 8px 2px #eee;
          box-shadow: 2px 5px 8px 2px #eee;
}

.pig-articles-block-title {
  color: #6f9d40;
  border-bottom: 1px solid #6f9d40;
  margin-bottom: 10px;
  padding-bottom: 10px;
  font-size: 18px;
}

.pig-articles-block-item {
  margin-bottom: 7px;
}

.pig-articles-block-link {
  font-size: 16px;
}
.pig-articles-block-link:hover {
  text-decoration: none;
  color: #6f9d40;
}

.pig-articles-block-link.active-link {
  font-weight: 700;
}

.pig-articles-block-list {
  padding-left: 20px;
}

.faq-block {
  padding: 0 0 50px 0;
  background: #f5f5f5;
}

.green-btn {
  display: block;
  width: 220px;
  height: 40px;
  line-height: 40px;
  font-weight: 700;
  background: #6f9d40;
  text-transform: uppercase;
  border: 1px solid transparent;
  color: #fff;
  text-align: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  margin-top: 20px;
}
.green-btn:hover {
  text-decoration: none;
  border: 1px solid #6f9d40;
  color: #6f9d40;
  background: #fff;
}

.adventiges-block {
  padding: 50px 0 100px 0;
  background: #f5f5f5;
}

.advent-item {
  -webkit-box-shadow: 2px 5px 8px 2px #eee;
          box-shadow: 2px 5px 8px 2px #eee;
  padding: 15px 20px;
  background: #fff;
}

.advent-number {
  font-size: 52px;
  color: #6f9d40;
  font-weight: 700;
  margin-bottom: 15px;
}

.advent-text {
  font-size: 16px;
}

.facts-block {
  padding: 50px 0;
}

.facts-item {
  -webkit-box-shadow: 2px 5px 8px 2px #eee;
          box-shadow: 2px 5px 8px 2px #eee;
  padding: 15px 20px;
  background: #fff;
  margin-bottom: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.facts-number {
  font-size: 64px;
  color: #f5f5f5;
  font-weight: 700;
  width: 30%;
  text-align: center;
  position: relative;
}
.facts-number:after {
  content: "";
  position: absolute;
  background: url("../img/question-mark.svg") 50% 50% no-repeat;
  background-size: 100%;
  width: 35px;
  height: 45px;
  color: #6f9d40;
  bottom: 20px;
  left: 10px;
}

.facts-text {
  font-size: 16px;
  width: 65%;
}

.faq-item-wrap {
  width: 90%;
  margin: 0 auto;
  background: #f5f5f5;
}

.faq-item-title {
  color: #202020;
  font-weight: 700;
  padding: .375rem 0;
  width: 100%;
  text-align: left;
  position: relative;
}
.faq-item-title:before {
  content: '-';
  position: absolute;
  font-size: 28px;
  color: #202020;
  right: -0.375rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.faq-item-title:hover {
  color: #6f9d40;
}
.faq-item-title:focus, .faq-item-title:active {
  color: #202020;
  text-decoration: none;
}

.faq-item-title.collapsed {
  position: relative;
  color: #6f9d40;
}
.faq-item-title.collapsed:after {
  content: '+';
  position: absolute;
  font-size: 28px;
  color: #6f9d40;
  right: -0.375rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.faq-item-title.collapsed:before {
  display: none;
}

.faq-item-block .card-body p {
  text-align: justify;
  margin-bottom: 10px;
}

.card-header {
  border: 0;
}

.card-header:first-child {
  border-radius: 0;
}

.card {
  border: 0;
  border-radius: 0;
}

.card-body {
  background: #f5f5f5;
}

.to_top{
  display: none;
    position: fixed;
    right: 15px;
    bottom: 20px;
  width: 60px;
  height: 60px;
 cursor: pointer;
  -webkit-animation-name: example; /* Safari 4.0 - 8.0 */
  -webkit-animation-duration: 6s; /* Safari 4.0 - 8.0 */
  -webkit-animation-iteration-count: infinite;
  animation-name: example;
  animation-duration: 6s;
  animation-iteration-count: infinite;
  z-index: 10;
  /*animation-timing-function: cubic-bezier(0.1, 0.7, 1.0, 0.1);*/
}

div.wpcf7 .ajax-loader{
  position: absolute;
}

/* Safari 4.0 - 8.0 */
@-webkit-keyframes example {
/*  0%   {  bottom: 0px;  bottom: 30px; }*/
  25%  {  bottom: 30px;  bottom: 10px;}
  50%  {  bottom: 10px;  bottom: 30px;}
  75%  {  bottom: 30px; bottom: 10px;}
  100% {  bottom: 15px;  bottom: 20px;}
}

/* Standard syntax */
@keyframes example {
 /* 0%   {  bottom: 0px;  bottom: 30px; }*/
  25%  {  bottom: 30px;  bottom: 10px;}
  50%  {  bottom: 10px;  bottom: 30px;}
  75%  {  bottom: 30px; bottom: 10px;}
  100% {  bottom: 15px;  bottom: 20px;}
}

/*---FAQ PAGE---*/
@media only screen and (max-width: 1024px) {
    .facts-item{
    flex-direction: column;
  }
  .facts-text {
    width: 100%;
    text-align: center;
  }

  
   .top-footer {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .top-footer form, .follow-form-title{
    text-align: center;
    margin: 15px 0;
  }


  .desktop-menu {
    display: none;
  }

  .mobile-menu {
    display: block;
    height: 80px;
    width: 100%;
    position: relative;
    top: 0;
    left: 0;
    z-index: 111;
    background: #f5f5f5;
  }

  .mobile-menu-header {
    height: 80px;
    border-bottom: 1px solid #6f9d40;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    background: #f5f5f5;
  }

  .mobile-menu-body {
    display: none;
    background: #f5f5f5;
    z-index: 990;
    width: 100%;
    padding: 25px;
    border-bottom: 1px solid #6f9d40;
  }

  .mobile-logo {
    display: block;
    margin-left: 15px;
  }

  .mobile-logo img {
    display: block;
    height: 60px !important;
  }

  .mobile-btn {
    display: block;
    margin-right: 15px;
  }

  .mobile-btn p {
    width: 40px;
    height: 3px;
    background: #6f9d40;
  }

  .mobile-menu-list {
    margin-bottom: 25px;
  }

  .mobile-menu-list li {
    margin: 0 0 15px 0;
    list-style: none;
  }

  .mobile-menu-list a {
    color: #2c2f34;
    font-weight: bold;
    text-transform: uppercase;
    padding: 5px;
  }

  .line-1 {
    width: 40px;
    height: 3px;
    background: #6f9d40;
    display: block;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }

  .line-2 {
    width: 40px;
    height: 3px;
    background: #6f9d40;
    display: block;
    margin: 8px 0;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }

  .line-3 {
    width: 40px;
    height: 3px;
    background: #6f9d40;
    display: block;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }

  .mobile-btn.active {
    margin-bottom: 10px;
  }

  .mobile-btn.active p {
    margin-bottom: 0px;
  }

  .mobile-btn.active .line-1 {
    -webkit-transform: rotate(45deg) translate(7px, 5px);
            transform: rotate(45deg) translate(7px, 5px);
  }

  .mobile-btn.active .line-2 {
    display: none;
  }

  .mobile-btn.active .line-3 {
    -webkit-transform: rotate(-45deg) translate(-3px, 5px);
            transform: rotate(-45deg) translate(-3px, 5px);
  }

  .mobile-menu-contact__phone-link, .mobile-menu-contact__mail-link {
    color: #2c2f34;
    font-weight: 700;
    margin-bottom: 10px;
  }
  .mobile-menu-contact__phone-link:hover, .mobile-menu-contact__mail-link:hover {
    color: #ffc216;
    text-decoration: none;
  }

  .banner {
    padding: 25px 0;
  }

  .banner-slider {
    margin-top: 50px;
  }

  .ord-1 {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }

  .ord-2 {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }

  .services-item-descr {
    height: auto;
    margin-bottom: 25px;
  }

  .services-item-img, .services-item-img img {
    height: 350px;
  }
}
@media only screen and (max-width: 768px) {


  .expert-item{
    height: auto;
  }
  .follow-form {
    text-align: right;
  }

  .services-block {
    padding: 50px 0;
  }

  .about-slider {
    margin-top: 50px;
  }

  .contacts-map-block iframe {
    height: 400px;
  }

  .contacts-map-block {
    height:auto;
  }
}
@media only screen and (max-width: 480px) {

  .follow-input {
    width: 100%;
  }

  .follow-btn{
    margin-top: 23px;
    margin-left: 0;
  }
  .slick-dots {
    width: 100% !important;
  }

  .to_top{
    width: 45px;
    height: 40px;
  }

  .page-banner-subtitle {
    font-size: 26px;
  }

  .category-slider-cat {
    width: 95%;
    right: 2.5%;
  }

  .services-item-img, .services-item-img img {
    height: 200px;
    margin-bottom: 15px;
  }

 

  .follow-form {
    text-align: center;
  }

  .about-slider-item, .about-slider-item img {
    height: 300px !important;
  }

  .contacts-map-block iframe {
    height: 250px;
  }

/*  .contacts-map-block {
    height: 250px;
  }*/

  .pig-articles-block {
    margin-top: 25px;
  }

  .advent-item {
    text-align: center;
    margin-bottom: 20px;
  }

  .block-title {
    font-size: 24px;
  }

  .faq-item-wrap {
    width: 100%;
  }

  .one-news-title {
    font-size: 18px;
  }

  .our-office-block {
    padding: 50px 0 25px 0;
  }

  .map-office {
    height: 300px;
  }

  .clients-block {
    padding: 25px 0 50px 0;
  }
}
.pum-theme-1244 .pum-container, .pum-theme-lightbox .pum-container {   
    background-color: #6f9d40 !important;
        border: 8px solid rgba(2,2,2,.23) !important;
}


.clients-item img{
  max-height: 67px;
}

.post-description {
    margin-top: 10px !important;
}


/*# sourceMappingURL=style.css.map */