@import url('../themes/greentechno/assets/fonts/stylesheet.css');
html {
  font-size: 18px;
  color: #2a2a2a;
  box-sizing: border-box;
  padding: 0;
  width: 100vw;
}
@media (max-width: 567px) {
  html {
    font-size: 14px;
    line-height: 16px;
  }
}
*,
*:after,
*:before {
  box-sizing: inherit;
}
body {
  line-height: 1.5;
  margin: 0;
  font-family: 'Geogrotesque Cyr', sans-serif;
  font-weight: 300;
  display: flex;
  overflow-x: hidden;
  flex-direction: column;
  color: #2a2a2a;
  background: #fafafa;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Geogrotesque Cyr', sans-serif;
  font-weight: 500;
}
a {
  text-decoration: none;
}
span {
  line-height: 1.5;
}
@media (max-width: 567px) {
  span {
    margin-bottom: 20px;
    line-height: 2;
  }
}
.btn {
  padding: 10px 25px;
  background: #66cc00;
  color: #fafafa;
  border-radius: 5px;
  display: inline-inline-block;
  margin: 20px 0;
  position: relative;
}
@media (max-width: 567px) {
  .btn {
    font-size: 1em;
    padding: 10px 15px;
  }
}
.btn::after {
  content: "";
  position: absolute;
  z-index: -1;
  bottom: -10px;
  left: 5%;
  height: 110%;
  width: 90%;
  opacity: 0.4;
  border-radius: 50px;
  /* Declaring our shadow color inherit from the parent (button) */
  background: inherit;
  /* Blurring the element for shadow effect */
  -webkit-filter: blur(6px);
  -moz-filter: blur(6px);
  -o-filter: blur(6px);
  -ms-filter: blur(6px);
  filter: blur(6px);
  /* Transition for the magic */
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.btn:hover::after {
  /* Changing blur effect */
  -webkit-filter: blur(4px);
  -moz-filter: blur(4px);
  -o-filter: blur(4px);
  -ms-filter: blur(4px);
  filter: blur(4px);
  /* And change the style properties */
  width: 100%;
  bottom: -7px;
  left: 0;
}
.btn:hover:active::after {
  -webkit-filter: blur(10px);
  -moz-filter: blur(10px);
  -o-filter: blur(10px);
  -ms-filter: blur(10px);
  filter: blur(10px);
}
.btn-white {
  padding: 10px 20px;
  background: none;
  color: #fafafa;
  border: 2px solid #fafafa;
  border-radius: 5px;
  display: inline-inline-block;
  margin: 50px 0;
  position: relative;
  transition: all 0.3s ease;
}
@media (max-width: 567px) {
  .btn-white {
    padding: 5px 15px;
    font-size: 12px;
  }
}
.btn-white:hover {
  background: #fafafa;
  color: #2a2a2a;
}
@media (max-width: 567px) {
  img {
    width: 100%;
  }
}
@media (max-width: 320px) {
  img {
    width: 100%;
  }
}
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  transition: all 0.5s ease;
  z-index: 100;
}
header.out {
  transform: translateY(-100%);
}
header,
body.page-home header {
  background: #383e42;
}
.logo {
  position: relative;
  padding: 10px 15px;
}
.logo a {
  color: #e9eff4;
  display: flex;
}
.logo .img_holder {
  float: left;
}
.logo .img_holder img {
  position: relative;
  width: 70px;
}
@media (max-width: 567px) {
  .logo .img_holder img {
    width: 50px;
    height: auto;
  }
}
.logo .text_holder {
  padding: 5px 10px;
  position: relative;
}
.logo .text_holder h1 {
  font-size: 2em;
  white-space: nowrap;
  text-transform: uppercase;
  padding: 0;
  margin: 0;
  line-height: 1;
}
@media (max-width: 567px) {
  .logo .text_holder h1 {
    font-size: 2em;
    margin: -15px 0;
  }
}
.logo .text_holder h1 span {
  color: #66cc00;
}
.logo .text_holder small {
  font-size: 8px !important;
  word-break: keep-all;
  position: absolute;
  text-align: left;
  bottom: 15px;
  left: 10px;
  width: 100%;
  line-height: 1;
  margin: 0;
  padding: 0;
}
@media (max-width: 567px) {
  .logo .text_holder small {
    bottom: 15px;
  }
}
.menu-icon {
  height: 30px;
  width: 30px;
  position: fixed;
  z-index: 102;
  right: 20px;
  top: 30px;
  cursor: pointer;
  display: none;
}
@media (max-width: 1024px) {
  .menu-icon {
    display: block;
  }
}
.menu-icon__line {
  height: 2px;
  width: 30px;
  display: block;
  background-color: #fafafa;
  margin-bottom: 4px;
  transition: transform 0.2s ease, background-color 0.5s ease;
}
.menu-icon__line-left {
  width: 15px;
}
.menu-icon__line-right {
  width: 15px;
  float: right;
}
body.nav-active .menu-icon__line {
  background-color: #000;
  transform: translateX(0px) rotate(-45deg);
}
body.nav-active .menu-icon__line-left {
  transform: translateX(1px) rotate(45deg);
}
body.nav-active .menu-icon__line-right {
  transform: translateX(-2px) rotate(45deg);
}
body.nav-active .nav,
body.nav-active .nav__content {
  visibility: visible;
}
.nav {
  list-style: none;
  width: auto;
  margin: 0;
}
@media (max-width: 1024px) {
  .nav {
    padding: 45px 35px;
  }
}
@media (max-width: 1024px) {
  .tablet-hidden {
    display: none;
  }
}
.nav li {
  display: inline-block;
  font-weight: 500;
  position: relative;
  padding: 5px 0;
  margin: 5px 15px;
  transition: 0.4s;
}
@media (max-width: 1024px) {
  .nav li {
    display: block;
  }
}
@media (max-width: 567px) {
  .nav li {
    padding: 10px 0;
    margin: 0;
    display: block;
  }
}
@media (max-width: 320px) {
  .nav li {
    margin: 10px auto;
  }
}
.nav li a {
  color: #fafafa;
}
@media (max-width: 567px) {
  .nav li a {
    color: #2a2a2a;
  }
}
.nav li a:after {
  background: none repeat scroll 0 0 transparent;
  bottom: 0;
  content: "";
  display: block;
  height: 2px;
  left: 0;
  position: absolute;
  background: #fff;
  transition: width 0.3s ease 0s, left 0.3s ease 0s;
  width: 0;
}
.nav li a:hover:after {
  width: 100%;
  left: 0;
}
.nav li > ul.dropdown-menu {
  display: none;
  position: absolute;
  background: #fafafa;
  z-index: 10;
  top: 100%;
  width: 200px;
  left: 0;
  padding: 0;
  box-shadow: 0 0 10px -3px rgba(0, 0, 0, 0.4);
  transition: 0.5s padding, 0.5s background;
}
.nav li > ul.dropdown-menu li {
  display: block;
  padding: 10px 15px;
}
.nav li:hover ul.dropdown-menu {
  display: inline-block;
}
@media (max-width: 567px) {
  .nav li:hover ul.dropdown-menu {
    display: none;
  }
}
.nav_mobile {
  position: fixed;
  font-weight: 400;
  width: 100vw;
  height: 100vh;
  left: 0;
  top: -100vh;
  display: block;
  visibility: hidden;
  z-index: 100;
  text-align: left;
  background: #fafafa;
  transition: all 0.5s cubic-bezier(0.77, 0, 0.175, 1);
}
@media (max-width: 567px) {
  .nav_mobile {
    font-size: 1.5em;
    color: #2a2a2a;
  }
}
@media (max-width: 320px) {
  .nav_mobile {
    font-size: 1.2em;
  }
}
.nav_mobile li a {
  padding: 20px 0;
  color: #2a2a2a;
}
body.nav-active .nav_mobile {
  top: 0;
  visibility: visible;
}
.langs {
  position: relative;
  padding: 5px 10px;
}
.langs div > img {
  height: 30px;
  display: block;
}
.langs:hover ul {
  display: block;
  top: 40px;
  opacity: 1;
}
.langs ul {
  display: none;
  position: absolute;
  top: 40px;
  padding: 0;
  margin: 0;
  left: 25px;
  width: 55px;
  overflow: hidden;
  transform: translateX(-50%);
  background: #2a2a2a;
  list-style: none;
  border-radius: 5px;
  opacity: 0;
  border: 2px solid #fafafa;
  transition: all 0.5s ease;
}
.langs ul li {
  padding: 10px 15px;
  margin: 0;
  text-align: center;
  text-trasform: uppercase;
  color: #fafafa;
  transition: background 0.3s ease;
}
.langs ul li a {
  color: #fafafa;
}
.langs ul li:hover {
  background: #fafafa;
  color: #2a2a2a;
}
.langs ul li:hover a {
  color: #2a2a2a;
}
ul.langs {
  padding: 0;
  margin: 0;
}
@media (max-width: 1024px) and (orientation: landscape) {
  ul.langs {
    position: absolute;
    bottom: 80px;
    left: 65px;
  }
}
@media (max-width: 567px) {
  ul.langs {
    margin: 0;
    padding: 0;
    left: 10px;
    bottom: 45px;
  }
}
.langs li {
  display: inline-block;
  margin: 10px 15px;
  font-weight: 500;
  position: relative;
  padding: 20px 0;
}
@media (max-width: 1024px) {
  .langs li {
    margin: 20px 30px 0 0;
  }
}
@media (max-width: 576px) {
  .langs li {
    margin: 20px 30px;
  }
}
.langs li a {
  color: #fafafa;
}
@media (max-width: 1024px) {
  .langs li a {
    font-size: 1em;
    color: #2a2a2a;
  }
}
.home_slider {
  overflow-y: hidden;
  position: relative;
  top: -20px;
  margin: 0;
  padding: 0;
}
.home_slider .glide__slides {
  transform: none !important;
  width: 100%;
  display: block;
  margin: 0;
  padding: 0;
}
.home_slider .glide__slide {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  transition: opacity 1.5s;
}
.home_slider .glide__slide img {
  width: 100%;
  transform: scale(1.02);
  transition: all 10s ease;
}
.home_slider .glide__slide:first-child {
  position: relative;
}
.home_slider .glide__slide--active {
  z-index: 1;
  opacity: 1;
}
.home_slider .glide__slide--active img {
  transform: scale(1.1);
}
.home_slider .glide__arrows {
  position: absolute;
  z-index: 50;
  bottom: 50px;
  left: 50px;
}
@media (max-width: 576px) {
  .home_slider .glide__arrows {
    display: none;
  }
}
.home_slider .glide__arrows .glide__arrow {
  display: inline-block;
  width: 50px;
  height: 50px;
  margin-left: 10px;
  padding: 12px 14px;
  background: #66cc00;
}
.home_slider .glide__arrows .glide__arrow img {
  filter: invert(1);
}
.page {
  padding: 0;
  margin: 0;
  width: 100%;
  flex: 1;
}
.error {
  background: url(https://images.unsplash.com/photo-1543005472-1b1d37fa4eae?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=600&q=60), #000000;
  background-clip: text;
  color: transparent;
}
.layout-Object,
body.layout-page {
  margin-top: 100px;
}
.layout-Object p,
body.layout-page p {
  margin: 5px 0;
  padding: 0;
  width: 100%;
  overflow-wrap: break-word;
}
@media (max-width: 567px) {
  .layout-Object,
  body.layout-page {
    margin-top: 80px;
  }
  .layout-Object .page,
  body.layout-page .page {
    padding: 10px 20px;
  }
}
@media (max-width: 320px) {
  .layout-Object,
  body.layout-page {
    margin-top: 60px;
  }
}
body.layout-page .title_page {
  margin: 30px 40px;
}
body.layout-page .border_block {
  border-radius: 5px;
  overflow: hidden;
}
body.layout-page .form_block {
  background: #e9eff4;
  color: #fafafa;
  margin: 10px 0;
  overflow: hidden;
  border-radius: 5px;
  height: 97%;
}
body.layout-page .contact_block {
  background: #e9eff4;
  border-radius: 5px;
  padding: 0;
  margin: 10px 0;
  color: #2a2a2a;
}
body.layout-page .contact_block a {
  color: #2a2a2a;
  text-decoration: underline;
}
body.layout-page .contact_block p {
  padding: 10px 0;
  margin-left: 20px;
}
body.layout-page .contact_block h3,
body.layout-page .form_block h3 {
  background: #66cc00;
  color: #fafafa;
  padding: 15px 20px;
  font-size: 1.5em;
  margin: 0;
  font-weight: 300;
}
.green form {
  padding: 20px;
}
.green form input {
  width: 100%;
  background: rgba(30, 30, 30, 0.6);
  border-radius: 3px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fafafa;
  padding: 10px;
  margin: 10px 0;
  font-size: 1em;
}
.green form textarea {
  width: 100%;
  background: rgba(30, 30, 30, 0.6);
  color: #fafafa;
  padding: 7px;
  margin: 5px 0;
  font-size: 0.8em;
  border-radius: 5px;
  border: 1px solid rgba(255, 255, 255, 0.3);
}
.green form button {
  width: 100%;
  background: rgba(30, 30, 30, 0.6);
  padding: 10px;
  margin: 5px 0;
  font-size: 1em;
  border: none;
  transition: all 0.3s ease;
}
.green form button:hover {
  background: #60bf34;
}
.green form input::placeholder,
.green form textarea::placeholder {
  color: #fafafa;
}
.in__develop {
  flex: 1;
  text-align: center;
  padding: 300px 50px;
}
h3.title_holder {
  font-size: 2em;
  color: #383e42;
  font-weight: 400;
  text-transform: uppercase;
  line-height: 1.2;
  letter-spacing: 0;
  margin-bottom: 15px;
  padding-bottom: 30px;
  position: relative;
  left: -3px;
}
@media (max-width: 567px) {
  h3.title_holder {
    font-size: 1.5em;
  }
}
h3.title_holder a {
  color: #2a2a2a;
}
h3.title_holder:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 3px;
  width: 100px;
  height: 3px;
  margin-bottom: 20px;
  background-color: #66cc00;
}
h3.title_holder > a > span.arrow > svg {
  width: 30px;
  height: 30px;
  margin: 0;
  padding: 0;
  transition: transform 0.3s ease;
  transform: translateX(10px);
}
@media (max-width: 567px) {
  h3.title_holder > a > span.arrow > svg {
    padding-top: 10px;
    width: 16px;
  }
}
h3.title_holder:hover a > span.arrow > svg {
  transform: translateX(20px);
}
.principles {
  background: #ffffff;
  padding: 30px 10px;
  position: relative;
  top: -10px;
  counter-reset: principles;
}
@media (max-width: 567px) {
  .principles div > div > div {
    margin-bottom: 20px;
  }
}
.principles .item {
  border: 10px solid #60bf34;
  color: #2a2a2a;
  padding: 70px 25px 40px;
  margin: 10px;
  height: 100%;
  position: relative;
}
@media (max-width: 567px) {
  .principles .item {
    padding: 55px 20px 0;
    border: 8px solid #60bf34;
    margin-bottom: 30px;
  }
}
@media (max-width: 320px) {
  .principles .item {
    padding: 55px 20px 0;
    border: 5px solid #60bf34;
  }
}
.principles .item img {
  max-width: 100%;
}
.principles .item .icon {
  display: block;
  width: 15px;
  height: 15px;
  left: 50px;
  fill: #2a2a2a;
  transition: 0.5s;
}
.principles .item:hover .icon {
  fill: #60bf34;
}
.principles .item::before {
  position: absolute;
  counter-increment: principles;
  content: "0" counter(principles);
  font-size: 1.5em;
  text-align: center;
  padding: 10px;
  color: #fafafa;
  width: 70px;
  height: 80px;
  left: 20px;
  top: -10px;
  font-size: 36px;
  letter-spacing: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom-left-radius: 5px;
  background-color: #66cc00;
  z-index: 10;
}
@media (max-width: 567px) {
  .principles .item::before {
    height: 75px;
    left: 20px;
    top: -8px;
  }
}
@media (max-width: 320px) {
  .principles .item::before {
    height: 65px;
    left: 20px;
    top: -5px;
  }
}
.principles .item::after {
  border-top: 70px solid rgba(30, 30, 30, 0.6);
  content: '';
  position: absolute;
  left: 90px;
  top: 0;
  border-right: 20px solid transparent;
  transition: all 0.3s ease;
}
@media (max-width: 567px) {
  .principles .item::after {
    left: 90px;
  }
}
@media (max-width: 320px) {
  .principles .item::after {
    border-top: 63px solid rgba(30, 30, 30, 0.6);
  }
}
.about_block {
  margin: 0px 20px 50px 20px;
}
@media (max-width: 567px) {
  .about_block {
    margin: 50px 20px 100px;
  }
}
.about_block img {
  max-height: 450px;
}
.about_block p {
  margin: 20px 0;
  text-align: justify;
}
.about_block .about-img {
  position: relative;
}
.about_block .about-border {
  width: 100%;
  height: 100%;
  margin: -20px -40px;
  border: 10px solid #66cc00;
  z-index: -1;
}
@media (max-width: 567px) {
  .about_block .about-border {
    margin: -5px;
    width: 90%;
    height: 90%;
  }
}
@media (max-width: 320px) {
  .about_block .about-border {
    margin: -10px;
    width: 90%;
    height: 90%;
    border: 5px solid #66cc00;
  }
}
.about_block .about-dots {
  width: 100%;
  height: 100%;
  margin: 20px 50px;
  z-index: -1;
  background: url("../themes/greentechno/assets/images/dots.png");
}
@media (max-width: 567px) {
  .about_block .about-dots {
    margin: 50px 40px;
    width: 90%;
    height: 90%;
  }
}
@media (max-width: 320px) {
  .about_block .about-dots {
    margin: 50px 30px;
    width: 90%;
    height: 90%;
  }
}
#about_scene {
  position: relative;
}
@media (max-width: 567px) {
  #about_scene {
    width: 100%;
    padding: 10px;
    margin: 50px 10px;
  }
}
@media (max-width: 320px) {
  #about_scene {
    width: 100%;
    margin: 50px 10px 20px;
    padding: 10px;
  }
}
.video_block {
  padding: 20px;
  position: relative;
}
@media (max-width: 567px) {
  .video_block {
    padding: 20px;
  }
}
.video_block .video_holder {
  position: relative;
  width: 100%;
  height: 85%;
  border-radius: 10px;
  overflow: hidden;
}
.video_block .video_holder:after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: '';
  background: rgba(0, 0, 0, 0.4);
  z-index: 2;
}
.video_block .video_holder img {
  width: 100%;
  padding: 0;
  transform: scale(1.05);
  position: relative;
  transition: all 1s ease;
}
.video_block .video_holder .play {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10%;
  height: 10%;
  transform: translate(-50%, -50%);
  z-index: 10;
  transition: all 0.5s ease;
}
@media (max-width: 567px) {
  .video_block .video_holder .play {
    transform: translate(-50%, -90%);
    width: 15%;
  }
}
.video_block .video_holder .play:hover {
  transform: translate(-50%, -50%) scale(1.1);
}
@media (max-width: 567px) {
  .video_block .video_holder .play:hover {
    transform: translate(-50%, -90%) scale(1.1);
  }
}
.video_block:after {
  position: absolute;
  top: 35%;
  left: 50%;
  width: 50vw;
  height: 60%;
  content: '';
  background: #66cc00;
  opacity: 0.7;
  z-index: -1;
}
@media (max-width: 567px) {
  .video_block:after {
    top: 45%;
    left: 30%;
    width: 70vw;
    height: 55%;
  }
}
.callout {
  background: #ffffff;
  color: #fafafa;
  padding: 50px 0;
  overflow: hidden;
  position: relative;
}
@media (max-width: 567px) {
  .callout {
    padding: 20px 30px;
  }
}
@media (max-width: 320px) {
  .callout {
    padding: 30px 20px;
  }
}
.callout .container,
.contacts_block .container-fluid {
  z-index: 5;
  position: relative;
}
.callout:after,
.contacts_block::after {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: #383e42;
  opacity: 0.8;
  content: '';
  z-index: 2;
}
.callout .footer_img {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-image: url("../themes/greentechno/assets/images/bg/footer.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  z-index: 1;
}
.callout h3 {
  margin: 0;
  padding: 0;
  font-size: 1.875em;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 0;
  color: #fafafa;
  margin-bottom: 9px;
}
.callout p {
  font-size: 1.125em;
  color: #999;
  padding: 0;
  margin: 0;
}
.callout a.link_holder {
  display: block;
  text-decoration: none;
  color: #fafafa;
  padding: 0 25px;
  border-radius: 2px;
  font-family: "Rubik", Sans-serif;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  text-align: center;
  line-height: 50px;
  letter-spacing: 0.5px;
  background-color: #66cc00;
  transition: all 0.3s ease;
}
@media (max-width: 567px) {
  .callout a.link_holder {
    margin: 20px auto;
  }
}
.callout a.link_holder:hover {
  background: #ffffff;
  border: 2px solid #66cc00;
  color: #2a2a2a;
}
.callout .btn-white {
  font-size: 1.5em;
  text-transform: uppercase;
  background: #fafafa;
  color: #ffffff;
  padding: 15px 35px;
}
.projects {
  max-width: 100vw;
  padding: 0 15px;
  margin: 0;
}
.sticky {
  position: -webkit-sticky;
  position: -moz-sticky;
  position: -ms-sticky;
  position: -o-sticky;
  position: sticky;
  top: 50px;
}
.title_project {
  padding: 20px;
}
@media (max-width: 567px) {
  .title_project {
    padding: 50px 30px;
  }
}
.title_project p {
  margin-bottom: 20px;
  width: 100%;
  font-size: 17px;
  text-align: justify;
}
@media (max-width: 567px) {
  .title_project p {
    width: 100%;
  }
}
.title_project p span.text {
  font-size: 18px;
}
.title_project p span.arrow svg {
  width: 12px;
  margin-left: 10px;
  top: 10px;
}
.page-content-container {
  margin: 50px 0;
  padding-bottom: 50px;
  counter-reset: pageblock;
  flex-wrap: wrap;
}
@media (max-width: 567px) {
  .page-content-container {
    margin: 10px 0;
  }
}
.page-content-container div {
  margin: 30px 0;
}
@media (max-width: 567px) {
  .page-content-container div {
    margin: 10px 0;
  }
}
.page-content-container h3 {
  font-size: 2em;
  padding: 0;
  margin: 0;
  color: #2a2a2a;
  font-weight: 400;
  position: relative;
}
.page-content-container div.desc strong {
  font-weight: 500;
}
.page-content-container div.desc p {
  text-align: justify;
}
.page-content-container .icon {
  width: 70px;
  margin: 30px 0;
  opacity: 0.4;
  transition: 0.3s;
}
.page-content-container .slider {
  margin: 10px auto;
}
.page-content-container .slider .glide__slides .glide__slide {
  height: auto;
}
.page-content-container .slider .glide__slide img {
  width: 100%;
  padding: 20px;
}
@media (max-width: 576px) {
  .page-content-container .slider .glide__slide img {
    width: 100%;
    padding: 0;
    height: auto;
  }
}
.page-content-container .title:hover img {
  opacity: 1;
}
.page-content-container .pages-devider {
  border-top: 1px double #66cc00;
  border-bottom: 1px double #66cc00;
}
.projects .list_project {
  padding: 10px 30px;
}
.projects .list_project .item {
  margin: 30px 0;
  background: #e9eff4;
  overflow: hidden;
  list-style: none;
}
@media (max-width: 567px) {
  .projects .list_project .item h3,
  .projects .list_project .item span {
    padding: 0px 10px;
    margin: 0;
  }
}
.projects .list_project .item a {
  color: #2a2a2a;
}
.projects .list_project .item img {
  filter: brightness(75%);
}
.projects .list_project .item .title_project {
  padding: 20px;
  border-top: 2px solid #66cc00;
  border-bottom: 3px solid #66cc00;
}
@media (max-width: 1280px) {
  .projects .list_project .item .title_project {
    padding: 10px 20px;
  }
}
@media (max-width: 576px) {
  .projects .list_project .item .title_project {
    border-top: none;
    margin-top: 5px;
    padding: 20px 5px;
  }
}
.projects .list_project .item .title_project_list {
  padding-left: 40px;
}
.projects .list_project .item .cover {
  width: 100%;
  height: auto;
  overflow: hidden;
  margin: 0;
  padding: 0;
}
@media (max-width: 1280px) {
  .projects .list_project .item .cover {
    max-height: 290px;
  }
}
.projects .list_project .item img {
  height: 100%;
  margin: 0 8px;
}
@media (max-width: 1280px) {
  .projects .list_project .item img {
    width: 114%;
    margin-left: 50%;
    transform: translateX(-50%);
  }
}
.projects .list_project .item span.desc {
  font-size: 14px;
  display: block;
  margin-bottom: 15px;
}
@media (max-width: 1280px) {
  .projects .list_project .item span.desc {
    margin-bottom: 10px;
  }
}
.projects .list_project .item p a {
  display: block;
  text-decoration: none;
  max-width: fit-content;
  max-width: max-content;
  max-width: intrinsic;
  max-width: -moz-max-content;
  max-width: -webkit-max-content;
  white-space: nowrap;
  overflow: hidden;
  padding-right: 29px;
  color: #2a2a2a;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0;
  position: relative;
}
.projects .list_project .item p {
  margin: 0;
  padding: 24px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  margin-top: auto;
}
@media (max-width: 1280px) {
  .projects .list_project .item p {
    padding-top: 10px;
  }
}
.projects .list_project .item p::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 100%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.3);
  transition: all 500ms cubic-bezier(0.04, 0.63, 0, 0.965);
}
.projects .list_project .item:hover p:after {
  right: 0;
}
.project_list_page {
  padding-bottom: 40px;
}
.project_list_page .project_page_li {
  padding-bottom: 30px;
}
@media (max-width: 576px) {
  .project_list_page .project_page_li {
    padding-bottom: 50px;
  }
}
.project_list_page .item {
  width: 100%;
  float: left;
  clear: both;
  position: relative;
  padding-bottom: 10px;
}
.project_list_page .item:after {
  left: 30px;
  right: 30px;
  height: 10px;
  bottom: 0;
  background-color: #66cc00;
  content: '';
  position: absolute;
  z-index: -1;
  border-radius: 0 0 5px 5px;
}
.page .project_list_page .item .title_holder {
  width: 100%;
  float: left;
  clear: both;
  position: absolute;
  z-index: 10;
  left: 0;
  bottom: 10px;
  padding: 34px 50px 36px;
  color: #fafafa;
}
@media (max-width: 768px) {
  .page .project_list_page .item .title_holder {
    padding: 24px 20px 16px;
  }
}
.page .project_list_page .item .title_holder img,
.page .project_list_page .item .title_holder svg {
  width: 15px;
  height: 15px;
  position: absolute;
  right: 0;
  top: 50%;
  fill: #fafafa;
  margin-top: -7px;
}
.page .project_list_page .item .title_holder h3 {
  margin: 0;
  padding: 0;
  font-size: 24px;
  letter-spacing: 0;
  font-weight: 300;
  margin-bottom: 10px;
}
@media (max-width: 576px) {
  .page .project_list_page .item .title_holder h3 {
    font-size: 18px;
  }
}
.page .project_list_page .item .title_holder p {
  margin: 0;
  padding: 0;
  display: inline-block;
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  padding-right: 25px;
  position: relative;
}
@media (max-width: 576px) {
  .page .project_list_page .item .title_holder p {
    font-size: 12px;
  }
}
.page .project_list_page .item .inner {
  width: 100%;
  float: left;
  clear: both;
  position: relative;
}
.page .project_list_page .item .inner a {
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 25;
}
.project_list_page .item .inner a::after {
  content: '';
  background-color: #66cc00;
  left: 59px;
  top: 40px;
  width: 2px;
  height: 0;
  position: absolute;
  z-index: 22;
  transition: all 0.3s ease;
}
.project_list_page .item .inner a::before {
  content: '';
  background-color: #66cc00;
  left: 50px;
  top: 49px;
  width: 0;
  height: 2px;
  position: absolute;
  z-index: 22;
  transition: all 0.3s ease;
  transition-delay: 0.3s;
}
.page .project_list_page .item .title_holder {
  z-index: 10px;
}
.project_list_page .item .img_holder {
  width: 100%;
  float: left;
  clear: both;
  position: relative;
  z-index: 1;
  border-radius: 5px;
  overflow: hidden;
}
.project_list_page .item .img_holder img {
  transform: scale(1.05);
}
.page .project_list_page .item .img_holder:after {
  z-index: 7;
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: -webkit-linear-gradient(to top, rgba(15, 15, 22, 0.55), rgba(15, 15, 22, 0.1));
  background: linear-gradient(to top, rgba(15, 15, 22, 0.55), rgba(15, 15, 22, 0.1));
  transition: all 0.3s ease;
}
.page .project_list_page .item:hover .img_holder:after {
  background-color: rgba(15, 15, 22, 0.7);
}
.page .project_list_page .item:hover .inner a:after {
  height: 20px;
}
.page .project_list_page .item:hover .inner a:before {
  width: 20px;
}
ul.project_list {
  list-style: none;
  padding: 20px 0;
  margin: 10px 25px 20px 0;
  border-right: 2px solid #e9eff4;
  height: 100%;
}
ul.project_list h3 {
  font-size: 16px;
  font-weight: 500;
}
ul.project_list li {
  margin: 10px 0;
  padding: 5px 3px;
  text-align: left;
  width: 100%;
  line-height: 1.15;
  transition: 0.3s;
}
ul.project_list li a {
  font-size: 14px;
  color: #2a2a2a;
  transition: 0.3s;
}
ul.project_list li:hover {
  background: #66cc00;
}
ul.project_list li:hover a {
  color: #fafafa;
}
.project_detail ul {
  margin: 0;
  padding-left: 25px;
  text-align: justify;
}
.project_detail .cover {
  position: relative;
}
.project_detail .cover img {
  padding: 20px 0;
  max-width: 100%;
}
@media (max-width: 768px) {
  .project_detail .cover img {
    width: 100%;
    padding: 0;
  }
}
.project_detail .cover::after {
  width: 90%;
  height: 85%;
  position: absolute;
  top: -10px;
  left: 0;
  z-index: -1;
  border: 7px solid #66cc00;
}
.project_detail h3 {
  font-weight: 400 !important;
}
.project_detail h3 > span {
  float: left;
  margin: 0 20px 0 0;
}
.project_detail h3 > span > img {
  height: 24px;
  width: 24px;
}
.project_detail .detail {
  padding-left: 30px;
}
@media (max-width: 1280px) {
  .project_detail .detail {
    padding-left: 10px;
  }
}
.project_detail .photos {
  padding: 50px 0;
}
.production_block {
  background: #ffffff;
  color: #fafafa;
}
.production_block h3 {
  padding: 20px;
  margin: 0;
  font-size: 2em;
  text-transform: uppercase;
  font-weight: 400;
  color: #2a2a2a;
}
@media (max-width: 567px) {
  .production_block h3 {
    font-size: 1.75em;
  }
}
@media (max-width: 320px) {
  .production_block h3 {
    font-size: 1.5em;
  }
}
.production .glide__slide {
  position: relative;
  height: 100%;
  overflow: hidden;
}
@media (max-width: 567px) {
  .production .glide__slide {
    height: 300px;
  }
}
@media (max-width: 320px) {
  .production .glide__slide {
    height: 250px;
  }
}
.production .glide__slide img {
  height: 100%;
}
@media (max-width: 567px) {
  .production .glide__slide img {
    height: 280px;
  }
}
@media (max-width: 320px) {
  .production .glide__slide img {
    height: 250px;
  }
}
.production .glide__slide .title {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 25%;
  padding: 0 10px;
  background: rgba(0, 0, 0, 0.6);
  /* For browsers that do not support gradients */
  background: -webkit-linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0));
  /* For Safari 5.1 to 6.0 */
  background: -o-linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0));
  /* For Opera 11.1 to 12.0 */
  background: -moz-linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0));
  /* For Firefox 3.6 to 15 */
  background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0));
  /* Standard syntax */
}
@media (max-width: 567px) {
  .production .glide__slide .title h4 {
    padding: 5px 0;
    margin: 10px auto;
    font-size: 12em;
  }
}
@media (max-width: 320px) {
  .production .glide__slide .title h4 {
    height: 250px;
  }
}
.production .glide__slide .bottom {
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 25%;
  background: rgba(0, 0, 0, 0.6);
  /* For browsers that do not support gradients */
  background: -webkit-linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.7));
  /* For Safari 5.1 to 6.0 */
  background: -o-linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.7));
  /* For Opera 11.1 to 12.0 */
  background: -moz-linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.7));
  /* For Firefox 3.6 to 15 */
  background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.7));
  /* Standard syntax */
}
.production .glide__slide .title h4 {
  line-height: 24px;
  font-size: 1.5em;
  font-weight: 300;
}
.production .glide__slide .btn-white {
  position: absolute;
  bottom: 18px;
  left: 8px;
  margin: 0;
}
.slogan {
  font-style: italic;
  margin: 20px 0;
  padding: 15px 25px 15px 75px;
  width: 50%;
  position: relative;
  background-color: #e9eff4;
  line-height: 1.7;
  color: #2a2a2a;
  font-size: 1.375em;
  font-weight: 400;
  border-radius: 5px;
  overflow: hidden;
}
@media (max-width: 567px) {
  .slogan {
    width: 100%;
  }
}
.slogan::before {
  position: absolute;
  content: '';
  left: 0;
  top: 0;
  border-radius: 5px;
  height: 100%;
  width: 65px;
  padding: 0 10px;
  line-height: 1.4;
  font-size: 3em;
  color: #fafafa;
  border-left: 0 solid transparent;
  border-right: 10px solid transparent;
  border-top: 100px solid #66cc00;
}
.slogan::after {
  position: absolute;
  content: '\201d';
  left: 15px;
  top: 0;
  height: 100%;
  width: 50px;
  line-height: 1.5;
  font-size: 3em;
  color: #fafafa;
  background: none;
}
.page-equips .equips_list_page .equip_page_li {
  overflow: hidden;
}
.page-equips .equips_list_page .equip_page_li .item {
  background: #e9eff4;
  padding: 0;
  border-radius: 10px;
  overflow: hidden;
  margin: 20px 0;
}
.page-equips .equips_list_page .equip_page_li .item .inner {
  position: relative;
  width: 100%;
  height: 400px;
}
@media (max-width: 576px) {
  .page-equips .equips_list_page .equip_page_li .item .inner {
    height: 300px;
  }
}
.page-equips .equips_list_page .equip_page_li .item .inner a:hover img {
  transform: scale(1.05);
}
.page-equips .equips_list_page .equip_page_li .item .inner a:hover .title_holder {
  width: 75%;
}
@media (max-width: 576px) {
  .page-equips .equips_list_page .equip_page_li .item .inner a:hover .title_holder {
    width: 95%;
  }
}
.page-equips .equips_list_page .equip_page_li .item .inner .img_holder {
  right: 10px;
  width: 70%;
  height: auto;
  position: absolute;
}
@media (max-width: 576px) {
  .page-equips .equips_list_page .equip_page_li .item .inner .img_holder {
    width: 90%;
  }
}
.page-equips .equips_list_page .equip_page_li .item .inner .img_holder img {
  width: 100%;
  transition: 0.3s;
}
.page-equips .equips_list_page .equip_page_li .item .inner .title_holder {
  width: 65%;
  position: absolute;
  padding: 0 20px;
  bottom: 0;
  transition: 0.3s;
  background: #66cc00;
  color: #fafafa;
}
@media (max-width: 576px) {
  .page-equips .equips_list_page .equip_page_li .item .inner .title_holder {
    width: 90%;
    padding: 5px 10px;
  }
}
.page-equips .equips_list_page .equip_page_li .item .inner .title_holder:after {
  height: 100%;
  width: 30px;
  top: 0;
  right: -40px;
  position: absolute;
  content: '';
  border-top: 120px solid transparent;
  border-bottom: 0 solid transparent;
  border-left: 40px solid #66cc00;
}
.page-equips .equips_list_page .equip_page_li .item .inner .title_holder h3 {
  font-weight: 400;
  margin: 5px 0;
  font-: 17px;
}
.page-equips .equips_list_page .equip_page_li .item .inner .title_holder p svg {
  width: 15px;
  height: 15px;
  position: absolute;
  right: 10px;
  top: 50%;
  fill: #fafafa;
  margin-top: -7px;
}
.page-equips .equip_block {
  position: relative;
}
.page-equips .equip_block .inner {
  background: #e9eff4;
  border-radius: 5px;
  overflow: hidden;
  position: relative;
  display: block;
  margin: 100px 0;
}
@media (max-width: 567px) {
  .page-equips .equip_block .inner {
    margin: 50px 0;
  }
}
.page-equips .equip_block h3 {
  background: #66cc00;
  color: #fafafa;
  width: 60%;
  margin: 0;
  padding: 20px;
  position: relative;
}
@media (max-width: 567px) {
  .page-equips .equip_block h3 {
    width: 85%;
  }
}
.page-equips .equip_block h3:after {
  content: '';
  position: absolute;
  width: 65px;
  height: 100%;
  transform: skewX(20deg);
  right: 0;
  bottom: 0;
  z-index: 20;
  margin-right: -15px;
  background-color: #e9eff4;
}
.page-equips .equip_block .inner .text {
  width: 70%;
  margin: 30px 40px;
}
.page-equips .equip_block .img {
  height: 100%;
  position: absolute;
  top: -100px;
  right: 40px;
  z-index: 10;
}
@media (max-width: 567px) {
  .page-equips .equip_block .img {
    position: relative;
    top: 0;
    left: 0;
  }
}
.page-equips .equip_block .img img {
  width: 100%;
}
.page-equips .equip_block ul {
  margin: 5px 0;
  list-style: none;
}
.page-equips .equip_block ul li::before {
  content: "\2022";
  /* Add content: \2022 is the CSS Code/unicode for a bullet */
  color: #66cc00;
  /* Change the color */
  font-weight: bold;
  /* If you want it to be bold */
  display: inline-block;
  /* Needed to add space between the bullet and the text */
  width: 1em;
  /* Also needed for space (tweak if needed) */
  margin-left: -1em;
  /* Also needed for space (tweak if needed) */
}
.news {
  padding: 20px 0 40px;
  position: relative;
}
.news a {
  color: #2a2a2a;
}
@media (max-width: 567px) {
  .news {
    padding: 20px;
  }
}
.news .overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("../themes/greentechno/assets/images/bg/map.png");
  background-size: contain;
  background-position: 50% 30%;
  background-repeat: no-repeat;
  opacity: 0.2;
}
@media (max-width: 567px) {
  .news .overlay {
    display: none;
  }
}
.news .item {
  margin-bottom: 40px;
  padding: 20px;
  position: relative;
}
.news .item .img_holder {
  position: relative;
  border-radius: 5px;
  overflow: hidden;
  width: 100%;
  max-height: 250px;
  vertical-align: middle;
}
.news .item .img_holder img {
  width: 100%;
  border-radius: 5px;
}
.news .item .title_holder {
  color: #2a2a2a;
  text-align: justify;
}
.news .item .time {
  position: absolute;
  z-index: 15;
  padding: 20px 19px 25px;
  max-width: 100%;
  width: 80px;
  text-align: center;
  background: #66cc00;
  box-shadow: 0 0 5px 5px rgba(0, 0, 0, 0.1);
}
.news .item .time h3 {
  margin: 0;
  padding: 0;
  color: #fff;
  font-size: 36px;
  line-height: 1;
  letter-spacing: -2px;
  position: relative;
  margin-bottom: 5px;
  font-weight: 300;
}
.news .item .time h3:after {
  left: 0;
  right: 0;
  position: absolute;
  content: '';
  background-color: #fafafa;
  height: 1px;
  top: 100%;
}
.news .item .time h5 {
  margin: 0;
  padding: 0;
  color: #fff;
  letter-spacing: 0;
  font-size: 12px;
  line-height: 14px;
  font-weight: 400;
  text-transform: uppercase;
}
.news a.btn {
  position: absolute;
  bottom: -50px;
  left: 20px;
  color: #fafafa;
}
ul.pagination {
  list-style: none;
  padding: 0;
  margin: 0;
  background: #e9eff4;
  color: #2a2a2a;
  border-radius: 10px;
  overflow: hidden;
}
ul.pagination li {
  display: inline-block;
  padding: 5px 10px;
  transition: background 0.3s ease;
}
ul.pagination li a {
  color: #2a2a2a;
}
ul.pagination li:hover {
  background: #66cc00;
}
ul.pagination li:hover a {
  color: #fafafa;
}
.item-nav {
  margin: 30px 0;
  padding: 0;
}
.item-nav .item-btn {
  background: #e9eff4;
  color: #2a2a2a;
  position: relative;
  cursor: pointer;
  border-radius: 5px;
  overflow: hidden;
  padding: 10px 10px 10px 60px;
  margin-bottom: 20px;
  min-height: 65px;
}
.item-nav .item-btn .arrow-holder {
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  background-color: #66cc00;
}
.item-nav .item-btn .arrow-holder img {
  filter: invert(1);
  transform: translate(-20%, -50%);
  position: absolute;
  height: 20px;
  top: 50%;
  left: 10px;
}
.item-nav .item-btn a {
  color: #2a2a2a;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.layout-page .post_full {
  text-align: justify;
}
.layout-page .post_full img {
  max-width: 100%;
  margin: 20px 0;
}
.layout-page .post_full .video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 30px;
  height: 0;
  overflow: hidden;
}
.layout-page .post_full .video-wrapper embed,
.layout-page .post_full .video-wrapper iframe,
.layout-page .post_full .video-wrapper object {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.contacts_block {
  background-color: #ffffff;
  padding: 40px 80px;
  margin-top: 40px;
  color: #fafafa;
  position: relative;
  border-bottom: 1px solid #60bf34;
}
.contacts_block .logo {
  position: relative;
  padding: 10px 15px;
}
.contacts_block .logo a {
  color: #e9eff4;
  display: flex;
  text-decoration: none;
}
.contacts_block .logo .img_holder {
  float: left;
}
.contacts_block .logo .img_holder img {
  position: relative;
  width: 70px;
}
@media (max-width: 567px) {
  .contacts_block .logo .img_holder img {
    width: 50px;
    height: auto;
  }
}
.contacts_block .logo .text_holder {
  padding: 5px 10px;
  position: relative;
}
.contacts_block .logo .text_holder h1 {
  font-size: 2.1em;
  text-transform: uppercase;
  white-space: nowrap;
  padding: 0;
  margin: 0;
  line-height: 1;
}
@media (max-width: 567px) {
  .contacts_block .logo .text_holder h1 {
    font-size: 2em;
    margin: -15px 0;
  }
}
.contacts_block .logo .text_holder h1 span {
  color: #66cc00;
}
.contacts_block .logo .text_holder small {
  font-size: 8px !important;
  word-break: keep-all;
  position: absolute;
  bottom: 15px;
  left: 10px;
  width: 100%;
  line-height: 1;
  margin: 0;
  padding: 0;
}
.contacts_block a {
  color: #fafafa;
  text-decoration: underline;
}
@media (max-width: 567px) {
  .contacts_block {
    margin-top: 25px;
    padding: 40px 20px;
  }
}
.contacts_block .footer_img {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-image: url("../themes/greentechno/assets/images/bg/footer.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  z-index: 1;
}
.contacts_block .social ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.contacts_block .social li {
  display: inline;
  font-size: 14px;
  padding: 0 20px 0 0;
  margin: 0;
  vertical-align: middle;
}
.contacts_block .social li a {
  text-decoration: none;
}
.contacts_block .social li a:hover {
  text-decoration: underline;
}
.contacts_block .social li svg {
  fill: #fafafa;
  margin-right: 5px;
  position: relative;
  top: 8px;
}
.contacts_block p {
  padding: 0;
  margin: 10px 0;
}
.contacts_block img {
  width: 300px;
}
.contacts_block form {
  width: 100%;
  color: #fafafa;
}
.contacts_block form input {
  width: 100%;
  background: rgba(30, 30, 30, 0.6);
  border-radius: 3px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fafafa;
  padding: 10px;
  margin: 10px 0;
  font-size: 1em;
}
.contacts_block form textarea {
  width: 100%;
  background: rgba(30, 30, 30, 0.6);
  color: #fafafa;
  padding: 7px;
  margin: 5px 0;
  font-size: 0.8em;
  border-radius: 5px;
  border: 1px solid rgba(255, 255, 255, 0.3);
}
.contacts_block form button {
  width: 100%;
  background: rgba(30, 30, 30, 0.6);
  border: 1px solid #a1a1a1;
  padding: 10px;
  margin: 5px 0;
  font-size: 1em;
  transition: all 0.3s ease;
}
.contacts_block form button:hover {
  background: #66cc00;
}
footer {
  height: 35px;
  padding: 10px;
  text-align: center;
  font-size: 12px;
  font-weight: 400;
  color: #fafafa;
  background: #383e42;
}
footer form input {
  width: 100%;
  background: #66cc00;
  border-radius: 3px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fafafa;
  padding: 10px;
  margin: 10px 0;
  font-size: 1em;
}
footer a {
  color: #fafafa;
}
