._flex-display {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
._justify-content-center {
  -ms-flex-pack: center;
  justify-content: center;
}
._justify-content-end {
  -ms-flex-pack: end;
  justify-content: flex-end;
}
._justify-content-start {
  -ms-flex-pack: start;
  justify-content: flex-start;
}
._justify-content-justify {
  -ms-flex-pack: justify;
  justify-content: space-between;
}
:root {
  --main-font: 'tt-commons-pro', sans-serif;
  --main-color: #221E1F;
  --Gray-5: #E0E0E0;
}
* {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
textarea {
  overflow: hidden;
}
ul {
  list-style: disc;
  margin-bottom: 0;
  padding-left: 20px;
}
ol {
  list-style: decimal;
  margin-bottom: 0;
  padding-left: 20px;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'tt-commons-pro', sans-serif;
  margin: 0;
  font-weight: normal;
}
a:hover,
a:focus,
a:visited {
  text-decoration: none;
}
*:focus::-webkit-input-placeholder {
  color: transparent !important;
}
*:focus::-moz-placeholder {
  color: transparent !important;
}
*:focus:-moz-placeholder {
  color: transparent !important;
}
*:focus:-ms-input-placeholder {
  color: transparent !important;
}
p,
li {
  line-height: 1.5;
}
p {
  margin-bottom: 10px;
}
html {
  height: 100%;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}
body {
  font-family: 'tt-commons-pro', sans-serif;
  font-size: 16px;
  font-weight: normal;
  line-height: normal;
  color: #221E1F;
  min-height: 100vh;
  background: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
}
.wow {
  visibility: hidden;
}
.row {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.col-12 {
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
}
.col-12,
.col-md-3,
.col-md-7,
.col-md-9,
.col-md-10,
.col-md-11,
.col-sm-6,
.col-md-6,
.col-md-4,
.col-sm-3,
.col-xm-6,
.col-md-12,
.col-md-8,
.col-md-5,
.col-md-2,
.col-sm-4,
.col-sm-8 {
  padding-left: 15px;
  padding-right: 15px;
  width: 100%;
}
.col-12.no-pad,
.col-md-3.no-pad,
.col-md-7.no-pad,
.col-md-9.no-pad,
.col-md-10.no-pad,
.col-md-11.no-pad,
.col-sm-6.no-pad,
.col-md-6.no-pad,
.col-md-4.no-pad,
.col-sm-3.no-pad,
.col-xm-6.no-pad,
.col-md-12.no-pad,
.col-md-8.no-pad,
.col-md-5.no-pad,
.col-md-2.no-pad,
.col-sm-4.no-pad,
.col-sm-8.no-pad {
  padding-left: 0;
  padding-right: 0;
}
.color-white {
  color: #fff;
}
.color-white h1 {
  color: #fff;
}
.color-white * {
  color: #fff;
}
.color-white a {
  color: #fff;
}
.color-white .label,
.color-white .read-more,
.color-white .cat_label {
  color: #fff;
}
.main-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 0;
  z-index: 1000;
}
body.page-scrolled .main-header {
  position: fixed;
}
body.active-sub-menu .main-header::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.2);
  z-index: -1;
}
.main-header .mob-menu {
  display: none;
  background-color: #fff;
  padding: 40px 15px;
  max-height: calc(100svh - 80px);
  overflow-y: auto;
}
.main-header .mob-menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.main-header .mob-menu ul li {
  border-bottom: 1px solid var(--main-color);
}
.main-header .mob-menu ul li.menu-item-has-children {
  position: relative;
}
.main-header .mob-menu ul li.menu-item-has-children .mob-arr {
  position: absolute;
  display: inline-block;
  right: 5px;
  top: 21px;
  border: none;
  outline: none;
  background-color: transparent;
  padding: 3px;
  cursor: pointer;
}
.main-header .mob-menu ul li.menu-item-has-children .mob-arr img {
  display: block;
}
.main-header .mob-menu ul li.menu-item-has-children.sub-menu-opened > .mob-arr {
  transform: rotate(-180deg);
}
.main-header .mob-menu ul a {
  color: var(--main-color);
  text-decoration: none;
  padding-block: 10px;
  font-size: 18px;
  display: inline-block;
  width: 100%;
}
.main-header .mob-menu ul ul {
  margin-left: 20px;
  display: none;
}
.main-header .mob-menu ul ul li:last-child {
  border-bottom: none;
}
.main-header .mob-menu ul ul li:first-child {
  border-top: 1px solid var(--main-color);
}
.main-header > .container {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-pack: justify;
  justify-content: space-between;
  align-items: center;
}
.main-header .logo-img {
  display: none;
}
@media (min-width: 1200px) {
  .main-header .logo-img {
    transform: scale(1.2);
  }
}
body:not(.active-sub-menu):not(.page-scrolled) .main-header.bg_transparent .logo-img {
  display: block;
}
body:not(.active-sub-menu):not(.page-scrolled) .main-header.bg_transparent .logo-img-transparent {
  display: none;
}
body:not(.active-sub-menu):not(.page-scrolled) .main-header.bg_transparent .btn.has_icon:not(.bg_yellow) {
  color: #fff;
  border-color: #fff;
}
body:not(.active-sub-menu):not(.page-scrolled) .main-header.bg_transparent .main-menu > li > a {
  color: #fff;
}
.main-header .search_icon {
  margin-left: 32px;
  cursor: pointer;
}
.main-header .search_icon path {
  fill: #221E1F;
}
body:not(.active-sub-menu):not(.page-scrolled) .main-header.bg_transparent .search_icon path {
  fill: #fff;
}
.main-header .main-menu {
  flex: 1 1 auto;
  list-style: none;
  padding-left: 0;
  text-align: right;
  padding-right: 100px;
}
.main-header .main-menu > li {
  display: inline-block;
  margin-right: 30px;
}
.main-header .main-menu > li > a {
  color: #221E1F;
  text-decoration: none;
  font-family: "tt-commons-pro";
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  position: relative;
}
.main-header .main-menu > li > a::after {
  content: '';
  position: absolute;
  top: calc(100% + 3px);
  left: 0;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  transition: transform 1s cubic-bezier(0, 0, 0, 1);
  transform: scaleX(0);
  transform-origin: 0 0;
}
.main-header .main-menu > li > a:hover::after {
  transform: scaleX(1);
}
.active-sub-menu .main-header,
.page-scrolled .main-header {
  background-color: #fff;
}
.navigation_main {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  padding: 0;
  display: grid;
  grid-template-rows: 0fr;
  background: transparent;
  transition: grid-template-rows 0.7s, background 0.3s ease, min-height 0.5s, margin 0.3s, padding 0.3s;
  min-height: 0;
  z-index: -100;
  visibility: hidden;
}
.navigation_main .sub_navigation {
  grid-column: 1;
  grid-row: 1;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.7s ease;
  overflow: hidden;
  height: 0;
  padding: 60px 0;
  position: relative;
}
.navigation_main .sub_navigation.active {
  opacity: 1;
  pointer-events: auto;
  height: auto;
  transition: opacity 0.7s ease;
}
.navigation_main.active {
  display: grid;
  grid-template-rows: 1fr;
  background: #fff;
  min-height: var(--min-h, 0px);
  z-index: auto;
  visibility: visible;
}
.navigation_main .container {
  display: flex;
}
.navigation_main .nav_title {
  color: #221E1F;
  font-family: "tt-commons-pro";
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 16px;
  /* 133.333% */
  letter-spacing: 0.48px;
  text-transform: uppercase;
  display: block;
  padding-bottom: 7px;
}
.navigation_main .img_link_nav {
  display: block;
  width: 342px;
  padding: 0 !important;
  overflow: hidden;
}
.navigation_main .img_link_nav:hover img {
  transform: scale(1.05);
}
.navigation_main .img_link_nav img {
  transition: 0.3s ease;
  aspect-ratio: 342 / 188;
  object-fit: cover;
}
.navigation_main .img_link_nav:after {
  display: none;
}
.navigation_main ul {
  list-style: none;
  padding-left: 0;
  position: relative;
}
.navigation_main ul li {
  margin-bottom: 0;
}
.navigation_main ul li ul {
  position: absolute;
  left: 100%;
  top: 0;
  min-height: 100%;
}
.navigation_main ul a {
  color: #221E1F;
  font-family: "tt-commons-pro";
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-decoration: none;
  position: relative;
}
.navigation_main .main_nav_list,
.navigation_main .sub_nav_list {
  padding-right: 60px;
}
.navigation_main .main_nav_list a,
.navigation_main .sub_nav_list a {
  display: inline-block;
  position: relative;
  padding: 9px 0;
}
.navigation_main .main_nav_list a:after,
.navigation_main .sub_nav_list a:after {
  content: '';
  position: absolute;
  bottom: 0px;
  height: 1px;
  left: 0;
  width: 100%;
  background: #221E1F;
  transition: transform 1s cubic-bezier(0, 0, 0, 1);
  transform: scaleX(0);
  transform-origin: 0 0;
}
.navigation_main .main_nav_list li:hover > a::after,
.navigation_main .sub_nav_list li:hover > a::after {
  transform: scaleX(1);
}
.navigation_main .sub_nav_list {
  min-width: 280px;
  padding-left: 60px;
  border-left: 1px solid rgba(0, 0, 0, 0.2);
}
.navigation_main .sub_nav_list ul {
  padding-left: 60px;
  border-left: 1px solid rgba(0, 0, 0, 0.2);
}
.navigation_main .main_nav_list > li ul {
  transition: opacity 0.7s;
  opacity: 0;
  pointer-events: none;
}
.navigation_main .main_nav_list > li ul.sub_nav_list_flow {
  display: grid;
}
.navigation_main .main_nav_list > li.hover > ul {
  opacity: 1;
  pointer-events: auto;
}
.navigation_main .sub_nav_list > li > ul {
  transition: opacity 0.5s;
  opacity: 0;
  pointer-events: none;
}
.navigation_main .sub_nav_list > li > ul.sub_nav_list_flow,
.navigation_main .sub_nav_list > li > ul.nav-projects {
  display: grid;
}
.navigation_main .sub_nav_list > li.hover > ul {
  opacity: 1;
}
.navigation_main .nav-projects .project-nav-link {
  display: flex;
  gap: 32px;
}
.navigation_main .nav-projects .project-nav-link:hover::after {
  opacity: 0;
}
.navigation_main .nav-projects .project-nav-link__img {
  flex: 0 0 auto;
}
.navigation_main .nav-projects .project-nav-link__img img {
  max-width: 400px;
  aspect-ratio: 400 / 220;
  object-fit: cover;
}
.navigation_main .nav-projects .project-nav-link__data {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(3, auto);
  grid-auto-flow: column;
  gap: 16px;
}
.navigation_main .nav-projects .project-nav-link__label {
  white-space: nowrap;
}
.navigation_main .sub_nav_list_flow {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 24px;
  min-width: fit-content;
}
.navigation_main .sub_nav_list_flow .product-in-nav {
  display: flex;
  gap: 16px;
  flex-direction: column;
  align-items: center;
  min-width: 180px;
}
.navigation_main .sub_nav_list_flow .product-in-nav::after {
  display: none;
}
.navigation_main .sub_nav_list_flow .product-in-nav img {
  width: max-content;
  height: 110px;
  width: auto;
}
.row_reverse {
  flex-direction: row-reverse;
}
.img_link {
  display: block;
  position: relative;
  text-decoration: none;
  overflow: hidden;
}
.img_link.img-gallery_item {
  width: fit-content;
}
.img_link:hover img {
  -webkit-transform: scale(1.05);
  -o-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
}
.img_link:hover span svg {
  -webkit-transform: translateX(3px);
  -o-transform: translateX(3px);
  -ms-transform: translateX(3px);
  transform: translateX(3px);
}
.img_link.no-zoom img {
  transform: none;
}
.img_link:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 30%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 21.23%, rgba(34, 30, 31, 0.6) 95.63%);
}
.img_link img {
  -webkit-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media (min-width: 992px) {
  .img_link.aspect-1320-600 {
    aspect-ratio: 1320 / 600;
    min-height: 0;
  }
  .img_link.aspect-1320-600 img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
.img_link div {
  position: absolute;
  z-index: 2;
  left: 32px;
  right: 32px;
  bottom: 32px;
  text-decoration: none;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: center;
  align-items: center;
  color: #FFF;
  font-family: 'tt-commons-pro';
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 1;
}
.img_link div::after {
  content: '';
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  height: 1px;
  background-color: #fff;
  transition: transform 0.4s;
  transform: scaleX(0);
  transform-origin: 100% 50%;
}
.img_link div p {
  margin-bottom: 0;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 400;
}
.img_link div span {
  display: inline-block;
  line-height: 1.5;
}
.img_link div span svg {
  vertical-align: middle;
  position: relative;
  top: -2px;
  -webkit-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  transition: 0.3s ease;
}
.img_link:hover div::after {
  transform: scaleX(1);
}
.section_img p {
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.4;
}
.section_img .row {
  align-items: center;
}
.section_img .intro {
  font-family: "tt-commons-pro";
  font-style: normal;
  font-weight: 400;
  line-height: 1.18;
  margin-bottom: 30px;
  border-bottom: 1px solid #221E1F;
}
.section_img .intro p,
.section_img .intro li {
  font-size: 32px;
  line-height: 1.18;
  font-weight: 300;
}
.btn {
  display: inline-block;
  text-decoration: none;
  color: #221E1F;
  font-family: "tt-commons-pro";
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  /* 133.333% */
  letter-spacing: 0.48px;
  text-transform: uppercase;
  padding: 15px 16px;
  border: 1px solid #221E1F;
  transition: all 0.3s;
}
.btn.bg_yellow {
  background: #FFDE16;
  border-color: #FFDE16;
}
.btn.has_icon {
  position: relative;
  padding-left: 42px;
}
.btn.has_icon svg {
  position: absolute;
  display: block;
  top: 50%;
  transform: translateY(-50%);
  left: 14px;
  margin-top: -1px;
}
.btn.has_icon path {
  fill: var(--main-color);
  transition: fill 0.3s;
}
.btn.has_icon circle {
  transition: stroke 0.3s;
}
.btn.has_icon:hover {
  color: #fff;
  border-color: #000 !important;
  background-color: #000;
}
.btn.has_icon:hover path {
  fill: #fff;
}
.btn.has_icon:hover circle {
  stroke: #fff;
}
.right_links {
  position: relative;
  z-index: 5;
}
body:not(.active-sub-menu):not(.page-scrolled) .main-header.bg_transparent .right_links .btn.has_icon:not(.bg_yellow) path {
  fill: #fff;
}
.videobg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  pointer-events: none;
  /* Set video container element width here */
  height: 100%;
  /* Set video container element height here */
  overflow: hidden;
  z-index: 1;
  /* bg color, if video is not high enough */
}
/* horizontally center the video */
.videobg-width {
  position: absolute;
  width: 100%;
  /* Change width value to cover more area*/
  height: 100%;
  left: -9999px;
  right: -9999px;
  margin: auto;
}
/* set video aspect ratio and vertically center */
.videobg-aspect {
  position: absolute;
  width: 100%;
  height: 0;
  top: -9999px;
  bottom: -9999px;
  margin: auto;
  padding-bottom: 56.25%;
  /* 16:9 ratio */
  overflow: hidden;
}
.videobg-make-height {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.videobg-hide-controls {
  box-sizing: content-box;
  position: relative;
  height: 100%;
  width: 100%;
  /* Vimeo timeline and play button are ~55px high */
  padding: 55px 97.7777px;
  /* 16:9 ratio */
  top: -55px;
  left: -97.7777px;
  /* 16:9 ratio */
}
.videobg iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border: 0 none;
}
.top_banner {
  padding-top: 399px;
  padding-bottom: 55px;
  background-position: center bottom;
  background-size: cover;
  position: relative;
}
.top_banner .video_wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.top_banner .container {
  position: relative;
  z-index: 3;
}
.top_banner:after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: '';
  background: linear-gradient(210deg, rgba(0, 0, 0, 0) 26.15%, rgba(0, 0, 0, 0.8) 76.73%);
  opacity: 0.6;
  z-index: 1;
}
.vimeo_control {
  pointer-events: none;
  position: absolute;
  z-index: 5;
  left: 0;
  width: 100%;
  bottom: 55px;
  text-align: right;
}
.vimeo_control .container {
  display: flex;
  justify-content: flex-end;
}
.vimeo_control button {
  cursor: pointer;
  pointer-events: auto;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  background: transparent;
  border: 3px solid #fff;
  -webkit-appearance: none;
}
.img-gallery .img-gallery_item + .img-gallery_item {
  display: none;
}
.toggle-menu {
  display: none;
}
.container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
.main-block {
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
  height: 100%;
  overflow: hidden;
}
.text-center {
  text-align: center;
}
.main-sect {
  padding: 100px 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  --mob-padding: 60px;
}
.main-sect p a{
	color: inherit;
}
@media (max-width: 1199px) {
  .main-sect {
    padding-block: 75px;
  }
}
@media (max-width: 991px) {
  .main-sect {
    padding-block: 50px;
  }
}
@media (max-width: 767px) {
  .main-sect {
    padding-block: var(--mob-padding);
  }
}
.main-sect.pad-sm {
  padding: 35px 0;
}
.main-sect.pad-t-20 {
  padding-top: 20px;
}
.main-sect.pad-t-sm {
  padding-top: 45px;
}
.main-sect.pad-t60 {
  padding-top: 60px;
}
@media (max-width: 767px) {
  .main-sect.pad-t60 {
    padding-top: var(--mob-padding);
  }
}
.main-sect.pad-b60 {
  padding-bottom: 60px;
}
@media (max-width: 767px) {
  .main-sect.pad-b60 {
    padding-bottom: 45px;
  }
}
.main-sect.pad-t-md {
  padding-top: 80px;
}
@media (max-width: 767px) {
  .main-sect.pad-t-md {
    padding-top: var(--mob-padding);
  }
}
.main-sect.pad-b-md {
  padding-bottom: 80px;
}
@media (max-width: 767px) {
  .main-sect.pad-b-md {
    padding-bottom: var(--mob-padding);
  }
}
.main-sect.pad-70 {
  padding: 70px 0;
}
@media (max-width: 767px) {
  .main-sect.pad-70 {
    padding: var(--mob-padding) 0;
  }
}
.main-sect.pad-b-none {
  padding-bottom: 0;
}
@media (max-width: 767px) {
  .main-sect.mob-pad-t0 {
    padding-top: 0;
  }
}
.advantages {
  text-align: center;
}
.advantages .col-sm-4 {
  margin-top: 80px;
}
.advantages .icon {
  margin-bottom: 20px;
}
.advantages h3 {
  color: #221E1F;
  font-family: "tt-commons-pro";
  font-size: 24px;
  font-style: normal;
  font-weight: 300;
  line-height: 1.16;
  /* 116.667% */
}
.head_section {
  padding: 200px 0 40px 0;
}
.breadcrumbs {
  padding: 60px 0;
}
@media (max-width: 767px) {
  .breadcrumbs {
    padding-block: 60px;
  }
}
.breadcrumbs a,
.breadcrumbs span {
  color: #221E1F;
  font-family: "tt-commons-pro";
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.5;
  text-decoration: none;
}
.breadcrumbs a:hover {
  text-decoration: underline;
}
.item_product {
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  text-decoration: none;
  color: #221E1F;
  font-family: "tt-commons-pro";
  -ms-flex-align: flex-start;
  align-items: flex-start;
}
.item_product:hover .img img {
  -webkit-transform: scale(1.05);
  -o-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
}
.item_product .img {
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.item_product .img img {
  -webkit-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  transition: 0.3s ease;
  object-fit: cover;
}
.item_product .img.img-height-fixed {
  min-height: 346px;
  position: relative;
  flex-grow: 1;
}
.item_product .cat_label {
  margin-bottom: 15px;
}
.item_product h3 {
  color: #221E1F;
  font-family: "tt-commons-pro";
  font-size: 28px;
  font-style: normal;
  font-weight: 300;
  line-height: 1.21;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  width: 100%;
  border-bottom: 0.5px solid #221E1F;
  padding-bottom: 8px;
}
.item_product.hover-show-arr h3 {
  position: relative;
  transition: border-color 0.3s;
  padding-right: 24px;
}
.item_product.hover-show-arr h3 .svg {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
  transition: opacity 0.3s;
}
.item_product.hover-show-arr:hover h3 {
  border-color: transparent;
}
.item_product.hover-show-arr:hover h3 .svg {
  opacity: 1;
}
.top_banner_single {
  position: relative;
  overflow: hidden;
  height: 450px;
}
.top_banner_single > img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.top_banner_single:before {
  position: absolute;
  display: block;
  content: '';
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0) 18.62%, rgba(0, 0, 0, 0.3) 76.85%);
}
.top_banner_single .product-mobile-header {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: none;
  z-index: 3;
  padding-bottom: 20px;
}
.top_banner_single .product-mobile-header::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.2));
}
@media (max-width: 767px) {
  .top_banner_single .product-mobile-header {
    display: block;
  }
}
.top_banner_single .product-mobile-header .main_title {
  color: #fff;
  position: relative;
  z-index: 5;
}
@media (max-width: 768px) {
  .hide-on-mobile {
    display: none !important;
  }
}
.cat_label {
  color: #221E1F;
  display: inline-block;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 1;
  /* 133.333% */
  letter-spacing: 0.48px;
  text-transform: uppercase;
  padding: 6px 6px 5px 6px;
  background: rgba(34, 30, 31, 0.1);
}
.cat_label.no_bg {
  background: transparent;
}
.cat_label.color-white {
  color: #fff;
  background: rgba(255, 255, 255, 0.2);
}
.btn_block .btn {
  margin-right: 5px;
  margin-bottom: 10px;
}
.item_post {
  text-decoration: none;
  color: #221E1F;
  display: block;
  height: 100%;
}
.item_post.border_bottom {
  padding-bottom: 5px;
}
.item_post:hover .img img {
  -webkit-transform: scale(1.05);
  -o-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
}
.item_post:hover .learn_more svg {
  transform: translateX(4px);
}
.item_post h3 {
  font-size: 28px;
  font-style: normal;
  font-weight: 300;
  line-height: 1.21;
}
@media (max-width: 767px) {
  .item_post h3 {
    font-size: 22px;
  }
}
.item_post .img {
  overflow: hidden;
  margin-bottom: 16px;
}
.item_post .img img {
  -webkit-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  transition: 0.3s ease;
}
.item_post .img img.aspect_420_280 {
  aspect-ratio: 420 / 280;
  object-fit: cover;
}
.item_post.prod_slide .img {
  min-height: 346px;
}
@media (max-width: 991px) {
  .item_post.prod_slide .img img {
    width: auto;
  }
}
.item_post .cat_label {
  margin-bottom: 16px;
}
@media (max-width: 767px) {
  .item_post .cat_label {
    margin-bottom: 8px;
  }
}
.item_post .learn_more {
  margin-top: 8px;
}
.read_more_down {
  display: block;
  text-decoration: none;
  color: #221E1F;
  font-family: "tt-commons-pro";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  border-bottom: 1px solid #221E1F;
  position: relative;
  padding-bottom: 5px;
  padding-top: 9px;
}
.read_more_down.blocked {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.read_more_down.blocked div {
  padding-right: 30px;
}
.read_more_down.blocked a {
  color: #221E1F;
}
.read_more_down:hover:not(.blocked) svg {
  -webkit-transform: translateY(3px);
  -o-transform: translateY(3px);
  -ms-transform: translateY(3px);
  transform: translateY(3px);
}
.read_more_down svg {
  position: absolute;
  right: 0;
  bottom: 8px;
  -webkit-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  transition: 0.3s ease;
}
.read_more_down .read-less {
  display: none;
}
.read_more_down.opened:not(.blocked) .read-more {
  display: none;
}
.read_more_down.opened:not(.blocked) .read-less {
  display: initial;
}
.read_more_down.opened:not(.blocked) svg {
  transform: rotate(-180deg);
}
.read_more_down.opened:not(.blocked) svg:hover {
  transform: rotate(-180deg) translateY(3px);
}
.learn_more {
  display: inline-block;
  color: #221E1F;
  font-family: "tt-commons-pro";
  text-decoration: none;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
}
.learn_more:hover svg {
  transform: translateX(4px);
}
.learn_more svg {
  vertical-align: middle;
  position: relative;
  top: -2px;
  -webkit-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  transition: 0.3s ease;
}
.prod_slider {
  display: flex;
  overflow: hidden;
  margin: 0 -14px;
  position: relative;
  padding-top: 56px;
}
@media (max-width: 767px) {
}
.prod_slider.arrow_bottom {
  padding-bottom: 56px;
}
.prod_slider.arrow_bottom .slick-arrow {
  top: auto;
  bottom: 0;
}
.prod_slider .slick-arrow {
  position: absolute;
  top: 0;
  right: 14px;
  width: 40px;
  height: 40px;
  background-image: url("../img/ChevronD.svg");
  background-position: center;
  background-repeat: no-repeat;
  font-size: 0;
  background-color: transparent;
  cursor: pointer;
}
.prod_slider .slick-arrow.slick-prev {
  -webkit-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
  right: 62px;
}
.prod_slider.slick-initialized {
  display: block;
}
.prod_slider.slick-initialized .item_sl {
  -ms-flex: unset;
  flex: unset;
}
.prod_slider .slick-track {
  display: flex;
}
.prod_slider .item_sl {
  padding: 0 14px;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
}
.main-footer {
  padding-top: 48px;
  border-top: 0.5px solid #221E1F;
}
.main-footer a {
  color: #221E1F;
  font-family: "tt-commons-pro";
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-decoration: none;
  position: relative;
}
.main-footer a:not(.foot_logo)::after {
  content: '';
  position: absolute;
  top: calc(100% + 0px);
  left: 0;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  transition: transform 1s cubic-bezier(0, 0, 0, 1);
  transform: scaleX(0);
  transform-origin: 0 0;
}
.main-footer a:not(.foot_logo):hover::after {
  transform: scaleX(1);
}
.main-footer .foot_logo_wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding-bottom: 20px;
}
@media (max-width: 767px) {
  .main-footer .foot_logo_wrap {
    flex-direction: row;
    justify-content: space-around;
    padding-bottom: 0;
  }
}
.main-footer .foot_logo_wrap .icon {
  margin-top: auto;
}
.main-footer .foot_content {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding-bottom: 30px;
}
.main-footer .foot_nav {
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-pack: center;
  justify-content: center;
  column-gap: 45px;
}
.main-footer .foot_nav ul {
  list-style: none;
  padding-left: 0;
}
.main-footer .foot_nav ul li {
  margin-bottom: 6px;
}
@media (max-width: 767px) {
  .main-footer .foot_nav ul li {
    margin-bottom: 8px;
  }
}
.main-footer .foot_contact a,
.main-footer .foot_contact span {
  position: relative;
  display: inline-block;
  padding-left: 32px;
  margin-bottom: 6px;
  line-height: 1.5;
}
@media (max-width: 767px) {
  .main-footer .foot_contact a,
  .main-footer .foot_contact span {
    margin-bottom: 8px;
  }
}
.main-footer .foot_contact a::after,
.main-footer .foot_contact span::after {
  left: 32px;
}
.main-footer .foot_contact a svg,
.main-footer .foot_contact span svg {
  position: absolute;
  left: 0;
  top: -2px;
}
.main-footer .foot_bottom {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 37px 0 10px 0;
  border-top: 0.5px solid #221E1F;
}
.border_bottom {
  border-bottom: 1px solid #221E1F;
}
.border_bottom_white {
  border-color: rgba(255, 255, 255, 0.5);
}
.main_title {
  color: #221E1F;
  font-family: "tt-commons-pro";
  font-size: 54px;
  font-style: normal;
  font-weight: 300;
  line-height: 1.07;
  /* 107.407% */
}
.row_gap30 {
  row-gap: 30px;
}
.font-weight_5 {
  font-weight: 500;
}
.intro_text p,
.intro_text li {
  font-size: 20px;
  font-style: normal;
  line-height: 1.4;
}
@media (max-width: 1199px) {
  .intro_text p,
  .intro_text li {
    font-size: 18px;
  }
}
.h_f_s32 {
  font-family: "tt-commons-pro";
  font-size: 32px;
  font-style: normal;
  font-weight: 300;
  line-height: 1.18;
  /* 118.75% */
}
.h_f_s28 {
  font-family: "tt-commons-pro";
  font-size: 28px;
  font-style: normal;
  font-weight: 300;
  line-height: 1.21;
  /* 118.75% */
}
.h_f_s42 {
  font-family: "tt-commons-pro";
  font-size: 42px;
  font-style: normal;
  font-weight: 300;
  line-height: 1.14;
}
.mar-b15 {
  margin-bottom: 15px;
}
.mar-b50 {
  margin-bottom: 50px;
}
.mar-b40 {
  margin-bottom: 40px;
}
.mar-b20 {
  margin-bottom: 20px;
}
.mar-t20 {
  margin-top: 20px;
}
.mar-t60 {
  margin-top: 60px;
}
.mar-t56 {
  margin-top: 56px;
}
@media (max-width: 991px) {
  .mar-t56 {
    margin-top: 30px;
  }
}
.bg_grey {
  background: #221E1F;
}
.bg_grey .cat_label {
  background: rgba(255, 255, 255, 0.1);
}
.bg_grey .prod_slider .slick-arrow {
  background-image: url("../img/chevron.svg");
}
.mar-t40 {
  margin-top: 40px;
}
.mar-t10 {
  margin-top: 10px;
}
.pad-t-none {
  padding-top: 0 !important;
}
.pad-b-none {
  padding-bottom: 0 !important;
}
.text-right {
  text-align: right;
}
.main-header .toggle-menu {
  width: 25px;
  height: 20px;
  cursor: pointer;
  margin: 4px 0 0;
  position: relative;
  float: right;
}
.main-header .toggle-menu span {
  display: block;
  width: 100%;
  position: relative;
  height: 20px;
}
.main-header .toggle-menu span span {
  display: block;
  height: 2px;
  width: 100%;
  background-color: var(--main-color);
  position: absolute;
  -moz-transition: 0.3s all ease 0s;
  -o-transition: 0.3s all ease 0s;
  -webkit-transition: 0.3s all ease 0s, top 0.3s ease 0.4s;
  transition: 0.3s all ease 0s, top 0.3s ease 0.4s;
}
body:not(.active-sub-menu):not(.page-scrolled) .main-header.bg_transparent .toggle-menu span span {
  background-color: #fff;
}
.main-header .toggle-menu span span.before {
  top: 0;
}
.main-header .toggle-menu span span.middle {
  top: 9px;
}
.main-header .toggle-menu span span.after {
  top: 18px;
}
.main-header .toggle-menu span.anim {
  margin: 7px 0 0;
}
.main-header .toggle-menu span.anim span {
  background-color: var(--main-color);
}
.body:not(.active-sub-menu):not(.page-scrolled) main-header.bg_transparent .toggle-menu span.anim span {
  background-color: #fff;
}
.main-header .toggle-menu span.anim > .before {
  -webkit-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 0;
  -moz-transition: 0.3s all ease 0s;
  -o-transition: 0.3s all ease 0s;
  -webkit-transition: 0.3s all ease 0s, top 0.3s ease 0.4s;
  transition: 0.3s all ease 0s, top 0.3s ease 0.4s;
}
.main-header .toggle-menu span.anim > .middle {
  top: 0;
  -webkit-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -moz-transition: 0.3s all ease 0s;
  -o-transition: 0.3s all ease 0s;
  -webkit-transition: 0.3s all ease 0s, top 0.3s ease 0.4s;
  transition: 0.3s all ease 0s, top 0.3s ease 0.4s;
}
.main-header .toggle-menu span.anim > .after {
  opacity: 0;
  top: 0;
  -moz-transition: 0.3s all ease 0s;
  -o-transition: 0.3s all ease 0s;
  -webkit-transition: 0.3s all ease 0s, top 0.3s ease 0.4s;
  transition: 0.3s all ease 0s, top 0.3s ease 0.4s;
}
.mfp-move-from-top {
  /* start state */
  /* animate in */
  /* animate out */
}
.mfp-move-from-top .mfp-with-anim {
  opacity: 0;
  transition: all 0.3s;
  transform: translateY(-100px);
}
.mfp-move-from-top.mfp-bg {
  opacity: 0;
  transition: all 0.2s;
}
.mfp-move-from-top.mfp-ready .mfp-with-anim {
  opacity: 1;
  transform: translateY(0);
}
.mfp-move-from-top.mfp-ready.mfp-bg {
  opacity: 0.8;
}
.mfp-move-from-top.mfp-removing .mfp-with-anim {
  transform: translateY(-100px);
  opacity: 0;
}
.mfp-move-from-top.mfp-removing.mfp-bg {
  opacity: 0;
}
.block_size {
  border-bottom: 1px solid #000;
  margin-top: 16px;
}
.block_size h3 {
  color: #000;
  font-family: "tt-commons-pro";
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  margin-bottom: 12px;
  line-height: 1.4;
}
.block_size h3.extended::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 10;
}
.block_size .table-wrap {
  display: none;
  flex: 1 1 100%;
}
.block_size .arr-handle-wrap {
  display: flex;
  flex-direction: column;
  min-height: 28px;
  padding-left: 26px;
  margin: 0 0 0 auto;
}
@media (max-width: 991px) {
  .block_size .arr-handle-wrap {
    padding-left: 6px;
    margin-top: -43px;
  }
}
.block_size .arr-handle-wrap button {
  cursor: pointer;
  padding: 5px;
  -webkit-appearance: none;
  appearance: none;
  background-color: transparent;
  border: none;
  outline: none;
  transition: transform 0.3s;
  margin-top: auto;
}
@media (max-width: 767px) {
  .block_size .arr-handle-wrap button {
    transform: translateY(-9px);
  }
}
.block_size .table-data-container {
  display: flex;
}
.block_size.opened h3.extended {
  cursor: initial;
}
.block_size.opened h3.extended::after {
  display: none;
}
.block_size.opened .arr-handle-wrap button {
  transform: rotate(-180deg);
}
@media (max-width: 767px) {
  .block_size.opened .arr-handle-wrap button {
    transform: rotate(-180deg) translateY(0);
  }
}
.block_size table {
  width: 100%;
}
.block_size tr:first-child td {
  padding-top: 0;
}
.block_size tr + tr td {
  border-top: 1px solid #000;
}
.block_size td {
  color: #000;
  font-family: "tt-commons-pro";
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.5;
  padding: 8px 0;
  max-width: 50%;
}
.block_size td:first-child {
  width: 198px;
}
.block_size td + td {
  padding-left: 26px;
}
@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
  .col-xm-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
  .col-sm-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-sm-3 {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-sm-4 {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-sm-8 {
    -ms-flex: 0 0 66.666666%;
    flex: 0 0 66.666666%;
    max-width: 66.666666%;
  }
}
@media (min-width: 992px) {
  .text-right_md {
    text-align: right;
  }
  .offset-md1 {
    margin-left: 8.33333%;
  }
  .container {
    max-width: 960px;
  }
  .col-md-3 {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-md-10 {
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .col-md-11 {
    -ms-flex: 0 0 91.666666%;
    flex: 0 0 91.666666%;
    max-width: 91.666666%;
  }
  .col-md-9 {
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-md-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-md-5 {
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .col-md-2 {
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-md-8 {
    -ms-flex: 0 0 66.666666%;
    flex: 0 0 66.666666%;
    max-width: 66.666666%;
  }
  .col-md-7 {
    -ms-flex: 0 0 58.33333333%;
    flex: 0 0 58.33333333%;
    max-width: 58.33333333%;
  }
  .col-md-4 {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1170px;
  }
  .container.width_md {
    max-width: 1126px;
  }
  .section_img .row_reverse .text {
    padding-left: 0;
    padding-right: 100px;
  }
  .section_img .text {
    padding-left: 100px;
  }
  .container-1100 {
    max-width: 1130px;
  }
  .max-1130 {
    max-width: 1130px;
  }
}
@media (min-width: 1500px) {
  .container {
    max-width: 1350px;
  }
  .container-1100 {
    max-width: 1130px;
  }
  .max-1130 {
    max-width: 1130px;
  }
}
@media (max-width: 1199px) {
  .head_section {
    padding-top: 175px;
  }
  /*.item_product {
    h3 {
      font-size: 24px;
    }
  }*/
  .main-header .main-menu {
    padding-right: 0;
  }
  .main_title {
    font-size: 50px;
  }
  .h_f_s42 {
    font-size: 38px;
  }
  .section_img .intro p,
  .section_img .intro li {
    font-size: 28px;
  }
  .section_img p {
    font-size: 18px;
  }
}
@media (max-width: 991px) {
  .vimeo_control {
    bottom: 15px;
  }
  .img_link {
    display: flex;
    min-height: 380px;
  }
  .img_link img {
    object-fit: cover;
    object-position: center;
  }
  .mar-tablet-t0 {
    margin-top: 0;
  }
  .prod-info {
    flex-direction: column-reverse;
    row-gap: 30px;
  }
  .breadcrumbs + .main-sect .prod-img-wrap {
    margin-top: 0;
  }
  .prod-img-wrap {
    margin-top: 25px;
  }
  .prod-img-wrap img {
    display: block;
    margin-inline: auto;
  }
  .head_section {
    padding-top: 150px;
    padding-bottom: 20px;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
  }
  .view-other-projects {
    margin-top: 0;
  }
  .section_img .intro {
    margin-bottom: 20px;
  }
  .section_img .intro p,
  .section_img .intro li {
    font-size: 25px;
  }
  .section_img p {
    font-size: 17px;
  }
  .main_title {
    font-size: 43px;
  }
  .col-md-8 + .col-md-3 {
    margin-top: 30px;
  }
  .main-header .toggle-menu {
    display: block;
  }
  .main-header .main-menu,
  .main-header .right_links {
    display: none;
  }
  .main-header > .container {
    justify-content: flex-start;
    align-items: center;
  }
  .main-header > .container .logo {
    margin-right: auto;
  }
  .main-header .search_icon {
    margin: 0 15px -5px 0;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .top_banner_single {
    overflow: hidden;
  }
  .h_f_s42 {
    font-size: 35px;
  }
  .item_post .img img {
    width: 100%;
  }
  .top_banner_single:before {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 42.5%);
  }
}
@media (max-width: 767px) {
  .map-grid {
    gap: 0;
    flex-direction: column;
  }
  .map-grid .fz-20-500 {
    font-size: 20px;
  }
  .map-grid .map-grid__txt {
    flex: 0 0 100%;
    max-width: 100%;
    order: 2;
  }
  .map-grid .map-grid__map-wrap {
    order: 1;
    margin-left: 0;
    margin-top: 60px;
    margin-bottom: 30px;
  }
  .img_link div > * {
    flex: 0 0 100%;
  }
  .img_link div {
    bottom: 16px;
    left: 15px;
    right: 15px;
  }
  .img_link.height-auto-mobile {
    min-height: 0;
  }
  .section_img .intro {
    margin-bottom: 32px;
  }
  .section_img .intro p,
  .section_img .intro li {
    font-size: 28px;
    line-height: 1.2;
  }
  .section_img p {
    font-size: 18px;
    line-height: 1.33;
  }
  .top_banner {
    padding: 360px 0 40px;
  }
  .head_section {
    padding: 225px 0 32px;
  }
  .top_banner_single {
    height: 300px;
  }
  .h_f_s42 {
    font-size: 30px;
  }
  .prod_slider.arrow_bottom {
    padding-bottom: 0;
  }
  .item_product h3 br {
    display: none;
  }
  .main_title {
    font-size: 36px;
    line-height: 1.2;
  }
  .section_img .row {
    row-gap: 25px;
  }
  .main-footer .foot_nav {
    justify-content: flex-start;
    row-gap: 12px;
  }
  .main-footer .foot_content {
    row-gap: 32px;
    flex-direction: column;
  }
  .h_f_s32 {
    font-size: 28px;
    line-height: 1.2;
  }
  .advantages h3 {
    font-size: 20px;
  }
  .advantages .col-sm-4 {
    margin-top: 50px;
  }
  .advantages .col-sm-4 + .col-sm-4 {
    margin-top: 100px;
  }
  .mob-display-block {
    display: block;
  }
  .dev-company {
    margin: 8px 0 22px;
  }
  .page-template-page-about .main-block > section.pt-140:first-child .row {
    flex-direction: column-reverse;
  }
  .page-template-page-about .main-block > section.pt-140:first-child .solar-header {
    font-size: 30px;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 45px;
  }
  .main-footer .foot_bottom {
    padding-bottom: 20px;
  }
}
@media (max-width: 550px) {
  .main_title br {
    display: none;
  }
}
/*# sourceMappingURL=style-st.css.map */