/* reset */
* {
  margin: 0;
  padding: 0;
  list-style-type: none;
  text-decoration: none;
  font-family: 'Regular';
}

h1, h2, h3, h4, h5 {
  font-family: 'Bold';
  color: #484848;
}

p {
  font-family: 'Regular';
  font-size: 14px;
  line-height: 20px;
}

table {
  width: 100%;
  border-collapse: collapse;
}

table tr:nth-child(even) {
  background: #eaeaea;
}

table tr:nth-child(odd) {
  background: #f4f4f4;
}

table tr td {
  padding: 20px 0;
  color: #484848;
  font-size: 14px;
  line-height: 18px;
  font-family: 'Medium';
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

table tr td:first-child {
  padding-left: 20px;
}

table tr td:last-child {
  padding-right: 20px;
}

.inner_page {
  background-color: #f4f4f4;
  padding-bottom: 160px;
}

.inner_page .text h1 {
  font-size: 20px;
  color: #484848;
}

.inner_page .text h2 {
  font-size: 19px;
  color: #484848;
}

.inner_page .text h3 {
  font-size: 18px;
  color: #484848;
}

.inner_page .text h4 {
  font-size: 17px;
  color: #484848;
}

.inner_page .text h5 {
  font-size: 16px;
  color: #484848;
}

.inner_page .text h6 {
  font-size: 15px;
  color: #484848;
}

.inner_page .text p {
  font-size: 14px;
  color: #9f9f9f;
  margin: 15px 0;
}

.inner_page .text img {
  width: 100%;
  margin: 24px 0;
}

.tab-content ul {
  width: 500px;
  margin: 0 auto;
  margin-top: 16px;
  padding-left: 10px;
}

.tab-content ul li {
  font-size: 14px;
  line-height: 20px;
  color: #9f9f9f;
  position: relative;
}

.tab-content ul li:after {
  content: "";
  display: inline-block;
  width: 3px;
  height: 3px;
  background-color: #329400;
  position: absolute;
  top: 8px;
  left: -10px;
}

:focus, :active {
  outline: none;
}

/* header */
header {
  background-color: white;
}

header .header_top {
  padding: 13px 0;
  border-bottom: 1px solid #ebebeb;
}

header .header_top ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

header .header_top ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: 'Bold';
}

header .header_top ul li svg:first-child {
  height: 24px;
  margin-right: 16px;
}

header .header_top ul li a {
  display: inline-block;
  font-size: 16px;
  line-height: 24px;
  font-weight: bold;
  color: #484848;
  margin-left: 16px;
}

header .header_bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

header .header_bottom h1 img {
  height: 80px;
  padding: 13px 0;
}

header .header_bottom .right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

header .header_bottom .right ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

header .header_bottom .right ul li {
  position: relative;
}

header .header_bottom .right ul li a {
  font-size: 14px;
  line-height: 1.29;
  color: #9f9f9f;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 48px 20px;
  position: relative;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

header .header_bottom .right ul li a svg {
  fill: #9f9f9f;
  margin-left: 8px;
  -webkit-transition: 0s;
  transition: 0s;
}

header .header_bottom .right ul li a:hover {
  color: #484848;
}

header .header_bottom .right ul li a:hover svg {
  fill: #484848;
}

header .header_bottom .right ul li a:after {
  content: "";
  display: none;
  width: 100%;
  height: 1px;
  background-color: #f78f00;
  position: absolute;
  top: 0;
  left: 0;
}

header .header_bottom .right ul li a.active {
  color: #f78f00;
}

header .header_bottom .right ul li a.active svg {
  fill: #f78f00;
}

header .header_bottom .right ul li a.active:after {
  display: block;
}

header .header_bottom .right ul li ul {
  position: absolute;
  width: 226px;
  top: 113px;
  left: 20px;
  z-index: 10;
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

header .header_bottom .right ul li ul li {
  background-color: #484848;
  border-bottom: 1px solid #9f9f9f;
}

header .header_bottom .right ul li ul li a {
  padding: 16px;
  font-size: 12px;
  line-height: 1.25;
  color: #9f9f9f;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

header .header_bottom .right ul li ul li a:hover {
  color: #f78f00;
  font-weight: normal;
}

header .header_bottom .right ul li ul li:last-child {
  border: 0;
}

header .header_bottom .right ul li:hover ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

header .header_bottom .right .search_icon {
  width: 48px;
  height: 48px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: 20px;
  border: solid 1px #dedede;
  cursor: pointer;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

header .header_bottom .right .search_icon:hover {
  border: solid 1px #f78f00;
}

header .header_bottom .right .search_modal {
  display: none;
  width: 100%;
  height: 100vh;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 11;
  background-color: rgba(0, 0, 0, 0.5);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

header .header_bottom .right .search_modal .search_form {
  width: 981px;
  height: 48px;
  margin: 85px auto;
  background-color: white;
}

header .header_bottom .right .search_modal .search_form form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

header .header_bottom .right .search_modal .search_form form .search_svg, header .header_bottom .right .search_modal .search_form form .close_button {
  width: 48px;
  height: 48px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

header .header_bottom .right .search_modal .search_form form input {
  border: 0;
  width: 100%;
}

header .header_bottom .right .search_modal .search_form form input:hover, header .header_bottom .right .search_modal .search_form form input:active, header .header_bottom .right .search_modal .search_form form input:focus {
  outline: none;
}

header .header_bottom .right .search_modal .search_form form .close_button {
  cursor: pointer;
}

header .header_bottom .right .search_modal.active {
  display: block;
}

header .header_bottom .right .search_modal.active .search_form {
  -webkit-animation: modalAnimate 0.5s;
          animation: modalAnimate 0.5s;
}

header.fixed {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2;
}

.main_slider {
  position: relative;
}

.main_slider .swiper-container {
  width: 100%;
  height: calc( 100vh - 165px);
}

.main_slider .swiper-container .slider_item {
  position: relative;
  height: 100%;
}

.main_slider .swiper-container .slider_item .slide_image {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
}

.main_slider .swiper-container .slider_item .slide_image img {
  min-width: 100%;
  min-height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.main_slider .swiper-container .slider_item .slide_texts {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.main_slider .swiper-container .slider_item .slide_texts .texts_inside {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.main_slider .swiper-container .slider_item .slide_texts .texts_inside h2 {
  font-family: 'Bold';
  font-size: 40px;
  color: #f78f00;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 40px;
}

.main_slider .swiper-container .slider_item .slide_texts .texts_inside a {
  font-family: 'Medium';
  display: inline-block;
  border-radius: 2px;
  background-color: #f78f00;
  padding: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 14px;
  color: #ffffff;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.main_slider .swiper-container .slider_item .slide_texts .texts_inside a svg {
  margin-left: 32px;
}

.main_slider .swiper-container .slider_item .slide_texts .texts_inside a:hover {
  background-color: #329400;
}

.main_slider .header_slider_pagination {
  bottom: 0;
  right: calc( 50% - 544px);
  left: auto;
  height: 100%;
  width: 22px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.main_slider .header_slider_pagination .swiper-pagination-bullet {
  width: 6px;
  height: 6px;
  background-color: #ffffff;
  border-radius: 50%;
  opacity: 1;
  position: relative;
  margin: 8px;
  cursor: pointer;
}

.main_slider .header_slider_pagination .swiper-pagination-bullet:after {
  content: "";
  display: none;
  width: 22px;
  height: 22px;
  border: solid 1px #f78f00;
  border-radius: 50%;
  position: absolute;
  top: -9px;
  left: -9px;
}

.main_slider .header_slider_pagination .swiper-pagination-bullet-active {
  background-color: #f78f00;
}

.main_slider .header_slider_pagination .swiper-pagination-bullet-active:after {
  display: inline-block;
}

.main_slider .scroll_bottom {
  cursor: pointer;
  position: absolute;
  left: calc(50% - 11px);
  bottom: 24px;
  z-index: 1;
}

.main_slider .scroll_bottom svg {
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.main_slider .scroll_bottom:hover svg {
  fill: #f78f00;
  stroke: #f78f00;
}

@-webkit-keyframes modalAnimate {
  from {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes modalAnimate {
  from {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

.title_container h2 {
  font-size: 32px;
  color: #484848;
  font-family: 'Medium';
  text-align: center;
  margin-bottom: 24px;
}

.title_container p {
  width: 467px;
  margin: 0 auto;
  font-size: 14px;
  line-height: 1.71;
  text-align: center;
  color: #9f9f9f;
}

.center {
  width: 1088px;
  margin: 0 auto;
}

.projects_container {
  padding: 104px 0;
  position: relative;
  overflow-x: hidden;
}

.projects_container .projects {
  margin-top: 56px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.projects_container .projects .project {
  width: 24%;
}

.projects_container .projects .project:nth-child(2n) {
  margin-top: 35px;
}

.projects_container .projects .project h3 {
  font-family: 'Medium';
  font-size: 16px;
  text-align: center;
  margin-top: 16px;
}

.projects_container .projects .project h3 a {
  color: #484848;
}

.projects_container .projects .project .project_image {
  height: 232px;
  overflow: hidden;
  position: relative;
}

.projects_container .projects .project .project_image img {
  -o-object-fit: cover;
     object-fit: cover;
  min-width: 100%;
  min-height: 100%;
}

.projects_container .projects .project .project_image .hover_effect {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.63);
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.projects_container .projects .project .project_image .hover_effect a {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.projects_container .projects .project .project_image .hover_effect .circle {
  width: 64px;
  height: 64px;
  background-color: rgba(247, 143, 0, 0.32);
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.projects_container .projects .project:hover .project_image .hover_effect {
  opacity: 1;
}

.projects_container .projects .project:hover h3 a {
  color: #f78f00;
}

.projects_container .circles_right {
  position: absolute;
  top: 104px;
  right: -60px;
}

.socials {
  position: fixed;
  top: calc( 50% - 28px);
  z-index: 12;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.socials .socials_icon {
  width: 56px;
  height: 56px;
  background-color: #329400;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.socials .socials_icon .close {
  display: none;
}

.socials .socials_icon:hover {
  background-color: #246700;
}

.socials ul {
  width: 0;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.socials ul li {
  width: 56px;
  height: 56px;
  background-color: #329400;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.socials ul li a {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.socials ul li:hover {
  background-color: #246700;
}

.socials.active ul {
  width: 168px;
}

.socials.active .close {
  display: block;
}

.socials.active .open {
  display: none;
}

.socials.active .socials_icon {
  background-color: #246700;
}

.order_container {
  background-color: #f8f8f8;
  padding: 56px 0;
  margin-bottom: 104px;
  position: relative;
}

.order_container .center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.order_container .center .count {
  width: 460px;
}

.order_container .center .count h2 {
  font-size: 32px;
  color: #484848;
  font-family: 'Medium';
  margin-bottom: 24px;
}

.order_container .center .count p {
  font-family: 'Regular';
  font-size: 14px;
  line-height: 1.71;
  color: #9f9f9f;
}

.order_container .circles_left {
  position: absolute;
  top: -128px;
  left: -156px;
}

.order_form {
  width: 352px;
}

.order_form .input_group {
  border: solid 1px #dedede;
  margin-bottom: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-radius: 2px;
}

.order_form .input_group input {
  width: 100%;
  height: 66px;
  border: 0;
  background-color: transparent;
  padding-left: 24px;
  font-family: 'Medium';
}

.order_form .input_group input[type="file"] {
  display: none;
}

.order_form .input_group label {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-left: 24px;
  cursor: pointer;
}

.order_form .input_group label .placeholder {
  width: 100%;
  font-size: 14px;
  line-height: 1.71;
  color: #484848;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.order_form .input_group label .placeholder small {
  font-size: 10px;
  margin-left: 8px;
}

.order_form .input_group textarea {
  width: 100%;
  height: 105px;
  border: 0;
  background-color: transparent;
  padding-left: 24px;
  padding-top: 24px;
  resize: none;
  font-family: 'Medium';
}

.order_form .input_group span {
  width: 66px;
  height: 66px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.order_form .input_group .fileLength {
  display: none;
}

.order_form button {
  width: 352px;
  height: 66px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 2px;
  background-color: #f78f00;
  font-size: 14px;
  color: white;
  border: 0;
  cursor: pointer;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.order_form button svg {
  margin-left: 32px;
}

.order_form button:hover {
  background-color: #329400;
}

.statistics_container {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0.5))), url("../images/STAT_BG.png");
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../images/STAT_BG.png");
  background-size: cover;
  padding: 88px 0;
  margin-bottom: 104px;
}

.statistics_container .center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.statistics_container .center .item {
  width: 28%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.statistics_container .center .item .stat_image {
  width: 89px;
  height: 89px;
  border-radius: 2px;
  border: solid 1px #ffffff;
  background-color: #246c00;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 40px;
}

.statistics_container .center .item .stat_count {
  font-size: 28px;
  line-height: 1.21;
  text-align: center;
  color: #ffffff;
  font-family: 'Medium';
  margin-bottom: 20px;
}

.statistics_container .center .item .stat_name {
  font-size: 16px;
  text-align: center;
  color: #ffffff;
}

.adventages_container {
  margin-top: 104px;
  margin-bottom: 104px;
}

.adventages_container .adventages {
  margin-top: 56px;
}

.adventages {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.adventages .adventages_item {
  width: 170px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 56px;
  margin-right: calc(50% - 255px);
  cursor: pointer;
}

.adventages .adventages_item:nth-child(3n) {
  margin-right: 0;
}

.adventages .adventages_item .adv_item_img {
  width: 168px;
  height: 166px;
  border-radius: 2px;
  background-color: rgba(50, 148, 0, 0.08);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.adventages .adventages_item h3 {
  text-align: center;
  margin-top: 16px;
  font-size: 16px;
  line-height: 1.19;
  color: #484848;
  font-family: 'Medium';
}

.advantages_modal {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  display: none;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.advantages_modal .bg {
  width: 100%;
  height: 100%;
  opacity: 0.5;
  background-color: #000000;
  position: absolute;
  top: 0;
  left: 0;
  cursor: pointer;
}

.advantages_modal .content {
  width: 720px;
  height: 248px;
  background-color: #fff;
  padding: 24px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  z-index: 1;
}

.advantages_modal .content p {
  color: #484848;
  font-size: 14px;
  line-height: 26px;
  font-family: 'Medium';
}

.advantages_modal .content .close {
  position: absolute;
  top: 6px;
  right: 6px;
  cursor: pointer;
}

.advantages_modal.open {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.advantages_modal.open .content {
  -webkit-animation: modalAnimate 0.5s;
          animation: modalAnimate 0.5s;
}

.scheme_container {
  margin-bottom: 160px;
}

.scheme_container .center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 56px;
}

.scheme_container .center .scheme {
  width: 18%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.scheme_container .center .scheme .scheme_count {
  width: 137px;
  height: 137px;
  border: solid 1px #dedede;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 40px;
  color: #f78f00;
  font-family: 'Medium';
}

.scheme_container .center .scheme h3 {
  font-size: 16px;
  color: #484848;
  margin-top: 16px;
  font-family: 'Medium';
  text-align: center;
}

.partners_container {
  background-color: #f8f8f8;
  padding: 104px 0;
  position: relative;
}

.partners_container .swiper-slide a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.partners_container .swiper-slide a img {
  height: 43px;
  -webkit-filter: grayscale(100%) opacity(30%);
          filter: grayscale(100%) opacity(30%);
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.partners_container .swiper-slide a:hover img {
  -webkit-filter: grayscale(0);
          filter: grayscale(0);
}

.partners_container.notslide .swiper-slide {
  -ms-flex-negative: 1;
      flex-shrink: 1;
}

.partners_container.notslide .swiper-button-prev, .partners_container.notslide .swiper-button-next {
  display: none;
}

.partners_container .swiper-button-prev {
  display: block;
  width: 68px;
  height: 68px;
  left: calc(50% - 612px);
  top: calc(50% - 12px);
  -webkit-transition: 0.2s;
  transition: 0.2s;
  opacity: 0;
}

.partners_container .swiper-button-prev .circle {
  width: 64px;
  height: 64px;
  border: solid 2px #f78f00;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.partners_container .swiper-button-prev:after {
  content: "";
}

.partners_container .swiper-button-next {
  display: block;
  width: 68px;
  height: 68px;
  right: calc(50% - 612px);
  top: calc(50% - 12px);
  opacity: 0;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.partners_container .swiper-button-next .circle {
  width: 64px;
  height: 64px;
  border: solid 2px #f78f00;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.partners_container .swiper-button-next:after {
  content: "";
}

.partners_container:hover .swiper-button-next, .partners_container:hover .swiper-button-prev {
  opacity: 0.5;
}

.partners_container:hover .swiper-button-next:hover, .partners_container:hover .swiper-button-prev:hover {
  opacity: 1;
}

footer {
  padding-top: 104px;
  background-color: #484848;
  position: relative;
}

footer .footer_top {
  border-bottom: 1px solid #9f9f9f;
  padding-bottom: 40px;
}

footer .footer_top ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

footer .footer_top ul li {
  font-size: 14px;
  line-height: 1.29;
  font-family: 'Medium';
}

footer .footer_top ul li a {
  color: #f78f00;
  display: inline-block;
  padding: 14px 0;
}

footer .footer_top ul li ul {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

footer .footer_top ul li ul li a {
  font-family: 'Regular';
  color: #dedede;
  padding: 4px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

footer .footer_top ul li ul li a:hover {
  color: #f78f00;
}

footer .footer_info a {
  margin-bottom: 10px;
}

footer .footer_info ul {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

footer .footer_info ul li {
  font-size: 14px;
  color: #ffffff;
  padding: 10px 0;
}

footer .footer_info ul li svg {
  margin-right: 24px;
  vertical-align: middle;
}

footer .footer_info ul li a {
  color: #ffffff;
  padding: 0;
  margin: 0;
}

footer .footer_bottom {
  padding: 24px 0;
}

footer .footer_bottom .center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

footer .footer_bottom .center p {
  font-family: 'Medium';
  font-size: 14px;
  color: #9f9f9f;
}

footer .footer_bottom .center p svg {
  vertical-align: middle;
}

footer .scroll_top {
  width: 56px;
  height: 56px;
  border-radius: 2px;
  background-color: #484848;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  top: -28px;
  right: calc(50% - 600px);
  cursor: pointer;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

footer .scroll_top:hover {
  background-color: #f78f00;
}

.page_title {
  background-color: #f4f4f4;
  position: relative;
  padding: 56px 0 80px;
}

.page_title:after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  position: absolute;
  top: -1px;
  -webkit-box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
}

.page_title .center {
  border-left: 1px solid #329400;
  padding-left: 24px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
}

.page_title .center h2 {
  font-size: 24px;
  color: #484848;
  font-family: 'Bold';
  margin-bottom: 16px;
}

.page_title .center ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.page_title .center ul li {
  font-size: 14px;
  line-height: 18px;
  font-family: 'Medium';
  padding-right: 16px;
}

.page_title .center ul li a {
  color: #9f9f9f;
  opacity: 1;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.page_title .center ul li a:hover {
  color: #f78f00;
}

.page_title .center ul li span {
  color: #9f9f9f;
  opacity: 0.4;
}

.page_title .center ul li svg {
  margin-left: 16px;
}

.page_title .order_button {
  width: 203px;
  border-radius: 2px;
  background-color: #f78f00;
  text-align: center;
  padding: 24px 0;
  color: white;
  position: absolute;
  right: 0;
  top: 0;
  cursor: pointer;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.page_title .order_button:hover {
  background-color: #329400;
}

.about_page {
  background-color: #f4f4f4;
  padding-bottom: 160px;
}

.about_page .about_img {
  height: 527px;
  overflow: hidden;
}

.about_page .about_img img {
  width: 100%;
}

.about_page .about_text {
  background-color: #f4f4f4;
  padding: 24px;
  margin-top: -140px;
  position: relative;
  z-index: 1;
}

.about_page .about_text p {
  margin-bottom: 20px;
}

.projects_page {
  background-color: #f4f4f4;
  padding-bottom: 160px;
}

.projects_page .filters {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 40px;
}

.projects_page .filters .filter > ul > li {
  position: relative;
  width: 190px !important;
  padding: 24px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: 'Bold';
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.projects_page .filters .filter > ul > li:after {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid #484848;
}

.projects_page .filters .filter > ul > li:hover {
  background-color: #f78f00;
  color: white;
  cursor: pointer;
}

.projects_page .filters .filter > ul > li:hover:after {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-bottom: 4px solid white;
  border-top: 0;
}

.projects_page .filters .filter > ul > li:hover ul {
  display: block;
}

.projects_page .filters .filter > ul li {
  background-color: #dedede;
  border: 0;
  border-radius: 2px;
  color: #484848;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.projects_page .filters .filter > ul li span {
  font-size: 14px;
}

.projects_page .filters .filter > ul li ul {
  width: 100%;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1;
  display: none;
}

.projects_page .filters .filter > ul li ul li {
  font-size: 13px;
}

.projects_page .filters .filter > ul li ul li label {
  width: 100%;
  padding: 16px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-family: 'Medium';
  cursor: pointer;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.projects_page .filters .filter > ul li ul li label input {
  display: none;
}

.projects_page .filters .filter > ul li ul li label .checkmark {
  width: 15px;
  height: 15px;
  border: 2px solid #484848;
  border-radius: 2px;
  margin-right: 30px;
  position: relative;
}

.projects_page .filters .filter > ul li ul li label .checkmark:after {
  position: absolute;
  top: 2px;
  left: 5px;
  width: 4px;
  height: 7px;
  border: solid white;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  content: "";
  display: none;
}

.projects_page .filters .filter > ul li ul li label.checked {
  color: #329400;
}

.projects_page .filters .filter > ul li ul li label.checked .checkmark {
  background-color: #329400;
  border: 2px solid #329400;
}

.projects_page .filters .filter > ul li ul li label.checked .checkmark:after {
  display: block;
}

.projects_page .filters .filter > ul li ul li label:hover {
  font-family: 'Bold';
}

.projects_page .filters .filter .select2-container--open .select2-selection--single {
  background-color: #f78f00;
}

.projects_page .filters .filter .select2-container--default .select2-selection--single .select2-selection__arrow {
  position: static;
  width: 8px;
  height: 4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.projects_page .filters .filter .select2-container--default .select2-selection--single .select2-selection__arrow b {
  position: static;
}

.projects_page .filters .filter .select2-results__option {
  background-color: #f4f4f4;
  padding: 16px;
}

.projects_page .projects {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.projects_page .projects .project {
  width: 352px;
  height: 344px;
  position: relative;
  margin-bottom: 16px;
}

.projects_page .projects .project .project_image {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
}

.projects_page .projects .project .project_image img {
  min-width: 100%;
}

.projects_page .projects .project .project_title {
  width: 100%;
  height: 80px;
  background-color: rgba(0, 0, 0, 0.56);
  position: absolute;
  bottom: 0;
  left: 0;
}

.projects_page .projects .project .project_title .more {
  display: inline-block;
  width: 40px;
  height: 40px;
  background-color: #f78f00;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  top: -20px;
  left: calc(50% - 20px);
  opacity: 0;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.projects_page .projects .project .project_title h3 {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.projects_page .projects .project .project_title h3 a {
  width: 100%;
  display: block;
  padding: 20px;
  text-align: center;
  color: #fff;
  font-size: 16px;
  font-family: 'Bold';
}

.projects_page .projects .project:hover .more {
  opacity: 1;
}

.projects_page .more_projects {
  margin-top: 64px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.projects_page .more_projects svg {
  -webkit-animation: rotate 1s infinite linear;
          animation: rotate 1s infinite linear;
  cursor: pointer;
}

.adventages_page {
  background-color: #f4f4f4;
}

.tabs .nav-tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 0;
}

.tabs .nav-tabs li {
  width: 225px;
  text-align: center;
  padding: 24px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: solid 1px #dedede;
  border-right: 0;
  color: #484848;
  font-size: 14px;
  line-height: 18px;
  cursor: pointer;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.tabs .nav-tabs li:last-child {
  border-right: solid 1px #dedede;
}

.tabs .nav-tabs li:hover {
  color: #f78f00;
}

.tabs .nav-tabs li.active {
  color: #f78f00;
  border-bottom: 1px solid #f78f00;
}

.tabs .tab-content {
  padding-top: 24px;
}

.tabs .tab-content .tab-panel {
  line-height: 20px;
  display: none;
}

.tabs .tab-content .tab-panel.active {
  display: block;
}

.tabs.b_0 {
  margin-top: 60px;
}

.tabs.b_0 .nav-tabs li {
  padding: 15px 12px;
  border: 0;
  border-bottom: 1px solid #dedede;
  color: #000;
  font-family: 'Bold';
  font-size: 14px;
  line-height: 20px;
  cursor: pointer;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  white-space: nowrap;
  position: relative;
}

.tabs.b_0 .nav-tabs li.active {
  color: #f78f00;
}

.tabs.b_0 .nav-tabs li.active:after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  position: absolute;
  bottom: -1px;
  left: 0;
  background-color: #f78f00;
}

@-webkit-keyframes rotate {
  from {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes rotate {
  from {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

.order_modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  height: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: none;
}

.order_modal.open {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.order_modal.open .order_form {
  -webkit-animation: modalAnimate 0.5s;
          animation: modalAnimate 0.5s;
}

.order_modal .bg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0vw;
  background-color: rgba(0, 0, 0, 0.64);
}

.order_modal .order_form {
  width: 464px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 65px 56px;
  background-color: #fff;
  position: relative;
  z-index: 3;
}

.order_modal .order_form .close {
  position: absolute;
  top: 6px;
  right: 6px;
  cursor: pointer;
}

.contact_info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 15px;
}

.contact_info .col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-right: 60px;
}

.contact_info .col:last-child {
  margin-right: 0;
}

.contact_info .col .icon {
  margin-right: 24px;
}

.contact_info .col ul li {
  color: #000;
  font-size: 16px;
  line-height: 19px;
  font-family: 'Bold';
  margin-bottom: 17px;
}

.contact_info .col ul li:last-child {
  margin-bottom: 0;
}

.contact_info .col ul li.working_hours {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.contact_info .col ul li.working_hours svg {
  margin: 0 6px;
  vertical-align: middle;
}

.contact_info .col ul li span, .contact_info .col ul li a {
  color: #000;
  font-size: 16px;
  line-height: 19px;
  font-family: 'Bold';
}

.map_form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.map_form .map {
  margin-right: 16px;
}

.map_form .map img {
  width: 100%;
  margin: 0;
}

.map_form .input_group {
  margin-bottom: 16px;
}

.fundament .b_0 {
  margin-top: 0;
}

.fundament .b_0 .nav-tabs {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-bottom: 1px solid #dedede;
}

.fundament .b_0 .nav-tabs li {
  font-family: 'Medium';
  border-bottom: 0;
}

.fundament .b_0 .nav-tabs li.active:after {
  height: 1px;
}

.text_center {
  text-align: center;
}

.partners_page {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.partners_page .partner {
  cursor: pointer;
  width: 272px;
  height: 272px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px solid #dedede;
  border-top: 0;
  border-right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.partners_page .partner:nth-child(1), .partners_page .partner:nth-child(2), .partners_page .partner:nth-child(3), .partners_page .partner:nth-child(4) {
  border-top: 1px solid #dedede;
}

.partners_page .partner:nth-child(4n) {
  border-right: 1px solid #dedede;
}

.partners_page .partner img {
  width: 80px;
}

.partners_page .partner:hover {
  -webkit-box-shadow: inset 0px 0px 2px rgba(0, 0, 0, 0.3);
          box-shadow: inset 0px 0px 2px rgba(0, 0, 0, 0.3);
}

.partners_modal {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  display: none;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.partners_modal .bg {
  width: 100%;
  height: 100%;
  opacity: 0.5;
  background-color: #000000;
  position: absolute;
  top: 0;
  left: 0;
  cursor: pointer;
}

.partners_modal .content {
  width: 720px;
  height: 248px;
  background-color: #484848;
  padding: 24px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  z-index: 1;
}

.partners_modal .content p {
  color: #ffffff;
  font-size: 14px;
  line-height: 26px;
  font-family: 'Medium';
}

.partners_modal .content .close {
  position: absolute;
  top: 6px;
  right: 6px;
  cursor: pointer;
}

.partners_modal .content .close svg {
  fill: #fff;
}

.partners_modal.open {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.partners_modal.open .content {
  -webkit-animation: modalAnimate 0.5s;
          animation: modalAnimate 0.5s;
}

.reviews .tabs .nav-tabs {
  border: solid 1px #dedede;
}

.reviews .tabs .nav-tabs li {
  width: 34%;
  text-align: center;
  border: 0;
  border-right: solid 1px #dedede;
}

.reviews .tabs .nav-tabs li.active {
  color: #f78f00;
  border-bottom: 1px solid #f78f00;
}

.reviews .tabs .tab-content {
  border: solid 1px #dedede;
  border-top: 0;
  padding-bottom: 16px;
}

.reviews .make_review {
  width: 330px;
  margin: 0 auto;
}

.reviews .make_review form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.reviews .make_review .input_group {
  width: 100%;
  border: solid 1px #dedede;
  margin-bottom: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-radius: 2px;
}

.reviews .make_review .input_group input {
  width: 100%;
  height: 66px;
  border: 0;
  background-color: transparent;
  padding-left: 24px;
  font-family: 'Medium';
}

.reviews .make_review .input_group input[type="file"] {
  display: none;
}

.reviews .make_review .input_group textarea {
  width: 100%;
  height: 105px;
  border: 0;
  background-color: transparent;
  padding-left: 24px;
  padding-top: 24px;
  resize: none;
  font-family: 'Medium';
}

.reviews .make_review .input_group span {
  width: 66px;
  height: 66px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.reviews .make_review button {
  width: 100%;
  height: 66px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 2px;
  background-color: #f78f00;
  font-size: 14px;
  color: white;
  border: 0;
  cursor: pointer;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.reviews .make_review button svg {
  margin-left: 32px;
}

.reviews .make_review button:hover {
  background-color: #329400;
}

.reviews .user_review {
  padding: 0 24px;
  margin: 24px 0;
}

.reviews .user_review h4 {
  font-size: 16px;
  line-height: 19px;
  color: #484848;
  font-family: 'Bold';
  margin-bottom: 16px;
}

.reviews .user_review p {
  font-size: 12px;
  line-height: 20px;
  color: #9f9f9f;
  font-family: 'Regular';
}

.reviews .image_review {
  padding: 0 24px;
  margin: 24px 0;
}

.reviews .image_review img {
  width: 100%;
}

.image_gallery {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.image_gallery .image {
  width: 190px;
  height: 195px;
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 16px;
  margin-right: 28px;
}

.image_gallery .image:nth-child(5n) {
  margin-right: 0;
}

.image_gallery .image img {
  min-width: 100%;
  min-height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  margin: 0;
}

.image_gallery .image a {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}

.image_gallery .image a .hover {
  opacity: 0;
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.48);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.image_gallery .image a .hover .circle {
  width: 48px;
  height: 48px;
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
  background-color: rgba(247, 143, 0, 0.32);
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.image_gallery .image a:hover .hover {
  opacity: 1;
}

.project_slider {
  width: 100%;
  position: relative;
  z-index: 0;
  margin-bottom: 80px;
}

.project_slider .swiper-slide {
  width: 50%;
  height: 400px;
  padding: 8px;
  overflow: hidden;
  position: relative;
}

.project_slider .swiper-slide img {
  min-width: 100%;
  min-height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.project_slider .swiper-slide.swiper-slide-prev img, .project_slider .swiper-slide.swiper-slide-next img {
  opacity: 0.12;
}

.project_slider .swiper-button-prev, .project_slider .swiper-button-next {
  width: auto;
  height: auto;
}

.project_slider .swiper-button-prev:after, .project_slider .swiper-button-next:after {
  display: none;
}

.project_slider .swiper-button-prev, .project_slider .swiper-container-rtl .swiper-button-next {
  left: 10%;
}

.project_slider .swiper-button-next, .project_slider .swiper-container-rtl .swiper-button-prev {
  right: 10%;
}

.project_slider .circle {
  width: 64px;
  height: 64px;
  background-color: #f78f00;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  opacity: 0;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.project_slider .circle svg {
  fill: #fff;
}

.project_slider:hover .circle {
  opacity: 0.7;
}

.project_slider:hover .circle:hover {
  opacity: 1;
}

.project_in table {
  margin-bottom: 80px;
}

.project_in table tr td:nth-child(1) {
  width: 70px;
}

.project_in table tr td:nth-child(2) {
  width: 50%;
}

.project_in table tr td:nth-child(3) {
  text-align: right;
  font-size: 18px;
  line-height: 22px;
}
/*# sourceMappingURL=style.css.map */