#fijo {
  display: block;
  position: relative;
  top: 50%;
  text-align: center;
  padding-top: 20px; }

#fijo h1 {
  text-align: center; }

#loader {
  display: block;
  position: relative;
  left: 50%;
  top: 50%;
  width: 150px;
  height: 150px;
  margin: -75px 0 0 -75px;
  -webkit-border-radius: 50%;
          border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: #00a651;
  -webkit-animation: spin 2s linear infinite;
  /* Chrome, Opera 15+, Safari 5+ */
  animation: spin 2s linear infinite;
  /* Chrome, Firefox 16+, IE 10+, Opera */ }

#loader:before {
  content: "";
  position: absolute;
  top: 5px;
  left: 5px;
  right: 5px;
  bottom: 5px;
  -webkit-border-radius: 50%;
          border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: #3aaa35;
  -webkit-animation: spin 3s linear infinite;
  /* Chrome, Opera 15+, Safari 5+ */
  animation: spin 3s linear infinite;
  /* Chrome, Firefox 16+, IE 10+, Opera */ }

#loader:after {
  content: "";
  position: absolute;
  top: 15px;
  left: 15px;
  right: 15px;
  bottom: 15px;
  -webkit-border-radius: 50%;
          border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: #cfcfcf;
  -webkit-animation: spin 1.5s linear infinite;
  /* Chrome, Opera 15+, Safari 5+ */
  animation: spin 1.5s linear infinite;
  /* Chrome, Firefox 16+, IE 10+, Opera */ }

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    /* Chrome, Opera 15+, Safari 3.1+ */
    -ms-transform: rotate(0deg);
    /* IE 9 */
    transform: rotate(0deg);
    /* Firefox 16+, IE 10+, Opera */ }
  100% {
    -webkit-transform: rotate(360deg);
    /* Chrome, Opera 15+, Safari 3.1+ */
    -ms-transform: rotate(360deg);
    /* IE 9 */
    transform: rotate(360deg);
    /* Firefox 16+, IE 10+, Opera */ } }

@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    /* Chrome, Opera 15+, Safari 3.1+ */
    -ms-transform: rotate(0deg);
    /* IE 9 */
    transform: rotate(0deg);
    /* Firefox 16+, IE 10+, Opera */ }
  100% {
    -webkit-transform: rotate(360deg);
    /* Chrome, Opera 15+, Safari 3.1+ */
    -ms-transform: rotate(360deg);
    /* IE 9 */
    transform: rotate(360deg);
    /* Firefox 16+, IE 10+, Opera */ } }

#loader-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
/*  border: 40px solid #131313;*/
  z-index: 1000;
  background-color: #212121; }

#loader-wrapper .loader-section {
  position: fixed;
  top: 0;
  width: 51%;
  height: 100%;
  background: #222222;
  z-index: 1000; }

/* Loaded */
.loaded #loader-wrapper .loader-section.section-left {
  -webkit-transform: translateX(-100%);
  /* Chrome, Opera 15+, Safari 3.1+ */
  -ms-transform: translateX(-100%);
  /* IE 9 */
  transform: translateX(-100%);
  /* Firefox 16+, IE 10+, Opera */ }

.loaded #loader-wrapper .loader-section.section-right {
  -webkit-transform: translateX(100%);
  /* Chrome, Opera 15+, Safari 3.1+ */
  -ms-transform: translateX(100%);
  /* IE 9 */
  transform: translateX(100%);
  /* Firefox 16+, IE 10+, Opera */ }

.loaded #loader {
  opacity: 0; }
body {
  margin: 0;
  font-family: 'Roboto', sans-serif; }

button:focus, button:active, input:focus, input:active, textarea:focus, textarea:active {
  outline: none !important; }

a, button, input, textarea {
  -webkit-transition: 0.25s;
  -o-transition: 0.25s;
  transition: 0.25s;
  cursor: pointer; }

a:hover, a:focus {
  text-decoration: none;
  outline: none; }

.container {
  width: 1170px;
  padding-left: 15px;
  padding-right: 15px;
  margin: 0 auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box; }

.header {
  background-color: rgba(0, 0, 0, 0.62); }

/*.main {
  overflow: hidden; }*/

.header {
  position: absolute;
  width: 100%;
  top: 0;
  height: 112px;
  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;
  z-index: 10; }
  .header .container {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center; }
  .header .logo {
    float: left; }
  .header nav {
    display: inline-block; }
    .header nav .link {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      padding-left: 0;
      -webkit-box-align: center;
      -webkit-align-items: center;
          -ms-flex-align: center;
              align-items: center; }
      .header nav .link li {
        display: inline-block; }
        .header nav .link li a {
          color: #fff;
          font-family: 'Roboto', sans-serif;
          font-size: 12px;
          font-weight: 300;
          line-height: 36px;
          text-decoration: none;
          padding: 15px 10px;
          position: relative;
          -webkit-transition: .25s;
          -o-transition: .25s;
          transition: .25s; }
          .header nav .link li a:before {
            content: '';
            position: absolute;
            width: -webkit-calc(0% - 20px);
            width: calc(0% - 20px);
            height: 1px;
            bottom: 0;
            background-color: #1dde85;
            -webkit-transition: .25s;
            -o-transition: .25s;
            transition: .25s; }
          .header nav .link li a:hover {
            color: #1dde85; }
            .header nav .link li a:hover:before {
              content: '';
              position: absolute;
              width: -webkit-calc(100% - 20px);
              width: calc(100% - 20px);
              -webkit-transition: .25s;
              -o-transition: .25s;
              transition: .25s; }
      .header nav .link li.active a {
        color: #1dde85; }
        .header nav .link li.active a:before {
          content: '';
          position: absolute;
          width: -webkit-calc(100% - 20px);
          width: calc(100% - 20px);
          height: 1px;
          bottom: 0;
          background-color: #1dde85; }
  .header .language {
    display: inline-block;
    float: right;
    margin-top: -12px; }
    .header .language i {
      color: #fff; }
    .header .language .jq-selectbox__select {
      background: transparent;
      border: 0;
      text-shadow: none;
      -webkit-box-shadow: none;
              box-shadow: none;
      color: #fff;
      padding: 0 30px 0 10px; }
    .header .language .jq-selectbox__trigger {
      border: 0; }
    .header .language .jq-selectbox__trigger .jq-selectbox__trigger-arrow {
      display: none; }
    .header .language .jq-selectbox__trigger:before {
      position: absolute;
      content: '\f107 ';
      font-family: "FontAwesome";
      top: 0;
      left: 15px;
      width: 10px;
      height: 10px;
      display: inline-block;
      color: #fff;
      border: 0; }

.main_sec1 {
  position: relative; }
  .main_sec1 .text_slider {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 820px;
    z-index: 5;
    text-align: center; }
    .main_sec1 .text_slider .container {
      height: 100%;
      -webkit-box-align: center;
      -webkit-align-items: center;
          -ms-flex-align: center;
              align-items: center;
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      position: relative; }
      .main_sec1 .text_slider .container .text_slider_ins {
        text-align: center;
        display: inline-block;
        width: 100%; }
      .main_sec1 .text_slider .container .dotsBlock {
        position: absolute;
        top: 0;
        bottom: 0;
        padding: 130px 0; }
      .main_sec1 .text_slider .container .slick-dots {
        overflow: hidden;
        top: 0;
        padding-left: 0;
        height: 100%;
        margin: 0;
        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; }
        .main_sec1 .text_slider .container .slick-dots li:first-of-type:before {
          content: '';
          position: absolute;
          height: 100vh;
          width: 1px;
          background-color: #fff;
          bottom: 100%;
          left: 14.5px; }
        .main_sec1 .text_slider .container .slick-dots li:last-of-type:before {
          content: '';
          position: absolute;
          height: 100vh;
          width: 1px;
          background-color: #fff;
          top: 100%;
          left: 14.5px; }
        .main_sec1 .text_slider .container .slick-dots li {
          list-style-type: none;
          height: 30px;
          position: relative; }
          .main_sec1 .text_slider .container .slick-dots li button {
            position: relative;
            height: 8px;
            width: 8px;
            margin: 11px;
            border: 0;
            padding: 0;
            -webkit-border-radius: 50%;
                    border-radius: 50%;
            background-color: #fff;
            font-size: 0;
            color: transparent;
            cursor: pointer;
            font-weight: 500; }
        .main_sec1 .text_slider .container .slick-dots li.slick-active button {
          background-color: #1dde85; }
  .main_sec1 .slider .item {
    min-height: 820px;
    -webkit-background-size: cover;
            background-size: cover;
    background-position: center;
    background-repeat: no-repeat; }

.social_network {
  position: absolute;
  left: 0;
  bottom: 25px;
  margin: 0;
  display: inline-block;
  padding-left: 22px; }
  .social_network li {
    list-style-type: none; }
    .social_network li a {
      color: #fff;
      padding: 10px 0;
      display: inline-block;
      -webkit-transition: .25s;
      -o-transition: .25s;
      transition: .25s; }
      .social_network li a:hover {
        -webkit-transition: .25s;
        -o-transition: .25s;
        transition: .25s;
        color: #1dde85; }

.text_slider_ins h3 {
  color: #fffcf4;
  font-family: "Roboto", sans-serif;
  font-size: 48px;
  font-weight: 400;
  line-height: 60px;
  margin-bottom: 40px; }

.text_slider_ins p {
  color: white;
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 36px;
  margin-bottom: 40px; }

.text_slider_ins button {
  display: inline-block;
  color: white;
  font-family: "Roboto", sans-serif;
  font-size: 15px;
  font-weight: 500;
  padding: 20px 53px;
  background-color: #3aaa35;
  -webkit-border-radius: 5px;
          border-radius: 5px;
  border: 0;
  letter-spacing: 1px;
  border-bottom: 3px #2a6c25 solid;
  -webkit-transition: .25s;
  -o-transition: .25s;
  transition: .25s; }
  .text_slider_ins button:hover, .text_slider_ins button:focus {
    -webkit-transition: .25s;
    -o-transition: .25s;
    transition: .25s;
    color: #3aaa35;
    background-color: #fff;
    border-bottom: 3px #8c918d solid; }

.feedback {
  position: fixed;
  right: 0;
  top: 20%; }
  .feedback .feedback_item {
    position: relative; }
    .feedback .feedback_item form {
      padding: 30px;
      -webkit-border-radius: 10px;
              border-radius: 10px;
      text-align: center;
      position: absolute;
      right: -webkit-calc(100% + 15px);
      right: calc(100% + 15px);
      top: 0;
      background-color: rgba(0, 166, 81, 0.7); }
      .feedback .feedback_item form i.close {
        position: absolute;
        color: #fff;
        display: inline-block;
        font-size: 16px;
        right: 10px;
        top: 10px; }
      .feedback .feedback_item form h2 {
        margin: 0;
        color: white;
        font-family: "Roboto", sans-serif;
        font-size: 15px;
        font-weight: 700; }
      .feedback .feedback_item form a {
        color: white;
        font-family: "Roboto", sans-serif;
        font-size: 16px;
        font-weight: 400;
        line-height: 21px;
        text-decoration: none;
        display: inline-block;
        width: 100%; }
      .feedback .feedback_item form p {
        color: white;
        font-family: "Roboto", sans-serif;
        font-size: 12px;
        font-weight: 400;
        line-height: 14px;
        margin-top: 5px; }
      .feedback .feedback_item form button {
        width: 100%;
        display: inline-block;
        margin-top: 15px;
        -webkit-transition: .25s;
        -o-transition: .25s;
        transition: .25s;
        font-size: 16px;
        color: #3aaa35;
        background-color: #fff;
        border-bottom: 3px #8c918d solid;
        -webkit-border-radius: 5px;
                border-radius: 5px;
        transition: .25s;
        font-weight: 500; }
        .feedback .feedback_item form button:hover, .feedback .feedback_item form button:focus {
          -webkit-transition: .25s;
          -o-transition: .25s;
          transition: .25s;
          color: white;
          background-color: #3aaa35;
          border-bottom: 3px #2a6c25 solid; }
    .feedback .feedback_item button {
      display: inline-block;
      float: left;
      height: 50px;
      width: 50px;
      font-size: 18px;
      margin-bottom: 5px;
      color: white;
      font-weight: 500;
      background-color: #3aaa35;
      -webkit-border-top-left-radius: 5px;
              border-top-left-radius: 5px;
      -webkit-border-bottom-left-radius: 5px;
              border-bottom-left-radius: 5px;
      border: 0;
      letter-spacing: 1px;
      border-bottom: 3px #2a6c25 solid;
      -webkit-transition: .25s;
      -o-transition: .25s;
      transition: .25s; }
      .feedback .feedback_item button:hover, .feedback .feedback_item button:focus {
        -webkit-transition: .25s;
        -o-transition: .25s;
        transition: .25s;
        color: #3aaa35;
        background-color: #fff;
        border-bottom: 3px #8c918d solid; }
    .feedback .feedback_item button.active {
      color: #3aaa35;
      background-color: #fff;
      border-bottom: 3px #8c918d solid; }

.mat-label {
  display: block;
  -webkit-transform: translateY(26px);
      -ms-transform: translateY(26px);
          transform: translateY(26px);
  color: #fff;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 400;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  text-align: left;
  margin-bottom: 0;
  padding-left: 10px; }

.mat-input {
  position: relative;
  background-color: rgba(255, 255, 255, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.3);
  -webkit-border-radius: 4px;
          border-radius: 4px;
  width: 220px;
  outline: none;
  padding: 5px 10px;
  color: #fff;
  font-family: 'HelveticaNeue Regular', Arial, sans-serif;
  font-size: 18px;
  display: inline-block;
  resize: none; }
  .mat-input:focus {
    border: 1px solid #fff; }

.mat-div {
  margin-top: 10px;
  padding: 0;
  position: relative; }

.is-active .mat-label {
  color: #e0dddd;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s; }

.is-completed .mat-label {
  font-size: 16px;
  -webkit-transform: translateY(-7px);
      -ms-transform: translateY(-7px);
          transform: translateY(-7px);
  color: #fff; }

.formback1, .formback2 {
  display: none; }

.formback1.open, .formback2.open {
  display: inline-block; }

.main_sec2 {
  padding: 100px 0;
  -webkit-background-size: cover;
          background-size: cover;
  background-repeat: no-repeat;
  background-position: center; }
  .main_sec2 h3 {
    overflow: hidden;
    margin-bottom: 0;
    padding-bottom: 10px;
    margin-bottom: -22px;
    color: black;
    font-size: 36px;
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    position: relative;
    z-index: 2; }
    .main_sec2 h3 span {
      color: #3aaa35; }
    .main_sec2 h3 i {
      position: relative;
      display: inline-block;
      margin: 0;
      margin-left: 50px;
      padding: 0 15px;
      font-style: normal; }
      .main_sec2 h3 i:before {
        position: absolute;
        content: '';
        width: 100%;
        right: 100%;
        height: 18px;
        display: inline-block;
        background-color: #fff;
        -webkit-box-shadow: 0 5px 6.7px 1.3px rgba(98, 98, 98, 0.19);
                box-shadow: 0 5px 6.7px 1.3px rgba(98, 98, 98, 0.19);
        bottom: 12px; }
      .main_sec2 h3 i:after {
        position: absolute;
        content: '';
        width: 99999px;
        left: 100%;
        height: 18px;
        display: inline-block;
        background-color: #fff;
        -webkit-box-shadow: 0 5px 6.7px 1.3px rgba(98, 98, 98, 0.19);
                box-shadow: 0 5px 6.7px 1.3px rgba(98, 98, 98, 0.19);
        bottom: 12px; }
  .main_sec2 .container {
    position: relative; }
    .main_sec2 .container .tree1 {
      z-index: 1;
      content: '';
      display: inline-block;
      position: absolute;
      height: 318px;
      width: 313px;
      bottom: -100px;
      left: -110px;
      background-image: url("../images/tree1.png"); }
    .main_sec2 .container .tree2 {
      z-index: 1;
      content: '';
      display: inline-block;
      position: absolute;
      height: 263px;
      width: 273px;
      top: -50px;
      right: -105px;
      background-image: url("../images/tree2.png"); }
  .main_sec2 .text_main_sec2 {
    z-index: 15;
    position: relative;
    border-left: 18px #fff solid;
    border-right: 18px #fff solid;
    border-bottom: 18px #fff solid;
    -webkit-box-shadow: 0 5px 6.7px 1.3px rgba(98, 98, 98, 0.19);
            box-shadow: 0 5px 6.7px 1.3px rgba(98, 98, 98, 0.19);
    padding: 33px 48px;
    z-index: 2; }
    .main_sec2 .text_main_sec2 p {
      font-family: "Roboto", sans-serif;
      color: black;
      font-size: 16px; }

.main_sec3 {
  display: inline-block;
  width: 100%;
  overflow: hidden; }
  .main_sec3 .item {
    width: 50%;
    display: inline-block;
    min-height: 765px; }
  .main_sec3 .item:first-of-type {
    background-image: url("../images/perev_bg.jpg");
    -webkit-background-size: cover;
            background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    float: left;
    color: #fff; }
    .main_sec3 .item:first-of-type > div {
      float: right;
      width: 580px;
      display: inline-block; }
      .main_sec3 .item:first-of-type > div h2, .main_sec3 .item:first-of-type > div p {
        padding-right: 150px; }
      .main_sec3 .item:first-of-type > div h2 {
        color: white;
        font-family: "Roboto", sans-serif;
        font-size: 32px;
        font-weight: 400;
        margin: 0; }
      .main_sec3 .item:first-of-type > div p {
        color: white;
        font-family: "Roboto", sans-serif;
        font-size: 15px;
        font-weight: 400;
        margin: 80px 0; }
      .main_sec3 .item:first-of-type > div button {
        display: inline-block;
        color: white;
        font-family: "Roboto", sans-serif;
        font-size: 15px;
        font-weight: 500;
        padding: 20px 53px;
        background-color: #3aaa35;
        -webkit-border-radius: 5px;
                border-radius: 5px;
        border: 0;
        letter-spacing: 1px;
        border-bottom: 3px #2a6c25 solid;
        -webkit-transition: .25s;
        -o-transition: .25s;
        transition: .25s; }
        .main_sec3 .item:first-of-type > div button:hover, .main_sec3 .item:first-of-type > div button:focus {
          -webkit-transition: .25s;
          -o-transition: .25s;
          transition: .25s;
          color: #3aaa35;
          background-color: #fff;
          border-bottom: 3px #8c918d solid; }
  .main_sec3 .item:last-of-type {
    float: right;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    min-height: 765px; }
    .main_sec3 .item:last-of-type ul {
      float: left;
      width: 580px;
      display: inline-block;
      padding-left: 55px; }
      .main_sec3 .item:last-of-type ul li {
        padding-left: 94px;
        list-style-type: none;
        position: relative;
        margin-bottom: 35px;
        min-height: 65px; }
        .main_sec3 .item:last-of-type ul li:last-of-type {
          margin-bottom: 0; }
        .main_sec3 .item:last-of-type ul li i {
          display: inline-block;
          position: absolute;
          left: 0;
          top: 0;
          height: 65px;
          width: 65px;
          border: 3px #00a651 solid;
          -webkit-border-radius: 50%;
                  border-radius: 50%;
          -webkit-background-size: container container;
                  background-size: container;
          background-repeat: no-repeat;
          background-position: center; }
        .main_sec3 .item:last-of-type ul li h2 {
          color: black;
          font-family: "Roboto", sans-serif;
          font-size: 16px;
          font-weight: 400;
          line-height: 16px;
          margin: 0; }
        .main_sec3 .item:last-of-type ul li p {
          margin-top: 5px;
          margin-bottom: 0;
          color: black;
          font-family: "Roboto", sans-serif;
          font-size: 13px;
          font-weight: 300;
          line-height: 16px; }

.main_sec4 {
  padding-top: 80px;
  display: inline-block;
  width: 100%;
  -webkit-background-size: cover;
          background-size: cover;
  background-repeat: no-repeat;
  background-position: center; }
  .main_sec4 .container > h4 {
    color: black;
    font-family: "Roboto", sans-serif;
    font-size: 32px;
    font-weight: 400;
    line-height: 1;
    margin-top: 0;
    margin-bottom: 55px;
    padding-bottom: 55px;
    position: relative; }
    .main_sec4 .container > h4 span {
      position: absolute;
      display: inline-block;
      width: 100%;
      height: 2px;
      background-color: #3aaa35;
      right: 70%;
      bottom: 0; }
    .main_sec4 .container > h4 i {
      position: absolute;
      display: inline-block;
      width: 9px;
      height: 9px;
      -webkit-border-radius: 50%;
              border-radius: 50%;
      background-color: #3aaa35;
      right: 70%;
      bottom: -2.5px; }
  .main_sec4 .item {
    float: left;
    display: inline-block;
    margin: 6px; }
    .main_sec4 .item .item_bg {
      display: inline-block;
      height: -webkit-calc(100% - 36px);
      height: calc(100% - 36px);
      width: -webkit-calc(100% - 36px);
      width: calc(100% - 36px);
      -webkit-background-size: cover;
              background-size: cover;
      background-repeat: no-repeat;
      background-position: center;
      position: relative;
      padding: 18px; }
      .main_sec4 .item .item_bg .item_inform {
        display: inline-block;
        position: relative;
        text-align: left;
        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-pack: center;
        -webkit-justify-content: center;
            -ms-flex-pack: center;
                justify-content: center;
        -webkit-box-align: start;
        -webkit-align-items: start;
            -ms-flex-align: start;
                align-items: start; }
        .main_sec4 .item .item_bg .item_inform:before {
          content: '';
          display: inline-block;
          position: absolute;
          left: -18px;
          top: -18px;
          width: -webkit-calc(100% + 36px);
          width: calc(100% + 36px);
          height: -webkit-calc(100% + 36px);
          height: calc(100% + 36px);
          background-color: rgba(0, 0, 0, 0.57); }
        .main_sec4 .item .item_bg .item_inform:hover h2 {
          color: #000;
          -webkit-transition: 0.8s;
          -o-transition: 0.8s;
          transition: 0.8s; }
          .main_sec4 .item .item_bg .item_inform:hover h2:before {
            width: 100%;
            -webkit-transition: 1s;
            -o-transition: 1s;
            transition: 1s; }
        .main_sec4 .item .item_bg .item_inform:hover a {
          color: #025229;
          -webkit-transition: 0.8s;
          -o-transition: 0.8s;
          transition: 0.8s; }
          .main_sec4 .item .item_bg .item_inform:hover a:hover i {
            margin-left: 5px;
            -webkit-transition: 0.25s;
            -o-transition: 0.25s;
            transition: 0.25s; }
        .main_sec4 .item .item_bg .item_inform:hover p {
          color: #000;
          -webkit-transition: 0.8s;
          -o-transition: 0.8s;
          transition: 0.8s; }
        .main_sec4 .item .item_bg .item_inform:hover button {
          color: white;
          background-color: #3aaa35;
          border-bottom: 3px #2a6c25 solid;
          -webkit-transition: 0.25s;
          -o-transition: 0.25s;
          transition: 0.25s; }
        .main_sec4 .item .item_bg .item_inform:hover:before {
          background-color: transparent; }
        .main_sec4 .item .item_bg .item_inform:after {
          content: "";
          top: 50%;
          left: 50%;
          width: 0;
          height: 0;
          background: rgba(255, 255, 255, 0.75);
          -webkit-transition: .5s;
          -o-transition: .5s;
          transition: .5s;
          position: absolute; }
        .main_sec4 .item .item_bg .item_inform:hover:after {
          top: 0;
          left: 0;
          width: 100%;
          height: 100%; }
  .main_sec4 .item_big {
    height: 588px;
    width: 39%; }
    .main_sec4 .item_big .item_bg .item_inform {
      padding: 0 60px;
      height: 100%;
      width: -webkit-calc(100% - 120px);
      width: calc(100% - 120px); }
      .main_sec4 .item_big .item_bg .item_inform h2 {
        z-index: 5;
        color: white;
        font-family: "Roboto", sans-serif;
        font-size: 24px;
        font-weight: 400;
        line-height: 30px;
        -webkit-transition: 0.8s;
        -o-transition: 0.8s;
        transition: 0.8s;
        margin-top: 0;
        margin-bottom: 35px;
        padding-bottom: 40px;
        position: relative; }
        .main_sec4 .item_big .item_bg .item_inform h2:before {
          content: '';
          display: inline-block;
          position: absolute;
          left: -78px;
          bottom: 0;
          height: 2px;
          width: 0;
          background-color: #3aaa35;
          -webkit-transition: 1s;
          -o-transition: 1s;
          transition: 1s; }
      .main_sec4 .item_big .item_bg .item_inform a {
        margin-top: 10px;
        color: #fff;
        font-family: "Roboto", sans-serif;
        font-size: 16px;
        font-weight: 400;
        line-height: 18px;
        text-decoration: none;
        z-index: 5;
        -webkit-transition: 0.8s;
        -o-transition: 0.8s;
        transition: 0.8s; }
      .main_sec4 .item_big .item_bg .item_inform p {
        z-index: 5;
        color: white;
        font-family: "Roboto", sans-serif;
        font-size: 14px;
        font-weight: 400;
        line-height: 22px;
        -webkit-transition: 0.8s;
        -o-transition: 0.8s;
        transition: 0.8s;
        margin: 0; }
      .main_sec4 .item_big .item_bg .item_inform button {
        z-index: 5;
        margin-top: 15px;
        display: inline-block;
        -webkit-transition: 0.5s;
        -o-transition: 0.5s;
        transition: 0.5s;
        font-family: "Roboto", sans-serif;
        font-size: 15px;
        font-weight: 500;
        padding: 20px 53px;
        -webkit-border-radius: 5px;
                border-radius: 5px;
        border: 0;
        letter-spacing: 1px;
        -webkit-transition: .25s;
        -o-transition: .25s;
        transition: .25s;
        color: #3aaa35;
        background-color: #fff;
        border-bottom: 3px #8c918d solid; }
  .main_sec4 .item_small {
    width: 28%;
    height: 288px; }
    .main_sec4 .item_small .item_bg .item_inform {
      height: 100%;
      width: -webkit-calc(100% - 40px);
      width: calc(100% - 40px);
      padding: 0 20px; }
      .main_sec4 .item_small .item_bg .item_inform h2 {
        z-index: 5;
        color: white;
        font-family: "Roboto", sans-serif;
        font-size: 18px;
        font-weight: 400;
        line-height: 24px;
        margin-top: 0;
        margin-bottom: 24px;
        padding-bottom: 24px;
        position: relative;
        width: 100%; }
        .main_sec4 .item_small .item_bg .item_inform h2:before {
          content: '';
          display: inline-block;
          position: absolute;
          left: -38px;
          bottom: 0;
          height: 2px;
          width: 0;
          background-color: #3aaa35;
          -webkit-transition: 0.3s;
          -o-transition: 0.3s;
          transition: 0.3s; }
      .main_sec4 .item_small .item_bg .item_inform a {
        margin-top: 10px;
        z-index: 5;
        color: #fff;
        font-family: "Roboto", sans-serif;
        font-size: 16px;
        font-weight: 400;
        line-height: 18px;
        text-decoration: none;
        -webkit-transition: 0.8s;
        -o-transition: 0.8s;
        transition: 0.8s;
        margin-bottom: 15px; }
      .main_sec4 .item_small .item_bg .item_inform p {
        z-index: 5;
        color: white;
        font-family: "Roboto", sans-serif;
        font-size: 12px;
        font-weight: 400;
        line-height: 18px;
        margin: 0; }
      .main_sec4 .item_small .item_bg .item_inform button {
        z-index: 5;
        margin-top: 15px;
        display: inline-block;
        -webkit-transition: 0.5s;
        -o-transition: 0.5s;
        transition: 0.5s;
        font-family: "Roboto", sans-serif;
        font-size: 12px;
        font-weight: 500;
        padding: 10px 20px;
        -webkit-border-radius: 5px;
                border-radius: 5px;
        border: 0;
        letter-spacing: 1px;
        -webkit-transition: .25s;
        -o-transition: .25s;
        transition: .25s;
        color: #3aaa35;
        background-color: #fff;
        border-bottom: 3px #8c918d solid; }

.main_sec5 {
  background-image: url("../images/main_sec5_bg.jpg");
  -webkit-background-size: cover;
          background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding: 60px 0;
  background-attachment: fixed; }
  .main_sec5 .container {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center; }
  .main_sec5 p {
    display: inline-block;
    color: #fff;
    color: white;
    font-family: "Roboto", sans-serif;
    font-size: 32px;
    line-height: 48px;
    font-weight: 400;
    margin-top: 0;
    margin-bottom: 0; }
    .main_sec5 p span {
      font-weight: 700; }
  .main_sec5 form {
    display: inline-block;
    padding: 35px 65px;
    padding-bottom: 5px;
    background-color: rgba(255, 255, 255, 0.15);
    border: 2px #fff solid; }
    .main_sec5 form .mat-input {
      width: -webkit-calc(100% - 20px);
      width: calc(100% - 20px); }
    .main_sec5 form button {
      display: block;
      margin: 25px auto;
      -webkit-transition: 0.5s;
      -o-transition: 0.5s;
      transition: 0.5s;
      font-family: "Roboto", sans-serif;
      font-size: 12px;
      font-weight: 500;
      padding: 10px 20px;
      -webkit-border-radius: 5px;
              border-radius: 5px;
      border: 0;
      letter-spacing: 1px;
      -webkit-transition: .25s;
      -o-transition: .25s;
      transition: .25s;
      color: #3aaa35;
      background-color: #fff;
      border-bottom: 3px #8c918d solid; }
      .main_sec5 form button:hover {
        color: white;
        background-color: #3aaa35;
        border-bottom: 3px #2a6c25 solid; }
    .main_sec5 form p {
      text-align: center;
      color: white;
      font-family: "Roboto", sans-serif;
      font-size: 18px;
      font-weight: 400;
      line-height: 24px;
      margin-bottom: 15px; }

.main_sec6 {
  padding-top: 110px;
  padding-bottom: 70px;
  background-image: url("../images/bg_main_sec6.jpg");
  -webkit-background-size: cover;
          background-size: cover;
  background-repeat: no-repeat;
  background-position: center; }
  .main_sec6 .container > h4 {
    color: black;
    font-family: "Roboto", sans-serif;
    font-size: 32px;
    font-weight: 400;
    line-height: 1;
    margin-top: 0;
    margin-bottom: 55px;
    padding-bottom: 55px;
    position: relative; }
    .main_sec6 .container > h4 span {
      position: absolute;
      display: inline-block;
      width: 100%;
      height: 2px;
      background-color: #3aaa35;
      right: 70%;
      bottom: 0; }
    .main_sec6 .container > h4 i {
      position: absolute;
      display: inline-block;
      width: 9px;
      height: 9px;
      -webkit-border-radius: 50%;
              border-radius: 50%;
      background-color: #3aaa35;
      right: 70%;
      bottom: -2.5px; }
  .main_sec6 .slider2 .item {
    padding: 0 15px; }
    .main_sec6 .slider2 .item a.picture {
      height: 380px;
      display: block;
      width: 100%;
      position: relative;
      -webkit-background-size: cover;
              background-size: cover;
      background-repeat: no-repeat;
      background-position: center; }
      .main_sec6 .slider2 .item a.picture:after {
        content: "";
        top: 50%;
        left: 50%;
        width: 0;
        height: 0;
        background: rgba(58, 170, 53, 0.25);
        -webkit-transition: .3s;
        -o-transition: .3s;
        transition: .3s;
        position: absolute; }
      .main_sec6 .slider2 .item a.picture:hover:after {
        top: 0;
        left: 0;
        width: 100%;
        height: 100%; }
    .main_sec6 .slider2 .item a.text {
      color: black;
      font-family: "Roboto", sans-serif;
      font-size: 14px;
      font-weight: 400;
      line-height: 18px;
      text-transform: uppercase;
      text-decoration: none;
      margin: 18px 0;
      display: inline-block; }
    .main_sec6 .slider2 .item p {
      margin-bottom: 0;
      display: block;
      width: -webkit-calc(100% - 80px);
      width: calc(100% - 80px);
      bottom: 0;
      left: 0;
      background-color: #fff;
      -webkit-transition: .25s;
      -o-transition: .25s;
      transition: .25s;
      z-index: 5;
      color: black;
      font-family: "Roboto", sans-serif;
      padding: 15px 20px;
      padding-right: 60px;
      font-size: 14px;
      font-weight: 400;
      line-height: 18px;
      text-transform: uppercase;
      position: relative;
      min-height: 30px; }
      .main_sec6 .slider2 .item p span {
        position: absolute;
        right: 22px;
        top: 15px;
        display: inline-block;
        height: 34px;
        width: 34px;
        background-position: center;
        background-repeat: no-repeat;
        -webkit-background-size: container container;
                background-size: container;
        background-image: url("../images/imageseelem.png"); }
        .main_sec6 .slider2 .item p span i {
          font-style: normal;
          width: 24px;
          line-height: 23px;
          text-align: center;
          display: inline-block;
          color: black;
          font-family: "Roboto", sans-serif;
          font-size: 14px;
          font-weight: 700;
          text-transform: uppercase; }

.slick-slide.slick-current.slick-active a.picture {
  pointer-events: none;
  position: relative; }
  .slick-slide.slick-current.slick-active a.picture:after {
    display: none; }
  .slick-slide.slick-current.slick-active a.picture:before {
    content: '';
    position: absolute;
    display: inline-block;
    height: 100%;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.5); }

.slick-slide.slick-current.slick-active a.text {
  opacity: 0 !important; }

.slick-slide.slick-current.slick-active p {
  opacity: 0 !important; }

.slick-slide.slick-current.slick-active + .slick-slide.slick-active + .slick-slide.slick-active + .slick-slide.slick-active + .slick-slide.slick-active a.picture {
  pointer-events: none;
  position: relative; }
  .slick-slide.slick-current.slick-active + .slick-slide.slick-active + .slick-slide.slick-active + .slick-slide.slick-active + .slick-slide.slick-active a.picture:after {
    display: none; }
  .slick-slide.slick-current.slick-active + .slick-slide.slick-active + .slick-slide.slick-active + .slick-slide.slick-active + .slick-slide.slick-active a.picture:before {
    content: '';
    position: absolute;
    display: inline-block;
    height: 100%;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.5); }

.slick-slide.slick-current.slick-active + .slick-slide.slick-active + .slick-slide.slick-active + .slick-slide.slick-active + .slick-slide.slick-active a.text {
  opacity: 0 !important; }

.slick-slide.slick-current.slick-active + .slick-slide.slick-active + .slick-slide.slick-active + .slick-slide.slick-active + .slick-slide.slick-active p {
  opacity: 0 !important; }

.blocWithNumberOfItemss {
  text-align: center;
  margin-top: 65px; }
  .blocWithNumberOfItemss i {
    font-size: 36px;
    padding: 0 10px;
    margin: 0 10px;
    position: relative;
    top: 3px;
    color: #989797; }
    .blocWithNumberOfItemss i:hover {
      color: #00a651; }
  .blocWithNumberOfItemss .second {
    color: black;
    font-family: "Roboto", sans-serif;
    font-weight: 300;
    line-height: 18px;
    text-transform: uppercase;
    font-size: 36px;
    position: relative;
    top: 15px; }
  .blocWithNumberOfItemss .first {
    color: black;
    font-family: "Roboto", sans-serif;
    font-weight: 300;
    line-height: 18px;
    text-transform: uppercase;
    font-size: 24px;
    position: relative;
    top: 15px;  }
   .blocWithNumberOfItemss {
   	display: block;
   	width: 230px;
   	margin: 0 auto;
   }
  .blocWithNumberOfItemss .arrow_left {
  	float: right;
    display: inline-block; }
  .blocWithNumberOfItemss .arrow_right {
  	float: left;
    display: inline-block; }

.footer .foot_top_left {
  width: 50%;
  display: inline-block;
  float: left;
  height: 100%; }

.footer .foot_top_right {
  width: 50%;
  display: inline-block;
  float: right; }
  .footer .foot_top_right nav {
    display: inline-block;
    width: 100%;
    margin-bottom: 15px; }
    .footer .foot_top_right nav ul {
      padding-left: 0;
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-justify-content: space-around;
          -ms-flex-pack: distribute;
              justify-content: space-around; }
      .footer .foot_top_right nav ul li {
        display: inline-block;
        list-style-type: none; }
        .footer .foot_top_right nav ul li a {
          font-family: "Roboto", sans-serif;
          font-size: 12px;
          font-weight: 300;
          line-height: 36px;
          color: #989797;
          text-decoration: none;
          -webkit-transition: .25s;
          -o-transition: .25s;
          transition: .25s; }
          .footer .foot_top_right nav ul li a:hover {
            -webkit-transition: .25s;
            -o-transition: .25s;
            transition: .25s;
            color: #fff; }
  .footer .foot_top_right .communication {
    margin-top: 15px;
    display: inline-block;
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-around;
        -ms-flex-pack: distribute;
            justify-content: space-around; }
    .footer .foot_top_right .communication i {
      color: #989797;
      font-size: 16px;
      line-height: 30px; }
    .footer .foot_top_right .communication a {
      color: #989797;
      font-family: "Roboto", sans-serif;
      font-size: 12px;
      font-weight: 300;
      line-height: 21px;
      text-decoration: none;
      -webkit-transition: .25s;
      -o-transition: .25s;
      transition: .25s;
      line-height: 30px; }
      .footer .foot_top_right .communication a:hover {
        -webkit-transition: .25s;
        -o-transition: .25s;
        transition: .25s;
        color: #fff; }
    .footer .foot_top_right .communication ul {
      padding-left: 0; }
      .footer .foot_top_right .communication ul li {
        display: inline-block;
        list-style-type: none;
        margin-right: 20px; }
        .footer .foot_top_right .communication ul li:last-of-type {
          margin-right: 0; }
        .footer .foot_top_right .communication ul li a {
          display: inline-block;
          height: 30px;
          width: 30px;
          text-align: center;
          background-color: #989797;
          -webkit-transition: .25s;
          -o-transition: .25s;
          transition: .25s;
          -webkit-border-radius: 50%;
                  border-radius: 50%; }
          .footer .foot_top_right .communication ul li a i {
            line-height: 30px;
            color: #fff; }
          .footer .foot_top_right .communication ul li a:hover {
            background-color: #00a651; }

.footer ul {
  margin: 0; }

.footer .foot_top {
  background-color: #212121;
  min-height: 165px;
  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; }
  .footer .foot_top .container {
    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; }

.footer .foot_bottom {
  min-height: 50px;
  background-color: #131313;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center; }
  .footer .foot_bottom .container {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center; }
  .footer .foot_bottom p {
    color: #666;
    font-family: "Roboto", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 27px;
    margin-bottom: 0; }
  .footer .foot_bottom ul {
    padding-left: 0; }
    .footer .foot_bottom ul li {
      display: inline-block;
      list-style-type: none;
      margin-right: 20px; }
      .footer .foot_bottom ul li:last-of-type {
        margin-right: 0; }
      .footer .foot_bottom ul li a {
        background-color: transparent;
        height: 30px;
        width: 30px;
        display: inline-block;
        -webkit-border-radius: 50%;
                border-radius: 50%;
        text-align: center;
        border: 1px #646464 solid;
        -webkit-transition: .25s;
        -o-transition: .25s;
        transition: .25s; }
        .footer .foot_bottom ul li a i {
          color: #b3b3b3;
          line-height: 30px; }
        .footer .foot_bottom ul li a:hover {
          -webkit-transition: .25s;
          -o-transition: .25s;
          transition: .25s;
          border: 1px #1dde85 solid; }
          .footer .foot_bottom ul li a:hover i {
            color: #00a651; }
  .footer .foot_bottom a {
    color: #666;
    font-family: "Roboto", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 27px;
    text-decoration: none;
    -webkit-transition: .25s;
    -o-transition: .25s;
    transition: .25s; }
    .footer .foot_bottom a img {
      display: inline-block;
      width: 70px; }
    .footer .foot_bottom a:hover {
      -webkit-transition: .25s;
      -o-transition: .25s;
      transition: .25s;
      color: #fff; }

body.bg_body .main {
  background-image: url("../images/bg_body.jpg");
  -webkit-background-size: 100% 100%;
          background-size: 100%;
  background-repeat-y: repeat;
  background-position: center; }

.breadcrumb ul {
  padding-top: 20px;
  padding-bottom: 20px;
  margin: 0;
  padding-left: 0; }
  .breadcrumb ul li {
    list-style-type: none;
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 16px;
    display: inline-block; }
    .breadcrumb ul li a {
      color: #00a651;
      text-decoration: none;
      padding-right: 22px;
      position: relative; }
      .breadcrumb ul li a:before {
        content: '';
        position: absolute;
        height: 21px;
        width: 1px;
        background-color: #00a651;
        right: 9px;
        top: 0; }
    .breadcrumb ul li p {
      margin: 0;
      color: black; }

.about_us_sec1 .container > h4, .about_us_sec2 .container > h4 {
  color: black;
  font-family: "Roboto", sans-serif;
  font-size: 32px;
  font-weight: 400;
  line-height: 1;
  margin-top: 0;
  margin-bottom: 55px;
  padding-bottom: 55px;
  position: relative; }
  .about_us_sec1 .container > h4 span, .about_us_sec2 .container > h4 span {
    position: absolute;
    display: inline-block;
    width: 100%;
    height: 2px;
    background-color: #3aaa35;
    right: 70%;
    bottom: 0; }
  .about_us_sec1 .container > h4 i, .about_us_sec2 .container > h4 i {
    position: absolute;
    display: inline-block;
    width: 9px;
    height: 9px;
    -webkit-border-radius: 50%;
            border-radius: 50%;
    background-color: #3aaa35;
    right: 70%;
    bottom: -2.5px; }
.table-responsive p {
  padding-left: 15px;
}
.block_about_us {
  display: inline-block;
  width: 100%;
  margin-top: 65px;
  padding: 80px;
  padding-top: 0;
  position: relative;
  background-color: #fff;
  margin-bottom: 20px; }
  .block_about_us:after {
    content: '';
    z-index: 1;
    display: inline-block;
    height: 660px;
    width: 395px;
    background-color: #00a651;
    position: absolute;
    left: -17px;
    top: -27px; }
  .block_about_us:before {
    content: '';
    z-index: 1;
    display: inline-block;
    height: 660px;
    width: 395px;
    background-color: #fff;
    position: absolute;
    left: -53px;
    top: -63px; }
  .block_about_us .block_about_picture {
    height: 660px;
    width: 395px;
    float: left;
    position: relative;
    left: -115px;
    top: -45px;
    z-index: 2;
    -webkit-background-size: cover;
            background-size: cover;
    background-position: center;
    background-repeat: no-repeat; }
  .block_about_us p {
    color: black;
    font-family: "Roboto", sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 26px; }
    .block_about_us p span {
      display: inline-block;
      text-align: right;
      width: 100%;
      margin-top: 130px; }
  .block_about_us h3 {
    margin-top: 80px;
    font-family: "Roboto", sans-serif;
    font-size: 36px;
    font-weight: 400;
    line-height: 26px;
    color: black; }
    .block_about_us h3 span {
      color: #00a651; }

.about_us_sec2 {
  padding-bottom: 60px;
  display: inline-block;
  width: 100%; }
  .about_us_sec2 .item_all {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: start;
        -ms-flex-pack: distribute;
            justify-content: start; }
  .about_us_sec2 .item {
    display: inline-block;
    float: left;
    width: 25%;
    padding: 0 15px; }
    .about_us_sec2 .item .item_pict {
      display: block;
      width: 100%;
      height: 340px;
      -webkit-background-size: cover;
              background-size: cover;
      background-position: center;
      background-repeat: no-repeat; }
    .about_us_sec2 .item .item_text {
      display: inline-block;
      width: -webkit-calc(100% - 20px);
      width: calc(100% - 20px);
      background-color: #fff;
      padding: 0 10px;
      color: black;
      font-family: "Roboto", sans-serif;
      line-height: 1; }
      .about_us_sec2 .item .item_text h3 {
        font-size: 16px;
        font-weight: 500; }
      .about_us_sec2 .item .item_text p {
        font-size: 14px;
        font-weight: 300; }
.work_sec1 {
  overflow: hidden;
}
.work_sec1 .container > h4 {
  color: black;
  font-family: "Roboto", sans-serif;
  font-size: 32px;
  font-weight: 400;
  line-height: 1;
  margin-top: 0;
  margin-bottom: 55px;
  padding-bottom: 55px;
  position: relative; }
  .work_sec1 .container > h4 span {
    position: absolute;
    display: inline-block;
    width: 100%;
    height: 2px;
    background-color: #3aaa35;
    right: 70%;
    bottom: 0; }
  .work_sec1 .container > h4 i {
    position: absolute;
    display: inline-block;
    width: 9px;
    height: 9px;
    -webkit-border-radius: 50%;
            border-radius: 50%;
    background-color: #3aaa35;
    right: 70%;
    bottom: -2.5px; }

.work_sec1 .element {
  background-color: #fff;
  min-height: 240px;
  margin-bottom: 25px; }
  .work_sec1 .element .block_text h3 {
    color: #000;
    font-family: "Roboto", sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 24px; }
  .work_sec1 .element .block_text p {
    color: #000;
    font-family: "Roboto", sans-serif;
    font-size: 18px;
    font-weight: 300;
    line-height: 26px; }

.work_sec1 .elem_left {
  display: inline-block;
  width: -webkit-calc(85% - 37%);
  width: calc(85% - 37%);
  margin-right: 15%;
  padding-left: 37%;
  position: relative; }
  .work_sec1 .elem_left .block_picture {
    display: inline-block;
    position: absolute;
    left: 0;
    height: 100%;
    width: 37%;
    -webkit-background-size: cover;
            background-size: cover;
    background-position: center;
    background-repeat: no-repeat; }
  .work_sec1 .elem_left .block_text {
    padding: 50px 76px;
    padding-left: 0;
    position: relative; }
    .work_sec1 .elem_left .block_text i {
      position: absolute;
      right: 28px;
      top: 22px;
      font-family: "Roboto", sans-serif;
      font-weight: 400;
      line-height: 1;
      color: black;
      font-size: 31px;
      font-style: normal; }
      .work_sec1 .elem_left .block_text i span {
        color: #00a651;
        font-size: 51px; }

.work_sec1 .elem_right {
  display: inline-block;
  width: -webkit-calc(85% - 37%);
  width: calc(85% - 37%);
  margin-left: 15%;
  padding-right: 37%;
  position: relative; }
  .work_sec1 .elem_right .block_picture {
    display: inline-block;
    position: absolute;
    right: 0;
    height: 100%;
    width: 37%;
    -webkit-background-size: cover;
            background-size: cover;
    background-position: center;
    background-repeat: no-repeat; }
  .work_sec1 .elem_right .block_text {
    padding: 50px 76px;
    padding-right: 0;
    position: relative;
    text-align: right; }
    .work_sec1 .elem_right .block_text i {
      position: absolute;
      left: 28px;
      top: 22px;
      font-family: "Roboto", sans-serif;
      font-weight: 400;
      line-height: 1;
      color: black;
      font-style: normal;
      font-size: 31px; }
      .work_sec1 .elem_right .block_text i span {
        color: #00a651;
        font-size: 51px; }


  .work_sec2 .container > h4 {
    color: black;
    font-family: "Roboto", sans-serif;
    font-size: 32px;
    font-weight: 400;
    line-height: 1;
    margin-top: 0;
    margin-bottom: 55px;
    padding-bottom: 55px;
    position: relative; }
    .work_sec2 .container > h4 span {
      position: absolute;
      display: inline-block;
      width: 100%;
      height: 2px;
      background-color: #3aaa35;
      right: 70%;
      bottom: 0; }
    .work_sec2 .container > h4 i {
      position: absolute;
      display: inline-block;
      width: 9px;
      height: 9px;
      -webkit-border-radius: 50%;
              border-radius: 50%;
      background-color: #3aaa35;
      right: 70%;
      bottom: -2.5px; }
  .work_sec2 .block_work_sec2 {
    background-color: #fff;
    position: relative; }
    .work_sec2 .block_work_sec2 .work_sec2_picture.work_block{
      height: 100%;
    }
    .work_sec2 .block_work_sec2 .work_sec2_picture {
      display: inline-block;
      width: 295px;
      height: 33.3%;
      position: absolute;
      left: 0;
      top: 0;
      -webkit-background-size: cover;
              background-size: cover;
      background-position: center;
      background-repeat: no-repeat; }
      .work_sec2 .block_work_sec2 .work_sec2_picture_garant {
      display: inline-block;
      width: 295px;
      height: 100%;
      position: absolute;
      left: 0;
      top: 0;
      -webkit-background-size: cover;
              background-size: cover;
      background-position: center;
      background-repeat: no-repeat; }
      .work_sec2 .block_work_sec2 .work_sec2_picture:nth-child(2) {
      display: inline-block;
      width: 295px;
      height: 33.3%;
      position: absolute;
      left: 0;
      top: 33.3%;
      -webkit-background-size: cover;
              background-size: cover;
      background-position: center;
      background-repeat: no-repeat; }
      .work_sec2 .block_work_sec2 .work_sec2_picture:nth-child(3) {
      display: inline-block;
      width: 295px;
      height: 33.3%;
      position: absolute;
      left: 0;
      top: 66.6%;
      -webkit-background-size: cover;
              background-size: cover;
      background-position: center;
      background-repeat: no-repeat; }
    .work_sec2 .block_work_sec2 .work_sec2_text {
      padding-left: 295px; }
      .work_sec2 .block_work_sec2 .work_sec2_text ul {
        counter-reset: number;
        margin: 90px 0;
        display: inline-block;
        width: 100%;
        padding-left: 0; }
        .work_sec2 .block_work_sec2 .work_sec2_text ul li {
          list-style-type: none;
          position: relative;
          padding-left: 85px;
          margin-bottom: 40px;
          padding-right: 15px; }
          .work_sec2 .block_work_sec2 .work_sec2_text ul li:last-of-type {
            margin-bottom: 0; }
          .work_sec2 .block_work_sec2 .work_sec2_text ul li:before {
            counter-increment: number;
            content: counter(number);
            position: absolute;
            top: 0px;
            left: 20px;
            color: #000;
            text-align: center;
            font-family: "Roboto", sans-serif;
            color: black;
            font-size: 18px; }
          .work_sec2 .block_work_sec2 .work_sec2_text ul li:after {
            font-family: "Roboto", sans-serif;
            content: '/';
            position: absolute;
            left: 35px;
            top: -10px;
            color: #00a651;
            font-size: 30px; }

.accordion .item_acord {
  display: inline-block;
  width: 100%;
  margin-bottom: 20px;
  background-color: #fff;
  border-left: 9px #00a651 solid; }
  .accordion .item_acord .hed_acord h2 {
    margin-top: 15px;
    display: inline-block;
    width: -webkit-calc(100% - 80px);
    width: calc(100% - 80px);
    padding: 0 40px;
    color: black;
    font-family: "Roboto", sans-serif;
    font-size: 21px;
    font-weight: 400;
    line-height: 1;
    cursor: pointer; }
    .accordion .item_acord .hed_acord h2 i {
      float: right;
      width: 27px;
      height: 27px;
      line-height: 27px;
      border: 2px #000 solid;
      color: #000;
      -webkit-border-radius: 50%;
              border-radius: 50%;
      text-align: center;
      font-size: 16px;
      -webkit-transition: 0.25s;
      -o-transition: 0.25s;
      transition: 0.25s; }
  .accordion .item_acord .body_acord {
    display: none; }

table {
    width: 100%;
    border-collapse: collapse;
    color: black;
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1;
}
table {
    width: 100%;
    max-width: 100%;
    margin-bottom: 20px;
}
table {
    background-color: transparent;
}

table {
    border-spacing: 0;
    border-collapse: collapse;
}

table {
    display: table;
    border-collapse: separate;
    border-spacing: 2px;
    border-color: grey;
}

.table-responsive {
  min-height: .01%;
  overflow-x: auto; }

table {
  width: 100%;
  border-collapse: collapse;
  color: black;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1; }
  table thead tr th {
    background-color: #dedede;
    border-top: 1px solid black;
    border-bottom: 1px solid black;
    padding: 15px 10px;
    border-right: 2px #00a651 solid;
    font-weight: 400; }
    table thead tr th:first-of-type {
      text-align: left;
      padding-left: 30px; }
    table thead tr th:last-of-type {
      border-right: 0; }
  table tbody tr:nth-child(2n) td {
    background-color: #abe2c6; }
  table tbody tr td {
    text-align: center;
    padding: 28px 10px;
    border-right: 2px #00a651 solid; }
    table tbody tr td:last-of-type {
      border-right: 0; }
    table tbody tr td:first-of-type {
      text-align: left;
      padding-left: 30px; }

.item_acord.active .hed_acord h2 i {
  -webkit-transform: rotate(-180deg);
      -ms-transform: rotate(-180deg);
          transform: rotate(-180deg);
  -webkit-transition: 0.25s;
  -o-transition: 0.25s;
  transition: 0.25s;
  color: #999999;
  border-color: #999999; }

.praise_sec1 .container > h4, .praise_sec2 .container > h4 {
  color: black;
  font-family: "Roboto", sans-serif;
  font-size: 32px;
  font-weight: 400;
  line-height: 1;
  margin-top: 0;
  margin-bottom: 55px;
  padding-bottom: 55px;
  position: relative; }
  .praise_sec1 .container > h4 span, .praise_sec2 .container > h4 span {
    position: absolute;
    display: inline-block;
    width: 100%;
    height: 2px;
    background-color: #3aaa35;
    right: 70%;
    bottom: 0; }
  .praise_sec1 .container > h4 i, .praise_sec2 .container > h4 i {
    position: absolute;
    display: inline-block;
    width: 9px;
    height: 9px;
    -webkit-border-radius: 50%;
            border-radius: 50%;
    background-color: #3aaa35;
    right: 70%;
    bottom: -2.5px; }

.praise_sec2 {
  padding-bottom: 1px; }

.praise_sec1 {
  padding-bottom: 60px; }
  .praise_sec1 .item_all {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-around;
        -ms-flex-pack: distribute;
            justify-content: space-around; }
  .praise_sec1 .item {
    display: inline-block;
    float: left;
    width: 25%;
    padding: 0 15px; }
    .praise_sec1 .item .item_pict {
      display: block;
      width: 100%;
      height: 200px;
      position: relative;
      -webkit-background-size: cover;
              background-size: cover;
      background-position: center;
      background-repeat: no-repeat; }
      .praise_sec1 .item .item_pict span {
        position: absolute;
        display: inline-block;
        width: 170px;
        height: 70px;
        color: white;
        font-family: "Roboto", sans-serif;
        font-size: 13px;
        font-weight: 500;
        line-height: 35px;
        left: 50%;
        margin-left: -85px;
        top: -16px;
        text-align: center;
        -webkit-background-size: contain;
                background-size: contain;
        background-position: center;
        background-repeat: no-repeat;
        background-image: url("../images/green_w.png"); }
    .praise_sec1 .item .item_text {
      display: block;
      width: -webkit-calc(100% - 20px);
      width: calc(100% - 20px);
      background-color: #fff;
      padding: 15px 10px;
      color: black;
      font-family: "Roboto", sans-serif;
      line-height: 1; }
      .praise_sec1 .item .item_text p {
        color: black;
        font-size: 14px;
        font-weight: 400;
        margin-bottom: 0; }

body.bg_body.error .main {
  background-position: center;
  background-repeat: no-repeat;
  -webkit-background-size: cover;
          background-size: cover; }

.se1_articles {
  padding-bottom: 1px; }
  .se1_articles .container > h4 {
    color: black;
    font-family: "Roboto", sans-serif;
    font-size: 32px;
    font-weight: 400;
    line-height: 1;
    margin-top: 0;
    margin-bottom: 55px;
    padding-bottom: 55px;
    position: relative; }
    .se1_articles .container > h4 span {
      position: absolute;
      display: inline-block;
      width: 100%;
      height: 2px;
      background-color: #3aaa35;
      right: 70%;
      bottom: 0; }
    .se1_articles .container > h4 i {
      position: absolute;
      display: inline-block;
      width: 9px;
      height: 9px;
      -webkit-border-radius: 50%;
              border-radius: 50%;
      background-color: #3aaa35;
      right: 70%;
      bottom: -2.5px; }

.block_articles {
  display: inline-block;
  width: 100%; }
  .block_articles .elem_left {
    float: left;
    width: -webkit-calc(75% - 15px);
    width: calc(75% - 15px);
    margin-right: 15px; }
    .block_articles .elem_left .item {
      background-color: #fff;
      margin-bottom: 30px;
      display: inline-block;
      width: -webkit-calc(100% - 440px);
      width: calc(100% - 440px);
      padding-left: 375px;
      padding-right: 65px;
      padding-top: 35px;
      padding-bottom: 35px;
      position: relative; }
      .block_articles .elem_left .item div {
        display: inline-block;
        width: 310px;
        position: absolute;
        height: 100%;
        left: 0;
        top: 0;
        background-position: center;
        background-repeat: no-repeat;
        -webkit-background-size: cover;
                background-size: cover; }
      .block_articles .elem_left .item h2 {
        margin-top: 0;
        color: black;
        font-family: "Roboto", sans-serif;
        font-size: 15px;
        font-weight: 500;
        line-height: 21px;
        text-transform: uppercase;
        margin-bottom: 45px; }
      .block_articles .elem_left .item p {
        color: black;
        font-family: "Roboto", sans-serif;
        font-size: 13px;
        font-weight: 300;
        line-height: 18px;
        margin-bottom: 55px; }
      .block_articles .elem_left .item a {
        color: #025229;
        font-family: "Roboto", sans-serif;
        font-size: 16px;
        font-weight: 400;
        line-height: 18px;
        text-decoration: none; }
        .block_articles .elem_left .item a i {
          margin-left: 5px;
          font-size: 20px; }
      .block_articles .elem_left .item:last-of-type {
        margin-bottom: 0; }
  .block_articles .elem_right {
    float: right;
    width: -webkit-calc(25% - 15px);
    width: calc(25% - 15px);
    margin-left: 15px;
    background-color: #fff;
    padding-bottom: 35px; }
    .block_articles .elem_right h3 {
      margin-top: 35px;
      color: #025229;
      font-family: "Roboto", sans-serif;
      font-size: 16px;
      font-weight: 400;
      line-height: 18px;
      text-transform: uppercase;
      padding: 0 20px; }
    .block_articles .elem_right div {
      padding: 0 20px;
      padding-bottom: 28px;
      border-bottom: 2px #e6e6e6 solid; }
      .block_articles .elem_right div h2 {
        color: black;
        font-family: "Roboto", sans-serif;
        font-size: 14px;
        font-weight: 500;
        line-height: 21px; }
      .block_articles .elem_right div p {
        color: black;
        font-family: "Roboto", sans-serif;
        font-size: 12px;
        font-weight: 300;
        line-height: 16px; }
      .block_articles .elem_right div a {
        color: #025229;
        font-family: "Roboto", sans-serif;
        font-size: 16px;
        font-weight: 400;
        line-height: 18px;
        text-decoration: none; }
        .block_articles .elem_right div a i {
          margin-left: 5px;
          font-size: 20px; }
    .block_articles .elem_right .dropdown-item {
      border: 0; }
      .block_articles .elem_right .dropdown-item .dropdown-list {
        border-bottom: 0;
        padding: 0; 
        position: relative;
      }
      .block_articles .elem_right .dropdown-item button {
        padding: 8px;
        width: 100%;
        border: 1px solid #999;
        -webkit-border-radius: 5px;
                border-radius: 5px;
        background-color: transparent;
        text-align: left;
        position: relative; }
        .block_articles .elem_right .dropdown-item button:before {
          content: '\f0d7';
          position: absolute;
          font-family: "FontAwesome";
          right: 8px;
          top: 8px; }
      .block_articles .elem_right .dropdown-item ul {
        padding-left: 0;
        padding: 8px;
        border: 1px solid #999;
        -webkit-border-radius: 5px;
        border-radius: 5px; 
        position: absolute;
        left: 0;
        top: 100%;
        width: calc(100% - 20px);
        background-color: #fff;
        }
        .block_articles .elem_right .dropdown-item ul li {
          list-style-type: none;
          padding-bottom: 5px;
          margin-bottom: 5px;
          border-bottom: 1px #e6e6e6 solid; }
          .block_articles .elem_right .dropdown-item ul li a {
            display: inline-block;
            width: 100%; }

.work_sec2_text.srvice_sec2_text p {
  padding-left: 60px;
  margin-bottom: 15px;
  padding-right: 15px;
  margin-top: 15px;
  display: inline-block;
  color: black;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px; }

.work_sec2 .block_work_sec2 .work_sec2_text.srvice_sec2_text ul {
  counter-reset: number;
  margin: 15px 0;
  display: inline-block;
  width: -webkit-calc(100% - 60px);
  width: calc(100% - 60px);
  padding-left: 60px; }
  .work_sec2 .block_work_sec2 .work_sec2_text.srvice_sec2_text ul li {
    margin-bottom: 30px;
    color: black;
    font-family: "Roboto", sans-serif;
    font-size: 18px;
    text-decoration: underline; }
  .work_sec2 .block_work_sec2 .work_sec2_text.srvice_sec2_text ul li:after {
    top: -9px; }
  .work_sec2 .block_work_sec2 .work_sec2_text.srvice_sec2_text ul li:before {
    top: 0; }

.body_acord.service_tabs p {
  padding-left: 40px;
  padding-top: 15px;
  padding-right: 15px;
  padding-bottom: 15px;
  color: black;
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 30px;
  margin-bottom: 0; }
  .body_acord.service_tabs p span {
    padding-left: 0 !important;
  padding-top: 0 !important;
  padding-right: 0 !important;
  padding-bottom: 0 !important;
  color: black !important;
  font-family: "Roboto", sans-serif !important;
  font-size: 18px !important;
  font-weight: 300 !important;
  line-height: 30px !important;
  }

.sec1_our_services {
  display: inline-block;
  width: 100%; }
  .sec1_our_services .container > h4 {
    color: black;
    font-family: "Roboto", sans-serif;
    font-size: 32px;
    font-weight: 400;
    line-height: 1;
    margin-top: 0;
    margin-bottom: 55px;
    padding-bottom: 55px;
    position: relative; }
    .sec1_our_services .container > h4 span {
      position: absolute;
      display: inline-block;
      width: 100%;
      height: 2px;
      background-color: #3aaa35;
      right: 70%;
      bottom: 0; }
    .sec1_our_services .container > h4 i {
      position: absolute;
      display: inline-block;
      width: 9px;
      height: 9px;
      -webkit-border-radius: 50%;
              border-radius: 50%;
      background-color: #3aaa35;
      right: 70%;
      bottom: -2.5px; }
  .sec1_our_services .item {
    min-height: auto;
    display: inline-block;
    width: 100%; 
    margin-bottom: -5px;
    }
    .sec1_our_services .item.item_left .element_pictur {
      width: 50%;
      float: left;
      min-height: 420px;
      -webkit-background-size: cover;
              background-size: cover;
      background-repeat: no-repeat;
      background-position: center; }
    .sec1_our_services .item.item_left .element_text {
      min-height: -webkit-calc(420px - 110px);
      min-height: calc(420px - 110px);
      width: -webkit-calc(50% - 200px);
      width: calc(50% - 200px);
      float: right;
      padding: 55px 100px;
      background-color: #fff; }
      .sec1_our_services .item.item_left .element_text h2 {
        margin-top: 0;
        padding-bottom: 25px;
        margin-bottom: 25px;
        font-size: 20px;
        font-weight: 400;
        line-height: 30px;
        color: #000;
        font-family: "Roboto", sans-serif;
        position: relative; }
        .sec1_our_services .item.item_left .element_text h2 i {
          position: absolute;
          left: 20px;
          border: 0;
          bottom: 0;
          display: inline-block;
          height: 8px;
          width: 8px;
          background-color: #00a651;
          -webkit-border-radius: 50%;
                  border-radius: 50%; }
          .sec1_our_services .item.item_left .element_text h2 i:before {
            content: '';
            position: absolute;
            display: inline-block;
            width: 160px;
            height: 2px;
            background-color: #00a651;
            right: 100%;
            top: 3px; }
          .sec1_our_services .item.item_left .element_text h2 i:after {
            content: '';
            position: absolute;
            right: 163px;
            border: 0;
            bottom: 0;
            display: inline-block;
            height: 8px;
            width: 8px;
            background-color: #00a651;
            -webkit-border-radius: 50%;
                    border-radius: 50%; }
      .sec1_our_services .item.item_left .element_text ul {
        margin: 0;
        padding-left: 0; }
        .sec1_our_services .item.item_left .element_text ul li {
          list-style-type: none;
          margin-bottom: 18px; }
          .sec1_our_services .item.item_left .element_text ul li a {
            color: #000;
            font-family: "Roboto", sans-serif;
            font-size: 18px;
            font-weight: 300;
            line-height: 1;
            text-decoration: underline;
            -webkit-transition: .25s;
            -o-transition: .25s;
            transition: .25s; }
            .sec1_our_services .item.item_left .element_text ul li a:hover {
              color: #00a651;
              -webkit-transition: .25s;
              -o-transition: .25s;
              transition: .25s; }
          .sec1_our_services .item.item_left .element_text ul li:last-of-type {
            margin-bottom: 0; }
    .sec1_our_services .item.item_right .element_pictur {
      width: 50%;
      float: right;
      min-height: 420px;
      -webkit-background-size: cover;
              background-size: cover;
      background-repeat: no-repeat;
      background-position: center; }
    .sec1_our_services .item.item_right .element_text {
      min-height: -webkit-calc(420px - 110px);
      min-height: calc(420px - 110px);
      width: -webkit-calc(50% - 200px);
      width: calc(50% - 200px);
      float: left;
      padding: 55px 100px;
      background-color: #fff;
      text-align: right; }
      .sec1_our_services .item.item_right .element_text h2 {
        margin-top: 0;
        padding-bottom: 25px;
        margin-bottom: 25px;
        font-size: 20px;
        font-weight: 400;
        line-height: 30px;
        color: #000;
        font-family: "Roboto", sans-serif;
        position: relative; }
        .sec1_our_services .item.item_right .element_text h2 i {
          position: absolute;
          right: 20px;
          border: 0;
          bottom: 0;
          display: inline-block;
          height: 8px;
          width: 8px;
          background-color: #00a651;
          -webkit-border-radius: 50%;
                  border-radius: 50%; }
          .sec1_our_services .item.item_right .element_text h2 i:before {
            content: '';
            position: absolute;
            display: inline-block;
            width: 160px;
            height: 2px;
            background-color: #00a651;
            left: 100%;
            top: 3px; }
          .sec1_our_services .item.item_right .element_text h2 i:after {
            content: '';
            position: absolute;
            left: 163px;
            border: 0;
            bottom: 0;
            display: inline-block;
            height: 8px;
            width: 8px;
            background-color: #00a651;
            -webkit-border-radius: 50%;
                    border-radius: 50%; }
      .sec1_our_services .item.item_right .element_text ul {
        margin: 0;
        padding-left: 0; }
        .sec1_our_services .item.item_right .element_text ul li {
          list-style-type: none;
          margin-bottom: 18px; }
          .sec1_our_services .item.item_right .element_text ul li a {
            color: #000;
            font-family: "Roboto", sans-serif;
            font-size: 18px;
            font-weight: 300;
            line-height: 1;
            text-decoration: underline;
            -webkit-transition: .25s;
            -o-transition: .25s;
            transition: .25s; }
            .sec1_our_services .item.item_right .element_text ul li a:hover {
              color: #00a651;
              -webkit-transition: .25s;
              -o-transition: .25s;
              transition: .25s; }
          .sec1_our_services .item.item_right .element_text ul li:last-of-type {
            margin-bottom: 0; }

.sec_foto_int {
  padding-bottom: 40px; }
  .sec_foto_int > button {
    display: block;
    margin: 0 auto;
    margin-top: 40px;
    padding: 24px 37px;
    border: 0;
    background-color: #3aaa35;
    -webkit-border-radius: 5px;
            border-radius: 5px;
    color: white;
    font-family: "Roboto", sans-serif;
    font-size: 15px;
    font-weight: 400;
    border-bottom: 3px #95d193 solid;
    -webkit-transition: .25s;
    -o-transition: .25s;
    transition: .25s; }
    .sec_foto_int > button:hover {
      color: #3aaa35;
      background-color: #fff;
      border-bottom: 3px #fff solid; }
  .sec_foto_int section {
    margin-left: -15px;
    margin-right: -15px; }
  .sec_foto_int a {
    display: inline-block;
    padding: 15px;
    position: relative; }
    .sec_foto_int a:hover .item_hover p {
      -webkit-transform: translateY(0);
          -ms-transform: translateY(0);
              transform: translateY(0); }
    .sec_foto_int a.mini .item_hover {
      height: 240px; }
    .sec_foto_int a.big .item_hover {
      height: 495px; }
    .sec_foto_int a .item_hover {
      display: block;
      width: 100%;
      height: 100%;
      -webkit-background-size: cover;
              background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      position: relative;
      overflow: hidden; }
      .sec_foto_int a .item_hover p {
        margin-bottom: 0;
        display: inline-block;
        width: -webkit-calc(100% - 80px);
        width: calc(100% - 80px);
        position: absolute;
        bottom: 0;
        left: 0;
        background-color: #fff;
        -webkit-transform: translateY(100%);
            -ms-transform: translateY(100%);
                transform: translateY(100%);
        -webkit-transition: .25s;
        -o-transition: .25s;
        transition: .25s;
        z-index: 5;
        color: black;
        font-family: "Roboto", sans-serif;
        padding: 15px 20px;
        padding-right: 60px;
        font-size: 14px;
        font-weight: 400;
        line-height: 18px;
        text-transform: uppercase;
        min-height: 24px; }
        .sec_foto_int a .item_hover p span {
          position: absolute;
          right: 22px;
          top: 15px;
          display: inline-block;
          height: 34px;
          width: 34px;
          background-position: center;
          background-repeat: no-repeat;
          -webkit-background-size: container container;
                  background-size: container;
          background-image: url("../images/imageseelem.png"); }
          .sec_foto_int a .item_hover p span i {
            font-style: normal;
            width: 24px;
            line-height: 23px;
            text-align: center;
            display: inline-block;
            color: black;
            font-family: "Roboto", sans-serif;
            font-size: 14px;
            font-weight: 700;
            text-transform: uppercase; }
      .sec_foto_int a .item_hover:after {
        content: "";
        top: 50%;
        left: 50%;
        width: 0;
        height: 0;
        background: rgba(255, 255, 255, 0.48);
        -webkit-transition: .3s;
        -o-transition: .3s;
        transition: .3s;
        position: absolute; }
      .sec_foto_int a .item_hover:hover:before {
        position: absolute;
        content: '\f00e';
        font-family: "FontAwesome";
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        color: #000;
        font-size: 35px;
        z-index: 99999;
        opacity: 0.8; }
      .sec_foto_int a .item_hover:hover:after {
        top: 0;
        left: 0;
        width: 100%;
        height: 100%; }

.portfol_info {
  display: inline-block;
  width: 100%;
  position: relative;
  margin-bottom: 15px; }
  .portfol_info .portfol_info_text {
    display: inline-block;
    width: -webkit-calc(42% - 90px);
    width: calc(42% - 90px);
    float: left;
    padding: 35px 45px;
    background-color: #fff; }
    .portfol_info .portfol_info_text h2 {
      margin-top: 0;
      margin-bottom: 30px;
      color: black;
      font-family: "Roboto", sans-serif;
      font-size: 36px;
      line-height: 24px; }
      .portfol_info .portfol_info_text h2 span {
        color: #3aaa35; }
    .portfol_info .portfol_info_text p {
      color: black;
      font-family: "Roboto", sans-serif;
      font-size: 14px;
      line-height: 20px;
      margin-bottom: 0; }
  .portfol_info .portfol_info_picture {
    display: inline-block;
    height: 100%;
    width: 58%;
    float: right;
    background-position: center;
    background-repeat: no-repeat;
    -webkit-background-size: cover;
            background-size: cover; }

.sec_foto .container > h4 {
  color: black;
  font-family: "Roboto", sans-serif;
  font-size: 32px;
  font-weight: 400;
  line-height: 1;
  margin-top: 0;
  margin-bottom: 55px;
  padding-bottom: 55px;
  position: relative; }
  .sec_foto .container > h4 span {
    position: absolute;
    display: inline-block;
    width: 100%;
    height: 2px;
    background-color: #3aaa35;
    right: 70%;
    bottom: 0; }
  .sec_foto .container > h4 i {
    position: absolute;
    display: inline-block;
    width: 9px;
    height: 9px;
    -webkit-border-radius: 50%;
            border-radius: 50%;
    background-color: #3aaa35;
    right: 70%;
    bottom: -2.5px; }

.contact_sec1 .container > h4 {
  color: black;
  font-family: "Roboto", sans-serif;
  font-size: 32px;
  font-weight: 400;
  line-height: 1;
  margin-top: 0;
  margin-bottom: 55px;
  padding-bottom: 55px;
  position: relative; }
  .contact_sec1 .container > h4 span {
    position: absolute;
    display: inline-block;
    width: 100%;
    height: 2px;
    background-color: #3aaa35;
    right: 70%;
    bottom: 0; }
  .contact_sec1 .container > h4 i {
    position: absolute;
    display: inline-block;
    width: 9px;
    height: 9px;
    -webkit-border-radius: 50%;
            border-radius: 50%;
    background-color: #3aaa35;
    right: 70%;
    bottom: -2.5px; }

.block_contact {
  display: block;
  width: 100%; }
  .block_contact .left_info {
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url("../images/block_contact.jpg");
    -webkit-background-size: cover;
            background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    min-height: -webkit-calc(420px - 110px);
    min-height: calc(420px - 110px);
    width: -webkit-calc(50% - 30%);
    width: calc(50% - 30%);
    float: left;
    padding: 55px 60px;
    padding-right: 10%;
    padding-left: 20%;
    background-color: #fff; }
  .block_contact .right_form {
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url("../images/main_sec5_bg.jpg");
    -webkit-background-size: cover;
            background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding: 60px 0;
    width: 50%;
    float: right;
    min-height: 420px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center; }
    .block_contact .right_form form {
      display: inline-block;
      padding: 35px 65px;
      padding-bottom: 5px;
      background-color: rgba(255, 255, 255, 0.15);
      border: 2px #fff solid; }
      .block_contact .right_form form .mat-input {
        width: -webkit-calc(100% - 20px);
        width: calc(100% - 20px); }
      .block_contact .right_form form button {
        display: block;
        margin: 25px auto;
        -webkit-transition: 0.5s;
        -o-transition: 0.5s;
        transition: 0.5s;
        font-family: "Roboto", sans-serif;
        font-size: 12px;
        font-weight: 500;
        padding: 10px 20px;
        -webkit-border-radius: 5px;
                border-radius: 5px;
        border: 0;
        letter-spacing: 1px;
        -webkit-transition: .25s;
        -o-transition: .25s;
        transition: .25s;
        color: #3aaa35;
        background-color: #fff;
        border-bottom: 3px #8c918d solid; }
        .block_contact .right_form form button:hover {
          color: white;
          background-color: #3aaa35;
          border-bottom: 3px #2a6c25 solid; }
      .block_contact .right_form form p {
        text-align: center;
        color: white;
        font-family: "Roboto", sans-serif;
        font-size: 18px;
        font-weight: 400;
        line-height: 24px;
        margin-bottom: 15px; }

.contact_info_text {
  z-index: 15;
  position: relative;
  border-top: 10px #fff solid;
  border-left: 10px #fff solid;
  border-bottom: 10px #fff solid;
  -webkit-box-shadow: inset 3px 2px 6.9px 0.1px rgba(98, 98, 98, 0.5), -3px 2px 6.9px 0.1px rgba(98, 98, 98, 0.5);
          box-shadow: inset 3px 2px 6.9px 0.1px rgba(98, 98, 98, 0.5), -3px 2px 6.9px 0.1px rgba(98, 98, 98, 0.5);
  padding: 35px 25px;
  z-index: 2;
  position: relative; }
  .contact_info_text p {
    color: black;
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    margin-top: 20px;
    margin-bottom: 0; }
  .contact_info_text h2 {
    color: black;
    font-family: "Roboto", sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
    margin-top: 0;
    margin-bottom: 45px; }
  .contact_info_text .info {
    padding-left: 40px;
    position: relative;
    margin: 0; }
    .contact_info_text .info:before {
      position: absolute;
      content: '\f10b';
      font-family: "FontAwesome";
      left: 0;
      top: 7px;
      color: #000;
      font-size: 25px; }
    .contact_info_text .info li {
      list-style-type: none;
      margin-bottom: 5px; }
      .contact_info_text .info li a {
        color: black;
        font-family: "Roboto", sans-serif;
        font-size: 16px;
        font-weight: 700;
        line-height: 24px; }
  .contact_info_text .mail {
    position: relative;
    padding-left: 40px;
    color: black;
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 24px; }
    .contact_info_text .mail:before {
      position: absolute;
      content: '\f003';
      font-family: "FontAwesome";
      left: 0;
      top: 1px;
      color: #000;
      font-weight: 400;
      font-size: 20px; }
  .contact_info_text .social {
    overflow: hidden;
    color: black;
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    position: absolute;
    right: -10px;
    top: 0;
    z-index: 2;
    padding-left: 0;
    margin: 0;
    height: 100%;
    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;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column; }
    .contact_info_text .social li {
      list-style-type: none;
      position: relative;
      margin-bottom: 15px; }
      .contact_info_text .social li:first-of-type {
        padding-top: 10px; }
      .contact_info_text .social li:last-of-type {
        padding-bottom: 10px;
        margin-bottom: 0; }
      .contact_info_text .social li a {
        display: inline-block;
        height: 30px;
        width: 30px;
        text-align: center;
        background-color: #989797;
        -webkit-transition: .25s;
        -o-transition: .25s;
        transition: .25s;
        -webkit-border-radius: 50%;
                border-radius: 50%; }
        .contact_info_text .social li a i {
          line-height: 30px;
          color: #fff; }
        .contact_info_text .social li a:hover {
          background-color: #00a651; }
    .contact_info_text .social li:first-of-type:before {
      position: absolute;
      content: '';
      width: 10px;
      bottom: 100%;
      right: 10px;
      height: 999px;
      display: inline-block;
      background-color: #fff;
      -webkit-box-shadow: inset 0px 2px 3.9px 0.1px rgba(98, 98, 98, 0.5), 0px 2px 3.9px 0.1px rgba(98, 98, 98, 0.5);
              box-shadow: inset 0px 2px 3.9px 0.1px rgba(98, 98, 98, 0.5), 0px 2px 3.9px 0.1px rgba(98, 98, 98, 0.5); }
    .contact_info_text .social li:last-of-type:after {
      position: absolute;
      content: '';
      width: 10px;
      top: 100%;
      height: 999px;
      right: 10px;
      display: inline-block;
      background-color: #fff;
      -webkit-box-shadow: inset 0px 2px 3.9px 0.1px rgba(98, 98, 98, 0.5), 0px 2px 3.9px 0.1px rgba(98, 98, 98, 0.5);
              box-shadow: inset 0px 2px 3.9px 0.1px rgba(98, 98, 98, 0.5), 0px 2px 3.9px 0.1px rgba(98, 98, 98, 0.5); }

#map {
  display: block;
  width: 100%;
  height: 400px; }

.work_sec2 .block_work_sec2 .work_sec2_text.articles_text ul.articles_ins li {
  color: black;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  margin-bottom: 22px;
  padding-left: 40px;
  text-decoration: none;
  text-align: justify; }
  .work_sec2 .block_work_sec2 .work_sec2_text.articles_text ul.articles_ins li:before {
    display: none; }
  .work_sec2 .block_work_sec2 .work_sec2_text.articles_text ul.articles_ins li:after {
    font-family: "Roboto", sans-serif;
    content: '';
    position: absolute;
    left: 17px;
    top: 9px;
    height: 9px;
    width: 9px;
    -webkit-border-radius: 50%;
            border-radius: 50%;
    background-color: #00a651;
    color: #00a651;
    font-size: 30px; }

.work_sec2 .block_work_sec2 .work_sec2_text.articles_text {
  padding-top: 60px;
  padding-bottom: 60px; }
  .work_sec2 .block_work_sec2 .work_sec2_text.articles_text p {
    color: black;
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
    text-align: justify;
    margin-top: 0; }
    .work_sec2 .block_work_sec2 .work_sec2_text.articles_text p:last-of-type {
      margin-bottom: 0; }
  .work_sec2 .block_work_sec2 .work_sec2_text.articles_text h2 {
    color: black;
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    line-height: 26px;
    font-weight: 700;
    padding-left: 60px; }

@media (max-width: 1400px) {
  .main_sec2 .container .tree2 {
    display: none; } }

@media (max-width: 1200px) {
  .main_sec5 .container {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center; }
    .main_sec5 .container form {
      margin-left: 15px; }
  .container {
    width: 970px; }
  .header nav .link li a {
    color: #fff;
    font-family: 'Roboto', sans-serif;
    font-size: 12px;
    font-weight: 300;
    line-height: 36px;
    text-decoration: none;
    padding: 15px 5px;
    position: relative;
    -webkit-transition: .25s;
    -o-transition: .25s;
    transition: .25s; }
  .footer .foot_top_left {
    width: 100%;
    display: inline-block;
    float: left;
    height: 100%;
    text-align: center; }
  .footer .foot_top_right {
    width: 100%;
    display: inline-block;
    float: left; }
  .footer .foot_top .container {
    display: inline-block; } }

@media (max-width: 1000px) {
  .slick-slide.slick-current.slick-active a.picture {
    pointer-events: none;
    position: relative; }
    .slick-slide.slick-current.slick-active a.picture:after {
      display: none; }
    .slick-slide.slick-current.slick-active a.picture:before {
      content: '';
      position: absolute;
      display: inline-block;
      height: 100%;
      width: 100%;
      background-color: rgba(255, 255, 255, 0.5); }
  .slick-slide.slick-current.slick-active a.text {
    opacity: 0 !important; }
  .slick-slide.slick-current.slick-active p {
    opacity: 0 !important; }
  .slick-slide.slick-current.slick-active + .slick-slide.slick-active + .slick-slide.slick-active a.picture {
    pointer-events: none;
    position: relative; }
    .slick-slide.slick-current.slick-active + .slick-slide.slick-active + .slick-slide.slick-active a.picture:after {
      display: none; }
    .slick-slide.slick-current.slick-active + .slick-slide.slick-active + .slick-slide.slick-active a.picture:before {
      content: '';
      position: absolute;
      display: inline-block;
      height: 100%;
      width: 100%;
      background-color: rgba(255, 255, 255, 0.5); }
  .slick-slide.slick-current.slick-active + .slick-slide.slick-active + .slick-slide.slick-active a.text {
    opacity: 0 !important; }
  .slick-slide.slick-current.slick-active + .slick-slide.slick-active + .slick-slide.slick-active p {
    opacity: 0 !important; } }

@media (max-width: 991px) {
  .header nav .link {
    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;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column; }
  .main_sec3 .item ul{
    padding-left: 150px;
  }
  .main_sec3 .item:first-of-type > div h2 {
    margin-bottom: 15px;
  }
  .main_sec3 .item:first-of-type {
    display: inline-block;
    width: -webkit-calc(100% - 30px);
    width: calc(100% - 30px);
    padding: 60px 15px;
    float: left;
    color: #fff;
    min-height: auto;
    text-align: center; }
  .main_sec3 .item:first-of-type > div {
    float: none;
    width: 100%;
    display: inline-block; }
  .main_sec3 .item:first-of-type > div p {
    color: white;
    font-family: "Roboto", sans-serif;
    font-size: 15px;
    font-weight: 400;
    margin: 20px 0; }
  .main_sec3 .item:first-of-type > div h2, .main_sec3 .item:first-of-type > div p {
    padding-right: 0px; }
  .main_sec3 .item:last-of-type {
    float: none;
    display: inline-block;
    width: -webkit-calc(100% - 15px);
    width: calc(100% - 15px);
    min-height: auto;
    padding-top: 20px; }
  .main_sec3 .item:last-of-type ul {
    padding: 25px 0;
    float: none;
    width: 100%;
    display: inline-block;
    padding-left: 15px; }
  .main_sec4 .item_big {
    height: auto;
    width: 100%; }
  .main_sec4 .item_big .item_bg .item_inform h2 {
    margin-top: 15px; }
  .main_sec4 .item_big .item_bg .item_inform button {
    margin-bottom: 15px; }
  .main_sec4 .item_small {
    width: 100%;
    height: auto; }
  .main_sec4 .item_small .item_bg .item_inform h2 {
    margin-top: 15px; }
  .main_sec4 .item_small .item_bg .item_inform button {
    margin-bottom: 15px; }
  .main_sec4 {
    padding-top: 30px;
    padding-bottom: 30px; }
  .main_sec6 {
    padding-top: 30px;
    padding-bottom: 30px; }
  .main_sec6 .container > h4, .main_sec4 .container > h4 {
    font-size: 25px;
    margin-bottom: 20px;
    padding-bottom: 20px; }
  .blocWithNumberOfItemss {
    margin-top: 15px; }
    .blocWithNumberOfItemss span {
    	position: relative;
    	top: 15px;
    }
  .main_sec5 .container {
    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;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column; }
  .main_sec5 .container form {
    margin-left: 0px; }
  .main_sec5 p {
    text-align: center;
    margin-bottom: 15px;
    line-height: 1;
    font-size: 25px; }
    .main_sec5 p br {
      display: none; }
  .main_sec4 .item {
    float: left;
    display: inline-block;
    margin: 6px 0; }
  .main_sec5 form {
    display: inline-block;
    padding: 15px 15px;
    padding-bottom: 5px;
    background-color: rgba(255, 255, 255, 0.15);
    border: 2px #fff solid; } }

@media (max-width: 768px) {
  .main_sec1 .slider .item {
    min-height: 100vh; }
  .main_sec2 .text_main_sec2 {
    padding: 25px 15px; }
  .text_slider_ins h3 {
    font-size: 25px;
    line-height: 1;
    margin-bottom: 20px; }
  .text_slider_ins button {
    padding: 15px 25px; }
  .container {
    width: 100%; }
  .footer .foot_bottom p {
    margin-bottom: 0; }
  .footer .foot_bottom {
    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; }
  .footer .foot_top_right nav ul, .footer .foot_top_right .communication, .footer .foot_bottom .container {
    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;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    margin: 0; }
  .footer .foot_top_right nav {
    margin-bottom: 0; }
  .footer .foot_bottom ul {
    margin: 5px 0; }
  .footer .foot_bottom .container {
    padding: 5px 0; }
  .footer .foot_top {
    padding: 15px; }
  .main_sec1 .text_slider .container .text_slider_ins {
    text-align: center;
    display: inline-block;
    width: 100%;
    padding-left: 28px; }
  .main_sec2 {
    padding: 20px 0; }
  .main_sec2 .container .tree1 {
    display: none; }
  .main_sec5 {
    padding: 20px 0; } }

@media (max-width: 600px) {
  .slick-slide.slick-current.slick-active a.picture {
    pointer-events: auto;
    position: relative; }
    .slick-slide.slick-current.slick-active a.picture:after {
      display: inline-block; }
    .slick-slide.slick-current.slick-active a.picture:before {
      display: none; }
  .slick-slide.slick-current.slick-active a.text {
    opacity: 1 !important; }
  .slick-slide.slick-current.slick-active p {
    opacity: 1 !important; } }

@media (max-width: 480px) {
  .main_sec2 h3 {
    font-size: 25px; }
  .header .logo {
    width: 140px; } }

.hamburger {
  display: none; }

.hamburger .line {
  width: 50px;
  height: 5px;
  background-color: #3aaa35;
  display: block;
  margin: 8px auto;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out; }

.hamburger:hover {
  cursor: pointer; }

#hamburger-11 {
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out; }

#hamburger-11.active {
  -webkit-animation: smallbig 0.6s forwards;
          animation: smallbig 0.6s forwards; }

@-webkit-keyframes smallbig {
  0%,
  100% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1); }
  50% {
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0); } }

@keyframes smallbig {
  0%,
  100% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1); }
  50% {
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0); } }

#hamburger-11.active .line:nth-child(1),
#hamburger-11.active .line:nth-child(2),
#hamburger-11.active .line:nth-child(3) {
  -webkit-transition-delay: 0.2s;
  -o-transition-delay: 0.2s;
  transition-delay: 0.2s; }

#hamburger-11.active .line:nth-child(2) {
  opacity: 0; }

#hamburger-11.active .line:nth-child(1) {
  -webkit-transform: translateY(13px) rotate(45deg);
  -ms-transform: translateY(13px) rotate(45deg);
  transform: translateY(13px) rotate(45deg); }

#hamburger-11.active .line:nth-child(3) {
  -webkit-transform: translateY(-13px) rotate(-45deg);
  -ms-transform: translateY(-13px) rotate(-45deg);
  transform: translateY(-13px) rotate(-45deg); }

#hamburger-11.active {
  -webkit-animation: smallbig 0.6s forwards;
          animation: smallbig 0.6s forwards; }

@media (max-width: 991px) {
  .main_nav_bottom {
    height: auto;
    max-width: none;
    position: absolute;
    left: 0;
    top: 112px;
    -webkit-transform: translateX(-200%);
    -ms-transform: translateX(-200%);
    transform: translateX(-200%);
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    z-index: 9999;
    padding-bottom: 10px;
    background-color: rgba(0, 0, 0, 0.9);
    width: 100%;
    height: -webkit-calc(100vh - 117px);
    height: calc(100vh - 117px);
    -webkit-border-radius: 3px;
            border-radius: 3px;
    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;
    -webkit-justify-content: space-around;
        -ms-flex-pack: distribute;
            justify-content: space-around; }
  .main_nav_bottom.active {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0); }
  .hamburger {
    display: inline-block; }
  .header nav .link li a {
    color: #fff;
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    font-weight: 300;
    line-height: 36px;
    text-decoration: none;
    padding: 5px 5px;
    position: relative;
    -webkit-transition: .25s;
    -o-transition: .25s;
    transition: .25s;
    /* margin-bottom: 15px; */
    display: inline-block;
    width: 100%; }
  .container {
    width: 100%; } }

@media (max-width: 1500px) {
  .block_about_us {
    width: -webkit-calc(100% - 30px);
    width: calc(100% - 30px);
    padding-right: 15px;
    padding-left: 15px; }
  .block_about_us .block_about_picture {
    left: -50px;
    top: -45px; } }

@media (max-width: 991px) {
  .block_about_us .block_about_picture {
    height: 560px;
    width: 295px;
    float: left;
    position: relative;
    left: 0px;
    top: 15px;
    margin-right: 15px;
    margin-bottom: 15px;
    z-index: 2; }
  .block_about_us:after, .block_about_us:before {
    display: none; }
  .block_about_us {
    margin-top: 15px; }
  .about_us_sec1 .container > h4, .about_us_sec2 .container > h4 {
    font-size: 25px;
    margin-bottom: 25px;
    padding-bottom: 25px; }
  .block_about_us p span {
    display: inline-block;
    text-align: right;
    width: 100%;
    margin-top: 30px; } }

@media (max-width: 768px) {
  .block_about_us .block_about_picture {
    height: 450px;
    width: 260px;
    display: block;
    float: none;
    margin: 0 auto; }
  .about_us_sec2 .item_all {
    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;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column; }
  .about_us_sec2 .item {
    display: inline-block;
    float: left;
    width: -webkit-calc(100% - 30px);
    width: calc(100% - 30px);
    padding: 0 15px; } }

@media (max-width: 991px) {
  .sec1_our_services .item.item_left .element_text {
    min-height: auto;
    width: -webkit-calc(50% - 40px);
    width: calc(50% - 40px);
    float: right;
    padding: 15px 20px; }
  .sec1_our_services .item.item_right .element_text {
    min-height: auto;
    width: -webkit-calc(50% - 40px);
    width: calc(50% - 40px);
    float: left;
    padding: 15px 20px; }
  .sec1_our_services {
    padding-bottom: 30px; }
  .sec1_our_services .container > h4 {
    font-size: 25px;
    margin-bottom: 25px;
    padding-bottom: 25px; } }

@media (max-width: 768px) {
  .sec1_our_services .item.item_right .element_pictur {
    width: 100%;
    float: right;
    min-height: 320px; }
  .sec1_our_services .item.item_left .element_pictur {
    width: 100%;
    float: left;
    min-height: 320px; }
  .sec1_our_services .item.item_left .element_text {
    min-height: auto;
    width: -webkit-calc(100% - 40px);
    width: calc(100% - 40px);
    float: right;
    padding: 15px 20px;
    text-align: left; }
  .sec1_our_services .item.item_right .element_text {
    min-height: auto;
    width: -webkit-calc(100% - 40px);
    width: calc(100% - 40px);
    float: left;
    padding: 15px 20px;
    text-align: left; }
  .sec1_our_services .item {
    margin-bottom: 15px;
    display: inline-block;
    width: 100%; }
    .sec1_our_services .item.item_right .element_text h2 i {
    position: absolute;
    left: 20px;
    right: auto;
  } 
  .sec1_our_services .item.item_right .element_text h2 i:before {
    right: 100%;
    left: auto;
  }
  .sec1_our_services .item.item_right .element_text h2 i:after {
    right: 163px;
    left: auto;
  }
}

@media (max-width: 991px) {
  .praise_sec1 .container > h4, .praise_sec2 .container > h4 {
    font-size: 25px;
    margin-bottom: 25px;
    padding-bottom: 25px; } }

@media (max-width: 768px) {
  .praise_sec1 .item_all {
    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;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column; }
  .praise_sec1 .item {
    width: 260px;
    padding: 0 15px;
    margin-bottom: 25px; }
  .accordion .item_acord .hed_acord h2 {
    width: -webkit-calc(100% - 40px);
    width: calc(100% - 40px);
    padding: 0 20px;
    font-size: 18px; }
  table tbody tr td:first-of-type {
    text-align: left;
    padding-left: 7px; } }

@media (max-width: 991px) {
  .work_sec2 .container > h4, .praise_sec2 .container > h4 {
    font-size: 25px;
    margin-bottom: 25px;
    padding-bottom: 25px; }
  .work_sec2 {
    padding-bottom: 30px; } }

@media (max-width: 768px) {
  .work_sec2 .block_work_sec2 .work_sec2_picture {
    display: none; }
    .work_sec2 .block_work_sec2 .work_sec2_picture_garant {
    display: none; }
  .work_sec2 .block_work_sec2 .work_sec2_text {
    padding-left: 0px; }
  .work_sec2_text.srvice_sec2_text p {
    padding-left: 15px; }
  .work_sec2 .block_work_sec2 .work_sec2_text.srvice_sec2_text ul {
    counter-reset: number;
    margin: 15px 0;
    display: inline-block;
    width: -webkit-calc(100% - 15px);
    width: calc(100% - 15px);
    padding-left: 15px; }
  .work_sec2 .block_work_sec2 .work_sec2_text ul li:after {
    top: 0 !important; } }

.work_sec2 .block_work_sec2 .work_sec2_text p {
  padding: 0 80px;
  margin: 7px 0;
  display: inline-block;
  width: -webkit-calc(100% - 160px);
  width: calc(100% - 160px); }

.work_sec2 .block_work_sec2 .work_sec2_text ul {
  margin-top: 20px; }

@media (max-width: 991px) {
  .portfol_info .portfol_info_picture {
    display: inline-block;
    height: 100%;
    width: 100%;
    float: left;
    min-height: 350px; }
  .portfol_info .portfol_info_text {
    display: inline-block;
    width: -webkit-calc(100% - 90px);
    width: calc(100% - 90px);
    float: right;
    padding: 35px 45px; }
  .sec_foto .container > h4 {
    font-size: 25px;
    margin-bottom: 25px;
    padding-bottom: 25px; } }

@media (max-width: 768px) {
  .portfol_info .portfol_info_text {
    display: inline-block;
    width: -webkit-calc(100% - 30px);
    width: calc(100% - 30px);
    float: right;
    padding: 20px 15px; } }

@media (max-width: 991px) {
  .block_articles .elem_left {
    float: none;
    width: 100%;
    margin-right: 0;
    margin-bottom: 20px; }
  .block_articles .elem_right {
    float: none;
    width: 100%;
    margin-left: 0;
    background-color: #fff;
    padding-bottom: 35px;
    padding-top: 5px; }
  .se1_articles .container > h4 {
    font-size: 25px;
    margin-bottom: 25px;
    padding-bottom: 25px; } }

@media (max-width: 768px) {
  .block_articles .elem_left .item div {
    display: none; }
  .block_articles .elem_left .item {
    background-color: #fff;
    margin-bottom: 30px;
    display: inline-block;
    width: -webkit-calc(100% - 30px);
    width: calc(100% - 30px);
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 35px;
    padding-bottom: 35px;
    position: relative; }
  .block_articles .elem_left .item h2 {
    margin-bottom: 15px; }
  .block_articles .elem_left .item p {
    margin-bottom: 15px; } }

@media (max-width: 991px) {
  .work_sec1 .elem_left {
    display: inline-block;
    width: -webkit-calc(100% - 40%);
    width: calc(100% - 40%);
    margin-right: 0;
    padding-left: 40%;
    position: relative; }
  .work_sec1 .elem_right {
    display: inline-block;
    width: -webkit-calc(100% - 40%);
    width: calc(100% - 40%);
    margin-left: 0;
    padding-right: 40%;
    position: relative; }
  .work_sec1 .container > h4 {
    font-size: 25px;
    margin-bottom: 25px;
    padding-bottom: 25px; } }

@media (max-width: 768px) {
  .work_sec2 .block_work_sec2 .work_sec2_text ul {
    margin: 20px 0; }
  .work_sec1 .elem_left .block_picture {
    display: none; }
  .work_sec1 .elem_left {
    display: inline-block;
    width: -webkit-calc(100% - 15px);
    width: calc(100% - 15px);
    margin-right: 0;
    padding-left: 15px;
    position: relative; }
  .work_sec1 .elem_left .block_text {
    padding-bottom: 20px; }
  .work_sec1 .elem_right .block_picture {
    display: none; }
  .work_sec1 .elem_right {
    display: inline-block;
    width: -webkit-calc(100% - 15px);
    width: calc(100% - 15px);
    margin-left: 0;
    padding-right: 15px;
    position: relative; }
  .work_sec1 .elem_right .block_text {
    padding-bottom: 20px; }
  .work_sec2 .block_work_sec2 .work_sec2_text ul li {
    padding-left: 60px;
    margin-bottom: 20px; } }

@media (max-width: 1400px) {
  .block_contact .left_info {
    width: -webkit-calc(50% - 20%);
    width: calc(50% - 20%);
    float: left;
    padding: 55px 60px;
    padding-right: 10%;
    padding-left: 10%;
    background-color: #fff; } }

@media (max-width: 991px) {
  .block_contact .left_info {
    width: -webkit-calc(50% - 10%);
    width: calc(50% - 10%);
    float: left;
    padding: 55px 60px;
    padding-right: 5%;
    padding-left: 5%;
    background-color: #fff; }
  .block_contact .right_form form {
    padding: 15px 25px;
    margin-left: 5%; }
  .contact_sec1 .container > h4 {
    font-size: 25px;
    margin-bottom: 25px;
    padding-bottom: 25px; }
    }

.feedback .feedback_item form h2 {
    font-size: 18px;
}
.feedback .feedback_item form p {
    font-size: 15px;
     }

@media (max-width: 767px) {
  .block_contact .left_info {
    width: -webkit-calc(100% - 10%);
    width: calc(100% - 10%);
    float: left;
    padding: 55px 60px;
    padding-right: 5%;
    padding-left: 5%;
    background-color: #fff; }
  .block_contact .right_form {
    padding: 60px 0;
    width: 100%;
    float: right;
    min-height: 420px;
    -webkit-background-size: cover;
            background-size: cover;
    background-repeat: no-repeat;
    background-position: center; }
  .block_contact .right_form form {
    display: block;
    margin: 0 auto;
    width: 200px; } }

.modal-content {
  background-color: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
  border: 0; }

.modal-content .modal-body {
  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; }

.modal-content .modal-header {
  padding: 15px;
  border-bottom: 0;
  padding-bottom: 0; }

.modal-content .close {
  opacity: 1; }

.modal-sm {
  width: 330px; }

.form_modal {
  text-align: center;
  display: inline-block;
  padding: 35px 35px;
  padding-bottom: 5px;
  background-color: rgba(255, 255, 255, 0.15);
  border: 2px #fff solid;
  background-image: url("../images/bg_modal.jpg");
  -webkit-background-size: cover;
          background-size: cover;
  background-position: center;
  background-repeat: no-repeat; }
  .form_modal .mat-input {
    width: -webkit-calc(100% - 20px);
    width: calc(100% - 20px); }
  .form_modal .mat-label {
    display: block;
    -webkit-transform: translateY(23px);
    -ms-transform: translateY(23px);
    transform: translateY(26px);
    color: #fff;
    font-family: "Roboto", sans-serif;
    font-size: 12px;
    font-weight: 400;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    text-align: left;
    margin-bottom: 0;
    padding-left: 23px; }
  .form_modal button {
    display: block;
    margin: 25px auto;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    font-family: "Roboto", sans-serif;
    font-size: 12px;
    font-weight: 500;
    padding: 10px 20px;
    -webkit-border-radius: 5px;
            border-radius: 5px;
    border: 0;
    letter-spacing: 1px;
    -webkit-transition: .25s;
    -o-transition: .25s;
    transition: .25s;
    color: #3aaa35;
    background-color: #fff;
    border-bottom: 3px #8c918d solid; }
    .form_modal button:hover {
      color: white;
      background-color: #3aaa35;
      border-bottom: 3px #2a6c25 solid; }
  .form_modal p {
    text-align: center;
    color: white;
    font-family: "Roboto", sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
    margin-bottom: 15px; }

@media (max-width: 767px) {
  .modal-sm {
    width: 330px; } }

.close {
  float: right;
  font-size: 21px;
  font-weight: 400;
  line-height: 1;
  color: #000;
  text-shadow: none;
  opacity: 1; }

.jq-selectbox__dropdown {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  top: 100% !important;
  margin: 2px 0 0;
  padding: 0;
  border: 0;
  -webkit-border-radius: 0px;
          border-radius: 0px;
  background: rgba(0, 0, 0, 0.8);
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
          box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  font: 14px/18px Arial, sans-serif; }

.jq-selectbox li {
  min-height: 18px;
  color: #fff;
  text-align: center; }

.jq-selectbox li.selected {
  background-color: #00a651;
  color: #FFF; }

.jq-selectbox li:hover {
  background-color: #00a651;
  color: #FFF; }

.block_articles .elem_left .item span {
  margin-bottom: 10px;
  display: block;
  color: #000; }

@media (max-width: 767px) {
  .work_sec2 .block_work_sec2 .work_sec2_text p {
    padding: 0 15px;
    margin: 15px 0;
    display: inline-block;
    width: -webkit-calc(100% - 30px);
    width: calc(100% - 30px); }
  .sec1_our_services .item.item_right .element_text {
    overflow: hidden; }
     .sec1_our_services .item.item_right {
      padding-top: 320px;
      position: relative;
     }
     .sec1_our_services .item.item_right .element_pictur {
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    float: right;
    min-height: 320px;
}
.work_sec2 .block_work_sec2 .work_sec2_picture.two {
   display: none;
}
.work_sec2 .block_work_sec2 .work_sec2_picture.three {
   display: none;
}

     }

.form_modal .is-completed .mat-label {
  -webkit-transform: translateY(-7px);
      -ms-transform: translateY(-7px);
          transform: translateY(-7px);
  color: #fff; }
.mat-label i{
  margin-right: 5px;
}
/*---------dorob*/
.carus3 .slick-slide.slick-current.slick-active p {
  opacity: 1 !important;
}
.blocWithNumberOfItemss3 span {
	position: relative;
	top: 15px;
}
.blocWithNumberOfItemss3 {
	display: block;
   	width: 200px;
   	margin: 0 auto;
  text-align: center;
  margin-top: 65px; }
  .blocWithNumberOfItemss3 i {
    font-size: 36px;
    padding: 0 10px;
    margin: 0 10px;
    position: relative;
    top: 3px;
    color: #989797; }
    .blocWithNumberOfItemss3 i:hover {
      color: #00a651; }
  .blocWithNumberOfItemss3 .second {
    color: #fff;
    font-family: "Roboto", sans-serif;
    font-weight: 300;
    line-height: 18px;
    text-transform: uppercase;
    font-size: 36px;
    position: relative;
    top: 15px;  }
  .blocWithNumberOfItemss3 .first {
    color: #fff;
    font-family: "Roboto", sans-serif;
    font-weight: 300;
    line-height: 18px;
    text-transform: uppercase;
    font-size: 24px;
    position: relative;
    top: 15px;  }
  .blocWithNumberOfItemss3 .arrow_left3 {
  	float: right;
    display: inline-block; }
  .blocWithNumberOfItemss3 .arrow_right3 {
  	float: left;
    display: inline-block; }
@media (max-width: 991px) {
  .work_sec2 .block_work_sec2 .work_sec2_text ul {
    margin: 25px 0;
  }
    .blocWithNumberOfItemss3 {
    margin-top: 15px; }
}
.main_sec6.carus3 {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding: 60px 0;
    background-attachment: fixed;
}
.main_sec6.carus3 .slider3 .item{
  padding: 15px;
  outline: none;
}
.main_sec6.carus3 .slider3 .item .block_text{
  background-color: #fff;
  padding: 25px;
  height: 100%;
}
.main_sec6.carus3 .container > h4 {
  color: #fff;
}
.main_sec6.carus3 .slider3 .item .block_text{
  background-color: #fff;
}
.main_sec6.carus3 .slider3 .item .block_text h2 {
color: #242321;
 font-family: "Roboto", sans-serif;
font-size: 18px;
font-weight: 400;
line-height: 20px;
margin-top: 0;
margin-bottom: 40px;
}
.main_sec6.carus3 .slider3 .item .block_text h2 span{
float: right;
font-size: 14px;
color: #242321;
font-weight: 300;
line-height: 32px;
}
.main_sec6.carus3 .slider3 .item .block_text p {
 font-family: "Roboto", sans-serif;
color: black;
font-weight: 400;
line-height: 22px;
margin: 0;
}
.main_sec6.carus3 .slider3 .item .block_text a {
 font-family: "Roboto", sans-serif;
color: #0d01b5;
font-weight: 400;
line-height: 22px;
text-decoration: underline;
margin-bottom: 40px;
}
.contact_info_text p.adres {
      position: relative;
    padding-left: 40px;
    color: black;
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
}
.contact_info_text p.adres:before {
    position: absolute;
    content: '\f041 ';
    font-family: "FontAwesome";
    left: 0;
    top: 1px;
    color: #000;
    font-weight: 400;
    font-size: 20px;
}
.carus_partner {
  display: inline-block;
  width: 100%;
  background-color: #fff;
}
.carus_partner .item .block_text.partner {
  border-right: 1px #3aaa35 solid;
}
.block_text.partner a {
  display: block;
  height: 220px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  outline: none;
  -webkit-transition: .25s;
  -o-transition: .25s;
  transition: .25s;
  -webkit-filter: grayscale(0%);
  filter: grayscale(0%);
}
.block_text.partner div.logo_partner {
  display: block;
  height: 220px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  outline: none;
  -webkit-transition: .25s;
  -o-transition: .25s;
  transition: .25s;
  -webkit-filter: grayscale(0%);
  filter: grayscale(0%);
}
.block_text.partner a:hover {
  -webkit-transition: .25s;
    -o-transition: .25s;
    transition: .25s;
    -webkit-filter: grayscale(0%);
    filter: grayscale(0%);
}
.block_text.partner div.logo_partner:hover {
  -webkit-transition: .25s;
    -o-transition: .25s;
    transition: .25s;
    -webkit-filter: grayscale(0%);
    filter: grayscale(0%);
}
.main_sec6.partner  .blocWithNumberOfItemss3 .second {
    color: #000;
}
.main_sec6.partner  .blocWithNumberOfItemss3 .first {
    color: #000;
 }
.main_sec6.partner .slick-slide.slick-current.slick-active .block_text.partner{
   border-left: 1px #3aaa35 solid;
}
.text_slider {
  position: relative;
}
.text_slider:before {
  content: '';
  position: absolute;
  display: inline-block;
  background-color: rgba(0,0,0, 0.55);
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}
@media (max-width: 1000px) {
.main_sec6.carus3 .slick-slide.slick-current.slick-active + .slick-slide.slick-active + .slick-slide.slick-active p {
    opacity: 1 !important;
}
}


@media (max-width: 768px) {
.main_sec1 .text_slider .container {
    height: 100vh;
}
.text_slider:before {
    height: 100vh;
}
}
@media (max-width: 768px) {
 .work_sec2 .block_work_sec2 .work_sec2_picture {
    display: none !important;
  }
  .main_sec5 p {
    font-size: 19px;
    line-height: 25px;
}
.text_slider_ins p span strong a {
    font-family: "Roboto", sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
}
.header .language {
  margin-top: 0px; 
}
.footer .foot_top_right .communication a.phon2 {
  padding-left: 22px;
}
.main_sec3 .item:first-of-type > div h2 {
  margin-bottom: 20px;
}
.main_sec3 .item:first-of-type > div button {
  margin-top: 15px;
  padding: 15px 25px;
}
}
.footer .foot_top_right .communication a i.znae{
  margin-right: 8px;
}
.block_about_us span.title-description p {
  margin-top: 40px;
  text-align: right;
}
.sec1_our_services {
  overflow: hidden;
}
.main_sec3 ul li{
  text-align: left;
  margin-bottom: 15px;
}
.main_sec2 {
  overflow: hidden;
}
@media (max-width: 768px) {
.main_sec3 .item ul {
    padding-left: 30px;
}
.work_sec2 .block_work_sec2 .work_sec2_picture:first-of-type {
	display: block !important;
	position: static;
    width: 100%;
    height: 270px;
}
}
@media (max-width: 480px) {
	.hamburger .line {
	    width: 40px;
	    height: 3px;
	    margin: 5px auto;
	}
	#hamburger-11.active .line:nth-child(3) {
    -webkit-transform: translateY(-8px) rotate(-45deg);
    -ms-transform: translateY(-8px) rotate(-45deg);
    transform: translateY(-8px) rotate(-45deg);
	}
	#hamburger-11.active .line:nth-child(1) {
    -webkit-transform: translateY(8px) rotate(45deg);
    -ms-transform: translateY(8px) rotate(45deg);
    transform: translateY(8px) rotate(45deg);
}
}
/*.main_sec3 ul li:last-of-type {
  margin-bottom: 0;
}*/


.get-cost {
	background-color: #fff;
	box-shadow: 0px 3px 6px 1px rgba(0, 0, 0, 0.25);
	border-left: 10px solid #00A651;
	padding: 45px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin: 70px 0;
	box-sizing: border-box;
}

.get-cost p {
	max-width: 550px;
	font-size: 20px;
	font-weight: 500;
}

.get-cost .cost-link {
	color: white;
	font-family: "Roboto", sans-serif;
	font-size: 18px;
	padding: 20px 53px;
	background-color: #3aaa35;
	border-radius: 5px;
	border: 0;
	letter-spacing: 1px;
	border-bottom: 3px #2a6c25 solid;
	transition: .25s;
}

.get-cost .cost-link:hover {
	background-color: #2a6c25;
}

.index-page .get-cost {
	margin: 70px 0 70px 7px;
	width: calc(100% - 37px);
}

.about-page .get-cost {
	margin-bottom: 0;
}

.feedback-cost {
  display: inline-block;
  width: 50px;
  font-size: 16px;
  margin-bottom: 5px;
  color: white;
  background-color: #3aaa35;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  border: 0;
  border-bottom: 3px #2a6c25 solid;
  transition: .25s;
  padding: 10px 0 2px;
}

.feedback-cost span {
  writing-mode: vertical-rl;
  text-orientation: upright;
  position: relative;
  right: -13px;
}

.feedback-cost:hover {
  color: #3aaa35;
  background-color: #fff;
  border-bottom: 3px #8c918d solid;
}

@media(max-width: 1199px) {
	.get-cost {
		padding: 30px;
	}

	.get-cost .cost-link {
		font-size: 15px;
		padding: 20px 30px;
	}

	.get-cost p {
		font-size: 18px;
		max-width: 400px;
	}
}

@media(max-width: 991px) {
	.index-page .get-cost {
		width: auto;
		margin: 40px 0;
	}

	.get-cost {
		display: block;
		margin: 40px 0;
	}

	.get-cost p {
		max-width: 100%;
	}

	.get-cost .cost-link {
		width: 100%;
		display: inline-block;
		margin-top: 30px;
		padding: 20px 0;
		text-align: center;
	}
}

@media(max-width: 479px) {
	.get-cost {
		border-left: 5px solid #00A651;
		padding: 15px;
	}

	.get-cost  p {
		font-size: 16px;
	}

	.get-cost .cost-link {
		font-size: 14px;
		margin-top: 20px;
	}
}