@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 300;
  font-stretch: 100%;
  font-display: swap;
  src: url("/fonts/Montserrat-Light.woff2") format("woff2"), url("/fonts/Montserrat-Light.woff2") format("woff2");
}
@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400;
  font-stretch: 100%;
  font-display: swap;
  src: url("/fonts/Montserrat-Regular.woff2") format("woff2"), url("/fonts/Montserrat-Regular.woff2") format("woff2");
}
@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 500;
  font-stretch: 100%;
  font-display: swap;
  src: url("/fonts/Montserrat-Medium.woff2") format("woff2"), url("/fonts/Montserrat-Medium.woff2") format("woff2");
}
@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 800;
  font-stretch: 100%;
  font-display: swap;
  src: url("/fonts/Montserrat-Bold.woff2") format("woff2"), url("/fonts/Montserrat-Bold.woff2") format("woff2");
}
@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 900;
  font-stretch: 100%;
  font-display: swap;
  src: url("/fonts/Montserrat-ExtraBold.woff2") format("woff2"), url("/fonts/Montserrat-ExtraBold.woff2") format("woff2");
}
.center {
  text-align: center;
}

.fw600 {
  font-weight: 600;
}

.fw500 {
  font-weight: 500;
}

.white {
  color: #fff;
}

.red {
  color: #E75567;
}

.uppercase {
  text-transform: uppercase;
}

.email_icon:before,
.phone_icon:before {
  width: 1vw;
  height: 1vw;
  top: 50%;
  left: -1.4vw;
  transform: translateY(-50%);
}

.phone_icon:before {
  background-image: url("/img/phone_red_icon.svg");
}

.email_icon:before {
  background-image: url("/img/email.svg");
}

.has_before {
  position: relative;
}
.has_before:before, .has_before:after {
  content: "";
  position: absolute;
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
}

.top_red_dot:before {
  background-color: #E75567;
  width: 0.7vw;
  height: 0.7vw;
  border-radius: 0.2vw;
  top: -0.3vw;
  left: -0.8vw;
}

.btn {
  background-color: #E75567;
  color: #fff;
  height: 2.813vw;
  align-items: center !important;
  justify-content: center !important;
  min-width: 14.063vw;
  cursor: pointer;
}
.btn img.arrow {
  margin-left: 0.75vw;
  position: relative;
  left: 0;
  transition: 0.3s all ease;
  width: 0.4vw;
}
.btn:hover {
  background-color: #2A2F43;
}
.btn:hover img.arrow {
  left: 1vw;
  opacity: 0;
}

.d_flex {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-flow: wrap;
}

.scroll_to_top_btn {
  position: fixed;
  bottom: -2vw;
  right: 1vw;
  background-color: #2A2F43;
  border-radius: 50%;
  width: 2.5vw;
  height: 2.5vw;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  z-index: -1;
}
.scroll_to_top_btn.show {
  bottom: 2vw;
  visibility: visible;
  opacity: 1;
  z-index: 99;
}
.scroll_to_top_btn img {
  width: 50%;
  position: relative;
  top: -0.1vw;
}

.show_all_btn {
  justify-content: center;
  margin-top: 3vw;
}
.show_all_btn a {
  align-items: center;
  border-bottom: 1px dashed #2E2E2E;
}
.show_all_btn a:hover {
  color: #E75567;
  border-bottom: 1px dashed #E75567;
}
.show_all_btn a:hover svg path {
  fill: #E75567;
}
.show_all_btn a svg {
  margin-left: 1.3vw;
  width: 1.2vw;
  height: 0.8vw;
}

.bg_img {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.slider-arr {
  top: 50%;
  z-index: 2;
  position: absolute;
  cursor: pointer;
  transform: translateY(-50%);
}
.slider-arr svg {
  width: 1.25vw;
  height: 2.2vw;
}
.slider-arr.prev {
  left: 6.375vw;
}
.slider-arr.next {
  right: 6.375vw;
}
.slider-arr:hover svg path {
  stroke: #E75567;
}

.has_dot {
  position: relative;
  margin-left: 0.8vw;
}
.has_dot:before {
  content: "";
  position: absolute;
  top: 0.5vw;
  transform: translateY(-50%);
  left: -0.8vw;
  background-color: #1DD65C;
  width: 0.4vw;
  height: 0.4vw;
  border-radius: 50%;
  animation: 3s blinkDot linear infinite;
}

.breadcrumbs {
  margin: 1.6vw 0 3vw;
}
.breadcrumbs.thank_you ol li a, .breadcrumbs.thank_you ol li span {
  color: #fff;
}
.breadcrumbs.category_page .container {
  max-width: 100%;
}
.breadcrumbs ol {
  display: flex;
  flex-flow: wrap;
}
.breadcrumbs ol li {
  font-size: 1vw;
  margin-right: 0.5vw;
}
.breadcrumbs ol li a {
  padding-right: 1vw;
  position: relative;
}
.breadcrumbs ol li a:before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  width: 0.5vw;
  height: 1vw;
  background-image: url("/img/breadcrumb.svg");
}
.breadcrumbs ol li a span {
  font-weight: 400;
  transition: 0.3s all ease;
}
.breadcrumbs ol li a:hover span {
  color: #E75567;
  text-decoration: underline;
}
.breadcrumbs ol li span {
  font-weight: 600;
}

@media only screen and (max-width: 900px) {
  .slider-arr svg {
    width: 4vw;
    height: 4vw;
  }

  .slick-dots li {
    width: 2.5vw;
    height: 2.5vw;
    margin: 0 1vw;
  }
  .slick-dots li button:before {
    width: 2.5vw;
    height: 2.5vw;
  }

  .btn {
    height: 9vw;
    font-size: 3vw;
    padding: 0 6vw;
  }
  .btn img.arrow {
    width: 1.5vw;
    margin-left: 2vw;
  }

  .top_red_dot:before {
    width: 1.4vw;
    height: 1.4vw;
    border-radius: 0.3vw;
    left: -1.5vw;
  }

  .show_all_btn {
    margin-top: 6vw;
  }
  .show_all_btn a svg {
    margin-left: 2.5vw;
    width: 4vw;
    height: 2vw;
  }

  .has_dot:before {
    width: 1.5vw;
    height: 1.5vw;
    top: 1.8vw;
    left: -2vw;
  }

  .email_icon:before, .phone_icon:before {
    width: 3.5vw;
    height: 3.5vw;
    left: -4.5vw;
  }

  .breadcrumbs {
    margin: 5vw 0 10vw;
  }
  .breadcrumbs ol li {
    margin-right: 1.5vw;
  }
  .breadcrumbs ol li a {
    font-size: 3vw;
    padding-right: 2vw;
  }
  .breadcrumbs ol li a:before {
    width: 1vw;
    height: 2vw;
  }
  .breadcrumbs ol li span {
    font-size: 3vw;
  }
}
@keyframes blinkDot {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  vertical-align: baseline;
  outline: none;
  font-family: "Montserrat";
  box-sizing: border-box;
  color: #2E2E2E;
}

html {
  height: 100%;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  padding-top: 8.4vw;
  font-family: "Montserrat";
  overflow-x: hidden;
  font-weight: 400;
  background-color: #F8F8F9;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

p {
  font-weight: 400;
  font-size: 1vw;
  color: #2E2E2E;
}

a {
  text-decoration: none;
  font-size: 1vw;
  font-weight: 400;
  transition: 0.3s all ease;
  color: #2E2E2E;
}

.container {
  margin: 0 auto;
  width: 90vw;
}

select {
  font-family: "Montserrat";
  font-weight: 500;
}

form button {
  cursor: pointer;
}

b {
  font-weight: 600;
}

ol, ul {
  list-style: none;
}

svg {
  transition: 0.3s all ease;
}

svg path {
  transition: 0.3s all ease;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
  content: "";
}

strong {
  font-weight: bold;
}

input {
  outline: none;
}

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

img {
  border: 0;
  max-width: 100%;
}

.inner-padding {
  padding: 0 80px;
}

/* Chrome, Opera, Safari */
details summary::-webkit-details-marker {
  display: none;
}

details :focus {
  outline: 0;
}

/* Firefox */
details, summary {
  display: block;
}

details summary:before {
  content: none;
}

details[open] summary:before {
  content: none;
}

::-webkit-scrollbar-track {
  background-color: #fff;
}

::-webkit-scrollbar-thumb {
  background-color: #2A2F43;
  background-position: center;
  background-repeat: no-repeat;
}

::-webkit-scrollbar {
  width: 12px;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

@media only screen and (max-width: 900px) {
  body {
    padding-top: 18.4vw;
  }

  a, p {
    font-size: 3.5vw;
  }

  .container {
    width: 93vw;
  }
}
.fz32 {
  font-size: 2vw;
}

.fz26 {
  font-size: 1.6vw;
}

.fz24 {
  font-size: 1.5vw;
}

.fz22 {
  font-size: 1.4vw;
}

.fz20 {
  font-size: 1.25vw;
}

.fz18 {
  font-size: 1.125vw;
}

.fz16 {
  font-size: 1vw;
}

.fz14 {
  font-size: 0.875vw;
}

.fz12 {
  font-size: 0.75vw;
}

@media only screen and (max-width: 900px) {
  .fz32 {
    font-size: 5vw;
  }

  .fz26, .fz24, .fz22 {
    font-size: 4.5vw;
  }

  .fz20, .fz18, .fz16 {
    font-size: 3.5vw;
  }
}
form textarea,
form input {
  height: 3.125vw;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.9);
  padding: 0.938vw;
  box-sizing: border-box;
  border: 1px solid #fff;
  font-size: 1vw;
  margin-bottom: 1vw;
  transition: 0.3s all ease;
  font-family: "Montserrat";
}
form textarea::-moz-placeholder, form input::-moz-placeholder {
  color: #7E8087;
}
form textarea:-ms-input-placeholder, form input:-ms-input-placeholder {
  color: #7E8087;
}
form textarea::placeholder,
form input::placeholder {
  color: #7E8087;
}
form textarea:focus,
form input:focus {
  border: 1px solid #E75567;
}
form textarea {
  width: 100%;
  height: 7.5vw;
  resize: none;
}
form button {
  height: 3.125vw !important;
  border: none;
  width: 100%;
  font-size: 1.1vw;
  transition: 0.3s all ease;
}
form .agree_block {
  margin-top: 1vw;
}
form .agree_block input {
  width: 0.8vw;
  height: 0.8vw;
  margin: 0 0.8vw 0 0;
}
form .agree_block label {
  cursor: pointer;
  width: 90%;
}
form .agree_block label a {
  text-decoration: underline;
}
form .agree_block label a:hover {
  color: #E75567;
}

@media only screen and (max-width: 900px) {
  form textarea,
form input {
    height: 9vw;
    font-size: 3.5vw;
    padding: 0 3vw;
    margin-bottom: 2vw;
    border-radius: 0;
  }
  form textarea {
    height: 30vw;
    padding: 3vw;
  }
  form button.btn {
    height: 9vw !important;
    font-size: 4vw;
  }
  form .agree_block {
    margin-top: 3vw;
  }
  form .agree_block input {
    width: 3vw;
    height: 3vw;
    margin: 0 2vw 0 0;
  }
  form .agree_block label {
    width: 80%;
    font-size: 2.5vw;
  }
  form .agree_block label a {
    font-size: 2.5vw;
  }
}
.product_items {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-column-gap: 2vw;
  grid-row-gap: 2.625vw;
  margin-top: 2vw;
}
.product_items .item .img_block {
  height: 25vw;
  display: block;
  border: 1px solid rgba(0, 0, 0, 0.1);
  overflow: hidden;
  margin-bottom: 1.125vw;
}
.product_items .item .img_block:hover .img {
  transform: scale(1.1);
}
.product_items .item .img_block .img {
  height: 100%;
  background-size: contain;
  transition: 0.3s all ease;
}
.product_items .item .product_name:hover {
  color: #E75567;
  text-decoration: underline;
}
.product_items .item .excerpt {
  margin-top: 0.375vw;
}
.product_items .item .excerpt p {
  font-size: 0.875vw;
  margin-bottom: 0.2vw;
}
.product_items .item .btns_row {
  justify-content: space-between;
  margin-top: 1vw;
}
.product_items .item .btns_row .btn {
  min-width: 49%;
}
.product_items .item .btns_row .btn.more_link {
  background-color: rgba(8, 8, 8, 0.03);
  color: #2E2E2E;
}
.product_items .item .btns_row .btn.more_link:hover {
  background-color: #E75567;
  color: #fff;
}

.project_item {
  width: 49%;
  margin-bottom: 2.8vw;
}
.project_item .project_images_slider {
  display: none;
}
.project_item .project_images_slider.slick-initialized {
  display: block;
}
.project_item .project_images_slider .slider-arr {
  background-color: rgba(255, 255, 255, 0.7);
  width: 2.5vw;
  height: 2.5vw;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s all ease;
}
.project_item .project_images_slider .slider-arr.prev {
  left: 1.5vw;
}
.project_item .project_images_slider .slider-arr.next {
  right: 1.5vw;
}
.project_item .project_images_slider .slider-arr svg {
  width: 1vw;
  height: 1vw;
}
.project_item .project_images_slider .slider-arr:hover {
  background-color: #E75567;
}
.project_item .project_images_slider .slider-arr:hover svg path {
  stroke: #fff;
}
.project_item .project_images_slider .slick-dots {
  bottom: 2vw;
}
.project_item .project_images_slider .item {
  border: 1px solid rgba(0, 0, 0, 0.05);
}
.project_item .project_images_slider .item .img_block {
  display: block;
  height: 25vw;
  overflow: hidden;
}
.project_item .project_images_slider .item .img_block:hover .img {
  transform: scale(1.1);
}
.project_item .project_images_slider .item .img_block .img {
  height: 100%;
  transition: 0.3s all ease;
}
.project_item .project_images_slider_nav {
  margin-top: 0.5vw;
  display: none;
}
.project_item .project_images_slider_nav.slick-initialized {
  display: block;
}
.project_item .project_images_slider_nav .slick-list {
  margin: 0 -0.4vw;
}
.project_item .project_images_slider_nav .slick-list .slick-slide {
  margin: 0 0.4vw;
}
.project_item .project_images_slider_nav .slick-list .slick-slide.slick-current .item {
  border: 3px solid #2A2F43;
}
.project_item .project_images_slider_nav .item {
  cursor: pointer;
  border: 3px solid rgba(0, 0, 0, 0.05);
  transition: 0.3s all ease;
}
.project_item .project_images_slider_nav .item .img_block {
  height: 8.125vw;
  overflow: hidden;
}
.project_item .project_images_slider_nav .item .img_block:hover .img {
  transform: scale(1.1);
}
.project_item .project_images_slider_nav .item .img_block .img {
  height: 100%;
  transition: 0.3s all ease;
}
.project_item .project_name {
  display: block;
  margin: 0.75vw 0;
}
.project_item .project_name:hover {
  color: #E75567;
  text-decoration: underline;
}
.project_item .labels_row .item {
  height: 1.875vw;
  border: 1px solid rgba(42, 47, 67, 0.11);
  align-items: center;
  width: -moz-max-content;
  width: max-content;
  padding: 0 0.75vw;
  border-radius: 2vw;
  margin-right: 1.25vw;
}
.project_item .labels_row .item:last-child {
  margin-right: 0;
}
.project_item .labels_row .item img {
  height: 1.1vw;
  margin-right: 0.4vw;
}
.project_item .labels_row .item img.kotel {
  height: 1.2vw;
}
.project_item .labels_row .item p {
  font-size: 0.875vw;
  color: #000;
}

.service_item {
  height: 23.75vw;
  padding: 1vw 2.25vw;
}
.service_item:hover:before {
  background-color: rgba(0, 0, 0, 0.7);
}
.service_item:hover .inner p.order {
  color: #E75567;
}
.service_item:before {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  transition: 0.3s all ease;
  z-index: 1;
}
.service_item .inner {
  position: relative;
  z-index: 2;
}
.service_item .inner p.order {
  color: rgba(255, 255, 255, 0.32);
  transition: 0.3s all ease;
}
.service_item .inner .service_name {
  display: inline-block;
  margin: 0.5vw 0 0.8vw;
  min-height: 3.4vw;
  max-width: 70%;
}
.service_item .inner .service_name:hover {
  color: #E75567;
  text-decoration: underline;
}
.service_item .inner .excerpt {
  max-width: 80%;
  margin-bottom: 1.563vw;
  min-height: 9.5vw;
}
.service_item .inner .excerpt ul li,
.service_item .inner .excerpt p {
  color: #fff;
  font-weight: 300;
  font-size: 0.95vw;
  margin-bottom: 0.2vw;
}
.service_item .inner .btn {
  min-width: -moz-max-content;
  min-width: max-content;
  max-width: -moz-max-content;
  max-width: max-content;
  padding: 0 1.563vw;
}
.service_item .inner .btn svg {
  margin-left: 0.5vw;
  width: 0.6vw;
  height: 0.6vw;
  position: relative;
  left: 0;
}
.service_item .inner .btn:hover svg {
  left: 1vw;
  opacity: 0;
}

.blog_item {
  width: 32.5%;
  height: 26.25vw;
  padding: 1.563vw 1.688vw;
  justify-content: flex-end;
  flex-direction: column;
  position: relative;
}
.blog_item:hover:before {
  background-color: rgba(0, 0, 0, 0.7);
}
.blog_item:before {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  transition: 0.3s all ease;
  z-index: 1;
}
.blog_item span.date {
  position: absolute;
  top: 1.563vw;
  left: 1.688vw;
  color: #fff;
  z-index: 2;
  background-color: #E75567;
  padding: 0.3vw 0.5vw;
}
.blog_item.sm .inner .name {
  max-width: 100%;
}
.blog_item .inner {
  position: relative;
  z-index: 2;
}
.blog_item .inner .name {
  max-width: 80%;
  margin-bottom: 0.8vw;
  transition: 0.3s all ease;
}
.blog_item .inner .name:hover {
  color: #E75567;
  text-decoration: underline;
}
.blog_item .inner .more {
  width: -moz-max-content;
  width: max-content;
  align-items: center;
  border-bottom: 1px dashed #E75567;
  transition: 0.3s all ease;
}
.blog_item .inner .more svg {
  margin-left: 0.5vw;
  width: 0.8vw;
  height: 0.8vw;
}
.blog_item .inner .more:hover {
  color: #fff;
  border-bottom: 1px dashed #fff;
}
.blog_item .inner .more:hover svg path {
  fill: #fff;
}

.content_block_text h1, .content_block_text h2, .content_block_text h3, .content_block_text h4, .content_block_text h5, .content_block_text h6 {
  font-weight: 600;
  font-size: 1.6vw;
  margin: 1.25vw 0 0;
}
.content_block_text p {
  font-size: 1.1vw;
  margin: 0.75vw 0;
}
.content_block_text .btgrid .row {
  display: flex;
  justify-content: space-between;
}
.content_block_text .btgrid .row .col-md-6 {
  width: 49%;
}
.content_block_text a {
  font-size: 1.1vw;
  color: #2A2F43;
  font-weight: 600;
  text-decoration: underline;
}
.content_block_text a strong {
  color: #2A2F43;
}
.content_block_text a:hover {
  color: #E75567;
}
.content_block_text a:hover strong {
  color: #E75567;
}
.content_block_text ul {
  margin: 1vw 0;
}
.content_block_text ul li {
  position: relative;
  padding-left: 1vw;
  margin: 0.3vw 0;
  font-size: 1.1vw;
}
.content_block_text ul li p {
  margin: 0.3vw 0;
  font-size: 1.1vw;
}
.content_block_text ul li:before {
  content: "";
  position: absolute;
  top: 0.4vw;
  left: 0;
  width: 0.5vw;
  height: 0.5vw;
  background-color: #E75567;
}
.content_block_text table {
  width: 100% !important;
  margin: 2vw 0;
  display: block;
  white-space: nowrap;
}
.content_block_text table caption,
.content_block_text table thead {
  background-color: #2A2F43;
  padding: 1vw 0;
  font-size: 1.1vw;
}
.content_block_text table caption tr,
.content_block_text table thead tr {
  color: #fff;
}
.content_block_text table caption tr th,
.content_block_text table thead tr th {
  padding: 1vw 0;
  font-size: 1.1vw;
}
.content_block_text table td {
  border: 1px solid rgba(0, 0, 0, 0.1);
  text-align: center;
  font-size: 1.1vw;
  padding: 0.5vw;
  vertical-align: center;
}

ul.filter_items li {
  margin-right: 1.125vw;
  position: relative;
  display: flex;
  align-items: center;
}
ul.filter_items li span.reset_filter_value {
  margin-left: 1vw;
  width: 1.25vw;
  height: 1.25vw;
  border-radius: 50%;
  cursor: pointer;
  position: relative;
  background-image: url("/img/reset_filter.svg");
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
}
ul.filter_items li.active p {
  background-color: #E75567;
  color: #fff;
}
ul.filter_items li input {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1vw;
  height: 1vw;
  z-index: -1;
  opacity: 0;
  cursor: pointer;
}
ul.filter_items li:last-child {
  margin-right: 0;
}
ul.filter_items li p {
  padding: 0 0.938vw;
  align-items: center;
  height: 2.5vw;
  background-color: rgba(8, 8, 8, 0.06);
  cursor: pointer;
  transition: 0.3s all ease;
}
ul.filter_items li p img {
  margin-right: 0.75vw;
  height: 80%;
}
ul.filter_items li p:hover {
  background-color: #E75567;
  color: #fff;
}

.pagination {
  justify-content: center;
  margin-top: 4vw;
}
.pagination .nav-link a.back, .pagination .nav-link a.ahead {
  display: none !important;
}
.pagination nav div:first-child {
  display: none;
}
.pagination nav span.relative {
  display: flex;
  align-items: center;
}
.pagination nav span.relative > span:last-child,
.pagination nav span.relative > span:first-child {
  display: none;
}
.pagination nav span.relative > span {
  width: 2vw;
  height: 2vw;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  cursor: pointer;
  color: #000;
  font-size: 1.2vw;
}
.pagination nav span.relative > span span {
  color: #fff;
  position: relative;
}
.pagination nav span.relative > span span:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2vw;
  height: 2vw;
  background-color: #2A2F43;
  transform: translate(-50%, -50%);
  z-index: -1;
}
.pagination nav span.relative > span:first-child:before, .pagination nav span.relative > span:last-child:before {
  display: none;
}
.pagination nav span.relative > span:last-child {
  margin-right: 0;
}
.pagination nav span.relative > span svg {
  width: 4.5vw !important;
  height: 2.5vw !important;
  fill: #000;
  opacity: 0.6;
}
.pagination nav span.relative > span:hover svg {
  opacity: 1;
}
.pagination nav span.relative > span button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  color: #000;
  font-size: 1.2vw;
}
.pagination nav span.relative a {
  font-size: 1.1vw;
  width: 2vw;
  text-align: center;
}
.pagination nav span.relative > a:first-child,
.pagination nav span.relative > a:last-child {
  display: none;
}

@media only screen and (max-width: 900px) {
  .product_items {
    grid-template-columns: 1fr;
    grid-row-gap: 5vw;
    margin-top: 5vw;
  }
  .product_items .item .img_block {
    height: 60vw;
    margin-bottom: 3vw;
  }
  .product_items .item .excerpt {
    margin-top: 3vw;
  }
  .product_items .item .excerpt p {
    font-size: 3.5vw;
    margin-bottom: 1vw;
  }
  .product_items .item .btns_row {
    margin-top: 3vw;
  }

  .project_item {
    width: 100%;
    margin-bottom: 5vw;
  }
  .project_item .project_images_slider .slider-arr {
    width: 6vw;
    height: 6vw;
  }
  .project_item .project_images_slider .slider-arr svg {
    width: 40%;
    height: 40%;
  }
  .project_item .project_images_slider .item .img_block {
    height: 60vw;
  }
  .project_item .project_images_slider_nav .item .img_block {
    height: 17vw;
  }
  .project_item .project_name {
    margin: 3vw 0;
  }
  .project_item .labels_row .item {
    height: 6vw;
    border-radius: 6vw;
    padding: 0 2.5vw;
  }
  .project_item .labels_row .item img {
    height: 3vw;
    margin-right: 1.5vw;
  }
  .project_item .labels_row .item p {
    font-size: 3vw;
  }

  .service_item {
    padding: 4vw;
  }
  .service_item .inner .service_name {
    max-width: 100%;
    margin: 2vw 0 4vw;
  }
  .service_item .inner .excerpt {
    max-width: 100%;
    margin-bottom: 6vw;
  }
  .service_item .inner .excerpt p {
    font-size: 3.5vw;
  }
  .service_item .inner .excerpt ul li {
    font-size: 3.5vw;
  }
  .service_item .inner .btn {
    padding: 0 4vw;
  }
  .service_item .inner .btn svg {
    margin-left: 2vw;
    width: 2vw;
    height: 2vw;
  }

  .blog_item {
    width: 100%;
    height: 60vw;
    padding: 4vw;
  }
  .blog_item span.date {
    top: 4vw;
    left: 4vw;
    padding: 0.6vw 2vw;
  }
  .blog_item .inner .more svg {
    margin-left: 1.5vw;
    width: 2vw;
    height: 2vw;
  }

  .content_block_text h1, .content_block_text h2, .content_block_text h3, .content_block_text h4, .content_block_text h5, .content_block_text h6 {
    font-size: 4.5vw;
    margin: 2vw 0;
  }
  .content_block_text p {
    font-size: 3.5vw;
    margin: 2vw 0;
  }
  .content_block_text a {
    font-size: 3.5vw;
  }
  .content_block_text .btgrid .row {
    display: flex;
    flex-flow: wrap;
  }
  .content_block_text .btgrid .row .col-md-6 {
    width: 100%;
  }
  .content_block_text ul {
    margin: 2vw 0;
  }
  .content_block_text ul li {
    padding-left: 2vw;
    margin: 1vw 0;
    font-size: 3.5vw;
  }
  .content_block_text ul li p {
    font-size: 3.5vw;
  }
  .content_block_text ul li:before {
    top: 1.5vw;
    width: 1.5vw;
    height: 1.5vw;
  }
  .content_block_text table {
    overflow-x: auto;
  }
  .content_block_text table caption,
.content_block_text table thead {
    padding: 3vw 0;
    font-size: 3.5vw;
  }
  .content_block_text table caption tr th,
.content_block_text table thead tr th {
    padding: 2vw 0;
    font-size: 3vw;
  }
  .content_block_text table td {
    font-size: 3vw;
    padding: 2vw;
  }

  ul.filter_items li {
    margin: 0 2vw 2vw 0;
  }
  ul.filter_items li span.reset_filter_value {
    width: 6vw;
    height: 6vw;
    margin-left: 2vw;
  }
  ul.filter_items li p {
    height: 8vw;
    padding: 0 3vw;
  }
}
.messengers p {
  color: #fff;
  margin-bottom: 0.2vw;
}
.messengers a {
  width: 2.5vw;
  height: 2.5vw;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  margin-right: 0.8vw;
  background-color: rgba(255, 255, 255, 0.9);
}
.messengers a img, .messengers a svg {
  width: 50%;
  height: 50%;
  transition: 0.3s all ease;
}
.messengers a.va {
  background-color: #7360F2;
}
.messengers a.va svg path {
  fill: #fff;
}
.messengers a.tg {
  background-color: #229ED9;
}
.messengers a.tg svg path {
  fill: #fff;
}
.messengers a.wa {
  background-color: #25D366;
}
.messengers a.wa svg path {
  fill: #fff;
}
.messengers a.fb svg path {
  fill: #4267B2;
}
.messengers a:hover {
  transform: scale(1.2);
}
.messengers a:last-child {
  margin-right: 0;
}

@media only screen and (max-width: 900px) {
  .messengers a {
    width: 8vw;
    height: 8vw;
    margin-right: 2vw;
  }
}
header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
}
header.fixed .menu_row {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background-color: #2A2F43;
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.1);
}
header.fixed .menu_row .left .catalog_blog p.btn:hover {
  background-color: #E75567;
}
header.fixed .menu_row .left nav ul li a {
  color: #fff;
}
header.fixed .menu_row .lang_block .current_lang {
  color: #fff;
}
header.fixed .menu_row .lang_block .current_lang svg path {
  stroke: #fff;
}
header .top_row {
  height: 5vw;
  background-color: #2A2F43;
}
header .top_row .container {
  align-items: center;
  height: 100%;
  justify-content: space-between;
}
header .top_row .container .logo_block a img {
  width: 10vw;
}
header .top_row .container .logo_block .logo_desc {
  margin-left: 1.5vw;
}
header .top_row .container form {
  width: 21.875vw;
  position: relative;
}
header .top_row .container form input {
  background-color: #353B4F;
  border: 1px solid #353B4F;
  height: 2.5vw;
  margin-bottom: 0;
  color: #fff;
}
header .top_row .container form input:focus {
  border: 1px solid #E75567;
}
header .top_row .container form button {
  background-color: transparent;
  position: absolute;
  top: 50%;
  right: 0.75vw;
  transform: translateY(-50%);
  align-items: center;
  width: 2vw;
}
header .top_row .container form button:hover svg path {
  fill: #E75567;
}
header .top_row .container form button svg {
  width: 1.5vw;
  height: 1.5vw;
}
header .top_row .container .messengers_block {
  margin-right: 2vw;
}
header .top_row .container .messengers_block .messengers {
  margin-left: 0.813vw;
}
header .top_row .container .header_phones {
  flex-direction: column;
  align-items: center;
  position: relative;
}
header .top_row .container .header_phones .phones_block:hover .phone_main {
  color: #E75567;
}
header .top_row .container .header_phones .phones_block:hover .phone_main.phone_main:after {
  transform: translateY(-50%) rotate(180deg);
}
header .top_row .container .header_phones .phones_block:hover .phones {
  top: 2.7vw;
  opacity: 1;
  z-index: 8;
  visibility: visible;
}
header .top_row .container .header_phones .phones_block img.mobile_icon {
  display: none;
}
header .top_row .container .header_phones .phones_block a.phone.phone_main:after {
  right: -1.4vw;
  top: 50%;
  transform: translateY(-50%);
  width: 1vw;
  height: 0.5vw;
  background-image: url("/img/down_arr.svg");
  transition: 0.3s all ease;
}
header .top_row .container .header_phones .phones_block a.phone:hover {
  text-decoration: underline;
  color: #E75567;
}
header .top_row .container .header_phones .phones_block .phones {
  padding: 0.5vw 0.5vw 0.5vw 1.7vw;
  flex-direction: column;
  position: absolute;
  background-color: #fff;
  width: -moz-max-content;
  width: max-content;
  top: 5vw;
  right: 0;
  z-index: -8;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s all ease;
}
header .top_row .container .header_phones .phones_block .phones a {
  margin-bottom: 0.25vw;
}
header .top_row .container .header_phones .phones_block .phones a.mobile_phone {
  display: none;
}
header .top_row .container .header_phones .phones_block .phones a:last-child {
  margin-bottom: 0;
}
header .top_row .container .header_phones .get_call {
  cursor: pointer;
  border-bottom: 1px dashed #E75567;
  font-size: 0.9vw;
}
header .top_row .container .header_phones .get_call:hover {
  border-bottom: 1px solid #E75567;
}
header .menu_row {
  border-bottom: 1px solid #CBCBCB;
}
header .menu_row .container {
  height: 3.4vw;
  align-items: center;
  justify-content: space-between;
}
header .menu_row .container .left {
  align-items: center;
}
header .menu_row .container .left .catalog_blog {
  position: relative;
}
header .menu_row .container .left .catalog_blog p.btn {
  min-width: -moz-max-content;
  min-width: max-content;
  padding: 0 0.938vw 0 0.688vw;
  transition: 0.3s all ease;
  margin-right: 4.375vw;
  height: 2.6vw;
}
header .menu_row .container .left .catalog_blog p.btn img.catalog {
  width: 1.5vw;
  margin-right: 0.875vw;
}
header .menu_row .container .left .catalog_blog p.btn img.arrow {
  width: 0.7vw;
}
header .menu_row .container .left .catalog_blog p.btn:hover img.arrow {
  left: 0;
  opacity: 1;
  transform: rotate(180deg);
}
header .menu_row .container .left .catalog_blog ul {
  position: absolute;
  z-index: -1;
  background-color: #fff;
  top: 100%;
  left: 0;
  width: -moz-max-content;
  width: max-content;
  border: 1px solid rgba(0, 0, 0, 0.05);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s all ease;
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.1);
}
header .menu_row .container .left .catalog_blog ul li {
  position: relative;
}
header .menu_row .container .left .catalog_blog ul li ul {
  opacity: 0;
  visibility: hidden;
  z-index: -1;
  left: 110%;
  top: 0;
  transition: 0.3s all ease;
}
header .menu_row .container .left .catalog_blog ul li ul li a {
  display: flex;
  font-size: 0.938vw;
  padding: 0.5vw 1.063vw;
}
header .menu_row .container .left .catalog_blog ul li a {
  width: 100%;
  min-width: 100%;
  align-items: center;
  font-size: 0.938vw;
  font-weight: 500;
  height: 3vw;
  padding: 0 2.5vw 0 1.063vw;
  position: relative;
  z-index: 9;
}
header .menu_row .container .left .catalog_blog ul li a svg {
  position: absolute;
  right: 0.75vw;
  top: 50%;
  width: 0.4vw;
  height: 0.8vw;
  transform: translateY(-50%);
}
header .menu_row .container .left .catalog_blog ul li a .icon {
  width: 3.438vw;
  height: 2vw;
  margin-right: 0.875vw;
  background-size: contain;
}
header .menu_row .container .left .catalog_blog ul li a:hover {
  background-color: rgba(0, 0, 0, 0.03);
  color: #E75567;
}
header .menu_row .container .left .catalog_blog ul li a:hover svg path {
  stroke: #E75567;
}
header .menu_row .container .left .catalog_blog ul li:hover > a {
  color: #E75567;
}
header .menu_row .container .left .catalog_blog ul li:hover > a svg path {
  stroke: #E75567;
}
header .menu_row .container .left .catalog_blog ul li:hover ul {
  opacity: 1;
  visibility: visible;
  z-index: 4;
  left: 100%;
}
header .menu_row .container .left .catalog_blog:hover > ul {
  opacity: 1;
  visibility: visible;
  z-index: 99;
}
header .menu_row .container .left nav ul li {
  margin-right: 4.063vw;
}
header .menu_row .container .left nav ul li a {
  font-size: 1.125vw;
  font-weight: 500;
}
header .menu_row .container .left nav ul li a.active, header .menu_row .container .left nav ul li a:hover {
  color: #E75567;
}
header .menu_row .container .left nav ul li:last-child {
  margin-right: 0;
}
header .menu_row .container .lang_block {
  position: relative;
}
header .menu_row .container .lang_block p.current_lang {
  cursor: pointer;
  align-items: center;
  font-size: 1.125vw;
}
header .menu_row .container .lang_block p.current_lang svg {
  margin-left: 0.313vw;
  width: 0.8vw;
  height: 0.8vw;
}
header .menu_row .container .lang_block ul {
  position: absolute;
  top: 100%;
  right: 0;
  background-color: #fff;
  padding: 0.5vw;
  opacity: 0;
  z-index: -1;
  visibility: hidden;
}
header .menu_row .container .lang_block ul li a {
  font-size: 1.125vw;
}
header .menu_row .container .lang_block ul li a:hover {
  color: #E75567;
}
header .menu_row .container .lang_block:hover ul {
  opacity: 1;
  visibility: visible;
  z-index: 9;
}

@media only screen and (max-width: 900px) {
  header .top_row {
    height: 12vw;
  }
  header .top_row .container .logo_block a {
    display: flex;
    align-items: center;
  }
  header .top_row .container .logo_block a img {
    width: 30vw;
  }
  header .top_row .container .logo_block .logo_desc {
    display: none;
  }
  header .top_row .container form {
    display: none;
  }
  header .top_row .container .messengers_block {
    margin-left: 20vw;
  }
  header .top_row .container .messengers_block p {
    display: none;
  }
  header .top_row .container .messengers_block .messengers a {
    width: 7vw;
    height: 7vw;
    margin-right: 2vw;
  }
  header .top_row .container .messengers_block .messengers a:last-child {
    margin-right: 0;
  }
  header .top_row .container .header_phones p {
    display: none;
  }
  header .top_row .container .header_phones .phones_block img.mobile_icon {
    display: block;
    width: 5vw;
  }
  header .top_row .container .header_phones .phones_block a.phone.phone_main {
    display: none;
  }
  header .top_row .container .header_phones .phones_block:hover .phones {
    top: 110%;
  }
  header .top_row .container .header_phones .phones_block .phones {
    top: 110%;
    z-index: -999;
    opacity: 0;
    visibility: hidden;
    right: 0;
    padding: 2vw 2vw 2vw 6vw;
    transition: 0s all ease;
  }
  header .top_row .container .header_phones .phones_block .phones a {
    margin-bottom: 1vw;
  }
  header .top_row .container .header_phones .phones_block .phones a.mobile_phone {
    display: block;
  }
  header .menu_row {
    background-color: #fff;
  }
  header .menu_row .container {
    height: 7.5vw;
  }
  header .menu_row .container .left .catalog_blog p.btn {
    padding: 0 2vw;
    height: 6vw;
  }
  header .menu_row .container .left .catalog_blog p.btn img.catalog {
    width: 3.5vw;
    margin-right: 1.5vw;
  }
  header .menu_row .container .left .catalog_blog p.btn img.arrow {
    width: 2vw;
  }
  header .menu_row .container .left .catalog_blog ul {
    max-width: 90vw;
  }
  header .menu_row .container .left .catalog_blog ul li a {
    min-height: 8vw;
    font-size: 3.5vw;
    padding: 0 6vw 0 3vw;
  }
  header .menu_row .container .left .catalog_blog ul li a svg {
    width: 2vw;
    height: 2vw;
  }
  header .menu_row .container .left .catalog_blog ul li a p.icon {
    width: 7vw;
    height: 8vw;
    margin-right: 1.5vw;
  }
  header .menu_row .container .left .catalog_blog ul li:hover ul {
    display: block;
    opacity: 1;
    visibility: visible;
    z-index: 999;
    left: 0;
  }
  header .menu_row .container .left .catalog_blog ul li ul {
    position: relative;
    left: 0;
    padding: 1vw 0;
    width: 100%;
    box-shadow: none;
    display: none;
  }
  header .menu_row .container .left .catalog_blog ul li ul li a {
    font-size: 3.5vw;
    padding: 1vw 1vw 1vw 11vw;
  }
  header .menu_row .container .left nav {
    width: 48vw;
    overflow-x: scroll;
  }
  header .menu_row .container .left nav::-webkit-scrollbar {
    display: none;
  }
  header .menu_row .container .left nav ul {
    flex-wrap: nowrap;
    width: -moz-max-content;
    width: max-content;
  }
  header .menu_row .container .left nav ul li {
    display: flex;
    align-items: center;
    width: -moz-max-content;
    width: max-content;
  }
  header .menu_row .container .left nav ul li a {
    font-size: 3.5vw;
    width: -moz-max-content;
    width: max-content;
  }
  header .menu_row .container .lang_block p.current_lang {
    font-size: 3.5vw;
  }
  header .menu_row .container .lang_block p.current_lang svg {
    margin-left: 0.5vw;
    width: 2vw;
    height: 2vw;
  }
  header .menu_row .container .lang_block ul {
    padding: 1.5vw;
  }
  header .menu_row .container .lang_block ul li a {
    font-size: 3.5vw;
  }
}
.production_slider_block {
  width: 30vw;
}
.production_slider_block .production_slider {
  display: none;
}
.production_slider_block .production_slider.slick-initialized {
  display: block;
}
.production_slider_block .production_slider.production_images_slider_nav {
  margin-top: 0.5vw;
}
.production_slider_block .production_slider.production_images_slider_nav .slick-list {
  margin: 0 -0.3vw;
}
.production_slider_block .production_slider.production_images_slider_nav .slick-list .slick-slide {
  margin: 0 0.3vw;
}
.production_slider_block .production_slider.production_images_slider_nav .item {
  cursor: pointer;
  margin: 0;
}
.production_slider_block .production_slider.production_images_slider_nav .item .img {
  height: 6.25vw;
}
.production_slider_block .production_slider .slider-arr {
  top: 50%;
  width: 2.5vw;
  height: 2.5vw;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
}
.production_slider_block .production_slider .slider-arr:hover {
  background-color: #E75567;
}
.production_slider_block .production_slider .slider-arr:hover svg path {
  stroke: #fff;
}
.production_slider_block .production_slider .slider-arr svg {
  width: 0.8vw;
  height: 1.2vw;
}
.production_slider_block .production_slider .slider-arr.prev {
  left: 1.563vw;
}
.production_slider_block .production_slider .slider-arr.next {
  right: 1.563vw;
}
.production_slider_block .production_slider ul.slick-dots {
  bottom: 1.5vw;
}
.production_slider_block .production_slider .item .img {
  display: block;
  height: 23vw;
}

@media only screen and (max-width: 900px) {
  .production_slider_block .production_slider .item .img {
    height: 60vw;
  }
  .production_slider_block .production_slider .slider-arr {
    width: 7vw;
    height: 7vw;
  }
  .production_slider_block .production_slider .slider-arr svg {
    width: 40%;
    height: 40%;
  }
  .production_slider_block .production_slider ul.slick-dots {
    bottom: 4vw;
  }
  .production_slider_block .production_slider.production_images_slider_nav .item .img {
    height: 18vw;
  }
}
section.hero_section .hero_slider .slick-dots {
  left: 13.2vw;
}
section.hero_section .hero_slider .item .inner .container {
  flex-direction: column;
  justify-content: center;
  height: 42.5vw;
  padding-left: 6vw;
}
section.hero_section .hero_slider .item .inner .container p {
  color: #fff;
}
section.hero_section .hero_slider .item .inner .container p.title {
  font-size: 2.813vw;
  max-width: 37vw;
}
section.hero_section .hero_slider .item .inner .container p.secondary {
  max-width: 30vw;
  margin: 1.625vw 0 2.5vw;
}

section.adv_section {
  margin-top: 3vw;
}
section.adv_section .container {
  justify-content: space-between;
}
section.adv_section .container .items {
  justify-content: space-between;
  width: 76%;
}
section.adv_section .container .items .item {
  width: 30%;
  justify-content: space-between;
}
section.adv_section .container .items .item img {
  width: 2.5vw;
}
section.adv_section .container .items .item .desc {
  width: 83%;
}
section.adv_section .container .items .item .desc p {
  margin-bottom: 0.8vw;
}
section.adv_section .container .items .item .desc a {
  text-decoration: underline;
}
section.adv_section .container .items .item .desc a:hover {
  color: #2A2F43;
}

section.catalog_products {
  margin-top: 4vw;
}
section.catalog_products .heading_row {
  justify-content: space-between;
}
section.catalog_products .heading_row .categories {
  margin-left: 3.75vw;
  max-width: 81%;
}
section.catalog_products .heading_row .categories ul li .item {
  background-color: rgba(8, 8, 8, 0.03);
  height: 2.5vw;
  align-items: center;
  padding: 0 1.125vw;
  margin-right: 0.938vw;
  cursor: pointer;
  margin-bottom: 0.688vw;
}
section.catalog_products .heading_row .categories ul li .item:hover, section.catalog_products .heading_row .categories ul li .item.active {
  background-color: #E75567;
  color: #fff;
}

section.projects_section {
  margin-top: 5vw;
}
section.projects_section.projects_rel_section {
  margin: 4vw 0 -3vw;
}
section.projects_section.projects_page {
  margin-top: 0;
}
section.projects_section.projects_page .filters_row {
  margin-top: 1.5vw;
}
section.projects_section p.secondary_heading {
  margin-top: 0.7vw;
}
section.projects_section .project_items {
  margin-top: 2.188vw;
  justify-content: space-between;
}
section.projects_section .show_all_btn {
  margin-top: 0;
}

section.callback_section {
  margin-top: 5vw;
  background-color: #000;
  padding: 5.625vw 0 6.5vw;
  position: relative;
}
section.callback_section img.manager_img {
  position: absolute;
  bottom: 0;
  transform: translateX(-50%);
  left: 50%;
  width: 33vw;
}
section.callback_section .container {
  justify-content: space-between;
  align-items: center;
}
section.callback_section .container p {
  color: #fff;
}
section.callback_section .container p.title {
  font-size: 2.813vw;
}
section.callback_section .container p.secondary {
  margin: 2vw 0 3.5vw;
}
section.callback_section .container .left ul li {
  position: relative;
  padding-left: 1.2vw;
  margin-bottom: 0.4vw;
}
section.callback_section .container .left ul li:before {
  width: 0.5vw;
  height: 0.5vw;
  background-color: #E75567;
  left: 0;
  top: 0.5vw;
}
section.callback_section .container .right {
  width: 21.875vw;
}
section.callback_section .container .right form {
  margin-top: 2vw;
}

section.services_section {
  margin-top: 5vw;
}
section.services_section.services_page {
  margin-top: 0;
}
section.services_section p.secondary_heading {
  margin-top: 0.7vw;
}
section.services_section .services_items {
  justify-content: space-between;
  margin-top: 1.875vw;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 1.875vw;
  grid-row-gap: 1.875vw;
}

section.blog_section {
  margin-top: 5vw;
}
section.blog_section.related_posts {
  margin: 5vw 0 -6vw;
}
section.blog_section.blog_pages {
  margin-top: 0;
}
section.blog_section.blog_pages .filters_row {
  margin-top: 1.5vw;
}
section.blog_section.blog_pages .blog_items {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-row-gap: 1vw;
  grid-column-gap: 1vw;
}
section.blog_section.blog_pages .blog_items .blog_item {
  width: 100%;
}
section.blog_section .blog_items {
  margin-top: 2vw;
  justify-content: space-between;
}
section.blog_section .blog_items .blog_item.big {
  width: 49%;
}
section.blog_section .blog_items .blog_item.sm {
  width: 24%;
}

section.main_page_seo_desc {
  margin-top: 4vw;
}

.modal_need_consult {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
  opacity: 0;
  z-index: -1;
  visibility: hidden;
  transition: 0.3s all ease;
}
.modal_need_consult.show {
  z-index: 9999;
  visibility: visible;
  opacity: 1;
}
.modal_need_consult.show .need_consult {
  top: 50%;
}
.modal_need_consult .need_consult {
  position: absolute;
  top: 80%;
  left: 50%;
  width: 28%;
  transform: translate(-50%, -50%);
  padding: 2vw;
  transition: 0.3s all ease;
}
.modal_need_consult .need_consult p.close_modal {
  position: absolute;
  top: 1.5vw;
  right: 2vw;
  cursor: pointer;
}
.modal_need_consult .need_consult p.close_modal:hover svg path {
  fill: #E75567;
}
.modal_need_consult .need_consult p.close_modal svg {
  width: 1.3vw;
  height: 1.3vw;
}
.modal_need_consult .need_consult .subtitle {
  margin-bottom: 1.5vw;
  max-width: 80%;
}

section.search_page a.btn {
  margin-top: 3vw;
  width: -moz-max-content;
  width: max-content;
}

@media only screen and (max-width: 900px) {
  section.hero_section .hero_slider .slider-arr {
    display: none !important;
  }
  section.hero_section .hero_slider .item .inner .container {
    height: 110vw;
    padding-left: 3vw;
  }
  section.hero_section .hero_slider .item .inner .container p.title {
    font-size: 7vw;
    max-width: 80%;
  }
  section.hero_section .hero_slider .item .inner .container p.secondary {
    margin: 3vw 0 5vw;
    max-width: 80%;
  }

  section.adv_section {
    margin-top: 10vw;
  }
  section.adv_section .container p.title br {
    display: none;
  }
  section.adv_section .container .items {
    width: 100%;
  }
  section.adv_section .container .items .item {
    width: 100%;
    margin-top: 4vw;
  }
  section.adv_section .container .items .item img {
    width: 7vw;
    margin-top: 1vw;
  }
  section.adv_section .container .items .item .desc {
    width: 89%;
  }

  section.projects_section {
    margin-top: 12vw;
  }
  section.projects_section.projects_rel_section {
    margin: 13vw 0 -5vw;
  }
  section.projects_section .container .project_items {
    margin-top: 5vw;
  }

  section.callback_section {
    margin-top: 14vw;
    padding: 10vw 0;
  }
  section.callback_section .container p.title {
    font-size: 5.5vw;
  }
  section.callback_section .container p.secondary {
    margin: 5vw 0;
  }
  section.callback_section .container .left ul li {
    padding-left: 2.5vw;
    margin-bottom: 1vw;
  }
  section.callback_section .container .left ul li:before {
    top: 1.5vw;
    width: 1.2vw;
    height: 1.2vw;
  }
  section.callback_section .container .right {
    margin-top: 10vw;
    width: 100%;
  }
  section.callback_section .container .right p.subtitle {
    font-size: 4vw;
  }
  section.callback_section .container .right form {
    margin-top: 4vw;
  }
  section.callback_section img.manager_img {
    display: none !important;
  }

  section.services_section {
    margin-top: 14vw;
  }
  section.services_section .container .services_items {
    margin-top: 5vw;
    grid-template-columns: 1fr;
    grid-row-gap: 4vw;
  }
  section.services_section .container .services_items .service_item {
    height: -moz-max-content;
    height: max-content;
  }

  section.blog_section {
    margin-top: 13vw;
  }
  section.blog_section.blog_pages .blog_items {
    grid-template-columns: 1fr;
    grid-row-gap: 0;
  }
  section.blog_section .blog_items {
    margin-top: 4vw;
  }
  section.blog_section .blog_items .blog_item.big, section.blog_section .blog_items .blog_item.sm {
    width: 100%;
  }

  section.main_page_seo_desc {
    margin-top: 13vw;
  }

  .modal_need_consult.show .need_consult {
    width: 90%;
    padding: 5vw;
  }
  .modal_need_consult.show .need_consult p.close_modal {
    top: 4vw;
    right: 4vw;
  }
  .modal_need_consult.show .need_consult p.close_modal svg {
    width: 4vw;
    height: 4vw;
  }
  .modal_need_consult.show .need_consult .subtitle {
    font-size: 5vw;
    margin-bottom: 3vw;
  }
}
section.catalog_page.catalog_home {
  margin-top: 3vw;
}
section.catalog_page .container .items {
  margin-top: 2.188vw;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-row-gap: 1.688vw;
  grid-column-gap: 1.688vw;
}
section.catalog_page .container .items .item {
  background-color: #2A2F43;
  padding: 2vw 2.5vw 14vw 2.5vw;
  position: relative;
  transition: 0.3s all ease;
}
section.catalog_page .container .items .item a {
  color: #fff;
}
section.catalog_page .container .items .item a:hover {
  color: #E75567;
  border-bottom: 1px solid #E75567;
}
section.catalog_page .container .items .item ul {
  margin-top: 1vw;
  max-width: 90%;
  min-height: 2vw;
}
section.catalog_page .container .items .item ul li {
  margin-bottom: 0.3vw;
}
section.catalog_page .container .items .item ul li a {
  border-bottom: 1px dashed #E75567;
  font-weight: 300;
  font-size: 0.95vw;
}
section.catalog_page .container .items .item ul li a:hover {
  color: #E75567;
  border-bottom: 1px solid #E75567;
}
section.catalog_page .container .items .item .content_block_text p {
  font-size: 0.95vw;
  color: #fff;
}
section.catalog_page .container .items .item .img_category {
  position: absolute;
  bottom: 1vw;
  right: 1vw;
  width: 70%;
  height: 12.5vw;
  background-position: bottom right;
  background-size: contain;
  transition: 0.3s all ease;
}
section.catalog_page .container .items .item:hover {
  box-shadow: inset 5px 5px 30px rgba(231, 85, 103, 0.8);
}
section.catalog_page .container .items .item:hover .img_category {
  transform: scale(1.05);
}

section.category_page {
  position: relative;
  margin-bottom: 4vw;
}
section.category_page .container .category_heading {
  min-height: 12vw;
}
section.category_page .container .category_heading .left {
  padding-top: 1.6vw;
  max-width: 50%;
}
section.category_page .container .category_heading .left .breadcrumbs {
  margin: 0 0 3vw;
}
section.category_page .container .category_heading .left p.title {
  text-transform: uppercase;
}
section.category_page .container .category_heading .left p.excerpt {
  margin-top: 0.938vw;
  max-width: 80%;
}
section.category_page .img_block {
  background-color: #2A2F43;
  position: absolute;
  justify-content: center;
  align-items: center;
  top: 0;
  right: 0;
  width: 46vw;
  height: 15vw;
}
section.category_page .img_block img {
  max-height: 95%;
}

section.category_products .filters_block .item {
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1vw;
}
section.category_products .filters_block .item .filter_name_block {
  width: 13%;
}
section.category_products .filters_block .item .filter_name_block p.name {
  display: none;
}
section.category_products .filters_block .item .filter_name_block p.name:first-child {
  display: block;
}
section.category_products .filters_block .item ul {
  width: 86%;
}

@media only screen and (max-width: 900px) {
  section.catalog_page.catalog_home {
    margin-top: 10vw;
  }
  section.catalog_page .container .items {
    grid-template-columns: 1fr;
    grid-row-gap: 3vw;
    margin-top: 4vw;
  }
  section.catalog_page .container .items .item {
    padding: 5vw 6vw 45vw;
  }
  section.catalog_page .container .items .item .content_block_text {
    margin-top: 3vw;
  }
  section.catalog_page .container .items .item .content_block_text p {
    font-size: 3.5vw;
  }
  section.catalog_page .container .items .item ul {
    margin-top: 3vw;
  }
  section.catalog_page .container .items .item ul li {
    line-height: 100%;
    margin-bottom: 1.5vw;
  }
  section.catalog_page .container .items .item ul li a {
    font-size: 3.5vw;
  }
  section.catalog_page .container .items .item .img_category {
    height: 35vw;
  }

  section.category_page .container .category_heading .left {
    max-width: 100%;
    padding-top: 5vw;
  }
  section.category_page .container .category_heading .left .breadcrumbs {
    margin: 0 0 14vw;
  }
  section.category_page .img_block {
    display: none;
  }

  section.category_products .filters_block .item .filter_name_block {
    width: 100%;
    margin: 3vw 0;
  }
}
section.faq_page.about_page_faq {
  margin: 4vw 0 -2vw;
}
section.faq_page.about_page_faq .container {
  justify-content: space-between;
}
section.faq_page.about_page_faq .container .left {
  width: 30%;
}
section.faq_page.about_page_faq .container .left .secondary {
  margin-top: 4vw;
}
section.faq_page.about_page_faq .container .left .secondary .messengers {
  margin-top: 0.75vw;
}
section.faq_page.about_page_faq .container .faq_block {
  margin-top: 0;
  width: 63%;
}
section.faq_page.about_page_faq .container .faq_block ul.faq_list {
  width: 48%;
}
section.faq_page.about_page_faq .container .faq_block ul.faq_list li .title {
  padding-right: 3vw;
}
section.faq_page .secondary {
  align-items: center;
  margin-top: 1.25vw;
}
section.faq_page .secondary p {
  margin-right: 1vw;
}
section.faq_page .faq_block {
  justify-content: space-between;
  margin-top: 2.5vw;
}
section.faq_page .faq_block ul.faq_list {
  width: 49%;
}

section.callback_section.faq_callback {
  padding: 5vw 0;
  margin: 5vw 0 -6vw;
}
section.callback_section.faq_callback .container p.secondary {
  margin: 2vw 0;
}
section.callback_section.faq_callback .container .messengers a {
  width: 3vw;
  height: 3vw;
}

ul.faq_list > li {
  border-bottom: 1px solid #DBDBDB;
  margin-bottom: 1.25vw;
}
ul.faq_list > li.active p.title {
  color: #E75567;
}
ul.faq_list > li.active p.title svg {
  transform: translateY(-50%) rotate(-90deg);
}
ul.faq_list > li.active p.title svg path {
  fill: #E75567;
}
ul.faq_list > li.active .content_block_text {
  display: block;
}
ul.faq_list > li p.title {
  padding-bottom: 1vw;
  cursor: pointer;
  position: relative;
  transition: 0.3s all ease;
}
ul.faq_list > li p.title svg {
  position: absolute;
  right: 0;
  width: 1.4vw;
  height: 1.4vw;
  top: 30%;
  transform: translateY(-50%);
}
ul.faq_list > li p.title:hover {
  color: #E75567;
}
ul.faq_list > li p.title:hover svg path {
  fill: #E75567;
}
ul.faq_list > li .content_block_text {
  max-width: 80%;
  display: none;
  margin-bottom: 1.25vw;
}

@media only screen and (max-width: 900px) {
  section.faq_page.about_page_faq {
    margin: 13vw 0 0;
  }
  section.faq_page.about_page_faq .container .left {
    width: 100%;
  }
  section.faq_page.about_page_faq .container .left .secondary .messengers {
    margin-top: 2vw;
  }
  section.faq_page.about_page_faq .container .faq_block {
    width: 100%;
    margin-top: 5vw;
  }
  section.faq_page.about_page_faq .container .faq_block ul.faq_list {
    width: 100%;
  }
  section.faq_page.about_page_faq .container .faq_block ul.faq_list li .title {
    padding-right: 5vw;
  }
  section.faq_page .secondary {
    margin-top: 3vw;
  }
  section.faq_page .secondary .messengers {
    margin-top: 2vw;
  }
  section.faq_page .faq_block {
    margin-top: 8vw;
  }
  section.faq_page .faq_block ul.faq_list {
    width: 100%;
  }

  section.callback_section.faq_callback {
    margin: 10vw 0 -15vw;
    padding: 8vw 0;
  }
  section.callback_section.faq_callback .container .messengers {
    margin-top: 4vw;
  }
  section.callback_section.faq_callback .container .messengers a {
    width: 8vw;
    height: 8vw;
  }

  ul.faq_list > li {
    margin-bottom: 5vw;
  }
  ul.faq_list > li p.title {
    font-size: 4vw;
    padding-bottom: 2vw;
  }
  ul.faq_list > li p.title svg {
    width: 3.5vw;
    height: 3.5vw;
  }
  ul.faq_list > li .content_block_text {
    margin-bottom: 5vw;
  }
}
section.service_page.project_page .container .left {
  width: 72%;
}
section.service_page.project_page .container .left .project_item {
  width: 100%;
  margin-top: 1.5vw;
}
section.service_page.project_page .container .left .project_item .labels_row {
  margin-bottom: 1.5vw;
}
section.service_page.project_page .container .left .project_item .project_images_slider .slider-arr {
  height: 3.75vw;
  width: 3.75vw;
}
section.service_page.project_page .container .left .project_item .project_images_slider .item .img_block {
  height: 35vw;
}
section.service_page.project_page .container .left .project_item .project_images_slider_nav .item .img_block {
  height: 8.75vw;
}
section.service_page .container {
  justify-content: space-between;
}
section.service_page .container .left {
  width: 75%;
}
section.service_page .container .left .title {
  text-transform: uppercase;
  max-width: 90%;
}
section.service_page .container .left .details_date {
  margin-top: 1.25vw;
}
section.service_page .container .left .content_block_text {
  margin-top: 2vw;
}
section.service_page .container .right {
  width: 20vw;
}
section.service_page .container .right .need_consult {
  padding: 2vw 1.563vw;
}
section.service_page .container .right .need_consult .subtitle {
  margin-bottom: 0.75vw;
}
section.service_page .container .right .need_consult form {
  margin-top: 2vw;
}
section.service_page .container .right .promo_block {
  margin-top: 1.063vw;
}
section.service_page .container .show_all_btn {
  width: 100%;
}
section.service_page .container .show_all_btn a {
  border-bottom: 1px dashed #E75567;
}
section.service_page .container .show_all_btn a:hover {
  color: #2A2F43;
  border-bottom: 1px solid #2A2F43;
}
section.service_page .container .show_all_btn a:hover svg path {
  fill: #2A2F43;
}
section.service_page .container .show_all_btn a svg {
  width: 0.9vw;
  height: 0.9vw;
  margin: 0 0.7vw 0 0;
}

.promo_block {
  flex-direction: column;
  align-items: center;
  padding: 2.813vw 3vw 10vw;
}
.promo_block span {
  background-color: #00C349;
  padding: 0.5vw 2.2vw;
}
.promo_block .title {
  margin: 1.9vw 0 0.8vw;
}
.promo_block .more {
  margin-top: 1.25vw;
  color: #E75567;
  border-bottom: 1px dashed #E75567;
  cursor: pointer;
}
.promo_block .more:hover {
  border-bottom: 1px solid #E75567;
}

section.services_section .services_items.related_services {
  display: none;
}
section.services_section .services_items.related_services.slick-initialized {
  display: block;
}
section.services_section .services_items.related_services .slick-list {
  margin: 0 -1vw;
}
section.services_section .services_items.related_services .slick-list .slick-slide {
  margin: 0 1vw;
}
section.services_section .services_items.related_services .slider-arr {
  background-color: rgba(255, 255, 255, 0.7);
  width: 2.5vw;
  height: 2.5vw;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s all ease;
}
section.services_section .services_items.related_services .slider-arr.prev {
  left: -1.25vw;
}
section.services_section .services_items.related_services .slider-arr.next {
  right: -1.25vw;
}
section.services_section .services_items.related_services .slider-arr svg {
  width: 1vw;
  height: 1vw;
}
section.services_section .services_items.related_services .slider-arr:hover {
  background-color: #E75567;
}
section.services_section .services_items.related_services .slider-arr:hover svg path {
  stroke: #fff;
}
section.services_section .services_items.related_services .slick-dots {
  bottom: -2.5vw;
}
section.services_section .services_items.related_services .slick-dots li {
  border: 2px solid rgba(0, 0, 0, 0.2);
}

@media only screen and (max-width: 900px) {
  section.service_page.project_page .container .left {
    width: 100%;
  }
  section.service_page.project_page .container .left .project_item {
    margin-top: 4vw;
  }
  section.service_page.project_page .container .left .project_item .labels_row {
    margin-bottom: 4vw;
  }
  section.service_page.project_page .container .left .project_item .project_images_slider .slider-arr {
    width: 7vw;
    height: 7vw;
  }
  section.service_page.project_page .container .left .project_item .project_images_slider .slider-arr svg {
    width: 40%;
    height: 40%;
  }
  section.service_page.project_page .container .left .project_item .project_images_slider .item .img_block {
    height: 60vw;
  }
  section.service_page.project_page .container .left .project_item .project_images_slider_nav .item .img_block {
    height: 16vw;
  }
  section.service_page .container .left {
    width: 100%;
  }
  section.service_page .container .right {
    margin-top: 13vw;
    width: 100%;
  }
  section.service_page .container .right .need_consult {
    padding: 6vw;
  }
  section.service_page .container .right .need_consult .subtitle {
    font-size: 5.5vw;
    margin-bottom: 2vw;
  }
  section.service_page .container .right .need_consult form {
    margin-top: 5vw;
  }
  section.service_page .container .right .promo_block {
    margin-top: 4vw;
  }
  section.service_page .container .show_all_btn a {
    font-size: 4vw;
  }
  section.service_page .container .show_all_btn a svg {
    margin: 0 1.5vw 0 0;
    width: 3vw;
    height: 3vw;
  }

  section.services_section .services_items.related_services .service_item {
    padding: 0;
  }
  section.services_section .services_items.related_services .service_item .inner {
    min-height: 70vw;
    padding: 4vw;
  }
  section.services_section .services_items.related_services .service_item .inner:before {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    transition: 0.3s all ease;
    z-index: 1;
  }
  section.services_section .services_items.related_services .service_item .inner p, section.services_section .services_items.related_services .service_item .inner a, section.services_section .services_items.related_services .service_item .inner .excerpt {
    position: relative;
    z-index: 2;
  }
  section.services_section .services_items.related_services .slider-arr {
    width: 7vw;
    height: 7vw;
  }
  section.services_section .services_items.related_services .slider-arr.prev {
    left: -3.5vw;
  }
  section.services_section .services_items.related_services .slider-arr.next {
    right: -3.5vw;
  }
  section.services_section .services_items.related_services .slider-arr svg {
    width: 40%;
    height: 40%;
  }
  section.services_section .services_items.related_services .slick-dots {
    bottom: -5.5vw;
  }

  .promo_block {
    padding: 10vw 5vw 20vw;
  }
  .promo_block span {
    padding: 2vw 10vw;
  }
  .promo_block p.title {
    font-size: 6vw;
    margin: 4vw 0 2vw;
  }
  .promo_block p.more {
    margin-top: 4vw;
    font-size: 4vw;
  }
}
section.contact_page .contacts_block {
  justify-content: space-between;
  margin: 1.875vw 0 3.75vw;
}
section.contact_page .contacts_block .left_contacts {
  width: 28%;
}
section.contact_page .contacts_block .left_contacts .contacts_row {
  margin-bottom: 1.563vw;
  align-items: center;
}
section.contact_page .contacts_block .left_contacts .contacts_row img {
  width: 1.25vw;
  margin-right: 0.6vw;
}
section.contact_page .contacts_block .left_contacts .contacts_row .right {
  width: 85%;
}
section.contact_page .contacts_block .left_contacts .contacts_row .right p {
  margin-bottom: 0.3vw;
  color: #9E9E9E;
}
section.contact_page .contacts_block .left_contacts .contacts_row .right a {
  display: block;
}
section.contact_page .contacts_block .left_contacts .contacts_row .right a:hover {
  color: #E75567;
  text-decoration: underline;
}
section.contact_page .contacts_block .left_contacts .messengers_block .title {
  margin: 0 0 0.5vw 0;
}
section.contact_page .contacts_block .left_contacts .socials_block {
  margin-top: 2.063vw;
}
section.contact_page .contacts_block .left_contacts .socials_block .title {
  margin: 0 0 0.5vw 0;
}
section.contact_page .contacts_block .left_contacts .socials_block ul li {
  margin-right: 1vw;
}
section.contact_page .contacts_block .left_contacts .socials_block ul li a img {
  height: 1.6vw;
}
section.contact_page .contacts_block .form_block {
  width: 31vw;
  background-color: #000;
  padding: 1.8vw 1.5vw;
  height: 30vw;
}
section.contact_page .contacts_block .form_block p.title {
  margin-bottom: 0.688vw;
}
section.contact_page .contacts_block .form_block form {
  margin-top: 1.6vw;
}
section.contact_page .contacts_block .form_block form .input_group {
  justify-content: space-between;
}
section.contact_page .contacts_block .form_block form .input_group input {
  width: 49%;
}
section.contact_page .contacts_block .production_slider_block {
  position: relative;
}
section.contact_page .contacts_block .production_slider_block .title {
  position: absolute;
  top: -2.5vw;
}
section.contact_page .top_management {
  margin-top: 1.438vw;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-column-gap: 2vw;
}
section.contact_page .top_management .item {
  padding: 1.438vw 1.2vw;
  background-color: #F3F3F3;
}
section.contact_page .top_management .item p.name {
  text-transform: uppercase;
}
section.contact_page .top_management .item p.position {
  padding: 0.438vw 0 1vw;
  border-bottom: 1px solid #C9C9C9;
  margin-bottom: 0.75vw;
}
section.contact_page .top_management .item a {
  margin: 0.688vw 0 0 1.4vw;
  display: inline-block;
}
section.contact_page .top_management .item a:hover {
  color: #E75567;
  text-decoration: underline;
}
section.contact_page .map_section {
  margin-top: 4.688vw;
}
section.contact_page .map_section iframe {
  height: 36vw;
}

@media only screen and (max-width: 900px) {
  section.contact_page .contacts_block {
    margin: 4vw 0 10vw;
  }
  section.contact_page .contacts_block .left_contacts {
    width: 100%;
  }
  section.contact_page .contacts_block .left_contacts .contacts_row {
    margin-bottom: 5vw;
  }
  section.contact_page .contacts_block .left_contacts .contacts_row img {
    width: 4vw;
    margin-right: 2vw;
  }
  section.contact_page .contacts_block .left_contacts .contacts_row .right p {
    font-size: 3vw;
  }
  section.contact_page .contacts_block .left_contacts .messengers_block p.title {
    margin: 0 0 2vw;
  }
  section.contact_page .contacts_block .left_contacts .socials_block {
    margin-top: 4vw;
  }
  section.contact_page .contacts_block .left_contacts .socials_block p.title {
    margin: 0 0 2vw;
  }
  section.contact_page .contacts_block .left_contacts .socials_block ul li {
    margin-right: 3vw;
  }
  section.contact_page .contacts_block .left_contacts .socials_block ul li a img {
    height: 5vw;
  }
  section.contact_page .contacts_block .form_block {
    margin-top: 10vw;
    width: 100%;
    height: -moz-max-content;
    height: max-content;
    padding: 6vw 4vw;
  }
  section.contact_page .contacts_block .form_block p.title {
    font-size: 5vw;
    margin-bottom: 2vw;
  }
  section.contact_page .contacts_block .form_block form {
    margin-top: 5vw;
  }
  section.contact_page .contacts_block .production_slider_block {
    width: 100%;
    margin-top: 10vw;
  }
  section.contact_page .contacts_block .production_slider_block .title {
    position: relative;
    top: 0;
    margin-bottom: 3vw;
  }
  section.contact_page .top_management {
    grid-template-columns: 1fr;
    margin-top: 4vw;
    grid-row-gap: 4vw;
  }
  section.contact_page .top_management .item {
    padding: 4vw;
  }
  section.contact_page .top_management .item p.position {
    padding: 2vw 0;
  }
  section.contact_page .top_management .item a {
    display: block;
    margin: 3vw 0 0 4vw;
  }
  section.contact_page .map_section iframe {
    height: 70vw;
  }
}
section.about_adv_section {
  margin-top: 5vw;
}
section.about_adv_section .adv_items {
  margin-top: 2vw;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-column-gap: 5vw;
  grid-row-gap: 1.5vw;
}
section.about_adv_section .adv_items .item {
  padding-left: 1.5vw;
}
section.about_adv_section .adv_items .item:before {
  background-color: #E75567;
  width: 0.7vw;
  height: 0.7vw;
  left: 0;
  top: 0.3vw;
}

section.production_photos_section {
  margin-top: 4vw;
}
section.production_photos_section .container {
  justify-content: space-between;
}
section.production_photos_section .container .title {
  margin-bottom: 1vw;
}
section.production_photos_section .container .certificates {
  width: 48%;
}
section.production_photos_section .container .certificates .images {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-row-gap: 2vw;
  grid-column-gap: 2vw;
}
section.production_photos_section .container .certificates .images .item {
  display: block;
  height: 7.5vw;
  background-size: contain;
  border: 1px solid rgba(0, 0, 0, 0.1);
}
section.production_photos_section .container .production_slider_block {
  width: 48%;
}

@media only screen and (max-width: 900px) {
  section.about_adv_section {
    margin-top: 13vw;
  }
  section.about_adv_section .container .adv_items {
    margin-top: 4vw;
    grid-template-columns: 1fr 1fr;
    grid-row-gap: 5vw;
  }
  section.about_adv_section .container .adv_items .item {
    padding-left: 2.8vw;
  }
  section.about_adv_section .container .adv_items .item:before {
    top: 1vw;
    width: 1.5vw;
    height: 1.5vw;
  }

  section.production_photos_section {
    margin-top: 14vw;
  }
  section.production_photos_section .container .title {
    margin-bottom: 4vw;
  }
  section.production_photos_section .container .certificates {
    width: 100%;
  }
  section.production_photos_section .container .certificates .images .item {
    height: 18vw;
  }
  section.production_photos_section .container .production_slider_block {
    width: 100%;
    margin-top: 10vw;
  }
}
section.product_page .container {
  justify-content: space-between;
}
section.product_page .container h1 {
  width: 100%;
  margin-bottom: 2.5vw;
}
section.product_page .container .images_slider {
  width: 30.625vw;
}
section.product_page .container .images_slider .project_item {
  width: 100%;
}
section.product_page .container .images_slider .project_item .project_images_slider {
  border: 1px solid rgba(0, 0, 0, 0.1);
}
section.product_page .container .images_slider .project_item .project_images_slider .slick-list {
  background-color: #fff;
}
section.product_page .container .images_slider .project_item .project_images_slider .item {
  background-color: #fff;
  border: none;
  overflow: hidden;
}
section.product_page .container .images_slider .project_item .project_images_slider .item .img_block {
  display: flex;
  align-items: center;
  justify-content: center;
}
section.product_page .container .images_slider .project_item .project_images_slider .item .img_block img {
  height: auto;
  width: -moz-max-content;
  width: max-content;
}
section.product_page .container .images_slider .project_item .project_images_slider_nav .item {
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.1);
}
section.product_page .container .images_slider .project_item .project_images_slider_nav .item .img_block .img {
  background-size: contain;
}
section.product_page .container .right {
  width: 63%;
  justify-content: space-between;
}
section.product_page .container .right .desc_block {
  width: 62%;
}
section.product_page .container .right .desc_block .available {
  color: #07BE0E;
  margin-bottom: 0.5vw;
}
section.product_page .container .right .desc_block .content_block_text {
  margin-top: 1.5vw;
  padding: 1vw 0;
  border-top: 1px solid #BEBEBE;
  border-bottom: 1px solid #BEBEBE;
}
section.product_page .container .right .desc_block ul.chars {
  margin-top: 1.5vw;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-row-gap: 1vw;
  grid-column-gap: 2.5vw;
  padding: 1.5vw 0;
  border-top: 1px solid #BEBEBE;
  border-bottom: 1px solid #BEBEBE;
}
section.product_page .container .right .desc_block ul.chars li {
  padding-left: 0.9vw;
}
section.product_page .container .right .desc_block ul.chars li:before {
  top: 0.25vw;
  left: 0;
  width: 0.4vw;
  height: 0.4vw;
  background-color: #E75567;
}
section.product_page .container .right .desc_block .btns_row {
  margin-top: 2vw;
  align-items: center;
  justify-content: space-between;
}
section.product_page .container .right .desc_block .btns_row .leave_btn {
  cursor: pointer;
  color: #E75567;
  border-bottom: 1px dashed #E75567;
  transition: 0.3s all ease;
}
section.product_page .container .right .desc_block .btns_row .leave_btn:hover {
  color: #2A2F43;
  border-bottom: 1px solid #2A2F43;
}
section.product_page .container .right .promo_block {
  width: 18vw;
}
section.product_page .container .right .quality_slider {
  margin-top: 1vw;
  width: 100%;
  align-items: center;
  justify-content: space-between;
}
section.product_page .container .right .quality_slider .slider-arr svg {
  width: 1.2vw;
  height: 1.2vw;
  opacity: 0.8;
}
section.product_page .container .right .quality_slider .slider-arr.prev {
  left: -1.5vw;
}
section.product_page .container .right .quality_slider .slider-arr.next {
  right: -1.5vw;
}
section.product_page .container .right .quality_slider .project_item {
  width: 65%;
  margin-bottom: 0;
}
section.product_page .container .right .quality_slider .project_item .rewards_slider .item .img_block {
  height: 6vw;
}
section.product_page .container .right .quality_slider .project_item .rewards_slider .item .img_block .img {
  display: block;
  background-size: contain;
}

section.product_page_desc ul.nav_desc {
  border-bottom: 1px solid #BEBEBE;
  margin-bottom: 2vw;
}
section.product_page_desc ul.nav_desc li p {
  cursor: pointer;
  padding: 0.75vw 2vw;
}
section.product_page_desc ul.nav_desc li p:hover {
  color: #E75567;
}
section.product_page_desc ul.nav_desc li p.active {
  color: #E75567;
  border-bottom: 2px solid #E75567;
}
section.product_page_desc .content_block_text {
  display: none;
}
section.product_page_desc .content_block_text.active {
  display: block;
}

section.catalog_products.related_products {
  margin-top: 6vw;
}

@media only screen and (max-width: 900px) {
  section.product_page .container h1 {
    margin-bottom: 4vw;
  }
  section.product_page .container .images_slider {
    width: 100%;
  }
  section.product_page .container .right {
    margin-top: 3vw;
    width: 100%;
  }
  section.product_page .container .right .desc_block {
    width: 100%;
  }
  section.product_page .container .right .desc_block .available {
    margin-bottom: 2vw;
    font-size: 3vw;
  }
  section.product_page .container .right .desc_block .btns_row,
section.product_page .container .right .desc_block .content_block_text {
    margin-top: 4vw;
  }
  section.product_page .container .right .promo_block {
    width: 100%;
    margin: 8vw 0;
  }
  section.product_page .container .right .quality_slider p {
    font-size: 4vw;
  }
  section.product_page .container .right .quality_slider p br {
    display: none;
  }
  section.product_page .container .right .quality_slider .slider-arr svg {
    width: 4vw;
    height: 4vw;
  }
  section.product_page .container .right .quality_slider .slider-arr.prev {
    left: 1vw;
  }
  section.product_page .container .right .quality_slider .slider-arr.next {
    right: 1vw;
  }
  section.product_page .container .right .quality_slider .project_item {
    margin-top: 3vw;
    width: 100%;
  }
  section.product_page .container .right .quality_slider .project_item .rewards_slider .item .img_block {
    height: 15vw;
  }

  section.product_page_desc {
    margin-top: 7vw;
  }
  section.product_page_desc ul.nav_desc {
    margin-bottom: 5vw;
  }
  section.product_page_desc ul.nav_desc li p {
    padding: 3vw 4vw;
  }

  section.catalog_products.related_products {
    margin-top: 14vw;
  }
}
section.thank_you_page {
  margin: -5.8vw 0 -6vw;
  padding: 11.25vw 0 8.7vw;
}
section.thank_you_page .container {
  position: relative;
}
section.thank_you_page .container p {
  color: #fff;
}
section.thank_you_page .container p.title {
  font-size: 2.5vw;
}
section.thank_you_page .container p.secondary {
  margin: 2.188vw 0 4vw;
}
section.thank_you_page .container p.not_found_number {
  position: absolute;
  right: 0;
  top: 50%;
  font-size: 20vw;
  transform: translateY(-50%);
  opacity: 0.9;
}
section.thank_you_page a.btn {
  width: 16.875vw;
}

@media only screen and (max-width: 900px) {
  section.thank_you_page {
    padding: 28vw 0 22vw;
    margin: -18vw 0 -16vw;
  }
  section.thank_you_page .container p.title {
    font-size: 5vw;
  }
  section.thank_you_page .container p.secondary {
    margin: 4vw 0 6vw;
  }
  section.thank_you_page .container p.not_found_number {
    position: relative;
    top: 0;
    margin: -3vw 0 3vw;
    transform: translateY(0);
  }
  section.thank_you_page .container a.btn {
    width: 55vw;
  }
}
footer {
  margin-top: 6vw;
  background-color: #2A2F43;
  padding: 4.063vw 0 1.563vw;
}
footer .container {
  justify-content: space-between;
}
footer .container p {
  color: #fff;
}
footer .container p b {
  color: #fff;
}
footer .container .contacts_col p.sm {
  color: #C1C1C1;
  margin: 1.125vw 0 0.688vw;
}
footer .container .contacts_col .phones_block.email:before {
  background-image: url("/img/email.svg");
  width: 1.3vw;
  left: -1.8vw;
}
footer .container .contacts_col .phones_block a {
  color: #fff;
  display: block;
}
footer .container .contacts_col .phones_block a.email {
  margin-top: 0.938vw;
}
footer .container .contacts_col .phones_block a:hover {
  color: #E75567;
  text-decoration: underline;
}
footer .container .logo_col a.logo_img {
  margin-bottom: 0.5vw;
  display: inline-block;
}
footer .container .logo_col a.logo_img img {
  width: 10.625vw;
}
footer .container .logo_col ul.menu_links {
  margin-top: 2vw;
}
footer .container .logo_col ul.menu_links li {
  margin-bottom: 0.2vw;
}
footer .container .logo_col .social_block {
  margin-top: 2vw;
  flex-direction: column;
}
footer .container .logo_col .social_block .links {
  margin-top: 0.75vw;
}
footer .container .logo_col .social_block .links a {
  width: 2.188vw;
  height: 2.188vw;
  background-color: #fff;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  margin-right: 0.75vw;
}
footer .container .logo_col .social_block .links a:hover {
  transform: scale(1.1);
}
footer .container .logo_col .social_block .links a img {
  width: 55%;
}
footer .container ul.menu_links {
  margin-top: 1.125vw;
}
footer .container ul.menu_links li {
  margin-bottom: 0.5vw;
}
footer .container ul.menu_links li a {
  color: #fff;
  font-weight: 300;
}
footer .container ul.menu_links li a:hover {
  color: #E75567;
  text-decoration: underline;
}
footer .container .rights_row {
  margin-top: 3.5vw;
  width: 100%;
  justify-content: space-between;
  border-top: 1px solid #9A9A9A;
  padding-top: 1.25vw;
}
footer .container .rights_row a {
  color: #fff;
}
footer .container .rights_row a:hover {
  text-decoration: underline;
  color: #E75567;
}

@media only screen and (max-width: 900px) {
  footer {
    margin-top: 15vw;
    padding: 10vw 0 6vw;
  }
  footer .container p {
    font-size: 3vw;
  }
  footer .container p.title {
    font-size: 4vw;
  }
  footer .container ul.menu_links {
    margin-top: 3vw;
  }
  footer .container ul.menu_links li {
    margin-bottom: 1.5vw;
  }
  footer .container .logo_col {
    width: 49%;
    margin-bottom: 10vw;
  }
  footer .container .logo_col a.logo_img {
    margin-bottom: 3vw;
  }
  footer .container .logo_col a.logo_img img {
    width: 30vw;
  }
  footer .container .logo_col ul.menu_links {
    margin-top: 5vw;
  }
  footer .container .logo_col ul.menu_links li {
    margin-bottom: 1.5vw;
  }
  footer .container .logo_col .social_block {
    margin-top: 5vw;
  }
  footer .container .logo_col .social_block p {
    font-size: 3.5vw;
  }
  footer .container .logo_col .social_block .links {
    margin-top: 2vw;
  }
  footer .container .logo_col .social_block .links a {
    margin-right: 2vw;
    width: 8vw;
    height: 8vw;
  }
  footer .container .menu_col {
    width: 49%;
    margin-bottom: 10vw;
  }
  footer .container .contacts_col {
    width: 49%;
  }
  footer .container .contacts_col p.sm {
    margin: 3vw 0 2vw;
  }
  footer .container .contacts_col .phones_block {
    margin-bottom: 5vw;
  }
  footer .container .contacts_col .phones_block:before {
    display: none;
  }
  footer .container .contacts_col .phones_block a {
    font-size: 4vw;
    margin-bottom: 1vw;
  }
  footer .container .rights_row {
    margin-top: 12vw;
    padding-top: 4vw;
  }
  footer .container .rights_row p {
    margin-bottom: 2vw;
  }
  footer .container .rights_row a, footer .container .rights_row p {
    width: 100%;
    text-align: center;
    font-size: 3vw;
  }
}
