/*
Theme Name: Septic
Theme URI: #
Author: Admin
Author URI:
Description: Description
Version: 1.0.0
*/

:root {
  --color-white: #fff;
  --color-primary: #232323;
  --color-secondary: #41bb41;
  --color-light-grey: #dddddd;
}

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

body,
html {
  margin: 0;
  font-family: 'Gilroy-Regular';
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 16px;
  letter-spacing: 0.32px;
  color: var(--color-primary);
  -webkit-overflow-scrolling: touch;
}

a {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  text-decoration: none;
  color: var(--color-primary);
  outline: none !important;
}

a:hover {
  text-decoration: none;
  color: inherit;
}

fieldset {
  border: none;
  position: relative;
  margin-top: 45px;
}

figure {
  margin: 0px;
}

div {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

img {
  max-width: 100%;
  /* margin-bottom: -5px; */
}

svg {
  /* margin-bottom: -6px; */
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

ul,
li {
  list-style: none;
  margin: 0px;
  padding: 0px;
}

h1 {
  font-size: 40px;
  line-height: 50px;
  letter-spacing: 0.8px;
  color: var(--color-primary);
  font-family: 'Gilroy-Heavy';
  margin: 0px;
}

.h2 {
  font-size: 40px;
  line-height: 50px;
  letter-spacing: 0.8px;
  color: var(--color-primary);
  font-family: 'Gilroy-Heavy';
  margin: 0px;
  text-align: center;
  text-transform: uppercase;
}

.h3 {
  margin: 0px;
}

p {
  font-size: 24px;
  line-height: 36px;
  letter-spacing: 0.864px;
  color: var(--color-primary);
  font-family: 'Gilroy-Regular';
  margin: 0px;
  padding: 0px;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
}

label {
  margin: 0px;
}

main {
  padding-bottom: 180px;
}

.btn {
  height: 90px;
  width: 346px;
  background-image: linear-gradient(0deg,
      rgb(255, 158, 43) 0%,
      rgb(255, 240, 139) 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 60px;
  position: relative;
  padding: 0px;
  font-size: 15px;
  color: var(--color-primary);
  text-transform: uppercase;
  border: none;
  font-family: 'Gilroy-SemiBold';
  letter-spacing: 0.75px;
}

.btn.focus,
.btn:focus,
button:focus {
  outline: none;
}

.btn.focus,
.btn:focus {
  box-shadow: none;
}

.btn-wrapper {
  position: relative;
  display: inline-flex;
  width: auto;
}

.btn-wrapper:hover:before {
  box-shadow: none;
}

.btn-wrapper:before {
  content: '';
  transition: box-shadow 0.25s ease;
  position: absolute;
  background: #946f14;
  height: 100%;
  width: 100%;
  border-radius: 60px;
  z-index: 0;
  bottom: -1px;
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.6);
}

.c-text--green {
  color: var(--color-secondary);
}

.bgc-text--green {
  background-color: var(--color-secondary);
}

.c-text--white {
  color: var(--color-white);
}

.text-bold {
  font-family: 'Gilroy-Black';
  color: var(--color-primary);
}

.btn-up {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--color-secondary);
  width: 50px;
  height: 50px;
  border-radius: 4px;
  position: fixed;
  bottom: 120px;
  right: 30px;
  border: none;
  appearance: none;
  transition: background-color 0.3s, opacity 0.5s, visibility 0.5s;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
}

.btn-up::after {
  content: '';
  display: block;
  width: 40%;
  height: 40%;
  border-top: 4px solid #ffffff;
  border-right: 4px solid #ffffff;
  transform: rotate(-45deg);
  margin-top: 25%;
}

.btn-up:hover {
  cursor: pointer;
  background-color: #297529;
}

.btn-up.show {
  opacity: 1;
  visibility: visible;
}

.container-header {
  max-width: 1655px;
  margin: 0 auto;
  height: 120px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  flex-direction: row;
  justify-content: space-between;
}

.header.fixed {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  animation: 0.5s headerTop;
  background-color: #ffffff;
  z-index: 9999;
}

@keyframes headerTop {
  from {
    top: -200px;
  }

  to {
    top: 0;
  }
}

.header.fixed .container-header {
  height: auto;
  padding-top: 8px;
  padding-bottom: 8px;
}

.header.fixed .header-number {
  font-size: 18px;
}

.header.fixed .contacts-address {
  font-size: 14px;
}

.header.fixed .header-cart {
  margin-bottom: 8px;
  font-size: 20px;
}

.header.fixed .container-menu {
  height: 44px;
}

.header.fixed .main-navigation_container {
  height: 44px;
}

.header.fixed .menu-shapka-menyu-container .menu>.menu-item {
  height: 44px;
  font-size: 15px;
}

.header-logo {
  max-width: 211px;
}

.main-navigation {
  position: relative;
  background-color: #f6f6f6;
  -webkit-box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
}

.main-navigation_container {
  height: 65px;
  position: relative;
  z-index: 2;
}

.container-menu {
  max-width: 1550px;
  margin: 0 auto;
  height: 65px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.fixed-menu {
  position: fixed;
  left: 0px;
  right: 0px;
  top: 0px;
  z-index: 10;
  display: none;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 4px 9.8px 0.2px rgba(0, 0, 0, 0.08);
}

.fixed-menu_wrapper {
  max-width: 1620px;
  margin: 0 auto;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@keyframes fadein {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.fixed-menu_container {
  position: absolute;
  top: 118px;
  left: -100%;
  width: 100%;
  max-width: 525px;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 4px 9.8px 0.2px rgba(0, 0, 0, 0.08);
  transition: left 0.5s;
}

.fixed-menu_container.is-active {
  transition: all 0.5s;
  left: 0px;
}

.fixed-menu_container:before {
  content: '';
  position: fixed;
  left: 0px;
  width: 100%;
}

.fixed-menu_container .menu {
  display: flex;
  flex-direction: column;
}

.fixed-menu_container .menu-item {
  cursor: pointer;
}

.fixed-menu_container .menu-item:after {
  content: '';
  position: absolute;
  height: 2px;
  max-width: 315px;
  width: 50%;
  bottom: 0px;
  background: rgba(0, 0, 0, 0.059);
}

.fixed-menu_container .menu-item:last-child:after {
  content: none;
}

.fixed-menu_container .menu-item+.menu-item {
  margin-left: 0px;
}

.fixed-menu_container .menu-item+.menu-item:before {
  content: none;
}

.fixed-menu_container .menu-item {
  font-size: 22.56px;
  letter-spacing: 0.44px;
  font-family: 'Gilroy-Bold';
  line-height: 65px;
  display: flex;
  align-items: center;
}

.fixed-menu_container .menu-item a {
  transition: unset;
}

.fixed-menu_container .menu-item:hover a {
  color: var(--color-secondary);
  z-index: 1;
}

.fixed-menu_container .menu-item:hover span {
  color: var(--color-secondary);
  z-index: 1;
}

.fixed-menu_container .menu-item:hover:after {
  content: none;
}

.fixed-menu_container .menu-item:hover:before {
  content: '';
  position: absolute;
  left: 0px;
  width: 100%;
  height: 105%;
  background-color: #f0f0f0;
}

.fixed-menu_row {
  display: flex;
  flex-direction: row;
}

.fixed-header_numbers {
  display: flex;
  flex-direction: column;
  margin-right: 85px;
}

.fixed-header_number {
  font-size: 20px;
  line-height: 20px;
  letter-spacing: 0.4px;
}

.fixed-header_number+.fixed-header_number {
  margin-top: 15px;
}

.menu-hamburger_wrapper {
  display: flex;
  align-items: center;
  margin-right: 94px;
  cursor: pointer;
  position: relative;
}

.menu-hamburger .line {
  width: 28px;
  height: 6px;
  background-color: var(--color-primary);
  display: block;
  margin: 5px auto;
  border-radius: 10px;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.menu-hamburger_wrapper:hover .menu-hamburger .line {
  background-color: var(--color-secondary);
}

.menu-hamburger_wrapper:hover .menu-hamburger_text {
  color: var(--color-secondary);
}

.menu-hamburger.is-active .line {
  background-color: var(--color-secondary);
}

.menu-hamburger.is-active+.menu-hamburger_text {
  color: var(--color-secondary);
}

.menu-hamburger .line:first-child {
  margin-top: 0px;
}

.menu-hamburger .line:last-child {
  margin-bottom: 0px;
}

.menu-hamburger:hover {
  cursor: pointer;
}

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

.menu-hamburger.is-active .line:nth-child(1) {
  -webkit-transform: translateY(8px) rotate(45deg);
  -ms-transform: translateY(8px) rotate(45deg);
  -o-transform: translateY(8px) rotate(45deg);
  transform: translateY(8px) rotate(45deg);
}

.menu-hamburger.is-active .line:nth-child(3) {
  -webkit-transform: translateY(-14px) rotate(-45deg);
  -ms-transform: translateY(-14px) rotate(-45deg);
  -o-transform: translateY(-14px) rotate(-45deg);
  transform: translateY(-14px) rotate(-45deg);
}

.menu-hamburger_text {
  font-size: 22px;
  line-height: 22px;
  letter-spacing: 0.44px;
  font-family: 'Gilroy-Bold';
  margin-left: 34px;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.menu-shapka-menyu-container .menu>.menu-item {
  height: 65px;
  display: flex;
  align-items: center;
}

.menu-item {
  font-family: 'Gilroy-Bold';
  font-size: 17px;
  line-height: 24px;
  letter-spacing: 0.408px;
  position: relative;
}

.menu-item span {
  color: var(--color-secondary);
}

.menu-item+.menu-item:before {
  content: '';
  position: absolute;
  background-color: var(--color-light-grey);
  width: 1px;
  height: 25px;
  left: -30px;
}

.menu-item+.menu-item {
  margin-left: 60px;
}

.menu-item a:hover {
  color: var(--color-secondary);
}

.menu>.menu-item>.sub-menu {
  display: none;
  position: absolute;
  width: 100vw;
  max-width: 1545px;
  background: rgba(250, 250, 250, 0.95);
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  left: -126px;
  top: 100%;
  padding: 24px;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  flex-wrap: wrap;
  flex-direction: column;
  max-height: 500px;
  z-index: 999;
  box-shadow: 0 3px 3px rgb(0 0 0 / 20%);
}

.menu>.menu-item>.sub-menu.active {
  display: flex;
}

.sub-menu .menu-item:before {
  content: none;
}

.sub-menu .menu-item+.menu-item {
  margin-left: 0;
}

.menu>.menu-item>.sub-menu .menu-item .sub-menu {
  padding-left: 16px;
  font-weight: 400;
}

.menu>.menu-item>.sub-menu .menu-item .sub-menu .menu-item a {
  color: #595959;
  font-size: 14px;
  font-family: 'Gilroy-Regular';
}

.menu>.menu-item>.sub-menu>.menu-item {
  margin-bottom: 12px;
}

.fixed-menu_container .sub-menu {
  display: none !important;
}

.header-dsc {
  font-size: 16px;
  line-height: 22px;
  letter-spacing: 0.352px;
  position: relative;
  color: #c4c4c4;
}

.header-dsc:before {
  content: '';
  position: absolute;
  height: 46px;
  width: 2px;
  background-color: rgba(196, 196, 196, 0.23);
  left: -25px;
}

.header-location a {
  color: var(--color-secondary);
  border-bottom: 1px solid var(--color-secondary);
  letter-spacing: 0.396px;
  font-size: 18px;
  line-height: 22px;
}

.select-wrapper {
  position: relative;
}

.select-city__name:before {
  content: '';
  display: inline-block;
  position: absolute;
  right: 0px;
  top: 50%;
  transform: translateY(-30%);
  pointer-events: none;
  border: 4px solid transparent;
  border-top: 6px solid var(--color-secondary);
}

.select-wrapper:before {
  content: '';
  display: inline-block;
  position: absolute;
  right: 0px;
  top: 50%;
  transform: translateY(-30%);
  pointer-events: none;
  border: 4px solid transparent;
  border-top: 6px solid var(--color-secondary);
}

.select-city__item {
  cursor: pointer;
  padding-right: 20px;
}

.header-cities select {
  color: var(--color-secondary);
  border-bottom: 1px solid var(--color-secondary);
  letter-spacing: 0.396px;
  font-size: 18px;
  line-height: 22px;
}

.header-cities select:focus {
  outline: none;
}

select::-ms-expand {
  display: none;
}

.contacts-address {
  position: relative;
  display: block;
  max-width: 350px;
}

.contacts-address:before {
  content: '';
  position: absolute;
  background: url(assets/img/icon-maps--green.svg);
  background-size: cover;
  background-repeat: no-repeat;
  width: 18px;
  height: 20px;
  left: -30px;
}

.contacts-working_wrapper {
  display: flex;
  flex-direction: row;
}

.contacts-working {
  font-size: 12px;
  letter-spacing: 0.288px;
  line-height: 24px;
}

.contacts-working+.contacts-working {
  margin-left: 10px;
}

.contacts-email {
  font-size: 12px;
  letter-spacing: 0.288px;
  line-height: 22px;
  color: var(--color-secondary);
  border-bottom: 1px solid var(--color-secondary);
}

.contacts-email:hover {
  opacity: 0.6;
  color: var(--color-secondary);
}

.header-numbers {
  display: flex;
  flex-direction: column;
}

.header-number {
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 0.4px;
}

.header-number:nth-child(3) {
  position: relative;
}

.header-number:nth-child(3)::before {
  content: '';
  position: absolute;
  left: -28px;
  top: 50%;
  transform: translateY(-50%);
  background-image: url(assets/img/max-logo.png);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 20px;
  height: 20px;
}

.header-number+.header-number {
  margin-top: 13px;
}

.header-numbers__row {
  display: flex;
  flex-direction: row;
  align-items: center;
  position: relative;
  margin-top: 13px;
}

.header-numbers__row .header-number:first-child {
  position: absolute;
  width: 20px;
  height: 20px;
  left: -28px;
  top: -2px;
}

.header-numbers__row .header-number+.header-number {
  margin-top: 0px;
}

.header-btn {
  font-family: 'Gilroy-SemiBold';
  width: 194px;
  height: 47px;
  border: 2px solid var(--color-secondary);
  color: var(--color-secondary);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 30px;
  background-color: transparent;
  transition: all 0.5s ease;
}

.header-btn:hover {
  background-color: #41bb41;
  color: #fff;
}

.header-cart_wrapper {
  display: flex;
  flex-direction: column;
  position: relative;
}

.header-cart_wrapper:hover .header-cart {
  color: #41bb41;
}

.header-cart {
  font-size: 22px;
  line-height: 100%;
  letter-spacing: 0.44px;
  margin-left: 45px;
  position: relative;
  color: var(--color-primary);
  margin-bottom: 15px;
}

.header-cart:before {
  content: '';
  position: absolute;
  background: url(assets/img/shopping-cart--green.svg);
  background-size: 25px 23px;
  background-repeat: no-repeat;
  width: 25px;
  height: 23px;
  left: -45px;
  top: 50%;
  transform: translateY(-50%);
}

.header-cart_text {
  line-height: 22px;
  color: #939393;
}

.header-cart_info {
  font-size: 16px;
  line-height: 22px;
  letter-spacing: 0.32px;
  color: #939393;
}

.header-count_cart {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 20px;
  height: 20px;
  background: #fbb147;
  font-size: 13px;
  font-family: 'Gilroy-Medium';
  letter-spacing: 0.26px;
  color: #000;
  border-radius: 50%;
  top: -12px;
  left: 12px;
}

.main-screen {
  background: url(assets/img/main-background.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position-y: -130px;
  width: 100%;
  height: 900px;
  position: relative;
}

.main-screen .pseudoelement_1 {
  position: absolute;
  right: 0px;
  top: 25px;
  right: 300px;
}

.main-title {
  font-size: 33px;
  font-family: 'Gilroy-Heavy';
  line-height: 41px;
  letter-spacing: 1.353px;
  text-transform: uppercase;
  padding-top: 80px;
}

.main-title_background-wrapper {
  position: relative;
  /* transform: translateZ(-1px); */
}

.main-title_background {
  position: relative;
  display: inline-flex;
  margin-top: 10px;
  margin-bottom: 10px;
  transform-style: preserve-3d;
}

.main-title_background:after {
  content: '';
  position: absolute;
  display: flex;
  background-image: url(assets/img/main-title_background.svg);
  background-repeat: no-repeat;
  background-size: cover;
  width: calc(100% + 60px);
  height: 100%;
  left: -30px;
  top: 0px;
  transform: translateZ(-1px);
}

.main-dsc_wrapper {
  margin-top: 45px;
}

.main-dsc {
  font-size: 20px;
  line-height: 30px;
  letter-spacing: 0.6px;
  color: var(--color-primary);
}

.main-cards_wrapper {
  margin-top: 40px;
  display: flex;
  flex-direction: row;
}

.main-card {
  max-width: 213px;
  width: 100%;
  height: 88px;
  background-color: var(--color-white);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  position: relative;
}

.main-card:before {
  content: '';
  position: absolute;
  border: 1px solid rgba(196, 196, 196, 0.2);
  border-radius: 8px;
  top: 3px;
  left: 3px;
  right: 3px;
  bottom: 3px;
  display: flex;
}

.main-card+.main-card {
  margin-left: 11px;
}

.main-card_text {
  font-family: 'Gilroy-Bold';
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.28px;
  margin-left: 20px;
}

.main-card_img {
  max-width: 115px;
  user-select: none;
}

.main-btn_wrapper {
  margin-top: 45px;
}

.main-btn:after {
  content: '';
  position: absolute;
  width: 85px;
  height: 67px;
  background: url(assets/img/main-btn_background.png);
  background-size: cover;
  background-repeat: no-repeat;
  right: -45px;
}

.site .about {
  position: relative;
}

.about-pseudoelement_1 {
  position: absolute;
  left: -7%;
  top: 0px;
}

.about-pseudoelement_2 {
  position: absolute;
  top: -5%;
  left: 22%;
}

.about-pseudoelement_3 {
  position: absolute;
  top: 10%;
  right: 20%;
}

.about-block {
  display: flex;
  flex-direction: row;
  margin-top: 105px;
  justify-content: space-between;
}

.about-block_left {
  max-width: 625px;
  flex: 70%;
}

.about-block_left p {
  font-size: 18px;
  line-height: 32px;
}

.about-block_right {
  flex: 30%;
  position: relative;
  right: -30px;
}

.about-block_left p+p {
  margin-top: 50px;
}

.about-video_wrapper {
  margin-top: 45px;
}

.about-video_text {
  margin-left: 30px;
  font-family: 'Gilroy-Bold';
  border-bottom: 1px solid var(--color-primary);
}

.about-video:hover .about-video_text {
  color: #ffc458;
  border-bottom: 1px solid #ffc458;
}

.about-video_img {
  user-select: none;
}

.about-img {
  margin-left: auto;
  margin-top: -10px;
  user-select: none;
}

.about-director_name {
  text-align: center;
  margin-top: 65px;
  font-family: 'Gilroy-Bold';
  font-size: 28px;
  line-height: 37px;
}

.about-director_position {
  font-size: 21px;
  line-height: 37px;
  color: #646464;
  text-align: center;
}

.kinds {
  margin-top: 215px;
  background: url(assets/img/kinds-background_img.jpg);
  background-repeat: no-repeat;
  background-size: 100%;
  padding-bottom: 230px;
  position: relative;
}

.kinds-pseudoelement_1 {
  position: absolute;
  right: 0px;
  top: -30%;
}

.kinds-pseudoelement_2 {
  position: absolute;
  top: 50px;
  left: 13%;
}

.kinds .table {
  text-align: center;
  border-spacing: 0;
  margin-top: 120px;
}

.kinds .table-bg {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 0 50px rgb(0 0 0 / 12%);
  position: relative;
  z-index: 10;
}

.kinds .table-row--bg-grey {
  background: #f8f8f8;
}

.kinds .table-td__header {
  position: relative;
  padding: 24px;
  padding-bottom: 16px;
  padding-top: 80px;
  width: calc(100% / 6);
}

.kinds .table-td__header {
  border-right: 1px solid rgba(0, 0, 0, 0.06);
  border-top: none;
}

.kinds .table-td__header:last-child {
  border-right: none;
}

.kinds .table-td__header-img {
  position: absolute;
  max-width: 170px;
  height: 80%;
  left: 50%;
  transform: translateX(-50%);
  top: -60px;
  object-fit: contain;
}

.kinds .table-td__header-title {
  font: 700 24px/29px 'Gilroy-Bold', sans-serif;
  margin: 0;
}

.kinds .table-td__header-price {
  font: 700 18px/24px 'Gilroy-Bold', sans-serif;
  letter-spacing: 0.28px;
  color: #41bb41;
  margin: 0;
  margin-top: 4px;
}

.kinds .table-td__title {
  font: 600 18px/24px 'Gilroy-Medium', sans-serif;
}

.kinds .table-td {
  padding: 16px 10px;
  border-right: 1px solid rgba(0, 0, 0, 0.06);
  border-top: none;
  width: calc(100% / 6);
}

.kinds .table-td:last-child {
  border-right: none;
}

.kinds .table-td__text {
  font: 500 16px/21px 'Gilroy-Medium', sans-serif;
}

.kinds .table-td__text small {
  display: inline-block;
  font-weight: inherit;
  font-size: 14px;
  line-height: 17px;
}

.products {
  position: relative;
}

.products-pseudoelement_1 {
  position: absolute;
  right: 15%;
  top: 20%;
}

.products-pseudoelement_2 {
  position: absolute;
  top: -10%;
  left: 25%;
}

.products-pseudoelement_3 {
  position: absolute;
  bottom: -5%;
  left: 18%;
}

.product-blocks {
  margin-top: 90px;
  display: flex;
  flex-wrap: wrap;
}

.product-block {
  display: flex;
  flex-direction: column;
  width: calc(100% / 3);
  background-color: #f6fcff;
  position: relative;
  padding-bottom: 40px;
  justify-content: space-between;
  border-radius: 20px;
  box-shadow: 0px 15px 30px 1.4px rgba(0, 0, 0, 0.23);
  max-width: 336.66px;
}

.site-main .product-block {
  width: calc(100% / 3 - 44px);
}

.site-main .btn-more_wrapper {
  text-align: center;
}

.product-block:before {
  content: '';
  position: absolute;
  border: 1px solid #f1f1f1;
  opacity: 0.6;
  top: 9px;
  left: 9px;
  right: 9px;
  bottom: 9px;
  border-radius: 20px;
}

.product-block_img-wrapper {
  background: var(--color-white);
  height: 195px;
  vertical-align: middle;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}

.product-block_img-wrapper:focus {
  outline: none;
}

.product-block_img {
  display: block;
  position: relative;
  margin: 0 auto;
  user-select: none;
  object-fit: contain;
  height: 100%;
  width: auto;
  object-position: center center;
  padding-top: 10px;
  padding-bottom: 5px;
}

.product-block {
  margin-right: 65px;
  margin-bottom: 65px;
  transition: box-shadow 0.25s ease;
}

.product-block:nth-child(3n + 3) {
  margin-right: 0px;
}

.product-block_name--bold {
  font-family: 'Gilroy-Bold';
  text-transform: capitalize;
  font-size: 21px;
  letter-spacing: 0.4px;
}

.product-block_info {
  padding-left: 30px;
  padding-top: 30px;
}

.product-block_labels {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.product-block_label {
  font-size: 12px;
  padding: 5px 10px;
  border-radius: 5px;
}

.product-block .product-block_labels {
  z-index: 1;
  gap: 4px;
}

.product-block .product-block_label {
  padding: 2px 4px;
  border-radius: 4px;
  font-size: 10px;
}

.label--hit {
  color: #fff;
  background-color: var(--color-secondary);
}

.label--sale {
  color: #fff;
  background-color: #fbb147
}

.product-block_name {
  text-transform: uppercase;
  font-size: 17px;
}

.product-info_size {
  margin-top: 20px;
}

.product-info_size-name,
.product-info_weight-name,
.product-info_generate-name,
.product-info_users-name {
  font-family: 'Gilroy-ExtraBold';
  color: #5f5e5e;
  font-size: 15px;
  letter-spacing: 0.3px;
  position: relative;
  padding-left: 25px;
}

.product-info_size-name:before {
  content: '';
  position: absolute;
  left: 0px;
  background-image: url(assets/img/product-size.svg);
  background-repeat: no-repeat;
  background-size: cover;
  width: 11px;
  height: 11px;
  top: 50%;
  transform: translateY(-50%);
}

.product-info_weight-name:before {
  content: '';
  position: absolute;
  left: 0px;
  background-image: url(assets/img/product-weight.svg);
  background-repeat: no-repeat;
  background-size: cover;
  width: 15px;
  height: 16px;
  top: 50%;
  transform: translateY(-50%);
}

.product-info_generate-name:before {
  content: '';
  position: absolute;
  left: 0px;
  background-image: url(assets/img/product-generate.svg);
  background-repeat: no-repeat;
  background-size: cover;
  width: 15px;
  height: 15px;
  top: 50%;
  transform: translateY(-50%);
}

.product-info_users-name:before {
  content: '';
  position: absolute;
  left: 0px;
  background-image: url(assets/img/product-users.svg);
  background-repeat: no-repeat;
  background-size: cover;
  width: 16px;
  height: 15px;
  top: 50%;
  transform: translateY(-50%);
}

.product-info_size-value,
.product-info_weight-value,
.product-info_generate-value,
.product-info_users-value {
  color: #828282;
  font-size: 15px;
  letter-spacing: 0.3px;
}

.product-info_weight,
.product-info_generate,
.product-info_users {
  margin-top: 10px;
}

.product-block_card-btn {
  height: 45px;
  width: 145px;
  font-size: 12px;
  letter-spacing: 0.6px;
  justify-content: unset;
  padding-left: 28px;
  padding-right: 25px;
  background: linear-gradient(0deg,
      rgb(255, 158, 43) 0%,
      rgb(255, 240, 139) 100%);
}

.product-block_card-btn:before {
  left: 0px;
}

.product-block_card-btn:after {
  content: '';
  position: absolute;
  right: 25px;
  background-image: url(assets/img/shopping-cart--black.svg);
  background-repeat: no-repeat;
  background-size: cover;
  width: 14px;
  height: 12px;
  top: 50%;
  transform: translateY(-50%);
  background-position: center center;
}

.product-block_price {
  padding-left: 30px;
  margin-top: 18px;
  font-family: 'Gilroy-ExtraBold';
  font-size: 30px;
  letter-spacing: 0.6px;
}

.product-block_more {
  margin-left: 25px;
  font-size: 14px;
  letter-spacing: 0.28px;
  font-family: 'Gilroy-Medium';
  position: relative;
}

.product-block_more:hover {
  opacity: 0.6;
}

.product-block_more:after {
  position: absolute;
  content: '';
  right: -20px;
  background-image: url(assets/img/right-arrow--black.svg);
  background-repeat: no-repeat;
  background-size: cover;
  width: 10px;
  height: 11px;
  top: 50%;
  transform: translateY(-50%);
}

.product-block_wrapper {
  display: flex;
  margin-left: 30px;
  margin-top: 18px;
  align-items: center;
  text-transform: uppercase;
}

.btn-more {
  font-size: 24px;
  line-height: 100%;
  letter-spacing: 0.48px;
  font-family: 'Gilroy-Bold';
  margin: 0 auto;
  position: relative;
  border-bottom: 1px solid #232323;
}

.btn-more:hover {
  color: var(--color-secondary);
  border-bottom: 1px solid var(--color-secondary);
}

.btn-more:after {
  position: absolute;
  content: '';
  right: -20px;
  background-image: url(assets/img/arrow-right--black.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  width: 6px;
  height: 11px;
  top: 50%;
  transform: translateY(-50%);
}

.brochure {
  position: relative;
  background: url(assets/img/brochure-background.jpg);
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  margin-top: 135px;
  height: 390px;
  display: flex;
}

.brochure-block {
  margin-left: 20px;
  margin-right: 20px;
  margin-top: 80px;
  margin-bottom: 80px;
  border: 8px solid #c3e6c3;
  border-radius: 30px;
  position: relative;
  height: 205px;
  padding-left: 105px;
}

.brochure-title {
  font-size: 31px;
  text-align: left;
  position: absolute;
  top: -40px;
  left: 85px;
  padding-left: 20px;
  padding-right: 20px;
  background: url(assets/img/brochure-background.jpg);
}

.brochure-dsc {
  margin-top: 50px;
}

.brochure-btn_wrapper {
  position: absolute;
  bottom: -45px;
  padding-left: 20px;
  padding-right: 20px;
  background: url(assets/img/brochure-background.jpg);
}

.brochure-btn_wrapper:before {
  width: calc(100% - 40px);
}

.brochure-img {
  max-width: 404px;
  max-height: 406px;
  position: absolute;
  right: 0px;
  top: -50%;
  user-select: none;
}

.stages {
  margin-top: 140px;
  z-index: 1;
  position: relative;
}

.stage-block {
  display: flex;
  margin-top: 180px;
  justify-content: space-between;
}

.stages .stage-block:nth-child(2) .stage-block_left {
  padding-right: 15px;
}

.stage-block:nth-child(odd) {
  flex-direction: row-reverse;
}

.stage-block:nth-child(odd) .stage-block_left {
  padding-left: 100px;
  position: relative;
  left: 40px;
}

.stage-block:nth-child(odd) .stage-block_right {
  position: relative;
  left: -26px;
}

.stage-block:nth-child(odd) .stage-block_title {
  text-align: right;
}

.stage-block_left {
  width: 55%;
}

.stage-block_right {
  width: 45%;
  position: relative;
}

.stage-block_title {
  font-size: 41px;
  line-height: 51px;
  font-family: 'Gilroy-ExtraBold';
  color: var(--color-primary);
  letter-spacing: 0.82px;
  padding-left: 95px;
  position: relative;
}

.stage-block_title:before {
  content: '';
  position: absolute;
  width: 70px;
  height: 8px;
  background-color: #ffb748;
  left: 0px;
  top: 20px;
  border-radius: 30px;
}

.stage-block p {
  margin-top: 45px;
}

.stage-block_img-wrapper {
  position: relative;
  top: 30px;
  display: flex;
}

.stage-block_img-wrapper img {
  user-select: none;
  object-fit: cover;
  object-position: center center;
  max-width: 550px;
  max-height: 400px;
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0px 5px 15px 1px rgba(33, 33, 33, 0.11);
}

.stage-block_img-wrapper:before {
  content: '';
  position: absolute;
  border: 8px solid #ffb748;
  width: 100%;
  height: 100%;
  border-radius: 30px;
  left: 60px;
  top: -60px;
  z-index: -1;
}

.stage-block_number {
  position: absolute;
  font-family: 'Gilroy-Heavy';
  font-size: 355px;
  opacity: 0.17;
  top: -100px;
  line-height: 100%;
  left: -70px;
  user-select: none;
}

.objects {
  margin-top: 50px;
  padding-bottom: 100px;
  padding-top: 150px;
  background: url(assets/img/objects-background.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}

.objects-simple {
  padding-top: 0px;
  padding-bottom: 0px;
  background: none;
  margin-top: 48px;
  padding-top: 48px;
  padding-bottom: 48px;
}


.objects-simple .objects-background_1,
.objects-simple .objects-leaf_1,
.objects-simple .objects-leaf_2 {
  display: none;
}


.objects-simple .object-cards {
  margin-top: 48px;
}

.objects-leaf_1 {
  position: absolute;
  left: 370px;
  z-index: 1;
  top: 80px;
}

.objects-leaf_2 {
  position: absolute;
  left: 370px;
  z-index: 1;
  bottom: 80px;
}

.objects-background_1 {
  position: absolute;
  top: -230px;
  width: 100%;
}

.objects-background_2 {
  position: absolute;
  bottom: 0px;
  width: 100%;
}

.objects .container {
  z-index: 1;
  position: relative;
}

.objects-pseudoelement {
  position: absolute;
  top: 5%;
  left: 17%;
}

.object-cards {
  margin-top: 120px;
  display: flex;
  padding-bottom: 60px;
}

/* .object-cards>.slick-list {
  width: 100% !important;
}

.object-cards>.slick-list .slick-track {
} */

.object-cards .slick-list {
  margin: 0 -45px;
}

.object-cards .default-arrow_prev,
.object-cards .default-arrow_next {
  position: absolute;
}

.object-cards .default-arrow_prev {
  left: -50px;
  top: 40%;
  z-index: 1;
}

.object-cards .default-arrow_next {
  right: -50px;
  top: 40%;
  transform: translateY(-50%);
}

.object-cards .default-arrow_prev.slick-disabled,
.object-cards .default-arrow_next.slick-disabled {
  opacity: 0.3;
}

.object-card {
  background: url(assets/img/substrate.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  display: flex !important;
  flex-direction: column;
  align-items: center;
  margin-left: 45px;
  margin-right: 45px;
  padding-bottom: 60px;
}

.object-card_title {
  margin-top: 105px;
  font-size: 35px;
  line-height: 51px;
  font-family: 'Gilroy-ExtraBold';
  letter-spacing: 0.7px;
  padding-left: 45px;
  padding-right: 45px;
  width: 100%;
  min-height: 100px;
  text-align: center;
}

.object-card_wrapper {
  padding-left: 45px;
  padding-right: 45px;
  width: 100%;
}

.object-card_info {
  display: flex;
  align-items: baseline;
}

.object-card_info:first-child {
  margin-top: 45px;
}

.object-card_info+.object-card_info {
  margin-top: 15px;
}

.object-card_name {
  font-family: 'Gilroy-ExtraBold';
  font-size: 16px;
  letter-spacing: 0.34px;
  color: #696969;
  width: 45%;
}

.object-card_value {
  font-size: 15px;
  letter-spacing: 0.32px;
  color: #696969;
  width: 55%;
}

.object-card_slider {
  margin-top: 45px;
  position: relative;
}

.slider-arrow_prev,
.slider-arrow_next {
  appearance: none;
  background: none;
  border: none;
  width: 30px;
  height: 30px;
  background: var(--color-white);
  box-shadow: 0px 4px 8.5px 1.5px rgba(0, 0, 0, 0.09);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.slider-arrow_next:focus,
.slider-arrow_prev:focus {
  outline: none;
}

.slider-arrow_prev:before,
.slider-arrow_next:before {
  content: '';
  position: absolute;
  background: url(assets/img/arrow-slider.svg);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  width: 7px;
  height: 13px;
}

.slider-arrow_prev {
  left: -15px;
}

.slider-arrow_next {
  right: -15px;
}

.slider-arrow_prev:before {
  transform: scale(-1, 1);
}

.object-card_btn-wrapper {
  margin-top: 30px;
}

.object-card_btn:after {
  position: absolute;
  content: '';
  background-image: url(assets/img/arrow-right--black.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  width: 6px;
  height: 11px;
  top: 50%;
  right: 20%;
  transform: translateY(-50%);
}

.objects .btn-more {
  left: 35%;
}

.certificates {
  padding-bottom: 200px;
}

.certificates-slider {
  margin-top: 105px;
}

.certificates-slider .slick-list {
  margin: 0 -30px;
}

.certificates .slick-slide {
  margin: 0 30px;
}

.certificates-slide {
  height: auto;
  z-index: -1;
  position: relative;
  cursor: pointer;
}

.certificates-slide_img {
  width: 100%;
  height: auto;
  font-size: 12px;
}

.certificates-arrow_prev.slick-disabled,
.certificates-arrow_next.slick-disabled,
.client-arrow_prev.slick-disabled,
.client-arrow_next.slick-disabled {
  opacity: 0.3;
}

.certificates-arrow_prev,
.certificates-arrow_next,
.client-arrow_prev,
.client-arrow_next {
  appearance: none;
  background: none;
  border: none;
  width: 29px;
  height: 46px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.client-arrow_prev,
.client-arrow_next {
  top: 35%;
}

.certificates-arrow_next:focus,
.certificates-arrow_prev:focus {
  outline: none;
}

.certificates-arrow_prev:before,
.certificates-arrow_next:before,
.client-arrow_prev:before,
.client-arrow_next:before {
  content: '';
  position: absolute;
  background: url(assets/img/arrow-slider.svg);
  background-repeat: no-repeat;
  background-size: cover;
  width: 29px;
  height: 46px;
}

.client-arrow_prev {
  left: -70px;
}

.certificates-arrow_prev {
  left: -81px;
}

.product-slider .certificates-arrow_prev {
  left: -35px;
}

.client-arrow_next {
  right: -70px;
}

.certificates-arrow_next {
  right: -71px;
}

.product-slider .certificates-arrow_next {
  right: -30px;
}

.certificates-arrow_prev:before,
.client-arrow_prev:before {
  transform: scale(-1, 1);
}

.clients {
  background: url(assets/img/certificates-background.png);
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  padding-bottom: 200px;
}

.clients .container {
  z-index: 1;
  position: relative;
}

.clients-background_1 {
  position: absolute;
  bottom: 0px;
  width: 100%;
}

.client-slider {
  margin: 0 -24px;
  margin-top: 120px;
}

.client-slide {
  padding: 0 24px;
  border-radius: 15px;
}

.client-slide img {
  border-radius: 15px;
}

.client-slide_name {
  margin-top: 24px;
  text-align: center;
  font-size: 24px;
  letter-spacing: 0.6px;
  font-family: 'Gilroy-ExtraBold';
}

.client-slide_city {
  margin-top: 8px;
  text-align: center;
  font-size: 18px;
  letter-spacing: 0.48px;
}

.client-slide_img-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.client-slide_img-wrapper:before {
  content: '';
  position: absolute;
  opacity: 0.7;
  border-radius: 50%;
  background: var(--color-white);
  width: 150px;
  height: 150px;
}

.client-slide_img-wrapper:after {
  content: '';
  position: absolute;
  border-radius: 50%;
  background-color: var(--color-white);
  width: 122px;
  height: 122px;
  background-image: url(assets/img/slider-play.png);
  background-size: cover;
}

.client-btn {
  margin: 0 auto;
  margin-top: 80px;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}

.client-btn .btn {
  width: 415px;
}

.selection {
  background: url(assets/img/selection-background.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  padding-bottom: 240px;
  position: relative;
}

.selection .selection-leaf_1 {
  position: absolute;
  z-index: 1;
  top: -135px;
  left: 250px;
}

.selection .selection-leaf_2 {
  z-index: 1;
  position: absolute;
  right: 250px;
  top: 120px;
}

.selection .selection-leaf_3 {
  position: absolute;
  z-index: 1;
  bottom: 100px;
  left: 640px;
}

.selection-pseudoelement_1 {
  position: absolute;
  left: 0px;
  bottom: -30%;
}

.selection-title {
  text-align: left;
  font-size: 36px;
  line-height: 45px;
  font-family: 'Gilroy-ExtraBold';
  color: var(--color-primary);
  letter-spacing: 0.8px;
  text-transform: none;
}

.selection-dsc {
  margin-top: 55px;
}

.selection-btn {
  margin-top: 70px;
}

.map-wrapper {
  margin-top: 95px;
  border-radius: 30px;
  width: 100%;
}

.footer {
  padding-top: 60px;
  box-shadow: 0px 2px 74.26px 4.74px rgba(0, 0, 0, 0.08);
  position: relative;
  background: #fff;
}

.footer-container {
  max-width: 1655px;
  margin: 0 auto;
}

.footer-menu_wrapper {
  display: flex;
  flex-direction: row;
}

.menu-company {
  width: 15%;
}

.menu-products {
  width: 48%;
}

.menu-services {
  width: 37%;
}

.footer-title {
  font-size: 27px;
  letter-spacing: 0.54px;
  line-height: 100%;
  text-align: left;
  font-family: 'Gilroy-ExtraBold';
  margin: 0px;
}

.footer-nav {
  margin-top: 50px;
}

.footer-menu_item+.footer-menu_item {
  margin-top: 10px;
}

.footer-menu_link {
  font-size: 18px;
  letter-spacing: 0.36px;
}

.footer-menu_link:hover {
  color: var(--color-secondary);
}

.footer-info {
  background-color: #f9f9f9;
  padding-top: 40px;
  padding-bottom: 60px;
  margin-top: 55px;
}

.footer-column {
  display: flex;
  flex-direction: column;
}

.footer-column:nth-child(1) {
  width: 26%;
}

.footer-column:nth-child(2) {
  width: 44%;
}

.footer-column:nth-child(3) {
  width: 30%;
}

.copyright-wrapper {
  margin-top: 25px;
}

.copyright-text+.copyright-text {
  margin-top: 0px;
}

.copyright-text {
  font-size: 17px;
  line-height: 28px;
  letter-spacing: 0.34px;
  color: #383838;
}

.footer-row {
  display: flex;
  flex-wrap: wrap;
}

.footer-text_small {
  flex: 50%;
  font-size: 12px;
  color: #383838;
  letter-spacing: 0.24px;
}

.footer-link_wrapper {
  flex: 50%;
}

.footer-link {
  font-size: 12px;
  color: var(--color-secondary);
  letter-spacing: 0.24px;
  border-bottom: 1px dashed var(--color-secondary);
  margin-top: 10px;
  transition: border-bottom 0.5s;
}

.footer-link:hover {
  border-bottom: 1px dashed transparent;
  color: var(--color-secondary);
}

.mt-40 {
  margin-top: 40px;
}

.mt-5 {
  margin-top: 5px !important;
}

.footer-info_wrapper {
  display: flex;
}

.footer-info_title {
  font-size: 19px;
  line-height: 27px;
  font-family: 'Gilroy-ExtraBold';
  color: #383838;
  letter-spacing: 0.38px;
}

.footer-info_address {
  margin-top: 25px;
  column-count: 2;
}

.footer-info_addrses-wrapper.w-100 {
  width: 100%;
}

.footer-info_addrses-wrapper {
  margin-top: 8px;
}

.footer-info_address-name {
  font-size: 14px;
  letter-spacing: 0.18px;
  color: #383838;
  line-height: 20px;
}

.footer-info_addrses-wrapper:last-child {
  max-width: 320px;
}

.footer-social {
  margin-top: 5px;
}

.footer-social+.footer-social {
  margin-left: 5px;
}

.footer-social_wrapper {
  display: flex;
  justify-content: space-between;
}

.footer-social_img {
  width: 28px;
  height: 28px;
}

.footer-social-block {
  margin-top: 18px;
}

.footer-social-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.footer-social-grid + .footer-social-grid {
  margin-top: 2px;
}

.footer-social-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 14px;
  border-radius: 20px;
  background-color: #fff;
  border: 1px solid #ddd;
  font-size: 13px;
  font-family: 'Gilroy-SemiBold';
  color: #383838;
  letter-spacing: 0.26px;
  text-decoration: none;
  transition: all 0.25s;
  white-space: nowrap;
}

.footer-social-ico {
  width: 16px;
  height: 16px;
  margin-right: 6px;
  flex-shrink: 0;
  transition: filter 0.25s;
}

.footer-social-item:hover {
  border-color: var(--color-secondary);
  color: var(--color-secondary);
  background-color: rgba(65, 187, 65, 0.06);
}

.footer-social-item:hover .footer-social-ico {
  filter: brightness(0) saturate(100%) invert(62%) sepia(52%) saturate(501%) hue-rotate(79deg) brightness(92%) contrast(89%);
}

.footer-pay-block {
  margin-top: 20px;
}

.footer-column--right {
  align-items: flex-end;
}

.footer-column--right .footer-pay-block {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 15px;
}

.footer-column--right .footer-call {
  width: 100%;
  text-align: right;
}

.footer-column--right .footer-call_btn {
  margin-left: auto;
}

.footer-pay_wrapper {
  margin-top: 20px;
  display: flex;
  width: 148px;
}

.footer-pay+.footer-pay {
  margin-left: 10px;
}

.footer-call_number {
  margin-top: 5px;
  font-size: 27px;
  font-family: 'Gilroy-Bold';
  color: var(--color-primary);
  letter-spacing: 0.54px;
}

.footer-call_dsc {
  font-size: 15px;
  letter-spacing: 0.3px;
  margin-top: 22px;
}

.footer-email {
  margin-top: 15px;
  font-size: 14px;
  letter-spacing: 0.28px;
}

.footer-call_btn {
  margin-top: 30px;
  border: 2px solid var(--color-secondary);
  display: flex;
  font-family: 'Gilroy-SemiBold';
  justify-content: center;
  align-items: center;
  width: 227px;
  height: 56px;
  border-radius: 30px;
  font-size: 19px;
  letter-spacing: 0.38px;
  color: var(--color-secondary);
}

.footer-call_btn:hover {
  background-color: #41bb41;
  color: #fff;
}

.page-main,
.calc-page {
  background-color: #fafafa;
}

.page-main section:first-child,
.calc-page section:first-child,
.page-product section:first-child,
.page-subproduct section:first-child,
.page-cart section:first-child {
  padding-top: 50px;
}

.breadcrumbs_name,
.breadcrumbs .post-page {
  color: var(--color-secondary);
  font-size: 14px;
  letter-spacing: 0.28px;
  line-height: 23px;
  border-bottom: 1px solid var(--color-secondary);
  margin-right: 15px;
}

.breadcrumbs .current-item {
  color: var(--color-primary);
  font-size: 14px;
  line-height: 23px;
  letter-spacing: 0.28px;
  border: none;
}

.breadcrumbs>span a {
  color: var(--color-secondary);
  border-bottom: 1px solid var(--color-secondary);
}

.breadcrumbs>span a:hover {
  opacity: 0.6;
}

.breadcrumbs>.breadcrumb-arrow {
  opacity: 0.5;
}

.breadcrumbs>span {
  color: var(--color-secondary);
  font-size: 14px;
  letter-spacing: 0.28px;
  line-height: 23px;
}

.breadcrumbs>span:last-child {
  color: #979797;
  font-size: 14px;
  line-height: 23px;
  letter-spacing: 0.28px;
  border: none;
}

.breadcrumb-arrow {
  background: url(assets/img/right-arrow.svg);
  background-size: cover;
  width: 11px;
  height: 10px;
  background-repeat: no-repeat;
  display: inline-flex;
  margin-right: 15px;
}

.page-main h1 {
  margin-top: 75px;
  text-align: center;
  text-transform: uppercase;
}

.contact-table-info-wrapper {
  margin-top: 64px;
  overflow-x: auto;
  border: 1px solid rgba(210, 210, 210, 0.5);
  border-radius: 30px;
}

.contact-table-info {
  width: 100%;
  border-collapse: collapse;
  border-style: hidden;
}

.contact-table-info td {
  border: 1px solid rgba(210, 210, 210, 0.5);
  text-align: center;
  vertical-align: middle;
  padding: 12px;
}

.contact-table-info thead td {
  font-size: 14px;
  font-weight: 600;
}

.contact-table-info tbody td {
  font-size: 12px;
}

.contact-members {
  margin-top: 75px;
}

.contact-member {
  min-height: 290px;
  width: 100%;
  border-collapse: collapse;
  border-radius: 30px;
  border-style: hidden;
  box-shadow: 0 0 0 1px rgba(210, 210, 210, 0.5);
}

.contact-member td {
  border: 1px solid rgba(210, 210, 210, 0.5);
}

.contact-member td:first-child {
  width: 40%;
}

.contact-member_city {
  flex: 40%;
  display: flex;
  align-items: center;
  padding-left: 60px;
  font-size: 36px;
  letter-spacing: 0.72px;
  color: var(--color-primary);
  line-height: 40px;
  font-family: 'Gilroy-ExtraBold';
}

.contact-member_info {
  flex: 60%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 65px;
  padding-top: 65px;
  padding-bottom: 45px;
}

.contact-member_info-address {
  position: relative;
  font-size: 20px;
  line-height: 32px;
  letter-spacing: 0.4px;
  padding-left: 35px;
  margin-bottom: 16px;
  max-width: 75%;
}

.contact-member_info-address:before {
  content: '';
  position: absolute;
  background: url(assets/img/icon-maps--green.svg);
  background-position: center center;
  width: 23px;
  height: 27px;
  background-repeat: no-repeat;
  background-size: cover;
  left: 0px;
}

.contact-member_info-number {
  font-size: 27px;
  line-height: 34px;
  font-family: 'Gilroy-ExtraBold';
  letter-spacing: 0.54px;
  padding-left: 35px;
  position: relative;
}

.contact-member_info-number:before {
  background: url(assets/img/icon-call.svg);
  background-repeat: no-repeat;
  background-size: cover;
  width: 22px;
  height: 22px;
  position: absolute;
  left: 0px;
  top: 50%;
  background-position: center center;
  transform: translateY(-50%);
  content: '';
}

.contact-member_info-wrapper {
  margin-top: 40px;
}

.contact-member_info-btn .btn {
  width: 183px;
  height: 57px;
  font-size: 13px;
  letter-spacing: 0.65px;
}

.contact-member_info-btn .btn:after {
  background: url(assets/img/btn-call.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 15px;
  height: 15px;
  position: relative;
  margin-left: 15px;
  content: '';
}

.contact-member_info-email {
  font-size: 14px;
  line-height: 32px;
  letter-spacing: 0.7px;
  color: var(--color-secondary);
  position: relative;
  margin-left: 65px;
  padding-bottom: 5px;
  border-bottom: 1px dashed var(--color-secondary);
}

.contact-member_info-email:hover {
  color: var(--color-secondary);
  opacity: 0.6;
}

.contact-member_info-email:before {
  background: url(assets/img/icon-writing.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 19px;
  height: 22px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -30px;
  content: '';
}

.question-form {
  margin-top: 140px;
  position: relative;
}

.question-form_background {
  position: absolute;
  bottom: -180px;
  width: 100%;
}

.question-form_container {
  display: flex;
}

.question-form_container .column {
  flex: calc(100% / 3);
  position: relative;
  z-index: 1;
}

.question-form_container .column:nth-child(2) {
  z-index: 0;
}

.question-form_title {
  text-align: left;
  font-family: 'Gilroy-ExtraBold';
  letter-spacing: 0px;
  font-size: 40px;
  line-height: 50px;
  text-transform: unset;
  white-space: nowrap;
}

.question-form_dsc {
  font-size: 24px;
  line-height: 36px;
  letter-spacing: 0px;
  margin-top: 80px;
}

.question-form_img {
  object-fit: cover;
  max-height: 627px;
  max-width: 418px;
  position: absolute;
  top: -100px;
  left: -30px;
  user-select: none;
}

form br {
  display: none;
}

.form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.input {
  width: 100%;
  background: none;
  border: none;
  border-bottom: 1px solid rgba(210, 210, 210, 0.5);
  padding-bottom: 15px;
  font-size: 15px;
  letter-spacing: 0px;
  color: #9d9d9d;
  position: relative;
}

.input:focus {
  outline: none;
}

.input::-webkit-input-placeholder {
  font-size: 15px;
}

.input:-ms-input-placeholder {
  font-size: 15px;
}

.input::-ms-input-placeholder {
  font-size: 15px;
}

.input::placeholder {
  font-size: 15px;
}

.title {
  margin-bottom: 30px;
  font-family: 'Raleway-Regular';
  font-size: 15px;
  font-weight: normal;
  letter-spacing: var(--letter-spacing);
  display: block;
}

.submit {
  background: none;
  border: none;
  height: 50px;
  width: 200px;
  line-height: 50px;
  background: var(--color-primary);
  color: var(--color-white);
  border-radius: 30px;
  cursor: pointer;
  font-family: 'Raleway-SemiBold';
  letter-spacing: var(--letter-spacing);
  margin-bottom: 45px;
  outline: none;
  font-size: 16px;
}

.submit:hover {
  background: transparent;
  border: 2px solid var(--color-primary);
  color: var(--color-primary);
  line-height: 46px;
}

.label {
  position: absolute;
  top: 0px;
  left: 0px;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  font-size: 15px;
  letter-spacing: 0px;
  color: #9d9d9d;
  margin-bottom: 0px;
}

.label--active {
  font-size: 0.75rem;
  -webkit-transform: translate3d(0, -24px, 0);
  transform: translate3d(0, -24px, 0);
}

.textarea {
  border: none;
  border-bottom: 1px solid rgba(210, 210, 210, 0.5);
  resize: none;
  max-height: 105px;
  color: #9d9d9d;
  font-size: 15px;
  background: none;
}

.textarea:focus {
  outline: none;
}

.wpcf7-control-wrap {
  z-index: 1;
}

.question-form_second-title {
  text-align: left;
  font-size: 30px;
  line-height: 33px;
  font-family: 'Gilroy-ExtraBold';
  letter-spacing: 0px;
  text-transform: none;
}

.question-form_wrapper {
  border-radius: 15px;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 18px 78.2px 13.8px rgba(0, 0, 0, 0.07);
  padding-left: 40px;
  padding-right: 50px;
  padding-top: 40px;
  padding-bottom: 40px;
  position: relative;
}

.question-form_wrapper:before {
  content: '';
  position: absolute;
  left: 10px;
  right: 10px;
  top: 7px;
  bottom: 7px;
  border: 1px solid rgba(210, 210, 210, 0.5);
  border-radius: 15px;
}

form .btn-wrapper {
  width: 100%;
}

form .btn {
  width: 100%;
  min-width: 100%;
}

span.wpcf7-not-valid-tip {
  position: absolute;
  font-size: 12px;
  bottom: -20px;
  color: #f00;
}

.wpcf7-validation-errors {
  display: none !important;
}

form .btn-wrapper {
  margin-top: 25px;
}

.dealer-info {
  display: flex;
  flex-direction: column;
  margin-top: 70px;
}

.default-dsc {
  font-size: 19px;
  line-height: 28px;
  letter-spacing: 0.38px;
}

.default-fird_title {
  font-size: 30px;
  line-height: 40px;
  font-family: 'Gilroy-ExtraBold';
  letter-spacing: 0.6px;
  text-align: left;
}

.dealer-info_title {
  margin-top: 80px;
}

.dealer-info_list {
  margin-top: 50px;
  padding-left: 40px;
}

.dealer-info_list-item {
  position: relative;
  font-size: 19px;
  letter-spacing: 0.38px;
}

.dealer-info_list-item:before {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -40px;
  width: 10px;
  height: 10px;
  background-color: var(--color-secondary);
  border-radius: 50%;
}

.dealer-info_list-item+.dealer-info_list-item {
  margin-top: 35px;
}

.dealer-steps {
  margin-top: 125px;
}

.dealer-steps_title {
  font-size: 40px;
  line-height: 50px;
  letter-spacing: 0.8px;
  font-family: 'Gilroy-Heavy';
  text-transform: uppercase;
  text-align: center;
}

.dealer-step_wrapper {
  margin-top: 85px;
  display: flex;
  flex-direction: column;
}

.dealer-step+.dealer-step {
  margin-top: 40px;
}

.dealer-step {
  display: flex;
}

.dealer-step_number-wrapper {
  width: 5%;
}

.dealer-step_number {
  font-size: 24px;
  font-family: 'Gilroy-Heavy';
  letter-spacing: 0.48px;
  line-height: 100%;
  color: var(--color-secondary);
}

.defaut-number_list_no_title-item_number {
  font-size: 17px;
  letter-spacing: 0.34px;
  line-height: 24px;
  font-family: 'Gilroy-Heavy';
  color: var(--color-secondary);
  position: absolute;
  left: -30px;
}

.default-number_no_title-list {
  margin-top: 25px;
  margin-left: 30px;
}

.dealer-step_info {
  width: 95%;
}

.dealer-step_title {
  font-size: 24px;
  line-height: 21px;
  letter-spacing: 0.48px;
  font-family: 'Gilroy-Bold';
}

.default-number_list_no_title-item {
  position: relative;
  display: flex;
  align-items: baseline;
}

.default-number_list_no_title-item_title {
  font-size: 17px;
  letter-spacing: 0.34px;
  line-height: 24px;
}

.default-number_list_no_title-item+.default-number_list_no_title-item {
  margin-top: 17px;
}

.dealer-step_dsc {
  font-size: 17px;
  letter-spacing: 0.34px;
  margin-top: 20px;
  line-height: 100%;
}

.dealer-step_link {
  color: var(--color-secondary);
  border-bottom: 1px solid var(--color-secondary);
}

.dealer-step_link:hover {
  color: var(--color-secondary);
  opacity: 0.6;
}

.btn-dealer {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 70px;
}

.btn-dealer .btn {
  width: 310px;
}

.dealers-cards {
  display: flex;
  flex-wrap: wrap;
  margin-top: 75px;
}

.dealers-card:nth-child(-n + 4) {
  margin-top: 0px;
}

.dealers-card {
  width: calc(100% / 4 - 30px);
  margin-right: 30px;
  border-radius: 15px;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 18px 38.7px 4.3px rgba(30, 30, 30, 0.08);
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 25px;
  padding-top: 30px;
  position: relative;
  margin-top: 65px;
}

.dealers-card:before {
  content: '';
  position: absolute;
  top: 6px;
  left: 6px;
  right: 6px;
  bottom: 6px;
  border-radius: 15px;
  border: 1px solid rgba(210, 210, 210, 0.5);
}

.dealers-card:nth-child(4n + 4) {
  margin-right: 0px;
}

.dealers-card_img-wrapper {
  max-height: 160px;
}

.dealers-card_img {
  width: 100%;
  object-fit: cover;
}

.dealers-card_info-wrapper {
  margin-top: 15px;
}

.dealers-card_name {
  font-size: 20px;
  letter-spacing: 0.48px;
  font-family: 'Gilroy-ExtraBold';
  text-transform: uppercase;
}

.dealers-card_contacts {
  display: flex;
  flex-direction: column;
  margin-top: 16px;
  padding-left: 20px;
}

.dealers-card_contacts-number {
  font-size: 13px;
  font-family: 'Gilroy-ExtraBold';
  letter-spacing: 0.26px;
  position: relative;
}

.dealers-card_contacts-number:before {
  content: '';
  position: absolute;
  left: -20px;
  background: url(assets/img/icon-call.png);
  background-size: cover;
  background-repeat: no-repeat;
  width: 10px;
  height: 10px;
  top: 50%;
  transform: translateY(-50%);
}

.dealers-card_contacts-site {
  font-size: 13px;
  color: var(--color-secondary);
  letter-spacing: 0.26px;
  margin-top: 5px;
  position: relative;
}

.dealers-card_contacts-site:before {
  content: '';
  position: absolute;
  left: -20px;
  background: url(assets/img/icon-global.png);
  background-size: cover;
  background-repeat: no-repeat;
  width: 11px;
  height: 11px;
  top: 50%;
  transform: translateY(-50%);
}

.dealers-card_contacts-city {
  font-size: 13px;
  letter-spacing: 0.26px;
  margin-top: 5px;
  position: relative;
}

.dealers-card_contacts-city:before {
  content: '';
  position: absolute;
  left: -20px;
  background: url(assets/img/icon-map.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 19px;
  height: 13px;
  top: 50%;
  transform: translateY(-50%);
}

.dealers-card_dsc {
  font-size: 12px;
  line-height: 18px;
  letter-spacing: 0.24px;
  margin-top: 20px;
}

.delivery-wrapper {
  margin-top: 90px;
}

.delivery-container {
  display: flex;
}

.delivery-container+.delivery-container {
  margin-top: 130px;
}

.delivery-container_left {
  flex: 55%;
}

.delivery-dsc {
  font-size: 19px;
  line-height: 28px;
  letter-spacing: 0.38px;
}

.delivery-container_right p,
.delivery-wrapper p {
  font-size: 19px;
  line-height: 28px;
  letter-spacing: 0.38px;
}

.delivery-container_right p+p,
.delivery-wrapper p+p {
  margin-top: 40px;
}

.delivery-container_wrapper {
  margin-top: 130px;
}

.delivery-container_right {
  flex: 45%;
  position: relative;
}

.delivery-img {
  position: absolute;
  width: auto;
  max-width: 711px;
  max-height: 381px;
  left: -34%;
  user-select: none;
}

.delivery-wrapper .delivery-container:nth-child(2) .delivery-container_left {
  flex: 40%;
}

.delivery-wrapper .delivery-container:nth-child(2) .delivery-container_right {
  flex: 60%;
}

.delivery-wrapper .delivery-container:nth-child(2) .delivery-img {
  left: auto;
  max-width: none;
  max-height: none;
  width: 45%;
  top: 60%;
  left: -8%;
}

.delivery-dsc+.delivery-dsc {
  margin-top: 40px;
}

.second-title {
  text-transform: none;
  font-size: 30px;
  line-height: 40px;
  letter-spacing: 0.6px;
  font-family: 'Gilroy-ExtraBold';
  text-align: left;
}

.delivery-second_title {
  margin-bottom: 110px;
}

.delivery-addresses {
  margin-top: 200px;
}

.delivery-addresses_table-wrapper {
  margin-top: 75px;
}

.delivery-addresses_table {
  display: flex;
  width: 100%;
  border-radius: 15px;
  border-style: hidden;
  box-shadow: 0 0 0 1px #e1e2e3;
}

.table-column {
  border-right: 1px solid #e1e1e1;
  flex: auto;
}

.table-column:last-child {
  border: none;
}

.table-row {
  width: 100%;
}

.delivery-addresses_table .table-row:first-child {
  background: #5bd05b;
  height: 70px;
  padding-left: 20px;
  display: flex;
  align-items: center;
}

.delivery-addresses_table .table-column:first-child .table-row:first-child {
  border-top-left-radius: 15px;
}

.delivery-addresses_table .table-column:last-child .table-row:first-child {
  border-top-right-radius: 15px;
}

.delivery-addresses_table-title {
  color: var(--color-white);
  font-size: 16px;
  font-family: 'Gilroy-ExtraBold';
}

.delivery-addresses_table-contacts {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 110px;
  padding-left: 40px;
}

.table-contacts_adress {
  font-size: 12px;
  line-height: 23px;
  letter-spacing: 0.24px;
  white-space: nowrap;
  position: relative;
}

.table-contacts_adress:before {
  content: '';
  position: absolute;
  left: -20px;
  background: url(assets/img/icon-map.png);
  background-repeat: no-repeat;
  background-size: cover;
  width: 12px;
  height: 16px;
}

.table-contacts_number {
  font-size: 14px;
  line-height: 18px;
  letter-spacing: 0.28px;
  font-family: 'Gilroy-ExtraBold';
  position: relative;
  margin-top: 15px;
}

.table-contacts_number:before {
  content: '';
  position: absolute;
  left: -20px;
  background: url(assets/img/icon-call.png);
  background-repeat: no-repeat;
  background-size: cover;
  width: 11px;
  height: 11px;
}

.delivery-addresses_table .table-column:last-child .delivery-addresses_table-title {
  font-size: 13px;
  line-height: 16px;
  letter-spacing: 0.26px;
}

.delivery-addresses_table .table-column:last-child .delivery-addresses_table-title br {
  display: block;
  line-height: 16px;
  content: ' ';
}

.delivery-addresses_table-subtitle {
  font-family: 'Gilroy-Regular';
  font-size: 13px;
}

.delivery-addresses_content {
  display: flex;
  width: 100%;
  margin-top: 85px;
}

.delivery-addresses_content-dsc {
  width: 50%;
  padding-left: 90px;
  position: relative;
  font-size: 20px;
  line-height: 28px;
  letter-spacing: 0.4px;
}

.delivery-addresses_content-dsc:before {
  content: '';
  position: absolute;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  left: 0px;
  top: 50%;
  transform: translateY(-50%);
}

.delivery-addresses_content-dsc:nth-child(1):before {
  background-image: url(assets/img/delivery-truck.svg);
  width: 62px;
  height: 42px;
}

.delivery-addresses_content-dsc:nth-child(2):before {
  background-image: url(assets/img/box.svg);
  width: 56px;
  height: 52px;
}

.delivery-regions {
  margin-top: 155px;
}

.delivery-regions_list {
  display: flex;
  margin-top: 55px;
  flex-direction: row;
}

.delivery-regions_list-column {
  display: flex;
  flex-direction: column;
  width: 50%;
  padding-left: 25px;
}

.delivery-regions_list-item {
  position: relative;
  font-size: 19px;
  letter-spacing: 0.38px;
  width: 50%;
  white-space: nowrap;
}

.delivery-regions_list-item+.delivery-regions_list-item {
  margin-top: 5px;
}

.delivery-regions_list-item:before {
  content: '';
  position: absolute;
  left: -25px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--color-secondary);
}

.delivery-payment {
  margin-top: 100px;
  background: #e1e2e3;
  padding-top: 95px;
  padding-bottom: 115px;
}

.delivery-payment_wrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin-top: 85px;
}

.delivery-payment_column {
  width: calc(100% / 5);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.delivery-payment_img-wrapper {
  min-height: 90px;
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: center;
}

.delivery-payment_img {
  object-fit: cover;
  max-width: 90px;
  max-height: 90px;
  user-select: none;
}

.develiry-payment_text {
  font-size: 15px;
  line-height: 23px;
  letter-spacing: 0.3px;
  font-family: 'Gilroy-ExtraBold';
  text-align: center;
  margin-top: 25px;
  min-height: 40px;
}

.service-cards {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin-top: 90px;
}

.default-card {
  display: flex;
  flex-direction: column;
  padding: 6px;
  padding-bottom: 30px;
  background-color: var(--color-white);
  position: relative;
  border-radius: 10px;
  box-shadow: 0px 18px 38.7px 4.3px rgba(30, 30, 30, 0.08);
  cursor: pointer;
  position: relative;
}

.default-card:before {
  content: '';
  position: absolute;
  border: 1px solid rgba(210, 210, 210, 0.5);
  border-radius: 10px;
  left: 6px;
  top: 6px;
  right: 6px;
  bottom: 6px;
}

.service-card {
  max-height: 285px;
  width: calc(100% / 4 - 30px);
  margin-right: 30px;
  margin-top: 60px;
}

.service-card:nth-child(4n + 4) {
  margin-right: 0px;
}

.default-card_img-wrapper {
  width: 100%;
  display: flex;
}

.service-card:nth-child(-n + 4) {
  margin-top: 0px;
}

.default-card_img {
  width: 100%;
  object-fit: cover;
  object-position: center center;
  height: 160px;
  max-height: 182px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.default-card_title {
  margin-top: 30px;
  text-align: center;
  font-family: 'Gilroy-ExtraBold';
  font-size: 16px;
  line-height: 22px;
  padding-left: 5px;
  padding-right: 5px;
  letter-spacing: 0.32px;
}

.service-info_wrapper:first-child {
  margin-top: 150px;
}

.service-info_wrapper p+a {
  margin-top: 20px;
  display: inline-flex;
}

.service-info_wrapper a+a {
  margin-left: 20px;
  display: inline-flex;
}

.service-info_table {
  margin-top: 32px;
}


.default-editor a {
  color: var(--color-secondary);
  border-bottom: 1px solid var(--color-secondary);
}

.default-editor a:hover {
  border-bottom: 1px solid transparent;
}

.default-second_title,
.default-editor h2 {
  font-size: 36px;
  line-height: 42px;
  letter-spacing: 0.72px;
  text-transform: unset;
  font-family: 'Gilroy-ExtraBold';
}

.default-editor p>a+a {
  margin-left: 20px;
}

.sub-product_editor a>img {
  object-fit: cover;
  height: auto;
  max-height: 100%;
}

.sub-product_editor p+p {
  margin-top: 15px;
}

.tab-content table+a>img,
.default-editor table+a img {
  margin-top: 20px;
}

.tab-content tbody tr:first-child,
.default-editor tbody tr:first-child {
  padding-left: 15px;
  padding-right: 15px;
  border: none;
  background-color: var(--color-secondary);
}

.tab-content tbody tr:first-child td,
.default-editor tbody tr:first-child td {
  height: 50px;
  color: #fff;
}

.page-product .tab-content p+p {
  margin-top: 15px;
}

.tab-content table+h2 {
  margin-top: 40px;
}

.tab-content table+p,
.default-editor table+p {
  margin-top: 30px;
}

.default-editor p+table {
  margin-top: 16px;
}

.tab-content tbody tr td,
.default-editor tbody tr td {
  border-right: 1px solid #dbdbdb;
  border-bottom: 1px solid #dbdbdb;
  padding: 15px;
  height: 50px;
  text-align: center;
}

.tab-content tbody tr,
.default-editor tbody tr {
  border-left: 1px solid #dbdbdb;
  border-right: 1px solid #dbdbdb;
}

.tab-content tbody tr td:last-child,
.default-editor tbody tr td:last-child {
  border-right: none;
}

.tab-content tbody tr:first-child td:first-child,
.default-editor tbody tr:first-child td:first-child {
  border-top-left-radius: 15px;
}

.tab-content tbody tr:first-child td:last-child,
.default-editor tbody tr:first-child td:last-child {
  border-top-right-radius: 15px;
}

.service-info_title {
  text-align: left;
}

.service-info_dsc {
  margin-top: 45px;
  font-size: 17px;
  line-height: 24px;
  letter-spacing: 0.34px;
}

.service-info_container {
  margin-top: 70px;
}

.default-third_title,
.default-editor h3 {
  font-size: 24px;
  line-height: 21px;
  letter-spacing: 0.48px;
  font-family: 'Gilroy-Bold';
}

.service-info_subtitle {
  margin-top: 45px;
}

.service-info_container:nth-child(2) .service-info_dsc {
  margin-top: 20px;
}

.default-list_items {
  margin-top: 35px;
  padding-left: 30px;
}

.default-list_item:first-child {
  margin-top: 0px;
}

.default-list_item {
  font-size: 17px;
  line-height: 24px;
  letter-spacing: 0.34px;
  position: relative;
  margin-top: 15px;
}

.default-list_item:before {
  content: '';
  position: absolute;
  left: -30px;
  width: 10px;
  height: 10px;
  background-color: var(--color-secondary);
  border-radius: 10px;
  top: 8px;
}

.default-text_border-wrapper {
  margin-top: 50px;
  display: flex;
}

.default-text_border {
  padding-left: 40px;
  padding-top: 35px;
  padding-bottom: 35px;
  padding-right: 40px;
  border: 4px solid var(--color-secondary);
  border-radius: 10px;
  font-size: 17px;
  line-height: 24px;
  letter-spacing: 0.34px;
  width: 75%;
}

.works .tabs {
  margin-top: 85px;
}

.works .tab-button_container {
  display: flex;
}

.works .tab-button {
  cursor: pointer;
  height: 60px;
  width: 153px;
  border: 1px solid rgba(210, 210, 210, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  line-height: 22px;
  letter-spacing: 0.36px;
  font-family: 'Gilroy-ExtraBold';
  position: relative;
}

.works .tab-button--1 {
  border-top-left-radius: 30px;
  border-bottom-left-radius: 30px;
}

.works .tab-button_active.tab-button--1:before {
  content: '';
  position: relative;
  width: 20px;
  height: 15px;
  background-image: url(assets/img/work-list--white.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  margin-right: 15px;
}

.works .tab-button--1:before {
  content: '';
  position: relative;
  width: 20px;
  height: 15px;
  background-image: url(assets/img/work-list--green.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  margin-right: 15px;
}

.works .tab-button_active {
  color: var(--color-white);
  background-color: var(--color-secondary);
}

.works .tab-button--2 {
  border-top-right-radius: 30px;
  border-bottom-right-radius: 30px;
}

.works .tab-button_active.tab-button--2:before {
  content: '';
  position: relative;
  width: 16px;
  height: 20px;
  background-image: url(assets/img/icon-maps--white.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  margin-right: 15px;
}

.works .tab-button--2:before {
  content: '';
  position: relative;
  width: 16px;
  height: 20px;
  background-image: url(assets/img/icon-maps--green.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  margin-right: 15px;
}

.works .tab-content_container {
  margin-top: 60px;
}

.works .tab-content {
  display: none;
}

.works .tab-active {
  display: block;
}

.work-cards {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  width: 100%;
}

.work-card {
  width: calc(100% / 3 - 40px);
  margin-right: 40px;
  padding: 6px;
  background-color: var(--color-white);
  position: relative;
  border-radius: 10px;
  margin-top: 70px;
  box-shadow: 0px 18px 38.7px 4.3px rgba(30, 30, 30, 0.08);
  padding-bottom: 140px;
}

.work-card:nth-child(-n + 3) {
  margin-top: 0px;
}

.work-card:nth-child(3n-3) {
  margin-right: 0px;
}

.work-card:before {
  content: '';
  position: absolute;
  border: 1px solid rgba(210, 210, 210, 0.5);
  border-radius: 10px;
  left: 6px;
  top: 6px;
  bottom: 6px;
  right: 6px;
}

.work-card_slider {
  position: relative;
  max-height: 230px;
}

.work-arrow_next,
.work-arrow_prev {
  position: absolute;
  background: var(--color-white);
  border-radius: 50%;
  width: 38px;
  height: 38px;
  border: none;
  box-shadow: 0px 18px 38.7px 4.3px rgba(30, 30, 30, 0.08);
  display: flex;
  justify-content: center;
  align-items: center;
}

.work-arrow_next:focus,
.work-arrow_prev:focus {
  outline: none;
}

.work-arrow_next {
  bottom: 13px;
  right: 13px;
}

.work-arrow_prev {
  bottom: 13px;
  right: 55px;
  z-index: 1;
}

.work-arrow_prev:before,
.work-arrow_next:before {
  content: '';
  position: absolute;
  background: url(assets/img/arrow-right--green.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  width: 9px;
  height: 14px;
}

.work-arrow_next:after {
  transform: scale(1, 1);
}

.work-arrow_prev:before {
  transform: scale(-1, 1);
}

.work-card_img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center center;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  min-height: 230px;
  max-height: 230px;
  object-fit: cover;
  object-position: center center;
}

.work-card_wrapper {
  display: flex;
  flex-direction: column;
  padding-top: 24px;
  padding-left: 16px;
  padding-right: 16px;
}

.work-card_info-title {
  font-size: 24px;
  line-height: 28px;
  letter-spacing: 0.48px;
  font-family: 'Gilroy-ExtraBold';
  min-height: 56px;
}

.work-card_info {
  margin-top: 30px;
  display: flex;
  align-items: baseline;
}

.work-card_info+.work-card_info {
  margin-top: 10px;
}

.work-card_text {
  font-family: 'Gilroy-ExtraBold';
  font-size: 15px;
  line-height: 24px;
  letter-spacing: 0.3px;
  color: #6c6c6c;
  width: 35%;
}

.work-card_value {
  width: 65%;
  font-size: 11px;
  line-height: 16px;
  letter-spacing: 0.22px;
  color: #6c6c6c;
}

.work-slide img {
  max-height: 355px;
  margin: 0 auto;
}

.work-card_btn-wrapper {
  margin-top: 35px;
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 24px;
}

.work-card_btn-wrapper .btn {
  width: 100%;
  height: 67px;
  font-size: 14px;
  letter-spacing: 0.7px;
}

.work-card_btn:before {
  position: absolute;
  content: '';
  background-image: url(assets/img/arrow-right.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 5px;
  height: 9px;
  top: 50%;
  right: 15%;
  transform: translateY(-50%);
}

.pagination-work {
  margin-top: 75px;
  display: flex;
  justify-content: center;
}

.pagination-number {
  font-family: 'Gilroy-ExtraBold';
  font-size: 20px;
  line-height: 22px;
  letter-spacing: 0.4px;
  color: var(--color-secondary);
  margin-right: 25px;
  border-bottom: 2px solid var(--color-secondary);
  cursor: pointer;
}

.pagination-number:last-child {
  margin-right: 40px;
}

.pagination-number_active {
  border: none;
  color: #7b7b7b;
}

.pagination-next {
  cursor: pointer;
  font-family: 'Gilroy-Bold';
  font-size: 18px;
  line-height: 24px;
  text-transform: uppercase;
  color: var(--color-secondary);
  letter-spacing: 0.36px;
  position: relative;
}

.pagination-next:after {
  content: '';
  position: absolute;
  margin-left: 10px;
  background-image: url(assets/img/pagination-arrow_right.svg);
  background-repeat: no-repeat;
  background-size: cover;
  width: 14px;
  height: 14px;
  top: 50%;
  transform: translateY(-50%);
}

.product-cards {
  display: flex;
  flex-wrap: wrap;
}

.product-card {
  /* max-height: 285px; */
  width: calc(100% / 4 - 30px);
  margin-right: 30px;
  margin-top: 60px;
}

.product-card:nth-child(4n + 4) {
  margin-right: 0px;
}

.product-card .default-card_img {
  width: auto;
  height: auto;
  max-width: 200px;
  max-height: 200px;
  object-fit: contain;
}

.product-card .default-card_img-wrapper {
  justify-content: center;
  min-height: 175px;
  max-height: 175px;
}

.default-card_hover {
  position: absolute;
  content: 'Перейти';
  font-family: 'Gilroy-ExtraBold';
  top: 0px;
  left: 0px;
  bottom: 0px;
  right: 0px;
  width: auto;
  background: rgba(64, 159, 64, 0.7);
  z-index: 1;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  display: none;
}

.default-card_hover-text {
  position: relative;
  text-align: center;
  color: var(--color-white);
  font-size: 24px;
  line-height: 22px;
}

.default-card_hover-text:after {
  content: '';
  position: absolute;
  background-image: url(assets/img/card-arrow_white.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  width: 8px;
  height: 14px;
  top: 50%;
  margin-left: 12px;
  transform: translateY(-50%);
}

.default-card:hover .default-card_hover {
  display: flex;
}

.categories-wrapper {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
}

.sidebar-title {
  text-align: left;
  font-size: 24px;
  line-height: 100%;
  letter-spacing: 0.56px;
  font-family: 'Gilroy-ExtraBold';
  padding-left: 28px;
}

.categories {
  display: flex;
  flex-direction: column;
  margin-top: 40px;
  border-radius: 10px;
  box-shadow: 0px 2px 7.2px 0.8px rgba(30, 30, 30, 0.05);
  background-color: var(--color-white);
}

.category-link {
  height: 56px;
  display: flex;
  align-items: center;
  padding-left: 28px;
  border-bottom: 1px solid rgba(35, 35, 35, 0.06);
}

.articles-card {
  margin-left: 30px;
  display: flex;
  margin-top: 80px;
  flex-wrap: wrap;
  justify-content: space-between;
}

.article-card {
  display: flex;
  width: calc(100% / 3 - 10px);
  margin-top: 15px;
}

.article-card:nth-child(-n + 3) {
  margin-top: 0px;
}

.articles-card .default-card_img-wrapper {
  max-height: 192px;
  position: relative;
}

.default-card_review-wrapper {
  display: flex;
  margin-top: 15px;
  align-items: baseline;
  padding-left: 20px;
  padding-right: 20px;
  justify-content: space-between;
}

.default-card_review-rating {
  display: flex;
}

.default-card_review-rating>input {
  display: none;
}

.default-card_review-rating>label {
  cursor: pointer;
  width: 13px;
  height: 12px;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='126.729' height='126.73'%3e%3cpath fill='%23e3e3e3' d='M121.215 44.212l-34.899-3.3c-2.2-.2-4.101-1.6-5-3.7l-12.5-30.3c-2-5-9.101-5-11.101 0l-12.4 30.3c-.8 2.1-2.8 3.5-5 3.7l-34.9 3.3c-5.2.5-7.3 7-3.4 10.5l26.3 23.1c1.7 1.5 2.4 3.7 1.9 5.9l-7.9 32.399c-1.2 5.101 4.3 9.3 8.9 6.601l29.1-17.101c1.9-1.1 4.2-1.1 6.1 0l29.101 17.101c4.6 2.699 10.1-1.4 8.899-6.601l-7.8-32.399c-.5-2.2.2-4.4 1.9-5.9l26.3-23.1c3.8-3.5 1.6-10-3.6-10.5z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
  transition: 0.3s;
  margin-right: 4px;
}

.default-card_review-rating>label:last-child {
  margin-right: 0px;
}

.article-card .review-date {
  font-size: 12px;
  line-height: 22px;
  letter-spacing: 0.24px;
  color: #aaaaaa;
  position: relative;
}

.article-card .review-comment_number {
  font-size: 12px;
  line-height: 22px;
  letter-spacing: 0.24px;
  color: #aaaaaa;
  position: relative;
  margin-left: 30px;
}

.article-card .review-comment_number:before {
  content: '';
  position: absolute;
  background-image: url(assets/img/category-comments.svg);
  background-repeat: no-repeat;
  background-size: cover;
  width: 16px;
  height: 16px;
  top: 50%;
  transform: translateY(-50%);
  left: -24px;
}

.article-card .default-card_title {
  font-size: 16px;
  line-height: 18px;
  font-family: 'Gilroy-ExtraBold';
  color: #232323;
  text-align: left;
  padding-left: 20px;
  padding-right: 20px;
  position: relative;
  margin-top: 16px;
}

.article-card .default-card_dsc {
  padding-left: 20px;
  padding-right: 20px;
  font-size: 12px;
  color: #aaaaaa;
  letter-spacing: 0.24px;
  margin-top: 25px;
  padding-bottom: 20px;
}

.article-card {
  cursor: default;
  transition: box-shadow 0.25s ease;
}

.article-card:hover {
  box-shadow: 0px 7.5px 15px 1px rgba(0, 0, 0, 0);
}

.article-card .default-card_btn-wrapper {
  margin-left: 20px;
  margin-right: 20px;
  margin-top: 30px;
}

.article-card .default-card_btn {
  cursor: pointer;
  z-index: 1;
  font-size: 12px;
  text-transform: uppercase;
  position: relative;
  line-height: 22px;
  padding-bottom: 2px;
  letter-spacing: 0.5px;
  color: var(--color-secondary);
  border-bottom: 1px dashed var(--color-secondary);
  padding-right: 15px;
  position: absolute;
  bottom: 20px;
}

.article-card .default-card_btn:hover {
  opacity: 0.6;
}

.article-card .default-card_btn:after {
  content: '';
  position: absolute;
  background-image: url(assets/img/pagination-arrow_right.svg);
  background-size: cover;
  background-repeat: no-repeat;
  width: 6px;
  height: 8px;
  top: 50%;
  transform: translateY(-50%);
  margin-left: 10px;
}

.pagination-article,
.woocommerce-pagination {
  display: flex;
  justify-content: center;
  margin-top: 60px;
}

.woocommerce-pagination ul {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
}

.woocommerce-pagination li {
  margin-right: 24px;
}

.woocommerce-pagination li a {
  font-family: 'Gilroy-ExtraBold';
  font-size: 20px;
  line-height: 22px;
  letter-spacing: 0.4px;
  color: var(--color-secondary);
  border-bottom: 2px solid var(--color-secondary);
  cursor: pointer;
}

.woocommerce-pagination li a.next {
  cursor: pointer;
  font-family: 'Gilroy-Bold';
  font-size: 18px;
  line-height: 24px;
  text-transform: uppercase;
  color: var(--color-secondary);
  letter-spacing: 0.36px;
  position: relative;
  border-bottom: none;
}

.woocommerce-pagination li a.next:after {
  content: '';
  position: absolute;
  margin-left: 10px;
  background-image: url(assets/img/pagination-arrow_right.svg);
  background-repeat: no-repeat;
  background-size: cover;
  width: 14px;
  height: 14px;
  top: 50%;
  transform: translateY(-50%);
}

.woocommerce-pagination li span.current {
  border: none;
  color: #7b7b7b;
  font-family: 'Gilroy-ExtraBold';
  font-size: 20px;
  line-height: 22px;
  letter-spacing: 0.4px;
}

.discount {
  margin-top: 35px;
  width: 100%;
  border-radius: 10px;
  max-height: 242px;
  position: relative;
  max-width: 260px;
}

.discount-wrapper {
  position: absolute;
  z-index: 1;
  padding-top: 23px;
  padding-left: 30px;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-content: space-between;
  width: 100%;
}

.sub-product .discount-wrapper {
  background: rgba(0, 0, 0, 0.4);
  border-radius: 15px;
}

.sub-product .btn-wrapper_discount {
  margin-top: 40px;
}

.sub-product .discount-image {
  width: 100%;
  border-radius: 15px;
}

.discount-title {
  color: var(--color-white);
  font-size: 20px;
  line-height: 26px;
  font-family: 'Gilroy-ExtraBold';
  letter-spacing: 0px;
}

.discount-color--yellow {
  color: #ffc85c;
}

.btn-discount {
  height: 37px;
  font-size: 9px;
  letter-spacing: 0.45px;
  width: 114px;
}

.btn-wrapper_discount {
  width: 114px;
  margin-top: 100px;
}

.sub-product .wrapper {
  margin-left: 10px;
  margin-top: 50px;
}

.sub-product h1 {
  text-align: left;
  text-transform: uppercase;
  display: inline;
}

.product-page {
  text-transform: uppercase;
  font-size: 40px;
  line-height: 50px;
  letter-spacing: 0.8px;
  color: var(--color-secondary);
  font-family: 'Gilroy-Heavy';
  margin: 0px;
}

.wrapper-selection {
  display: flex;
  align-items: center;
  margin-top: 30px;
  padding-top: 40px;
  padding-bottom: 40px;
  border-top: 1px solid rgba(210, 210, 210, 0.5);
  border-bottom: 1px solid rgba(210, 210, 210, 0.5);
}

.wrapper-selection .btn {
  width: 213px;
  height: 55px;
  font-size: 9px;
  letter-spacing: 0.45px;
}

.wrapper-selection .main-btn:after {
  width: 52px;
  height: 42px;
  right: -28px;
}

.wrapper-selection .selection-list {
  margin-left: 100px;
}

.wrapper-selection .selection-list:hover {
  opacity: 0.6;
}

.selection-list {
  font-size: 11px;
  line-height: 23px;
  letter-spacing: 0.5px;
  color: #222222;
  position: relative;
  text-transform: uppercase;
  border-bottom: 1px dashed #222222;
  font-family: 'Gilroy-Bold';
}

.selection-list:before {
  content: '';
  position: absolute;
  background-image: url(assets/img/icon-download.svg);
  background-size: cover;
  background-repeat: no-repeat;
  width: 18px;
  height: 18px;
  left: -29px;
  bottom: 0px;
}

.sub-product .product-block {
  margin-right: 0px;
  width: calc(100% / 3 - 20px);
  height: auto;
  margin-right: 30px;
  margin-top: 30px;
  margin-bottom: 0px;
  padding-bottom: 0px;
  transition: box-shadow 0.25s ease;
}

.sub-product .product-block:hover {
  box-shadow: 0px 7.5px 30px 1px rgba(0, 0, 0, 0.09);
}

.sub-product .product-block:nth-child(-n + 3) {
  margin-top: 0px;
}

.sub-product .product-block:nth-child(3n + 3) {
  margin-right: 0px;
}

.sub-product .product-block_img-wrapper {
  height: 135px;
}

.sub-product .product-block_info {
  padding-top: 20px;
  padding-left: 20px;
  padding-right: 10px;
}

.sub-product .product-block_name--bold {
  font-size: 15px;
}

.sub-product .product-block_name {
  font-size: 12px;
}

.sub-product .product-info_size-name,
.sub-product .product-info_weight-name,
.sub-product .product-info_generate-name,
.sub-product .product-info_users-name {
  font-size: 11px;
  padding-left: 20px;
}

.sub-product .product-info_size-value,
.sub-product .product-info_weight-value,
.sub-product .product-info_generate-value,
.sub-product .product-info_users-value {
  font-size: 11px;
}

.sub-product .product-info_size {
  margin-top: 10px;
}

.sub-product .product-block_price {
  padding-left: 20px;
  font-size: 22px;
  margin-top: 12px;
}

.sub-product .product-block_wrapper {
  margin-left: 20px;
  margin-top: 14px;
  padding-bottom: 30px;
}

.sub-product .product-block_more {
  font-size: 10px;
  margin-left: 10px;
}

.sub-product .product-block_more:after {
  width: 8px;
  height: 8px;
}

.sub-product .product-block_card-btn {
  width: 103px;
  height: 32px;
  font-size: 9px;
  padding-left: 19px;
  padding-right: 16px;
}

.sub-product .product-block_card-btn:after {
  width: 10px;
  height: 10px;
  right: 19px;
}

.sub-product .btn-wrapper:not(.add_to_cart_button) .product-block_card-btn:after {
  content: none;
}

.sub-product .btn-wrapper:not(.add_to_cart_button) .product-block_card-btn {
  padding: 0px;
  justify-content: center;
}

.sub-product .btn-wrapper:before {
  bottom: -2px;
}

.sub-product .category-link {
  height: auto;
  padding-top: 18px;
  padding-bottom: 18px;
  font-size: 14px;
  padding-right: 30px;
}

.sub-product .category-link.active {
  color: var(--color-secondary);
  font-weight: 600;
}

.sub-product .category-link:hover {
  color: var(--color-secondary);
}

.filter-buttons {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  margin-top: 50px;
  gap: 8px;
  max-height: 105px;
  overflow: hidden;
}

.filter-buttons.show-all {
  overflow: visible;
  max-height: none;
}

.filter-button__more {
  margin-top: 8px;
  font-family: 'Gilroy-SemiBold';
  height: 46px;
  padding: 0 32px;
  border: 2px solid var(--color-secondary);
  color: var(--color-secondary);
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 30px;
  background-color: transparent;
}

.filter-button__more:hover {
  background-color: #41bb41;
  color: #fff;
}

.filter-button {
  font-size: 14px;
  letter-spacing: 0.28px;
  border-radius: 30px;
  border: 1px solid rgba(210, 210, 210, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  padding-left: 26px;
  padding-right: 26px;
  padding-top: 12px;
  padding-bottom: 12px;
  cursor: pointer;
  box-sizing: border-box;
  transition: none;
}

.filter-button:hover,
.filter-button.active {
  font-size: 14px;
  color: var(--color-white);
  background-color: var(--color-secondary);
}

.filter-button.active {
  cursor: default;
}

.filter-buttons>input {
  display: none;
}

input:checked+label {
  font-family: 'Gilroy-ExtraBold';
  font-size: 14px;
  color: var(--color-white);
  background-color: var(--color-secondary);
}

.filter-title {
  margin-top: 60px;
  font-size: 24px;
  line-height: 31px;
  letter-spacing: 0.48px;
  font-family: 'Gilroy-Bold';
  text-align: left;
  text-transform: none;
}

.filter-block_wrapper {
  margin-top: 30px;
}

.filter-block {
  cursor: default;
  padding: 32px;
  flex-direction: row;
}

.filter-block:before {
  content: none;
}

.filter-block form {
  width: 100%;
  display: flex;
}

.filter-block_options {
  display: flex;
  flex-wrap: wrap;
  width: 60%;
  max-height: 200px;
  overflow: hidden;
  position: relative;
}

.sooruzheniya-dlya-ochistki-vody-avtomojki .filter-block_options {
  max-height: 200px;
}

.sooruzheniya-dlya-ochistki-vody-avtomojki .filter-block_option:nth-child(3) {
  margin-top: 20px;
}

.filter-block_option-all {
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.26s ease-in;
  width: 100%;
  display: flex;
  margin-top: 40px;
  flex-wrap: wrap;
}

.filter-block_option .berocket_widget_icon {
  max-width: 20px;
  max-height: 16px;
  object-fit: contain;
  margin-right: 6px;
  width: 100%;
  height: 100%;
}

.filter-block_option h3 {
  display: flex;
  align-items: baseline;
  font-size: 12px;
  line-height: 20px;
  font-family: 'Gilroy-ExtraBold';
  letter-spacing: 0.2px;
  white-space: nowrap;
}

.filter-block_options--active {
  overflow: unset;
  max-height: 100%;
}

.filter-block_options--active .filter-block_option-all {
  transform: scaleY(1);
}

.filter-block_more {
  width: 40%;
}

.filter-block_option {
  display: flex;
  flex-direction: column;
  font-size: 12px;
  line-height: 20px;
  font-family: 'Gilroy-ExtraBold';
  letter-spacing: 0.2px;
  width: calc(50% - 16px);
  margin: 0 8px;
  margin-top: 20px;
}

.filter-block_option .bapf_sfilter {
  margin: 0;
}

.filter-block_option:nth-child(-n + 2) {
  margin-top: 0px;
}

.filter-block_option .select-wrapper select {
  font-size: 11px;
  font-family: 'Gilroy-Regular';
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 15px;
  padding-right: 40px;
  border-radius: 10px;
  border: 1px solid rgba(30, 30, 30, 0.05);
  width: fit-content;
  position: relative;
}

.filter-block_option .select-wrapper .berocket_aapf_widget span {
  width: fit-content;
  position: relative;
}

.filter-block_option .select-wrapper .berocket_aapf_widget span:after {
  content: '';
  display: inline-block;
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-30%);
  pointer-events: none;
  border: 4px solid transparent;
  border-top: 6px solid var(--color-secondary);
}

.filter-block_option .select-wrapper:before {
  content: none;
}

.filter-block_more .btn-wrapper {
  width: auto;
}

.filter-block_more {
  padding-right: 23px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.filter-block_more .bapf_sfilter {
  margin: 0;
}

.filter-block_more .btn-wrapper .berocket_aapf_widget {
  margin: auto;
}

.filter-block_more .btn-wrapper .berocket_aapf_widget {
  background-image: linear-gradient(0deg,
      rgb(255, 158, 43) 0%,
      rgb(255, 240, 139) 100%);
  border-radius: 60px;
}

.filter-block_more .btn-wrapper .bapf_button {
  border: none;
  width: 196px;
  height: 57px;
  font-size: 11px;
  letter-spacing: 0.5px;
  background-image: linear-gradient(0deg,
      rgb(255, 158, 43) 0%,
      rgb(255, 240, 139) 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 60px;
  position: relative;
  padding: 0px;
  color: var(--color-primary);
  text-transform: uppercase;
  border: none;
  font-family: 'Gilroy-SemiBold';
}

.filter-block_more .btn-wrapper .bapf_button :focus {
  outline: none;
}

.filter-block_options .widget-title {
  font-size: 12px;
  line-height: 20px;
  font-family: 'Gilroy-ExtraBold';
  letter-spacing: 0.2px;
}

.filter-block_options .berocket_aapf_widget {
  margin: auto;
  clear: none;
  transform: scale(1, -1);
}

.filter-block_options .widget-title span {
  display: flex;
}

.filter-block_options .widget-title span i img {
  width: 15px;
  object-fit: cover;
  object-position: center center;
  margin-right: 10px;
}

.filter-block_option ul li>input[type='checkbox']+.berocket_label_widgets:before {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ececec;
  box-shadow: inset 0px 0px 7px 0px rgba(0, 0, 0, 0.05);
  border: none;
}

.filter-block_option ul li>input[type='checkbox']:checked+.berocket_label_widgets:before {
  content: '' !important;
  background-image: url(assets/img/check-mark--green.svg);
  background-size: 60%;
  background-repeat: no-repeat;
  background-position: center center;
  width: 12px;
  height: 12px;
}

.berocket_aapf_widget {
  transform: none;
}

.filter-block_option ul li>label:hover {
  background: transparent;
  color: var(--color-primary);
}

.filter-block_option ul li>label {
  display: flex;
  align-items: center;
  font-family: 'Gilroy-Regular';
  cursor: pointer;
}

.filter-block_option ul li>input:checked+label {
  background: transparent;
  color: var(--color-primary);
  font-size: 12px;
  line-height: 100%;
}

.filter-block_options .berocket_aapf_widget li.slider div.slide {
  margin-left: 9px;
}

.filter-block_options .berocket_aapf_widget .left,
.filter-block_options .berocket_aapf_widget .right {
  transform: scale(1, -1);
  height: auto !important;
  padding-top: 15px;
}

.filter-block_options .bapf_slidr input {
  border: 1px solid rgba(196, 196, 196, 0.17);
  border-radius: 5px;
  color: var(--color-primary);
  font-size: 11px;
  letter-spacing: 0.22px;
  padding: 9px;
  font-family: 'Gilroy-Regular';
  font-style: normal;
  width: 80%;
}

.filter-block_options .bapf_slidr input:focus {
  outline: none;
  box-shadow: none;
}

.filter-block_extended {
  font-size: 11px;
  font-family: 'Gilroy-Bold';
  text-transform: uppercase;
  border-bottom: 1px dashed var(--color-primary);
  cursor: pointer;
  position: relative;
}

.filter-block_extended--active {
  color: var(--color-secondary);
  border-bottom: 1px dashed var(--color-secondary);
}

.filter-block_extended:hover {
  opacity: 0.6;
}

.filter-block_options .ui-slider .ui-state-default,
.filter-block_options .ui-slider .ui-widget-content .ui-state-default,
.filter-block_options .ui-slider .ui-widget-header .ui-state-default {
  border: none;
  color: var(--color-secondary);
  background-color: var(--color-secondary);
  outline: none;
  width: 9px;
  height: 9px;
  top: -2.5px;
}

.filter-block_options .ui-slider .ui-widget.ui-widget-content {
  border: none;
  height: 4px;
  background-color: #dfdfe2;
}

.bapf_slidr_main.ui-widget-content .ui-slider-range,
.berocket_filter_price_slider.ui-widget-content .ui-slider-range {
  border: none;
  height: 4px;
  background-color: #dfdfe2;
}

.bapf_slidr_jqrui .bapf_slidr_main {
  width: calc(100% - 12px);
  margin: 0 0 10px 8px;
}

.filter-block_options .berocket_filter_slider.ui-widget-content .ui-slider-range,
.filter-block_options .berocket_filter_price_slider.ui-widget-content .ui-slider-range {
  background-color: var(--color-secondary);
  opacity: 0.47;
}

.filter-block_extended:before {
  content: '';
  position: absolute;
  background-image: url(assets/img/subproduct-icon_settings.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  width: 16px;
  height: 16px;
  left: -29px;
  transform: rotate(-90deg);
}

.filter-block_extended--active:before {
  background-image: url(assets/img/subproduct-icon_settings--green.svg);
}

.btn-wrapper .btn-filter {
  width: 196px;
  height: 57px;
  font-size: 11px;
  letter-spacing: 0.5px;
}

.filter-block_option .select-wrapper {
  width: fit-content;
}

.filter-block_option .select-wrapper:before {
  right: 15px;
  z-index: 2;
}

.product-sort {
  display: flex;
}

.story {
  margin-top: 140px;
}

.story-slider {
  display: flex;
  margin-top: 125px;
  margin-right: -15px;
}

.story-slider_nav {
  width: 20%;
}

.story-slider_nav .slick-track {
  margin-top: -10px;
  margin-bottom: -10px;
}

.story-slider_nav .slick-track .slick-slide:first-child {
  margin-top: 0px;
}

.story-slider_nav .slick-track .story-slide_nav-number {
  height: 36px;
  margin-top: 10px;
  margin-bottom: 10px;
}

.story-slider_nav .slick-track .slick-current .story-slide_nav-number {
  width: 154px;
  background-color: #ffd870;
  height: 46px;
  font-family: 'Gilroy-Black';
  display: flex;
  justify-content: center;
  align-items: center;
  padding-left: 0px;
  border-radius: 30px;
  font-size: 22px;
}

.story-slider_nav .slick-track .slick-current .story-slide_nav-number:before {
  content: none;
}

.story-slide_nav-number {
  position: relative;
  font-family: 'Gilroy-SemiBold';
  font-size: 20px;
  letter-spacing: 0.4px;
  line-height: 29.4px;
  padding-left: 30px;
  cursor: pointer;
}

.story-slide_nav-number:before {
  content: '';
  position: absolute;
  left: 0px;
  background-color: #ffb546;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  top: 10px;
}

.story-slider_content {
  width: 80%;
}

.story-slide_for {
  display: flex !important;
}

.story-slide_for .slider-arrow_prev,
.story-slide_for .slider-arrow_next {
  background: var(--color-secondary);
  width: 27px;
  height: 27px;
}

.story-slide_for .slider-arrow_prev:before,
.story-slide_for .slider-arrow_next:before {
  background: url(assets/img/arrow-about.svg);
  width: 6px;
  height: 8px;
  background-position: center center;
  background-size: cover;
}

.story-slide_for .slider-arrow_prev:before {
  transform: scale(-1, 1);
}

.story-slide_for .slider-arrow_next:before {
  transform: scale(1, -1);
}

.story-slide_for-column {
  width: 50%;
}

.story-slide_for .story-slide_for-column:last-child {
  padding-left: 30px;
}

.story-slide_number-wrapper {
  display: flex;
  justify-content: center;
}

.story_slide-number {
  font-size: 27px;
  letter-spacing: 0.54px;
  color: #484848;
  font-family: 'Gilroy-Black';
  text-align: center;
  line-height: 29.4px;
  position: relative;
  display: inline-flex;
}

.story-subslide {
  display: flex !important;
  padding-right: 15px;
}

.story-subslide_img {
  width: 100%;
  user-select: none;
  max-height: 275px;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  border-radius: 10px;
}

.story-slide_dsc {
  font-size: 20px;
  line-height: 28px;
  letter-spacing: 0.4px;
  margin-left: 50px;
  margin-top: 60px;
}

.story-slide_number-prev,
.story-slide_number-next {
  position: absolute;
  top: 0px;
  width: 20px;
  height: 29px;
  background-image: url(assets/img/arrow-slider.svg);
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 1;
  background-color: initial;
  border: none;
  outline: none;
  cursor: pointer;
}

.story-slide_number-prev {
  left: -50px;
  transform: scale(-1, 1);
}

.story-slide_number-next {
  right: -50px;
}

.story-subslider .slider-arrow_next {
  right: 0px;
}

.company {
  margin-top: 165px;
  position: relative;
}

.company-block {
  margin-top: 120px;
  display: flex;
}

.company-block_left {
  width: 60%;
  padding-right: 30px;
}

.company-second_title {
  font-size: 30px;
  line-height: 40px;
  font-family: 'Gilroy-ExtraBold';
  letter-spacing: 0.6px;
}

.company-dsc {
  font-size: 19px;
  line-height: 28px;
  letter-spacing: 0.38px;
  margin-top: 40px;
}

.company-dsc+.company-dsc {
  margin-top: 25px;
}

.company-block_right {
  width: 40%;
  margin-top: 10px;
}

.company-slide {
  max-height: 280px;
  border-radius: 8px;
}

.company-slide_img {
  width: 100%;
  object-fit: cover;
  object-position: center center;
  border-radius: 8px;
  max-height: 280px;
}

.company-slider_thumbnail {
  margin-top: 10px;
}

.company-slider_thumbnail .slick-list {
  margin: 0 -6px;
}

.company-slide_thumbnail {
  cursor: pointer;
  position: relative;
  margin: 0 5px;
}

.slick-current.company-slide_thumbnail:before {
  content: none;
}

.company-slide_thumbnail:before {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  background-color: rgba(62, 62, 62, 0.73);
  border-radius: 8px;
}

.company-slide_thumbnail_img {
  border-radius: 8px !important;
  max-height: 80px !important;
  object-fit: cover;
  object-position: center center;
}

.company-slide_img {
  width: 100%;
}

.second-company_block,
.third-company_block {
  margin-top: 120px;
  position: relative;
  display: flex;
}

.third-company_block .company-block_right img {
  max-height: 364px;
  border-radius: 8px;
  box-shadow: 0px 1px 102.46px 6.54px rgba(33, 33, 33, 0.07);
  user-select: none;
}

.second-company_block .company-block_right {
  width: 50%;
}

.second-company_block .company-block_left {
  position: relative;
  width: 50%;
}

.second-company_block .company-block_left img {
  position: absolute;
  width: auto;
  max-width: 711px;
  max-height: 381px;
  left: -34%;
  user-select: none;
}

.fourth-company_block {
  margin-top: 120px;
  position: relative;
  display: flex;
  flex-direction: column;
}

.branches {
  margin-top: 165px;
  position: relative;
}

.branch-info_wrapper {
  margin-top: 100px;
  display: flex;
}

.branch-info {
  width: 75%;
}

.branch-city {
  font-size: 30px;
  line-height: 40px;
  letter-spacing: 0.6px;
  font-family: 'Gilroy-ExtraBold';
}

.branch-contacts {
  margin-top: 60px;
  display: inline-flex;
  flex-direction: column;
}

.branch-contact_address {
  font-size: 20px;
  letter-spacing: 0.4px;
  position: relative;
  padding-left: 35px;
}

.branch-contact_address:before {
  content: '';
  position: absolute;
  background: url(assets/img/icon-maps--green.svg);
  background-position: center center;
  width: 23px;
  height: 30px;
  background-repeat: no-repeat;
  background-size: contain;
  left: 0px;
}

.branch-contact_number {
  position: relative;
  margin-top: 25px;
  font-size: 27px;
  line-height: 34px;
  letter-spacing: 0.54px;
  font-family: 'Gilroy-ExtraBold';
  padding-left: 35px;
}

.branch-contact_number:before {
  background: url(assets/img/icon-call.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  width: 22px;
  height: 22px;
  position: absolute;
  left: 0px;
  top: 50%;
  transform: translateY(-50%);
  content: '';
}

.branch-contact_wrapper {
  margin-top: 40px;
}

.branch-contact_number-btn .btn {
  width: 183px;
  height: 57px;
  font-size: 13px;
  letter-spacing: 0.65px;
}

.branch-contact_number-btn .btn:after {
  background: url(assets/img/btn-call.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  width: 14px;
  height: 14px;
  position: relative;
  margin-left: 15px;
  content: '';
}

.branch-contact_email {
  font-size: 14px;
  line-height: 32px;
  letter-spacing: 0.7px;
  color: var(--color-secondary);
  position: relative;
  margin-left: 65px;
  padding-bottom: 5px;
  border-bottom: 1px dashed var(--color-secondary);
}

.branch-contact_email:before {
  background: url(assets/img/icon-writing.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  width: 19px;
  height: 22px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -30px;
  content: '';
}

.branch-contact_email:hover {
  color: var(--color-secondary);
  opacity: 0.6;
}

.branch-dsc {
  font-size: 19px;
  line-height: 28px;
  letter-spacing: 0.38px;
  white-space: nowrap;
  margin-top: 40px;
}

.branch-slider_wrapper {
  width: 40%;
}

.branch-slider {
  margin-top: 10px;
}

.branch-slide_img {
  width: 100%;
  object-fit: cover;
  object-position: center center;
  border-radius: 8px;
  max-height: 280px;
  height: 281px;
  user-select: none;
}

.branch-slider_thumbnail {
  margin-top: 10px;
}

.branch-slider_thumbnail .slick-list {
  margin: 0 -6px;
}

.branch-slide_thumbnail {
  cursor: pointer;
  margin: 0 5px;
  position: relative;
}

.branch-slide_thumbnail:before {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  background-color: rgba(62, 62, 62, 0.73);
  border-radius: 8px;
  z-index: 1;
}

.slick-current.branch-slide_thumbnail:before {
  content: none;
}

.branch-slide_thumbnail-img {
  border-radius: 8px;
  max-height: 80px;
  object-fit: cover;
  object-position: center center;
  cursor: pointer;
  position: relative;
  user-select: none;
  width: 100%;
  height: 80px;
}

.branch-image_wrapper {
  border-radius: 8px;
  box-shadow: 0px 1px 102.46px 6.54px rgba(33, 33, 33, 0.07);
}

.branch-img {
  border-radius: 8px;
}

.branch-info_wrapper:nth-child(odd) {
  flex-direction: row-reverse;
}

.branch-info_wrapper:nth-child(odd) .branch-info {
  margin-left: 90px;
}

.location {
  margin-top: 225px;
}

.location-map_wrapper {
  margin-top: 100px;
}

.location-map {
  border-radius: 8px;
  max-height: 635px;
  height: 635px;
  width: 100%;
}

.team {
  margin-top: 240px;
}

.team-carousel {
  margin-top: 110px;
}

.team-slide figure {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.team-slide img {
  max-width: 175px;
  max-height: 175px;
}

.team-carousel .slick-slide {
  margin: 0 45px;
}

.team-carousel .slick-list {
  margin: 0 -45px;
}

.team-slide figure figcaption {
  margin-top: 40px;
}

.team-slide .team-name {
  font-size: 20px;
  line-height: 100%;
  font-family: 'Gilroy-ExtraBold';
  letter-spacing: 0.4px;
  text-align: center;
}

.team-slide .team-position {
  opacity: 0.8;
  font-size: 14px;
  letter-spacing: 0.28px;
  margin-top: 20px;
  text-align: center;
}

.default-arrow_prev,
.default-arrow_next {
  background: url(assets/img/arrow-slider.svg);
  background-size: 29px 47px;
  background-repeat: no-repeat;
  width: 29px;
  height: 47px;
  outline: none;
  background-color: inherit;
  border: none;
}

.default-arrow_prev {
  transform: scale(-1, 1);
}

.team-carousel .default-arrow_prev,
.team-carousel .default-arrow_next {
  position: absolute;
  top: 60px;
}

.team-carousel .default-arrow_prev {
  left: -80px;
}

.team-carousel .default-arrow_next.slick-disabled,
.team-carousel .default-arrow_prev.slick-disabled {
  opacity: 0.3;
}

.team-carousel .default-arrow_next {
  right: -80px;
}

.partners {
  margin-top: 180px;
  overflow: hidden;
}

.partners-carousel {
  margin-top: 115px;
  margin-bottom: 110px;
}

.partners-carousel .slick-slide {
  margin: 0 12.5px;
}

.partners-carousel .slick-list {
  overflow: unset;
}

.partners-carousel .slick-slide {
  opacity: 0;
  transition: opacity 0.5s ease;
  visibility: hidden;
}

.partners-carousel .slick-slide.slick-active {
  opacity: 1;
  visibility: visible;
}

.partners-carousel .slick-slide:last-child img {
  width: 119px;
}

.partners-carousel .default-arrow_prev {
  position: absolute;
  left: -80px;
  z-index: 1;
  top: 70px;
}

.partners-carousel .default-arrow_next {
  position: absolute;
  right: -70px;
  z-index: 1;
  top: 70px;
}

.partners-carousel .default-arrow_prev.slick-disabled,
.partners-carousel .default-arrow_next.slick-disabled {
  opacity: 0.3;
}

.partners-card {
  max-width: 245px;
  width: 100%;
  height: 190px;
}

.partners-card:focus {
  outline: none;
}

.partners-card_wrapper-img {
  min-height: 100px;
  max-height: 150px;
  display: flex;
  height: 150px;
  justify-content: center;
}

.partners-card_logo-img {
  object-fit: contain;
  width: 80%;
  object-position: center center;
}

.partners-card_modal-link {
  font-size: 14px;
  font-family: 'Gilroy-Bold';
  letter-spacing: 0.7px;
  text-align: center;
  text-transform: uppercase;
  position: relative;
  transition: none;
}

.partners-card_modal-link:after {
  content: '';
  position: absolute;
  background: url(assets/img/right-arrow--black.svg);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  width: 5px;
  height: 8px;
  top: 50%;
  right: 60px;
  transform: translateY(-50%);
}

.partners-card:hover .partners-card_modal-link {
  color: var(--color-secondary);
}

.partners-card_modal-link:focus {
  outline: none;
}

.partners-card:hover .partners-card_modal-link:after {
  background: url(assets/img/arrow-right--green.svg);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  width: 5px;
  height: 8px;
}

.partners-modal {
  padding: 0px;
  border-radius: 15px;
  width: 1140px;
  padding-left: 65px;
  padding-bottom: 80px;
  padding-right: 50px;
  padding-top: 105px;
  position: relative;
  overflow: unset;
  display: none;
}

.partners-modal_info-logo_img {
  position: absolute;
  left: 0px;
  top: 18px;
  width: 372px;
  height: 212px;
}

.partners-modal_form-close {
  position: absolute;
  top: -35px;
  right: -50px;
  width: 32px;
  cursor: pointer;
  height: 32px;
}

.partners-modal_info-row {
  display: flex;
  align-items: baseline;
}

.partners-modal_info-row+.partners-modal_info-row {
  margin-top: 30px;
}

.partners-modal_content {
  display: flex;
}

.partners-modal_info-text {
  font-size: 21px;
  line-height: 100%;
  font-family: 'Gilroy-Bold';
  letter-spacing: 0.42px;
}

.partners-modal_info-value {
  margin-left: 15px;
  font-size: 19px;
  letter-spacing: 0.38px;
}

.partners-modal_info {
  width: 60%;
  margin-top: 150px;
}

.partners-modal_slider-wrapper {
  width: 40%;
  margin-top: 70px;
}

.partners-modal_slide {
  border-radius: 8px;
  box-shadow: 0px 1px 102.46px 6.54px rgba(33, 33, 33, 0.07);
}

.partners-modal_slide-img {
  object-fit: cover;
  object-position: center center;
  border-radius: 8px;
  max-height: 310px;
  height: 100%;
  width: 100%;
}

.partners-modal_slider-thumbnail {
  margin-top: 10px;
}

.partners-modal_slider-thumbnail .slick-list {
  margin: 0 -6px;
}

.partners-modal_slide-thumbnail {
  border-radius: 8px;
  margin: 0 6px;
  position: relative;
  cursor: pointer;
  height: 75px;
}

.partners-modal_slide-thumbnail:before {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  background-color: rgba(62, 62, 62, 0.73);
  border-radius: 8px;
}

.partners-modal_slide-thumbnail.slick-current:before {
  content: none;
}

.partners-modal_slide-thumbnail_img {
  border-radius: 8px;
  width: 100%;
  height: 100%;
  max-height: 75px;
}

.partners-modal_2 .partners-modal_info-logo_img {
  width: 182px;
  height: 183px;
  left: 64px;
  top: 18px;
}

.partners-modal_6 .partners-modal_info-logo_img {
  width: 188px;
  height: 118px;
  left: 65px;
  top: 70px;
}

.partners-modal_5 .partners-modal_info {
  width: 50%;
}

.partners-modal_5 .partners-modal_slider-wrapper {
  width: 50%;
}

.partners-modal_6 .partners-modal_info {
  width: 50%;
}

.partners-modal_6 .partners-modal_slider-wrapper {
  width: 50%;
}

.partners-modal_2 .partners-modal_info {
  width: 50%;
}

.partners-modal_2 .partners-modal_slider-wrapper {
  width: 50%;
}

.site-main .location {
  margin-top: 0px;
}

.page-main .certificates {
  padding-bottom: 0px;
  margin-top: 120px;
}

.partners-modal_3 .partners-modal_info {
  width: 50%;
}

.partners-modal_3 .partners-modal_image-wrapper {
  width: 50%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.partners-modal_video {
  position: relative;
  max-width: 481px;
  max-height: 310px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  box-shadow: 0px 1px 102.46px 6.54px rgba(33, 33, 33, 0.07);
  margin-top: 185px;
}

.partners-modal_video-wrapper video {
  max-width: 481px;
  max-height: 310px;
  border-radius: 8px;
  height: 310px;
  object-fit: cover;
}

.partners-modal_video-wrapper video:focus {
  outline: none;
}

.partners-modal_5 .partners-modal_info-logo_img {
  width: 269px;
  height: 73px;
  top: 87px;
  left: 60px;
}

.button-teaser {
  position: absolute;
  width: 115px;
  height: 115px;
  background: url(assets/img/play-button.svg);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  z-index: 1;
  cursor: pointer;
}

.partners-modal_3 .partners-modal_info-logo_img {
  width: 281px;
  height: 137px;
  top: 31px;
  left: 68px;
}

.partners-modal_image {
  border-radius: 8px;
  box-shadow: 0px 1px 102.46px 6.54px rgba(33, 33, 33, 0.07);
  max-width: 481px;
  max-height: 310px;
}

.partners-modal_4 .partners-modal_info-logo_img {
  width: 202px;
  height: 203px;
  top: 11px;
  left: 32px;
}

.partners-modal_4 .partners-modal_info {
  top: 105px;
}

.partners-modal_4 .partners-modal_info-row:nth-child(3) .partners-modal_info-value {
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.32px;
}

.calc-page h1 {
  margin-top: 105px;
  font-size: 36px;
  text-transform: uppercase;
  text-align: center;
}

.quiz_wrapper {
  margin-top: 75px;
}

.quiz-block {
  box-shadow: 0px 5px 138.18px 8.82px rgba(33, 33, 33, 0.11);
  border-radius: 15px;
  display: flex;
  position: relative;
}

.quiz-block:before {
  content: '';
  position: absolute;
  border: 1px solid rgba(210, 210, 210, 0.5);
  border-radius: 10px;
  left: 6px;
  top: 6px;
  right: 6px;
  bottom: 6px;
  z-index: 1;
}

.quiz-block_left {
  width: 75%;
  z-index: 1;
  height: 785px;
}

.quiz-step_numbers {
  margin-top: 30px;
  text-align: center;
  font-size: 20px;
  letter-spacing: 0px;
  line-height: 100%;
}

.quiz-form {
  margin-top: 40px;
}

.quiz-form_block-wrapper {
  position: relative;
  height: 450px;
}

.quiz-form_block {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 1;
  -webkit-transition: opacity 1s;
  -moz-transition: opacity 1s;
  -o-transition: opacity 1s;
  transition: opacity 1s;
}

.showing {
  opacity: 1;
  z-index: 2;
}

.quiz-form_block:nth-child(3) .quiz-label_radio img,
.quiz-form_block:nth-child(4) .quiz-label_radio img {
  max-width: 168px;
  max-height: 107px;
  width: 100%;
  height: 100%;
}

.quiz-form_block:nth-child(3) .quiz-label_radio:before,
.quiz-form_block:nth-child(4) .quiz-label_radio:before {
  width: 31px;
  height: 31px;
  bottom: -18px;
}

.quiz-form_block:nth-child(3) .quiz-label_radio input[type='radio']+span:after,
.quiz-form_block:nth-child(4) .quiz-label_radio input[type='radio']+span:after {
  height: 21px;
  width: 21px;
  bottom: -6px;
  top: auto;
}

.quiz-form_block:nth-child(3) .quiz-form_choice,
.quiz-form_block:nth-child(4) .quiz-form_choice {
  margin-top: 140px;
  padding-left: 0px;
}

.quiz-form_block:nth-child(3) .quiz-text,
.quiz-form_block:nth-child(4) .quiz-text {
  font-size: 19px;
  line-height: 100%;
  color: var(--color-primary);
  margin-top: 20px;
}

.quiz-form_block:nth-child(3) .quiz-subtext,
.quiz-form_block:nth-child(4) .quiz-subtext {
  font-size: 12px;
  line-height: 19px;
  margin-top: 12px;
}

.quiz-form_block:nth-child(5) .quiz-label,
.quiz-form_block:nth-child(6) .quiz-label {
  width: 240px;
  flex-direction: row;
  margin: 0 auto;
  margin-top: 45px;
}

.quiz-form_block:nth-child(5) .quiz-label:first-child,
.quiz-form_block:nth-child(6) .quiz-label:first-child {
  margin-top: 0px;
}

.quiz-form_block:nth-child(5) .quiz-form_choice,
.quiz-form_block:nth-child(6) .quiz-form_choice {
  padding-left: 0px;
  flex-direction: column;
}

.quiz-form_block:nth-child(5) .quiz-input_radio--hidden,
.quiz-form_block:nth-child(6) .quiz-input_radio--hidden {
  display: none;
}

.quiz-form_choice .wpcf7-form-control-wrap {
  visibility: hidden;
  height: 0px;
  width: 0px;
}

.quiz-form_choice input[type='radio']+span:after {
  width: 20px;
  height: 20px;
}

.quiz-form_choice .radio-134 input[type='radio']+span:after,
.quiz-form_choice .radio-135 input[type='radio']+span:after {
  top: 0px;
  left: 19px;
}

.quiz-input_radio {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 40px;
  width: 40px;
  margin-right: 30px;
}

.quiz-input_radio:after {
  content: '';
  position: absolute;
}

.quiz-input_radio:before {
  content: '';
  position: absolute;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #ececec;
  box-shadow: inset 0px 0px 7px 0px rgba(0, 0, 0, 0.05);
}

.quiz-label .wpcf7-form-control-wrap+.quiz-input_radio:after {
  display: block;
  position: absolute;
  height: 20px;
  width: 20px;
  visibility: hidden;
  border-radius: 50%;
  background-image: -moz-linear-gradient(90deg,
      rgb(255, 158, 43) 0%,
      rgb(255, 240, 139) 100%);
  background-image: -webkit-linear-gradient(90deg,
      rgb(255, 158, 43) 0%,
      rgb(255, 240, 139) 100%);
  background-image: -ms-linear-gradient(90deg,
      rgb(255, 158, 43) 0%,
      rgb(255, 240, 139) 100%);
}

.quiz-label .wpcf7-form-control-wrap:focus+span:after {
  visibility: visible;
}

.quiz-label_radio .wpcf7-form-control-wrap {
  position: absolute;
  bottom: -12px;
  width: 34px;
  height: 34px;
}

.quiz-label_radio .wpcf7-list-item-label {
  visibility: hidden;
}

.quiz-label_radio .wpcf7-list-item input {
  display: none;
}

form .quiz-label_radio input[type='radio']+span:after {
  display: block;
  position: absolute;
  height: 14px;
  width: 14px;
  visibility: hidden;
  bottom: -2px;
  border-radius: 50%;
  background-image: -moz-linear-gradient(90deg,
      rgb(255, 158, 43) 0%,
      rgb(255, 240, 139) 100%);
  background-image: -webkit-linear-gradient(90deg,
      rgb(255, 158, 43) 0%,
      rgb(255, 240, 139) 100%);
  background-image: -ms-linear-gradient(90deg,
      rgb(255, 158, 43) 0%,
      rgb(255, 240, 139) 100%);
}

form .quiz-label_radio input[type='radio']:checked+span:after {
  visibility: visible;
}

form .quiz-label span.wpcf7-list-item {
  margin: 0px;
}

.quiz-input_container {
  display: flex;
  align-items: center;
}

.quiz-input_container img {
  width: 24px;
  height: 31px;
}

.quiz-form_block:nth-child(6) .quiz-input_container img {
  width: 15px;
  height: 27px;
}

.quiz-form_block:nth-child(6) .quiz-label:nth-child(2) .quiz-input_container img {
  width: 21px;
  height: 27px;
}

.quiz-input_text-delimiter {
  font-size: 23.7px;
  font-family: 'Gilroy-Medium';
  letter-spacing: 0px;
  color: var(--color-secondary);
  margin-left: 7px;
}

.quiz-input_text {
  font-family: 'Gilroy-ExtraBold';
  font-size: 24px;
  letter-spacing: 0px;
  color: var(--color-primary);
  margin-left: 15px;
}

.quiz-title {
  font-size: 36px;
  font-family: 'Gilroy-ExtraBold';
  letter-spacing: 0px;
  text-align: center;
  line-height: 50px;
  margin-top: 20px;
}

.quiz-title br {
  display: block;
}

.quiz-form_block:nth-child(1) .quiz-form_choice {
  margin-top: 60px;
}

.quiz-form_choice {
  display: flex;
  flex-wrap: wrap;
  margin-top: 100px;
  padding-left: 100px;
}

.quiz-form_block:nth-child(6) .quiz-form_choice {
  margin-top: 110px;
}

.quiz-label {
  cursor: pointer;
  width: calc(100% / 3);
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.quiz-label:nth-child(-n + 3) {
  margin-top: 0px;
}

.quiz-radio {
  display: none;
}

.quiz-label_radio {
  position: relative;
  display: flex;
  justify-content: center;
}

.quiz-label_radio:after {
  content: '';
  position: absolute;
}

.quiz-label_radio:before {
  content: '';
  position: absolute;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background-color: #ececec;
  bottom: -12px;
  box-sizing: content-box;
  border: 6px solid var(--color-white);
}

.quiz-label_radio img {
  max-width: 132px;
  max-height: 99px;
  border-radius: 10px;
}

.quiz-block_right {
  width: 25%;
  background: #82d082;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  position: relative;
  z-index: 1;
}

.quiz-block_right:after {
  content: '';
  position: absolute;
  background: url(assets/img/quiz-left_quote.png);
  background-size: cover;
  background-repeat: no-repeat;
  width: 96px;
  height: 82px;
  right: 23px;
  top: 23px;
}

.quiz-block_right-title {
  margin-top: 50px;
  margin-left: 37px;
  font-size: 24px;
  line-height: 31px;
  letter-spacing: 0.48px;
  color: #3f3f3f;
  font-family: 'Gilroy-Black';
  z-index: 2;
  position: relative;
}

.quiz-label br {
  display: block;
}

.quiz-text {
  margin-top: 15px;
  font-size: 15px;
  font-family: 'Gilroy-ExtraBold';
  letter-spacing: 0px;
  line-height: 24px;
  text-align: center;
}

.quiz-subtext {
  font-size: 12px;
  line-height: 20px;
  letter-spacing: 0px;
  text-align: center;
}

.quiz-form_block:nth-child(7) .quiz-title {
  margin-top: 20px;
}

.quiz-form_block:nth-child(7) .quiz-subtitle {
  font-size: 20px;
  line-height: 30px;
  letter-spacing: 0px;
  color: var(--color-primary);
  margin-top: 40px;
  text-align: center;
}

.quiz-form_block:nth-child(7) .quiz-subtitle br {
  display: block;
}

.quiz-form_block:nth-child(7) .quiz-block_form-wrapper {
  margin-left: 75px;
}

.quiz-form_block:nth-child(7) .quiz-block_info {
  margin-top: 60px;
  display: flex;
}

.quiz-form_block:nth-child(7) .quiz-block_info-img {
  width: 74px;
  height: 74px;
  margin-right: 37px;
  user-select: none;
}

.quiz-form_block:nth-child(7) .quiz-block_info-text {
  font-size: 20px;
  line-height: 30px;
  color: var(--color-primary);
  letter-spacing: 0px;
}

.quiz-form_block:nth-child(7) .quiz-block_info-text br {
  display: block;
}

.quiz-block_container {
  display: flex;
  margin-top: 70px;
}

.quiz-block_form {
  max-width: 350px;
  width: 100%;
}

.quiz-block_form fieldset {
  margin-top: 15px;
}

.quiz-block_form fieldset+fieldset {
  margin-top: 30px;
}

.quiz-form_nav {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 60px;
  z-index: 2;
  position: relative;
}

.quiz-nav_prev {
  margin-right: 60px;
  font-size: 20px;
  font-family: 'Gilroy-Regular';
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  position: relative;
  border: none;
  background: none;
}

.quiz-nav_prev:focus {
  outline: none;
}

.quiz-nav_prev:disabled {
  color: initial;
}

.quiz-nav_prev:before {
  content: '';
  position: absolute;
  left: -22px;
  background-image: url(assets/img/arrow-right--black.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  width: 7px;
  height: 12px;
  top: 50%;
  right: 20%;
  transform: translateY(-50%) scale(-1, 1);
}

.quiz-nav_prev--disable {
  opacity: 0.6;
}

.quiz-nav_next {
  cursor: pointer;
}

.quiz-nav_next.btn-wrapper {
  width: auto;
  margin-top: 0px;
}

.quiz-nav_next .btn {
  width: 254px;
  height: 82px;
}

.quiz-nav_next .btn span {
  margin-left: 8px;
}

.quiz-nav_next .btn:after {
  position: relative;
  content: '';
  background-image: url(assets/img/arrow-right--black.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  width: 7px;
  height: 12px;
  margin-left: 18px;
}

.quiz-form_steps {
  margin: 50px auto;
  display: flex;
  max-width: 540px;
  justify-content: space-between;
}

.quiz-block_img-wrapper {
  margin-left: 60px;
}

.quiz-block_img-wrapper img {
  user-select: none;
  width: 100%;
  max-height: 296px;
  max-width: 309px;
  position: relative;
  top: -51px;
}

.btn-subtext {
  font-size: 13px;
  letter-spacing: 0.65px;
}

.quiz-block_form .btn {
  display: flex;
  flex-direction: column;
}

.quiz-block_form .btn-wrapper:after {
  position: absolute;
  content: '';
  width: 95px;
  height: 77px;
  background-image: url(assets/img/form-calc.png);
  background-size: cover;
  background-repeat: no-repeat;
  bottom: -9px;
  right: -50px;
}

.quiz-block_form fieldset:first-child {
  margin-top: 0px;
}

.quiz-block_form input {
  border: none;
  padding-top: 25px;
  padding-bottom: 25px;
  padding-left: 30px;
  background-color: rgb(248, 248, 248);
  box-shadow: inset 0px 0px 33.95px 1.05px rgba(0, 0, 0, 0.06);
  border-radius: 10px;
  width: 100%;
  font-size: 18px;
}

.quiz-block_form input:focus {
  outline: none;
}

.quiz-block_form label {
  display: flex;
  align-items: center;
  padding-left: 30px;
}

.quiz-form_step {
  width: 60px;
  height: 7px;
  background-color: #ececec;
  border-radius: 10px;
}

.quiz-form_step--active {
  background-color: #ffe47d;
}

.quiz-block_gifts {
  display: flex;
  flex-direction: column;
  margin-top: 50px;
}

.quiz-block_gift:first-child {
  margin-top: 0px;
}

.quiz-block_gift {
  margin-top: 40px;
}

.quiz-block_gift:nth-child(2) .quiz-block_gift-wrapper img {
  max-width: 106px;
  max-height: 127px;
}

.quiz-block_gift-wrapper {
  display: flex;
  justify-content: center;
  position: relative;
  width: 105px;
  margin: 0 auto;
}

.quiz-block_gift-wrapper:after {
  position: absolute;
  content: '';
  background-image: url(assets/img/quiz-open_gift.png);
  background-size: cover;
  background-repeat: no-repeat;
  width: 33px;
  height: 29px;
  right: -14px;
  bottom: 14px;
}

.quiz-block_gift-wrapper:before {
  position: absolute;
  content: '';
  background: rgba(255, 255, 255, 0.72);
  width: 103px;
  height: 103px;
  bottom: 0px;
  z-index: 0;
  border-radius: 50%;
}

.quiz-block_gift--lock .quiz-block_gift-wrapper img,
.quiz-block_gift--lock .quiz-block_gift-price {
  display: none;
}

.quiz-block_gift--lock .quiz-block_gift-text {
  display: none;
}

.quiz-block_gift-steps {
  display: none;
}

.quiz-block_gift--lock .quiz-block_gift-steps {
  display: block;
}

.quiz-block_gift-wrapper img {
  max-height: 125px;
  max-width: 87px;
  object-fit: cover;
  position: relative;
  user-select: none;
}

.quiz-block_gift-price {
  font-size: 13px;
  position: absolute;
  text-transform: uppercase;
  line-height: 28px;
  border-radius: 8px;
  letter-spacing: 0.26px;
  font-family: 'Gilroy-Bold';
  text-decoration: line-through;
  bottom: 0px;
  left: -35px;
  background: #ffd46b;
  width: 56px;
  height: 28px;
  text-align: center;
}

.quiz-block_gift-text {
  margin-top: 20px;
  font-size: 14px;
  line-height: 19px;
  letter-spacing: 0.28px;
  font-family: 'Gilroy-ExtraBold';
  text-align: center;
}

.quiz-block_gift-subtitle {
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.28px;
  color: #474747;
  text-align: center;
}

.quiz-block_gift--lock .quiz-block_gift-wrapper {
  height: 105px;
  align-items: center;
}

.quiz-block_gift--lock .quiz-block_gift-wrapper:after {
  background: url(assets/img/gift-locked.png);
  background-size: cover;
  background-repeat: no-repeat;
  width: 27px;
  height: 33px;
  right: auto;
  bottom: auto;
}

.quiz-form_count-humans {
  display: flex;
  justify-content: center;
  margin-top: 70px;
}

.quiz-form_count-input {
  width: 125px;
  height: 63px;
  text-align: center;
  border: none;
  box-shadow: inset 0px 0px 33.95px 1.05px rgba(0, 0, 0, 0.06);
  color: var(--color-primary);
  background: #f8f8f8;
  border-radius: 10px;
  font-family: 'Gilroy-ExtraBold';
  font-size: 30px;
}

.quiz-form_count-text {
  margin-left: 30px;
  font-size: 24px;
  color: var(--color-primary);
  line-height: 63px;
}

.quiz-form_count-input::placeholder {
  color: var(--color-primary);
}

.quiz-form_count-input:focus {
  outline: none;
}

.quiz-form_count {
  margin-top: 125px;
  display: flex;
  align-items: baseline;
  justify-content: center;
}

.quiz-form_range-wrapper {
  display: flex;
  width: 539px;
}

.quiz-form_range-wrapper .wpcf7-form-control-wrap {
  width: 100%;
}

.quiz-form_range[type='range'] {
  -webkit-appearance: none;
  width: 100%;
}

.quiz-form_range[type='range']:focus {
  outline: none;
}

.quiz-form_count-first {
  margin-right: 20px;
}

.quiz-form_count-last {
  margin-left: 20px;
}

.quiz-form_count-first,
.quiz-form_count-last {
  font-size: 30px;
  line-height: 55px;
  font-family: 'Gilroy-ExtraBold';
  color: var(--color-primary);
}

input[type='range']::-webkit-slider-runnable-track {
  width: 100%;
  height: 8.4px;
  cursor: pointer;
  background: #d1d1d1;
  border-radius: 5.5px;
}

input[type='range']::-webkit-slider-thumb {
  height: 31px;
  width: 23px;
  border-radius: 5px;
  background: var(--color-secondary);
  cursor: pointer;
  -webkit-appearance: none;
  margin-top: -14px;
  position: relative;
}

input[type='range']:focus::-webkit-slider-runnable-track {
  background: #d1d1d1;
}

input[type='range']::-moz-range-track {
  width: 100%;
  height: 8.4px;
  cursor: pointer;
  box-shadow: 1px 1px 1px #000000, 0px 0px 1px #0d0d0d;
  background: #3071a9;
  border-radius: 1.3px;
  border: 0.2px solid #010101;
}

input[type='range']::-moz-range-thumb {
  box-shadow: 1px 1px 1px #000000, 0px 0px 1px #0d0d0d;
  border: 1px solid #000000;
  height: 36px;
  width: 16px;
  border-radius: 3px;
  background: #ffffff;
  cursor: pointer;
}

input[type='range']::-ms-track {
  width: 100%;
  height: 8.4px;
  cursor: pointer;
  background: transparent;
  border-color: transparent;
  border-width: 16px 0;
  color: transparent;
}

input[type='range']::-ms-fill-lower {
  background: #2a6495;
  border: 0.2px solid #010101;
  border-radius: 2.6px;
  box-shadow: 1px 1px 1px #000000, 0px 0px 1px #0d0d0d;
}

input[type='range']::-ms-fill-upper {
  background: #3071a9;
  border: 0.2px solid #010101;
  border-radius: 2.6px;
  box-shadow: 1px 1px 1px #000000, 0px 0px 1px #0d0d0d;
}

input[type='range']::-ms-thumb {
  box-shadow: 1px 1px 1px #000000, 0px 0px 1px #0d0d0d;
  border: 1px solid #000000;
  height: 36px;
  width: 16px;
  border-radius: 3px;
  background: #ffffff;
  cursor: pointer;
}

input[type='range']:focus::-ms-fill-lower {
  background: #3071a9;
}

input[type='range']:focus::-ms-fill-upper {
  background: #367ebd;
}

.quiz-block_form-success {
  display: none;
}

.quiz-block_left.quiz-block_left-success {
  width: 100%;
}

.quiz-block_form-success {
  flex-direction: column;
  max-width: 835px;
  align-items: center;
  margin: 0 auto;
  padding-top: 80px;
}

.quiz-block_form-success .quiz-block_title {
  font-size: 36px;
  line-height: 100%;
  letter-spacing: 1.8px;
  font-family: 'Gilroy-Extrabold';
}

.quiz-block_form-success .quiz-block_subtitle {
  font-size: 20px;
  line-height: 30px;
  letter-spacing: 0px;
  margin-top: 40px;
}

.quiz-block_form-success .quiz-block_gifts-title {
  font-size: 30px;
  letter-spacing: 0px;
  font-family: 'Gilroy-ExtraBold';
}

.quiz-block_form-success .quiz-block_gifts {
  margin-top: 0px;
}

.quiz-block_form-success .quiz-block_success-gifts {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
  margin-top: 110px;
}

.quiz-block_form-success .quiz-block_gifts-container {
  display: flex;
  margin-top: 80px;
}

.quiz-block_gift-success {
  display: flex;
  flex-direction: column;
  flex: 1 0;
  align-items: center;
}

.quiz-block_gift-success-wrapper {
  display: flex;
  flex-direction: column;
  position: relative;
  align-items: center;
  justify-content: flex-end;
  height: 167px;
}

.quiz-block_gift-success:nth-child(1) img {
  width: 115px;
  height: 166px;
}

.quiz-block_gift-success:nth-child(2) img {
  width: 140px;
  height: 167px;
}

.quiz-block_gift-success:nth-child(3) img {
  width: 109px;
  height: 119px;
}

.quiz-block_gift-success:nth-child(3) .quiz-block_gift-success-wrapper:after {
  right: -5px;
  bottom: 0px;
}

.quiz-block_gift-success:nth-child(1) .quiz-block_gift-success-wrapper {
  width: 115px;
}

.quiz-block_gift-success-price {
  font-size: 17px;
  position: absolute;
  text-transform: uppercase;
  line-height: 28px;
  border-radius: 8px;
  letter-spacing: 0.34px;
  font-family: 'Gilroy-Bold';
  text-decoration: line-through;
  bottom: 0px;
  left: -35px;
  background: #ffd46b;
  width: 74px;
  height: 37px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.quiz-block_subtitle br {
  display: block;
}

.quiz-block_gift-success-wrapper:after {
  position: absolute;
  content: '';
  background-image: url(assets/img/quiz-open_gift.png);
  background-size: cover;
  background-repeat: no-repeat;
  width: 33px;
  height: 29px;
  right: -14px;
  bottom: 14px;
}

.quiz-block_gift-success-text {
  font-size: 18px;
  font-family: 'Gilroy-ExtraBold';
  letter-spacing: 0.36px;
  text-align: center;
  margin-top: 20px;
}

.page-product {
  background: #fafafa;
  overflow-x: hidden;
  overflow-y: hidden;
}

.product-content {
  display: flex;
  margin-top: 45px;
}

.product-slider_container {
  width: 100%;
  max-width: 628px;
}

.product-slider {
  box-shadow: 0px 1px 15px 1px rgba(33, 33, 33, 0.07);
  height: calc(100% - 112px);
  border-radius: 8px;
  background: #fff;
  position: relative;
}

.product-slider .slick-list,
.product-slider .slick-track {
  height: 100%;
}

.product-slider .slick-slide {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-slide {
  border-radius: 8px;
}

.product-slider .slick-slide img {
  width: 100%;
  object-fit: cover;
  height: 100%;
  border-radius: 8px;
}

.product-slider_thumbnail {
  margin-top: 15px;
}

.product-slider_thumbnail .slick-list {
  margin: 0 -7.5px;
}

.product-slider_thumbnail .woocommerce-product-gallery__image {
  margin: 0 7.5px;
  cursor: pointer;
  position: relative;
}

.product-slider_thumbnail .woocommerce-product-gallery__image:before {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  background-color: rgba(62, 62, 62, 0.73);
  border-radius: 8px;
}

.product-slider_thumbnail .slick-current.woocommerce-product-gallery__image:before {
  content: none;
}

.product-slider_thumbnail img {
  width: 100%;
  height: 98px;
  border-radius: 8px;
  object-fit: cover;
  /* box-shadow: 0px 1px 40.42px 2.58px rgba(33, 33, 33, 0.18); */
}

.product-info_wrapper {
  margin-left: 45px;
  flex-grow: 1;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0px 5px 15px 1px rgba(33, 33, 33, 0.11);
  padding-top: 30px;
  position: relative;
  padding-bottom: 25px;
}

.product-info_wrapper:before {
  content: '';
  position: absolute;
  border: 1px solid rgba(0, 0, 0, 0.07);
  right: 6px;
  left: 6px;
  top: 6px;
  bottom: 6px;
  border-radius: 10px;
}

.product-info_container {
  max-width: 377px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-bottom: 20px;
}

.product-block_outofstock {
  font-size: 26px;
  color: #dd0000;
  font-family: 'Gilroy-Medium';
  letter-spacing: 0.4px;
}

.product-block_require {
  font-size: 26px;
  letter-spacing: 0.4px;
  color: var(--color-primary);
  font-family: 'Gilroy-Medium';
}

.page-product .product-block_info {
  padding-left: 0px;
  padding-top: 0px;
}

.product-slider_thumbnail .slider-arrow_prev,
.product-slider_thumbnail .slider-arrow_next {
  background: #41bb41;
  width: 39px;
  height: 39px;
}

.product-slider_thumbnail .slider-arrow_prev:before,
.product-slider_thumbnail .slider-arrow_next:before {
  width: 8px;
  height: 12px;
  background: url(assets/img/card-arrow_white.png);
  background-size: cover;
}

.product-slider_thumbnail .slider-arrow_prev:before {
  transform: scale(-1, 1);
  left: 35%;
}

.product-slider_thumbnail .slider-arrow_next:before {
  transform: none;
  right: 35%;
}

.product-slider_thumbnail .slider-arrow_prev {
  left: -16px;
}

.product-slider_thumbnail .slider-arrow_next {
  right: -16px;
}

.product-info_container .product-block_info,
.product-info_container .product-block_row {
  position: relative;
}

.page-work .product-block_name,
.page-product .product-block_name {
  font-size: 22px;
  font-weight: 500;
  font-family: 'Gilroy-Regular';
  line-height: 32px;
  letter-spacing: 0.44px;
}

.page-work .product-block_name--bold,
.page-product .product-block_name--bold {
  font-size: 27px;
}

.page-work .product-info_size,
.page-product .product-info_size {
  margin-top: 24px;
}

.page-work .product-info_weight,
.page-work .product-info_generate,
.page-work .product-info_users,
.page-product .product-info_weight,
.page-product .product-info_generate,
.page-product .product-info_users {
  margin-top: 15px;
}

.page-work .product-block_row,
.page-product .product-block_row {
  display: flex;
  align-items: baseline;
}

.page-work .product-block_row form,
.page-product .product-block_row form {
  width: 100%;
  display: flex;
}

.work-product form .btn-wrapper,
.page-product form .btn-wrapper {
  align-self: flex-start;
  margin-top: 0px;
}

.page-work .product-block_card-btn,
.page-product .product-block_card-btn {
  font-size: 14px;
  padding-left: 37px;
  padding-right: 35px;
}

.page-work .product-block_price,
.page-product .product-block_price {
  font-size: 27px;
  letter-spacing: 0.54px;
  padding-left: 0px;
  margin-top: 0px;
}

.page-work .product-block_card-btn,
.work-product .btn-wrapper,
.page-product .product-block_card-btn,
.page-product .btn-wrapper {
  width: 183px;
  height: 57px;
}

.page-work .product-block_count-label,
.page-product .product-block_count-label {
  display: flex;
}

.page-work .product-block_count-text,
.page-product .product-block_count-text {
  font-size: 15px;
  letter-spacing: 0.3px;
}

.page-work .quantity input,
.page-product .quantity input {
  width: 39px;
  height: 24px;
  border-radius: 5px;
  background: #dfdfe2;
  border: none;
  padding-left: 12px;
  font-size: 14px;
  letter-spacing: 0.24px;
  margin-left: 11px;
}

.page-work .product-block_count-input:focus,
.page-product .product-block_count-input:focus {
  outline: none;
}

.page-work .product-block_column:first-child,
.page-product .product-block_column:first-child {
  margin-right: 45px;
}

input[type='number']::-webkit-inner-spin-button,
input[type='number']::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.product-block_buy {
  margin-top: 25px;
}

.product-block_buy-link {
  font-size: 12px;
  letter-spacing: 0.7px;
  line-height: 23px;
  font-family: 'Gilroy-Medium';
  color: var(--color-secondary);
  border-bottom: 1px dashed var(--color-secondary);
  text-transform: uppercase;
  margin-left: 32px;
  position: relative;
  padding-bottom: 4px;
  transition: opacity 0.5s ease;
}

.product-block_buy-link:hover {
  opacity: 0.6;
  color: var(--color-secondary);
}

.product-block_buy-link:before {
  content: '';
  position: absolute;
  left: -32px;
  background-image: url(assets/img/secondshopping-cart--green.svg);
  background-size: 19px 17px;
  width: 19px;
  height: 17px;
  top: 0px;
}

.product-block_download {
  margin-top: 17px;
}

.product-block_download+.product-block_download {
  margin-top: 10px;
}

.product-block_download-link {
  font-size: 9px;
  letter-spacing: 0.45px;
  line-height: 18px;
  font-family: 'Gilroy-Medium';
  color: var(--color-primary);
  border-bottom: 1px dashed var(--color-primary);
  text-transform: uppercase;
  margin-left: 22px;
  position: relative;
  padding-bottom: 3px;
  transition: opacity 0.5s ease;
}

.product-block_download-link:hover {
  opacity: 0.6;
}

.product-block_download-link:before {
  content: '';
  position: absolute;
  left: -22px;
  background-image: url(assets/img/icon-download.png);
  background-size: 14px 13px;
  width: 14px;
  height: 13px;
  top: 0px;
}

.product-info_container .product-block_row {
  display: flex;
  justify-content: space-between;
  margin-top: 26px;
}

.product-block_icon-img {
  width: auto;
  align-self: center;
}

.page-work .icon-track,
.page-product .icon-track {
  width: 34px;
  height: 23px;
  object-fit: cover;
}

.page-work .icon-settings,
.page-product .icon-settings {
  width: 25px;
  height: 25px;
}

.page-work .icon-wallet,
.page-product .icon-wallet {
  width: 23px;
  height: 23px;
}

.product-block_icon-title {
  text-align: center;
  font-size: 11px;
  line-height: 14px;
  letter-spacing: 0px;
  margin-top: 10px;
  opacity: 0.42;
}

.product-block_figure {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.product-block_figure-container {
  max-width: 300px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.page-product .product-info_size-name:before {
  width: 13px;
  height: 13px;
}

.page-product .product-info_weight-name:before {
  width: 17px;
  height: 18px;
}

.page-product .product-info_generate-name:before {
  width: 18px;
  height: 18px;
}

.page-product .product-info_users-name:before {
  width: 15px;
  height: 17px;
}

.page-product .product-info_size-name,
.page-product .product-info_weight-name,
.page-product .product-info_generate-name,
.page-product .product-info_users-name {
  font-size: 16px;
  padding-left: 29px;
  letter-spacing: 0.32px;
}

.page-product .product-info_size-value,
.page-product .product-info_weight-value,
.page-product .product-info_generate-value,
.page-product .product-info_users-value {
  font-size: 16px;
}

.page-subservices .service-info_container {
  margin-top: 105px;
}

.page-subservices h1 {
  width: 100%;
}

.subservice-cards {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin-top: 90px;
  width: 100%;
}

.subservice-card:nth-child(-n + 4) {
  margin-top: 0px;
}

.subservice-card {
  width: calc(100% / 4 - 30px);
  margin-right: 30px;
  margin-top: 60px;
}

.subservice-card .default-card_container {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.subservice-card .default-card_img {
  height: 182px;
  object-fit: cover;
  width: auto;
  margin: 0 auto;
}

.subservice-cards .default-card_title {
  margin-top: 30px;
  text-align: left;
}

.defaull-card_dsc {
  margin-top: 20px;
  font-size: 12px;
  line-height: 18px;
  letter-spacing: 0.24px;
  color: #6c6c6c;
}

.default-card_container {
  max-width: 211px;
  margin: 0 auto;
}

.default-card_price {
  font-size: 16px;
  line-height: 22px;
  letter-spacing: 0.2px;
  font-family: 'Gilroy-ExtraBold';
  color: var(--color-primary);
  margin-top: 20px;
}

.page-product .product-tabs {
  margin-top: 40px;
  border-radius: 15px;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 5px 15px 5.7px rgba(33, 33, 33, 0.11);
  position: relative;
  padding: 8px;
}

.page-product .product-tabs:before {
  content: '';
  position: absolute;
  border: 1px solid rgba(210, 210, 210, 0.5);
  border-radius: 10px;
  left: 8px;
  top: 8px;
  bottom: 8px;
  right: 8px;
}

.page-product .tab-content {
  display: none;
}

.page-product .tab--active {
  display: block;
}

.tab-content h2 {
  font-size: 26px;
  line-height: 32px;
  font-family: 'Gilroy-ExtraBold';
  letter-spacing: 0.48px;
  margin-bottom: 30px;
  width: 100%;
}

.tab-content .second-title {
  font-size: 26px;
  line-height: 32px;
  font-family: 'Gilroy-ExtraBold';
  letter-spacing: 0.48px;
  margin-bottom: 30px;
  width: 100%;
}

.tab-content p+.second-title {
  font-size: 26px;
  line-height: 32px;
  font-family: 'Gilroy-ExtraBold';
  letter-spacing: 0.48px;
  margin-bottom: 30px;
  width: 100%;
}

.tab-content p+h2 {
  margin: 20px 0;
}

.tab-content.tab--5 img {
  object-fit: contain;
  height: auto;
  width: 100%;
}

.page-product .tab-content p {
  font-size: 14px;
  line-height: 24px;
  letter-spacing: 0.28px;
  width: 100%;
}

.page-product .tab-content p+p {
  margin-bottom: 10px;
}

.page-product img.alignleft {
  float: left;
  margin-right: 30px;
}

.page-product .tab-content a+ol {
  margin-top: 30px;
}

.page-product .tab-content li+li {
  margin-top: 10px;
}

.page-product .product-tabs_container a {
  color: var(--color-secondary);
  border-bottom: 1px dashed var(--color-secondary);
  transition: border-bottom 0.5s ease;
}

.page-product .product-tabs_container a:hover {
  border-bottom: 1px dashed transparent;
}

.page-product .tab-content img+p+ul li {
  display: flex;
  margin-top: 5px;
}

.page-product .tab-buttons {
  border-bottom: 1px solid rgba(210, 210, 210, 0.5);
}

.tab-content ul {
  margin-left: 20px;
  margin-bottom: 20px;
}

.tab-content table+ul {
  margin-top: 12px;
}

.tab-content ul li {
  position: relative;
}

.tab-content ul li:before {
  content: '';
  position: absolute;
  left: -20px;
  width: 8px;
  height: 8px;
  background-color: var(--color-secondary);
  border-radius: 8px;
  top: 7px;
}

.tab-content ol li {
  list-style: none;
  position: relative;
  counter-increment: list;
}

.tab-content ol li:before {
  content: counter(list) '.';
  font-size: inherit;
  letter-spacing: inherit;
  font-family: 'Gilroy-Heavy';
  color: var(--color-secondary);
  position: relative;
  margin-right: 10px;
}

.page-product .tab-content p+ul {
  margin-top: 20px;
}

.tab-content ul li+li {
  margin-top: 10px;
}

.tab-content p a {
  display: flex;
  flex-direction: column;
}

.tab-content p a img {
  object-fit: contain;
  object-position: center center;
  max-width: 80%;
  height: auto;
  margin: 0 auto;
}

.tab-content p a+a {
  margin-left: 20px;
}

.tab-content p>a {
  display: inline-flex;
}

.tab-content p>a+a {
  margin-left: 0px;
}

.page-product .tab-button {
  height: 100%;
  display: flex;
  align-items: center;
  cursor: pointer;
  font-size: 16px;
  letter-spacing: 0.32px;
  color: #232323;
  position: relative;
}

.page-product .tab-button:hover {
  border-bottom: 4px solid #41bb41;
  color: #41ba41;
  margin-bottom: -4px;
}

.page-product .tab-button.tab-button--active {
  border-bottom: 4px solid #41bb41;
  color: #41ba41;
  margin-bottom: -4px;
}

.page-product .tab-button--1:before {
  content: '';
  position: relative;
  background-image: url(assets/img/tab-text-document.png);
  background-size: cover;
  background-repeat: no-repeat;
  width: 12px;
  height: 16px;
  margin-right: 15px;
}

.page-product .tab-button--2:before {
  content: '';
  position: relative;
  background-image: url(assets/img/tab-settings.png);
  background-size: cover;
  background-repeat: no-repeat;
  width: 17px;
  height: 17px;
  margin-right: 15px;
}

.page-product .tab-button--3:before {
  content: '';
  position: relative;
  background-image: url(assets/img/tab-feedback.png);
  background-size: cover;
  background-repeat: no-repeat;
  width: 17px;
  height: 15px;
  margin-right: 15px;
}

.page-product .tab-button--4:before {
  content: '';
  position: relative;
  background-image: url(assets/img/tab-delivery-truck.png);
  background-size: cover;
  background-repeat: no-repeat;
  width: 24px;
  height: 16px;
  margin-right: 15px;
}

.page-product .tab-button--5:before {
  content: '';
  position: relative;
  background-image: url(assets/img/tab-package.png);
  background-size: cover;
  background-repeat: no-repeat;
  width: 18px;
  height: 18px;
  margin-right: 15px;
}

.page-product .tab-button--6:before {
  content: '';
  position: relative;
  background-image: url(assets/img/tab-signs.svg);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 18px;
  height: 18px;
  margin-right: 15px;
}

.page-product .tab-button_container {
  display: flex;
  max-width: 960px;
  margin: 0 auto;
  height: 85px;
  align-items: center;
  justify-content: space-between;
}

.page-product .product-tabs_container {
  z-index: 1;
  position: relative;
}

.page-product .tab-content_container {
  margin-top: 45px;
  color: #232323;
  font-size: 14px;
  letter-spacing: 0.28px;
  line-height: 21px;
  padding-left: 40px;
  padding-right: 40px;
  padding-bottom: 45px;
  overflow: hidden;
}

.page-product .tab-content_readmore {
  overflow: hidden;
}

.page-product .tab-content_readmore img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  margin-top: 16px;
  margin-bottom: 16px;
}

.page-product .added_to_cart {
  display: none;
}

.alert-add-to-cart {
  position: fixed;
  bottom: 5%;
  right: 5%;
  text-align: center;
  color: #fff;
  background: var(--color-secondary);
  padding: 15px;
  border-radius: 10px;
  opacity: 1;
  transition: all ease 1s;
  z-index: 10;
}

.alert-add-to-cart:hover {
  color: #fff;
}

.hidden {
  opacity: 0;
  transition: all ease 1s;
  visibility: hidden;
}

.work-objects {
  margin-top: 120px;
  position: relative;
}

.work-objects_map {
  margin-top: 85px;
}

.breadcrumb-arrow {
  margin-left: 15px;
  margin-right: 15px;
}

.breadcrumbs_name,
.breadcrumbs .post-page {
  margin-right: 0px;
}

.breadcrumbs_name:hover,
.breadcrumbs .post-page:hover {
  color: var(--color-secondary);
  opacity: 0.6;
}

.page-subproduct .breadcrumbs span a,
.page-product .breadcrumbs span a {
  color: var(--color-secondary);
  font-size: 14px;
  letter-spacing: 0.28px;
  line-height: 23px;
  border-bottom: 1px solid var(--color-secondary);
}

.page-subproduct .breadcrumbs span a:hover,
.page-product .breadcrumbs span a:hover {
  opacity: 0.6;
}

.equipment {
  margin-top: 165px;
}

.equipment-cards {
  margin-top: 60px;
}

.cross-sells ul.products {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 60px;
}

.equipment-card {
  width: calc(100% / 3 - 30px);
  cursor: auto;
  padding: 0px;
  border-radius: 15px;
  transition: box-shadow 0.25s ease;
}

.equipment-card:hover,
.product-block:hover {
  box-shadow: 0px 7.5px 30px 1px rgba(0, 0, 0, 0.09);
}

.equipment-card:nth-child(even) {
  margin: 0 30px;
}

.equipment-card_img-wrapper {
  display: flex;
  justify-content: center;
  height: 195px;
  padding: 6px;
  z-index: 2;
  outline: none;
}

.equipment-card_img {
  width: 100%;
  object-fit: contain;
  object-position: center center;
}

.equipment-card_wrapper {
  padding-left: 35px;
  padding-top: 30px;
  padding-right: 20px;
  background-color: #f7fdff;
  padding-bottom: 30px;
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
}

.equipment-card_title {
  font-size: 17px;
  line-height: 100%;
  letter-spacing: 0.34px;
  height: 40px;
}

.equipment-card_title--bold {
  font-family: 'Gilroy-ExtraBold';
  font-size: 21px;
  letter-spacing: 0.42px;
}

.equipment-card_dsc {
  margin-top: 25px;
  line-height: 22px;
  font-size: 15px;
  color: rgba(35, 35, 35, 0.7);
}

.equipment-card_price {
  margin-top: 35px;
  font-size: 30px;
  font-family: 'Gilroy-ExtraBold';
  letter-spacing: 0.6px;
}

.equipment-card_addtocart {
  margin-top: 30px;
  display: flex;
  align-items: center;
}

.equipment-card .btn-wrapper {
  width: 144px;
  height: 45px;
}

.equipment-card_btn {
  width: 144px;
  height: 45px;
  font-size: 11px;
  justify-content: flex-start;
  padding-left: 29px;
  padding-right: 35px;
}

.equipment-card_btn:after {
  content: '';
  position: absolute;
  right: 25px;
  background-image: url(assets/img/shopping-cart--black.svg);
  background-repeat: no-repeat;
  background-size: cover;
  width: 14px;
  height: 12px;
  top: 50%;
  transform: translateY(-50%);
}

.equipment-card_more {
  margin-left: 25px;
  font-size: 14px;
  letter-spacing: 0.28px;
  font-family: 'Gilroy-Medium';
  position: relative;
  text-transform: uppercase;
  transition: opacity 0.5s ease;
}

.equipment-card_more:hover {
  opacity: 0.6;
}

.equipment-card_more:after {
  position: absolute;
  content: '';
  right: -20px;
  background-image: url(assets/img/right-arrow--black.svg);
  background-repeat: no-repeat;
  background-size: cover;
  width: 10px;
  height: 11px;
  top: 50%;
  transform: translateY(-50%);
}

.related {
  margin-top: 125px;
}

.related .product-block_info {
  margin-left: 34px;
  margin-top: 30px;
  margin-right: 15px;
}

.products-blocks {
  /* display: flex;
  flex-direction: row; */
  margin-top: 60px;
}

.page-product .related .product-block_name--bold {
  font-size: 21px;
  letter-spacing: 0.42px;
}

.page-product .related .product-info_size {
  margin-top: 20px;
}

.page-product .related .product-block_name {
  font-size: 17px;
  letter-spacing: 0.34px;
}

.page-product .related .product-block_price {
  margin-left: 34px;
  margin-top: 20px;
  font-size: 30px;
  letter-spacing: 0.6px;
}

.page-product .related .product-info_weight,
.page-product .related .product-info_generate,
.page-product .related .product-info_users {
  margin-top: 10px;
}

.page-product .related .product-block_card-btn,
.page-product .related .btn-wrapper {
  height: 45px;
  width: 144px;
}

.page-product .related .product-block_card-btn {
  font-size: 11px;
  letter-spacing: 0.55px;
  padding-left: 29px;
}

.related .product-block_wrapper {
  margin-left: 34px;
}

.question-form_man .question-form_img {
  max-height: 780px;
  max-width: 549px;
  top: -69px;
  left: -105px;
}

.added_to_cart {
  display: none;
}

.page-product .question-form .btn-wrapper {
  width: 100%;
  height: auto;
  margin-top: 25px;
}

.page-cart h1 {
  text-align: center;
  text-transform: uppercase;
}

.woocommerce-info {
  background: none;
}

.woocommerce-error::before,
.woocommerce-info::before,
.woocommerce-message::before {
  content: none;
}

.woocommerce-error::after,
.woocommerce-error::before,
.woocommerce-info::after,
.woocommerce-info::before,
.woocommerce-message::after,
.woocommerce-message::before {
  content: none;
}

.woocommerce-info,
.woocommerce-noreviews,
p.no-comments {
  background-color: none !important;
}

.page-cart,
.page-subproduct {
  background-color: #fafafa;
}

.page-cart {
  overflow: hidden;
}

.page-cart .woocommerce {
  /* display: flex; */
  margin-top: 45px;
  flex-wrap: wrap;
}

.page-cart .woocommerce-cart-form-block {
  display: flex;
  flex-direction: column;
  border-radius: 10px;
  box-shadow: 0px 10px 42.63px 6.37px rgba(0, 0, 0, 0.03);
  background: #fff;
  padding-top: 33px;
  padding-left: 43px;
  padding-right: 48px;
  padding-bottom: 58px;
  position: relative;
}

.page-cart .woocommerce-cart-form-block:before {
  content: '';
  position: absolute;
  border: 1px solid rgba(0, 0, 0, 0.04);
  top: 7px;
  pointer-events: none;
  bottom: 7px;
  left: 7px;
  right: 7px;
  border-radius: 10px;
}

.wcibd-buttons-group {
  padding: unset;
  display: flex;
  flex-direction: row;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

#wcibd-delete-all {
  display: none;
}

.page-cart #wcibd-chekall {
  display: none;
}

.page-cart .septic-cart_checkbox {
  position: relative;
  display: flex;
  cursor: pointer;
  width: 31px;
  height: 31px;
}

.page-cart form input[type='checkbox']+span:before {
  display: flex;
  position: absolute;
  content: '';
  height: 31px;
  width: 31px;
  box-shadow: inset 0px 0px 10px 0px rgba(223, 223, 226, 1);
  left: 0px;
  border-radius: 50%;
}

.page-cart .septic-cart_label {
  display: flex;
}

.page-cart .septic-cart_label-text {
  margin-left: 26px;
  font-size: 20px;
  letter-spacing: 0.4px;
  color: var(--color-primary);
  cursor: pointer;
}

.page-cart form input[type='checkbox']+span:after {
  display: block;
  content: '';
  position: absolute;
  background: url(assets/img/check-mark--green.svg);
  background-size: cover;
  background-repeat: no-repeat;
  width: 17px;
  height: 16px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  visibility: hidden;
}

.page-cart form input[type='checkbox']:checked+span:after {
  visibility: visible;
}

.page-cart .wcibd-buttons-right {
  margin-left: 85px;
}

.page-cart #wcibd-delete-selected {
  color: #e96f6f;
  font-family: 'Gilroy-Medium';
  font-size: 15px;
  letter-spacing: 0.75px;
  line-height: 26px;
  text-transform: uppercase;
  background: transparent;
  border: none;
  border-bottom: 2px dashed #e96f6f;
  transition: opacity 0.5s ease;
  position: relative;
  display: flex;
  align-items: center;
}

.page-cart #wcibd-delete-selected:hover {
  opacity: 0.6;
}

.page-cart #wcibd-delete-selected:focus {
  outline: none;
}

.page-cart .septic-input_wrapper {
  position: relative;
  display: flex;
}

.page-cart .septic-input_wrapper:before {
  content: '';
  position: absolute;
  background: url(assets/img/delete-button--red.svg);
  background-size: cover;
  background-repeat: no-repeat;
  width: 22px;
  height: 22px;
  left: -36px;
  bottom: 0px;
}

.page-cart .woocommerce-cart-allitems {
  margin-top: 27px;
  display: flex;
  align-items: center;
  background: #f3f3f3;
  padding-left: 35px;
  width: 100%;
  height: 80px;
}

.page-cart .wooocmerce-cart-allitems_text {
  font-size: 24px;
  font-family: 'Gilroy-ExtraBold';
  color: var(--color-primary);
  letter-spacing: 1.2px;
  line-height: 29px;
}

.page-cart .wcibd-single-item {
  display: none;
}

.page-cart .septic-cart_single-label {
  position: relative;
  margin-right: 20px;
}

.page-cart .septic-cart_single-checkbox {
  position: relative;
  display: flex;
  cursor: pointer;
  width: 31px;
  height: 31px;
}

.page-cart .woocommerce-notices-wrapper .woocommerce-message {
  display: none;
}

.page-cart .cart_item {
  display: flex;
  flex-direction: row;
  width: 100%;
  align-items: center;
  padding-bottom: 38px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  margin-bottom: 40px;
}

.page-cart .shop_table {
  margin-top: 40px;
}

.page-cart .product-thumbnail {
  display: flex;
  align-items: center;
}

.page-cart .product-thumbnail {
  display: flex;
}

.page-cart .product-thumbnail img {
  width: 125px;
  height: 100px;
  border-radius: 10px;
  border: 1px solid #e8e8e8;
  object-fit: contain;
  object-position: center center;
}

.page-cart .product-cart_column {
  display: flex;
  flex-direction: column;
  width: 100%;
  flex: 1;
  height: 102px;
  margin-left: 35px;
}

.page-cart .product-cart_row {
  display: flex;
  flex-wrap: wrap;
}

.page-cart .product-cart_column .product-cart_row:first-child {
  height: 40px;
  margin-bottom: 33px;
}

.page-cart .product-cart_column .product-cart_row:nth-child(2) {
  display: flex;
  justify-content: space-between;
}

.page-cart .product-cart_column .product-cart_row {
  height: 28px;
}

.page-cart .product-info_size,
.page-cart .product-info_weight,
.page-cart .product-info_generate,
.page-cart .product-info_users {
  width: 50%;
  max-width: 260px;
  margin-top: 0px;
  display: flex;
  position: relative;
  align-items: center;
}

.page-cart .product-info_size:before {
  position: absolute;
  content: '';
  background-image: url(assets/img/product-size.svg);
  background-size: cover;
  background-repeat: no-repeat;
  width: 10px;
  height: 10px;
  left: 0px;
  top: 50%;
  transform: translateY(-50%);
}

.page-cart .product-info_weight:before {
  position: absolute;
  content: '';
  background-image: url(assets/img/product-weight.svg);
  background-size: cover;
  background-repeat: no-repeat;
  width: 14px;
  height: 14px;
  left: 0px;
  top: 50%;
  transform: translateY(-50%);
}

.page-cart .product-info_users:before {
  position: absolute;
  content: '';
  background-image: url(assets/img/product-users.svg);
  background-size: cover;
  background-repeat: no-repeat;
  width: 14px;
  height: 14px;
  left: 0px;
  top: 50%;
  transform: translateY(-50%);
}

.page-cart .product-info_generate:before {
  position: absolute;
  content: '';
  background-image: url(assets/img/product-generate.svg);
  background-size: cover;
  background-repeat: no-repeat;
  width: 14px;
  height: 14px;
  left: 0px;
  top: 50%;
  transform: translateY(-50%);
}

.page-cart .product-info_size,
.page-cart .product-info_weight {
  padding-left: 22px;
  margin-bottom: 10px;
}

.page-cart .product-info_generate,
.page-cart .product-info_users {
  padding-left: 25px;
}

.page-cart .product-info_size-value,
.page-cart .product-info_weight-value,
.page-cart .product-info_generate-value,
.page-cart .product-info_users-value {
  font-size: 13px;
  letter-spacing: 0.26px;
}

.woocommerce a.remove {
  font-size: 11px;
  font-family: 'Gilroy-Medium';
  letter-spacing: 0.55px;
  color: var(--color-primary) !important;
  text-transform: uppercase;
  border: none;
  border-bottom: 1px dashed var(--color-primary);
  line-height: 23px;
  border-radius: unset;
  height: auto;
  width: auto;
  text-align: left;
  font-weight: initial;
  transition: opacity 0.5s ease;
}

.woocommerce a.remove:hover {
  background: transparent;
  color: var(--color-primary) !important;
  opacity: 0.6;
}

.page-cart .product-cart_label-text {
  color: var(--color-primary);
  font-size: 13px;
  letter-spacing: 0.26px;
}

.page-cart .quantity input {
  width: 39px !important;
  height: 24px;
  border-radius: 5px;
  /* background: #dfdfe2; */
  box-shadow: inset 0px 0px 10px 0px rgba(223, 223, 226, 1);
  border: none;
  padding-left: 12px;
  font-size: 14px;
  letter-spacing: 0.24px;
  margin-left: 11px;
  text-align: left !important;
}

.page-cart .quantity input:focus {
  outline: none;
}

.page-cart .woocommerce-Price-amount {
  font-size: 20px;
  letter-spacing: 0.4px;
  color: var(--color-primary);
  font-family: 'Gilroy-ExtraBold';
}

.page-cart .cart_item:last-child {
  margin-bottom: 0px;
}

.woocommerce .cart-collaterals .cart_totals,
.woocommerce-page .cart-collaterals .cart_totals {
  float: none;
  width: 100%;
}

.woocommerce .cart-collaterals,
.woocommerce-page .cart-collaterals {
  margin-left: 30px;
}

.page-cart .cart-collaterals {
  display: flex;
  flex-direction: column;
  border-radius: 10px;
  box-shadow: 0px 10px 42.63px 6.37px rgba(0, 0, 0, 0.03);
  background: #fff;
  padding-top: 43px;
  padding-left: 39px;
  padding-right: 42px;
  padding-bottom: 43px;
  position: relative;
  align-self: end;
}

.page-cart .cart-collaterals:before {
  content: '';
  position: absolute;
  border: 1px solid rgba(0, 0, 0, 0.04);
  top: 7px;
  pointer-events: none;
  bottom: 7px;
  left: 7px;
  display: flex;
  right: 7px;
  border-radius: 10px;
}

.page-cart .cart-subtotal_title {
  font-size: 24px;
  font-family: 'Gilroy-ExtraBold';
  line-height: 29px;
  color: var(--color-primary);
  letter-spacing: 1.2px;
}

.page-cart .cart-subtotal_table .cart-subtotal_row:nth-child(2) {
  display: flex;
  justify-content: space-between;
  margin-top: 32px;
  align-items: baseline;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.page-cart .cart-subtotal_table .cart-subtotal_row:nth-child(3) {
  margin-top: 24px;
}

.page-cart .cart-subtotal_price span {
  font-size: 30px;
  font-family: 'Gilroy-ExtraBold';
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.page-cart .cart-subtotal_items .wooocmerce-cart-allitems_text {
  color: #222222;
  font-size: 18px;
  line-height: 29px;
  letter-spacing: 0.9px;
  font-family: 'Gilroy-Regular';
}

.page-cart .cart-subtotal_info {
  font-size: 18px;
  line-height: 28px;
  letter-spacing: 0.36px;
  color: #616161;
}

.woocommerce #respond input#submit.alt,
.woocommerce a.button.alt,
.woocommerce button.button.alt,
.woocommerce input.button.alt {
  background-color: transparent;
  border: none;
  padding: 0;
}

.page-cart .wc-proceed-to-checkout .btn-wrapper a {
  height: 75px;
  width: 100%;
  font-size: 14px;
  letter-spacing: 0.7px;
  text-align: center;
  color: var(--color-primary);
  background: linear-gradient(0deg,
      rgb(255, 158, 43) 0%,
      rgb(255, 240, 139) 100%);
  border-radius: 60px;
  font-family: 'Gilroy-SemiBold';
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  border: none;
}

.page-cart .wc-proceed-to-checkout .btn-wrapper a:hover {
  color: var(--color-primary);
  background: linear-gradient(0deg,
      rgb(255, 158, 43) 0%,
      rgb(255, 240, 139) 100%);
  border: none;
}

.page-cart .wc-proceed-to-checkout .btn-wrapper a:after {
  content: none;
}

.page-cart .woocommerce .cart-subtotal_table a.button:after {
  content: none;
}

.cart-totals__coupon {
  display: flex;
  flex-wrap: wrap;
  margin-top: 24px;
  margin-bottom: 24px;
}

.cart-totals__coupon-label {
  width: 100%;
  margin-bottom: 8px;
  font: 500 16px/20px 'Gilroy-Medium', sans-serif;
}

.cart-totals__coupon-input {
  padding-left: 16px;
  flex-grow: 1;
  border: 1px solid #e8e8e8;
  border-right: none;
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
  outline: none;
}

.cart-totals__coupon-submit {
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  appearance: none;
  border: none;
  background: var(--color-secondary);
  color: #ffffff;
  font: 400 14px/14px 'Gilroy-Medium', sans-serif;
  padding: 0 16px;
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
}

.cart-totals__discount {
  display: flex;
  align-items: center;
  margin-top: -8px;
  margin-bottom: 24px;
}

.cart-totals__discount .woocommerce-remove-coupon {
  margin-left: auto;
  font: 400 14px/14px 'Gilroy-Medium', sans-serif;
  color: #e96f6f;
}

.cart-totals__discount .page-cart .woocommerce-Price-amount {
  width: auto;
}

.page-cart .cart-subtotal_table a:after {
  content: none;
  border: none;
}

.page-cart .wc-proceed-to-checkout {
  margin-top: 32px;
}

.page-cart .wc-credit_wrapper {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
}

.page-cart .wc-credit {
  position: relative;
  color: var(--color-secondary);
  font-size: 15px;
  letter-spacing: 0.75px;
  line-height: 32px;
  border-bottom: 1px dashed var(--color-secondary);
  margin-left: 42px;
  text-transform: uppercase;
  font-family: 'Gilroy-Medium';
  align-self: end;
  transition: opacity 0.5s ease;
}

.page-cart .wc-credit:hover {
  opacity: 0.6;
}

.page-cart .wc-credit:before {
  position: absolute;
  content: '';
  background-image: url(assets/img/product-credit.svg);
  background-size: cover;
  background-repeat: no-repeat;
  width: 29px;
  height: 29px;
  left: -42px;
  bottom: -2px;
}

.page-cart .wc-credit_info {
  font-size: 14px;
  line-height: 21px;
  letter-spacing: 0.28px;
  color: #616161;
  margin-top: 0;
  font-family: 'Gilroy-Regular';
}

.page-cart .equipment {
  margin-top: 50px;
  width: 100%;
}

.entry-content_empty .woocommerce {
  flex-direction: column;
}

.page-product .product-info_dsc {
  font-size: 16px;
  color: #828282;
  letter-spacing: 0.3px;
  margin-top: 24px;
  padding-left: 29px;
}

.page-product .product-info_dsc-title {
  font-size: 16px;
  letter-spacing: 0.32px;
  font-family: 'Gilroy-ExtraBold';
  color: #5f5e5e;
  font-size: 15px;
  position: relative;
}

.page-product .product-info_dsc-title:before {
  content: '';
  position: absolute;
  left: -29px;
  background-image: url(assets/img/product-dsc.svg);
  background-repeat: no-repeat;
  background-size: cover;
  width: 15px;
  height: 16px;
  top: 50%;
  transform: translateY(-50%);
}

.related .product-info_size-name,
.related .product-info_weight-name,
.related .product-info_generate-name,
.related .product-info_users-name {
  font-size: 13px;
  letter-spacing: 0.26px;
}

.related .product-info_size-value,
.related .product-info_weight-value,
.related .product-info_generate-value,
.related .product-info_users-value {
  font-size: 13px;
  letter-spacing: 0.26px;
}

.equipment .product-block_card-btn,
.equipment .btn-wrapper {
  height: 45px;
  width: 145px;
}

.equipment .product-block_card-btn {
  height: 45px;
  width: 145px;
  font-size: 12px;
  padding-left: 28px;
  padding-right: 25px;
}

.equipment a.button {
  border-bottom: none !important;
}

.equipment a.button:after {
  content: none !important;
}

.equipment a.button:hover {
  border: none;
  color: var(--color-primary);
  border-bottom: none !important;
}

.equipment a.button:after:hover {
  content: none !important;
  border: none;
}

.work-objects_map {
  width: 100%;
  height: 693px;
}

.ymaps-2-1-79-balloon {
  width: 380px;
  box-shadow: 0px 18px 38.7px 4.3px rgba(30, 30, 30, 0.08);
}

.page-subproduct .form-wppp-select {
  display: inline-flex;
  margin-top: 60px;
}

.woocommerce-head-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  margin-top: 24px;
}

.woocommerce-head-container .berocket_element_above_products_after,
.woocommerce-head-container .berocket_element_above_products {
  display: none;
}

.woocommerce-result-count {
  display: inline-flex;
  font-size: 14px;
  line-height: 18px;
  letter-spacing: 0.28px;
}

.woocommerce-result-count b {
  margin-left: 2px;
}

.page-subproduct .product-sort_label {
  font-size: 0;
  color: var(--color-primary);
  font-family: 'Gilroy-Regular';
  letter-spacing: 0.28px;
  display: inline-flex;
  align-items: center;
}

.page-subproduct .product-sort_label span {
  margin-right: 11px;
}

.page-subproduct .product-sort_label select {
  font-size: 11px;
  letter-spacing: 0.22px;
  font-family: 'Gilroy-Regular';
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 15px;
  padding-right: 30px;
  border-radius: 10px;
  border: 1px solid rgba(30, 30, 30, 0.05);
  width: fit-content;
  position: relative;
}

.page-subproduct .product-sort_label .select-wrapper:before {
  z-index: 1;
  right: 10px;
}

.page-subproduct .product-sort_label select:focus {
  border: 1px solid var(--color-secondary);
  border-radius: 10px;
  outline: none;
}

.page-subproduct .filter-block_option .select-wrapper select:focus {
  border: 1px solid var(--color-secondary);
  border-radius: 10px;
  outline: none;
}

.page-subproduct .product-blocks {
  margin-top: 40px;
}

.page-subproduct .filter-block_text {
  position: relative;
  padding-left: 20px;
}

.page-subproduct .filter-block_options .filter-block_option .filter-block_text:before {
  position: absolute;
  content: '';
  left: 0px;
  background-size: cover;
  background-repeat: no-repeat;
  top: 50%;
  transform: translateY(-50%);
}

.page-subproduct .filter-block_options .filter-block_option:nth-child(1) .filter-block_text:before {
  background-image: url(assets/img/icon-users.svg);
  width: 14px;
  height: 14px;
}

.page-subproduct .filter-block_options .filter-block_option:nth-child(2) .filter-block_text:before {
  background-image: url(assets/img/icon-position.svg);
  width: 18px;
  height: 18px;
}

.page-subproduct .filter-block_options .filter-block_option:nth-child(3) .filter-block_text:before {
  background-image: url(assets/img/icon-battery.svg);
  width: 14px;
  height: 15px;
}

.page-subproduct .filter-block_options .filter-block_option:nth-child(4) .widget-title:before {
  position: absolute;
  content: '';
  left: 0px;
  top: 50%;
  transform: translateY(-50%);
  background-image: url(assets/img/icon-coin.svg);
  background-size: cover;
  background-repeat: no-repeat;
  width: 15px;
  height: 15px;
}

.page-subproduct .filter-block_options .filter-block_option:nth-child(2) .select-wrapper {
  max-width: 168px;
  width: 100%;
}

.page-subproduct .filter-block_options .filter-block_option:nth-child(2) .select-wrapper>select {
  width: 100%;
}

.filter-block .brw-price .berocket_aapf_widget-title_div,
.filter-block .brw-pikovyj-sbros .berocket_aapf_widget-title_div,
.filter-block .brw-proizvoditelnost-zhirou-li .berocket_aapf_widget-title_div {
  margin-bottom: 10px;
}

.select-wrapper .berocket_aapf_widget-title span {
  display: flex;
  white-space: nowrap;
}

.select-wrapper .brw-kolichestvo-polzovatelej .berocket_widget_icon {
  width: 14px;
  height: 14px;
  margin-right: 5px;
}

.select-wrapper .brw-raspolozhenie-stanczii .berocket_widget_icon {
  width: 18px;
  height: 18px;
  margin-right: 10px;
}

.select-wrapper .brw-tip-stanczii .berocket_widget_icon {
  width: 14px;
  height: 15px;
  margin-right: 5px;
}

.filter-block_option .select-wrapper .brw-raspolozhenie-stanczii .berocket_aapf_widget span {
  width: 100%;
}

.filter-block_option .select-wrapper .brw-raspolozhenie-stanczii select {
  width: 100%;
}

.select-wrapper .berocket_aapf_widget {
  transform: unset;
}

.berocket_aapf_widget-title_div {
  padding-right: 0px;
}

.checkout-return {
  padding-left: 18px;
  position: relative;
  font-size: 20px;
  letter-spacing: 0.4px;
  font-family: 'Gilroy-SemiBold';
  color: var(--color-primary);
  cursor: pointer;
}

.checkout-return:before {
  content: '';
  position: absolute;
  left: 0px;
  background-image: url(assets/img/left-arrow.svg);
  background-size: cover;
  width: 12px;
  height: 12px;
  background-repeat: no-repeat;
  top: 50%;
  transform: translateY(-50%) scale(-1, 1);
}

.checkout-wrapper {
  box-shadow: 0px 5px 138.18px 8.82px rgba(33, 33, 33, 0.11);
  border-radius: 15px;
  display: flex;
  position: relative;
  margin-top: 30px;
  background-color: #fff;
}

.checkout-wrapper:before {
  content: '';
  position: absolute;
  border: 1px solid rgba(210, 210, 210, 0.5);
  border-radius: 10px;
  left: 6px;
  top: 6px;
  right: 6px;
  bottom: 6px;
  z-index: 1;
}

.checkout-container {
  z-index: 2;
  padding-left: 80px;
  padding-right: 85px;
  padding-bottom: 70px;
  padding-top: 45px;
  width: 100%;
  display: flex;
  flex-direction: column;
}

.checkout-header {
  display: flex;
  padding-bottom: 35px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  width: 100%;
}

.checkout-step_btn {
  display: flex;
  align-items: center;
}

.checkout-step_btn--hidden {
  opacity: 0.29;
}

.checkout-step_btn-number {
  width: 56px;
  height: 56px;
  background-color: var(--color-secondary);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 24px;
  border-radius: 50%;
  font-size: 30px;
  letter-spacing: 0.6px;
  font-family: 'Gilroy-Black';
}

.checkout-blocks {
  display: flex;
}

.checkout-left_blocks {
  max-width: 560px;
  width: 50%;
  margin-top: 65px;
  border-right: 1px solid rgba(0, 0, 0, 0.04);
}

.woocommerce form .checkout-left_block-step_two .form-row {
  max-width: 325px;
}

.checkout-right_block {
  margin-top: 65px;
  width: 50%;
  padding-left: 60px;
}

form.checkout br {
  display: block;
}

#billing_email_field .optional {
  display: none;
}

.checkout-info {
  font-size: 18px;
  line-height: 29px;
  color: var(--color-primary);
  letter-spacing: 0.9px;
}

.checkout-step_btn-text {
  color: var(--color-primary);
  font-size: 22px;
  letter-spacing: 0.44px;
  font-family: 'Gilroy-ExtraBold';
}

.woocommerce form .form-row label {
  font-size: 20px;
  line-height: 19px;
  letter-spacing: 0.4px;
  color: var(--color-primary);
  font-family: 'Gilroy-ExtraBold';
  position: relative;
  align-self: baseline;
}

.woocommerce form .form-row .required {
  position: absolute;
  right: -2px;
  top: 0px;
  color: #e64040;
}

.woocommerce form .form-row.woocommerce-invalid label {
  color: #e64040;
}

.woocommerce form .form-row {
  float: none;
  margin: 0;
  padding: 0;
  max-width: 421px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-self: baseline;
  margin-top: 35px;
}

.woocommerce form .checkout-left_block-step_two .form-row.place-order {
  max-width: 100%;
  display: flex !important;
}

.woocommerce-privacy-policy-text p {
  font-size: 14px;
  line-height: 18px;
  color: var(--color-primary);
  letter-spacing: 0.28px;
}

.woocommerce form .form-row.privacy {
  margin-top: 0px;
}

.woocommerce form .form-row.privacy label {
  display: flex;
  font-size: 14px;
  line-height: 18px;
  color: var(--color-primary);
  letter-spacing: 0.28px;
  padding-left: 40px;
  align-items: center;
  cursor: pointer;
}

.woocommerce form .form-row.privacy label span a {
  color: var(--color-secondary);
  border-bottom: 1px dashed var(--color-secondary);
  transition: border-bottom 0.5s ease;
}

.woocommerce form .form-row.privacy label span a:hover {
  border-bottom: 1px dashed transparent;
}

.woocommerce form .form-row.privacy label.error {
  color: #e64040;
}

.woocommerce form .form-row.privacy+button {
  display: none !important;
}

.woocommerce form .form-row .input-checkbox {
  display: none;
}

.page-cart form .form-row.privacy input[type='checkbox']+span:before {
  top: 0px;
  left: 0px;
}

.page-cart form .form-row.privacy input[type='checkbox']:checked+span:before {
  content: '';
  background: url(assets/img/check-mark--green.svg);
  background-size: 17px 16px;
  background-repeat: no-repeat;
  background-position: center center;
}

.woocommerce form .form-row.privacy .required {
  position: relative;
  right: auto;
  top: auto;
  display: none;
}

.page-cart form .form-row.privacy input[type='checkbox']+span:after {
  content: none;
}

.woocommerce form .form-row:first-child {
  margin-top: 0px;
}

.woocommerce-input-wrapper {
  margin-top: 20px;
}

.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea {
  border-radius: 10px;
  background-color: rgb(248, 248, 248);
  box-shadow: inset 0px 0px 33.95px 1.05px rgba(0, 0, 0, 0.06);
  border: none;
  padding-left: 25px;
  height: 57px;
  color: var(--color-primary);
  font-size: 18px;
  letter-spacing: 0.36px;
}

.input-text::placeholder {
  color: var(--color-primary);
  opacity: 0.36;
}

.woocommerce-billing-fields__field-wrapper {
  display: flex;
  flex-direction: column;
}

.checkout-fields {
  margin-top: 60px;
}

.checkout-step_btn:first-child {
  margin-right: 105px;
  position: relative;
}

.checkout-step_btn:first-child:after {
  content: '';
  position: absolute;
  right: -61px;
  background: url(assets/img/checkout-right_arrow.svg);
  background-size: cover;
  background-repeat: no-repeat;
  width: 26px;
  height: 25px;
  opacity: 0.1;
}

.checkout-title {
  font-size: 24px;
  line-height: 29px;
  letter-spacing: 1.2px;
  font-family: 'Gilroy-ExtraBold';
  color: var(--color-primary);
  padding-bottom: 34px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.checkout-goods {
  margin-top: 38px;
}

.checkout-products {
  margin-top: 27px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.checkout-goods_text {
  font-size: 18px;
  color: var(--color-primary);
  line-height: 29px;
  letter-spacing: 0.9px;
}

.checkout-product_thumbnail img {
  width: 94px;
  height: 71px;
  border-radius: 10px;
  border: 1px solid #e8e8e8;
  object-fit: contain;
  object-position: center center;
}

.checkout-product_thumbnail .septic-cart_single-label {
  display: none;
}

.checkout-products {
  display: flex;
  flex-wrap: wrap;
}

.checkout-product {
  display: flex;
  flex-direction: column;
  margin-right: 35px;
  margin-top: 30px;
}

.checkout-product:nth-child(3n + 3) {
  margin-right: 0px;
}

.checkout-product:nth-child(-n + 3) {
  margin-top: 0px;
}

.checkout-product_info {
  display: flex;
  margin-top: 15px;
}

.checkout-product_info .woocommerce-Price-amount {
  font-size: 12px;
  font-family: 'Gilroy-ExtraBold';
  letter-spacing: 0.24px;
  margin-right: 9px;
}

.checkout-product_info .product-quantity {
  font-size: 11px;
  letter-spacing: 0.22px;
  color: var(--color-primary);
}

.checkout-total {
  margin-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-top: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.checkout-right_block .btn-wrapper {
  height: 82px;
  width: 254px;
}

.checkout-right_block .btn-wrapper .checkout-button {
  height: 82px;
  cursor: pointer;
  width: 254px;
  font-size: 20px;
  letter-spacing: 0px;
  text-align: center;
  color: var(--color-primary);
  background: linear-gradient(0deg,
      rgb(255, 158, 43) 0%,
      rgb(255, 240, 139) 100%);
  border-radius: 60px;
  font-family: 'Gilroy-Medium';
  display: flex;
  align-items: center;
  text-transform: uppercase;
  border: none;
  z-index: 1;
  position: relative;
  padding-left: 81px;
}

.checkout-right_block .btn-wrapper .checkout-button:after {
  content: '';
  position: absolute;
  background-image: url(assets/img/arrow-right--black.svg);
  background-size: cover;
  background-repeat: no-repeat;
  width: 12px;
  height: 12px;
  right: 70px;
}

.checkout-total_text {
  font-size: 18px;
  font-family: 'Gilroy-ExtraBold';
  letter-spacing: 0.9px;
  line-height: 100%;
}

.checkout-total_number .woocommerce-Price-amount {
  font-size: 30px;
  letter-spacing: 0.6px;
  font-family: 'Gilroy-ExtraBold';
  line-height: 100%;
}

.checkout-subinfo {
  margin-top: 50px;
}

.checkout-subinfo_item {
  padding-left: 75px;
  position: relative;
  font-size: 14px;
  line-height: 24px;
  letter-spacing: 0.7px;
}

.checkout-subinfo .checkout-subinfo_item:nth-child(2) {
  margin-top: 47px;
}

.checkout-subinfo .checkout-subinfo_item:nth-child(1):before {
  content: '';
  position: absolute;
  left: 0px;
  top: 50%;
  transform: translateY(-50%);
  background: url(assets/img/checkout-return.svg);
  background-repeat: no-repeat;
  background-size: cover;
  width: 44px;
  height: 38px;
}

.checkout-subinfo .checkout-subinfo_item:nth-child(2):before {
  content: '';
  position: absolute;
  left: 0px;
  top: 50%;
  transform: translateY(-50%);
  background: url(assets/img/checkout-card.svg);
  background-repeat: no-repeat;
  background-size: cover;
  width: 43px;
  height: 35px;
}

.checkout-subinfo_item--bold {
  font-size: 16px;
  font-family: 'Gilroy-ExtraBold';
  letter-spacing: 0.8px;
}

.checkout-delivery {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  font-size: 18px;
  color: var(--color-primary);
  font-family: 'Gilroy-ExtraBold';
  letter-spacing: 0.9px;
  line-height: 29px;
  justify-content: space-between;
}

.checkout-delivery input:checked+label {
  background: transparent;
  font-family: 'Gilroy-Regular';
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 16px;
  letter-spacing: 0.32px;
  color: var(--color-primary);
}

.woocommerce ul#shipping_method li label {
  background: transparent;
  font-family: 'Gilroy-Regular';
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 16px;
  letter-spacing: 0.32px;
  color: var(--color-primary);
  cursor: pointer;
}

.checkout-delivery ul#shipping_method {
  margin-top: 35px;
}

.checkout-delivery ul#shipping_method li {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  cursor: pointer;
}

.checkout-delivery__custom-radio {
  position: relative;
  display: flex;
  cursor: pointer;
  width: 31px;
  height: 31px;
  margin-right: 20px;
}

.checkout-delivery__custom-radio:before {
  display: flex;
  position: absolute;
  content: '';
  height: 31px;
  width: 31px;
  box-shadow: inset 0px 0px 10px 0px rgb(223 223 226);
  left: 0px;
  border-radius: 50%;
}

.checkout-delivery .shipping_method {
  display: none !important;
}

.checkout-delivery ul#shipping_method .amount {
  font-size: 16px;
  letter-spacing: 0.8px;
  font-family: 'Gilroy-Regular';
  font-weight: 400;
}

.checkout-radio {
  position: relative;
  display: flex;
  cursor: pointer;
  width: 31px;
  height: 31px;
}

.checkout-radio:before {
  display: flex;
  position: absolute;
  content: '';
  height: 31px;
  width: 31px;
  box-shadow: inset 0px 0px 10px 0px rgba(223, 223, 226, 1);
  left: 0px;
  border-radius: 50%;
}

form input[type='radio']+span:after {
  display: block;
  content: '';
  position: absolute;
  background: url(assets/img/check-mark--green.svg);
  background-size: cover;
  background-repeat: no-repeat;
  width: 17px;
  height: 16px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  visibility: hidden;
}

form input[type='radio']:checked+span:after {
  visibility: visible;
}

.input-radio {
  display: none;
}

.checkout-left_block-step_two {
  display: none;
}

#add_payment_method #payment ul.payment_methods,
.woocommerce-cart #payment ul.payment_methods,
.woocommerce-checkout #payment ul.payment_methods {
  padding: 0px;
  border: none;
  list-style: none;
  margin-top: 35px;
}

.woocommerce-checkout #payment ul.payment_methods label {
  cursor: pointer;
}

#add_payment_method #payment,
.woocommerce-cart #payment,
.woocommerce-checkout #payment {
  border: none;
  background: none;
}

#add_payment_method #payment ul.payment_methods li,
.woocommerce-cart #payment ul.payment_methods li,
.woocommerce-checkout #payment ul.payment_methods li {
  line-height: unset;
  display: flex;
  align-items: center;
  cursor: pointer;
}

.checkout-radio_wrapper {
  margin-right: 20px;
}

.checkout-payments {
  margin-top: 55px;
}

abbr[data-original-title],
abbr[title] {
  text-decoration: none;
}

.payment-title {
  font-size: 20px;
  line-height: 19px;
  color: var(--color-primary);
  font-family: 'Gilroy-ExtraBold';
  letter-spacing: 0.4px;
}

.woocommerce-checkout #payment ul.payment_methods li:first-child {
  margin-top: 0px;
}

.woocommerce-checkout #payment ul.payment_methods li {
  margin-top: 18px;
  padding-right: 16px;
}

.payment-secondlabel {
  position: relative;
  display: flex;
  align-items: center;
}

.payment_method_cod .payment-secondlabel:after {
  content: '';
  position: relative;
  margin-left: 19px;
  top: 0px;
  background-image: url(assets/img/checkout_1.png);
  background-size: cover;
  background-repeat: no-repeat;
  width: 26px;
  height: 27px;
}

.payment_method_cashspecialist .payment-secondlabel:after {
  content: '';
  position: relative;
  margin-left: 13px;
  top: 0px;
  background-image: url(assets/img/checkout_2.png);
  background-size: cover;
  background-repeat: no-repeat;
  width: 47px;
  height: 37px;
}

.payment_method_cashonline .payment-secondlabel:after {
  content: '';
  position: relative;
  margin-left: 17px;
  top: 0px;
  background-image: url(assets/img/checkout_3.png);
  background-size: cover;
  background-repeat: no-repeat;
  width: 61px;
  height: 18px;
}

.payment_method_cashentity .payment-secondlabel:after {
  content: '';
  position: relative;
  margin-left: 15px;
  top: 0px;
  background-image: url(assets/img/checkout_4.png);
  background-size: cover;
  background-repeat: no-repeat;
  width: 24px;
  height: 24px;
}

.payment_method_credit .payment-secondlabel:after {
  content: '';
  position: relative;
  margin-left: 0px;
  top: -10px;
  background-image: url(assets/img/checkout_5.png);
  background-size: cover;
  background-repeat: no-repeat;
  width: 85px;
  height: 56px;
}

.woocommerce .btn-wrapper .checkout-btn {
  height: 82px;
  cursor: pointer;
  width: 100%;
  font-size: 16px;
  letter-spacing: 0px;
  text-align: center;
  color: var(--color-primary) !important;
  background: linear-gradient(0deg,
      rgb(255, 158, 43) 0%,
      rgb(255, 240, 139) 100%);
  border-radius: 60px;
  font-family: 'Gilroy-Medium';
  font-weight: 400;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  border: none;
  z-index: 1;
  position: relative;
  padding-left: 81px;
}

.woocommerce .btn-wrapper .checkout-btn:hover {
  border: none;
  background: linear-gradient(0deg,
      rgb(255, 158, 43) 0%,
      rgb(255, 240, 139) 100%);
}

.woocommerce .place-order {
  display: none !important;
}

.woocommerce-NoticeGroup {
  display: none;
}

.woocommerce-checkout {
  position: relative;
}

.woocommerce-NoticeGroup-checkout ul {
  margin-bottom: 0px;
  background-color: transparent;
  border: unset;
}

.woocommerce-NoticeGroup-checkout ul li {
  color: #e64040;
  font-family: 'Gilroy-SemiBold';
}

.checkout-container_step_one .btn-wrapper_step_two,
.checkout-container_step_one .checkout-delivery {
  display: none;
}

.checkout-container_step_two .btn-wrapper_step_one,
.checkout-container_step_two .checkout-left_block-step_one {
  display: none;
}

.checkout-container_step_two .checkout-left_block-step_two {
  display: flex;
  flex-direction: column;
}

.checkout-container_step_two .checkout-fields,
.checkout-container_step_two .checkout-total {
  margin-top: 0px;
}

.checkout-return_step_two {
  display: none;
}

.dn {
  display: none;
}

.sub-product_info {
  position: relative;
  margin-top: 70px;
  margin-left: 10px;
}

.default-text,
.default-editor p {
  font-size: 17px;
  letter-spacing: 0.34px;
  line-height: 24px;
}

.page-services .default-text,
.sub-product_info .default-text,
.default-editor p {
  margin-top: 40px;
}

.page-services .default-second_title:first-child,
.page-subproduct .default-second_title:first-child,
.default-editor p:first-child {
  margin-top: 0px;
}

.page-subservices .default-second_title,
.page-services .default-second_title,
.page-subproduct .default-second_title,
.default-editor h2 {
  margin-top: 60px;
  margin-bottom: 0px;
}

.default-editor h2+.entry-content p {
  margin-top: 20px;
}

.default-editor h3,
.page-subservices .default-third_title,
.page-services .default-third_title,
.page-subproduct .default-third_title {
  margin-top: 45px;
  margin-bottom: 0px;
}

.default-link {
  border-bottom: 1px solid var(--color-secondary);
  color: var(--color-secondary);
}

.default-link:hover {
  color: var(--color-secondary);
  opacity: 0.6;
}

.default-bulleted_list,
.default-editor ul,
.default-editor ol {
  margin-top: 25px;
  margin-left: 30px;
}

.default-editor ol {
  counter-reset: item;
}

.default-bulleted_list-item,
.default-editor ul li,
.default-editor ol li {
  font-size: 17px;
  line-height: 24px;
  letter-spacing: 0.34px;
  color: var(--color-primary);
  position: relative;
}

.default-bulleted_list-item:before,
.default-editor ul li:before {
  content: '';
  position: absolute;
  top: 7px;
  background-color: var(--color-secondary);
  border-radius: 50%;
  width: 10px;
  height: 10px;
  left: -30px;
}

.default-editor ol li:before {
  content: counter(item) ".";
  counter-increment: item;
  position: absolute;
  top: 0;
  left: -30px;
  font-weight: bold;
  color: var(--color-secondary);
}

.default-bulleted_list-item+.default-bulleted_list-item,
.default-editor ul li+li,
.default-editor ol li+li {
  margin-top: 17px;
}

.page-subproduct .default-text_border {
  margin-top: 45px;
  padding-top: 34px;
  padding-left: 44px;
  padding-bottom: 38px;
  padding-right: 80px;
  width: 100%;
  border: 4px solid var(--color-secondary);
}

.page-subservices .default-text_border,
.page-services .default-text_border {
  margin-top: 45px;
}

.page-services .default-text_border+.default-second_title,
.page-subproduct .default-text_border+.default-second_title {
  margin-top: 80px;
}

.default-number_list {
  display: flex;
  flex-direction: column;
  margin-top: 50px;
  padding-left: 43px;
  position: relative;
}

.default-number_list-item+.default-number_list-item {
  margin-top: 40px;
}

.default-number_list-item_title {
  font-size: 24px;
  line-height: 21px;
  letter-spacing: 0.48px;
  font-family: 'Gilroy-Bold';
}

.defaut-number_list-item_number {
  position: absolute;
  left: 0px;
  font-size: 24px;
  line-height: 23px;
  letter-spacing: 0.48px;
  color: var(--color-secondary);
  font-family: 'Gilroy-Heavy';
}

.default-number_list-item_text {
  margin-top: 35px;
  font-size: 17px;
  line-height: 24px;
  letter-spacing: 0.34px;
}

.default-number_list+.default-second_title {
  margin-top: 90px;
}

.default-table {
  display: flex;
  width: 100%;
  border-radius: 15px;
  border-style: hidden;
  box-shadow: 0 0 0 1px #dbdbdb;
  margin-top: 50px;
}

.default-table+img {
  margin-top: 30px;
}

.default-table_column {
  border-right: 1px solid #dbdbdb;
  flex: auto;
  display: flex;
  flex-direction: column;
}

.default-table_column:first-child .default-table_row:first-child,
.default-table_column:last-child .default-table_row:first-child {
  padding: 0px;
  padding-right: 47px;
  padding-left: 35px;
}

.default-table_column:first-child {
  border-top-left-radius: 15px;
}

.default-table_column:last-child {
  border-top-right-radius: 15px;
}

.default-table_column:first-child .default-table_row:first-child {
  border-top-left-radius: 15px;
}

.default-table_column:last-child .default-table_row:first-child {
  border-top-right-radius: 15px;
}

.default-table .default-table_row:nth-child(odd) {
  background: #f3f3f3;
}

.default-table_row:first-child {
  background: #5bd05b !important;
  height: 76px;
  display: flex;
  align-items: center;
  color: #fff;
  font-size: 24px !important;
  line-height: 21px !important;
  letter-spacing: 0.48px !important;
  font-family: 'Gilroy-Bold';
  min-height: 76px;
}

.default-table_row {
  width: 100%;
  height: 100%;
  padding-top: 30px;
  padding-left: 35px;
  padding-bottom: 30px;
  padding-right: 25px;
  border-bottom: 1px solid #dbdbdb;
}

.default-table_column:first-child .default-table_row {
  font-size: 24px;
  line-height: 24px;
  letter-spacing: 0.48px;
}

#main-map {
  width: 100%;
  height: 100%;
}

.main-map .hint-content {
  font-size: 17px;
  font-family: 'Gilroy-Regular';
  line-height: 24px;
}

.page-service .breadcrumbs span a {
  color: var(--color-secondary);
  font-size: 14px;
  letter-spacing: 0.28px;
  line-height: 23px;
  border-bottom: 1px solid var(--color-secondary);
}

.page-service .breadcrumbs span a:hover {
  opacity: 0.6;
}

.page-service .service .default-third_title {
  margin-top: 90px;
}

.page-service .service-container {
  margin-top: 37px;
}

/* slider */

.product-slider_container {
  width: 100%;
  max-width: 628px;
  max-height: 602px;
}

.work-slider,
.service-slider {
  box-shadow: 0px 1px 102.46px 6.54px rgba(33, 33, 33, 0.07);
}

.work-slider .slide-slide,
.service-slider .slick-slide {
  height: auto;
}

.work-slide,
.service-slide {
  border-radius: 8px;
  max-height: 355px;
}

.work-slide.video {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.work-slide.video:before {
  content: '';
  position: absolute;
  opacity: 0.7;
  border-radius: 50%;
  background: var(--color-white);
  width: 120px;
  height: 120px;
}

.work-slide.video:after {
  content: '';
  position: absolute;
  border-radius: 50%;
  background-color: var(--color-white);
  width: 80px;
  height: 80px;
  background-image: url(assets/img/slider-play.png);
  background-size: cover;
}

.work-slide video {
  min-height: 355px;
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
}

.work-slide_thumbnail.video {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 98px;
  border-radius: 8px;
  object-fit: cover;
  background: rgba(0, 0, 0, 0.07);
}

.work-slide_thumbnail.video:after {
  content: '';
  position: absolute;
  border-radius: 50%;
  background-color: var(--color-white);
  width: 40px;
  height: 40px;
  background-image: url(assets/img/slider-play.png);
  background-size: cover;
}

.work-slider .slide-slide img,
.service-slider .slick-slide img {
  width: 100%;
  object-fit: cover;
  height: 100%;
  border-radius: 8px;
  max-height: 404px;
}

.work-slider_thumbnail,
.service-slider_thumbnail {
  margin-top: 15px;
}

.work-slider_thumbnail .slick-list,
.service-slider_thumbnail .slick-list {
  margin: 0 -7.5px;
}

.work-slider_thumbnail .work-slide_thumbnail,
.service-slider_thumbnail .service-slide_thumbnail {
  margin: 0 7.5px;
  cursor: pointer;
  position: relative;
}

.work-slider_thumbnail .work-slide_thumbnail:before,
.service-slider_thumbnail .service-slide_thumbnail:before {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  background-color: rgba(62, 62, 62, 0.73);
  border-radius: 8px;
}

.work-slider_thumbnail .slick-current.work-slide_thumbnail:before,
.service-slider_thumbnail .slick-current.service-slide_thumbnail:before {
  content: none;
}

.work-slider_thumbnail img,
.service-slider_thumbnail img {
  width: 100%;
  height: 98px;
  border-radius: 8px;
  object-fit: cover;
}

.work-slider_thumbnail .slider-arrow_prev,
.work-slider_thumbnail .slider-arrow_next,
.service-slider_thumbnail .slider-arrow_prev,
.service-slider_thumbnail .slider-arrow_next {
  background: var(--color-secondary);
}

.work-slider_thumbnail .slider-arrow_prev:before,
.work-slider_thumbnail .slider-arrow_next:before,
.service-slider_thumbnail .slider-arrow_prev:before,
.service-slider_thumbnail .slider-arrow_next:before {
  background: url(assets/img/arrow-white.svg);
  width: 10px;
  height: 12px;
  background-size: cover;
}

.work-slider_thumbnail .slider-arrow_next,
.service-slider_thumbnail .slider-arrow_next {
  right: -20px;
}

.work-slider_thumbnail .slider-arrow_prev,
.service-slider_thumbnail .slider-arrow_prev {
  left: -20px;
}

.work-slider_thumbnail .slider-arrow_next:before,
.service-slider_thumbnail .slider-arrow_next:before {
  transform: none;
}

.work-slider_thumbnail .slider-arrow_prev:before,
.service-slider_thumbnail .slider-arrow_prev:before {
  transform: scale(-1, 1);
}

.service-text {
  font-size: 20px;
  line-height: 28px;
  letter-spacing: 0.4px;
}

.service-info_price {
  margin-top: 55px;
  padding-left: 68px;
  position: relative;
}

.service-info_price:before {
  content: '';
  position: absolute;
  left: 0px;
  background: url(assets/img/wallet.svg);
  background-size: 35px 35px;
  width: 35px;
  height: 35px;
  top: 50%;
  transform: translateY(-50%);
}

.service-info_price .bold {
  font-size: 30px;
  line-height: 51px;
  font-family: 'Gilroy-ExtraBold';
  letter-spacing: 0.6px;
}

.page-service .service-info {
  margin-left: 25px;
}

.page-service .service-info .btn-wrapper {
  margin-top: 48px;
}

.page-service .service-info .btn {
  width: 313px;
  height: 81px;
  font-size: 16px;
  letter-spacing: 0.8px;
  font-family: 'Gilroy-SemiBold';
}


.page-service .default-table_column:first-child .default-table_row:first-child {
  padding-left: 30px;
  padding-right: 30px;
  font-size: 20px !important;
  line-height: 21px !important;
  letter-spacing: 0.4px !important;
}

.page-service .default-table_column:last-child .default-table_row:first-child {
  padding: 0px;
}

.page-service .default-table_column:first-child .default-table_row:first-child {
  padding-left: 30px;
  padding-right: 30px;
}

.page-service .default-table_column:first-child .default-table_row,
.page-service .default-table_row {
  font-size: 20px;
  letter-spacing: 0.4px;
}

.page-service .default-table_row {
  padding: 0px;
  min-height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-service .default-table_column .default-table_row:first-child {
  font-size: 16px !important;
  letter-spacing: 0.32px !important;
}

.page-service .service-price_info {
  margin-top: 70px;
  position: relative;
}

.page-service .service-price_text {
  font-size: 20px;
  letter-spacing: 0.4px;
  line-height: 28px;
}

.work-price_form,
.service-price_form {
  position: relative;
  min-height: 315px;
  margin-top: 125px;
  max-height: 315px;
  display: flex;
}

.work-price_form-wrapper,
.service-price_form-wrapper {
  display: flex;
  border-radius: 20px;
  border: 5px solid var(--color-secondary);
  width: 100%;
}

.work-price_form-block_left,
.service-price_form-block_left {
  display: flex;
  flex-direction: column;
  width: 60%;
  justify-content: center;
  padding-left: 75px;
}

.work-price_form-block_right,
.service-price_form-block_right {
  display: flex;
  flex-direction: column;
  width: 40%;
}

.work-price_form_text,
.service-price_form_text {
  font-size: 38px;
  line-height: 54px;
  letter-spacing: 0px;
}

.work-price_form_text .bold,
.service-price_form_text .bold {
  font-family: 'Gilroy-ExtraBold';
}

.work-price_form_container,
.service-price_form-container {
  max-width: 385px;
  position: relative;
}

.work-price_form-title,
.service-price_form-title {
  position: absolute;
  font-size: 33px;
  line-height: 45px;
  letter-spacing: 0px;
  font-family: 'Gilroy-ExtraBold';
  top: -23px;
  background: #fafafa;
  padding-left: 36px;
  padding-right: 36px;
}

.work-price_form-container .wpcf7,
.service-price_form-container .wpcf7 {
  padding-right: 57px;
  padding-left: 33px;
  margin-top: 90px;
}

.work-price_form-container .wpcf7 .label,
.service-price_form-container .wpcf7 .label {
  padding-left: 21px;
  font-size: 18px;
  letter-spacing: 0px;
}

.work-price_form-container .wpcf7 .input,
.service-price_form-container .wpcf7 .input {
  padding-left: 21px;
  font-size: 18px;
  letter-spacing: 0px;
}

.work-price_form-container .wpcf7 .label--active,
.service-price_form-container .wpcf7 .label--active {
  font-size: 14px;
  -webkit-transform: translate3d(-21, -25px, 0);
  transform: translate3d(-21px, -25px, 0);
}

.work-price_form-container .wpcf7 .service-price_container-btn,
.service-price_form-container .wpcf7 .service-price_container-btn {
  position: absolute;
  margin-left: -30px;
  padding-left: 30px;
  padding-right: 57px;
  background: #fafafa;
}

.page-work .work-price_form-container .wpcf7 .service-price_container-btn {
  position: relative;
}

.work-price_form-container .wpcf7 .btn,
.service-price_form-container .wpcf7 .btn {
  display: flex;
  flex-direction: column;
  width: 313px;
  height: 81px;
  align-items: flex-start;
}

.work-price_form-container .wpcf7 .btn:after,
.service-price_form-container .wpcf7 .btn:after {
  content: '';
  position: absolute;
  width: 85px;
  height: 67px;
  background: url(assets/img/main-btn_background.png);
  background-size: cover;
  background-repeat: no-repeat;
  right: -23px;
  top: 13px;
}

.work-price_form-container .wpcf7 .btn-text--large,
.service-price_form-container .wpcf7 .btn-text--large {
  font-size: 16px;
  font-family: 'Gilroy-SemiBold';
  letter-spacing: 0.9px;
  line-height: 25px;
  padding-left: 58px;
}

.work-price_form-container .wpcf7 .btn-text--small,
.service-price_form-container .wpcf7 .btn-text--small {
  font-size: 14px;
  line-height: 22px;
  letter-spacing: 0.7px;
  font-family: 'Gilroy-SemiBold';
  padding-left: 70px;
  text-transform: none;
}

.page-service .objects {
  background: none;
  padding-top: 0px;
  padding-bottom: 0px;
  margin-top: 48px;
}

.page-service .object-cards {
  margin-top: 48px;
}

.page-service .objects .objects-leaf_1,
.page-service .objects .objects-background_1,
.page-service .objects .objects-background_2,
.page-service .objects .objects-leaf_2 {
  display: none;
}

.addservices {
  margin-top: 64px;
}

.page-service .question-form {
  margin-top: 180px;
}

.menu-kompaniya-container .menu {
  display: inline-flex;
  flex-direction: column;
  flex-wrap: nowrap;
}

.menu-uslugi-container .menu {
  display: inline-flex;
  flex-direction: column;
  flex-wrap: wrap;
  max-height: 255px;
}

.menu-produkty-container .menu {
  flex-wrap: wrap;
  max-height: 335px;
}

.menu-kompaniya-container .menu-item+.menu-item,
.menu-produkty-container .menu-item+.menu-item,
.menu-uslugi-container .menu-item+.menu-item {
  margin-left: 0px;
  margin-top: 18px;
}

.menu-uslugi-container .menu-item+.menu-item {
  margin-top: 10px;
}

.menu-uslugi-container .menu-item:nth-child(8) {
  margin-top: 0px !important;
}

.menu-kompaniya-container .menu-item a {
  font-size: 18px;
  letter-spacing: 0.36px;
  font-family: 'Gilroy-Regular';
}

.menu-kompaniya-container .menu-item span {
  font-size: 18px;
  letter-spacing: 0.36px;
  font-family: 'Gilroy-Regular';
}

.menu-produkty-container .menu-item a,
.menu-uslugi-container .menu-item a {
  font-size: 15px;
  letter-spacing: 0.3px;
  font-family: 'Gilroy-Regular';
}

.menu-produkty-container .menu-item span,
.menu-uslugi-container .menu-item span {
  font-size: 15px;
  letter-spacing: 0.3px;
  font-family: 'Gilroy-Regular';
}

.menu-kompaniya-container .menu-item+.menu-item:before,
.menu-uslugi-container .menu-item+.menu-item:before {
  content: none;
}

.menu-products .footer-nav,
.menu-services .footer-nav {
  margin-top: 44px;
}

.menu-products .footer-nav ul {
  display: flex;
  flex-direction: column;
  max-height: 300px;
  flex-wrap: wrap;
}

.menu-products .footer-nav ul li+li {
  margin-bottom: 10px;
}

.menu-products .footer-nav ul li:first-child {
  margin-bottom: 10px;
}

.menu-products .footer-nav ul li span {
  color: var(--color-secondary);
}

.menu-products .footer-nav ul li a {
  font-size: 15px;
  line-height: 100%;
  letter-spacing: 0.3px;
  color: #383838;
}

.menu-products .footer-nav ul li a:hover {
  color: var(--color-secondary);
}

.wpcf7-form-control-wrap {
  display: flex;
  z-index: 1;
}

.subservice-cards .default-card_price {
  padding-left: 32px;
  position: relative;
}

.subservice-cards .default-card_price:before {
  position: absolute;
  content: '';
  background: url(assets/img/wallet.svg);
  background-size: 18px 18px;
  width: 18px;
  height: 18px;
  left: 0px;
  background-repeat: no-repeat;
}

.subservice-cards .default-card_btn .btn {
  width: 120px;
  height: 37px;
  text-align: center;
  font-size: 10px;
  letter-spacing: 0.5px;
  font-family: 'Gilroy-Medium';
}

.subservice-cards .default-card_btn.btn-wrapper:before {
  bottom: -2px;
}

.default-card_wrapper {
  display: flex;
  align-items: center;
  margin-top: 20px;
}

.default-card_link {
  font-size: 10px;
  line-height: 22px;
  color: var(--color-secondary);
  border-bottom: 1px dashed var(--color-secondary);
  margin-left: 13px;
  text-transform: uppercase;
  font-family: 'Gilroy-Medium';
  z-index: 1;
}

.default-card_link:hover {
  color: var(--color-secondary);
  opacity: 0.6;
}

.page-subservices .default-card {
  cursor: default;
}

.page-subservices .default-card_img-wrapper {
  height: 182px;
}

.page-subservices .default-card_img-wrapper picture {
  margin: 0 auto;
}

.default-card_btn {
  cursor: pointer;
}

.page-subservices .default-card_title {
  padding-left: 0px;
}

.page-service .service-cards .service-card:nth-child(7) .default-card_title,
.page-services .service-cards .service-card:nth-child(7) .default-card_title {
  font-size: 13px;
  padding: none;
  line-height: 19px;
  letter-spacing: 0.26px;
  margin-top: 19px;
}

.modal-form {
  display: none;
  padding: 0;
  width: 100%;
  border-radius: 10px;
  max-width: 655px;
  overflow: unset;
}

.modal-form:before {
  content: '';
  position: absolute;
  border: 1px solid rgba(210, 210, 210, 0.5);
  border-radius: 10px;
  left: 6px;
  top: 6px;
  right: 6px;
  bottom: 6px;
}

.modal-form_discount .modal-form_container,
.modal-form_feedback .modal-form_container {
  max-width: 290px;
  margin: 0 auto;
  padding-top: 55px;
  padding-bottom: 68px;
}

.modal-form_close {
  position: absolute;
  right: 0px;
  top: -32px;
  right: -8px;
  cursor: pointer;
}

.modal-form_close:hover img {
  filter: none;
}

.modal-form_close img {
  width: 25px;
  height: 25px;
  filter: drop-shadow(0 0 10px #ffca5e);
  position: fixed;
}

.default-modal_title {
  font-size: 24px;
  line-height: 32px;
  text-align: center;
  letter-spacing: 0px;
}

.default-modal_title .bold {
  font-size: 27px;
  line-height: 32px;
  letter-spacing: 0px;
  font-family: 'Gilroy-ExtraBold';
}

.modal-form fieldset:first-child {
  margin-top: 0px;
}

.modal-form fieldset {
  margin-top: 45px;
}

.modal-form_wrapper {
  margin-top: 70px;
}

.modal-form_wrapper .input {
  padding-left: 12px;
  padding-bottom: 10px;
}

.modal-form_wrapper .label {
  padding-left: 12px;
}

.modal-form span.wpcf7-not-valid-tip {
  font-size: 12px;
  bottom: -19px;
  padding-left: 12px;
}

.modal-form_wrapper .btn {
  height: 75px;
  font-size: 14px;
  letter-spacing: 0.9px;
  font-family: 'Gilroy-SemiBold';
  min-width: 100%;
}

.btn-wrapper .wpcf7-spinner {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.modal-form_wrapper .btn-wrapper {
  margin-top: 38px;
}

.wpcf7-mail-sent-ok {
  display: none;
}

.modal-form_success {
  padding-top: 50px;
  padding-bottom: 50px;
  display: none;
}

.modal-form_success-title {
  font-size: 36px;
  line-height: 32px;
  letter-spacing: 0px;
  font-family: 'Gilroy-ExtraBold';
  text-align: center;
}

.modal-form_success-info {
  text-align: center;
  margin-top: 35px;
  font-size: 20px;
  line-height: 30px;
  letter-spacing: 0px;
}

.modal-form_success-img {
  margin-top: 45px;
  display: flex;
  justify-content: center;
}

.modal-form_success-img img {
  width: 185px;
  height: 185px;
  filter: drop-shadow(0 0 3px #ffca5e);
}

.modal-form_get_calculation .modal-form_container,
.modal-form_calculation .modal-form_container {
  padding-top: 50px;
  padding-bottom: 68px;
  position: relative;
}

.modal-form_get_calculation .modal-form_container:after,
.modal-form_calculation .modal-form_container:after {
  content: '';
  position: absolute;
  bottom: 70px;
  right: 30px;
  background: url(assets/img/calculation-doc.png);
  background-size: cover;
  background-repeat: no-repeat;
  width: 186px;
  height: 243px;
}

.modal-form_get_calculation .default-modal_dsc,
.modal-form_calculation .default-modal_dsc {
  text-align: center;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: 0px;
  margin-top: 10px;
}

.modal-form_get_calculation .modal-form_wrapper,
.modal-form_calculation .modal-form_wrapper {
  max-width: 290px;
  margin-left: 62px;
  margin-top: 45px;
}

.modal-city {
  border-radius: 10px;
  max-width: 655px;
  position: relative;
  display: none;
}

.modal-city:before {
  content: '';
  position: absolute;
  border: 1px solid rgba(210, 210, 210, 0.5);
  border-radius: 10px;
  left: 6px;
  top: 6px;
  right: 6px;
  bottom: 6px;
}

.modal-content {
  padding: none;
  border: none;
  border-radius: unset;
}

.modal-header {
  padding: 0px;
  padding-bottom: 20px;
}

.modal-body {
  padding: 0px;
  padding-top: 25px;
  padding-bottom: 25px;
}

.modal-title {
  font-size: 27px;
  line-height: 32px;
  letter-spacing: 0px;
  font-family: 'Gilroy-ExtraBold';
}

.modal-body a {
  font-size: 18px;
  line-height: 28px;
  letter-spacing: 0px;
  margin-top: 10px;
  display: inline-flex;
  cursor: pointer;
}

.modal-body a:hover {
  color: var(--color-secondary) !important;
}

.modal-body a:first-child {
  margin-top: 0px;
}

.modal-footer {
  display: block;
  padding: 0px;
  padding-top: 20px;
}

.modal-footer .btn-wrapper {
  width: 100%;
}

.modal-footer .btn-wrapper a {
  width: 100%;
  cursor: pointer;
  height: 75px;
  font-size: 14px;
  letter-spacing: 0.9px;
  font-family: 'Gilroy-SemiBold';
}

#width_tmp_select {
  display: none;
}

.modal-form_brochure .modal-form_container {
  padding-top: 55px;
  padding-bottom: 68px;
  position: relative;
}

.modal-form_brochure .modal-form_container:after {
  content: '';
  position: absolute;
  background: url(assets/img/modal-brochure.png);
  background-size: cover;
  background-repeat: no-repeat;
  width: 225px;
  height: 212px;
  bottom: 100px;
  right: 20px;
}

.modal-form_brochure .modal-form_wrapper {
  margin-left: 60px;
  max-width: 292px;
  margin-top: 65px;
}

.modal-form_credit .modal-form_container,
.modal-form_click .modal-form_container {
  padding-top: 50px;
  padding-bottom: 70px;
}

.modal-form_credit .modal-form_wrapper,
.modal-form_click .modal-form_wrapper {
  max-width: 292px;
  margin: 0 auto;
}

.modal-form_credit .default-modal_dsc,
.modal-form_click .default-modal_dsc {
  text-align: center;
  margin-top: 10px;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: 0px;
}

.modal-form_choice .modal-form_container {
  padding-top: 50px;
  padding-bottom: 70px;
}

.modal-form_choice .modal-form_container {
  position: relative;
}

.modal-form_choice .modal-form_container:before {
  content: '';
  position: absolute;
  bottom: 0px;
  right: 0px;
  background: url(assets/img/modal-img.png);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  width: 100%;
  height: 80%;
}

.modal-form_choice .default-modal_dsc {
  text-align: center;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: 0px;
  margin-top: 10px;
}

.modal-form_choice .modal-form_wrapper {
  margin-left: 62px;
  max-width: 240px;
}

.modal-form_choice .modal-form_wrapper .btn {
  font-size: 11px;
  letter-spacing: 0.55px;
}

.modal-form_choice .default-modal_title {
  font-size: 27px;
  letter-spacing: 0px;
  font-family: 'Gilroy-ExtraBold';
}

.modal-form_choice fieldset {
  margin-top: 35px;
}

.modal-form_choice .modal-form_wrapper .input {
  font-size: 14px;
  letter-spacing: 0px;
}

.modal-form_choice .modal-form_wrapper .btn {
  height: 62px;
}

.modal-form_choice .modal-form_wrapper .btn-wrapper {
  margin-top: 36px;
}

.page-blog .categories a,
.page-subarticles .categories a,
.page-article .categories a {
  height: 56px;
  display: flex;
  align-items: center;
  padding-left: 28px;
  border-bottom: 1px solid rgba(35, 35, 35, 0.06);
}

.page-blog .categories span,
.page-subarticles .categories span,
.page-article .categories span {
  height: 56px;
  display: flex;
  align-items: center;
  padding-left: 28px;
  color: var(--color-secondary);
  border-bottom: 1px solid rgba(35, 35, 35, 0.06);
}

.page-blog .categories a:hover,
.page-subarticles .categories a:hover,
.page-article .categories a:hover {
  color: var(--color-secondary);
}

.page-blog .categories span:hover,
.page-subarticles .categories span:hover,
.page-article .categories span:hover {
  color: var(--color-secondary);
}

.article .content {
  margin-top: 70px;
}

.article .article-info {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-top: 6px;
}

.article .categories-wrapper {
  margin-top: 0px;
}

.article .sidebar-title {
  font-size: 24px;
  letter-spacing: 0.48px;
  text-transform: none;
}

.article .wrapper {
  margin-left: 35px;
}

.article .category-text {
  font-size: 15px;
  letter-spacing: 0.3px;
  line-height: 23px;
  color: #7a7a7a;
}

.article .category .category-link {
  border: none;
  display: inline-flex;
  padding-left: 0px;
  height: auto;
  border-bottom: 1px solid var(--color-secondary);
  font-size: 15px;
  line-height: 15px;
  color: var(--color-secondary);
}

.article .category .category-link:hover {
  opacity: 0.6;
}

.article .content .category-info {
  display: flex;
  flex-direction: row;
  margin-top: 0px;
  align-items: baseline;
}

.category-rating {
  margin-right: 20px;
}

.category-rating img {
  width: 16px;
  height: 15px;
  margin-right: 4px;
}

.category-rating img:last-child {
  margin-right: 0px;
}

.category-date {
  font-size: 15px;
  line-height: 15px;
  color: #aaaaaa;
  letter-spacing: 0.3px;
  margin-right: 22px;
}

.category-comments {
  position: relative;
  padding-left: 30px;
  font-size: 15px;
  line-height: 15px;
  letter-spacing: 0.3px;
  color: #6c6c6c;
}

.category-comments:before {
  content: '';
  position: absolute;
  left: 0px;
  background: url(assets/img/category-comments.svg);
  background-size: cover;
  background-repeat: no-repeat;
  width: 20px;
  height: 20px;
}

.article-content {
  margin-top: 35px;
}

.article-content h1 {
  font-size: 40px;
  line-height: 50px;
  letter-spacing: 0.8px;
  font-family: 'Gilroy-Heavy';
  text-align: left;
  margin-top: 0px;
}

.article-content h1+p {
  margin-top: 55px;
}

.article-content p a img {
  max-height: 500px;
  width: 100%;
  object-fit: cover;
  object-position: center center;
}

.article-content h1+p+p {
  margin-top: 60px;
}

.article-content p {
  font-size: 19px;
  line-height: 28px;
  letter-spacing: 0.38px;
}

.article-content a {
  color: var(--color-secondary);
  border-bottom: 1px solid var(--color-secondary);
}

.article-content a img {
  display: block;
  margin: 0 auto;
}

.article-content h2 {
  margin-top: 80px;
  font-size: 30px;
  line-height: 40px;
  letter-spacing: 0.6px;
  margin-bottom: 0px;
  text-transform: unset;
  margin-top: 48px;
  font-family: 'Gilroy-ExtraBold';
}

.article-content h2+p {
  margin-top: 24px;
}

.article-content h3 {
  font-size: 19px;
  line-height: 28px;
  letter-spacing: 0.38px;
  margin-bottom: 0px;
  font-family: 'Gilroy-Bold';
}

.article-content p+h3 {
  margin-top: 40px;
}

.article-content ul {
  margin-top: 0px;
  margin-left: 42px;
  margin-bottom: 0px;
}

.article-content ul li:before {
  content: '';
  position: absolute;
  background-color: var(--color-secondary);
  border-radius: 50%;
  width: 10px;
  height: 10px;
  left: -40px;
  top: 14px;
}

.article-content ul li {
  position: relative;
  font-size: 19px;
  letter-spacing: 0.38px;
  line-height: 36px;
  margin-top: 10px;
}

.article-content ul+h3 {
  margin-top: 35px;
}

.article-content ul+h2 {
  margin-top: 48px;
}

.article-content table.alignleft {
  margin-right: auto;
}

.article-content table.alignright {
  margin-left: auto;
}

.article-content table.aligncenter {
  margin: 24px auto;
}


.article-content table tbody tr td {
  border-right: 1px solid #dbdbdb;
  border-bottom: 1px solid #dbdbdb;
  padding: 15px;
  height: 50px;
  text-align: center;
}

.article-content table tbody tr {
  border-left: 1px solid #dbdbdb;
  border-right: 1px solid #dbdbdb;
}

.article-content table tbody tr td:last-child {
  border-right: none;
}

.article-content table tbody tr:first-child td:first-child {
  border-top-left-radius: 15px;
}

.article-content table tbody tr:first-child td:last-child {
  border-top-right-radius: 15px;
}

.article-rating {
  margin-top: 105px;
  display: flex;
  flex-direction: row;
  padding-top: 62px;
  padding-bottom: 65px;
  border-top: 1px solid rgba(33, 33, 33, 0.12);
  border-bottom: 1px solid rgba(33, 33, 33, 0.12);
  align-items: center;
}

.article-rating_title {
  font-size: 30px;
  line-height: 50px;
  font-family: 'Gilroy-ExtraBold';
  letter-spacing: 0.6px;
}

.article-rating_stars {
  margin-left: 60px;
}

.article-rating_stars .post-ratings img {
  width: 37px;
  height: 35px;
  margin-right: 9px;
}

.article-rating_stars .post-ratings img:last-child {
  margin-right: 0px;
}

.article-content .brochure-block {
  margin: 0px;
  margin-top: 140px;
  width: auto;
  border: 8px solid var(--color-secondary);
  height: 185px;
  padding-left: 95px;
  position: relative;
}

.article-content .brochure-title {
  background: #fafafa;
  font-size: 29px;
  padding-left: 22px;
  padding-right: 12px;
  letter-spacing: 0px;
  top: -32px;
}

.article-content .brochure-img {
  max-width: 370px;
  max-height: 368px;
  right: -10%;
}

.article-content .brochure-btn_wrapper {
  background: #fafafa;
  padding-left: 15px;
  padding-right: 12px;
}

.article-content .brochure-btn_wrapper .btn {
  width: 313px;
  height: 81px;
  font-size: 16px;
}

.article-content .brochure-btn_wrapper .btn:after {
  content: '';
  position: absolute;
  background: url(assets/img/arrow-right--black.svg);
  background-size: cover;
  background-repeat: no-repeat;
  width: 11px;
  height: 11px;
  right: 50px;
}

.article-content .brochure-dsc {
  margin-top: 35px;
  padding-left: 13px;
}

.article-content .brochure-btn_wrapper:before {
  width: calc(100% - 27px);
}

.article-comments {
  margin-top: 175px;
  padding-bottom: 85px;
  border-bottom: 1px solid rgba(33, 33, 33, 0.12);
}

.article-comments_title {
  display: inline-flex;
  font-size: 40px;
  line-height: 50px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--color-primary);
  font-family: 'Gilroy-Heavy';
}

.article-comments_count {
  display: inline-flex;
  font-size: 40px;
  line-height: 50px;
  letter-spacing: 0.8px;
  color: var(--color-secondary);
  margin-left: 22px;
}

.article-comments_container {
  margin-top: 80px;
  display: flex;
  flex-direction: column;
  padding-bottom: 74px;
  border-bottom: 1px solid rgba(33, 33, 33, 0.12);
}

.article-comment+.article-comment {
  margin-top: 65px;
}

.article-comment_row {
  display: flex;
  flex-direction: row;
}

.article-comment_author {
  font-size: 20px;
  line-height: 20px;
  letter-spacing: 1px;
  color: #a0a0a0;
}

.article-comment_date {
  font-size: 20px;
  line-height: 20px;
  letter-spacing: 1px;
  color: #a0a0a0;
  margin-left: 40px;
}

.article-comment_content {
  margin-top: 34px;
}

.article-comment_text {
  font-size: 20px;
  line-height: 28px;
  letter-spacing: 0.4px;
  color: var(--color-primary);
}

.article-comment_form {
  margin-top: 60px;
}

.article-comment_form-title {
  font-size: 36px;
  line-height: 40px;
  letter-spacing: 0.72px;
  font-family: 'Gilroy-ExtraBold';
}

.comment-form-comment {
  position: relative;
  margin-top: 50px !important;
  display: inline-flex;
  width: 100%;
  max-width: 495px;
}

.comment-form-comment textarea {
  border-radius: 12px;
  background-color: rgb(248, 248, 248);
  box-shadow: inset 0px 0px 33.95px 1.05px rgba(0, 0, 0, 0.06);
  border: none;
  max-width: 495px;
  width: 100%;
  height: 279px;
  color: #969696;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 0.36px;
  padding-left: 30px;
  padding-top: 30px;
  resize: none;
}

.comment-form-comment textarea:focus {
  outline: none;
  border: none;
}

.comment-form {
  display: flex;
}

.comment-form .required {
  display: none;
}

.comment-form_wrap {
  display: flex;
  flex-direction: column;
  margin-top: 50px;
  margin-left: 40px;
}

.comment-form-author input,
.comment-form-email input {
  border-radius: 12px;
  background-color: rgb(248, 248, 248);
  box-shadow: inset 0px 0px 33.95px 1.05px rgba(0, 0, 0, 0.06);
  border: none;
  padding-left: 25px;
  height: 57px;
  max-width: 275px;
  color: #969696;
  font-size: 16px;
  letter-spacing: 0.32px;
}

.comment-form-author input:focus,
.comment-form-email input:focus {
  outline: none;
  border: none;
}

.comment-form-email {
  margin-top: 16px;
}

.form-submit .btn {
  height: 70px;
  max-width: 277px;
}

.comment-form_wrap .privacy {
  width: 100%;
  position: relative;
  font-size: 12px;
  letter-spacing: 0.24px;
  color: #b7b7b7;
  margin-top: 25px;
  display: flex;
  justify-content: flex-end;
}

.comment-form_wrap .privacy input {
  display: none;
}

.comment-form_wrap .privacy a {
  color: #ffc358;
  border-bottom: 1px solid #ffc358;
  line-height: 100%;
}

.comment-form_wrap .privacy a:hover {
  opacity: 0.6;
}

.form-privacy_checkbox {
  position: absolute;
  display: flex;
  cursor: pointer;
  width: 19px;
  height: 19px;
  justify-content: center;
  align-items: center;
  left: -5px;
}

.form-privacy_checkbox:before {
  display: flex;
  position: absolute;
  content: '';
  height: 19px;
  width: 19px;
  box-shadow: inset 0px 0px 10px 0px rgba(223, 223, 226, 1);
  left: 0px;
  border-radius: 50%;
}

.privacy input[type='checkbox']+span:after {
  display: block;
  content: '';
  position: absolute;
  background-image: -moz-linear-gradient(90deg,
      rgb(255, 158, 43) 0%,
      rgb(255, 240, 139) 100%);
  background-image: -webkit-linear-gradient(90deg,
      rgb(255, 158, 43) 0%,
      rgb(255, 240, 139) 100%);
  background-image: -ms-linear-gradient(90deg,
      rgb(255, 158, 43) 0%,
      rgb(255, 240, 139) 100%);
  width: 11px;
  height: 11px;
  border-radius: 50%;
  visibility: hidden;
}

.privacy input[type='checkbox']:checked+span:after {
  visibility: visible;
}

.comment-form_error {
  position: absolute;
  bottom: -40px;
  left: -5px;
  color: var(--color-primary);
}

.comment-form .comment-form_error-input::placeholder {
  color: #e64040;
}

.comment-form .comment-notes {
  position: absolute;
  font-size: 16px;
  font-family: 'Gilroy-Bold';
  color: var(--color-secondary);
  letter-spacing: 0.32px;
}

.article-products {
  margin-top: 75px;
}

.article-products_title {
  font-family: 'Gilroy-ExtraBold';
  font-size: 36px;
  line-height: 36px;
  letter-spacing: 0.72px;
}

.article-product_blocks {
  margin-top: 60px;
}

.article-product_blocks .product-block:before {
  z-index: 1;
  top: 5px;
  left: 5px;
  right: 5px;
  bottom: 5px;
}

.article-product_blocks .product-block_img {
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}

.article-product_blocks .product-block {
  margin-right: 15px;
  margin-left: 15px;
  height: auto;
  display: block;
  padding-bottom: 30px;
}

.article-product_blocks .product-block_wrapper {
  z-index: 1;
  position: relative;
}

.article-product_blocks .product-block_img-wrapper {
  height: 135px;
  position: relative;
  z-index: 10;
}

.article-product_blocks .product-block_info {
  padding-left: 23px;
  padding-top: 23px;
}

.article-product_blocks .product-block_name--bold {
  font-size: 15px;
  letter-spacing: 0.3px;
}

.article-product_blocks .product-block_name {
  font-size: 12px;
  letter-spacing: 0.24px;
}

.article-product_blocks .product-info_size {
  margin-top: 5px;
}

.article-product_blocks .product-info_size-name,
.article-product_blocks .product-info_weight-name,
.article-product_blocks .product-info_generate-name,
.article-product_blocks .product-info_users-name {
  padding-left: 18px;
  font-size: 10px;
  letter-spacing: 0.2px;
}

.article-product_blocks .product-info_size-value,
.article-product_blocks .product-info_weight-value,
.article-product_blocks .product-info_generate-value,
.article-product_blocks .product-info_users-value {
  font-size: 10px;
  letter-spacing: 0.2px;
}

.article-product_blocks .product-info_size-name:before {
  height: 8px;
  width: 8px;
}

.article-product_blocks .product-info_weight,
.article-product_blocks .product-info_generate,
.article-product_blocks .product-info_users {
  margin-top: 0px;
}

.article-product_blocks .product-info_weight-name:before {
  width: 11px;
  height: 11px;
}

.article-product_blocks .product-info_generate-name:before {
  width: 11px;
  height: 11px;
}

.article-product_blocks .product-info_users-name:before {
  width: 11px;
  height: 11px;
}

.article-product_blocks .product-block_price {
  padding-left: 23px;
  font-size: 22px;
  letter-spacing: 0.44px;
  margin-top: 10px;
}

.article-product_blocks .product-block_wrapper {
  margin-left: 23px;
  margin-top: 10px;
}

.article-product_blocks .product-block_card-btn {
  width: 102px;
  height: 31px;
  font-size: 8px;
  padding-left: 20px;
  letter-spacing: 0.4px;
}

.article-product_blocks .product-block_card-btn:after {
  width: 10px;
  height: 10px;
  right: 20px;
}

.article-product_blocks .product-block_more {
  font-size: 10px;
  letter-spacing: 0.2px;
  margin-left: 16px;
}

.article-product_blocks .product-block_more:after {
  width: 4px;
  height: 5px;
  right: -8px;
}

.article-product_blocks .btn-wrapper:before {
  bottom: -1px;
}

.page-works .pagination,
.page-blog .pagination,
.page-subarticles .pagination {
  margin-left: 30px;
  margin-top: 60px;
  display: flex;
  justify-content: center;
  align-items: baseline;
}

.page-works .pagination .page-numbers,
.page-blog .pagination .page-numbers,
.page-subarticles .pagination .page-numbers {
  font-size: 20px;
  letter-spacing: 0.4px;
  line-height: 100%;
  font-family: 'Gilroy-ExtraBold';
  margin-right: 23px;
  color: var(--color-secondary);
  border-bottom: 2px solid var(--color-secondary);
  margin-right: 23px;
}

.page-works .pagination .page-numbers:hover,
.page-blog .pagination .page-numbers:hover,
.page-subarticles .pagination .page-numbers:hover {
  opacity: 0.6;
}

.page-works .pagination .current,
.page-blog .pagination .current,
.page-subarticles .pagination .current {
  font-size: 20px;
  letter-spacing: 0.4px;
  font-family: 'Gilroy-ExtraBold';
  margin-right: 23px;
  color: #7b7b7b;
  border-bottom: none;
}

.page-works .pagination .current:hover,
.page-blog .pagination .current:hover,
.page-subarticles .pagination .current:hover {
  opacity: 1;
}

.page-works .pagination .next,
.page-blog .pagination .next,
.page-subarticles .pagination .next {
  margin-left: 18px;
  border-bottom: none;
  text-transform: uppercase;
  font-family: 'Gilroy-Bold';
  font-size: 18px;
  letter-spacing: 0.36px;
  position: relative;
}

.page-works .pagination .prev,
.page-blog .pagination .prev,
.page-subarticles .pagination .prev {
  display: none;
}

.page-works .pagination .next:after,
.page-blog .pagination .next:after,
.page-subarticles .pagination .next:after {
  content: '';
  position: absolute;
  margin-left: 10px;
  background-image: url(assets/img/pagination-arrow_right.svg);
  background-repeat: no-repeat;
  background-size: cover;
  width: 14px;
  height: 14px;
  top: 50%;
  transform: translateY(-50%);
}

.work-container {
  margin-top: 80px;
}

.checkout-thankyou_wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 80px;
}

.checkout-thankyou_title {
  font-size: 41px;
  line-height: 51px;
  text-transform: uppercase;
  font-family: 'Gilroy-Heavy';
  letter-spacing: 0.82px;
}

.checkout-thankyou_image {
  max-width: 230px;
  max-height: 230px;
  margin-top: 65px;
}

.work-info {
  padding-top: 42px;
  padding-left: 44px;
  padding-bottom: 39px;
  cursor: default;
}

.work-info_title {
  font-size: 30px;
  letter-spacing: 0.6px;
  font-family: 'Gilroy-ExtraBold';
  line-height: 100%;
}

.work-info_wrapper {
  margin-top: 42px;
}

.work-info_wrapper-row+.work-info_wrapper-row {
  margin-top: 20px;
}

.work-info_text--bold {
  font-size: 17px;
  margin-right: 5px;
  letter-spacing: 0.34px;
  font-family: 'Gilroy-ExtraBold';
}

.work-info_text {
  font-size: 17px;
  letter-spacing: 0.34px;
}

.work-info_row {
  margin-top: 43px;
}

.work-info_row .btn {
  width: 244px;
  height: 68px;
  font-size: 14px;
  letter-spacing: 0.9px;
  justify-content: unset;
  padding-left: 45px;
  position: relative;
}

.work-info_row .btn:after {
  content: '';
  position: absolute;
  background: url(assets/img/arrow-right--black.svg);
  background-size: cover;
  background-repeat: no-repeat;
  width: 9px;
  height: 9px;
  right: 34px;
}

.work-info_link {
  position: relative;
  margin-left: 65px;
  text-transform: uppercase;
  font-size: 14px;
  line-height: 100%;
  padding-bottom: 5px;
  letter-spacing: 0.9px;
  border-bottom: 2px dashed var(--color-secondary);
  font-family: 'Gilroy-Medium';
  color: var(--color-secondary) !important;
  cursor: pointer;
}

.work-info_link:hover {
  opacity: 0.6;
}

.work-info_link:before {
  content: '';
  position: absolute;
  left: -40px;
  background: url(assets/img/calculator-icon.svg);
  background-size: cover;
  background-repeat: no-repeat;
  width: 26px;
  height: 26px;
  top: 50%;
  transform: translateY(-50%);
}

.work-complete {
  margin-top: 170px;
}

.work-complete_container {
  margin-top: 100px;
  display: flex;
  flex-direction: row;
}

.work-complete_map {
  width: 50%;
}

.work-complete_wrapper {
  width: 50%;
  margin-left: 60px;
  display: flex;
  flex-direction: column;
}

.work-complete_date-name,
.work-complete_place-name {
  margin-left: 55px;
  font-size: 24px;
  font-family: 'Gilroy-Bold';
  letter-spacing: 0.48px;
  position: relative;
}

.work-complete_date-name:before {
  content: '';
  position: absolute;
  left: -55px;
  background: url(assets/img/calendar-icon.png);
  background-size: cover;
  background-repeat: no-repeat;
  top: 50%;
  transform: translateY(-50%);
  width: 33px;
  height: 33px;
}

.work-complete_place-name:before {
  content: '';
  position: absolute;
  background: url(assets/img/icon-maps--green.svg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  width: 23px;
  height: 31px;
  left: -48px;
  top: 50%;
  transform: translateY(-50%);
}

.work-compete_place {
  margin-top: 32px;
  display: flex;
  align-items: baseline;
}

.work-complete_date-text,
.work-complete_place-text {
  margin-left: 15px;
  font-size: 22px;
  letter-spacing: 0.44px;
  line-height: 32px;
}

.work-complete_dsc {
  margin-top: 57px;
  color: #636363;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: 0.36px;
}

.work-complete_map-coordinates {
  display: none;
}

.work-complete_map #map {
  height: 100%;
}

.work-tasks {
  margin-top: 160px;
}

.work-task_wrapper {
  padding-top: 95px;
  position: relative;
}

.work-task_wrapper:after {
  content: '';
  position: absolute;
  right: 0px;
  background: url(assets/img/work-doc.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  max-width: 328px;
  width: 100%;
  max-height: 455px;
  height: 100%;
  bottom: -70px;
}

.work-task_title {
  font-size: 36px;
  line-height: 100%;
  letter-spacing: 0.72px;
  font-family: 'Gilroy-ExtraBold';
}

.work-task_container {
  margin-top: 60px;
  display: flex;
  flex-direction: column;
}

.work-task {
  padding-left: 75px;
  position: relative;
  font-size: 24px;
  line-height: 100%;
  letter-spacing: 0.48px;
}

.work-task:before {
  content: '';
  position: absolute;
  left: 0px;
  background: url(assets/img/work-task_ok.svg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
}

.work-task+.work-task {
  margin-top: 48px;
}

.work-materials {
  margin-top: 190px;
}

.work-materials_table .default-table_column:first-child .default-table_row:first-child,
.work-materials_table .default-table_column:last-child .default-table_row:first-child .work-materials_table .default-table_row {
  padding: 0px;
  display: flex;
  justify-content: center;
}

.work-materials_table .default-table_row {
  font-size: 20px;
  letter-spacing: 0.4px;
  padding: 0px;
  display: flex;
  justify-content: center;
  padding-top: 20px;
  padding-bottom: 20px;
}

.work-materials_table .default-table_column:first-child .default-table_row {
  justify-content: flex-start;
  padding-left: 130px;
}

.work-materials_table .default-table_column:first-child .default-table_row:first-child {
  padding-left: 130px;
  justify-content: flex-start;
  font-size: 24px;
  line-height: 100%;
  letter-spacing: 0.48px;
}

.work-materials_table .default-table_column:first-child .default-table_row {
  font-size: 20px;
  letter-spacing: 0.4px;
}

.work-price_form {
  margin-top: 170px;
}

.work-stages {
  margin-top: 180px;
}

.work-stage_list {
  display: flex;
  flex-direction: column;
  margin-top: 80px;
  padding-left: 45px;
}

.work-stage_item-number {
  font-size: 27px;
  line-height: 25px;
  font-family: 'Gilroy-Heavy';
  letter-spacing: 0.54px;
  color: var(--color-secondary);
  position: relative;
  left: -45px;
}

.work-stage_item {
  display: flex;
  flex-direction: row;
  align-items: baseline;
  font-size: 20px;
  letter-spacing: 0.4px;
}

.work-stage_item+.work-stage_item {
  margin-top: 35px;
}

.work-price_form-container form .btn-wrapper {
  margin-top: 40px;
}

.work-product {
  margin-top: 155px;
}

.form-privacy_text {
  position: relative;
  left: 5px;
}

.page-work .product-block_info {
  padding: 0px;
}

.work-product .product-content {
  margin-top: 85px;
}

.work-product .product-info_container .product-block_row {
  margin-top: 19px;
}

.work-review {
  margin-top: 170px;
}

.work-review_video-wrapper {
  margin-top: 90px;
  display: flex;
  flex-direction: row;
}

.work-review_video {
  width: 50%;
}

.work-review_info {
  width: 50%;
  padding-left: 60px;
}

.work-review_info-title {
  font-size: 27px;
  line-height: 100%;
  letter-spacing: 0.54px;
  font-family: 'Gilroy-ExtraBold';
}

.work-review_img-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.work-review_img-wrapper:before {
  content: '';
  position: absolute;
  opacity: 0.7;
  border-radius: 50%;
  background: var(--color-white);
  width: 150px;
  height: 150px;
}

.work-review_img-wrapper:after {
  content: '';
  position: absolute;
  border-radius: 50%;
  background-color: var(--color-white);
  width: 122px;
  height: 122px;
  background-image: url(assets/img/slider-play.png);
  background-size: cover;
}

.work-review_info-city {
  font-size: 20px;
  letter-spacing: 0.4px;
  margin-top: 22px;
}

.work-review_info-dsc {
  margin-top: 50px;
  font-size: 18px;
  line-height: 26px;
  letter-spacing: 0.36px;
  color: #585858;
  font-style: italic;
}

.work-review_img {
  width: 100%;
  min-height: 330px;
  object-fit: cover;
  object-position: center center;
  border-radius: 12px;
}

.work-review_text-wrapper {
  margin: 0 auto;
  margin-top: 78px;
  padding-left: 90px;
  padding: 65px;
  padding-bottom: 65px;
  max-width: 950px;
  cursor: default;
  position: relative;
}

.work-review_text-wrapper:after {
  content: '';
  position: absolute;
  right: 50px;
  top: 22px;
  background: url(assets/img/review-dot.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  width: 153px;
  height: 114px;
}

.work-review_text-title {
  font-size: 27px;
  line-height: 100%;
  letter-spacing: 0.54px;
  font-family: 'Gilroy-ExtraBold';
}

.work-review_text-city {
  font-size: 20px;
  letter-spacing: 0.4px;
  margin-top: 22px;
}

.work-review_text-dsc {
  margin-top: 50px;
  font-size: 18px;
  line-height: 26px;
  letter-spacing: 0.36px;
  color: #585858;
  font-style: italic;
}

.works-map {
  width: 100%;
  height: 693px;
}

.ymaps-2-1-79-balloon_to_top .ymaps-2-1-79-balloon__tail {
  display: none;
}

.ymaps-2-1-79-balloon__close {
  position: absolute;
  top: -30px;
  right: 0;
}

.ymaps-2-1-79-balloon {
  border-radius: 12px;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 1px 46.06px 2.94px rgba(33, 33, 33, 0.28) !important;
  padding: 0px !important;
}

.ymaps-2-1-79-balloon__layout {
  border-radius: 12px;
  padding-top: 34px !important;
  padding-left: 15px !important;
  padding-bottom: 15px !important;
  padding-right: 12px !important;
}

.ymaps-2-1-79-balloon__layout:before {
  content: '';
  position: absolute;
  border: 1px solid rgba(210, 210, 210, 0.5);
  border-radius: 12px;
  left: 7px;
  top: 7px;
  right: 7px;
  bottom: 7px;
}

.ymaps-2-1-79-balloon__close+.ymaps-2-1-79-balloon__content {
  margin: 0px !important;
  padding: 0px !important;
  width: 100% !important;
}

.ymaps-2-1-79-balloon__content>ymaps {
  width: 100% !important;
  height: 447px !important;
}

.works-map_title {
  text-align: center;
  font-size: 24px;
  line-height: 100%;
  letter-spacing: 0.48px;
  font-family: 'Gilroy-ExtraBold';
  color: var(--color-primary);
}

.works-map_row {
  display: flex;
  flex-direction: row;
  margin-top: 28px;
  align-items: baseline;
}

.works-map_row+.works-map_row {
  margin-top: 14px;
}

.works-map_text {
  font-size: 11.81px;
  letter-spacing: 0.22px;
  font-family: 'Gilroy-ExtraBold';
  line-height: 100%;
  color: #696969;
  white-space: nowrap;
  width: 44%;
}

.works-map_value {
  font-size: 11.15px;
  line-height: 17px;
  letter-spacing: 0.22px;
  color: #696969;
  font-family: 'Gilroy-Regular';
  width: 56%;
  white-space: pre-line;
}

.works-map_btn {
  margin-top: 33px;
  display: flex;
  justify-content: center;
}

.works-map_btn .btn-wrapper {
  margin: 0 auto;
  width: auto;
  height: auto;
}

.works-map_btn .btn-wrapper .btn {
  max-width: 230px;
  height: 61px;
  font-size: 12px;
  letter-spacing: 0.18px;
  font-family: 'Gilroy-SemiBold';
}

.works-map_btn .btn-wrapper .btn:before {
  position: absolute;
  content: '';
  background-image: url(assets/img/arrow-right.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 5px;
  height: 8px;
  top: 50%;
  right: 37px;
  transform: translateY(-50%);
}

.works-map_images {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding-left: 5px;
  padding-right: 5px;
  margin-top: 29px;
}

.works-map_image {
  border-radius: 10px;
  max-width: 165px;
  width: 100%;
  height: 100px;
  object-fit: cover;
  object-position: center center;
}

.page-work .work-price_form-wrapper {
  height: 100%;
}

.product-reviews {
  display: flex;
  flex-direction: column;
}

.product-review+.product-review {
  margin-top: 60px;
}

.product-review_row {
  display: flex;
  flex-direction: row;
}

.product-review_name,
.product-review_date {
  font-size: 17px;
  letter-spacing: 0.34px;
  line-height: 100%;
  color: #a0a0a0;
}

.product-review_date {
  margin-left: 34px;
}

.product-review_dsc {
  font-size: 17px;
  line-height: 25px;
  color: #2d2d2d;
  margin-top: 25px;
}

.object-card_slider .slick-list {
  margin: 0 -6px;
}

.object-card_slide {
  margin: 0 6px;
}

.object-card_slide-img {
  border-radius: 10px;
  width: 100%;
  object-fit: cover;
  object-position: center center;
  max-height: 130px;
}

.page-subproduct .woocommerce-info {
  font-size: 24px;
  margin-top: 60px;
}

.error-404 {
  display: flex;
  flex-direction: column;
  margin-top: 150px;
  align-items: center;
  position: relative;
}

.error-404_dsc {
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 0.36px;
  margin-top: 10px;
  text-align: center;
}

.error-404__pseudoelement {
  position: absolute;
  right: 0px;
  top: 50%;
  width: 10%;
  transform: translateY(-50%);
}

.error-404__pseudoelement_2 {
  position: absolute;
  left: 0px;
  top: 50%;
  width: 10%;
  transform: translateY(-50%);
}

.error-404-pseudoelement_3 {
  position: absolute;
  left: 30%;
}

.error-404-pseudoelement_4 {
  position: absolute;
  right: 25%;
  bottom: -5%;
}

.error-404_number {
  text-align: center;
  font-size: 12rem;
  line-height: 100%;
  letter-spacing: 0.24rem;
  font-family: 'Gilroy-Bold';
}

.error-404_text {
  text-align: center;
  font-size: 2rem;
  font-family: 'Gilroy-Bold';
}

.error-404_link {
  text-align: center;
  position: relative;
  font-size: 1.2rem;
  height: 100%;
  margin-top: 20px;
  border-bottom: 1px solid var(--color-primary);
  transition: unset;
}

.error-404_link:after {
  content: '';
  position: absolute;
  right: -15px;
  background: url(assets/img/arrow-right--black.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 11px;
  height: 11px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.7;
}

.error-404_link:hover {
  color: var(--color-secondary);
  border-bottom: 1px solid var(--color-secondary);
}

.error-404_link:hover:after {
  background: url(assets/img/arrow-right--green.svg);
}

.page-privacy h1 {
  margin-top: 75px;
  text-align: center;
  text-transform: uppercase;
}

.page-privacy .comment-form_wrap .privacy a {
  color: var(--color-secondary);
  border-bottom: 1px solid var(--color-secondary);
}

.page-privacy .privacy-container {
  margin-top: 60px;
}

.page-privacy h4 {
  font-size: 24px;
  letter-spacing: 0.48px;
  line-height: 100%;
  font-family: 'Gilroy-Bold';
  color: var(--color-primary);
}

.page-privacy h5 {
  letter-spacing: 0.48px;
  line-height: 100%;
  font-family: 'Gilroy-Medium';
  color: var(--color-primary);
}

.page-privacy .privacy-container p {
  font-size: 18px;
  line-height: 28px;
  letter-spacing: 0.32px;
  color: var(--color-primary);
  font-family: 'Gilroy-Medium';
}

.page-privacy .privacy-container ol {
  margin-top: 40px;
  padding-left: 25px;
}

.page-privacy .privacy-container li {
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.32px;
  color: var(--color-primary);
  position: relative;
}

.page-privacy .privacy-container li:before {
  content: '';
  position: absolute;
  top: 8px;
  left: -25px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: var(--color-secondary);
}

.page-privacy .privacy-container li+li {
  margin-top: 15px;
}

.mb-container_header {
  display: none;
}

.mb-container {
  display: none;
}

.about-block_right .about-video_wrapper {
  display: none;
}

.mb-footer_title-pay {
  display: none;
}

.mb-footer_title-social {
  display: none;
}

.mb-product_title {
  display: none;
}

.mb-second-title {
  display: none;
}

.mb-delivery-addresses_list {
  display: none;
}

.mb-question-form_img {
  display: none;
}

.filter-buttons .widget-title.berocket_aapf_widget-title {
  display: none;
}

.filter-buttons .berocket_label_widgets {
  font-size: 14px;
  letter-spacing: 0.28px;
  border-radius: 30px;
  border: 1px solid rgba(210, 210, 210, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  padding-left: 26px;
  padding-right: 26px;
  padding-top: 12px;
  padding-bottom: 12px;
  cursor: pointer;
  box-sizing: border-box;
}

.filter-buttons .berocket_term_parent_0 span input {
  display: none;
}

ul.berocket_aapf_widget li>span label:hover {
  color: #fff;
  background: var(--color-secondary);
}

.filter-buttons .berocket_aapf_widget {
  width: 100%;
  display: flex;
}

.filter-buttons .berocket_single_filter_widget {
  width: 100%;
}

.filter-buttons ul.berocket_aapf_widget li {
  margin-right: 13px;
}

.mb-filter-wrapper {
  display: none;
}

.mb-tabs-container {
  display: none;
}

.mb-categories {
  display: none;
}

.onsale {
  display: none;
}

.logged-in-as {
  display: none;
}

.cross-sells ul.products {
  display: flex;
  width: 100%;
}

/* .article-content .article-content_container .page-header {

} */

.product-block_regular-price,
.product-block_price-sale {
  color: #404040;
  opacity: 0.4;
  text-decoration: line-through;
}

.cross-sells_slider {
  margin-top: 60px;
}

.cross-sells_slider .equipment-card:nth-child(even) {
  margin: 0px;
}

.cross-sells_slider .slick-track,
.related .products-blocks .slick-track,
.article-product_blocks .slick-track {
  display: flex;
  margin-left: 0px;
}

.cross-sells_slider .slick-list,
.related .products-blocks .slick-list,
.article-product_blocks .slick-list {
  overflow: unset;
  margin: 0 -15px;
  /* width: 100%; */
}

.cross-sells_slider .slick-slide,
.related .products-blocks .slick-slide,
.article-product_blocks .slick-slide {
  opacity: 0;
  transition: opacity 0.5s ease;
  visibility: hidden;
  margin: 0 15px !important;
  display: flex !important;
  height: auto;
  flex-direction: column;
  justify-content: space-between;
  max-width: unset;
}

.cross-sells_slider .slick-slide.slick-active,
.related .products-blocks .slick-slide.slick-active,
.article-product_blocks .slick-slide.slick-active {
  opacity: 1;
  visibility: visible;
}

.entry-header+.entry-content {
  margin-top: 40px;
}

.entry-content ol {
  margin-top: 25px;
  margin-left: 30px;
}

.entry-content ol li {
  list-style: none;
  position: relative;
  font-size: 17px;
  line-height: 24px;
  letter-spacing: 0.34px;
  color: var(--color-primary);
  position: relative;
  counter-increment: list;
}

.entry-content ol li+li {
  margin-top: 17px;
}

.entry-content ol li:before {
  content: counter(list) '.';
  font-size: inherit;
  letter-spacing: inherit;
  font-family: 'Gilroy-Heavy';
  color: var(--color-secondary);
  position: absolute;
  left: -30px;
}

.page-header+.page__content {
  margin-top: 40px;
}

.page__thumb+p {
  margin-top: 60px;
}

.article-content p+p {
  margin-top: 20px;
}

.article-content ul+p {
  margin-top: 20px;
}

.article-content p+ol {
  margin-top: 40px;
}

.article-content ol+p {
  margin-top: 40px;
}

.article-content ol {
  position: relative;
  margin-left: 30px;
  margin-bottom: 0px;
}

.article-content ol>li {
  list-style: none;
  position: relative;
  counter-increment: list;
  font-size: 19px;
  letter-spacing: 0.38px;
  line-height: 36px;
}

.page-service .entry-content ol>li {
  list-style: none;
  counter-increment: list;
  font-size: 17px;
  line-height: 24px;
  letter-spacing: 0.34px;
  color: var(--color-primary);
  position: relative;
}

.page-service .entry-content ol {
  margin-top: 25px;
  margin-left: 30px;
}

.page-service .entry-content ol>li:before {
  content: counter(list) '.';
  font-size: 17px;
  line-height: 24px;
  letter-spacing: 0.34px;
  font-family: 'Gilroy-Heavy';
  color: var(--color-secondary);
  position: absolute;
  left: -30px;
}

.page-service .entry-content ol>li+li {
  margin-top: 10px;
}

.article-content ol>li:before {
  content: counter(list) '.';
  font-size: 19px;
  letter-spacing: 0.38px;
  line-height: 36px;
  font-family: 'Gilroy-Heavy';
  color: var(--color-secondary);
  position: absolute;
  left: -30px;
}

.article-content ol li+li {
  margin-top: 10px;
}

.page__thumb+p+ul {
  margin-top: 40px;
}

.article-content h3+p {
  margin-top: 40px;
}

.page__thumb+ol {
  margin-top: 60px;
}

.wsp-container {
  margin-top: 60px;
}

.wsp-container h2 {
  font-size: 36px;
  line-height: 32px;
  letter-spacing: 0.72px;
  text-transform: unset;
  font-family: 'Gilroy-ExtraBold';
}

.wsp-container h2+ul {
  margin-top: 25px;
  margin-left: 30px;
}

.wsp-container ul+h2 {
  margin-top: 40px;
}

.wsp-container h2+ul li {
  font-size: 17px;
  line-height: 24px;
  letter-spacing: 0.34px;
  color: var(--color-primary);
  position: relative;
}

.wsp-container h2+ul li a:hover {
  color: var(--color-secondary);
}

.wsp-container h2+ul li:before {
  content: '';
  position: absolute;
  top: 7px;
  background-color: var(--color-secondary);
  border-radius: 50%;
  width: 10px;
  height: 10px;
  left: -30px;
}

.filter-btn_wrapper .btn {
  width: 196px;
  height: 57px;
  font-size: 9px;
  letter-spacing: 0.5px;
}

.filter-btn_wrapper .btn:after {
  width: 35%;
  height: 100%;
  right: -40px;
}

.default-privacy_wrapper {
  margin-top: 20px;
  display: flex;
  z-index: 1;
  position: relative;
}

.service-price_form-wrapper .default-privacy_wrapper {
  margin-top: 20px;
  display: flex;
  z-index: 1;
  position: relative;
  position: aboluste;
  position: absolute;
  bottom: -169px;
  max-width: 313px;
  left: 72px;
}

.default-privacy_wrapper span.wpcf7-list-item {
  margin: 0px;
}

.default-privacy_wrapper span.wpcf7-list-item-label::before {
  content: '';
  position: absolute;
  cursor: pointer;
  border-color: #333333 !important;
  border-width: 1px !important;
  border-radius: 2px !important;
  color: #333333 !important;
  background-color: #ececec;
  box-shadow: inset 0px 0px 7px 0px rgba(0, 0, 0, 0.05);
  border: none;
  width: 16px;
  height: 16px;
  left: -32px;
  top: 5px;
}

.default-privacy_wrapper input[type='checkbox'] {
  display: none;
}

.default-privacy_wrapper input[type='checkbox']:checked+span.wpcf7-list-item-label::before {
  content: '' !important;
  background-image: url(assets/img/check-mark--green.svg);
  background-size: 60%;
  background-repeat: no-repeat;
  background-position: center center;
  width: 16px;
  height: 16px;
}

.default-privacy .wpcf7-form-control-wrap {
  margin-right: 15px;
}

.default-privacy_text {
  font-size: 12px;
  letter-spacing: 0.24px;
  line-height: 16px;
  color: #9d9d9d;
  display: inline-block;
}

.default-privacy_wrapper+div.wpcf7-acceptance-missing {
  border: unset;
  margin: 0px;
  padding: 0px;
  font-size: 12px;
  letter-spacing: 0.24px;
  color: rgb(255, 158, 43);
  margin-top: 10px;
}

.question-form_wrapper .default-privacy_wrapper+div.wpcf7-mail-sent-ok {
  margin-left: 32px;
}

.default-privacy_wrapper+div.wpcf7-mail-sent-ok {
  color: var(--color-secondary);
  border: unset;
  margin: 0px;
  padding: 0px;
  font-size: 12px;
  letter-spacing: 0.24px;
  margin-top: 10px;
}

.question-form_wrapper .default-privacy_text {
  margin-left: 32px;
}

.question-form_wrapper .default-privacy_wrapper span.wpcf7-list-item-label::before {
  left: 0px;
}

.question-form_wrapper .default-privacy_wrapper+div.wpcf7-acceptance-missing {
  margin-left: 32px;
}

.wp-video {
  max-height: 400px;
  height: 400px !important;
  margin: 0 auto;
  margin-top: 30px;
}

.wp-video-shortcode video,
video.wp-video-shortcode {
  max-height: 100%;
}

.mejs-container {
  max-height: 400px;
}

.sub-product_editor h3 {
  font-size: 28px;
  line-height: 36px;
  letter-spacing: 0.56px;
  text-transform: unset;
  font-family: 'Gilroy-ExtraBold';
  margin-bottom: 20px;
}

.sub-product_editor h3+a {
  margin-top: 40px;
}

.sub-product_editor tbody {
  border-radius: 15px;
  border-style: hidden;
  box-shadow: 0 0 0 1px #dbdbdb;
}

.sub-product_editor tbody tr:first-child {
  padding-left: 15px;
  padding-right: 15px;
  background-color: var(--color-secondary);
}

.sub-product_editor tbody tr:first-child td {
  height: 50px;
  color: #fff;
}

.sub-product_editor table+h2 {
  margin-top: 40px;
}

.sub-product_editor table+p {
  margin-top: 30px;
}

.sub-product_editor tbody tr td {
  border-right: 1px solid #dbdbdb;
  border-bottom: 1px solid #dbdbdb;
  padding: 15px;
  height: 50px;
  text-align: center;
}

.sub-product_editor tbody tr {
  border-left: 1px solid #dbdbdb;
  border-right: 1px solid #dbdbdb;
}

.sub-product_editor tbody tr td:last-child {
  border-right: none;
}

.sub-product_editor tbody tr:first-child td:first-child {
  border-top-left-radius: 15px;
}

.sub-product_editor tbody tr:first-child td:last-child {
  border-top-right-radius: 15px;
}

.categories-list__item {
  position: relative;
}

.categories-list__item.subcategory-active:after {
  content: '';
  display: inline-block;
  position: absolute;
  right: 15px;
  top: 50%;
  pointer-events: none;
  border: 4px solid transparent;
  border-top: 6px solid var(--color-secondary);
}

.categories-list__item.subcategory-active:hover:after {
  transform: translateY(-30%) rotate(-90deg);
}

.subcategories-list {
  position: absolute;
  width: 100%;
  left: 100%;
  top: 0px;
  z-index: 10;
  background: #fff;
  border-radius: 10px;
  box-shadow: 2px -3px 7.2px 0.8px rgba(30, 30, 30, 0.05);
  margin-top: 0px;
  border-top: 1px solid transparent;
  margin-left: 1px;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s;
  display: none;
}

.subcategories-list__item {
  position: relative;
  display: flex;
  align-items: center;
}

.subcategories-list__item-img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  float: left;
  margin-right: 5px;
}

.categories-list__item:hover>span+.subcategories-list {
  opacity: 1;
  visibility: visible;
  display: block;
}

.categories-list__item:hover>a+.subcategories-list {
  opacity: 1;
  visibility: visible;
  display: block;
}

.categories-list__item.subcategory-open .subcategories-list,
.categories-list__item.category-open .subcategories-list {
  position: relative;
  opacity: 1;
  visibility: visible;
  display: block;
  left: 0;
  box-shadow: none;
  z-index: 0;
}

.categories-list__item.category-open::after {
  content: none;
}

.categories-list__item.subcategory-open:after {
  content: none;
}

.subcategories-list__link {
  font-size: 14px;
  width: 100%;
  padding-left: 15px;
  border-bottom: 1px solid rgba(35, 35, 35, 0.06);
  display: flex;
  align-items: center;
}

.subcategories-list__link.active {
  color: var(--color-secondary);
  font-weight: 600;
}

.subcategories-list__link:hover {
  color: var(--color-secondary);
}

#select-city>li>ul {
  z-index: 10;
  display: none;
  position: absolute;
  background-color: white;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0px 5px 15px 1px rgba(33, 33, 33, 0.11);
  width: 150px;
}

#select-city>li>ul li a {
  color: var(--color-primary);
  letter-spacing: 0.28px;
  font-size: 14px;
  line-height: 20px;
  display: flex;
  padding: 10px;
  width: 100%;
}

.select-city__name {
  font-size: 18px;
  line-height: 22px;
  letter-spacing: 0.36px;
  color: var(--color-secondary);
  border-bottom: 1px solid var(--color-secondary);
}

.woocommerce-checkout #payment div.form-row {
  padding: 0px;
}

.mb-menu-nav_wrapper {
  display: none;
}

.about-block_right {
  display: flex;
  flex-direction: column;
}

.fancybox-image {
  background: #fff;
}

.delivery-subdsc {
  margin-top: 20px;
  font-size: 19px;
  letter-spacing: 0.38px;
}

.delivery-subdsc strong {
  color: var(--color-secondary);
}

.grecaptcha-badge {
  visibility: hidden;
}

.woocommerce-notices-wrapper {
  display: none !important;
}

.mb-product-slider {
  display: none;
}

.modal-city_link+a {
  display: none;
}

.wpcf7 form .wpcf7-response-output {
  display: none !important;
}

.tab-content__map-title {
  margin-bottom: 16px;
  font-size: 20px;
}

.slick-arrow.slick-disabled {
  opacity: 0.6;
}

.woocommerce .cart-collaterals .cart_totals {
  position: relative;
}

.tinkoff_credit_wrapper {
  position: absolute;
  left: 0;
  bottom: 80px;
}

.tinkoff_credit_submit {
  position: relative;
  color: var(--color-secondary);
  font-size: 12px;
  letter-spacing: 0.75px;
  line-height: 14px;
  border: none;
  border-bottom: 1px dashed var(--color-secondary);
  margin-left: 42px;
  text-transform: uppercase;
  font-family: 'Gilroy-Medium';
  align-self: end;
  background: transparent;
  outline: none;
  transition: opacity 0.5s ease;
}

.tinkoff_credit_submit:hover {
  opacity: 0.8;
}

.tinkoff_credit_submit:focus {
  outline: none;
}

.tinkoff_credit_wrapper:first-child:before {
  position: absolute;
  content: '';
  background-image: url(assets/img/product-credit.svg);
  background-size: cover;
  background-repeat: no-repeat;
  width: 29px;
  height: 29px;
  left: 0;
  bottom: -2px;
}

.product-info_container .product-block_row {
  flex-wrap: wrap;
}

.tinkoff_credit_wrapper {
  display: flex;
  flex-direction: column;
  position: relative;
  bottom: 0;
}

.tinkoff_credit_submit {
  font-size: 12px;
  line-height: 23px;
  letter-spacing: 0.7px;
  align-self: flex-start;
  margin: 0;
  margin-top: 6px;
}

.tinkoff_credit_submit:first-child {
  margin-top: 0;
}

.tinkoff_credit_wrapper:first-child::before {
  width: 18px;
  height: 18px;
  background-size: contain;
  bottom: 0;
}

.tinkoff_credit_form_wrapper {
  margin-top: 6px;
}

.page-cart .tinkoff_credit_submit {
  margin-left: 0;
}

.product-review_gallery {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin: 0 -8px;
  margin-top: 16px;
}

.product-review_gallery-img {
  width: calc(25% - 8px);
  margin: 0 4px;
  margin-top: 8px;
  max-height: 160px;
  min-height: 140px;
}

.contact-map-wrapper {
  display: flex;
  margin-top: 64px;
}

.contact-map {
  height: 600px;
  width: 100%;
}

#add_payment_method #payment div.payment_box,
.woocommerce-cart #payment div.payment_box,
.woocommerce-checkout #payment div.payment_box {
  display: none !important;
}

.tab-content .wp-caption {
  width: 100% !important;
}

@media screen and (max-width: 1920px) {
  .main-screen {
    height: 800px;
  }

  .kinds {
    margin-top: 190px;
  }
}

@media screen and (max-width: 1700px) {
  main {
    padding-bottom: 120px;
  }

  .page-main section:first-child,
  .calc-page section:first-child,
  .page-product section:first-child,
  .page-subproduct section:first-child,
  .page-cart section:first-child {
    padding-top: 40px;
  }

  .header-dsc {
    font-size: 14px;
    line-height: 16px;
    letter-spacing: 0.28px;
  }

  .header-logo {
    margin-right: 15px;
  }

  .fixed-menu_wrapper {
    padding-left: 15px;
    padding-right: 15px;
  }

  .contact-member_info {
    padding-top: 35px;
    padding-bottom: 25px;
  }

  .header-dsc:before {
    height: 35px;
    left: -15px;
  }

  .contact-member_info-number:before {
    width: 20px;
    height: 19px;
  }

  .contact-member_info-address:before {
    width: 18px;
    height: 20px;
  }

  .custom-logo {
    width: 100%;
    height: 100%;
  }

  .footer-container {
    padding-left: 15px;
  }

  .container-menu {
    padding-left: 15px;
    padding-right: 15px;
    justify-content: center;
  }

  .menu-item {
    font-size: 1.1vw;
  }

  .menu-item+.menu-item {
    margin-left: 3vw;
  }

  .menu-item+.menu-item:before {
    left: -1.5vw;
  }

  .container-header {
    padding-left: 15px;
    padding-right: 15px;
  }

  .header-number {
    font-size: 14px;
    letter-spacing: 0.28px;
  }

  .header-btn,
  .footer-call_btn {
    width: 160px;
    height: 40px;
    font-size: 14px;
  }

  .page-main h1 {
    margin-top: 40px;
  }

  .footer-call_number {
    font-size: 20px;
  }

  .footer-column:nth-child(2) {
    width: 45%;
  }

  .footer-column:nth-child(4) {
    width: 18%;
  }

  .footer-call_dsc {
    font-size: 13px;
  }

  .main-screen {
    height: 100vh;
    background-position-y: -80px;
  }

  .main-title {
    padding-top: 60px;
    font-size: 28px;
    line-height: 33px;
    text-transform: uppercase;
    padding-top: 60px;
  }

  .main-dsc_wrapper {
    margin-top: 25px;
  }

  .main-screen .pseudoelement_1 {
    display: none;
  }

  .about-pseudoelement_1 {
    display: none;
  }

  .kinds-pseudoelement_1 {
    display: none;
  }

  .kinds {
    margin-top: 120px;
    padding-bottom: 180px;
  }

  .products-pseudoelement_1 {
    display: none;
  }

  .about-pseudoelement_3 {
    display: none;
  }

  .about-block_left p+p {
    margin-top: 30px;
  }

  p {
    font-size: 22px;
    line-height: 32px;
    letter-spacing: 0.864px;
  }

  .stage-block_title {
    font-size: 31px;
    line-height: 41px;
  }

  .stage-block_right {
    width: 40%;
  }

  .stage-block_img-wrapper:before {
    width: 90%;
    height: 90%;
  }

  .stage-block {
    margin-top: 120px;
  }

  .objects {
    padding-top: 100px;
    padding-bottom: 150px;
  }

  .objects-leaf_1 {
    display: none;
  }

  .certificates-arrow_prev,
  .client-arrow_prev {
    left: -49px;
  }

  .certificates-arrow_next,
  .client-arrow_next {
    right: -49px;
  }

  .certificates {
    padding-bottom: 150px;
  }

  .client-slide_name {
    margin-top: 40px;
    font-size: 24px;
  }

  .client-slide_city {
    font-size: 18px;
    margin-top: 10px;
    line-height: 100%;
  }

  .client-btn {
    margin-top: 60px;
  }

  .selection-title {
    font-size: 32px;
    line-height: 42px;
  }

  .selection-pseudoelement_1 {
    display: none;
  }

  .selection-dsc {
    margin-top: 40px;
  }

  .selection-btn {
    margin-top: 50px;
  }

  .selection {
    padding-bottom: 140px;
  }

  .map-wrapper {
    height: 500px;
  }

  .fixed-menu_container .menu-item {
    font-size: 18px;
    line-height: 48px;
  }

  .fixed-menu_container .menu-item a {
    padding-left: 15px;
  }

  .fixed-menu_container {
    max-width: 300px;
  }

  .fixed-menu_container .menu-item:after {
    width: 100%;
  }

  .article-content .article-title {
    font-size: 32px;
    line-height: 42px;
  }

  .article-content .article-img_wrapper {
    margin-top: 35px;
  }

  .article-img_wrapper+.default-text {
    margin-top: 40px;
  }

  .article-content .default-text {
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.32px;
  }

  .article-content .default-second_title {
    margin-top: 60px;
  }

  .article-content .default-second_title+.default-text {
    margin-top: 45px;
  }

  .article-content .default-bulleted_list-item {
    font-size: 16px;
    line-height: 28px;
  }

  .article-content .default-bulleted_list {
    margin-left: 24px;
  }

  .article-content .default-bulleted_list-item:before {
    left: -24px;
    top: 9px;
  }

  .article-comment_text {
    font-size: 16px;
    line-height: 24px;
  }

  .menu-company {
    width: 15%;
  }

  .footer-title {
    font-size: 22px;
    line-height: 0.44px;
  }

  .menu-kompaniya-container .menu-item a {
    font-size: 15px;
    letter-spacing: 0.3px;
  }

  .menu-kompaniya-container .menu-item+.menu-item,
  .menu-produkty-container .menu-item+.menu-item,
  .menu-uslugi-container .menu-item+.menu-item {
    margin-top: 10px;
  }

  .menu-products .footer-nav ul li a {
    line-height: 18px;
    font-size: 14px;
    letter-spacing: 0.28px;
  }

  .menu-products .footer-nav ul {
    max-height: 380px;
  }

  .menu-products {
    width: 60%;
  }

  .menu-services {
    width: 25%;
  }

  .menu-uslugi-container .menu {
    max-height: unset;
  }
}

@media screen and (max-width: 1600px) {
  .menu>.menu-item>.sub-menu {
    width: 95vw;
    left: -125px;
  }
}

@media screen and (max-width: 1366px) {
  .header-logo {
    max-width: 150px;
    margin-right: 0;
  }

  .header-dsc {
    font-size: 12px;
    line-height: 18px;
  }

  .header-dsc:before {
    height: 100%;
    left: -10px;
  }

  .contacts-address {
    max-width: 250px;
    font-size: 12px;
  }
}

@media screen and (max-width: 1200px) {
  .container-header {
    display: none;
  }

  .main-navigation_container {
    display: none;
  }

  .mb-container_header {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: row;
    background: #fff;
    box-shadow: 0px 2px 13px 0px rgba(0, 0, 0, 0.18);
    height: 62px;
    padding-left: 33px;
    padding-right: 33px;
    justify-content: space-between;
    align-items: center;
  }

  .mb-menu-phone {
    margin-right: 20px;
  }

  .mb-menu_phone-icon {
    width: 22px;
    height: 22px;
  }

  .header-cart_info,
  .header-cart {
    display: none;
  }

  .header-cart_wrapper {
    position: relative;
    width: 25px;
    height: 25px;
  }

  .header-cart_wrapper:before {
    content: '';
    position: absolute;
    background: url(assets/img/shopping-cart--green.svg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    width: 25px;
    height: 25px;
    left: 0px;
  }

  .mb-menu-contacs {
    display: flex;
    flex-direction: row;
  }

  .custom-logo {
    max-width: 121px;
  }

  .mb-menu-hamburger_wrapper {
    display: flex;
    align-items: center;
    cursor: pointer;
    position: relative;
  }

  .mb-menu-hamburger .line {
    width: 17px;
    height: 4px;
    background-color: var(--color-secondary);
    display: block;
    margin: 3px auto;
    border-radius: 10px;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }

  .mb-menu-hamburger_wrapper:hover .mb-menu-hamburger .line {
    background-color: var(--color-secondary);
  }

  .menu-hamburger_wrapper:hover .menu-hamburger_text {
    color: var(--color-secondary);
  }

  .mb-menu-hamburger.is-active .line {
    background-color: var(--color-secondary);
  }

  .mb-menu-hamburger .line:first-child {
    margin-top: 0px;
  }

  .mb-menu-hamburger .line:last-child {
    margin-bottom: 0px;
  }

  .mb-menu-hamburger:hover {
    cursor: pointer;
  }

  .mb-menu-hamburger.is-active .line:nth-child(2) {
    opacity: 0;
  }

  .mb-menu-hamburger.is-active .line:nth-child(1) {
    -webkit-transform: translateY(8px) rotate(45deg);
    -ms-transform: translateY(8px) rotate(45deg);
    -o-transform: translateY(8px) rotate(45deg);
    transform: translateY(8px) rotate(45deg);
  }

  .mb-menu-hamburger.is-active .line:nth-child(3) {
    -webkit-transform: translateY(-6px) rotate(-45deg);
    -ms-transform: translateY(-6px) rotate(-45deg);
    -o-transform: translateY(-6px) rotate(-45deg);
    transform: translateY(-6px) rotate(-45deg);
  }

  .mb-menu-nav_wrapper {
    position: absolute;
    padding-left: 33px;
    max-width: 303px;
    background-color: #fff;
    top: 62px;
    z-index: 100;
    left: -100%;
    max-width: 282px;
    width: 100%;
    box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.51);
    transition: left 0.5s ease;
    display: flex;
    flex-direction: column;
  }

  .mb-menu-nav_wrapper.is-active {
    left: 0px;
  }

  .mb-menu_city {
    height: 55px;
    background: #f3f3f3;
    margin-left: -33px;
    padding-left: 33px;
  }

  .select-wrapper {
    position: relative;
    padding-left: 33px;
    display: flex;
    height: 100%;
    width: fit-content;
    align-items: center;
  }

  .select-wrapper:before {
    right: 0px;
  }

  .select-wrapper select {
    background: #f3f3f3;
    font-size: 18px;
    line-height: 22px;
    letter-spacing: 0.36px;
    color: var(--color-secondary);
    border-bottom: 1px solid var(--color-secondary);
  }

  .mb-menu-nav {
    display: flex;
  }

  .mb-menu-nav .menu {
    display: flex;
    flex-direction: column;
  }

  .mb-menu-nav .menu-shapka-menyu-container {
    width: 100%;
    padding-right: 13px;
  }

  .mb-menu-nav .menu-item {
    font-size: 17px;
    line-height: 49px;
    letter-spacing: 0.34px;
    font-family: 'Gilroy-Bold';
    margin: 0px;
    position: relative;
  }

  .mb-menu-nav .menu-item+.menu-item:before {
    content: none;
  }

  .mb-menu-nav .menu-item+.menu-item:before {
    content: '';
    position: absolute;
    left: 0px;
    bottom: 0px;
    width: 100%;
    height: 1px;
    background-color: rgba(0, 0, 0, 0.06);
  }

  .mb-menu_phone {
    height: 96px;
    background: var(--color-secondary);
    margin-left: -33px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .mb-menu_phone .header-number {
    padding-left: 33px;
    color: #fff;
    font-size: 17px;
    letter-spacing: 0.32px;
  }

  .mb-menu_phone .header-number:last-child {
    position: relative;
  }

  .mb-menu_phone .header-number:last-child:after {
    content: '';
    position: relative;
    right: auto;
    display: inline-block;
    margin-left: 12px;
    left: auto;
    top: 50%;
    transform: translateY(-50%);
    background-image: url(assets/img/max-logo.png);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 16px;
    height: 16px;
  }

  .mb-menu-phone .header-number+.header-number {
    margin-top: 17px;
  }

  .main-screen .container {
    display: none;
  }

  .main-screen .mb-container {
    display: flex;
    flex-direction: column;
  }

  .main-screen {
    height: 630px;
    background: url(assets/img/mb-main-background.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom center;
  }

  .about-pseudoelement_2 {
    display: none;
  }

  .mb-container {
    padding-left: 33px;
  }

  .main-screen .mb-container {
    padding-top: 38px;
  }

  .main-screen .mb-title {
    font-size: 20px;
    line-height: 25px;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    font-family: 'Gilroy-Heavy';
  }

  .main-screen .text-wrapper {
    position: relative;
    margin-right: 19px;
  }

  .main-screen .text-wrapper:before {
    content: '';
    position: absolute;
    display: flex;
    background-image: url(assets/img/main-title_background.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    width: 100%;
    height: 100%;
    left: -12px;
    top: 0px;
    z-index: 0;
  }

  .main-screen .c-text--white {
    position: relative;
    display: inline-flex;
    z-index: 1;
  }

  .main-screen .mb-container .main-dsc {
    font-size: 14px;
    letter-spacing: 0.28px;
    line-height: 20px;
    margin-top: 32px;
  }

  .mb-list {
    margin-top: 33px;
    display: flex;
    flex-direction: column;
  }

  .mb-list_item {
    font-size: 16px;
    text-align: left;
    letter-spacing: 0.32px;
    line-height: 20px;
    font-family: 'Gilroy-Bold';
    position: relative;
    padding-left: 53px;
  }

  .mb-list_item:nth-child(1):before {
    background: url(assets/img/mb-icon_debt.svg);
    width: 29px;
    height: 29px;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
  }

  .mb-list_item:nth-child(2):before {
    background: url(assets/img/mb-icon_support.svg);
    width: 28px;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 28px;
  }

  .mb-list_item:nth-child(3):before {
    background: url(assets/img/mb-icon_settings.svg);
    width: 27px;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 27px;
  }

  .mb-list_item:before {
    content: '';
    position: absolute;
    left: 0px;
    top: 50%;
    transform: translateY(-50%);
  }

  .mb-list_item+.mb-list_item {
    margin-top: 33px;
  }

  .mb-main-btn_wrapper .btn {
    width: 220px;
    height: 57px;
    font-size: 10px;
    letter-spacing: 0.5px;
  }

  .main-btn_wrapper {
    margin-top: 27px;
  }

  .mb-main-btn_wrapper .main-btn:after {
    width: 54px;
    height: 43px;
    right: -22px;
  }

  .h2 {
    font-size: 20px;
    line-height: 25px;
    letter-spacing: 0.4px;
  }

  .about {
    padding-top: 40px;
    background-color: #f7f7f7;
    padding-bottom: 100px;
  }

  .about .c-text--green {
    display: flex;
    justify-content: center;
  }

  .about-block {
    flex-direction: column;
    margin-top: 38px;
  }

  p {
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0.28px;
  }

  .container {
    padding-left: 33px;
  }

  .about-block_left p+p {
    margin-top: 20px;
  }

  .selection .selection-leaf_3 {
    display: none;
  }

  .about-block_right {
    position: relative;
    right: auto;
    flex: 100%;
    margin-top: 30px;
  }

  .about-block_left .about-video_wrapper {
    display: none;
  }

  .about-block_right .about-video_wrapper {
    display: flex;
    margin-top: -5px;
  }

  .about-director_name {
    margin-top: 21px;
    font-size: 18px;
    line-height: 25px;
    letter-spacing: 0px;
  }

  .about-director_position {
    font-size: 14px;
    line-height: 25px;
    letter-spacing: 0px;
  }

  .about-video_img {
    width: 82px;
    height: 82px;
  }

  .about-video_text {
    font-size: 15px;
    line-height: 20px;
    letter-spacing: 0.3px;
    margin-left: 0px;
  }

  .kinds {
    margin-top: 14px;
    background: none;
    padding-bottom: 60px;
  }

  .kinds-pseudoelement_2 {
    display: none;
  }

  .kinds .table {
    /* display: none; */
  }

  .kinds .table-adaptive-wrapper {
    overflow-x: auto;
  }

  .kinds .table-adaptive-wrapper::-webkit-scrollbar {
    height: 15px;
    background-color: #f3f0ec;
    border-radius: 20px;
  }

  .kinds .table-adaptive-wrapper::-webkit-scrollbar-thumb {
    background-color: var(--color-secondary);
    border-radius: 20px;
    box-shadow: inset 1px 1px 10px #f3faf7;
  }

  .kinds td {
    min-width: 160px;
  }

  .kinds .table-td__header-price {
    font-size: 16px;
    line-height: 20px;
  }

  .kinds .table-td__header-img {
    max-width: 149px;
    height: 70%;
  }

  .products-pseudoelement_2 {
    display: none;
  }

  .products {
    padding-top: 47px;
    background-color: #f7f7f7;
    padding-bottom: 47px;
  }

  .product-blocks {
    padding-right: 12px;
    justify-content: space-between;
    margin-top: 37px;
  }

  .site-main .product-block {
    width: calc(100% / 2 - 15px);
    margin: 0px;
    margin-right: 15px;
    margin-top: 40px;
    border-radius: 8px;
  }

  .site-main .product-block:nth-child(-n + 2) {
    margin-top: 0px;
  }

  .site-main .product-block:nth-child(even) {
    margin-right: 0px;
  }

  .product-info_weight,
  .product-info_generate,
  .product-info_users,
  .product-info_size {
    display: none;
  }

  .product-block_wrapper {
    margin-left: 10px;
    flex-wrap: wrap;
    margin-top: 10px;
    flex-direction: column;
    align-items: baseline;
  }

  .product-block_img-wrapper {
    height: 80px;
    overflow: hidden;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
  }

  .product-block_name {
    font-size: 12px;
    line-height: 18px;
    letter-spacing: 0.24px;
    display: inline-block;
  }

  .product-block_info {
    padding-top: 15px;
    padding-left: 10px;
  }

  .product-block_price {
    padding-left: 10px;
    font-size: 16px;
    line-height: 20px;
    letter-spacing: 0.32px;
    margin-top: 8px;
  }

  .product-block_card-btn {
    width: 89px;
    height: 28px;
    font-size: 7.5px;
    letter-spacing: 0.675px;
    padding-left: 14px;
    padding-right: 14px;
  }

  .product-block_name--bold {
    font-size: 12px;
    line-height: 18px;
    letter-spacing: 0.24px;
  }

  .product-block_card-btn:after {
    width: 9px;
    height: 9px;
    right: 14px;
  }

  .product-block_more {
    margin-left: 0px;
    font-size: 9.6px;
    letter-spacing: 0.28px;
    margin-top: 15px;
  }

  .product-block_more:after {
    width: 3px;
    height: 7px;
    background-position: center center;
    right: -13px;
  }

  .product-block:before {
    left: 3px;
    top: 3px;
    right: 3px;
    bottom: 3px;
  }

  .products-pseudoelement_3 {
    display: none;
  }

  .btn-more {
    font-size: 14px;
    letter-spacing: 0.28px;
  }

  .btn-more_wrapper {
    margin-top: 42px;
  }

  .btn-more:after {
    width: 4px;
    height: 7px;
    right: -16px;
  }

  .brochure {
    margin-top: 0px;
    height: auto;
  }

  .brochure-img {
    max-width: 170px;
    max-height: 153px;
    top: 66px;
    width: 100%;
    object-fit: contain;
  }

  .brochure-block {
    margin: 0px;
    padding: 0px;
    border: unset;
    padding-top: 35px;
    padding-bottom: 35px;
    height: auto;
  }

  .brochure-btn_wrapper {
    position: relative;
    bottom: auto;
    padding: 0px;
    background: none;
  }

  .brochure-title {
    position: relative;
    padding: 0px;
    top: auto;
    left: auto;
    background: none;
    text-align: center;
  }

  .brochure-dsc {
    font-size: 14px;
    line-height: 20px;
    margin-top: 0px;
    letter-spacing: 0px;
    margin-top: 38px;
    max-width: 132px;
  }

  .brochure-btn_wrapper:before {
    width: 100%;
    height: 37px;
  }

  .brochure-btn_wrapper .btn {
    width: 141px;
    height: 37px;
    border-radius: 18px;
    font-size: 9px;
    letter-spacing: 0.45px;
    margin-top: 10px;
  }

  .stages {
    margin-top: 50px;
    padding-bottom: 50px;
  }

  .stage-block {
    margin-top: 60px;
    flex-wrap: wrap;
    position: relative;
  }

  .stage-block_left {
    width: 100%;
  }

  .stage-block_right {
    width: 100%;
    position: absolute;
    top: -15px;
  }

  .stage-block_title {
    font-size: 18px;
    line-height: 24px;
    letter-spacing: 0.36px;
    padding-left: 130px;
  }

  .stage-block_title:before {
    content: none;
  }

  .stage-block_dsc {
    margin-top: 27px;
  }

  .stage-block_img-wrapper {
    max-width: 103px;
    max-height: 90px;
    top: 0px;
    position: relative;
  }

  .stage-block_number {
    font-size: 75px;
    letter-spacing: 0;
    top: -20px;
    left: -20px;
  }

  .stage-block_img-wrapper:before {
    border-radius: 15px;
    border: 5px solid #ffb748;
    left: 15px;
    top: -10px;
  }

  .stage-block:nth-child(odd) .stage-block_left {
    padding: 0px;
    left: 0px;
  }

  .stage-block:nth-child(odd) {
    flex-direction: row;
  }

  .stage-block:nth-child(odd) .stage-block_title {
    text-align: left;
    padding: 0px;
    padding-left: 125px;
  }

  .stage-block:nth-child(odd) .stage-block_right {
    position: absolute;
    left: 0px;
  }

  .objects {
    margin-top: 0px;
    padding-top: 50px;
    background: #f7f7f7;
    padding-bottom: 60px;
  }

  .objects-background_1 {
    display: none;
  }

  .object-cards {
    margin-top: 28px;
    flex-direction: column;
    width: 100%;
    padding-bottom: 0px;
  }

  .object-cards .slick-list {
    padding-bottom: 40px;
  }

  .object-card {
    background: none;
    border-radius: 10px;
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 7px 24px 0px rgba(0, 0, 0, 0.18);
    padding-left: 15px;
    padding-right: 15px;
    height: auto !important;
    padding-bottom: 20px;
  }

  .object-card:before {
    content: '';
    position: absolute;
    border: 1px solid #f1f1f1;
    opacity: 0.6;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border-radius: 10px;
  }

  .object-card_title {
    font-size: 16px;
    margin-top: 0px;
    letter-spacing: 0.32px;
    line-height: 32px;
    padding: 0px;
    padding-top: 30px;
    margin-bottom: 0px;
    min-height: auto;
  }

  .objects .container {
    padding-right: 33px;
    justify-content: center;
    display: flex;
    flex-direction: column;
    padding-left: 33px;
  }

  .object-card_wrapper {
    padding: 0px;
  }

  .object-card_info:first-child {
    margin-top: 15px;
  }

  .object-card_name {
    font-size: 11px;
    letter-spacing: 0.22px;
  }

  .object-card_value {
    font-size: 11px;
    letter-spacing: 0.22px;
  }

  .object-card_btn-wrapper .btn {
    width: 161px;
    height: 42px;
    font-size: 9px;
    letter-spacing: 0.45px;
  }

  .object-card_slider {
    margin-top: 27px;
  }

  .object-card_btn:after {
    content: none;
  }

  .object-card_info+.object-card_info {
    margin-top: 10px;
  }

  .object-card_btn-wrapper {
    margin-top: 15px;
  }

  .objects .btn-more {
    left: 0px;
    margin-top: 0px;
  }

  .slider-arrow_prev,
  .slider-arrow_next {
    width: 17px;
    height: 17px;
  }

  .slider-arrow_prev {
    left: -7px;
  }

  .slider-arrow_next {
    right: -7px;
  }

  .slider-arrow_prev:before,
  .slider-arrow_next:before {
    width: 4px;
    height: 6px;
  }

  .objects-background_2 {
    display: none;
  }

  .objects-leaf_2 {
    display: none;
  }

  .selection .selection-leaf_1 {
    display: none;
  }

  .selection .selection-leaf_2 {
    display: none;
  }

  .certificates {
    margin-top: 50px;
    padding-bottom: 50px;
  }

  .certificates-slider {
    margin-top: 30px;
  }

  .certificates-slider .slick-list {
    margin: 0 -5px;
  }

  .certificates .slick-slide {
    margin: 0 5px;
  }

  .certificates .container {
    padding-left: 40px;
    padding-right: 40px;
  }

  .clients {
    background: none;
    background-color: #f7f7f7;
    padding-top: 40px;
    padding-bottom: 50px;
  }

  .clients-background_1 {
    display: none;
  }

  .client-btn .btn {
    width: 100%;
    height: 70px;
    text-align: center;
    font-size: 10px;
    letter-spacing: 0.5px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .client-btn {
    margin-top: 20px;
  }

  .client-slider {
    margin-top: 34px;
  }

  .client-slide_img-wrapper:before {
    width: 82px;
    height: 82px;
  }

  .client-slide_img-wrapper:after {
    height: 68px;
    width: 68px;
  }

  .client-slide_name {
    margin-top: 30px;
    font-size: 16px;
    line-height: 28px;
    letter-spacing: 0.32px;
  }

  .client-slide_city {
    margin-top: 0px;
    font-size: 13px;
    line-height: 25px;
    letter-spacing: 0.26px;
  }

  .selection {
    margin-top: 0px;
    padding-bottom: 40px;
    background-position: center center;
  }

  .selection-title {
    font-size: 16px;
    line-height: 20px;
    letter-spacing: 0.8px;
  }

  .clients .container {
    padding-left: 15px;
  }

  .selection-dsc {
    margin-top: 27px;
    font-size: 12px;
    line-height: 18px;
    letter-spacing: 0.6px;
  }

  .selection .btn {
    width: 197px;
    height: 54px;
    font-size: 10px;
    letter-spacing: 0.5px;
  }

  .map-wrapper {
    height: 235px !important;
    width: 100%;
    margin-top: 35px;
  }

  .certificates-arrow_prev:before,
  .certificates-arrow_next:before,
  .client-arrow_prev:before,
  .client-arrow_next:before {
    width: 11px;
    height: 19px;
    background-position: center center;
  }

  .certificates-arrow_prev,
  .client-arrow_prev {
    left: -30px;
  }

  .certificates-arrow_next,
  .client-arrow_next {
    right: -30px;
  }

  .site {
    overflow-x: hidden;
  }

  .location .container {
    padding: 0px;
  }

  .location {
    margin-top: 40px;
  }

  .site .site-main {
    padding-bottom: 0px;
  }

  .footer>.footer-container {
    display: none;
  }

  .footer {
    padding-top: 0px;
  }

  .footer-info {
    margin-top: 0px;
    padding-top: 25px;
    padding-bottom: 0px;
  }

  .footer-info_wrapper {
    flex-direction: column;
  }

  .footer-container {
    padding: 0px;
  }

  .footer-column:nth-child(1),
  .footer-column:nth-child(2),
  .footer-column:nth-child(3) {
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
  }

  .footer-column:nth-child(1) {
    order: 1;
    position: relative;
    z-index: 1;
    box-shadow: 0px -2px 8.9px 1.1px rgba(0, 0, 0, 0.08);
    padding-top: 24px;
    background-color: #fff;
    padding-bottom: 35px;
  }

  .footer-info_title {
    margin-bottom: 0px;
    font-size: 14px;
    letter-spacing: 0.28px;
  }

  .footer-info_address {
    flex-direction: column;
    margin-top: 18px;
  }

  .footer-info_addrses-wrapper {
    width: 100%;
  }

  .footer-info_address-name,
  .copyright-text {
    font-size: 12px;
    line-height: 20px;
    letter-spacing: 0.24px;
  }

  .footer-column:nth-child(3) {
    margin-top: 40px;
  }

  .footer-social+.footer-social {
    margin-left: 10px;
  }

  .footer-call_dsc {
    margin-top: 20px;
  }

  .footer-call_btn {
    display: none;
  }

  .footer-column--right {
    align-items: flex-start;
    margin-top: 30px;
    padding-bottom: 30px;
  }

  .footer-column--right .footer-call {
    text-align: left;
  }

  .footer-column--right .footer-call_btn {
    margin-left: 0;
  }

  .mb-footer_title-pay {
    display: flex;
    font-size: 12px;
    letter-spacing: 0.24px;
    line-height: 32px;
  }

  .footer-social_wrapper {
    max-width: 115px;
    margin-top: 0px;
  }

  .footer-social-block {
    margin-top: 20px;
  }

  .footer-social-item {
    padding: 5px 12px;
    font-size: 12px;
  }

  .footer-pay_wrapper {
    margin-top: 0px;
  }

  .footer-column:nth-child(3) .footer-row:last-child {
    margin-top: 15px;
  }

  .page-cart h1 {
    font-size: 20px;
    line-height: 22px;
    letter-spacing: 0.4px;
    margin-top: 30px;
  }

  .wcibd-buttons-group {
    display: none;
  }

  .page-cart .woocommerce-cart-form-block {
    padding: 0px;
    box-shadow: none;
    margin: 0px;
    background: none;
  }

  .page-cart .container {
    padding: 0px;
  }

  .page-cart .woocommerce-cart-allitems {
    background: none;
    padding-left: 33px;
    margin-top: 0px;
    height: auto;
  }

  .page-cart .woocommerce-cart-form-block:before {
    content: none;
  }

  .page-cart .septic-cart_single-label {
    display: none;
  }

  .page-cart .product-cart_column .product-cart_row:first-child {
    display: none;
  }

  .page-cart .wooocmerce-cart-allitems_text {
    font-size: 16px;
    line-height: 29px;
    letter-spacing: 0.8px;
  }

  .page-cart .breadcrumbs {
    padding-left: 33px;
  }

  .page-cart .woocommerce {
    margin-top: 35px;
  }

  .mb-product_title {
    display: flex;
    font-size: 12px;
    line-height: 20px;
    letter-spacing: 0.24px;
    width: 100%;
  }

  .product-subtotal {
    order: 1;
    font-size: 20px;
    letter-spacing: 0.4px;
    line-height: 100%;
    margin-top: 10px;
    width: 100%;
  }

  .page-cart .product-cart_column {
    margin-left: 15px;
  }

  .page-cart .product-cart_column .product-cart_row:nth-child(2) {
    justify-content: flex-start;
  }

  .product-remove {
    order: 1;
  }

  .woocommerce a.remove {
    margin-left: 0px;
    line-height: 18px;
    font-size: 9px;
  }

  .page-cart .cart_item {
    padding-bottom: 20px;
  }

  .page-cart .woocommerce-Price-amount {
    font-size: 20px;
    letter-spacing: 0.4px;
    line-height: 100%;
    width: 100%;
  }

  .cart-totals__discount .woocommerce-Price-amount {
    width: auto;
  }

  .product-quantity {
    margin-top: 5px;
  }

  .page-cart .cart-collaterals {
    margin: 0px;
    padding: 0px;
    background: #f3f3f3;
    box-shadow: none;
    border-radius: unset;
    padding-left: 33px;
    padding-top: 28px;
    padding-right: 37px;
    padding-bottom: 40px;
  }

  .page-cart .cart-subtotal_price span {
    font-size: 24px;
    line-height: 29px;
    letter-spacing: 1.2px;
  }

  .page-cart .cart-subtotal_table .cart-subtotal_row:nth-child(2) {
    margin-top: 26px;
    padding-bottom: 0px;
    border: unset;
  }

  .page-cart .cart-collaterals:before {
    content: none;
  }

  .page-cart .cart-subtotal_items .wooocmerce-cart-allitems_text {
    font-size: 16px;
    line-height: 29px;
    letter-spacing: 0.464px;
  }

  .page-cart .cart-subtotal_info {
    font-size: 12px;
    line-height: 18px;
    letter-spacing: 0.24px;
  }

  .page-cart .cart-subtotal_table .cart-subtotal_row:nth-child(3) {
    margin-top: 28px;
  }

  .page-cart .wc-proceed-to-checkout .btn-wrapper a {
    width: 100%;
    font-size: 14px;
    letter-spacing: 0.9px;
  }

  .page-cart .btn-wrapper {
    width: 100%;
  }

  .page-cart .wc-proceed-to-checkout {
    margin-top: 22px;
  }

  .page-cart .wc-credit {
    font-size: 15px;
    letter-spacing: 0.75px;
  }

  .page-cart .wc-credit_wrapper {
    margin-top: 30px;
  }

  .page-cart .cart_item:last-child {
    border: unset;
  }

  .page-cart .wc-credit_info {
    font-size: 12px;
    line-height: 18px;
    letter-spacing: 0.24px;
  }

  .page-cart .wc-credit:before {
    background-position: center center;
  }

  .page-cart .wc-credit_info br {
    display: none;
  }

  .page-cart .equipment {
    margin-top: 40px;
    padding-left: 15px;
    padding-right: 15px;
    padding-bottom: 40px;
  }

  .equipment-cards {
    margin-top: 38px;
  }

  .equipment-card {
    width: calc(100% / 2);
    padding: 3px;
  }

  .equipment-card_img-wrapper {
    height: 75px;
  }

  .default-card:before {
    left: 3px;
    top: 3px;
    bottom: 3px;
    right: 3px;
  }

  .equipment-card_wrapper {
    padding-left: 13px;
    padding-top: 15px;
    padding-right: 27px;
    padding-bottom: 22px;
  }

  .equipment-card_dsc {
    display: none;
  }

  .equipment-card_title {
    font-size: 12px;
    line-height: 18px;
    letter-spacing: 0.24px;
  }

  .equipment-card_title--bold {
    font-size: 12px;
    line-height: 18px;
    letter-spacing: 0.24px;
  }

  .equipment-card_price {
    margin-top: 10px;
    font-size: 16px;
    line-height: 20px;
    letter-spacing: 0.32px;
  }

  .equipment .product-block_card-btn {
    width: 89px;
    height: 28px;
    padding-left: 16px;
    padding-right: 14px;
    font-size: 7.5px;
    letter-spacing: 0.375px;
  }

  .equipment-card_addtocart .woocommerce #respond input#submit,
  .equipment-card_addtocart .woocommerce a.button,
  .equipment-card_addtocart .woocommerce button.button,
  .equipment-card_addtocart .woocommerce input.button {
    height: 100%;
    max-width: 89px;
  }

  .equipment-card_addtocart .btn-wrapper:before {
    max-width: 89px;
    height: 28px;
    position: absolute;
    top: 1px;
  }

  .equipment-card_addtocart {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-top: 15px;
  }

  .equipment-card_more {
    margin-left: 0px;
    margin-top: 13px;
    font-size: 9.6px;
    letter-spacing: 0.192px;
  }

  .equipment-card_more:after {
    background-position: center center;
    width: 3px;
    height: 7px;
    right: -13px;
  }

  .checkout-container {
    padding-left: 33px;
    padding-right: 33px;
  }

  .page-main h1 {
    margin-top: 30px;
    text-align: center;
    font-size: 20px;
    line-height: 25px;
    letter-spacing: 0.4px;
    width: 100%;
  }

  .page-main section:first-child,
  .calc-page section:first-child,
  .page-product section:first-child,
  .page-subproduct section:first-child,
  .page-cart section:first-child {
    padding-top: 20px;
  }

  .story {
    margin-top: 0px;
  }

  .page-about .about {
    padding-bottom: 0px;
  }

  .page-about .container {
    padding-right: 37px;
    padding-left: 33px;
    padding-bottom: 50px;
  }

  .story {
    margin-top: 30px;
    padding-top: 45px;
    background-color: #f0f0f0;
    padding-bottom: 50px;
  }

  .story-slider_nav {
    display: none;
  }

  .story-slider {
    margin-right: 0px;
    margin-top: 40px;
  }

  .story-slider_content {
    width: 100%;
  }

  .story-slide_for-column {
    width: 100%;
  }

  .story-slide_for {
    flex-direction: column;
    flex-wrap: wrap;
  }

  .story-slide_dsc {
    margin: 0px;
    font-size: 12px;
    line-height: 18px;
    margin-top: 40px;
    letter-spacing: 0.24px;
  }

  .story-slide_number-prev,
  .story-slide_number-next {
    width: 18px;
    top: 50%;
    transform: translateY(-50%);
    height: 18px;
  }

  .story-slide_number-prev {
    transform: scale(-1, 1) translateY(-50%);
  }

  .story-slide_for .story-slide_for-column:last-child {
    padding-left: 0px;
    margin-top: 25px;
  }

  .story-subslide {
    padding-right: 0px;
  }

  .company {
    margin-top: 45px;
  }

  .company-second_title {
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0.32px;
  }

  .company-block {
    flex-direction: column;
    margin-top: 30px;
  }

  .company-block_left {
    width: 100%;
  }

  .company-dsc {
    margin-top: 20px;
    font-size: 12px;
    line-height: 18px;
    letter-spacing: 0.24px;
  }

  .company-dsc br {
    display: none;
  }

  .company-dsc+.company-dsc {
    margin-top: 15px;
  }

  .company-block_right {
    width: 100%;
    margin-top: 30px;
  }

  .second-company_block,
  .third-company_block {
    margin-top: 60px;
  }

  .second-company_block .company-block_left {
    width: 100%;
  }

  .second-company_block,
  .third-company_block {
    flex-direction: column;
  }

  .second-company_block .company-block_left img {
    position: relative;
    max-width: 352px;
    max-height: 188px;
    left: -30%;
    margin-top: 15px;
  }

  .second-company_block .company-block_right {
    width: 100%;
    margin-top: 0px;
  }

  .company-dsc {
    margin-top: 20px;
  }

  .fourth-company_block {
    margin-top: 60px;
  }

  .default-list_item {
    font-size: 12px;
    line-height: 25px;
    letter-spacing: 0.24px;
    margin-top: 0px;
  }

  .default-list_item br {
    display: none;
  }

  .default-list_items {
    padding-left: 18px;
    padding-top: 15px;
    margin-top: 0px;
  }

  .default-list_item:before {
    left: -18px;
    width: 6px;
    height: 6px;
    top: 10px;
  }

  .branches {
    margin-top: 50px;
    padding-top: 40px;
    background-color: #f0f0f0;
  }

  .branch-info_wrapper {
    margin-top: 30px;
    flex-direction: column;
  }

  .branch-info {
    width: 100%;
  }

  .branch-city {
    font-size: 20px;
    line-height: 40px;
    letter-spacing: 0.4px;
  }

  .branch-contacts {
    margin-top: 0px;
  }

  .branch-contact_address {
    padding-left: 24px;
    font-size: 14px;
    line-height: 31px;
    letter-spacing: 0.28px;
  }

  .branch-contact_address:before {
    width: 16px;
    height: 16px;
    top: 50%;
    transform: translateY(-50%);
  }

  .branch-contact_number {
    margin-top: 5px;
    padding-left: 24px;
    font-size: 18px;
    line-height: 23px;
    letter-spacing: 0.36px;
  }

  .branch-contact_number:before {
    width: 16px;
    height: 16px;
  }

  .branch-contact_wrapper {
    margin-top: 25px;
  }

  .branch-contact_number-btn .btn {
    width: 129px;
    height: 40px;
    font-size: 11px;
    letter-spacing: 0.55px;
    padding-left: 23px;
    padding-right: 18px;
  }

  .branch-contact_number-btn .btn:after {
    margin-left: 8px;
    width: 11px;
    height: 10px;
  }

  .page-about .location {
    display: none;
  }

  .branch-slider_wrapper {
    width: 100%;
  }

  .branch-dsc {
    margin-top: 10px;
    padding-right: 37px;
    font-size: 12px;
    line-height: 18px;
    letter-spacing: 0.24px;
    white-space: normal;
  }

  .branch-dsc br {
    display: none;
  }

  .branch-info_wrapper:nth-child(odd) {
    flex-direction: column;
  }

  .branch-info_wrapper:nth-child(odd) .branch-info {
    margin-left: 0px;
  }

  .branch-image_wrapper {
    margin-top: 20px;
  }

  .team {
    margin-top: 40px;
  }

  .team-carousel {
    margin-top: 25px;
  }

  .team-carousel .default-arrow_prev {
    left: 0px;
    z-index: 1;
  }

  .team-carousel .default-arrow_next {
    right: 0px;
  }

  .team-slide .team-name {
    font-size: 16px;
    letter-spacing: 0.32px;
  }

  .team-slide figure figcaption {
    margin-top: 20px;
  }

  .team-slide .team-position {
    font-size: 12px;
    letter-spacing: 0.24px;
    line-height: 100%;
    margin-top: 10px;
  }

  .partners {
    margin-top: 60px;
  }

  .page-about .team .container {
    padding-bottom: 0px;
  }

  .partners-carousel {
    margin-top: 30px;
    margin-bottom: 50px;
  }

  .partners .container {
    padding-left: 60px;
    padding-right: 60px;
    padding-bottom: 0px;
  }

  .partners-card_modal-link {
    display: none;
  }

  .partners-carousel .default-arrow_next {
    right: -40px;
    top: 25px;
  }

  .partners-carousel .default-arrow_prev {
    left: -40px;
    top: 25px;
  }

  .partners-card {
    padding-bottom: 0px;
    height: 87px;
    overflow: hidden;
  }

  .partners-card_wrapper-img {
    height: 87px;
    min-height: unset;
  }

  .page-main .certificates {
    margin-top: 0px;
  }

  .page-main,
  .calc-page {
    padding-bottom: 0px;
  }

  .product-card {
    width: calc(100% / 2 - 7.5px);
    margin-top: 25px;
    margin-right: 0px;
    padding: 3px;
    padding-bottom: 15px;
  }

  .product-card:nth-child(odd) {
    margin-right: 7.5px;
  }

  .product-card:nth-child(even) {
    margin-left: 7.5px;
  }

  .goods .container {
    padding-bottom: 60px;
  }

  .product-card .default-card_img-wrapper {
    min-height: unset;
    max-height: 105px;
  }

  .product-card .default-card_img {
    max-width: unset;
    max-height: unset;
    width: 100%;
    object-fit: contain;
  }

  .default-card_title {
    padding-left: 2px;
    padding-right: 2px;
    margin-top: 0px;
    font-size: 11px;
    line-height: 16px;
    margin-top: 10px;
    letter-spacing: 0.22px;
  }

  .service-cards {
    margin-top: 30px;
  }

  .service-card {
    width: calc(100% / 2 - 7.5px);
    margin-right: 0px;
    margin-top: 15px;
  }

  .service-card:nth-child(odd) {
    margin-right: 7.5px;
  }

  .service-card:nth-child(even) {
    margin-left: 7.5px;
  }

  .service-card:nth-child(-n + 4) {
    margin-top: 15px;
  }

  .service-card:nth-child(-n + 2) {
    margin-top: 0px;
  }

  .service-info_wrapper:first-child {
    margin-top: 80px;
  }

  .default-second_title {
    font-size: 20px;
    line-height: 31px;
    letter-spacing: 0.4px;
  }

  .page-services .default-text,
  .sub-product_info .default-text,
  .page-subservices .default-text {
    margin-top: 25px;
  }

  .default-text {
    font-size: 12px;
    line-height: 18px;
    letter-spacing: 0.24px;
  }

  .service-info .container {
    padding-bottom: 50px;
  }

  .page-subservices .default-second_title,
  .page-services .default-second_title,
  .page-subproduct .default-second_title {
    margin-top: 40px;
  }

  .page-subservices .default-third_title,
  .page-services .default-third_title,
  .page-subproduct .default-third_title {
    font-size: 16px;
    line-height: 25px;
    margin-top: 15px;
    letter-spacing: 0.32px;
  }

  .default-bulleted_list-item {
    font-size: 12px;
    line-height: 18px;
    letter-spacing: 0.24px;
  }

  .default-arrow_prev,
  .default-arrow_next {
    width: 18px;
    height: 29px;
  }

  .default-bulleted_list {
    margin-left: 18px;
    margin-top: 15px;
  }

  .default-bulleted_list-item:before {
    left: -18px;
    width: 6px;
    height: 6px;
    top: 5px;
  }

  .default-text_border {
    width: 100%;
    border: 2px solid var(--color-secondary);
    padding-top: 17px;
    padding-left: 15px;
    padding-right: 14px;
    padding-bottom: 17px;
    font-size: 12px;
    line-height: 18px;
    letter-spacing: 0.24px;
  }

  .page-subservices .default-text_border,
  .page-services .default-text_border {
    margin-top: 30px;
  }

  .delivery-wrapper {
    margin-top: 30px;
  }

  .delivery-container {
    flex-direction: column;
  }

  .delivery-container_left {
    width: 100%;
    order: 1;
  }

  .delivery-container_right {
    width: 100%;
  }

  .delivery-img {
    position: relative;
    left: -30%;
    max-width: 369px;
    max-height: 198px;
  }

  .delivery-container_right p+p,
  .delivery-wrapper p+p {
    margin-top: 25px;
  }

  .delivery-container_right p,
  .delivery-wrapper p {
    font-size: 12px;
    line-height: 18px;
    letter-spacing: 0.24px;
  }

  .delivery-container_wrapper {
    margin-top: 40px;
  }

  .delivery-wrapper .delivery-container:nth-child(2) .delivery-container_left {
    flex: 100%;
    order: 0;
  }

  .delivery-second_title {
    margin-bottom: 0px;
  }

  .delivery-wrapper .delivery-container:nth-child(2) .delivery-img {
    position: relative;
    width: 60%;
  }

  .delivery-addresses_table-wrapper {
    display: flex;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
  }

  .table-column {
    border: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    padding-bottom: 30px;
    margin-top: 30px;
  }

  .table-column:first-child {
    margin-top: 0px;
  }

  .delivery-addresses_table {
    flex-direction: column;
  }

  .delivery-addresses_table {
    border-radius: unset;
    border: none;
    box-shadow: unset;
  }

  .table-contacts_adress {
    font-size: 14px;
    line-height: 14px;
    letter-spacing: 0.28px;
    padding-left: 5px;
  }

  .delivery-addresses_table .table-column:first-child .table-row:first-child {
    border-top-left-radius: unset;
    background: none;
    height: auto;
    padding-left: 0px;
    align-items: flex-start;
  }

  .delivery-addresses_table-title {
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 0.4px;
    color: var(--color-primary);
    font-family: 'Gilroy-ExtraBold';
  }

  .delivery-addresses_table .table-row:first-child {
    background: none;
    padding-left: 0px;
    align-items: flex-start;
    height: auto;
  }

  .delivery-addresses_table-contacts {
    padding-left: 20px;
    height: auto;
    justify-content: flex-start;
    display: inline-flex;
    margin-top: 20px;
  }

  .table-contacts_number {
    font-size: 18px;
    letter-spacing: 0.36px;
    line-height: 100%;
    padding-left: 5px;
  }

  .table-contacts_adress:before {
    width: 16px;
    height: 21px;
    top: 50%;
    transform: translateY(-50%);
  }

  .table-contacts_number:before {
    width: 16px;
    height: 16px;
    top: 50%;
    transform: translateY(-50%);
  }

  .delivery-addresses {
    margin-top: 40px;
    padding-top: 40px;
    background: #f7f7f7;
    padding-bottom: 40px;
    margin-bottom: 50px;
  }

  .delivery-addresses .h2 {
    display: none;
  }

  .delivery-addresses .mb-h2 {
    display: block;
    text-transform: uppercase;
    font-size: 20px;
    line-height: 25px;
    font-family: 'Gilroy-Heavy';
    letter-spacing: 0.4px;
    text-align: center;
  }

  .delivery-addresses_content {
    flex-direction: column;
    margin-top: 40px;
  }

  .delivery-addresses_content-dsc {
    padding-left: 75px;
    width: 100%;
    font-size: 12px;
    line-height: 18px;
    letter-spacing: 0.24px;
  }

  .delivery-addresses_content-dsc br {
    display: none;
  }

  .delivery-addresses_content-dsc:nth-child(1):before {
    width: 62px;
    height: 42px;
  }

  .delivery-addresses_content-dsc+.delivery-addresses_content-dsc {
    margin-top: 20px;
  }

  .delivery-addresses_table .table-column:last-child .delivery-addresses_table-title {
    font-size: 18px;
    line-height: 25px;
    letter-spacing: 0.36px;
  }

  .delivery-addresses_table-subtitle {
    font-size: 18px;
    line-height: 25px;
    letter-spacing: 0.36px;
  }

  .table-column:last-child {
    padding-bottom: 0px;
  }

  .delivery-regions {
    margin-top: 0px;
  }

  .delivery-regions_list {
    flex-direction: column;
    margin-top: 30px;
  }

  .delivery-regions_list-column {
    width: 100%;
    padding-left: 18px;
  }

  .delivery-regions_list-item {
    font-size: 12px;
    letter-spacing: 0.2px;
    line-height: 20px;
  }

  .delivery-regions_list-item:before {
    left: -18px;
    width: 6px;
    height: 6px;
  }

  .delivery-regions_list-item+.delivery-regions_list-item {
    margin-top: 0px;
  }

  .delivery-payment {
    margin-top: 45px;
    padding-top: 45px;
    background-color: #f7f7f7;
    padding-bottom: 0px;
  }

  .delivery-payment_wrapper {
    margin-top: 40px;
    justify-content: center;
  }

  .delivery-payment_column {
    width: 50%;
  }

  .develiry-payment_text {
    font-size: 12px;
    letter-spacing: 0.2px;
    line-height: 100%;
    margin-top: 0px;
  }

  .delivery-payment_img {
    max-width: 60px;
    max-height: 60px;
  }

  .table-column:last-child {
    padding-bottom: 45px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  }

  .question-form {
    margin-top: 0px;
    padding-top: 75px;
    background-color: #f7f7f7;
  }

  .question-form_container {
    flex-direction: column;
  }

  .question-form_container .column {
    width: 100%;
  }

  .question-form_title {
    font-size: 24px;
    line-height: 30px;
    letter-spacing: 0px;
    text-align: center;
  }

  .question-form_dsc {
    font-size: 14px;
    letter-spacing: 0px;
    line-height: 20px;
    text-align: center;
    max-width: 290px;
    margin: 0 auto;
    margin-top: 30px;
  }

  .question-form_dsc br {
    display: none;
  }

  .question-form_img {
    display: none;
  }

  .mb-question-form_img {
    display: block;
    position: relative;
  }

  .question-form_container .column:last-child {
    position: relative;
    margin-top: -300px;
  }

  .question-form_wrapper:before {
    top: 6px;
    left: 6px;
    right: 6px;
    bottom: 6px;
  }

  .page-delivery {
    padding-bottom: 60px;
  }

  .question-form_wrapper {
    border-radius: 10px;
    padding-right: 30px;
    padding-top: 30px;
    padding-left: 35px;
    padding-bottom: 30px;
  }

  .question-form_second-title {
    font-size: 24px;
    line-height: 25px;
    letter-spacing: 0px;
  }

  .label {
    font-size: 12px;
    letter-spacing: 0px;
    padding-left: 9px;
  }

  .input {
    font-size: 12px;
    letter-spacing: 0px;
    padding-bottom: 10px;
    padding-left: 9px;
  }

  .question-form_container .btn {
    width: 100%;
    height: 63px;
    font-size: 11px;
    letter-spacing: 0.55px;
    text-align: center;
  }

  .textarea {
    max-height: 70px;
  }

  .work-card {
    width: 100%;
    margin-right: 0px;
    margin-top: 35px;
  }

  .page-works .container {
    padding-right: 37px;
  }

  .work-card:nth-child(-n + 3) {
    margin-top: 35px;
  }

  .work-card:first-child {
    margin-top: 0px;
  }

  .works .tabs {
    margin-top: 35px;
  }

  .works .tab-button_container {
    justify-content: center;
  }

  .works .tab-content_container {
    margin-top: 35px;
  }

  .page-dealer {
    padding-bottom: 60px;
  }

  .calc-page h1 {
    margin-top: 40px;
    font-size: 20px;
    line-height: 25px;
    letter-spacing: 0.4px;
  }

  .calc .container {
    padding: 0px;
  }

  .calc .breadcrumbs {
    padding-left: 33px;
  }

  .quiz-block_right {
    display: none;
  }

  .quiz_wrapper {
    margin-top: 35px;
  }

  .quiz-block {
    box-shadow: none;
    border-radius: unset;
    background: #f7f7f7;
    padding-top: 23px;
    padding-left: 33px;
    padding-right: 37px;
    padding-bottom: 60px;
  }

  .quiz-block:before {
    content: none;
  }

  .quiz-block_left {
    z-index: 0;
    width: 100%;
    height: auto;
  }

  .quiz-form_choice {
    padding-left: 0px;
  }

  .calc-page {
    background: #fff;
  }

  .quiz-step_numbers {
    margin-top: 0px;
    font-size: 16px;
    letter-spacing: 0px;
  }

  .quiz-title {
    font-size: 20px;
    letter-spacing: 0px;
    line-height: 24px;
    margin-top: 10px;
  }

  .quiz-form_block:nth-child(1) .quiz-form_choice {
    margin-top: 35px;
  }

  .quiz-label_radio img {
    max-width: 97px;
    max-height: 67px;
  }

  .quiz-text {
    font-size: 12px;
    letter-spacing: 0px;
    line-height: 16px;
  }

  .quiz-form_step {
    width: 33px;
  }

  .quiz-form_steps {
    max-width: 290px;
    margin-top: 30px;
    margin-bottom: 60px;
  }

  .quiz-nav_prev {
    margin-right: 0px;
    font-size: 12px;
    letter-spacing: 0.9px;
    margin-left: 20px;
  }

  .quiz-nav_next .btn {
    width: 156px;
    height: 50px;
    font-size: 12px;
    letter-spacing: 0.9px;
    line-height: 12px;
  }

  .quiz-nav_next .btn span {
    margin-left: 4px;
  }

  .quiz-form_nav {
    margin-top: 0px;
    margin: 0 auto;
    max-width: 250px;
    justify-content: space-between;
  }

  .quiz-form_block-wrapper {
    height: 400px;
  }

  .quiz-nav_prev:before {
    width: 4px;
    height: 7px;
  }

  .quiz-form_count {
    margin-top: 55px;
  }

  .quiz-form_count-first,
  .quiz-form_count-last {
    position: absolute;
    margin-top: 20px;
  }

  .quiz-form_count-first {
    left: 0px;
  }

  .quiz-form_count-last {
    right: 0px;
  }

  .quiz-form_count-humans {
    justify-content: flex-start;
    margin-top: 80px;
  }

  .quiz-form_count-input {
    font-size: 20px;
    line-height: 100%;
    border-radius: 10px;
    width: 88px;
    height: 45px;
    letter-spacing: 0px;
  }

  .quiz-form_count-text {
    margin-left: 18px;
    font-size: 16px;
    letter-spacing: 0px;
  }

  .quiz-form_block:nth-child(3) .quiz-form_choice,
  .quiz-form_block:nth-child(4) .quiz-form_choice {
    flex-direction: column;
    margin-top: 45px;
  }

  .quiz-form_block:nth-child(3) .quiz-label,
  .quiz-form_block:nth-child(4) .quiz-label {
    flex-direction: row;
    align-items: flex-start;
    position: relative;
  }

  .quiz-label_radio {
    width: 110px;
    height: 70px;
  }

  .quiz-form_block:nth-child(3) .quiz-label_radio img,
  .quiz-form_block:nth-child(4) .quiz-label_radio img {
    width: 110px;
    height: 70px;
  }

  .quiz-form_block:nth-child(3) .quiz-label+.quiz-label {
    margin-top: 30px;
  }

  .quiz-form_block:nth-child(4) .quiz-label+.quiz-label {
    margin-top: 30px;
  }

  .quiz-form_block:nth-child(3) .quiz-text {
    white-space: nowrap;
    margin-left: 8px;
    margin-top: 10px;
    font-size: 16px;
    letter-spacing: 0px;
  }

  .quiz-form_block:nth-child(3) .quiz-subtext {
    font-size: 12px;
    letter-spacing: 0px;
    position: absolute;
    left: 120px;
    top: 0;
    margin-top: 30px;
    white-space: nowrap;
    text-align: left;
    line-height: 18px;
  }

  .quiz-form_block:nth-child(3) .quiz-label_radio:before,
  .quiz-form_block:nth-child(4) .quiz-label_radio:before {
    width: 28px;
    height: 28px;
  }

  .quiz-form_block:nth-child(4) .quiz-text {
    font-size: 16px;
    letter-spacing: 0px;
    margin-top: 25px;
    margin-left: 20px;
    text-align: left;
  }

  .quiz-form_block:nth-child(5) .quiz-form_choice {
    margin-top: 45px;
  }

  .quiz-form_block:nth-child(6) .quiz-form_choice {
    margin-top: 110px;
  }

  .quiz-form_block:nth-child(7) .quiz-subtitle {
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0px;
    margin-top: 20px;
  }

  .quiz-form_block:nth-child(7) .quiz-title {
    margin-top: 0px;
  }

  .quiz-form_block:nth-child(7) .quiz-block_form-wrapper {
    margin-left: 0px;
  }

  .quiz-form_block:nth-child(7) .quiz-block_info-text {
    font-size: 12px;
    line-height: 18px;
    letter-spacing: 0px;
  }

  .quiz-form_block:nth-child(7) .quiz-block_info-img {
    width: 41px;
    height: 41px;
    margin-right: 13px;
  }

  .quiz-form_block:nth-child(7) .quiz-block_info {
    margin-top: 25px;
  }

  .quiz-block_img-wrapper {
    display: none;
  }

  .quiz-block_container {
    margin-top: 30px;
  }

  .quiz-block_form input {
    padding-top: 15px;
    padding-left: 20px;
    padding-bottom: 15px;
    font-size: 14px;
    letter-spacing: 0px;
  }

  .quiz-title br {
    display: none;
  }

  .quiz-block_form fieldset+fieldset {
    margin-top: 20px;
  }

  form .btn-wrapper {
    margin-top: 20px;
  }

  .quiz-block_form .btn {
    width: 100%;
    height: 70px;
  }

  .quiz-block_form .btn-wrapper:after {
    position: absolute;
    content: '';
    width: 75px;
    height: 55px;
    background-image: url(assets/img/form-calc.png);
    background-size: cover;
    background-repeat: no-repeat;
    bottom: 16px;
    right: -31px;
  }

  .quiz-block_form-success {
    padding-top: 0px;
  }

  .quiz-block_form-success .quiz-block_title {
    font-size: 20px;
    line-height: 20px;
    letter-spacing: 0px;
  }

  .quiz-block_form-success .quiz-block_subtitle {
    font-size: 12px;
    margin-top: 20px;
    line-height: 16px;
  }

  .quiz-block_form-success .quiz-block_success-gifts {
    margin-top: 35px;
  }

  .quiz-block_form-success .quiz-block_gifts-title {
    font-size: 16px;
  }

  .quiz-block_form-success .quiz-block_gifts-container {
    margin-top: 0px;
  }

  .quiz-block_gift-success:nth-child(1) img,
  .quiz-block_gift-success:nth-child(2) img,
  .quiz-block_gift-success:nth-child(3) img {
    width: 70%;
    height: 60%;
  }

  .quiz-block_gift-success-price {
    height: 25px;
    width: 50px;
    font-size: 12px;
    left: -15px;
  }

  .quiz-block_gift-success-text {
    font-size: 14px;
    line-height: 18px;
    margin-top: 5px;
  }

  .quiz-block_gift-success-subtitle {
    font-size: 12px;
    text-align: center;
  }

  .quiz-block_gift-success-wrapper:after {
    content: none;
  }

  .dealer-info {
    margin-top: 30px;
  }

  .default-dsc {
    font-size: 12px;
    line-height: 18px;
    letter-spacing: 0.2px;
  }

  .dealer-info_title {
    margin-top: 35px;
  }

  .default-fird_title {
    font-size: 16px;
    line-height: 40px;
    letter-spacing: 0.32px;
  }

  .dealer-info_list {
    margin-top: 0px;
    padding-left: 17px;
  }

  .dealer-info_list-item {
    font-size: 12px;
    line-height: 12px;
    letter-spacing: 0.24px;
  }

  .dealer-info_list-item:before {
    left: -17px;
    width: 7px;
    height: 7px;
  }

  .dealer-info_list-item+.dealer-info_list-item {
    margin-top: 15px;
  }

  .dealer-steps {
    margin-top: 40px;
    padding-top: 45px;
    background: #f7f7f7;
    padding-bottom: 45px;
  }

  .dealer-steps_title {
    font-size: 20px;
    line-height: 25px;
    letter-spacing: 0.4px;
  }

  .dealer-steps_title .c-text--green {
    display: block;
  }

  .dealer-step_wrapper {
    margin-top: 55px;
  }

  .dealer-step_number {
    font-size: 16px;
    letter-spacing: 0.32px;
  }

  .dealer-step_info {
    margin-left: 5px;
  }

  .dealer-step_title {
    font-size: 16px;
    letter-spacing: 0.32px;
    line-height: 100%;
  }

  .dealer-step_dsc {
    font-size: 12px;
    line-height: 18px;
    letter-spacing: 0.24px;
    margin-top: 15px;
  }

  .dealer-step_dsc br {
    display: none;
  }

  .dealer-step+.dealer-step {
    margin-top: 25px;
  }

  .btn-dealer {
    margin-top: 20px;
    width: 100%;
  }

  .dealers-cards {
    margin-top: 30px;
  }

  .dealers .container {
    padding-right: 37px;
    padding-bottom: 45px;
  }

  .dealers-card {
    margin-right: 0px;
    width: 100%;
  }

  .dealers-card:nth-child(-n + 4) {
    margin-top: 30px;
  }

  .dealers-card {
    margin-top: 30px;
  }

  .dealers-card:first-child {
    margin-top: 0px;
  }

  .page-dealers {
    padding-bottom: 60px;
  }

  .page-blog .col-lg-3 {
    display: none;
  }

  .articles-card {
    margin-left: 0px;
    margin-top: 0px;
  }

  .article-card {
    width: 100%;
    margin-top: 30px;
  }

  .article-card:nth-child(-n + 3) {
    margin-top: 30px;
  }

  .article-card:first {
    margin-top: 0px;
  }

  .page-article .col-lg-3 {
    display: none;
  }

  .page-article .category {
    display: none;
  }

  .article .wrapper {
    margin-left: 0px;
  }

  .article .content {
    margin-top: 30px;
  }

  .article .content .category-info {
    width: 100%;
    justify-content: space-between;
  }

  .article-content .article-title {
    font-size: 20px;
    line-height: 25px;
    letter-spacing: 0.4px;
  }

  .article-content .article-img_wrapper {
    margin-top: 25px;
  }

  .article-content .default-text {
    font-size: 12px;
    line-height: 18px;
    letter-spacing: 0.24px;
  }

  .article-content .default-second_title {
    margin-top: 40px;
    font-size: 20px;
    line-height: 25px;
    letter-spacing: 0.4px;
  }

  .article-content .default-second_title br {
    display: none;
  }

  .article-content .default-text br {
    display: none;
  }

  .article-content .default-second_title+.default-text {
    margin-top: 25px;
  }

  .article-img_wrapper+.default-text {
    margin-top: 25px;
  }

  .page-contacts {
    padding-bottom: 60px;
  }

  .header-cart_text {
    display: none;
  }

  .btn-dealer .btn {
    width: 100%;
    height: 63px;
    font-size: 11px;
    letter-spacing: 0.55px;
    text-align: center;
  }

  .dealer .container {
    padding-left: 0px;
    padding-right: 0px;
  }

  .dealer .breadcrumbs,
  .dealer .default-dsc,
  .dealer .default-fird_title,
  .dealer .dealer-info_list,
  .dealer .dealer-steps {
    padding-left: 33px;
    padding-right: 15px;
  }

  .contact-member tr {
    display: flex;
    flex-direction: column;
    padding-bottom: 30px;
    margin-top: 30px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  }

  .contact-member tr:first-child {
    margin-top: 0px;
  }

  .contact-member td:first-child {
    width: 100%;
  }

  .contact-member td {
    border: none;
  }

  .contact-member_city {
    flex: 100%;
    padding-left: 0px;
    font-size: 20px;
    line-height: 40px;
    letter-spacing: 0.4px;
  }

  .contact-member {
    box-shadow: none;
  }

  .contact-member_info {
    flex: 100%;
    padding: 0px;
  }

  .contact-members {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    padding-bottom: 45px;
  }

  .contact-member_info-address {
    padding-left: 24px;
    font-size: 14px;
    line-height: 31px;
    letter-spacing: 0.28px;
  }

  .contact-member_info-number {
    padding-left: 24px;
    font-size: 18px;
    line-height: 24px;
    letter-spacing: 0.36px;
    margin-top: 10px;
  }

  .contact-member_info-address:before {
    width: 16px;
    top: 50%;
    transform: translateY(-50%);
    height: 21px;
  }

  .contact-member_info-number:before {
    width: 16px;
    height: 16px;
    top: 50%;
    transform: translateY(-50%);
  }

  .contact-member_info-wrapper {
    display: none;
  }

  .article-content .default-bulleted_list-item {
    font-size: 12px;
    line-height: 18px;
    letter-spacing: 0.24px;
    margin-top: 10px;
  }

  .article-content .default-bulleted_list {
    margin-left: 18px;
  }

  .article-content .default-bulleted_list-item:before {
    left: -18px;
  }

  .article-content .default-bulleted_list+.default-third_title {
    margin-top: 15px;
  }

  .article-content .default-text+.default-third_title {
    margin-top: 20px;
  }

  .article-content .default-bulleted_list+.default-second_title {
    margin-top: 40px;
  }

  .article-rating {
    border: none;
    padding: 0px;
    flex-direction: column;
    align-items: flex-start;
    margin-top: 50px;
    padding-top: 25px;
    position: relative;
    margin-right: calc(50% - 50vw);
    margin-left: calc(50% - 50vw);
    background: #f0f0f0;
    padding-left: 33px;
    padding-right: 65px;
    padding-bottom: 30px;
  }

  .article-rating_title {
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0.9px;
    white-space: nowrap;
  }

  .article-rating_stars {
    margin-left: 0px;
    margin-top: 15px;
  }

  .article-content .brochure-block {
    margin: 0px;
    margin-top: 40px;
    padding: 0px;
    left: 0px;
    border: none;
    height: auto;
    padding-bottom: 35px;
  }

  .article-content .brochure-title {
    background: none;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 0px;
    top: 0px;
    left: 0px;
    padding: 0px;
  }

  .article-content .brochure-img {
    max-width: 170px;
    max-height: 153px;
    top: 25px;
    right: -30px;
  }

  .page-article .brochure-dsc {
    margin-top: 30px;
    padding-left: 0px;
  }

  .article-content .brochure-btn_wrapper {
    padding-left: 0px;
    padding-right: 0px;
  }

  .article-content .brochure-btn_wrapper .btn {
    border-radius: 18px;
    width: 142px;
    height: 37px;
    font-size: 9px;
    letter-spacing: 0.45px;
  }

  .article-content .brochure-btn_wrapper:before {
    width: 100%;
  }

  .article-content .brochure-btn_wrapper .btn:after {
    content: none;
  }

  .article-comments {
    margin-top: 0px;
    padding-top: 35px;
    margin-right: calc(50% - 50vw);
    margin-left: calc(50% - 50vw);
    background-color: #f0f0f0;
    padding-left: 33px;
    padding-right: 37px;
    padding-bottom: 0px;
    border: none;
  }

  .woocommerce-info {
    margin-top: 60px !important;
    padding-left: 33px !important;
    font-size: 18px !important;
    letter-spacing: 0.36px !important;
    margin-bottom: 20px !important;
  }

  .return-to-shop a {
    font-size: 12px !important;
    line-height: 18px !important;
    letter-spacing: 0.24px !important;
    border-bottom: 1px solid #232323 !important;
    margin-bottom: 30px !important;
    margin-left: 33px !important;
  }

  .woocommerce a.button:after {
    width: 8px !important;
    height: 8px !important;
    right: -12px !important;
  }

  .footer-text_small {
    white-space: nowrap;
  }

  .article-comments_title {
    font-size: 20px;
    letter-spacing: 0.4px;
    line-height: 100%;
  }

  .article-comments_count {
    font-size: 20px;
    letter-spacing: 0.4px;
    margin-left: 10px;
    line-height: 100%;
  }

  .article-comments_container {
    margin-top: 33px;
    margin-bottom: 0px;
    padding-bottom: 0px;
    border: none;
  }

  .article-comment_text {
    font-size: 12px;
    line-height: 18px;
    letter-spacing: 0.24px;
  }

  .article-comment_author {
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0.9px;
  }

  .article-comment_date {
    font-size: 14px;
    letter-spacing: 0.9px;
    margin-left: 24px;
  }

  .article-comment_content {
    margin-top: 18px;
  }

  .article-comment+.article-comment {
    margin-top: 30px;
  }

  .article-comment_form {
    margin-right: calc(50% - 50vw);
    margin-left: calc(50% - 50vw);
    background-color: #fff;
    padding-top: 30px;
    padding-left: 33px;
    padding-right: 37px;
    padding-bottom: 50px;
  }

  .comment-form {
    flex-direction: column;
  }

  .article-comment_form-title {
    font-size: 20px;
    letter-spacing: 0.4px;
    line-height: 100%;
  }

  .comment-form-comment {
    margin-top: 20px;
  }

  .comment-form-comment textarea {
    border-radius: 8px;
    padding-left: 19px;
    padding-top: 18px;
    font-size: 12px;
    line-height: 18px;
    letter-spacing: 0.24px;
    height: 115px;
  }

  .comment-form_wrap {
    margin-top: 10px;
    margin-left: 0px;
  }

  .comment-form-author input,
  .comment-form-email input {
    border-radius: 8px;
    font-size: 12px;
    line-height: 100%;
    letter-spacing: 0.24px;
    padding-left: 23px;
    height: 45px;
    width: 100%;
    max-width: unset;
  }

  .comment-form-email {
    margin-top: 10px;
  }

  .page-article form .btn-wrapper {
    margin-top: 10px;
  }

  .page-article .form-submit .btn {
    width: 100%;
    border-radius: 31px;
    height: 63px;
    max-width: unset;
  }

  .form-privacy_checkbox {
    left: 0px;
  }

  .comment-form_wrap .privacy {
    justify-content: flex-start;
  }

  .form-privacy_text {
    left: 35px;
  }

  .article-products {
    margin-top: 39px;
  }

  .article-products_title {
    font-size: 18px;
    line-height: 100%;
    letter-spacing: 0.36px;
  }

  .article-product_blocks {
    flex-wrap: wrap;
    margin-top: 35px;
  }

  .article-product_blocks .product-block {
    width: calc(100% / 2 - 10px);
  }

  .article-product_blocks .product-block {
    margin-top: 20px;
  }

  .article-product_blocks .product-block:nth-child(-n + 2) {
    margin-top: 0px;
  }

  .article-product_blocks .product-block_img-wrapper {
    height: 80px;
  }

  .article-product_blocks .product-block_card-btn {
    width: 89px;
    height: 28px;
    font-size: 7.5px;
    letter-spacing: 0.675px;
    padding-left: 14px;
    padding-right: 14px;
  }

  .article-product_blocks .product-block_card-btn:after {
    width: 9px;
    height: 9px;
    right: 14px;
  }

  .article-product_blocks .product-block_info {
    padding-top: 15px;
    padding-left: 10px;
  }

  .article-product_blocks .product-block_name {
    font-size: 12px;
    line-height: 18px;
    letter-spacing: 0.24px;
  }

  .article-product_blocks .product-block_price {
    padding-left: 10px;
    font-size: 16px;
    line-height: 20px;
    letter-spacing: 0.32px;
    margin-top: 8px;
  }

  .article-product_blocks .product-block_more {
    margin-left: 0px;
  }

  .article-product_blocks .product-block_wrapper {
    margin-left: 10px;
    margin-top: 10px;
  }

  .article-product_blocks .product-block:before {
    left: 3px;
    top: 3px;
    right: 3px;
    bottom: 3px;
  }

  .article-product_blocks .product-block_more {
    margin-top: 15px;
  }

  .subservice-cards {
    margin-top: 40px;
  }

  .subservice-card {
    width: 100%;
    margin-right: 0px;
  }

  .subservice-card {
    margin-top: 20px;
  }

  .subservice-card:nth-child(-n + 4) {
    margin-top: 20px;
  }

  .subservice-card:first-child {
    margin-top: 0px;
  }

  .page-subservices .default-card_title {
    font-size: 16px;
  }

  .page-service .service .default-third_title {
    margin-top: 25px;
  }

  .default-third_title {
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0.32px;
  }

  .work-slider_thumbnail img,
  .service-slider_thumbnail img {
    height: 44px;
    border-radius: 8px;
  }

  .work-slider_thumbnail .work-slide_thumbnail,
  .service-slider_thumbnail .service-slide_thumbnail {
    margin: 0 3.5px;
  }

  .work-slider_thumbnail .slick-list,
  .service-slider_thumbnail .slick-list {
    margin: -3.5px;
  }

  .work-slider_thumbnail,
  .service-slider_thumbnail {
    margin-top: 7px;
  }

  .page-service .service-container {
    margin-top: 30px;
  }

  .page-service .service-info {
    margin-left: 0px;
  }

  .service-text {
    margin-top: 25px;
    font-size: 12px;
    line-height: 18px;
    letter-spacing: 0.24px;
  }

  .service-info_price {
    padding-left: 44px;
    margin-top: 25px;
  }

  .service-info_price:before {
    width: 24px;
    height: 24px;
    background-position: center center;
    background-size: cover;
  }

  .service-info_price .bold {
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0.32px;
  }

  .page-service .service-info .btn-wrapper {
    margin-top: 20px;
  }

  .page-service .service-info .btn {
    width: 220px;
    height: 56px;
    text-align: center;
    font-size: 11px;
    letter-spacing: 0.55px;
  }

  .service-price {
    margin-top: 0px;
    padding-top: 30px;
    background: #f6f6f6;
  }

  .default-table {
    margin-top: 25px;
    border-radius: 10px;
    overflow-x: auto;
  }

  .page-service .service-price_text {
    font-size: 12px;
    line-height: 18px;
    letter-spacing: 0.24px;
  }

  .page-service .default-table_column:first-child .default-table_row:first-child {
    padding-left: 22px;
    padding-right: 22px;
  }

  .default-table_column:first-child .default-table_row:first-child {
    border-top-left-radius: 10px;
  }

  .page-service .default-table_column:first-child .default-table_row:first-child {
    font-size: 14px !important;
    line-height: 14px !important;
    letter-spacing: 0.28px !important;
  }

  .default-table_column:first-child {
    border-top-left-radius: 10px;
  }

  .page-service .default-table_column:first-child .default-table_row,
  .page-service .default-table_row {
    font-size: 14px;
    line-height: 100%;
    white-space: nowrap;
    letter-spacing: 0.28px;
  }

  .page-service .default-table_row {
    min-height: 60px;
  }

  .page-service .default-table_column .default-table_row:first-child {
    padding-left: 20px;
    padding-right: 20px;
  }

  .default-table_column:last-child .default-table_row:first-child {
    border-top-right-radius: 10px;
  }

  .page-service .default-table_column:last-child .default-table_row:first-child {
    padding-left: 20px;
    padding-right: 20px;
  }

  .page-service .service-price_info {
    margin-top: 30px;
  }

  .work-price_form,
  .service-price_form {
    margin-top: 0px;
    min-height: auto;
    max-height: unset;
    padding-top: 35px;
    background-color: #fff;
    margin-right: calc(50% - 50vw);
    margin-left: calc(50% - 50vw);
    padding-left: 33px;
    padding-right: 37px;
    padding-bottom: 50px;
  }

  .work-price_form-block_left,
  .service-price_form-block_left {
    width: 100%;
    padding-left: 0px;
  }

  .work-price_form-wrapper,
  .service-price_form-wrapper {
    border: none;
    border-radius: unset;
    flex-direction: column;
  }

  .work-price_form_text,
  .service-price_form_text {
    font-size: 22px;
    line-height: 28px;
    letter-spacing: 0px;
  }

  .work-price_form-title,
  .service-price_form-title {
    position: relative;
    top: 0px;
    padding-left: 0px;
    padding-right: 0px;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0px;
    margin-top: 35px;
    width: 100%;
    background-color: #fff;
    white-space: nowrap;
  }

  .work-price_form_container,
  .service-price_form-container {
    max-width: unset;
    width: 100%;
  }

  .work-price_form-block_right,
  .service-price_form-block_right {
    width: 100%;
  }

  .work-price_form-container .wpcf7,
  .service-price_form-container .wpcf7 {
    padding-left: 0px;
    padding-right: 0px;
    margin-top: 35px;
  }

  .work-price_form-container .wpcf7 .label,
  .service-price_form-container .wpcf7 .label {
    font-size: 14px;
    padding-left: 16px;
    line-height: 100%;
  }

  .work-price_form-container .wpcf7 .input,
  .service-price_form-container .wpcf7 .input {
    font-size: 14px;
    padding-left: 16px;
  }

  .esrvice-price_container-btn form .btn-wrapper {
    margin-top: 30px;
  }

  .work-price_form-container .wpcf7 .service-price_container-btn,
  .service-price_form-container .wpcf7 .service-price_container-btn {
    position: relative;
    background: #ffffff;
    width: 100%;
    padding: 0px;
    margin: 0px;
  }

  .page-service .objects {
    margin-top: 0px;
    padding-top: 50px;
    background-color: #f7f7f7;
  }

  .addservices {
    margin-top: 55px;
  }

  .page-service .container {
    padding-bottom: 60px;
  }

  .page-service .question-form {
    margin-top: 0px;
  }

  .work-container {
    margin-top: 30px;
  }

  .work-info {
    padding-top: 0px;
    padding-left: 0px;
    padding-bottom: 0px;
    padding-right: 0px;
    background: none;
    box-shadow: none;
    margin-top: 40px;
  }

  .work-info:before {
    content: none;
  }

  .works .container {
    padding-right: 15px;
  }

  .work-info_wrapper {
    margin-top: 30px;
  }

  .work-info_text--bold {
    font-size: 12px;
    line-height: 0.28px;
    line-height: 30px;
  }

  .work-info_text {
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 0.24px;
  }

  .work-info_wrapper-row+.work-info_wrapper-row {
    margin-top: 0px;
  }

  .work-info_row {
    margin-top: 10px;
  }

  .work-info_link {
    margin-left: 30px;
    font-size: 12px;
    line-height: 100%;
    letter-spacing: 0.6px;
    display: inline-flex;
    margin-top: 25px;
  }

  .work-info_link:before {
    left: -30px;
  }

  .work-info_row .btn {
    width: 163px;
    height: 45px;
    padding-left: 0px;
    text-align: center;
    font-size: 11px;
    letter-spacing: 0.55px;
    justify-content: center;
  }

  .work-info_row .btn:after {
    content: none;
  }

  .work-complete {
    margin-top: 40px;
    padding-top: 40px;
    background-color: #f3f3f3;
  }

  .work-complete .container {
    padding-bottom: 40px;
  }

  .work-complete_map {
    width: 100%;
    order: 1;
    margin-top: 30px;
  }

  .work-complete_wrapper {
    width: 100%;
    margin-left: 0px;
  }

  .work-complete_container {
    flex-direction: column;
    margin-top: 40px;
  }

  .work-complete_map .map {
    width: 100% !important;
    height: 177px !important;
  }

  .work-complete_date-name,
  .work-complete_place-name {
    margin-left: 30px;
    font-size: 14px;
    letter-spacing: 0.28px;
  }

  .work-complete_date-name:before {
    left: -30px;
    width: 19px;
    height: 19px;
  }

  .work-complete_place-name:before {
    left: -30px;
    width: 13px;
    height: 18px;
    background-position: center center;
  }

  .work-complete_date-text,
  .work-complete_place-text {
    margin-left: 5px;
    font-size: 13px;
    line-height: 20px;
    letter-spacing: 0.26px;
  }

  .work-complete_dsc {
    font-size: 12px;
    line-height: 18px;
    letter-spacing: 0.24px;
    margin-top: 20px;
  }

  .work-tasks {
    margin-top: 40px;
  }

  .work-task_wrapper:after {
    position: relative;
    display: flex;
    margin: 0 auto;
    width: 181px;
    height: 236px;
    bottom: -30px;
  }

  .work-task_wrapper {
    padding-top: 30px;
  }

  .work-task_title {
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0.32px;
  }

  .work-task_container {
    margin-top: 20px;
  }

  .work-task {
    font-size: 12px;
    letter-spacing: 0.2px;
    line-height: 100%;
    padding-left: 32px;
  }

  .work-task:before {
    width: 18px;
    height: 18px;
    background-position: center center;
  }

  .work-task+.work-task {
    margin-top: 15px;
  }

  .work-materials {
    margin-top: 50px;
    padding-top: 50px;
    background-color: #f3f3f3;
    padding-bottom: 60px;
  }

  .work-materials_table .default-table_column:first-child .default-table_row:first-child {
    padding-left: 20px;
  }

  .default-table_row:first-child {
    min-height: 47px;
    font-size: 12px !important;
    letter-spacing: 0.24px !important;
  }

  .work-materials_table .default-table_column:first-child .default-table_row {
    padding-left: 20px;
    font-size: 12px;
    letter-spacing: 0.24px;
    padding-bottom: 0px;
    padding-top: 0px;
    display: flex;
    justify-self: center;
    align-items: center;
  }

  .work-materials_table .default-table_row {
    padding: 0px;
    font-size: 12px;
    letter-spacing: 0.24px;
    padding-bottom: 0px;
    padding-top: 0px;
    display: flex;
    justify-self: center;
    align-items: center;
  }

  .default-table_column:last-child .default-table_row:first-child {
    padding-left: 20px;
    padding-right: 20px;
  }

  .work-price_form .container {
    padding-left: 0px;
    padding-right: 0px;
  }

  .work-stages {
    margin-top: 0px;
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .work-stage_list {
    margin-top: 40px;
    padding-left: 15px;
  }

  .work-stage_item {
    font-size: 12px;
    line-height: 18px;
    letter-spacing: 0.24px;
  }

  .work-stage_item-number {
    left: -15px;
    font-size: 12px;
    line-height: 24px;
    letter-spacing: 0.24px;
  }

  .work-info_title {
    font-size: 20px;
    letter-spacing: 0.4px;
    line-height: 100%;
  }

  .work-stage_item+.work-stage_item {
    margin-top: 15px;
  }

  .work-product {
    margin-top: 0px;
    background: #fff;
    padding-top: 45px;
    padding-bottom: 50px;
  }

  .work-product .product-content {
    flex-direction: column;
    margin-top: 40px;
  }

  .product-info_wrapper {
    margin-left: 0px;
    box-shadow: none;
    padding-top: 0px;
    padding-bottom: 0px;
    border-radius: unset;
  }

  .product-info_wrapper:before {
    content: none;
  }

  .page-work .product-block_row form,
  .page-product .product-block_row form {
    flex-direction: column;
  }

  .product-content .product-info_weight,
  .product-content .product-info_generate,
  .product-content .product-info_users,
  .product-content .product-info_size {
    align-items: baseline;
    display: flex;
  }

  .page-work .product-block_name,
  .page-product .product-block_name {
    font-size: 16px;
    letter-spacing: 0.32px;
  }

  .product-slider_container {
    order: 1;
    padding-top: 30px;
    background: #fff;
  }

  .product-slider_thumbnail img {
    height: 65px;
  }

  .product-slider .slick-slide img {
    height: 196px;
    object-fit: contain;
  }

  .work-product .product-info_container .product-block_row {
    width: 100%;
    margin-top: 15px;
  }

  .product-info_size-name,
  .product-info_weight-name,
  .product-info_generate-name,
  .product-info_users-name {
    font-size: 12px;
    letter-spacing: 0.24px;
    line-height: 100%;
  }

  .product-info_size-value,
  .product-info_weight-value,
  .product-info_generate-value,
  .product-info_users-value {
    font-size: 12px;
    line-height: 100%;
    letter-spacing: 0.24px;
    margin-left: 5px;
  }

  .page-work .product-block_column:first-child,
  .page-product .product-block_column:first-child {
    margin-right: 0px;
  }

  form.cart .product-block_column:last-child {
    margin-top: 15px;
  }

  .work-card_text {
    line-height: 100%;
  }

  .work-card_value {
    margin-left: 5px;
  }

  .work-card_btn:before {
    right: 12%;
    background-position: center center;
  }

  .page-work .product-block_count-label,
  .page-product .product-block_count-label {
    margin-top: 10px;
  }

  .product-block_download-link {
    font-size: 12px;
    letter-spacing: 0.6px;
  }

  .product-block_download-link:before {
    width: 19px;
    height: 17px;
    background-repeat: no-repeat;
    background-position: center center;
  }

  .product-info_container .product-block_card-btn:after {
    width: 12px;
    height: 12px;
    right: 40px;
  }

  .work-review {
    margin-top: 0px;
    padding-top: 40px;
    background-color: #f3f3f3;
    padding-bottom: 40px;
  }

  .work-review .container {
    padding-right: 37px;
  }

  .work-review_text-wrapper {
    padding: 0px;
    margin: 0px;
    background-color: #f3f3f3;
    max-width: unset;
    box-shadow: none;
    border-radius: unset;
    margin-top: 40px;
  }

  .work-review_text-wrapper:before {
    content: none;
  }

  .work-review_text-title {
    font-size: 16px;
    line-height: 25px;
    letter-spacing: 0.32px;
  }

  .work-review_text-city {
    margin-top: 10px;
    font-size: 14px;
    line-height: 25px;
    letter-spacing: 0.28px;
  }

  .work-review_text-dsc {
    margin-top: 30px;
    font-size: 12px;
    line-height: 18px;
    letter-spacing: 0.24px;
  }

  .work-review_text-dsc br {
    display: none;
  }

  .work-review_text-wrapper:after {
    width: 207px;
    height: 268px;
  }

  .work-review_text-wrapper:after {
    right: 6px;
    top: -10px;
    width: 116px;
    height: 84px;
  }

  .page-work {
    padding-bottom: 50px;
  }

  .page-subproduct .col-lg-3 {
    display: none;
  }

  .wrapper-selection {
    display: none;
  }

  .h2.filter-title {
    display: none;
  }

  .filter-block_wrapper {
    display: none;
  }

  .sub-product h1 {
    text-align: center;
    width: 100%;
    font-size: 20px;
    line-height: 25px;
    letter-spacing: 0.4px;
  }

  .sub-product .wrapper {
    margin-left: 0px;
    margin-top: 30px;
  }

  .page-subproduct .form-wppp-select {
    margin-top: 20px;
  }

  .page-subproduct .product-sort_label:nth-child(1) .select-wrapper {
    padding-left: 0px;
  }

  .page-subproduct .woocommerce-ordering {
    margin: 0;
    float: none;
  }

  .product-blocks {
    width: 100%;
    padding-right: 0px;
  }

  .sub-product .product-block {
    margin-right: 0px;
    width: calc(100% / 2 - 10px);
  }

  .sub-product .product-block:first-child {
    margin-top: 0px;
  }

  .sub-product .product-block:nth-child(-n + 3) {
    margin-top: 20px;
  }

  .sub-product .product-block {
    margin-top: 20px;
  }

  .product-block_img {
    object-fit: contain;
  }

  .page-subproduct .product-blocks {
    margin-top: 20px;
  }

  .sub-product .product-block_price {
    padding-left: 10px;
    font-size: 16px;
    line-height: 20px;
    letter-spacing: 0.32px;
    margin-top: 8px;
  }

  .product-block:before {
    content: none;
  }

  .sub-product .product-block_info {
    padding-top: 15px;
    padding-left: 10px;
  }

  .default-card_hover-text {
    font-size: 14px;
    line-height: 18px;
    text-transform: uppercase;
  }

  .default-card_hover-text:after {
    margin-left: 6px;
    width: 6px;
    height: 10px;
  }

  .page-subproduct .default-text_border {
    width: 100%;
    border: 2px solid var(--color-secondary);
    padding-top: 17px;
    padding-left: 15px;
    padding-right: 14px;
    margin-top: 20px;
    padding-bottom: 17px;
  }

  .page-services .default-text_border+.default-second_title,
  .page-subproduct .default-text_border+.default-second_title {
    margin-top: 40px;
  }

  .sub-product .product-block_img-wrapper {
    height: 80px;
  }

  .sub-product .product-block_more {
    margin-left: 0px;
    font-size: 9.6px;
  }

  .sub-product .product-block_wrapper {
    margin-left: 10px;
    flex-wrap: wrap;
    margin-top: 10px;
    padding-bottom: 0px;
  }

  .sub-product .product-block_more:after {
    width: 3px;
    height: 7px;
  }

  .sub-product .product-block_card-btn:after {
    width: 9px;
    height: 9px;
    right: 14px;
  }

  .sub-product_info {
    margin-left: 0px;
    margin-top: 40px;
  }

  .default-number_list-item_text {
    font-size: 12px;
    line-height: 18px;
    letter-spacing: 0.24px;
    margin-top: 15px;
  }

  .default-number_list {
    margin-top: 30px;
  }

  .default-number_list-item_title {
    font-size: 16px;
    line-height: 18px;
    letter-spacing: 0.32px;
  }

  .defaut-number_list-item_number {
    font-size: 16px;
    line-height: 18px;
    letter-spacing: 0.32px;
  }

  .default-table_row {
    font-size: 12px;
    line-height: 16px;
    padding: 15px;
  }

  .default-table_column:first-child .default-table_row {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .mb-filter-wrapper {
    display: flex;
    margin-top: 25px;
  }

  .mb-filter_button {
    font-size: 11px;
    letter-spacing: 0.55px;
    font-family: 'Gilroy-Medium';
    display: flex;
    align-items: center;
    border-radius: 19px;
    border: 1px solid var(--color-secondary);
    height: 38px;
    padding-left: 40px;
    width: 158px;
    margin: 0 auto;
    position: relative;
  }

  .mb-filter_button:before {
    content: '';
    position: absolute;
    left: 20px;
    background: url(assets/img/subproduct-icon_settings--green.svg);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    width: 13px;
    height: 13px;
  }

  .mb-filter-container {
    position: fixed;
    left: 0px;
    top: 0px;
    bottom: 0px;
    right: 0px;
    background: #fff;
    z-index: 10;
    overflow-y: auto;
    padding-bottom: 40px;
    display: none;
  }

  .mb-filter-container--active {
    display: block;
  }

  .mb-filter_title-container {
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0px 2px 6.23px 0.77px rgba(0, 0, 0, 0.11);
    position: relative;
  }

  .mb-filter-title {
    font-size: 14px;
    line-height: 29px;
    letter-spacing: 0.9px;
    font-family: 'Gilroy-ExtraBold';
  }

  .mb-filter-close {
    position: absolute;
    right: 0px;
    width: 17px;
    height: 17px;
    display: flex;
    right: 37px;
  }

  .mb-filte-close img {
    object-fit: cover;
    object-position: center center;
  }

  .filter-buttons .berocket_aapf_widget {
    flex-wrap: wrap;
  }

  .filter-buttons .berocket_aapf_widget-title_div.disable_collapse {
    display: none;
  }

  .mb-filter-choice {
    margin-top: 15px;
    padding-left: 33px;
    padding-right: 37px;
  }

  .filter-buttons {
    margin-top: 24px;
    flex-wrap: wrap;
    gap: 8px;
  }

  .filter-button,
  .filter-button__more {
    margin: 0;
    font-size: 12px;
    padding: 8px 12px;
    height: auto;
  }

  .filter-buttons {
    max-height: 86px;
  }

  .filter-button:hover,
  .filter-button.active {
    font-size: 12px;
  }

  .filter-buttons .berocket_label_widgets {
    font-size: 10px;
    padding-left: 14px;
    padding-right: 14px;
    padding-top: 7px;
    padding-bottom: 7px;
    letter-spacing: 0.2px;
  }

  .filter-buttons ul.berocket_aapf_widget li {
    margin-right: 9px;
  }

  .filter-buttons ul.berocket_aapf_widget li {
    margin-top: 9px;
  }

  .filter-block_options {
    width: 100%;
    max-height: unset;
    overflow: hidden;
    flex-direction: column;
  }

  .select-wrapper {
    padding-left: 0px;
  }

  .page-subproduct .filter-block_options .filter-block_option:nth-child(4) {
    max-width: unset;
    width: 90%;
  }

  .filter-block_option:nth-child(-n + 2) {
    margin-top: 30px;
  }

  .filter-block_option:nth-child(3) {
    margin-top: 30px;
  }

  .filter-block_option:nth-child(4) .berocket_aapf_widget {
    margin-top: 15px;
  }

  .filter-block_options .slide .ui-state-default,
  .filter-block_options .slide .ui-widget-content .ui-state-default,
  .filter-block_options .slide .ui-widget-header .ui-state-default {
    width: 20px;
    top: -6.5px;
    height: 20px;
  }

  .filter-block_options .berocket_aapf_widget li.slider span.left input,
  .filter-block_options .berocket_aapf_widget li.slider span.right input {
    font-size: 15px;
    letter-spacing: 0.3px;
    padding-left: 12px;
    padding-right: 12px;
    padding-bottom: 12px;
    padding-top: 12px;
  }

  .filter-block_option-all {
    transform: none;
    flex-direction: column;
    margin-top: 0px;
  }

  .filter-block_option {
    width: 100%;
  }

  .filter-block_option-all .filter-block_option:nth-child(4) .berocket_aapf_widget {
    margin-top: 0px;
  }

  .filter-block_more {
    width: 100%;
    margin-left: 0px;
    margin-right: 0px;
    align-items: flex-start;
  }

  .page-subproduct .woocommerce-info {
    font-size: 18px;
    line-height: 24px;
    padding: 0px;
    margin: 0px;
  }

  .fixed-scroll {
    overflow: hidden;
  }

  .product-content {
    flex-direction: column;
  }

  .product-slider_container {
    order: 0;
    padding-top: 0px;
  }

  .page-product .product-info_wrapper {
    background: unset;
    margin-top: 30px;
    z-index: 0;
  }

  .page-product .product-tabs {
    padding: 0px;
    background-color: unset;
    box-shadow: none;
    border-radius: unset;
    margin-top: 20px;
    margin-right: calc(50% - 50vw);
    margin-left: calc(50% - 50vw);
  }

  .page-product .product-tabs:before {
    content: none;
  }

  .page-product .tab-content_container {
    margin-top: 0px;
    padding: 0px;
  }

  .page-product .tab-button_container {
    max-width: unset;
    overflow-x: auto;
    background-color: #f6f6f6;
    height: 50px;
    padding-left: 10px;
    padding-right: 37px;
  }

  .page-product .tab-button {
    margin-right: 23px;
    font-size: 12px;
    letter-spacing: 0.24px;
    font-family: 'Gilroy-ExtraBold';
  }

  .page-product .tab-button:before {
    content: none;
  }

  .page-product .product-info_size-value,
  .page-product .product-info_weight-value,
  .page-product .product-info_generate-value,
  .page-product .product-info_users-value {
    font-size: 12px;
  }

  .page-product .tab-content p {
    font-size: 14px;
    line-height: 18px;
    letter-spacing: 0.24px;
    padding-top: 20px;
    padding-left: 10px;
    padding-right: 10px;
  }

  .page-product .tab-content p+p {
    margin-top: 15px;
  }

  .product-review_name,
  .product-review_date {
    font-size: 14px;
    line-height: 14px;
    letter-spacing: 0.28px;
  }

  .product-reviews {
    padding-top: 20px;
    padding-left: 10px;
    padding-right: 10px;
  }

  .product-review_date {
    margin-left: 15px;
  }

  .page-product .product-review p {
    padding-left: 0px;
    padding-top: 0px;
  }

  .product-review+.product-review {
    margin-top: 20px;
  }

  .work-objects {
    margin-top: 50px;
  }

  .page-product .work-objects {
    display: none;
  }

  .equipment {
    margin-top: 50px;
  }

  .related {
    margin-top: 50px;
    padding-bottom: 40px;
  }

  .products-blocks {
    margin-top: 30px;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .product-block {
    height: auto;
    width: calc(100% / 2 - 10px);
    margin-right: 0px;
    margin-bottom: 0px;
    margin-top: 20px;
    padding-bottom: 15px;
  }

  .product-block:nth-child(-n + 2) {
    margin-top: 0px;
  }

  .related .product-block_wrapper {
    margin-left: 10px;
  }

  .page-product .related .product-block_name {
    font-size: 12px;
    letter-spacing: 0.25px;
  }

  .page-product .related .product-block_price {
    padding-left: 10px;
    font-size: 16px;
    line-height: 20px;
    letter-spacing: 0.32px;
    margin-top: 8px;
    margin-left: 0px;
  }

  .page-product .related .product-block_card-btn,
  .page-product .related .btn-wrapper {
    width: 89px;
    height: 28px;
  }

  .page-product .related .product-block_card-btn {
    width: 89px;
    height: 28px;
    font-size: 7.5px;
    letter-spacing: 0.675px;
    padding-left: 14px;
    padding-right: 14px;
  }

  .product-block_more {
    margin-top: 10px;
  }

  .related .product-block_info {
    padding-top: 15px;
    padding-left: 10px;
    margin-top: 0px;
    margin-left: 0px;
  }

  .page-product .related .product-block_name--bold {
    font-size: 12px;
    line-height: 18px;
    letter-spacing: 0.24px;
  }

  .product-block:before {
    content: '';
    position: absolute;
    border: 1px solid rgba(210, 210, 210, 0.5);
    border-radius: 10px;
    left: 3px;
    top: 3px;
    right: 3px;
    bottom: 3px;
  }

  .checkout-left_blocks {
    width: 100%;
    margin-top: 30px;
    max-width: unset;
  }

  .checkout-blocks {
    flex-direction: column;
  }

  .checkout-right_block {
    width: 100%;
    padding-left: 0px;
    margin-top: 40px;
  }

  .checkout-container_step_one .checkout-step_btn--hidden {
    display: none;
  }

  .checkout-container_step_two .checkout-step_btn:first-child {
    display: none;
  }

  .page-about .branch-dsc {
    display: none;
  }

  .branch-slide_thumbnail-img {
    height: 60px;
  }

  .branch-slider_wrapper {
    margin-top: 20px;
  }

  .team-carousel .slick-slide {
    margin: 0px;
  }

  .default-arrow_prev,
  .default-arrow_next {
    background-position: center center;
    background-size: cover;
  }

  .checkout-wrapper {
    border-radius: unset;
    margin-top: 15px;
    box-shadow: none;
  }

  .checkout-wrapper:before {
    content: none;
  }

  .checkout-info {
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0.28px;
  }

  .checkout-step_btn-number {
    width: 42px;
    height: 42px;
    font-size: 20px;
    margin-right: 15px;
  }

  .checkout-step_btn:first-child:after {
    content: none;
  }

  .checkout-step_btn-text {
    white-space: nowrap;
    font-size: 18px;
    letter-spacing: 0.36px;
  }

  .checkout-step_btn:first-child {
    margin-right: 0px;
  }

  .checkout-return {
    margin-left: 15px;
  }

  .checkout-header {
    padding-bottom: 15px;
  }

  .checkout-fields {
    margin-top: 30px;
  }

  .woocommerce form .form-row label {
    font-size: 16px;
    line-height: 18px;
    letter-spacing: 0.32px;
  }

  .woocommerce-input-wrapper {
    margin-top: 10px;
  }

  .woocommerce form .form-row input.input-text,
  .woocommerce form .form-row textarea {
    height: 50px;
    font-size: 16px;
    padding-left: 15px;
  }

  .checkout-left_blocks {
    border-right: none;
  }

  .woocommerce form .form-row {
    margin-top: 20px;
  }

  .checkout-title {
    font-size: 18px;
    letter-spacing: 0.36px;
    padding-bottom: 15px;
  }

  .checkout-goods {
    margin-top: 20px;
  }

  .checkout-total {
    padding-bottom: 30px;
  }

  .checkout-right_block .btn-wrapper .checkout-button {
    width: 100%;
  }

  .wc_payment_method label:last-child:after {
    content: none;
  }

  .wc_payment_method label {
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0.28px;
  }

  .checkout-payments {
    margin-top: 30px;
  }

  .checkout-thankyou_title {
    font-size: 28px;
    line-height: 100%;
    letter-spacing: 0.56px;
  }

  .checkout-thankyou_image {
    width: 140px;
    margin-top: 30px;
    margin-bottom: 50px;
  }

  .checkout-container {
    z-index: 0;
  }

  .modal-form_get_calculation .modal-form_container:after,
  .modal-form_calculation .modal-form_container:after {
    display: none;
  }

  .fancybox-slide--html {
    padding: 15px;
  }

  .modal-form_get_calculation .modal-form_container,
  .modal-form_calculation .modal-form_container {
    padding-top: 30px;
    padding-bottom: 30px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .modal-form_get_calculation .modal-form_wrapper,
  .modal-form_calculation .modal-form_wrapper {
    margin-left: 15px;
    margin-top: 30px;
  }

  .modal-form_choice .modal-form_wrapper {
    margin: 0 auto;
  }

  .modal-form_get_calculation .default-modal_dsc,
  .modal-form_calculation .default-modal_dsc {
    margin-top: 0px;
  }

  .modal-form_success-info {
    font-size: 14px;
    line-height: 18px;
    padding-left: 10px;
    padding-right: 10px;
  }

  .modal-form_success-info br {
    display: none;
  }

  .modal-form_success-img img {
    height: 140px;
    width: 140px;
  }

  .modal-form_choice .modal-form_container:before {
    content: none;
  }

  .quiz-form_choice {
    justify-content: space-between;
  }

  .quiz-label {
    width: calc(100% / 3 - 10px);
  }

  .mb-categories {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .mb-categories .mb-button {
    font-size: 13px;
    letter-spacing: 0.65px;
    width: 138px;
    height: 38px;
    border-radius: 19px;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
    padding-left: 40px;
    font-family: 'Gilroy-Medium';
    border: 1px solid var(--color-secondary);
  }

  .mb-categories .mb-button:before {
    content: '';
    position: absolute;
    left: 0px;
    border: 4px solid transparent;
    border-top: 6px solid var(--color-secondary);
    left: 18px;
  }

  .mb-categories .mb-button--active:before {
    border: 4px solid transparent;
    border-bottom: 6px solid var(--color-secondary);
    top: 11px;
  }

  .mb-categories_container {
    position: relative;
    flex-direction: column;
    padding-top: 55px;
    width: 138px;
    top: -38px;
    border: 1px solid var(--color-secondary);
    border-radius: 19px;
    padding-left: 13px;
    padding-bottom: 10px;
    display: none;
  }

  .mb-categories .mb-button--active+.mb-categories_container {
    display: flex;
  }

  .mb-categories_container a {
    font-size: 11px;
    line-height: 34px;
    letter-spacing: 0.55px;
  }

  .page-subarticles .col-lg-3 {
    display: none;
  }

  .page-subarticles .container {
    padding-right: 37px;
  }

  .page-subarticles {
    padding-bottom: 50px;
  }

  .mb-tabs-container {
    display: flex;
    flex-direction: column;
    margin-top: 30px;
  }

  .mb-tabs-container .tab-button_container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
  }

  .mb-tabs-container .tab-button_container .tab-button {
    font-size: 11px;
    letter-spacing: 0.22px;
    line-height: 11px;
    text-transform: uppercase;
    font-family: 'Gilroy-Bold';
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 7px;
    padding-bottom: 7px;
    border: 2px solid #f8b05b;
    text-align: center;
    border-radius: 14px;
    margin-right: 15px;
    display: flex;
    align-items: center;
  }

  .mb-tabs-container .tab-button_container .tab-button:last-child {
    margin-right: 0px;
  }

  .mb-tabs-container .tab-button_container .tab-button.tab-button_active {
    background: var(--color-secondary);
    border: none;
    color: #fff;
  }

  .kinds .container {
    padding-left: 15px;
    padding-right: 15px;
  }

  .tab-content_container {
    display: flex;
    flex-direction: column;
    margin-top: 15px;
  }

  .tab-image_wrapper {
    display: flex;
    justify-content: center;
    margin-top: 20px;
  }

  .tab-image_wrapper img {
    height: 150px;
    object-fit: contain;
    object-position: center center;
  }

  .tab-info_wrapper {
    margin-top: 25px;
  }

  .tab-info_row {
    display: flex;
    flex-direction: row;
  }

  .tab-info_row+.tab-info_row {
    margin-top: 20px;
  }

  .tab-info_name {
    font-size: 12px;
    line-height: 100%;
    letter-spacing: 0.24px;
    font-family: 'Gilroy-ExtraBold';
    width: 70%;
  }

  .tab-info_value {
    font-size: 12px;
    line-height: 100%;
    letter-spacing: 0.24px;
    width: 50%;
  }

  .tab-content {
    display: none;
  }

  .tab-content.tab-active {
    display: flex;
    flex-direction: column;
  }

  .partners-modal {
    padding: 0px;
    width: auto;
  }

  .partners-modal_content {
    flex-direction: column;
    padding-left: 15px;
    padding-right: 15px;
    padding-bottom: 30px;
  }

  .partners-modal_info {
    width: 100%;
  }

  .partners-modal_slider-wrapper {
    width: 100%;
    margin-top: 30px;
  }

  .partners-modal_2 .partners-modal_info {
    width: 100%;
  }

  .partners-modal_2 .partners-modal_info-logo_img {
    width: 30%;
    height: auto;
    left: 35%;
  }

  .partners-modal_info-text {
    font-size: 12px;
    line-height: 12px;
    letter-spacing: 0.24px;
  }

  .partners-modal_info-value {
    font-size: 12px;
    line-height: 12px;
    letter-spacing: 0.24px;
    margin-left: 5px;
  }

  .partners-modal_info-row+.partners-modal_info-row {
    margin-top: 10px;
  }

  .partners-modal_2 .partners-modal_slider-wrapper {
    width: 100%;
  }

  .partners-modal_info {
    margin-top: 100px;
  }

  .partners-modal_slide-img {
    height: 140px;
  }

  .partners-modal_slide-thumbnail_img {
    height: 50px;
  }

  .partners-modal_slide-thumbnail {
    height: 50px;
  }

  .partners-modal_3 .partners-modal_info-logo_img {
    width: 35%;
    height: auto;
    top: 25px;
    left: 32%;
  }

  .partners-modal_3 .partners-modal_image-wrapper {
    width: 100%;
  }

  .partners-modal_3 .partners-modal_info {
    width: 100%;
  }

  .partners-modal_image {
    width: 100%;
    margin-top: 30px;
  }

  .partners-card_wrapper-img {
    height: 74px;
  }

  .partners-modal_form-close {
    position: absolute;
    top: -35px;
    right: -25px;
  }

  .partners-modal_info-logo_img {
    width: 50%;
    height: auto;
    top: 0px;
    left: 25%;
  }

  .partners-modal_4 .partners-modal_info-row:nth-child(3) .partners-modal_info-value {
    font-size: 12px;
    line-height: 18px;
    letter-spacing: 0.24px;
  }

  .partners-modal_4 .partners-modal_info-logo_img {
    width: 30%;
    height: auto;
    left: 35%;
    top: 0px;
  }

  .partners-modal_video {
    width: 100%;
    margin-top: 30px;
  }

  .partners-modal_video-wrapper video {
    width: 100%;
    height: auto;
  }

  .partners-modal_5 .partners-modal_slider-wrapper {
    width: 100%;
  }

  .partners-modal_5 .partners-modal_info {
    width: 100%;
  }

  .partners-modal_5 .partners-modal_info-logo_img {
    width: 60%;
    height: auto;
    top: 30px;
  }

  .partners-modal_6 .partners-modal_info-logo_img {
    width: 30%;
    height: auto;
    top: 30px;
    left: 35%;
  }

  .partners-modal_6 .partners-modal_info {
    width: 100%;
  }

  .partners-modal_6 .partners-modal_slider-wrapper {
    width: 100%;
  }

  .modal-form_close {
    position: absolute;
    top: -35px;
    right: 5px;
    cursor: pointer;
  }

  .tab-content.tab--active {
    display: flex;
    flex-direction: column;
  }

  .fancybox-toolbar {
    display: none;
  }

  .product-block_img-wrapper {
    min-height: 80px;
  }

  .modal-form_choice .modal-form_wrapper {
    max-width: 100%;
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media screen and (max-width: 768px) {
  .default-privacy_wrapper span.wpcf7-list-item-label::before {
    left: 0px;
  }

  .default-privacy_text {
    padding-left: 30px;
  }

  .modal-form_close {
    right: 15px;
  }

  .modal-form_brochure .modal-form_container:after {
    content: none;
  }

  .modal-form_brochure .modal-form_wrapper {
    margin: 0px;
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 30px;
    padding-bottom: 30px;
    max-width: 100%;
  }

  .modal-form_brochure .modal-form_container {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .mb-container_header {
    padding-left: 20px;
    padding-right: 20px;
  }

  .container {
    padding-left: 15px;
  }

  .modal-form_get_calculation .modal-form_wrapper,
  .modal-form_calculation .modal-form_wrapper {
    margin-left: 0px;
    margin-top: 15px;
    max-width: 100%;
  }

  .about {
    padding-bottom: 40px;
  }

  .kinds {
    margin-top: 0px;
    padding-top: 40px;
  }

  .stage-block p+p {
    margin-top: 20px;
  }

  .object-card_slide-img {
    max-height: 120px;
  }

  .object-card:before {
    content: none;
  }

  .modal-form_choice .modal-form_container {
    padding-bottom: 20px;
    padding-top: 20px;
  }

  .page-about .container {
    padding-left: 15px;
    padding-right: 15px;
  }

  .about-block_right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .about-img {
    margin-left: 0px;
  }

  .story {
    margin-top: 0px;
    padding-bottom: 0px;
  }

  .branches {
    margin-top: 0px;
  }

  .sub-product .product-block {
    padding-bottom: 20px;
  }

  .product-block_price {
    display: flex;
    flex-direction: column;
  }

  .woocommerce-head-container {
    gap: 16px 6px;
  }

  .pagination-article,
  .woocommerce-pagination {
    flex-wrap: wrap;
  }

  main {
    padding-bottom: 60px;
  }

  .question-form {
    padding-top: 30px;
  }

  .page-product .tab-content_container {
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 40px;
  }

  .tab-content h2 {
    font-size: 18px;
    line-height: 24px;
    letter-spacing: 0.32px;
  }

  .page-subservices .default-second_title,
  .page-services .default-second_title,
  .page-subproduct .default-second_title,
  .default-editor h2 {
    font-size: 16px;
    line-height: 22px;
    letter-spacing: 0.32px;
  }

  .page-product .product-tabs_container a img {
    object-fit: contain;
    height: auto;
  }

  .page-product img.alignleft {
    object-fit: contain;
    height: auto;
  }

  table tr {
    height: auto;
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  table tr td {
    padding: 8px !important;
    height: auto !important;
  }

  table tr td span {
    font-size: 12px !important;
    letter-spacing: 0.24px;
  }

  .page-product .product-block_price {
    margin-bottom: 15px;
  }

  .article-content p+p {
    margin-top: 10px;
  }

  .default-editor h2+.entry-content p {
    margin-top: 10px;
  }

  .article-content p {
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.32px;
  }

  .default-text,
  .default-editor p {
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.32px;
  }

  .page__thumb a {
    display: flex;
    flex-direction: column;
    width: 100%;
  }

  .page__thumb a img {
    width: 100%;
  }

  .page__thumb+p {
    margin-top: 40px;
  }

  .article-content ul li {
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.32px;
  }

  .default-bulleted_list-item,
  .default-editor ul li {
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.32px;
  }

  .article-comments {
    margin-top: 0px;
    padding-top: 0px;
    padding-bottom: 0px;
    padding-left: 15px;
    padding-right: 15px;
    background-color: #fff;
  }

  .quiz-block {
    padding-bottom: 0px;
  }

  .work-materials {
    margin-top: 0px;
  }

  .work-price_form,
  .service-price_form {
    padding-left: 15px;
    padding-right: 15px;
  }

  .work-stage_item {
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 0.28px;
  }

  .modal-form_get_calculation .default-modal_dsc,
  .modal-form_calculation .default-modal_dsc {
    font-size: 16px;
    letter-spacing: 0.32px;
    line-height: 22px;
  }

  .page-service .container {
    padding-bottom: 0px;
  }

  .service-price_form-wrapper .default-privacy_wrapper {
    position: relative;
    left: 0px;
    bottom: auto;
    max-width: 100%;
  }

  .filter-block_more .btn-wrapper {
    width: 100%;
    margin-top: 20px;
  }

  .filter-block_more .btn-wrapper .bapf_button {
    width: 100%;
    height: 60px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .berocket_single_filter_widget {
    width: 100% !important;
    display: flex;
  }

  .mb-filter-choice {
    padding-left: 15px;
    padding-right: 15px;
  }

  .mb-filter-container {
    padding-bottom: 60px;
  }

  .berocket_single_filter_widget,
  .berocket_single_filter_widget div {
    width: 100% !important;
  }

  .story-subslide_img {
    height: 250px;
  }

  .object-cards .slick-list {
    padding-bottom: 0px;
  }

  .object-cards>.slick-list {
    padding-bottom: 40px;
  }

  .objects .container {
    padding-left: 15px;
    padding-right: 15px;
  }

  .object-card {
    padding-bottom: 40px;
  }

  .object-card_slide-img {
    height: 120px;
    max-height: 120px;
  }

  .equipment-card_wrapper {
    padding-left: 10px;
    padding-right: 10px;
    padding-bottom: 20px;
    padding-top: 10px;
  }

  .equipment-card_title {
    height: auto;
  }

  .footer-link {
    font-size: 11px;
  }

  .page-product .tab-content {
    padding-bottom: 40px;
  }

  .page-product .equipment {
    margin-top: 0px;
  }

  .tab-info__category {
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0.28px;
    font-family: 'Gilroy-Bold';
    position: relative;
    border-bottom: 1px dashed var(--color-secondary);
    margin-top: 30px;
    color: var(--color-secondary);
    align-self: baseline;
    transition: border-bottom 0.5s ease;
  }

  .tab-info__category:hover {
    border-bottom: 1px dashed transparent;
  }

  .mb-product-slider {
    display: block;
  }

  .tinkoff_credit_wrapper {
    bottom: 25px;
  }

  .tinkoff_credit_wrapper {
    position: relative;
    bottom: 0;
    top: -172px;
    right: -170px;
    left: auto;
  }

  .product-review_gallery-img {
    width: calc(50% - 8px);
    margin: 0 4px;
    margin-top: 8px;
    max-height: 160px;
    min-height: 100px;
  }

  .kinds .table-bg {
    margin-top: 80px;
  }

  .kinds .table-td__text small {
    font-size: 12px;
    line-height: 14px;
  }

  .kinds .table-td__header-title {
    font-size: 18px;
    line-height: 24px;
  }

  .kinds .table-td__title {
    font-size: 16px;
    line-height: 20px;
  }

  .kinds .table-td__text {
    font-size: 14px;
    line-height: 18px;
  }

  .table-td__link {
    display: flex;
    height: 80px;
  }

  .kinds .table-td__header-img {
    max-width: 149px;
    height: 100%;
    top: -40px;
    max-height: 115px;
  }
}

@media screen and (max-width: 500px) {
  .page-subarticles .container {
    padding-right: 0;
  }

  .tinkoff_credit_wrapper {
    bottom: 65px;
  }

  .site-main .product-block {
    width: 100%;
    margin-right: 0px;
  }

  .site-main .product-block:first-child {
    margin-top: 0px;
  }

  .site-main .product-block:nth-child(-n + 2) {
    margin-top: 20px;
    padding-bottom: 30px;
  }

  .product-block {
    max-width: 100%;
  }

  .product-block_img-wrapper {
    min-height: 205px;
  }

  .site-main .product-block {
    margin-top: 20px;
  }

  .product-block_info {
    padding-left: 20px;
    padding-right: 20px;
  }

  .product-info_weight,
  .product-info_generate,
  .product-info_users,
  .product-info_size {
    display: block;
  }

  .product-block_info {
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 30px;
  }

  .product-block_wrapper {
    display: flex;
    flex-direction: row;
    margin-left: 0px;
    margin-top: 0px;
    padding-left: 20px;
    padding-right: 20px;
    margin-top: 20px;
    align-items: center;
  }

  .product-block_price {
    padding-left: 20px;
    padding-right: 20px;
    margin-top: 20px;
    font-size: 22px;
    letter-spacing: 0.44px;
    line-height: 22px;
  }

  .product-block .btn-wrapper {
    width: auto;
    flex: 1;
    max-width: 120px;
    margin-right: 20px;
  }

  .product-block_card-btn {
    width: 100%;
    height: 40px;
    font-size: 10px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .product-block_more {
    font-size: 12px;
    margin-top: 0px;
  }

  /* time */
  .product-block:before {
    content: none;
  }

  .default-card:before {
    content: none;
  }

  .page-product .tab-content p {
    padding: 0;
  }

  .product-block_name {
    font-size: 16px;
  }

  .product-block_name--bold {
    font-size: 16px;
  }

  .breadcrumb-arrow {
    margin-left: 5px;
    margin-right: 5px;
  }

  .page-subproduct .breadcrumbs span a,
  .page-product .breadcrumbs span a {
    font-size: 12px;
    letter-spacing: 0.24px;
    line-height: 18px;
  }

  .breadcrumbs>span:last-child {
    font-size: 12px;
    letter-spacing: 0.24px;
    line-height: 18px;
  }

  .default-text,
  .default-editor p {
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0.28px;
  }

  .sub-product .product-block:nth-child(-n + 3) {
    margin-top: 30px;
  }

  .sub-product .product-block {
    width: 100%;
  }

  .sub-product .product-block .product-block {
    margin-top: 30px;
  }

  .sub-product .product-block_info {
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 20px;
  }

  .sub-product .product-block_wrapper {
    margin-left: 0px;
    margin-right: 0px;
    margin-top: 20px;
  }

  .sub-product .product-block_card-btn {
    width: 100%;
    height: 40px;
    font-size: 10px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .sub-product .product-block_more {
    font-size: 12px;
    margin-top: 0px;
  }

  .sub-product .product-block_price {
    display: flex;
    flex-direction: row;
    padding-left: 20px;
    padding-right: 20px;
    font-size: 22px;
    letter-spacing: 0.44px;
    line-height: 22px;
    margin-top: 20px;
  }

  .product-block_price-sale+.product-block_price-regular {
    margin-left: 20px;
  }

  .alert-add-to-cart {
    padding: 10px;
    bottom: auto;
    left: auto;
    right: 15px;
    top: 15px;
    max-width: 200px;
    font-size: 12px;
    letter-spacing: 0.24px;
    line-height: 16px;
  }

  .sub-product .product-block_name {
    font-size: 16px;
  }

  .sub-product .product-info_size-name,
  .sub-product .product-info_weight-name,
  .sub-product .product-info_generate-name,
  .sub-product .product-info_users-name {
    font-size: 12px;
    letter-spacing: 0.24px;
    line-height: 100%;
  }

  .sub-product .product-info_size-value,
  .sub-product .product-info_weight-value,
  .sub-product .product-info_generate-value,
  .sub-product .product-info_users-value {
    font-size: 12px;
    line-height: 100%;
    letter-spacing: 0.24px;
    margin-left: 5px;
  }

  .sub-product .product-block:hover {
    padding-bottom: 30px;
  }

  .default-bulleted_list-item,
  .default-editor ul li {
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0.28px;
  }

  form .question-form_wrapper .default-privacy_text {
    padding-left: 0px;
  }

  .sub-product .product-block_card-btn:after {
    width: 12px;
    height: 12px;
  }

  .equipment-card_img-wrapper {
    min-height: 205px;
  }

  .product-block_slider .slider-arrow_prev:before,
  .slider-arrow_next:before {
    width: 12px;
    height: 12px;
    background-size: contain;
  }

  .slider-arrow_prev,
  .slider-arrow_next {
    height: 32px;
    width: 32px;
  }

  .product-info_container .product-block_info,
  .product-info_container .product-block_row {
    padding-right: 0px;
  }

  .page-work .product-block_column:first-child,
  .page-product .product-block_column:first-child {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    align-items: center;
  }

  .product-block_buy {
    margin-top: 20px;
  }

  .product .product-block_buy {
    margin: 0;
    margin-left: 12px;
  }

  form.cart .product-block_column:last-child {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin-top: 30px;
  }

  .page-product .product-block_price {
    padding-right: 0px;
    width: 100%;
    margin-bottom: 12px;
    display: flex;
    justify-content: center;
  }

  .page-product .product-block_count {
    width: 100%;
  }

  .product-block_download {
    width: 50%;
  }

  .product-block_download-link {
    font-size: 10px;
    letter-spacing: 0.2px;
    line-height: 14px;
  }

  .equipment-card_title {
    font-size: 16px;
    line-height: 18px;
    letter-spacing: 0.24px;
  }

  .equipment-card_price {
    display: flex;
    flex-direction: row;
    padding-left: 0px;
    padding-right: 0px;
    font-size: 22px;
    letter-spacing: 0.44px;
    line-height: 22px;
    margin-top: 20px;
  }

  .equipment-card_wrapper {
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 20px;
  }

  .equipment .product-block_card-btn {
    width: 100%;
    height: 40px;
    font-size: 10px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .product-block_card-btn:after {
    width: 12px;
    height: 12px;
  }

  .equipment-card_addtocart {
    display: flex;
    flex-direction: row;
    align-items: center;
  }

  .equipment-card_more {
    margin-top: 0px;
    font-size: 12px;
  }

  .equipment .btn-wrapper {
    width: 40%;
    margin-right: 20px;
  }

  .equipment .product-block_card-btn {
    width: 100%;
  }

  .equipment-card_addtocart .btn-wrapper:before {
    height: 40px;
    width: 100%;
    max-width: 100%;
  }

  .related .product-block_info {
    margin-right: 0px;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 20px;
  }

  .related .product-info_size-name,
  .related .product-info_weight-name,
  .related .product-info_generate-name,
  .related .product-info_users-name {
    font-size: 12px;
    letter-spacing: 0.24px;
    line-height: 100%;
  }

  .page-product .product-info_size-value,
  .page-product .product-info_weight-value,
  .page-product .product-info_generate-value,
  .page-product .product-info_users-value {
    font-size: 12px;
    line-height: 100%;
    letter-spacing: 0.24px;
    margin-left: 5px;
  }

  .page-product .related .product-block_price {
    display: flex;
    flex-direction: row;
    padding-left: 20px;
    padding-right: 20px;
    width: 100%;
    justify-content: flex-start;
  }

  .product-block_regular-price,
  .product-block_price-sale {
    letter-spacing: 0.44px;
    line-height: 22px;
    font-size: 22px;
  }

  .product-block_price-sale+.product-block_price-regular {
    font-size: 22px;
    letter-spacing: 0.44px;
    line-height: 22px;
  }

  .page-product .related .product-block_price {
    font-size: 22px;
    letter-spacing: 0.44px;
    line-height: 22px;
    margin-top: 20px;
  }

  .product-block {
    padding-bottom: 30px;
  }

  .related .product-block_wrapper {
    margin-left: 0px;
  }

  .page-product .related .product-block_card-btn {
    width: 40%;
    height: 40px;
    font-size: 10px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .page-product .related .product-block_card-btn {
    width: 100%;
  }

  .page-product .related .btn-wrapper {
    width: 40%;
    height: 40px;
  }

  .related .product-block_wrapper {
    display: flex;
    flex-direction: row;
  }

  .product-block_name {
    font-size: 16px;
    line-height: 18px;
    letter-spacing: 0.24px;
  }

  .h2 {
    font-size: 24px;
    line-height: 30px;
    letter-spacing: 0.28px;
  }

  .product-block_download+.product-block_download {
    margin-top: 17px;
  }

  .page-work .product-block_card-btn,
  .work-product .btn-wrapper,
  .page-product .product-block_card-btn,
  .page-product .btn-wrapper {
    width: 150px;
    height: 40px;
    font-size: 12px;
    line-height: 12px;
  }

  .page-work .product-block_card-btn,
  .page-product .product-block_card-btn {
    padding-left: 20px;
    padding-right: 20px;
  }

  .page-work .product-block_count-label,
  .page-product .product-block_count-label {
    margin-top: 15px;
  }

  .product-block_download {
    margin-top: 15px;
  }

  .sub-product_editor tbody tr td {
    font-size: 12px !important;
    letter-spacing: 0.24px;
  }

  .sub-product_editor table {
    display: flex;
    overflow-x: auto;
    padding-bottom: 8px;
    height: 100% !important;
  }

  .sub-product_editor tbody {
    display: table;
    margin-left: 1px;
    box-shadow: inset 0px 0px 0 1px #dbdbdb;
  }

  /* width */
  .sub-product_editor table::-webkit-scrollbar {
    width: 2px;
    height: 8px;
  }

  /* Track */
  .sub-product_editor table::-webkit-scrollbar-track {
    background: #eaeaea;
  }

  /* Handle */
  .sub-product_editor table::-webkit-scrollbar-thumb {
    background: var(--color-secondary);
  }

  .question-form_wrapper .default-privacy_text {
    margin-left: 0px;
  }

  .mb-product-slider {
    height: 205px;
  }

  .product-block_img {
    max-height: 205px;
  }

  .tinkoff_credit_wrapper {
    position: relative;
    bottom: 120px;
    right: 0;
    top: auto;
    left: 170px;
  }

  .tinkoff_credit_submit {
    margin-left: 0;
  }

  .filter-block_option .select-wrapper select {
    font-size: 16px;
  }

  .page-cart .tinkoff_credit_wrapper {
    bottom: auto;
    left: auto;
    margin-top: 8px;
  }

  .footer-info_address {
    column-count: 1;
  }

  .footer-info_addrses-wrapper:last-child {
    max-width: 100%;
  }

  .menu-shapka-menyu-container .menu>.menu-item,
  .header.fixed .menu-shapka-menyu-container .menu>.menu-item {
    height: 40px;
  }

  .header.fixed {
    position: fixed;
  }

  .btn-up {
    bottom: 100px;
    right: 16px;
  }

  .quiz-form_block-wrapper {
    height: auto;
    min-height: 400px;
  }

  .quiz-form_block.showing {
    position: relative;
    display: block;
  }

  .quiz-form_block {
    display: none;
  }

  .quiz-form_block:last-child {
    padding-bottom: 48px;
  }

  .quiz-nav_next .btn:after {
    margin-left: 0;
    margin-right: 24px;
  }

  .quiz-block_form .default-privacy_text {
    padding-left: 0;
  }

  .woocommerce-result-search {
    width: 100%;
  }

  .woocommerce-head-container {
    justify-content: space-between;
  }

  .woocommerce-result-search .bapf_sfilter.bapf_srch .bapf_form .bapf_search {
    width: 150px;
  }
}