@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Barlow:wght@700&family=Inter:wght@400;600&family=Open+Sans:wght@600;700&family=Roboto&family=Roboto+Mono:wght@400;700&family=Work+Sans:wght@400;500;600&display=swap");
.burger-menu {
  visibility: hidden;
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  padding: 71px 42px 49px 25px;
  background: #0A385C;
  -webkit-transform: translateX(-320px);
      -ms-transform: translateX(-320px);
          transform: translateX(-320px);
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  height: 100%;
  overflow: auto;
}
.burger-menu.active {
  visibility: visible;
  -webkit-transform: translateX(0px);
      -ms-transform: translateX(0px);
          transform: translateX(0px);
}
.burger-menu__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
.burger-menu__list > li {
  width: 213px;
  border-bottom: 0.2px solid #F1F2F4;
}
.burger-menu__list > li a {
  display: block;
  width: calc(100% - 25px);
  padding: 10px 0px 14px 0px;
  color: #FFF;
  font-family: "Work Sans", sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: normal;
}
.burger-menu__list li {
  -webkit-transition: 0s linear;
  -o-transition: 0s linear;
  transition: 0s linear;
  -webkit-transition-delay: 0.3s;
       -o-transition-delay: 0.3s;
          transition-delay: 0.3s;
  cursor: pointer;
}
.burger-menu__list li.menu-item-has-children.active {
  border-bottom: 0px solid #F1F2F4;
  -webkit-transition-delay: 0s;
       -o-transition-delay: 0s;
          transition-delay: 0s;
}
.burger-menu__list li.menu-item-has-children.active::after {
  -webkit-transform: translate(0, -50%) rotate(0deg);
      -ms-transform: translate(0, -50%) rotate(0deg);
          transform: translate(0, -50%) rotate(0deg);
}
.burger-menu__list > li.menu-item-has-children {
  position: relative;
}
.burger-menu__list > li.menu-item-has-children::after {
  content: " ";
  display: block;
  position: absolute;
  top: 16px;
  right: 0px;
  -webkit-transform: translate(0, -50%) rotate(180deg);
      -ms-transform: translate(0, -50%) rotate(180deg);
          transform: translate(0, -50%) rotate(180deg);
  -webkit-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  width: 20px;
  height: 20px;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url("./../img/switcher_white.svg");
}
.burger-menu .sub-menu {
  max-height: 0px;
  overflow: hidden;
  -webkit-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15px;
  padding-top: 0px;
}
.burger-menu .sub-menu.active {
  padding-top: 6px;
  max-height: 100%;
}
.burger-menu .sub-menu > li {
  border-bottom: 0px solid #F1F2F4;
  width: 100%;
  padding-left: 15px;
  position: relative;
}
.burger-menu .sub-menu > li.menu-item-has-children.active::after {
  -webkit-transform: rotate(0deg);
      -ms-transform: rotate(0deg);
          transform: rotate(0deg);
}
.burger-menu .sub-menu > li.menu-item-has-children::after {
  content: " ";
  display: block;
  position: absolute;
  top: 0px;
  right: 0px;
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
  -webkit-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  width: 12px;
  height: 12px;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url("./../img/switcher_white.svg");
}
.burger-menu .sub-menu > li a {
  display: block;
  width: calc(100% - 17px);
  padding: 0px 0px 0px 0px;
  color: #FFF;
  font-family: "Work Sans", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: normal;
}

.burger-active {
  overflow: hidden;
}

.burger-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4.4px;
  z-index: 11;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.burger-btn span {
  height: 1.6px;
  width: 19px;
  border-radius: 2px;
  display: block;
  background-color: #5B6171;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.burger-btn.hidden {
  -webkit-transform: translateY(-80px);
      -ms-transform: translateY(-80px);
          transform: translateY(-80px);
}
.burger-btn.active span:nth-of-type(1) {
  display: none;
}
.burger-btn.active span:nth-of-type(2) {
  position: relative;
  top: 0px;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
  background-color: #E3E4E8;
}
.burger-btn.active span:nth-of-type(3) {
  position: relative;
  top: -6px;
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
  background-color: #E3E4E8;
}

* {
  padding: 0;
  margin: 0;
  border: 0;
}

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

:focus,
:active {
  outline: none;
}

a:focus,
a:active {
  outline: none;
}

nav,
footer,
header,
aside {
  display: block;
}

html,
body {
  height: 100%;
  width: 100%;
  font-size: 100%;
  line-height: 1;
  font-size: 14px;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

input,
button,
textarea {
  font-family: inherit;
}

input::-ms-clear {
  display: none;
}

button {
  cursor: pointer;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

s a,
a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: 400;
}

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

select {
  border: none;
  position: relative;
  outline: none;
}

@media all and (-webkit-min-device-pixel-ratio: 0) and (-webkit-min-device-pixel-ratio: 0), all and (-webkit-min-device-pixel-ratio: 0) and (-o-min-device-pixel-ratio: 0/1), all and (-webkit-min-device-pixel-ratio: 0) and (min-resolution: 0.001dpcm) {
  select {
    border: 1px solid #fff;
  }
}
.slider-advantage {
  position: relative;
}
.slider-advantage .slick-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}
.slider-advantage .slick-list {
  overflow: hidden;
}
.slider-advantage .slick-arrow {
  position: absolute;
  z-index: 5;
  top: 47%;
  -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
          transform: translate(0, -50%);
  width: 24px;
  height: 24px;
  font-size: 0;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.slider-advantage .slick-arrow.slick-prev {
  left: 0px;
  background: url("./../img/arrow_slider.svg") 0 0/100% no-repeat;
  -webkit-transform: translate(0, -50%) rotate(180deg);
      -ms-transform: translate(0, -50%) rotate(180deg);
          transform: translate(0, -50%) rotate(180deg);
}
.slider-advantage .slick-arrow.slick-next {
  right: 0px;
  background: url("./../img/arrow_slider.svg") 0 0/100% no-repeat;
}
.slider-advantage .slick-arrow.slick-disabled {
  opacity: 0.5;
}
.slider-advantage .slick-dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  font-size: 0;
  margin-top: 20px;
}
.slider-advantage .slick-dots li {
  list-style: none;
  height: auto;
}
.slider-advantage .slick-dots li.slick-active button {
  background: #1471B8;
}
.slider-advantage .slick-dots button {
  font-size: 0;
  width: 6px;
  height: 6px;
  border-radius: 100px;
  background: #A3D1F5;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

@media (max-width: 600px) {
  .slider-advantage .slick-track {
    gap: 0px;
  }
}
.slider-similar {
  position: relative;
}
.slider-similar .slick-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}
.slider-similar .slick-list {
  overflow: hidden;
}
.slider-similar .slick-arrow {
  position: absolute;
  z-index: 5;
  top: -42px;
  -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
          transform: translate(0, -50%);
  width: 28px;
  height: 28px;
  font-size: 0;
}
.slider-similar .slick-arrow.slick-prev {
  right: 44px;
  background: url("./../img/buttonNext.svg") 0 0/100% no-repeat;
  -webkit-transform: translate(0, -50%) rotate(180deg);
      -ms-transform: translate(0, -50%) rotate(180deg);
          transform: translate(0, -50%) rotate(180deg);
}
.slider-similar .slick-arrow.slick-next {
  right: 0px;
  background: url("./../img/buttonNext.svg") 0 0/100% no-repeat;
}
.slider-similar .slick-arrow.slick-disabled {
  opacity: 0.5;
  width: 24px;
  height: 24px;
}
.slider-similar .slick-dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  font-size: 0;
  margin-top: 33px;
}
.slider-similar .slick-dots li {
  list-style: none;
  height: auto;
}
.slider-similar .slick-dots li.slick-active button {
  background: #1471B8;
}
.slider-similar .slick-dots button {
  font-size: 0;
  width: 6px;
  height: 6px;
  border-radius: 100px;
  background: #A3D1F5;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

@media (max-width: 600px) {
  .slider-similar .slick-track {
    gap: 15px;
  }
}
.slider-related {
  position: relative;
}
.slider-related .slick-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}
.slider-related .slick-list {
  overflow: hidden;
}
.slider-related .slick-arrow {
  position: absolute;
  z-index: 5;
  top: -42px;
  -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
          transform: translate(0, -50%);
  width: 28px;
  height: 28px;
  font-size: 0;
}
.slider-related .slick-arrow.slick-prev {
  right: 44px;
  background: url("./../img/buttonNext.svg") 0 0/100% no-repeat;
  -webkit-transform: translate(0, -50%) rotate(180deg);
      -ms-transform: translate(0, -50%) rotate(180deg);
          transform: translate(0, -50%) rotate(180deg);
}
.slider-related .slick-arrow.slick-next {
  right: 0px;
  background: url("./../img/buttonNext.svg") 0 0/100% no-repeat;
}
.slider-related .slick-arrow.slick-disabled {
  opacity: 0.5;
  width: 24px;
  height: 24px;
}
.slider-related .slick-dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  font-size: 0;
  margin-top: 33px;
}
.slider-related .slick-dots li {
  list-style: none;
  height: auto;
}
.slider-related .slick-dots li.slick-active button {
  background: #1471B8;
}
.slider-related .slick-dots button {
  font-size: 0;
  width: 6px;
  height: 6px;
  border-radius: 100px;
  background: #A3D1F5;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

@media (max-width: 600px) {
  .slider-related .slick-track {
    gap: 15px;
  }
}
.slider-product {
  min-width: 0;
  position: relative;
}
.slider-product .slick-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.slider-product .slick-list {
  overflow: hidden;
}
.slider-product .slick-dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  font-size: 0;
  margin-top: 18px;
}
.slider-product .slick-dots li {
  list-style: none;
  height: auto;
}
.slider-product .slick-dots li.slick-active button {
  background: #1471B8;
}
.slider-product .slick-dots button {
  font-size: 0;
  width: 6px;
  height: 6px;
  border-radius: 100px;
  background: #A3D1F5;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.steps-slider {
  min-width: 0;
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}
.steps-slider .slick-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}
.steps-slider .slick-list {
  overflow: hidden;
}
.steps-slider .slick-arrow {
  position: absolute;
  z-index: 5;
  top: 50%;
  -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
          transform: translate(0, -50%);
  width: 28px;
  height: 28px;
  font-size: 0;
}
.steps-slider .slick-arrow.slick-prev {
  left: 1px;
  background: url("./../img/arrow_slider.svg") 0 0/100% no-repeat;
  -webkit-transform: translate(0, -50%) rotate(180deg);
      -ms-transform: translate(0, -50%) rotate(180deg);
          transform: translate(0, -50%) rotate(180deg);
}
.steps-slider .slick-arrow.slick-next {
  right: 1px;
  background: url("./../img/arrow_slider.svg") 0 0/100% no-repeat;
}
.steps-slider .slick-arrow.slick-disabled {
  opacity: 0.5;
}
.steps-slider .slick-dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  font-size: 0;
  margin-top: 20px;
}
.steps-slider .slick-dots li {
  list-style: none;
  height: auto;
}
.steps-slider .slick-dots li.slick-active button {
  background: #1471B8;
}
.steps-slider .slick-dots button {
  font-size: 0;
  width: 6px;
  height: 6px;
  border-radius: 100px;
  background: #A3D1F5;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

@media (max-width: 860px) {
  .steps-slider .slick-track {
    gap: 0px;
  }
}
.clients-slider {
  position: relative;
}
.clients-slider .slick-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}
.clients-slider .slick-list {
  overflow: hidden;
}
.clients-slider .slick-arrow {
  position: absolute;
  z-index: 5;
  top: -88px;
  -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
          transform: translate(0, -50%);
  width: 28px;
  height: 28px;
  font-size: 0;
}
.clients-slider .slick-arrow.slick-prev {
  right: 74px;
  background: url("./../img/buttonNext.svg") 0 0/100% no-repeat;
  -webkit-transform: translate(0, -50%) rotate(180deg);
      -ms-transform: translate(0, -50%) rotate(180deg);
          transform: translate(0, -50%) rotate(180deg);
}
.clients-slider .slick-arrow.slick-next {
  right: 30px;
  background: url("./../img/buttonNext.svg") 0 0/100% no-repeat;
}
.clients-slider .slick-arrow.slick-disabled {
  opacity: 0.5;
  width: 24px;
  height: 24px;
}
.clients-slider .slick-dots {
  position: absolute;
  bottom: -54px;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
      -ms-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  font-size: 0;
  margin-top: 33px;
}
.clients-slider .slick-dots li {
  list-style: none;
  height: auto;
}
.clients-slider .slick-dots li.slick-active button {
  background: #1471B8;
}
.clients-slider .slick-dots button {
  font-size: 0;
  width: 6px;
  height: 6px;
  border-radius: 100px;
  background: #A3D1F5;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

@media (max-width: 600px) {
  .clients-slider .slick-track {
    gap: 15px;
  }
}
.slider-videos {
  min-width: 0;
  position: relative;
}
.slider-videos .slick-slide {
  max-width: 580px;
  width: 580px;
  min-height: 420px;
  height: 420px;
  -webkit-transform: scale(0.57);
      -ms-transform: scale(0.57);
          transform: scale(0.57);
  -webkit-transition: -webkit-transform 0.3s ease-out;
  transition: -webkit-transform 0.3s ease-out;
  -o-transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  position: relative;
  margin: 0px -40px;
}
.slider-videos .slick-slide iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border-radius: 8px;
}
.slider-videos .slick-active.slick-center {
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
}
.slider-videos .slick-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.slider-videos .slick-list {
  overflow: visible;
}
.slider-videos .slick-arrow {
  position: absolute;
  z-index: 5;
  bottom: -108px;
  left: 50%;
  -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
          transform: translate(0, -50%);
  width: 40px;
  height: 40px;
  font-size: 0;
}
.slider-videos .slick-arrow.slick-prev {
  background: url("./../img/buttonNext.svg") 0 0/100% no-repeat;
  -webkit-transform: translate(-91px, -50%) rotate(180deg);
      -ms-transform: translate(-91px, -50%) rotate(180deg);
          transform: translate(-91px, -50%) rotate(180deg);
}
.slider-videos .slick-arrow.slick-next {
  background: url("./../img/buttonNext.svg") 0 0/100% no-repeat;
  -webkit-transform: translate(50px, -50%);
      -ms-transform: translate(50px, -50%);
          transform: translate(50px, -50%);
}
.slider-videos .slick-arrow.slick-disabled {
  opacity: 0.5;
  width: 24px;
  height: 24px;
}

@media (max-width: 860px) {
  .slider-videos .slick-slide {
    max-width: none;
    width: auto;
    min-height: 320px;
    height: auto;
    margin: 0px 20px;
    -webkit-transform: scale(1);
        -ms-transform: scale(1);
            transform: scale(1);
  }
  .slider-videos .slick-slide iframe {
    width: 100%;
    height: 100%;
    min-height: 320px;
  }
}
@media (max-width: 600px) {
  .slider-videos .slick-slide {
    max-width: none;
    width: auto;
    min-height: 235px;
    height: 235px;
    margin: 20px 0px;
    -webkit-transform: scale(1);
        -ms-transform: scale(1);
            transform: scale(1);
  }
  .slider-videos .slick-slide iframe {
    width: 100%;
    height: 100%;
    min-height: 235px;
  }
  .slider-videos .slick-track {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .slider-videos .slick-list {
    overflow: hidden;
  }
  .slider-videos .slick-arrow {
    bottom: -40px;
    width: 28px;
    height: 28px;
  }
}
.quote-services-slider {
  position: relative;
}
.quote-services-slider .slick-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}
.quote-services-slider .slick-list {
  overflow: hidden;
}
.quote-services-slider .slick-arrow {
  position: absolute;
  z-index: 5;
  top: -59px;
  -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
          transform: translate(0, -50%);
  width: 28px;
  height: 28px;
  font-size: 0;
}
.quote-services-slider .slick-arrow.slick-prev {
  right: 44px;
  background: url("./../img/buttonNext.svg") 0 0/100% no-repeat;
  -webkit-transform: translate(0, -50%) rotate(180deg);
      -ms-transform: translate(0, -50%) rotate(180deg);
          transform: translate(0, -50%) rotate(180deg);
}
.quote-services-slider .slick-arrow.slick-next {
  right: 0px;
  background: url("./../img/buttonNext.svg") 0 0/100% no-repeat;
}
.quote-services-slider .slick-arrow.slick-disabled {
  opacity: 0.5;
  width: 24px;
  height: 24px;
}
.quote-services-slider .slick-dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  font-size: 0;
  margin-top: 33px;
}
.quote-services-slider .slick-dots li {
  list-style: none;
  height: auto;
}
.quote-services-slider .slick-dots li.slick-active button {
  background: #1471B8;
}
.quote-services-slider .slick-dots button {
  font-size: 0;
  width: 6px;
  height: 6px;
  border-radius: 100px;
  background: #A3D1F5;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

@media (max-width: 600px) {
  .quote-services-slider .slick-track {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
    padding-bottom: 20px;
  }
  .quote-services-slider .slick-arrow {
    top: unset;
    bottom: -42px;
    -webkit-transform: translate(-50%, 0);
        -ms-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
    width: 28px;
    height: 28px;
    font-size: 0;
  }
  .quote-services-slider .slick-arrow.slick-prev {
    right: unset;
    left: calc(50% - 28px);
    background: url("./../img/buttonNext.svg") 0 0/100% no-repeat;
    -webkit-transform: translate(0, 0) rotate(180deg);
        -ms-transform: translate(0, 0) rotate(180deg);
            transform: translate(0, 0) rotate(180deg);
  }
  .quote-services-slider .slick-arrow.slick-next {
    right: unset;
    left: calc(50% + 28px);
    background: url("./../img/buttonNext.svg") 0 0/100% no-repeat;
  }
  .quote-services-slider .slick-arrow.slick-disabled {
    opacity: 0.5;
    width: 24px;
    height: 24px;
  }
}
.btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  max-width: 280px;
  padding: 11px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 8px;
  border: 1px solid #007C78;
  -webkit-box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
          box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
  font-size: 16px;
  font-weight: 600;
  line-height: 150%;
  text-transform: uppercase;
  background: #007C78;
  color: #FFFFFF;
  -webkit-transition: 0.3s ease-out;
  -o-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}
.btn path {
  -webkit-transition: 0.3s ease-out;
  -o-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}
.btn:hover {
  background: #FFFFFF;
  color: #007C78;
}
.btn:hover path {
  stroke: #007C78;
}
.btn_inversion {
  background: #FFFFFF;
  color: #007C78;
  border: 1px solid #007C78;
}
.btn_inversion:hover {
  background: #007C78;
  color: #FFFFFF;
}
.btn_inversion:hover path {
  stroke: #FFFFFF;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Work Sans", sans-serif;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  font-size: 16px;
}

.no-scroll {
  overflow: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 10px;
}

.header__mobile-menu {
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 22px;
}
.header__mobile-menu .burger-btn {
  position: relative;
  left: 3px;
}
.header___mobile-phone img {
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
}
.header__top-row {
  padding: 6px 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 5px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header__location {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 10px;
}
.header__location-img {
  width: 24px;
  height: 24px;
}
.header__location-img img {
  width: 100%;
}
.header__location-name {
  font-size: 12px;
  line-height: 140%;
  color: #5B6171;
  margin-top: 2px;
}
.header__contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 24px;
  margin-top: 2px;
}
.header__tel {
  color: #007C78;
  font-variant-numeric: lining-nums tabular-nums;
  font-size: 12px;
  line-height: 140%;
}
.header__time {
  color: #5B6171;
  font-size: 12px;
  line-height: 140%;
}
.header__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 6px 0px;
  gap: 32px;
}
.header__logo {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 160px;
          flex: 0 0 160px;
}
.header__logo img {
  width: 100%;
}
.header__btn {
  margin-left: 20px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}
.header__search {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
}
.header__menu {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
}
.header__menu-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 60px;
  -webkit-transition: 0.3s ease-out;
  -o-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
  -webkit-box-ordinal-group: 5;
      -ms-flex-order: 4;
          order: 4;
}
.header__menu-item:last-child {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
.header__menu-item:nth-child(1) {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
.header__menu-item:nth-child(2) {
  width: 70px;
  margin-left: 4px;
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
}
@media (max-width:600px){
  .header__menu-item:nth-child(2) {
    width: auto;
    margin-left: 0px;
  }
}
.header__menu-item span {
  color: #5B6171;
  text-align: center;
  font-size: 12px;
  line-height: 140%;
}
.header__menu-item:hover {
  -webkit-transform: translateY(-3px);
      -ms-transform: translateY(-3px);
          transform: translateY(-3px);
}
.header__menu-cart {
  position: relative;
}
.header__menu-cart span.header__menu-cart-count {
  position: absolute;
  top: -6px;
  right: 2px;
  background-color: #007C78;
  color: #FFFFFF;
  border-radius: 50%;
  width: 22px;
  height: 22px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 13px;
}
.header__row-bottom {
  display: none;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
  margin-top: 20px;
}
.header__btn-bottom {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}
.header__search-bottom {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
}

main {
  margin-bottom: 90px;
}

.front {
  margin-top: 71px;
}
.front__mobile-btns {
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 15px;
  margin-top: 20px;
}
.front__mobile-btns a {
  padding: 12px 12px;
}
.front__mobile-btns a:hover {
  -webkit-transform: translateY(-3px);
      -ms-transform: translateY(-3px);
          transform: translateY(-3px);
  background: #007C78;
  color: #FFFFFF;
}
.front__mobile-btns a.btn_inversion {
  padding: 11px 12px;
}
.front__mobile-btns a.btn_inversion:hover {
  -webkit-transform: translateY(-3px);
      -ms-transform: translateY(-3px);
          transform: translateY(-3px);
  background: #FFFFFF;
  color: #007C78;
}
.front__info {
  margin-bottom: 48px;
}
.front__title {
  font-family: "Open Sans", sans-serif;
  font-size: 22px;
  color: #444955;
  font-style: normal;
  font-weight: 600;
  line-height: 125%;
  margin-bottom: 24px;
}
.front__subtitle {
  font-family: "Open Sans", sans-serif;
  font-size: 48px;
  color: #0A385C;
  font-style: normal;
  font-weight: 700;
  line-height: 125%;
  margin-bottom: 36px;
  text-transform: uppercase;
}
.front__btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
.front__btns a {
  padding: 12px 12px;
}
.front__btns a:hover {
  -webkit-transform: translateY(-3px);
      -ms-transform: translateY(-3px);
          transform: translateY(-3px);
  background: #007C78;
  color: #FFFFFF;
}
.front__btns a.btn_inversion {
  padding: 11px 12px;
}
.front__btns a.btn_inversion:hover {
  -webkit-transform: translateY(-3px);
      -ms-transform: translateY(-3px);
          transform: translateY(-3px);
  background: #FFFFFF;
  color: #007C78;
}
.front__img-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(228, 228, 228, 0.53);
}
.front__img {
  position: relative;
  width: 100%;
}
.front__img img {
  width: 100%;
  min-height: 350px;
  max-height: 350px;
  -o-object-fit: cover;
     object-fit: cover;
}

.advantage {
  margin-top: 92px;
}
.advantage__title {
  font-family: "Open Sans", sans-serif;
  font-size: 28px;
  color: #0F558A;
  font-style: normal;
  font-weight: 700;
  line-height: 125%;
  margin-bottom: 48px;
  text-transform: uppercase;
}
.advantage__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 380px;
  padding: 20px 1.356%;
  border-radius: 8px;
  background-repeat: no-repeat;
  background-size: cover;
}
.advantage__item:hover .advantage__item-arrow img {
  -webkit-transform: scale(1.2);
      -ms-transform: scale(1.2);
          transform: scale(1.2);
}
.advantage__item:hover .advantage__item-logo {
  -webkit-transform: scale(1.15);
      -ms-transform: scale(1.15);
          transform: scale(1.15);
}
.advantage__item-logo {
  width: 48px;
  height: 48px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 300px;
  background: -o-linear-gradient(310deg, rgba(234, 234, 234, 0.3) 5.21%, rgba(251, 251, 251, 0.27) 52.38%, rgba(198, 198, 198, 0.24) 97.63%);
  background: linear-gradient(140deg, rgba(234, 234, 234, 0.3) 5.21%, rgba(251, 251, 251, 0.27) 52.38%, rgba(198, 198, 198, 0.24) 97.63%);
  -webkit-box-shadow: 1px 2px 9px 0px rgba(49, 49, 49, 0.16);
          box-shadow: 1px 2px 9px 0px rgba(49, 49, 49, 0.16);
  -webkit-backdrop-filter: blur(1px);
          backdrop-filter: blur(1px);
  -webkit-transition: 0.3s ease-out;
  -o-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}
.advantage__item-logo img {
  width: 24px;
  height: 24px;
}
.advantage__item-center {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  padding-top: 97px;
}
.advantage__item-title {
  font-family: "Open Sans", sans-serif;
  font-size: 22px;
  color: #FFFFFF;
  font-style: normal;
  font-weight: 600;
  line-height: 125%;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.advantage__item-text {
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 400;
  line-height: 150%;
}
.advantage__item-arrow {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.advantage__item-arrow img {
  -webkit-transition: 0.3s ease-out;
  -o-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
  width: 28px;
  height: 28px;
}

.about {
  margin-top: 143px;
}
.about__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 2%;
}
.about__col1 {
  width: 36.5%;
}
.about__title {
  color: #0F558A;
  font-family: "Barlow", sans-serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}
.about__col2 {
  width: 61.45%;
  padding-right: 46px;
}
.about__col2 p {
  color: #000;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 33px;
}
.about__btn {
  margin-top: 36px;
}
.about__mobile-col {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.about__mobile-col p {
  color: #444955;
  font-family: "Work Sans", sans-serif;
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 12px;
}
.about__mobile-btn {
  -ms-flex-item-align: end;
      align-self: flex-end;
  color: #17181C;
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  border-bottom: solid 0.5px #17181C;
}

.products {
  margin-top: 93px;
}
.products__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
.products__item-first {
  width: 280px;
  height: 200px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.products__title {
  color: #0F558A;
  font-family: "Barlow", sans-serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}
.products__btn {
  padding: 11px 25px 11px 37px;
}
.products__btn-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
}
.products__item {
  overflow: hidden;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 20px 16px;
  width: 280px;
  height: 200px;
  border-radius: 8px;
  background: #F1F2F4;
  background-size: 0px;
  -webkit-transition: background-size 0.3s ease-out, background-color 0.3s ease-out;
  -o-transition: background-size 0.3s ease-out, background-color 0.3s ease-out;
  transition: background-size 0.3s ease-out, background-color 0.3s ease-out;
}
.products__item:hover {
  background-color: #E5FFFE;
  background-image: url("./../img/medsnake.svg");
  background-size: 49px;
  background-repeat: no-repeat;
  background-position: 50% 50%;
}
.products__item:hover .products__item-more img {
  -webkit-transform: rotate(-90deg);
      -ms-transform: rotate(-90deg);
          transform: rotate(-90deg);
}
.products__item-title {
  font-family: "Open Sans", sans-serif;
  font-size: 22px;
  color: #17181C;
  font-style: normal;
  font-weight: 600;
  line-height: 125%;
  padding-left: 12px;
}
.products__item-more {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding: 12px;
}
.products__item-more img {
  -webkit-transition: 0.3s ease-out;
  -o-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}
.products__mobile-title {
  display: none;
  color: #0F558A;
  font-family: "Open Sans", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  margin-bottom: 40px;
}
.products__mobile-btn {
  margin-top: 5px;
  display: none;
}
.products__mobile-btn-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.news {
  margin-top: 90px;
}
.news__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.news__col1 {
  cursor: pointer;
  padding: 28px 2.033%;
  width: 40.7%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-radius: 8px;
  -webkit-transition: 0.3s ease-out;
  -o-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
  background: #E8F4FC;
}
.news__col1:hover {
  background: #D1E8FA;
}
.news__col1:hover .news__more img {
  -webkit-transform: rotate(-90deg);
      -ms-transform: rotate(-90deg);
          transform: rotate(-90deg);
}
.news__title {
  font-family: "Open Sans", sans-serif;
  font-size: 22px;
  color: #17181C;
  font-style: normal;
  font-weight: 600;
  line-height: 125%;
  margin-bottom: 20px;
}
.news__text {
  font-size: 14px;
  line-height: 150%;
  color: #5B6171;
}
.news__more {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding: 12px;
}
.news__more img {
  -webkit-transition: 0.3s ease-out;
  -o-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}
.news__col2 {
  width: 57.63%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
}
.news__item {
  cursor: pointer;
  padding: 28px 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  border-radius: 8px;
  background: #E8F4FC;
  min-height: 168px;
  -webkit-transition: 0.3s ease-out;
  -o-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}
.news__item:hover {
  background: #D1E8FA;
}
.news__item:hover .news__more img {
  -webkit-transform: rotate(-90deg);
      -ms-transform: rotate(-90deg);
          transform: rotate(-90deg);
}
.news__item-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.news__item-container .news__more {
  -ms-flex-item-align: end;
      align-self: flex-end;
  -webkit-transition: 0.3s ease-out;
  -o-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}
.news__item-container .news__text {
  width: 90%;
}
.news__mobile-item {
  display: none;
}

.promo {
  margin-top: 90px;
}
.promo__row {
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 8px;
}
.promo__col {
  max-width: 742px;
  padding: 40px 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 28px;
}
.promo__title {
  color: #FFFFFF;
  font-family: "Barlow", sans-serif;
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
}
.promo__text {
  color: #FFFFFF;
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  font-weight: 400;
}
.promo__btn {
  text-transform: initial;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 225px;
  padding: 7px 28px;
  width: auto;
  font-size: 16px;
  font-weight: 600;
  line-height: 150%;
  color: #FFFFFF;
  border-radius: 8px;
  border: 1px solid #FFFFFF;
  -webkit-box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
          box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
  background-color: rgba(0, 0, 0, 0);
  -webkit-transition: 0.3s ease-out;
  -o-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}
.promo__btn:hover {
  color: #007C78;
  border: 1px solid #007C78;
  background-color: #FFFFFF;
}
.promo__btn:hover path {
  stroke: #007C78;
}
.promo__btn-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
.promo__btn-container svg {
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
  width: 20px;
  height: 20px;
}
.promo__btn-container svg path {
  -webkit-transition: 0.3s ease-out;
  -o-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}

.footer {
  background-color: #0A385C;
  color: #FFFFFF;
  padding: 40px 0px;
}
.footer__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 2.7%;
}
.footer__logo {
  margin-bottom: 24px;
  width: 160px;
}
.footer__logo img {
  width: 100%;
}
.footer__emails-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5px;
}
.footer__eamil {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
.footer__email-img {
  width: 20px;
  height: 20px;
}
.footer__email-img img {
  width: 100%;
}
.footer__email-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 3px;
  color: #FFFFFF;
  font-size: 12px;
  line-height: 150%;
}
.footer__email-text span {
  font-weight: 500;
}
.footer__email-text a {
  font-weight: 400;
  text-transform: lowercase;
}
.footer__serv {
  width: 15.26%;
}
.footer__subtitle {
  margin-bottom: 8px;
  font-size: 14px;
  color: #FFFFFF;
  line-height: 150%;
  display: block;
}
.footer__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 6px;
}
.footer__list li {
  font-size: 12px;
  color: #FFFFFF;
  font-weight: 400;
  line-height: 150%;
  text-transform: capitalize;
}
.footer__address {
  width: 15.26%;
  flex: 1;
}
.footer__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}
.footer__info-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
.footer__info-img {
  width: 20px;
  height: 20px;
}
.footer__info-img img {
  width: 20px;
  height: 20px;
}
.footer__info-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 3px;
  color: #FFFFFF;
  font-size: 12px;
  font-weight: 400;
  line-height: 150%;
}
.footer__info-text span {
  font-weight: 400;
}
.footer__info-text p {
  font-weight: 500;
}
.footer__row-bottom {
  margin-top: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.footer__copyright {
  color: #FFFFFF;
  font-family: "Roboto Mono", monospace;
  font-size: 12px;
  font-weight: 400;
}

.btn-catalog {
  background-color: #007C78;
  color: #FFFFFF;
  font-family: "Roboto Mono", monospace;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.2px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  border-radius: 8px;
  padding: 8px 15px;
  border: 1px solid #007C78;
  -webkit-transition: 0.3s ease-out;
  -o-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}
.btn-catalog:hover {
  background: #FFFFFF;
  color: #007C78;
}
.btn-catalog:hover .btn-catalog__burger span {
  background-color: #007C78;
}
.btn-catalog__burger {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 4px;
  overflow: visible;
  height: auto;
}
.btn-catalog__burger span {
  -webkit-transition: 0.3s ease-out;
  -o-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
  height: 2px;
  width: 20px;
  display: block;
  background-color: #FFFFFF;
}

header .search {
  position: relative;
}
header .search input[type=text] {
  width: 100%;
  border-radius: 8px;
  border: 1px solid #D0D7DE;
  font-family: "Work Sans", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  /* 21px */
  padding: 7px 12px 7px 44px;
}
header .search input[type=submit] {
  cursor: pointer;
  position: absolute;
  width: 40px;
  height: 37px;
  top: 0px;
  opacity: 0;
  z-index: 2;
  left: 0px;
}
header .search > img {
  position: absolute;
  top: 7px;
  left: 16px;
}
header .search__result {
  position: absolute;
  width: 100%;
  z-index: 5;
  display: none;
}
header .search__preloader {
  width: 100%;
  display: none;
  background: #fff;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-top: none;
  border: 1px solid #eee;
  min-height: 80px;
  height: 100%;
}
header .search__loader {
  width: 30px;
  height: 30px;
  margin: 0 auto;
  display: block;
}
header .search__result-search-list {
  width: 100%;
  display: none;
  overflow-y: auto;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 10px;
  background: #fff;
  border: 1px solid #eee;
  border-top: none;
  min-height: 80px;
}
header .search__result-item {
  line-height: 15px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  border-bottom: 1px solid #eeeeee;
  padding: 10px;
}
header .search__result-item:first-child {
  padding-top: 0;
}
header .search__result-item:last-child {
  padding-bottom: 0;
  border-bottom: none;
}
header .search__result-item-description {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 10px;
}
header .search__result-item-title {
  color: #0a385c;
  display: block;
}
header .search__result-item p {
  line-height: 13px;
  font-size: 13px;
  color: #444955;
  font-style: italic;
  background-color: white;
}
header .search__result-item img {
  width: 60px;
  height: 100%;
  border: 1px solid #eeeeee;
  background-color: #eeeeee;
  margin: 0 5px 5px 0;
}

.search-page {
  min-height: 70vh;
  margin-top: 32px;
}
.search-page__title {
  font-family: "Open Sans", sans-serif;
  font-size: 28px;
  color: #444955;
  font-style: normal;
  font-weight: 700;
  line-height: 125%;
  text-transform: uppercase;
}
.search-page__query {
  color: #0F558A;
  font-family: "Barlow", sans-serif;
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  text-transform: initial;
  margin-top: 16px;
}
.search-page__row {
  margin-top: 42px;
}
.search-page__results-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
.search-page__result {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  padding-bottom: 25px;
  border-bottom: 1px solid #ccc;
}
.search-page__result h2 {
  font-size: 20px;
  font-weight: 600;
}
.search-page__result p {
  font-weight: 400;
}
.search-page__btn {
  max-width: 150px;
  padding: 8px 12px;
}
.search-page .screen-reader-text {
  display: none;
}

.switch {
  position: relative;
  display: inline-block;
  width: 36px;
  height: 20px;
}
.switch input {
  display: none;
}
.switch input:checked + .switch__slider {
  background-color: #2196F3;
}
.switch input:focus + .switch__slider {
  -webkit-box-shadow: 0 0 1px #2196F3;
          box-shadow: 0 0 1px #2196F3;
}
.switch input:checked + .switch__slider:before {
  -webkit-transform: translateX(16px);
  -ms-transform: translateX(16px);
  transform: translateX(16px);
}
.switch__slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #AFB8C1;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}
.switch__slider:before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  left: 2px;
  bottom: 2px;
  background-color: white;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}
.switch__slider.round {
  border-radius: 12px;
}
.switch__slider.round:before {
  border-radius: 50%;
}

.range_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  font-size: 14px;
  font-weight: 400;
  line-height: 150%;
}
.range_container .sliders_control {
  position: relative;
  min-height: 12px;
}
.range_container .form_control {
  margin-top: 12px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
  font-size: 14px;
  color: #2D3039;
}
.range_container .form_control_container__time {
  margin-bottom: 4px;
}
.range_container input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  pointer-events: all;
  width: 12px;
  height: 12px;
  background-color: #1471B8;
  border-radius: 50%;
  -webkit-box-shadow: 0 0 0 1px #1471B8;
          box-shadow: 0 0 0 1px #1471B8;
  cursor: pointer;
}
.range_container input[type=range]::-moz-range-thumb {
  -webkit-appearance: none;
  pointer-events: all;
  width: 12px;
  height: 12px;
  background-color: #fff;
  border-radius: 50%;
  box-shadow: 0 0 0 1px #C6C6C6;
  cursor: pointer;
}
.range_container input[type=range]::-webkit-slider-thumb:hover {
  background: #f7f7f7;
}
.range_container input[type=range]::-webkit-slider-thumb:active {
  box-shadow: inset 0 0 3px #387bbe, 0 0 9px #387bbe;
  -webkit-box-shadow: inset 0 0 3px #387bbe, 0 0 9px #387bbe;
}
.range_container input[type=number] {
  padding: 5.5px 8px 5.5px 21px;
  color: #17181C;
  font-size: 14px;
  line-height: 150%;
  font-weight: 400;
  border-radius: 8px;
  border: 1px solid #AAAFBB;
  background: #FFFFFF;
  min-width: 112px;
}
.range_container input[type=number]::-webkit-inner-spin-button,
.range_container input[type=number]::-webkit-outer-spin-button {
  opacity: 1;
}
.range_container input[type=range] {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  height: 2px;
  width: 100%;
  position: absolute;
  background-color: #C6C6C6;
  pointer-events: none;
}
.range_container #fromSlider {
  height: 0;
  z-index: 1;
}

.filter__form {
  top: 20px;
  position: static;
  padding: 32px 24px;
  border-radius: 8px;
  background: #F5F5F5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
}
.filter__mobile-title {
  display: none;
}
.filter__mobile-submit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.filter__mobile-submit button {
  padding: 11.5px 0px;
  border-radius: 8px;
  background: #007C78;
  width: 100%;
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 600;
  line-height: normal;
  text-transform: uppercase;
}
.filter__switch {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.filter__switch-title {
  color: #000;
  font-size: 14px;
  line-height: 150%;
  font-weight: 600;
}
.filter__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.filter__list-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  color: #24292F;
  font-size: 14px;
  line-height: 150%;
  font-weight: 600;
  cursor: pointer;
}
.filter__list-title img {
  -webkit-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}
.filter__list-title_active img {
  -webkit-transform: rotate(0deg);
      -ms-transform: rotate(0deg);
          transform: rotate(0deg);
}
.filter__list-switch {
  width: 20px;
  height: 20px;
}
.filter__list-items {
  padding-top: 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
  max-height: 0;
  overflow: hidden;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.filter__list-items_active {
  padding-top: 16px;
  max-height: 100%;
}
.filter__list-items label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  color: #24292F;
  font-size: 14px;
  font-weight: 400;
  line-height: 150%;
}
.filter__list-items input {
  width: 18px;
  height: 18px;
  min-width: 18px;
  min-height: 18px;
  margin: 3px;
}
.filter__range {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
  /* Chrome, Safari, Edge, Opera */
  /* Firefox */
}
.filter__range input::-webkit-outer-spin-button,
.filter__range input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.filter__range input[type=number] {
  -moz-appearance: textfield;
}
.filter .filter-close {
  cursor: pointer;
}
.filter__container-number {
  position: relative;
}
.filter__container-number-symbol {
  position: absolute;
  top: 50%;
  left: 12px;
  -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
          transform: translate(0, -50%);
  color: #17181C;
  font-family: "Work Sans", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 150%;
}

main.services .services-front {
  margin-top: 32px;
}
main.services .services-front__info {
  max-width: 680px;
  margin-bottom: 36px;
}
main.services .services-front__info.testing-info {
  max-width: 802px;
}
main.services .services-front__title {
  font-family: "Open Sans", sans-serif;
  font-size: 28px;
  color: #444955;
  font-style: normal;
  font-weight: 700;
  line-height: 125%;
  margin-bottom: 24px;
}
main.services .services-front__subtitle {
  font-family: "Open Sans", sans-serif;
  font-size: 22px;
  color: #444955;
  font-style: normal;
  font-weight: 600;
  line-height: 125%;
  margin-bottom: 36px;
}
main.services .services-front__subtitle.testing-subtitle {
  max-width: 680px;
}
main.services .services-front__btn {
  border-radius: 8px;
  background: #007C78;
  -webkit-box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
          box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
  padding: 11px 29px;
  border: 1px solid #007C78;
  color: #FFFFFF;
  font-size: 16px;
  line-height: 150%;
  display: inline-block;
  -webkit-transition: 0.3s ease-out;
  -o-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}
main.services .services-front__btn path {
  -webkit-transition: 0.3s ease-out;
  -o-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}
main.services .services-front__btn:hover {
  background: #FFFFFF;
  color: #007C78;
}
main.services .services-front__btn:hover path {
  stroke: #007C78;
}
main.services .services-front__btn-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
main.services .services-front__img-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(194, 194, 194, 0.2);
}
main.services .services-front__img {
  position: relative;
  width: 100%;
}
main.services .services-front__img img {
  width: 100%;
  min-height: 380px;
  max-height: 380px;
  -o-object-fit: cover;
     object-fit: cover;
}
main.services .services-row {
  margin-top: 90px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
main.services .services-row__left {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 480px;
          flex: 0 1 480px;
}
main.services .services-row__left .services-content__photo {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
main.services .services-row__right {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 680px;
          flex: 0 1 680px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
main.services .services-row.testing-row {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
main.services .services-title {
  font-family: "Open Sans", sans-serif;
  font-size: 22px;
  color: #0F558A;
  font-style: normal;
  font-weight: 600;
  line-height: 125%;
}
main.services .services-list__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4px;
}
main.services .services-list__items .services-list__item:nth-child(-n+7) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
main.services .services-list__item {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
main.services .services-list__item-title {
  padding: 6px 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  cursor: pointer;
}
main.services .services-list__item-title img {
  -webkit-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
main.services .services-list__item-title_active img {
  -webkit-transform: rotate(-90deg);
      -ms-transform: rotate(-90deg);
          transform: rotate(-90deg);
}
main.services .services-list__item-more {
  padding: 12px;
}
main.services .services-list__item-more img {
  width: 24px;
  height: 24px;
}
main.services .services-list__items-more {
  display: none;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
main.services .services-list__items-more_active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
main.services .services-list__items-more a {
  display: block;
  color: #8E94A4;
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
  padding-bottom: 1px;
  border-bottom: 0.5px solid #8E94A4;
}
main.services .services-list__item-text {
  color: #444955;
  font-size: 16px;
  font-weight: 600;
  line-height: 150%;
}
main.services .services-list__item-description {
  color: #444955;
  font-size: 14px;
  font-weight: 400;
  line-height: 150%;
  max-height: 0;
  overflow: hidden;
  padding-left: 70px;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
main.services .services-list__item-description_active {
  padding-top: 5px;
  max-height: 100%;
}
main.services .services-steps {
  margin-top: 50px;
}
main.services .services-steps__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}
main.services .services-steps__first-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 280px;
          flex: 0 0 280px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
main.services .services-steps__first-item .services-steps__container-item {
  padding: 0px;
}
main.services .services-steps__item {
  cursor: pointer;
}
main.services .services-steps__item:hover .services-steps__item-number {
  -webkit-transform: scale(1.15);
      -ms-transform: scale(1.15);
          transform: scale(1.15);
}
main.services .services-steps__item:hover .services-steps__item-more img {
  -webkit-transform: scale(1.2);
      -ms-transform: scale(1.2);
          transform: scale(1.2);
}
main.services .services-steps__title {
  color: #0F558A;
  font-family: "Barlow", sans-serif;
  font-size: 28px;
  font-weight: 700;
  text-transform: uppercase;
}
main.services .services-steps__title-mobile {
  display: none;
  color: #0F558A;
  font-family: "Barlow", sans-serif;
  font-size: 28px;
  font-weight: 700;
  text-transform: uppercase;
}
main.services .services-steps__btn {
  width: 100%;
  padding: 11px 25px 11px 37px;
}
main.services .services-steps__btn-mobile {
  display: none;
  width: 100%;
  padding: 11px 25px 11px 37px;
}
main.services .services-steps__btn-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
}
main.services .services-steps__container-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 8px;
  padding: 20px 16px;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 8px;
}
main.services .services-steps__item-center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
main.services .services-steps__item-number {
  width: 48px;
  height: 48px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 300px;
  background: -o-linear-gradient(310deg, rgba(234, 234, 234, 0.3) 5.21%, rgba(251, 251, 251, 0.27) 52.38%, rgba(198, 198, 198, 0.24) 97.63%);
  background: linear-gradient(140deg, rgba(234, 234, 234, 0.3) 5.21%, rgba(251, 251, 251, 0.27) 52.38%, rgba(198, 198, 198, 0.24) 97.63%);
  -webkit-box-shadow: 1px 2px 9px 0px rgba(49, 49, 49, 0.16);
          box-shadow: 1px 2px 9px 0px rgba(49, 49, 49, 0.16);
  -webkit-backdrop-filter: blur(1px);
          backdrop-filter: blur(1px);
  color: var(--white, #FFF);
  font-variant-numeric: lining-nums tabular-nums;
  font-family: "Open Sans", sans-serif;
  font-size: 22px;
  font-weight: 600;
  line-height: 125%;
  text-transform: uppercase;
  -webkit-transition: 0.3s ease-out;
  -o-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}
main.services .services-steps__item-center {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}
main.services .services-steps__item-title {
  color: #FFFFFF;
  font-family: "Open Sans", sans-serif;
  font-size: 22px;
  font-weight: 600;
  line-height: 125%;
  text-transform: uppercase;
}
main.services .services-steps__item-more {
  -ms-flex-item-align: end;
      align-self: flex-end;
}
main.services .services-steps__item-more img {
  -webkit-transition: 0.3s ease-out;
  -o-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
  width: 28px;
  height: 28px;
}
main.services .services-steps__item-description {
  margin-top: 10px;
  color: #FFFFFF;
  font-family: "Work Sans", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 150%;
}
main.services .services-content__text {
  color: #444955;
  font-size: 14px;
  font-weight: 400;
  line-height: 150%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}
main.services .services-content__text h3 {
  font-family: "Open Sans", sans-serif;
  font-size: 22px;
  color: #444955;
  font-style: normal;
  font-weight: 600;
  line-height: 125%;
}
main.services .services-content__photo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  width: 100%;
  max-width: 680px;
}
main.services .services-content__photo img {
  border-radius: 8px;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
main.services .services-content__photo.detection-photo img {
  max-width: 360px;
  max-height: 380px;
}
main.services .services-content__btns-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 100%;
}
main.services .services-content__btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 25px;
}
main.services .services-content__btns .btn:hover {
  -webkit-transform: translateY(-3px);
      -ms-transform: translateY(-3px);
          transform: translateY(-3px);
  background-color: #007C78;
  color: #FFFFFF;
}
main.services .services-content__btns .btn_inversion:hover {
  -webkit-transform: translateY(-3px);
      -ms-transform: translateY(-3px);
          transform: translateY(-3px);
  background-color: #FFFFFF;
  color: #007C78;
}
main.services .services-content__btn {
  max-width: 380px;
  width: 100%;
}
main.services .services-content .detection-margin-section {
  margin-top: 110px;
}
main.services .services-content .detection-margin-text {
  margin-top: 16px;
}
main.services .services-content .services-title-mobile-delivery {
  display: none;
}
main.services .services-basic-content {
  font-weight: 400;
  margin-top: 90px;
}
main.services .services-basic-content ul {
  margin-bottom: 15px;
}
main.services .services-basic-content ul li {
  list-style-type: disc;
  margin-left: 25px;
}
main.services .services-basic-content p {
  margin-bottom: 15px;
}
main.services .services-basic-content figure {
  margin-bottom: 15px;
}
main.services .services-basic-content ol {
  margin-bottom: 15px;
}

main.aboutPage .front {
  margin-top: 48px;
}
main.aboutPage .front__info {
  margin-bottom: 40px;
}
main.aboutPage .front__title {
  font-family: "Open Sans", sans-serif;
  font-size: 28px;
  color: #444955;
  font-style: normal;
  font-weight: 700;
  line-height: 125%;
}
main.aboutPage .our-work {
  margin-top: 90px;
}
main.aboutPage .our-work__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
}
main.aboutPage .our-work__col {
  width: 49.15%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  min-height: 554px;
}
main.aboutPage .our-work__col:nth-child(1) h3 {
  display: none;
}
main.aboutPage .our-work__col:nth-child(2) h3 {
  display: block;
}
main.aboutPage .our-work__title {
  color: #0F558A;
  font-family: "Barlow", sans-serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}
main.aboutPage .our-work__photo img {
  width: 100%;
  border-radius: 8px;
}
main.aboutPage .our-work__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15px;
}
main.aboutPage .our-work__text p {
  color: #444955;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
main.aboutPage .our-work__text h3 {
  max-width: 63.3%;
  color: #0F558A;
  font-family: "Open Sans", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 125%;
}
main.aboutPage .trust {
  margin-top: 90px;
}
main.aboutPage .trust__title {
  color: #0F558A;
  font-family: "Barlow", sans-serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  margin-bottom: 40px;
}
main.aboutPage .trust__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
}
main.aboutPage .trust__item {
  width: 23.728%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 8px;
  background: #F1F2F4;
  padding: 28px 0px;
  color: #444955;
  font-family: "Open Sans", sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 125%;
  -webkit-transition: 0.3s ease-out;
  -o-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}
main.aboutPage .trust__item:hover {
  -webkit-transform: translateY(-3px);
      -ms-transform: translateY(-3px);
          transform: translateY(-3px);
}
main.aboutPage .trust__item:last-child {
  background: #007C78;
  color: #FFFFFF;
  padding: 27px 0px;
  border: 1px solid #007C78;
  gap: 8px;
}
main.aboutPage .trust__item:last-child path {
  -webkit-transition: 0.3s ease-out;
  -o-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}
main.aboutPage .trust__item:hover:last-child {
  -webkit-transform: translateY(0px);
      -ms-transform: translateY(0px);
          transform: translateY(0px);
  background: #FFFFFF;
  color: #007C78;
}
main.aboutPage .trust__item:hover:last-child path {
  stroke: #007C78;
}
main.aboutPage .principles {
  margin-top: 111px;
}
main.aboutPage .principles__title {
  color: #0F558A;
  font-family: "Barlow", sans-serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}
main.aboutPage .principles__row {
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
main.aboutPage .principles__col {
  width: 57.62%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
}
main.aboutPage .principles__col .principles__item {
  border-radius: 8px;
  background: #E8F4FC;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 28px 24px;
}
main.aboutPage .principles__col .principles__item .principles__item-text {
  width: 91.7%;
}
main.aboutPage .principles__col2 {
  width: 40.67%;
  border-radius: 8px;
  background: #D1E8FA;
  padding: 28px 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
main.aboutPage .principles__item-title {
  font-family: "Open Sans", sans-serif;
  font-size: 22px;
  color: #17181C;
  font-style: normal;
  font-weight: 600;
  line-height: 125%;
  margin-bottom: 20px;
}
main.aboutPage .principles__item-text {
  color: #5B6171;
  font-family: "Work Sans", sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 150%;
}
main.aboutPage .clients {
  margin-top: 90px;
}
main.aboutPage .clients__title {
  color: #0F558A;
  font-family: "Barlow", sans-serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  margin-bottom: 40px;
}
main.aboutPage .clients__row {
  background: #F1F2F4;
  padding: 28px 0px;
}
main.aboutPage .clients__item img {
  width: 100%;
  border-radius: 8px;
  -o-object-fit: cover;
     object-fit: cover;
}
main.aboutPage .reviews {
  margin-top: 90px;
  height: 399px;
}
main.aboutPage .reviews__title {
  color: #0F558A;
  font-family: "Barlow", sans-serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  margin-bottom: 20px;
}
main.aboutPage .about-contacts {
  margin-top: 90px;
}
main.aboutPage .about-contacts__title {
  color: #0F558A;
  font-family: "Barlow", sans-serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}
main.aboutPage .about-contacts__row {
  margin-top: 43px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
main.aboutPage .about-contacts__item {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 25%;
          flex: 1 1 25%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}
main.aboutPage .about-contacts__item-container {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}
main.aboutPage .about-contacts__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2px;
  color: #2D3039;
  font-size: 14px;
  font-weight: 500;
}
main.aboutPage .about-contacts__text p {
  font-weight: 500;
}
main.aboutPage .about-contacts__text a {
  font-weight: 500;
}
main.aboutPage .about-contacts__text span {
  font-size: 12px;
  font-weight: 400;
}
main.aboutPage .map {
  margin-top: 40px;
}
main.aboutPage .map__row {
  width: 100%;
  height: 458px;
  position: relative;
}
main.aboutPage .map__item {
  width: 100%;
  height: 100%;
}
main.aboutPage .map__item iframe {
  width: 100%;
  height: 100%;
}
main.aboutPage .map__btn {
  position: absolute;
  top: 120px;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
      -ms-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  max-width: 260px;
}

main.accountPage .account-front {
  margin-top: 48px;
}
main.accountPage .account-front__title {
  font-family: "Open Sans", sans-serif;
  font-size: 28px;
  color: #444955;
  font-style: normal;
  font-weight: 700;
  line-height: 125%;
  margin-bottom: 40px;
}
main.accountPage .account-front__info {
  background: #5C5255;
}
main.accountPage .account-front__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
main.accountPage .account-front__text {
  font-family: "Open Sans", sans-serif;
  font-size: 22px;
  color: #FFFFFF;
  font-style: normal;
  font-weight: 600;
  line-height: 125%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 415px;
          flex: 0 1 415px;
  padding: 20px 0px;
}
main.accountPage .account-front__img {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 583px;
          flex: 0 1 583px;
}
main.accountPage .account-front__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
main.accountPage .account-select {
  margin-top: 90px;
}
main.accountPage .account-select__title {
  color: #0F558A;
  font-family: "Barlow", sans-serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  margin-bottom: 40px;
}
main.accountPage .account-select__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
}
main.accountPage .account-select__item {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 580px;
          flex: 1 1 580px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 28px 20px;
  border-radius: 8px;
  background: #F1F2F4;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
main.accountPage .account-select__item:hover {
  background: #E8F4FC;
}
main.accountPage .account-select__item:hover .account-select__more {
  -webkit-transform: rotate(-90deg);
      -ms-transform: rotate(-90deg);
          transform: rotate(-90deg);
}
main.accountPage .account-select__img {
  margin-right: 20px;
}
main.accountPage .account-select__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 100%;
          flex: 1 1 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
main.accountPage .account-select__item-title {
  font-family: "Open Sans", sans-serif;
  font-size: 22px;
  color: #444955;
  font-style: normal;
  font-weight: 600;
  line-height: 125%;
}
main.accountPage .account-select__item-description {
  color: #5B6171;
  font-family: "Work Sans", sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 150%;
}
main.accountPage .account-select__more {
  -webkit-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  padding: 12px;
  -ms-flex-item-align: end;
      align-self: flex-end;
}
main.accountPage .account-select__more img {
  width: 24px;
  height: 24px;
}

.default-page {
  font-weight: 400;
  margin-top: 48px;
  min-height: 60vh;
}
.default-page__title {
  font-family: "Open Sans", sans-serif;
  font-size: 28px;
  color: #444955;
  font-style: normal;
  font-weight: 700;
  line-height: 125%;
  text-transform: uppercase;
}
.default-page__content {
  margin-top: 40px;
}
.default-page form {
  border: 1px solid #e7e7e7;
  padding: 25px;
}
.default-page form label {
  font-weight: 500;
  line-height: 2;
  display: block;
  color: #343434;
  font-size: 14px;
  margin-bottom: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.default-page form input {
  display: block;
  width: 100%;
  border-radius: 1px;
  border: 1px solid #e4e4e4;
  -webkit-box-shadow: none;
          box-shadow: none;
  padding: 13px;
  font-family: "Work Sans", sans-serif;
  margin-bottom: 2px;
}
.default-page form input[type=radio],
.default-page form input[type=checkbox] {
  width: auto;
  margin-right: 15px;
}
.default-page form .required {
  color: red;
  font-weight: 700;
  border: 0 !important;
  text-decoration: none;
  margin-bottom: 2px;
}
.default-page form fieldset {
  margin-bottom: 12px;
}
.default-page form legend {
  font-size: 24px;
  line-height: 120%;
  padding-top: 24px;
  margin: 16px 0px;
}
.default-page form button {
  border-radius: 8px;
  background: #007C78;
  -webkit-box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
          box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
  color: #FFFFFF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 16px;
  font-weight: 600;
  line-height: 150%;
  padding: 11px 17px;
  min-width: 200px;
  border: 1px solid #007C78;
  -webkit-transition: 0.3s ease-out;
  -o-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}
.default-page form button:hover {
  background: #FFFFFF;
  color: #007C78;
}
.default-page form .form-row {
  margin-bottom: 20px;
}
.default-page form .form-row span {
  font-size: 12px;
}
.default-page form .woocommerce-privacy-policy-text {
  margin: 12px;
  font-size: 12px;
}
.default-page .wc-block-cart__submit-container a {
  display: block;
  border-radius: 8px;
  background: #007C78;
  -webkit-box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
          box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
  color: #FFFFFF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 16px;
  font-weight: 600;
  line-height: 150%;
  padding: 12px 18px;
  min-width: 200px;
}
.default-page .cart-empty {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 25px;
  margin-top: 30px;
}
.default-page .cart-empty img {
  width: 80px;
}
.default-page .checkout {
  margin-top: 15px;
}
.default-page .woocommerce-cart-form {
  margin-top: 10px;
  border: none;
  padding: 0px;
}
.default-page .woocommerce-cart-form .quantity input[type=number] {
  -webkit-appearance: none;
          appearance: none;
  -moz-appearance: textfield;
}
.default-page .woocommerce-cart-form .edit-button {
  text-decoration: underline;
}
.default-page .woocommerce-cart-form .shop_table .coupon {
  display: none;
}
.default-page .woocommerce-cart-form .shop_table .shop_table__head-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 15px;
}
.default-page .woocommerce-cart-form .shop_table .shop_table__head-row div {
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 600;
}
.default-page .woocommerce-cart-form .shop_table .shop_table__head-row .product-remove {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 20px;
          flex: 0 0 20px;
}
.default-page .woocommerce-cart-form .shop_table .shop_table__head-row .product-img {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 20%;
          flex: 0 0 20%;
}
.default-page .woocommerce-cart-form .shop_table .shop_table__head-row .product-description {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 100%;
          flex: 1 1 100%;
}
.default-page .woocommerce-cart-form .shop_table .shop_table__head-row .product-total {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 130px;
          flex: 1 0 130px;
}
.default-page .woocommerce-cart-form .shop_table .shop_table__body-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.default-page .woocommerce-cart-form .shop_table .shop_table__body-row .cart_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
  width: 100%;
  position: relative;
}
.default-page .woocommerce-cart-form .shop_table .shop_table__body-row .product-remove {
  -ms-flex-item-align: center;
      align-self: center;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 20px;
          flex: 0 0 20px;
  font-size: 24px;
}
.default-page .woocommerce-cart-form .shop_table .shop_table__body-row .product-thumbnail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 15px 5px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 20%;
          flex: 0 0 20%;
  border-top: 1px solid rgba(0, 0, 0, 0.3);
}
.default-page .woocommerce-cart-form .shop_table .shop_table__body-row .product-thumbnail a > img {
  width: 100%;
  height: auto;
  max-width: 150px;
}
.default-page .woocommerce-cart-form .shop_table .shop_table__body-row .product-thumbnail .preview_panel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.default-page .woocommerce-cart-form .shop_table .shop_table__body-row .product-thumbnail .preview_panel #inlet_type {
  width: 25%;
  position: relative;
  right: -3%;
}
.default-page .woocommerce-cart-form .shop_table .shop_table__body-row .product-thumbnail .preview_panel #gas_type {
  width: 45%;
}
.default-page .woocommerce-cart-form .shop_table .shop_table__body-row .product-thumbnail .preview_panel #outlet_type {
  width: 25%;
  position: relative;
  left: -3%;
}
.default-page .woocommerce-cart-form .shop_table .shop_table__body-row .product-description {
  padding: 15px;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 100%;
          flex: 1 1 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  border-top: 1px solid rgba(0, 0, 0, 0.3);
}
.default-page .woocommerce-cart-form .shop_table .shop_table__body-row .product-subtotal {
  padding: 15px;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 130px;
          flex: 1 0 130px;
  border-top: 1px solid rgba(0, 0, 0, 0.3);
}
.default-page .woocommerce-cart-form .shop_table .shop_table__body-row .product-quantity .form-group--number {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 100px;
}
.default-page .woocommerce-cart-form .shop_table .shop_table__body-row .product-quantity .form-group--number button {
  position: absolute;
  height: 100%;
  min-width: 0px;
  width: 15px;
  border-radius: 8px;
  padding: 0px 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #FFFFFF;
  background-color: rgba(0, 0, 0, 0);
  border: none;
}
.default-page .woocommerce-cart-form .shop_table .shop_table__body-row .product-quantity .form-group--number .down {
  margin-left: 5px;
  left: 0;
}
.default-page .woocommerce-cart-form .shop_table .shop_table__body-row .product-quantity .form-group--number .down::before {
  content: "-";
  display: block;
  height: 100%;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #000;
}
.default-page .woocommerce-cart-form .shop_table .shop_table__body-row .product-quantity .form-group--number .up {
  margin-right: 5px;
  right: 0;
}
.default-page .woocommerce-cart-form .shop_table .shop_table__body-row .product-quantity .form-group--number .up::after {
  content: "+";
  display: block;
  height: 100%;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #000;
}
.default-page .woocommerce-cart-form .shop_table .shop_table__body-row .product-quantity .form-group--number input {
  padding-left: 45%;
  max-width: 100px;
  border-radius: 8px;
  margin-bottom: 0px;
}
.default-page .woocommerce-cart-form .shop_table .shop_table__body-row .product-actions {
  border-top: 1px solid rgba(0, 0, 0, 0.3);
  margin-left: 0px;
  width: 100%;
}
.default-page .woocommerce-cart-form .shop_table .shop_table__body-row .product-actions .actions {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.default-page .woocommerce-cart-form .shop_table .shop_table__body-row .product-actions button {
  margin-top: 15px;
  text-transform: uppercase;
  width: 100%;
  max-width: 350px;
  line-height: 150%;
}
.default-page .cart_totals > h2 {
  font-family: "Open Sans", sans-serif;
  font-size: 28px;
  color: #444955;
  font-style: normal;
  font-weight: 700;
  line-height: 125%;
  text-transform: uppercase;
  margin: 40px 0px;
}
.default-page .cart_totals .shop_table {
  border-spacing: 0 15px;
}
.default-page .cart_totals .shop_table tr th {
  padding-right: 15px;
  text-align: start;
}
.default-page .cart_totals .shop_table tr td {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.default-page .cart_totals .woocommerce-shipping-calculator {
  padding: 0px 0px;
  width: 100%;
  border: none;
}
.default-page .cart_totals .woocommerce-shipping-calculator > a {
  text-decoration: underline;
}
.default-page .cart_totals .woocommerce-shipping-calculator .shipping-calculator-form {
  margin-top: 15px;
}
.default-page .cart_totals .wc-proceed-to-checkout {
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: center;
  min-width: 200px;
  width: 100%;
  max-width: 350px;
  padding: 11px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 8px;
  border: 1px solid #007C78;
  -webkit-box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
          box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
  font-size: 16px;
  font-weight: 600;
  line-height: 150%;
  text-transform: uppercase;
  background: #007C78;
  color: #FFFFFF;
  -webkit-transition: 0.3s ease-out;
  -o-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
  margin: 0 auto;
}
.default-page .cart_totals .wc-proceed-to-checkout:hover {
  background: #FFFFFF;
  color: #007C78;
}
.default-page #customer_details .input-text {
  width: 100%;
}
.default-page .woocommerce-checkout-review-order {
  /* Стили для строк и ячеек товаров в корзине */
  /* Стили для раздела "Итого" */
  /* Стили для методов оплаты */
}
.default-page .woocommerce-checkout-review-order .shop_table {
  margin-top: 20px;
  border-spacing: 0;
}
.default-page .woocommerce-checkout-review-order .shop_table th,
.default-page .woocommerce-checkout-review-order .shop_table td {
  padding: 10px;
  border: 1px solid #ddd;
  /* Цвет и толщина бордера */
}
.default-page .woocommerce-checkout-review-order .shop_table .cart_item {
  background-color: #f9f9f9;
  /* Цвет фона для строк товаров */
}
.default-page .woocommerce-checkout-review-order .shop_table .product-name {
  /* Максимальная ширина ячейки с названием товара */
  overflow: hidden;
}
.default-page .woocommerce-checkout-review-order .shop_table .product-total {
  text-align: right;
}
.default-page .woocommerce-checkout-review-order .shop_table .cart-subtotal,
.default-page .woocommerce-checkout-review-order .shop_table .order-total {
  font-weight: bold;
}
.default-page .woocommerce-checkout-review-order .woocommerce-checkout-payment .wc_payment_methods li {
  margin-bottom: 10px;
}
.default-page .woocommerce-checkout-review-order button {
  min-width: 200px;
  max-width: 100%;
  width: 50%;
  margin: 0 auto;
}
.default-page tfoot .custom-edit-address {
  display: none;
}
.default-page .password-input {
  position: relative;
  display: block;
}
.default-page .show-password-input {
  cursor: pointer;
  position: absolute;
  display: block;
  height: 43px;
  width: 50px;
  right: 0;
  top: 0;
  background-image: url("./../img/eye_password.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-size: 16px 16px;
  background-position: 50% 50%;
}
.default-page .show-password-input.display-password::after {
  display: none;
}
.default-page .show-password-input::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 1px;
  background-color: black;
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
  top: calc(50% - 0.5px);
  right: calc(50% - 10px);
}
.default-page .woocommerce-password-hint {
  display: block;
}

.account-page {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.account-page .woocommerce-MyAccount-navigation {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 30%;
          flex: 0 0 30%;
  -ms-flex-item-align: start;
      align-self: flex-start;
  border: 1px solid #ccc;
  padding: 25px 0px;
}
.account-page .woocommerce-MyAccount-navigation ul {
  margin: 0px;
  padding: 0px 30px;
}
.account-page .woocommerce-MyAccount-navigation ul li {
  list-style: none;
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
  margin-bottom: 16px;
  border-bottom: 1px solid #ccc;
  padding-bottom: 10px;
}
.account-page .woocommerce-MyAccount-content {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 68%;
          flex: 0 0 68%;
}
.account-page .woocommerce-MyAccount-content p {
  margin: 0 0 15px 0;
}
.account-page .woocommerce-MyAccount-content a {
  text-decoration: underline;
}
.account-page .woocommerce-MyAccount-content h3 {
  line-height: 1.6em;
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 12px;
}
.account-page .woocommerce-MyAccount-content .wc-block-components-notice-banner {
  margin: 0px 0px 16px 0px;
}
.account-page .woocommerce-MyAccount-content .woocommerce-Addresses {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.account-page .woocommerce-MyAccount-content .woocommerce-Addresses .woocommerce-Address {
  width: 48%;
  padding: 10px 25px;
  background-color: #f7f6f7;
}
.account-page .woocommerce-MyAccount-content .woocommerce-Addresses .woocommerce-Address .woocommerce-Address-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 12px;
}
.account-page .woocommerce-MyAccount-content .woocommerce-Addresses .woocommerce-Address .woocommerce-Address-title h3 {
  font-size: 18px;
  font-weight: 400;
  line-height: 27px;
  color: #3E3E3E;
  text-transform: uppercase;
  border-bottom: 1px solid #E1E1E1;
  padding-bottom: 5px;
}
.account-page .woocommerce-MyAccount-content .woocommerce-Addresses .woocommerce-Address a {
  font-size: 15px;
  line-height: 28px;
  font-weight: 600;
  color: #0F89DB;
  text-decoration: none;
}
.account-page .woocommerce-MyAccount-content .woocommerce-Addresses .woocommerce-Address address {
  font-size: 14px;
  line-height: 40px;
  font-weight: 400;
}
.account-page .woocommerce-MyAccount-content .woocommerce-orders-table {
  width: 100%;
  border-collapse: collapse;
}
.account-page .woocommerce-MyAccount-content .woocommerce-orders-table th {
  background-color: #007c78;
  color: #fff;
  padding: 15px;
  text-align: left;
}
.account-page .woocommerce-MyAccount-content .woocommerce-orders-table td {
  padding: 15px;
  border-bottom: 1px solid #ddd;
}
.account-page .woocommerce-MyAccount-content .woocommerce-orders-table a {
  text-decoration: none;
  color: #007c78;
}
.account-page .woocommerce-MyAccount-content .woocommerce-orders-table .woocommerce-button {
  background-color: #007c78;
  color: #fff;
  padding: 10px 15px;
  text-decoration: none;
  display: inline-block;
  font-size: 14px;
  border: none;
  border-radius: 5px;
}
.account-page .woocommerce-MyAccount-content .woocommerce-orders-table time {
  font-style: italic;
  color: #555;
}
.account-page .woocommerce-MyAccount-content mark {
  background-color: #007c78;
  color: #fff;
  padding: 2px 5px;
}
.account-page .woocommerce-MyAccount-content .woocommerce-order-details__title {
  font-size: 20px;
  font-weight: bold;
  margin-top: 20px;
}
.account-page .woocommerce-MyAccount-content .woocommerce-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}
.account-page .woocommerce-MyAccount-content .woocommerce-table th {
  background-color: #007c78;
  color: #fff;
  padding: 15px;
  text-align: left;
}
.account-page .woocommerce-MyAccount-content .woocommerce-table td {
  padding: 15px;
  border-bottom: 1px solid #ddd;
}
.account-page .woocommerce-MyAccount-content .woocommerce-columns {
  margin-top: 20px;
}
.account-page .woocommerce-MyAccount-content .woocommerce-columns .woocommerce-column {
  display: block;
}
.account-page .woocommerce-MyAccount-content .woocommerce-columns address {
  color: #555;
}
.account-page .woocommerce-MyAccount-content .woocommerce-columns .woocommerce-column__title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #007c78;
}
.account-page .woocommerce-MyAccount-content .woocommerce-columns .woocommerce-customer-details--email {
  margin-top: 10px;
  font-style: italic;
  color: #888;
}

.login-page {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.login-page h2 {
  font-weight: 600;
  font-size: 26px;
  line-height: 120%;
  margin-bottom: 12px;
  margin-top: 12px;
}
.login-page .u-column1 {
  width: 48%;
}
.login-page .u-column2 {
  width: 48%;
}
.login-page .woocommerce-LostPassword {
  margin-top: 12px;
}
.login-page .woocommerce-LostPassword a {
  color: #212529;
  text-decoration: underline;
}

.shop-page {
  font-weight: 400;
  margin-top: 32px;
  margin-bottom: 80px;
}
.shop-page .archive-title {
  margin-top: 48px;
  font-family: "Open Sans", sans-serif;
  font-size: 28px;
  color: #444955;
  font-style: normal;
  font-weight: 700;
  line-height: 125%;
  text-transform: uppercase;
}
.shop-page .woocommerce-products-header .term-description {
  margin-top: 10px;
}
.shop-page .archive {
  margin-top: 59px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}
.shop-page .archive__filter {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 280px;
          flex: 0 0 280px;
}
.shop-page .archive__front {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}
.shop-page .archive__prop {
  margin-top: -3px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 20px;
}
.shop-page .archive__sort {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 32px;
}
.shop-page .archive__sort-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  color: #000;
  color: #000;
  font-size: 14px;
  font-weight: 400;
  line-height: 150%;
}
.shop-page .archive__sort-switch {
  margin: 2.5px;
}
.shop-page .archive__sort-switch img {
  width: 20px;
  height: 20px;
}
.shop-page .archive__container {
  width: 100%;
}
.shop-page .archive__prop-mobile {
  display: none;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 15px;
}
.shop-page .archive__prop-mobile .filter-btn {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  border-radius: 4px;
  border: 0.5px solid #C6C9D2;
  background-color: #FFFFFF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 5px 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  color: #444955;
  font-size: 12px;
  font-weight: 500;
  line-height: normal;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  min-width: 70px;
}
.shop-page .archive__prop-mobile .sort-select {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  min-width: 180px;
}
.shop-page .archive__prop-mobile .sort-select img {
  position: absolute;
  right: 5px;
  top: 50%;
  -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
          transform: translate(0, -50%);
}
.shop-page .archive__prop-mobile .sort-select .woocommerce-notices-wrapper + img {
  display: none;
}
.shop-page .archive__prop-mobile select {
  width: 100%;
  border-radius: 4px;
  border: 0.5px solid #C6C9D2;
  padding: 5px 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: "Work Sans", sans-serif;
  color: #444955;
  font-size: 12px;
  font-weight: 500;
  line-height: normal;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: white;
}
.shop-page .archive__prop-mobile select::-ms-expand {
  display: none;
}
.shop-page .archive__view {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 28px;
}
.shop-page .archive__view-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
}
.shop-page .archive__view-item svg {
  color: #8E94A4;
  width: 24px;
  height: 24px;
}
.shop-page .archive__view-item svg path {
  -webkit-transition: 0.3s ease-out;
  -o-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
  stroke: #8E94A4;
}
.shop-page .archive__view-item.active svg {
  color: #444955;
}
.shop-page .archive__view-item.active svg path {
  stroke: #444955;
}
.shop-page .archive .archive__sort .woocommerce-notices-wrapper {
  display: none;
}
.shop-page .archive .archive__sort .woocommerce-ordering select {
  cursor: pointer;
  font-family: "Work Sans", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  background-color: white;
}
.shop-page .archive .products {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
}
.shop-page .products {
  margin-top: 0px;
}
.shop-page .products > h2 {
  font-family: "Open Sans", sans-serif;
  font-size: 22px;
  color: #000;
  font-style: normal;
  font-weight: 600;
  line-height: 125%;
  margin-bottom: 28px;
}
.shop-page .products .product {
  width: 280px;
  max-width: 280px;
  position: relative;
}
.shop-page .products .product .woocommerce-LoopProduct-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
}
.shop-page .products .product .woocommerce-LoopProduct-link .image-с {
  width: 100%;
  border: 1px solid #f5f5f5;
  box-shadow: 0 0 10px 0 #f5f5f5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 10px;
  min-height: 220px;
  max-height: 220px;
  margin-bottom: 16px;
  overflow: hidden;
}
.shop-page .products .product .woocommerce-LoopProduct-link .image-с img {
  -webkit-transition: -webkit-transform 0.3s ease-out;
  transition: -webkit-transform 0.3s ease-out;
  -o-transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  max-width: 177px;
  width: 100%;
  height: 177px;
  -o-object-fit: cover;
     object-fit: cover;
}
.shop-page .products .product .description-с {
  padding: 0px 8px;
}
.shop-page .products .product .description-с .woocommerce-loop-product__title {
  display: -webkit-box;
  max-height: 100px;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  -ms-flex-item-align: stretch;
      align-self: stretch;
  overflow: hidden;
  color: #000;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  font-size: 14px;
  font-weight: 400;
  line-height: 150%;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.shop-page .products .product .description-с .price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 5px;
  color: #444955;
  font-size: 16px;
  font-weight: 600;
  line-height: 150%;
}
.shop-page .products .product .description-с .price ins {
  color: #A1A6B4;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  text-decoration: none;
}
.shop-page .products .product .description-с .category-c {
  margin-bottom: 12px;
}
.shop-page .products .product .description-с .category-c a {
  color: #5B6171;
  font-size: 10px;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
}
.shop-page .products .product:hover .woocommerce-LoopProduct-link .image-с img {
  -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1);
}
.shop-page .products .product .add_to_cart_button {
  position: absolute;
  font-size: 0px;
  top: 170px;
  right: 16px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #006663;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 60%;
  background-image: url("./../img/cart_white.svg");
  -webkit-transition: background-color 0.3s ease-out;
  -o-transition: background-color 0.3s ease-out;
  transition: background-color 0.3s ease-out;
}
.shop-page .products .product .add_to_cart_button:hover {
  background-color: #00948f;
}
.shop-page .products .product.product-category > a {
  width: 100%;
  height: 100%;
  display: block;
}
.shop-page .products .product.product-category .image-с {
  width: 100%;
  border: 1px solid #f5f5f5;
  box-shadow: 0 0 10px 0 #f5f5f5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 10px;
  min-height: 220px;
  max-height: 220px;
  margin-bottom: 16px;
  overflow: hidden;
}
.shop-page .products .product.product-category .image-с img {
  -webkit-transition: -webkit-transform 0.3s ease-out;
  transition: -webkit-transform 0.3s ease-out;
  -o-transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  max-width: 177px;
  width: 100%;
  height: 177px;
  -o-object-fit: cover;
     object-fit: cover;
}
.shop-page .products .product.product-category:hover .image-с img {
  -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1);
}
.shop-page .products .product.product-category h2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
  overflow: hidden;
  color: #000;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  font-family: "Work Sans", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 150%;
  text-transform: uppercase;
}
.shop-page .products .product.product-category h2 mark {
  font-size: 16px;
  color: #444955;
  font-weight: 600;
  line-height: 150%;
  background-color: unset;
}
.shop-page .products .product > a.product_type_simple {
  display: inline-block;
  font-weight: 600;
  font-size: 0.75em;
  margin-top: 3px;
  color: #17181C;
  text-decoration: underline;
}
.shop-page .products .product > a.product_type_simple.add_to_cart_button {
  display: inline;
  font-size: 0px;
  margin-top: 0px;
}
.shop-page .products .product > a.added_to_cart.wc-forward {
  display: inline-block;
  font-size: 0.75em;
  margin-top: 1px;
  text-decoration: underline;
  color: #a1a6b4;
}
.shop-page .products.products-row {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 20px;
}
.shop-page .products.products-row .product {
  width: 100%;
  max-width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}
.shop-page .products.products-row .product .woocommerce-LoopProduct-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  width: 30.7%;
  min-width: 30.7%;
}
.shop-page .products.products-row .product .woocommerce-LoopProduct-link .image-с {
  width: 100%;
  height: 100%;
  margin-bottom: 0px;
}
.shop-page .products.products-row .product .woocommerce-LoopProduct-link .image-с img {
  max-width: 95%;
  max-height: 95%;
  -o-object-fit: contain;
     object-fit: contain;
}
.shop-page .products.products-row .product .woocommerce-LoopProduct-link img[data-dominant-color]:not(.has-transparency) {
  background-color: #f5f5f5;
}
.shop-page .products.products-row .product .description-с {
  max-width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.shop-page .products.products-row .product .description-с .price {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 6px;
}
.shop-page .products.products-row .product .add_to_cart_button {
  bottom: 2px;
  right: 16px;
  top: auto;
}
.shop-page .products.products-row .product.product-category > a {
  width: 100%;
  max-width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}
.shop-page .products.products-row .product.product-category .image-с {
  width: 30.7%;
  min-width: 30.7%;
  height: 100%;
  margin-bottom: 0px;
}
.shop-page .products.products-row .product.product-category .image-с img {
  max-width: 95%;
  max-height: 95%;
  -o-object-fit: contain;
     object-fit: contain;
}
.shop-page .products.products-row .product.product-category img[data-dominant-color]:not(.has-transparency) {
  background-color: #f5f5f5;
}
.shop-page .products.products-row .product > a.product_type_simple {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-flex: 1;
      -ms-flex: 1 1;
          flex: 1 1;
  text-decoration: underline;
}
.shop-page .archive .products {
  visibility: hidden;
}
.shop-page .archive .products.products-visible {
  visibility: visible;
}
.shop-page .cwg_popup_submit {
  cursor: pointer;
  -webkit-box-ordinal-group: 1000;
      -ms-flex-order: 999;
          order: 999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  max-width: 280px;
  padding: 8px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 8px;
  border: 1px solid #007C78;
  -webkit-box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
          box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
  font-size: 16px;
  font-weight: 600;
  line-height: 150%;
  text-transform: uppercase;
  background: #007C78;
  color: #FFFFFF;
  -webkit-transition: 0.3s ease-out;
  -o-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}
.shop-page .cwg_popup_submit:hover {
  background: #FFFFFF;
  color: #007C78;
}
.shop-page .woocommerce-variation-availability .cwg_popup_submit {
  margin-top: 35px;
}

.swal2-container .cwginstock-subscribe-form .panel-primary {
  border-color: #007C78;
}
.swal2-container .cwginstock-subscribe-form .panel-primary > .panel-heading {
  background-color: #007C78;
  border-color: #007C78;
}
.swal2-container .cwgstock_button {
  cursor: pointer;
  -webkit-box-ordinal-group: 1000;
      -ms-flex-order: 999;
          order: 999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  padding: 8px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 8px;
  border: 1px solid #007C78;
  -webkit-box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
          box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
  font-size: 16px;
  font-weight: 600;
  line-height: 150%;
  text-transform: uppercase;
  background: #007C78;
  color: #FFFFFF;
  -webkit-transition: 0.3s ease-out;
  -o-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}
.swal2-container .swal2-close {
  color: #007C78;
}

.woocommerce-store-notice {
  position: fixed;
  top: 0px;
  width: 100%;
  z-index: 105;
  text-align: center;
  font-weight: normal;
  font-size: 14px;
  font-weight: bold;
  color: white;
  background-color: #007C78;
  padding: 5px;
}
.woocommerce-store-notice .woocommerce-store-notice__dismiss-link {
  text-decoration: underline;
}

.woocommerce-pagination {
  color: #AFB8C1;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 150%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 70px;
}
.woocommerce-pagination ul.page-numbers {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 8px;
  border: 1px solid #D0D7DE;
}
.woocommerce-pagination ul.page-numbers li {
  width: 32px;
  height: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-left: 1px solid #D0D7DE;
  border-right: 1px solid #D0D7DE;
}
.woocommerce-pagination ul.page-numbers li:first-child {
  border-left: 0px solid #D0D7DE;
}
.woocommerce-pagination ul.page-numbers li:last-child {
  border-right: 0px solid #D0D7DE;
}
.woocommerce-pagination ul.page-numbers li .current {
  font-weight: 600;
  color: #24292F;
}
.woocommerce-pagination ul.page-numbers li .prev {
  display: block;
  height: 100%;
  width: 100%;
  overflow: hidden;
  font-size: 0px;
  background-image: url("./../img/switcher.svg");
  background-repeat: no-repeat;
  background-position: center;
  -webkit-transform: rotate(-90deg);
      -ms-transform: rotate(-90deg);
          transform: rotate(-90deg);
}
.woocommerce-pagination ul.page-numbers li .next {
  display: block;
  height: 100%;
  width: 100%;
  overflow: hidden;
  font-size: 0px;
  background-image: url("./../img/switcher.svg");
  background-repeat: no-repeat;
  background-position: center;
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
}

.woocommerce-message {
  padding: 20px;
  margin: 10px 0;
  margin-bottom: 30px;
  border: 1px solid #ddd;
  background-color: #f9f9f9;
  color: #333;
  position: relative;
}
.woocommerce-message a {
  color: #007c78;
  text-decoration: underline;
}
.woocommerce-message .button {
  display: inline-block;
  margin-right: 5px;
}

.woocommerce-error {
  padding: 20px;
  margin: 10px 0;
  margin-bottom: 30px;
  border: 1px solid rgb(172, 87, 87);
  background-color: #f9f9f9;
  color: #bb4545;
  position: relative;
}
.woocommerce-error a {
  color: #007c78;
  text-decoration: underline;
}
.woocommerce-error .button {
  display: inline-block;
  margin-right: 5px;
}

.navigation.pagination {
  color: #AFB8C1;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 150%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 70px;
}
.navigation.pagination .nav-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 8px;
  border: 1px solid #D0D7DE;
}
.navigation.pagination .nav-links .page-numbers {
  min-width: 32px;
  width: 32px;
  height: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-left: 1px solid #D0D7DE;
  border-right: 1px solid #D0D7DE;
}
.navigation.pagination .nav-links .page-numbers:first-child {
  border-left: 0px solid #D0D7DE;
  border-right: 0px solid #D0D7DE;
}
.navigation.pagination .nav-links .page-numbers:last-child {
  border-left: 0px solid #D0D7DE;
  border-right: 0px solid #D0D7DE;
}
.navigation.pagination .nav-links .page-numbers.current {
  font-weight: 600;
  color: #24292F;
}
.navigation.pagination .nav-links .page-numbers.prev {
  display: block;
  height: 100%;
  width: 100%;
  overflow: hidden;
  font-size: 0px;
  background-image: url("./../img/switcher.svg");
  background-repeat: no-repeat;
  background-position: center;
  -webkit-transform: rotate(-90deg);
      -ms-transform: rotate(-90deg);
          transform: rotate(-90deg);
}
.navigation.pagination .nav-links .page-numbers.next {
  display: block;
  height: 100%;
  width: 100%;
  overflow: hidden;
  font-size: 0px;
  background-image: url("./../img/switcher.svg");
  background-repeat: no-repeat;
  background-position: center;
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
}

.woocommerce-breadcrumb {
  margin-top: 32px;
  font-size: 14px;
  font-weight: 400;
  line-height: 150%;
  padding: 1.5px 0px;
  color: #24292F;
  display: -webkit-box;
  max-height: 100px;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  -ms-flex-item-align: stretch;
      align-self: stretch;
  overflow: hidden;
  color: #000;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
}
.woocommerce-breadcrumb a {
  white-space: nowrap;
  color: #007C78;
}

.singleProduct-page {
  margin-top: 40px;
}
.singleProduct-page__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 48px;
}
.singleProduct-page__info .woocommerce-product-gallery__wrapper {
  overflow: hidden;
}
.singleProduct-page__info .singleProduct-page__info-mobile {
  display: none;
}
.singleProduct-page__info .singleProduct-page__info-mobile .title-c {
  color: #17181C;
  font-family: "Work Sans", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 10px;
}
.singleProduct-page__info .singleProduct-page__info-mobile .meta-c {
  color: #5B6171;
  font-size: 12px;
  font-family: "Work Sans", sans-serif;
  font-weight: 400;
  line-height: normal;
}
.singleProduct-page__info .woocommerce-product-gallery__trigger {
  display: none;
}
.singleProduct-page__info .woocommerce-product-gallery {
  width: 49%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: flex-start;
  gap: 20px;
}
.singleProduct-page__info .woocommerce-product-gallery .wp-post-image {
  width: 99%;
  height: auto;
}
.singleProduct-page__info .woocommerce-product-gallery .flex-control-nav {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 25px;
}
.singleProduct-page__info .woocommerce-product-gallery .flex-control-nav li {
  cursor: pointer;
  width: 80px;
  height: 56px;
  list-style-type: none;
  border: 1px solid #f5f5f5;
  box-shadow: 0 0 10px 0 #f5f5f5;
  -webkit-transition: 0.3s ease-out;
  -o-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
  opacity: 0.4;
}
.singleProduct-page__info .woocommerce-product-gallery .flex-control-nav li img {
  width: 100%;
  height: 56px;
  max-width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  padding: 4px;
}
.singleProduct-page__info .woocommerce-product-gallery .flex-control-nav li:has(img.flex-active) {
  opacity: 1;
}
.singleProduct-page__info .woocommerce-product-gallery .flex-viewport {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  height: 400px;
  max-width: 400px;
}
.singleProduct-page__info .woocommerce-product-gallery .flex-viewport .woocommerce-product-gallery__image img {
  -o-object-fit: contain;
     object-fit: contain;
  width: 99%;
  max-width: 99%;
  height: 400px;
  background-color: #F5F5F5;
  padding: 4px;
}
.singleProduct-page__info .summary {
  width: 49%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 19px;
  margin-top: 4px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.singleProduct-page__info .summary .product_title {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  font-family: "Open Sans", sans-serif;
  font-size: 22px;
  color: #17181C;
  font-style: normal;
  font-weight: 600;
  line-height: 125%;
}
.singleProduct-page__info .summary .price {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 100%;
          flex: 1 1 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-ordinal-group: 5;
      -ms-flex-order: 4;
          order: 4;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  font-weight: 600;
}
.singleProduct-page__info .summary .price ins {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  font-family: "Open Sans", sans-serif;
  color: #17181C;
  font-size: 22px;
  line-height: 125%;
  text-decoration: none;
}
.singleProduct-page__info .summary .price del {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  color: #8E94A4;
  font-size: 14px;
  font-weight: 400;
  line-height: 150%;
  text-decoration: line-through;
}
.singleProduct-page__info .summary .woocommerce-product-details__short-description {
  display: none;
}
.singleProduct-page__info .summary .stock {
  display: none;
}
.singleProduct-page__info .summary .stock-default {
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
  font-weight: 700;
  color: #33ccff;
  text-transform: lowercase;
}
.singleProduct-page__info .summary .stock-backorder {
  color: #33ccff;
}
.singleProduct-page__info .summary .stock-instock {
  color: #7ad03a;
}
.singleProduct-page__info .summary .stock-outofstock {
  color: #a44;
}
.singleProduct-page__info .summary .cart-c {
  -webkit-box-ordinal-group: 6;
      -ms-flex-order: 5;
          order: 5;
}
.singleProduct-page__info .summary .cart-title-c {
  color: #444955;
  font-size: 12px;
  font-weight: 600;
  line-height: 140%;
  margin-bottom: 4px;
}
.singleProduct-page__info .summary .cart {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.singleProduct-page__info .summary .cart input::-webkit-outer-spin-button,
.singleProduct-page__info .summary .cart input::-webkit-inner-spin-button {
  /* display: none; <- Crashes Chrome on hover */
  -webkit-appearance: none;
  margin: 0;
  /* <-- Apparently some margin are still there even though it's hidden */
}
.singleProduct-page__info .summary .cart .single_add_to_cart_button {
  margin-top: 31px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  max-width: 280px;
  border: 1px solid #007C78;
  padding: 7px 11px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  border-radius: 8px;
  background: #007C78;
  -webkit-box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
          box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
  color: #FFFFFF;
  font-size: 16px;
  font-weight: 600;
  line-height: 150%;
  -webkit-transition: 0.3s ease-out;
  -o-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}
.singleProduct-page__info .summary .cart .single_add_to_cart_button:before {
  content: "+";
  font-size: 20px;
  font-weight: 100;
}
.singleProduct-page__info .summary .cart .single_add_to_cart_button:hover {
  background-color: #FFFFFF;
  color: #007C78;
}
.singleProduct-page__info .summary .cart.variations_form {
  -webkit-box-ordinal-group: 11;
      -ms-flex-order: 10;
          order: 10;
}
.singleProduct-page__info .summary .cart.variations_form .single_variation_wrap {
  margin-bottom: 8px;
}
.singleProduct-page__info .summary .cart.variations_form .form-group--number {
  margin-bottom: 15px;
}
.singleProduct-page__info .summary .cart.variations_form table {
  width: 100%;
  border-collapse: collapse;
}
.singleProduct-page__info .summary .cart.variations_form th,
.singleProduct-page__info .summary .cart.variations_form td {
  padding: 10px;
  text-align: left;
  border-bottom: 1px solid #ddd;
}
.singleProduct-page__info .summary .cart.variations_form td.value {
  position: relative;
}
.singleProduct-page__info .summary .cart.variations_form label {
  font-weight: bold;
}
.singleProduct-page__info .summary .cart.variations_form select {
  width: 100%;
  padding: 8px;
  margin: 4px 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.singleProduct-page__info .summary .cart.variations_form a.reset_variations {
  color: #007bff;
  text-decoration: none;
  margin-left: 10px;
  position: absolute;
  bottom: -22px;
  left: 5px;
}
.singleProduct-page__info .summary .cart.variations_form a.reset_variations:hover {
  text-decoration: underline;
}
.singleProduct-page__info .summary .product_meta {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  font-size: 12px;
  line-height: 140%;
  font-weight: 600;
  color: #5B6171;
}
.singleProduct-page__info .summary .product_meta .posted_in {
  display: none;
}
.singleProduct-page__info .form-group--number {
  position: relative;
  margin-top: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100px;
  height: 40px;
  min-width: 100px;
  max-width: 100px;
  padding: 6px 12px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 4px;
  border: 1px solid #C6C9D2;
}
.singleProduct-page__info label.screen-reader-text {
  display: none;
}
.singleProduct-page__info .form-group--number button {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 20px;
  height: 20px;
  max-width: 20px;
  color: #222;
  font-size: 30px;
  border: none;
  background: none;
  -webkit-transition: 0.3s ease-out;
  -o-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}
.singleProduct-page__info .form-group--number button.down {
  left: 12px;
}
.singleProduct-page__info .form-group--number button.down:before {
  position: absolute;
  top: 50%;
  left: 50%;
  display: inline-block;
  content: "";
  width: 14px;
  height: 1px;
  background-color: #999;
  -webkit-transform: translate(-50%, -50%) rotate(0deg);
      -ms-transform: translate(-50%, -50%) rotate(0deg);
          transform: translate(-50%, -50%) rotate(0deg);
}
.singleProduct-page__info .form-group--number button.up {
  right: 12px;
}
.singleProduct-page__info .form-group--number button.up:before,
.singleProduct-page__info .form-group--number button.up:after {
  position: absolute;
  top: 50%;
  left: 50%;
  display: inline-block;
  content: "";
  width: 14px;
  height: 1px;
  background-color: #999;
}
.singleProduct-page__info .form-group--number button.up:before {
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
      -ms-transform: translate(-50%, -50%) rotate(90deg);
          transform: translate(-50%, -50%) rotate(90deg);
}
.singleProduct-page__info .form-group--number button.up:after {
  -webkit-transform: translate(-50%, -50%) rotate(0deg);
      -ms-transform: translate(-50%, -50%) rotate(0deg);
          transform: translate(-50%, -50%) rotate(0deg);
}
.singleProduct-page__info .form-group--number button:before {
  -webkit-transition: 0.3s ease-out;
  -o-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}
.singleProduct-page__info .form-group--number button:after {
  -webkit-transition: 0.3s ease-out;
  -o-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}
.singleProduct-page__info .form-group--number button:hover:before {
  background-color: #0a385c;
}
.singleProduct-page__info .form-group--number button:hover:after {
  background-color: #0a385c;
}
.singleProduct-page__info .form-group--number .form-control {
  width: 24px;
  position: relative;
  left: 8px;
  color: #0A385C;
  font-variant-numeric: lining-nums tabular-nums;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
}
.singleProduct-page__info .form-group--number input {
  border-radius: 0;
}
.singleProduct-page__content .woocommerce-tabs .tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 32px;
}
.singleProduct-page__content .woocommerce-tabs .tabs li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 24px;
  border: 1px solid #C6C9D2;
  background-color: rgba(0, 0, 0, 0);
  padding: 5px 21px;
  color: #5B6171;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 150%;
  -webkit-transition: 0.3s ease-out;
  -o-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}
.singleProduct-page__content .woocommerce-tabs .tabs li.active {
  background: #1471B8;
  color: #FFFFFF;
  border: 1px solid #1471B8;
}
.singleProduct-page__content .woocommerce-tabs .woocommerce-Tabs-panel--custom_tab {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15px;
}
.singleProduct-page__content .woocommerce-tabs .woocommerce-Tabs-panel {
  margin-top: 28px;
  margin-bottom: 81px;
  color: #000;
  font-size: 14px;
  font-weight: 400;
  line-height: 150%;
  max-width: 880px;
}
.singleProduct-page__content .woocommerce-tabs .woocommerce-Tabs-panel .woocommerce-product-attributes.shop_attributes {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
}
.singleProduct-page__content .woocommerce-tabs .woocommerce-Tabs-panel .woocommerce-product-attributes.shop_attributes p {
  margin-bottom: 0px;
}
.singleProduct-page__content .woocommerce-tabs .woocommerce-Tabs-panel .woocommerce-product-attributes.shop_attributes th {
  border: 1px solid #ddd;
  padding: 12px;
  text-align: left;
  background-color: #f5f5f5;
  color: #333;
}
.singleProduct-page__content .woocommerce-tabs .woocommerce-Tabs-panel .woocommerce-product-attributes.shop_attributes td {
  border: 1px solid #ddd;
  padding: 12px;
  text-align: left;
  background-color: #fff;
  color: #555;
  -webkit-transition: 0.3s ease-out;
  -o-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}
.singleProduct-page__content .woocommerce-tabs .woocommerce-Tabs-panel .woocommerce-product-attributes.shop_attributes tr:hover td {
  background-color: #f0f0f0;
}
.singleProduct-page__content .woocommerce-tabs .woocommerce-Tabs-panel .woocommerce-product-attributes.shop_attributes tr:nth-child(even) {
  background-color: #f9f9f9;
}
.singleProduct-page__content .woocommerce-tabs .woocommerce-Tabs-panel h2 {
  display: none;
}
.singleProduct-page__content .woocommerce-tabs .woocommerce-Tabs-panel p {
  margin-bottom: 16px;
}
.singleProduct-page__content .woocommerce-tabs .woocommerce-Tabs-panel ul {
  margin-bottom: 16px;
  margin-left: 22px;
}
.singleProduct-page__content .woocommerce-tabs .woocommerce-Tabs-panel li {
  list-style-type: disc;
}
.singleProduct-page__content .woocommerce-tabs .woocommerce-Tabs-panel div {
  margin-bottom: 16px;
}
.singleProduct-page__content .product-mobile-description {
  display: none;
  margin-top: 21px;
}
.singleProduct-page__content .product-mobile-description h2:first-child {
  display: none;
}
.singleProduct-page__content .product-mobile-description .woocommerce-product-attributes.shop_attributes {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
}
.singleProduct-page__content .product-mobile-description .woocommerce-product-attributes.shop_attributes p {
  margin-bottom: 0px;
}
.singleProduct-page__content .product-mobile-description .woocommerce-product-attributes.shop_attributes th {
  border: 1px solid #ddd;
  padding: 12px;
  text-align: left;
  background-color: #f5f5f5;
  color: #333;
}
.singleProduct-page__content .product-mobile-description .woocommerce-product-attributes.shop_attributes td {
  border: 1px solid #ddd;
  padding: 12px;
  text-align: left;
  background-color: #fff;
  color: #555;
  -webkit-transition: 0.3s ease-out;
  -o-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}
.singleProduct-page__content .product-mobile-description .woocommerce-product-attributes.shop_attributes tr:hover td {
  background-color: #f0f0f0;
}
.singleProduct-page__content .product-mobile-description .woocommerce-product-attributes.shop_attributes tr:nth-child(even) {
  background-color: #f9f9f9;
}
.singleProduct-page__content .product-mobile-description .product-mobile-description__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15px;
}
.singleProduct-page__content .product-mobile-description .product-mobile-description__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 13px;
}
.singleProduct-page__content .product-mobile-description .product-mobile-description__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 10px 0px;
  color: #444955;
  font-family: "Work Sans", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
  border-bottom: 0.2px solid rgba(170, 175, 187, 0.2);
  cursor: pointer;
}
.singleProduct-page__content .product-mobile-description .product-mobile-description__title img {
  margin-right: 8px;
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
  -webkit-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.singleProduct-page__content .product-mobile-description .product-mobile-description__title_active img {
  -webkit-transform: rotate(0deg);
      -ms-transform: rotate(0deg);
          transform: rotate(0deg);
}
.singleProduct-page__content .product-mobile-description .product-mobile-description__text {
  border-bottom: 0px solid #AAAFBB;
  max-height: 0;
  overflow: hidden;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.singleProduct-page__content .product-mobile-description .product-mobile-description__text_active {
  padding-top: 5px;
  padding-bottom: 5px;
  max-height: 258px;
  overflow: scroll;
  border-bottom: 0.2px solid rgba(170, 175, 187, 0.2);
}
.singleProduct-page__content .product-mobile-description .product-mobile-description__text div {
  color: #444955;
  font-family: "Work Sans", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 10px;
}
.singleProduct-page__content .product-mobile-description .product-mobile-description__text p {
  color: #444955;
  font-family: "Work Sans", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 10px;
}
.singleProduct-page__content .product-mobile-description .product-mobile-description__text ul {
  color: #444955;
  font-family: "Work Sans", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: normal;
  margin-left: 12px;
  margin-bottom: 10px;
}
.singleProduct-page__content .product-mobile-description .product-mobile-description__text li {
  list-style-type: disc;
  margin-bottom: 10px;
}
.singleProduct-page__content .product-mobile-description .product-mobile-description__text h3 {
  color: #444955;
  font-family: "Work Sans", sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 10px;
}
.singleProduct-page__content .up-sells {
  margin-top: 68px;
}
.singleProduct-page__content .related {
  margin-top: 68px;
}
.singleProduct-page input[type=number]::-webkit-outer-spin-button,
.singleProduct-page input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
}
.singleProduct-page input[type=number],
.singleProduct-page input[type=number]:hover,
.singleProduct-page input[type=number]:focus {
  -webkit-appearance: none;
          appearance: none;
  -moz-appearance: textfield;
}

.error-404 {
  min-height: 60vh;
}
.error-404__row {
  margin-top: 90px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 25px;
}
.error-404__title {
  font-size: 54px;
  font-weight: 600;
}
.error-404__subtitle {
  font-size: 34px;
  font-weight: 600;
  text-align: center;
}
.error-404__text {
  font-size: 16px;
  font-weight: 400;
  text-align: center;
}
.thankyouPage {
  text-align: center;
  margin-top: 30px;
  /* Стиль для блока .woocommerce-notice */
  /* Стиль для списка .woocommerce-order-overview */
  /* Стиль для элементов списка .woocommerce-order-overview__order, .woocommerce-order-overview__date и т. д. */
  /* Стиль для таблицы .woocommerce-table */
  /* Стиль для заголовка таблицы .woocommerce-table th */
  /* Стиль для ячеек таблицы .woocommerce-table td */
  /* Стиль для адресов .woocommerce-columns */
  /* Стиль для заголовков .woocommerce-column__title */
  /* Стиль для адресов .woocommerce-column--1 и .woocommerce-column--2 */
  /* Дополнительный стиль для кнопок, если они есть на странице */
  /* Стиль для заголовков .woocommerce-column__title внутри .woocommerce-customer-details */
  /* Стиль для адреса .woocommerce-column--1 и .woocommerce-column--2 внутри .woocommerce-customer-details */
  /* Стиль для адреса .woocommerce-column__title внутри .woocommerce-column--1 и .woocommerce-column--2 */
  /* Стиль для адреса .woocommerce-column--1 и .woocommerce-column--2 */
  /* Стиль для адреса .woocommerce-column--1 .woocommerce-customer-details--email и .woocommerce-column--2 .woocommerce-customer-details--email */
}
.thankyouPage .woocommerce-order {
  margin: 20px 0;
  padding: 20px;
  border: 1px solid #ccc;
  background-color: #f9f9f9;
  text-align: center;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
}
.thankyouPage .woocommerce-notice {
  font-size: 24px;
  font-weight: bold;
  color: #007c78;
  /* Цвет оставлен как в предыдущем стиле */
  margin-bottom: 20px;
}
.thankyouPage .woocommerce-order-overview {
  list-style: none;
  padding: 0;
  margin: 0;
}
.thankyouPage .woocommerce-order-overview__order,
.thankyouPage .woocommerce-order-overview__date,
.thankyouPage .woocommerce-order-overview__email,
.thankyouPage .woocommerce-order-overview__total {
  margin: 10px 0;
  font-size: 18px;
}
.thankyouPage .woocommerce-table {
  width: 100%;
  margin-top: 20px;
  border-collapse: collapse;
  border: 1px solid #ddd;
}
.thankyouPage .woocommerce-table th {
  background-color: #007c78;
  /* Цвет оставлен как в предыдущем стиле */
  color: #fff;
  padding: 15px;
  text-align: left;
}
.thankyouPage .woocommerce-table td {
  padding: 15px;
  border-bottom: 1px solid #ddd;
}
.thankyouPage .woocommerce-columns {
  margin-top: 20px;
}
.thankyouPage .woocommerce-column__title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
}
.thankyouPage .woocommerce-column--1,
.thankyouPage .woocommerce-column--2 {
  width: 48%;
  float: left;
  margin-bottom: 20px;
}
.thankyouPage .button {
  background-color: #007c78;
  /* Цвет оставлен как в предыдущем стиле */
  color: #fff;
  padding: 15px 30px;
  text-decoration: none;
  display: inline-block;
  font-size: 18px;
  margin-top: 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}
.thankyouPage .woocommerce-customer-details {
  margin-top: 20px;
  text-align: left;
}
.thankyouPage .woocommerce-customer-details .woocommerce-column__title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #007c78;
  /* Цвет оставлен как в предыдущем стиле */
}
.thankyouPage .woocommerce-customer-details .woocommerce-column--1,
.thankyouPage .woocommerce-customer-details .woocommerce-column--2 {
  width: 100%;
  float: none;
}
.thankyouPage .woocommerce-customer-details .woocommerce-column--1 .woocommerce-column__title,
.thankyouPage .woocommerce-customer-details .woocommerce-column--2 .woocommerce-column__title {
  margin-top: 0;
}
.thankyouPage .woocommerce-customer-details .woocommerce-column--1 address,
.thankyouPage .woocommerce-customer-details .woocommerce-column--2 address {
  font-size: 16px;
  color: #555;
}
.thankyouPage .woocommerce-customer-details .woocommerce-column--1 .woocommerce-customer-details--email,
.thankyouPage .woocommerce-customer-details .woocommerce-column--2 .woocommerce-customer-details--email {
  margin-top: 10px;
  font-style: italic;
  color: #888;
}

main.builder-page .hidden {
  display: none;
}
main.builder-page .visible {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
main.builder-page #loadingScreen {
  overflow: hidden;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 999;
  cursor: wait;
}
main.builder-page .loader {
  border: 8px solid #000000;
  border-top: 8px solid #007C78;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  -webkit-animation: spin 1s linear infinite;
          animation: spin 1s linear infinite;
}
@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
main.builder-page .disableField {
  opacity: 0.6;
  pointer-events: none;
}
main.builder-page .notification {
  position: fixed;
  top: 0px;
  width: 100%;
  z-index: 105;
  text-align: center;
  font-weight: normal;
  font-size: 14px;
  font-weight: bold;
  color: white;
  background-color: #d63637;
  padding: 5px;
}
main.builder-page .notification span.dismiss {
  /*border:2px solid #FFF;*/
  padding: 0 5px;
  cursor: pointer;
  float: right;
  margin-right: 10px;
}
main.builder-page .notification a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

main.builder-page .notification-not-product {
  position: fixed;
  top: 0px;
  width: 100%;
  z-index: 105;
  text-align: center;
  font-weight: normal;
  font-size: 14px;
  font-weight: bold;
  color: white;
  background-color: #d63637;
  padding: 5px;
}
main.builder-page .notification-not-product span.dismiss {
  /*border:2px solid #FFF;*/
  padding: 0 5px;
  cursor: pointer;
  float: right;
  margin-right: 10px;
}
main.builder-page .notification-not-product a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}
main.builder-page .notification-success {
  position: fixed;
  top: 0px;
  width: 100%;
  z-index: 105;
  text-align: center;
  font-weight: normal;
  font-size: 14px;
  font-weight: bold;
  color: white;
  background-color: #007C78;
  padding: 5px;
}
main.builder-page .notification-success span.dismiss {
  /*border:2px solid #FFF;*/
  padding: 0 5px;
  cursor: pointer;
  float: right;
  margin-right: 10px;
}
main.builder-page .notification-success a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}
main.builder-page .steps {
  margin-top: 56px;
}
main.builder-page .steps__mt {
  cursor: pointer;
}
main.builder-page .steps__selected-step {
  color: #444955;
  cursor: pointer;
}
main.builder-page .steps__not-selected {
  opacity: 0.45;
}
main.builder-page .steps__mobile {
  display: none;
}
main.builder-page .steps__layout {
  width: 280px;
  padding: 32px 24px 32px 24px;
  border-radius: 8px;
  gap: 24px;
  background-color: #F5F5F5;
  vertical-align: top;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
main.builder-page .steps__text-float-right {
  float: right;
}
main.builder-page .steps__text-mr {
  max-width: 200px;
}
main.builder-page .steps__text-float-left {
  float: left;
}
main.builder-page .steps__text {
  font-family: "Work Sans", sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 21px;
  letter-spacing: 0px;
  text-align: left;
}
main.builder-page .steps__text2 {
  font-family: "Work Sans", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
  letter-spacing: 0px;
  text-align: left;
}
main.builder-page .page-title {
  margin-top: 45px;
}
main.builder-page .page-title__text {
  font-family: "Open Sans", sans-serif;
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0px;
  text-align: left;
}
main.builder-page .hose-builder__mt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  margin-top: 15px;
  padding-bottom: 4px;
  padding-top: 1px;
}
main.builder-page .hose-builder__mt img {
  width: 22px;
  height: 22px;
}
main.builder-page .hose-builder__mt span {
  color: #5B6171;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  line-height: 150%;
}
main.builder-page .hose-builder__title {
  font-family: "Open Sans", sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 23px;
  letter-spacing: 0px;
  text-align: left;
}
main.builder-page .hose-builder__df {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-transition: opacity 0.3s ease-out;
  -o-transition: opacity 0.3s ease-out;
  transition: opacity 0.3s ease-out;
}
main.builder-page .hose-builder__image-m {
  width: 100%;
  margin-top: 25px;
}
main.builder-page .hose-builder__image-m-center {
  width: 36%;
  min-width: 180px;
}
main.builder-page .hose-builder__image-left {
  width: 23%;
}
main.builder-page .hose-builder__image-right {
  width: 23%;
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}
main.builder-page .hose-builder__image-inline {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
main.builder-page .hose-builder__layout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 32px 0px;
  width: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-color: #F5F5F5;
  border-radius: 8px;
}
main.builder-page .hose-builder__button-center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 22px;
  gap: 20px;
}
main.builder-page .hose-builder__text {
  font-family: "Open Sans", sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 125%;
}
main.builder-page .hose-builder__text2 {
  font-family: "Work Sans", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: 0px;
  text-align: center;
  margin-top: 12px;
}
main.builder-page .hose-builder__text3 {
  font-family: "Work Sans", sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 16px;
  letter-spacing: 0px;
  text-align: center;
}
main.builder-page .hose-builder__button {
  width: 140px;
  height: 32px;
  padding: 4px 4px 4px 4px;
  border-radius: 8px;
  gap: 8px;
  background-color: #007C78;
  color: #FFFFFF;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
main.builder-page .hose-builder__layout-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
main.builder-page .hose-builder2 {
  margin-top: 25px;
}
main.builder-page .hose-builder2__mt {
  margin-top: 30px;
}
main.builder-page .hose-builder2__mt2 {
  margin-top: 20px;
}
main.builder-page .hose-builder2__button {
  width: 140px;
  height: 32px;
  border-radius: 8px;
  gap: 8px;
  background-color: #E3E4E8;
  color: #5B6171;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
main.builder-page .hose-builder2__button-center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 20px;
  margin-top: 20px;
  gap: 20px;
}
main.builder-page .hose-builder2__layout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  background-color: #F5F5F5;
}
main.builder-page .hose-builder2__layout2 {
  margin-left: 30px;
  margin-top: 40px;
}
main.builder-page .hose-builder2__select {
  width: 343px;
  height: 40px;
  padding: 8px 12px 8px 16px;
  border-radius: 8px;
  gap: 8px;
  border: 1px solid #C6C9D2;
}
main.builder-page .hose-builder2__text {
  font-family: Inter;
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
  letter-spacing: 0px;
  text-align: left;
  color: #000;
  vertical-align: top;
}
main.builder-page .hose-builder2__radio[type=radio]:checked {
  width: 18px;
  height: 18px;
  top: 3px;
  left: 3px;
  border-radius: 10px;
  border: 1.5px;
  accent-color: #007C78;
}
main.builder-page .hose-builder2__radio[type=radio] {
  width: 18px;
  height: 18px;
  top: 3px;
  left: 3px;
  border-radius: 10px;
  border: 1.5px;
  accent-color: #007C78;
}
main.builder-page .hose-builder5 span {
  cursor: pointer;
}
main.builder-page .hose-builder5__layout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  padding: 32px 24px 32px 24px;
  border-radius: 8px;
  background-color: #F5F5F5;
}
main.builder-page .hose-builder5__checkbox {
  width: 24px;
  height: 24px;
}
main.builder-page .hose-builder5__checkbox_checked[type=checkbox] {
  width: 24px;
  height: 24px;
  accent-color: #007C78;
}
main.builder-page .hose-builder5__number {
  margin-top: 10px;
  letter-spacing: -1em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
main.builder-page .hose-builder5__text {
  font-family: "Work Sans", sans-serif;
  font-size: 12px;
  font-weight: 600;
  line-height: 17px;
  letter-spacing: 0px;
  text-align: left;
}
main.builder-page .hose-builder5__text2 {
  font-family: "Work Sans", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
  letter-spacing: 0px;
  text-align: left;
  vertical-align: top;
}
main.builder-page .hose-builder5__minus {
  border-left: 1px solid #C6C9D2;
  border-bottom: 1px solid #C6C9D2;
  border-top: 1px solid #C6C9D2;
  border-bottom-left-radius: 10px;
  border-top-left-radius: 10px;
  width: 30px;
  height: 40px;
  text-align: center;
  font-size: 16px;
  font-family: "Work Sans", sans-serif;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: 0px;
  background-color: #FFFFFF;
}
main.builder-page .hose-builder5__plus {
  border-right: 1px solid #C6C9D2;
  border-bottom: 1px solid #C6C9D2;
  border-top: 1px solid #C6C9D2;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  width: 30px;
  height: 40px;
  text-align: center;
  font-size: 16px;
  font-family: "Work Sans", sans-serif;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: 0px;
  background-color: #FFFFFF;
}
main.builder-page .hose-builder5__input {
  border-bottom: 1px solid #C6C9D2;
  border-top: 1px solid #C6C9D2;
  height: 40px;
  background-color: white;
  width: 30px;
  text-align: center;
  font-size: 16px;
  font-family: "Work Sans", sans-serif;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: 0px;
  color: #0A385C;
}
main.builder-page .hose-gas__top2 {
  margin-top: 28px;
  width: 100%;
}
main.builder-page .hose-gas__mobile {
  width: 31.8%;
  margin-bottom: 59px;
}
main.builder-page .hose-gas__mobile2 {
  width: 30%;
  margin-bottom: 7%;
}
main.builder-page .hose-gas__layout-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
main.builder-page .hose-gas__text {
  font-family: "Work Sans", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  text-transform: uppercase;
  margin-top: 16px;
  margin-left: 7px;
  letter-spacing: 0px;
  text-align: left;
}
main.builder-page .hose-gas__cd {
  width: 100%;
  background-color: #F5F5F5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  padding: 20px;
  cursor: pointer;
  height: 220px;
}
main.builder-page .hose-gas__checkbox {
  position: absolute;
  cursor: pointer;
  height: 18px;
  width: 18px;
  top: 11px;
  right: 11px;
  border-radius: 4px;
  accent-color: #007c78;
}
main.builder-page .hose-gas__img {
  width: 100%;
  max-width: 180px;
}
main.builder-page .hose-gas__img2 {
  width: 50%;
}
main.builder-page .hose-gas__img2-right {
  -webkit-transform: scale(-1, 1);
      -ms-transform: scale(-1, 1);
          transform: scale(-1, 1);
}

main.videosPage .videos__title {
  margin-top: 48px;
  margin-bottom: 71px;
  font-family: "Open Sans", sans-serif;
  font-size: 28px;
  color: #444955;
  font-style: normal;
  font-weight: 700;
  line-height: 125%;
}
main.videosPage .videos-front {
  max-height: 350px;
  background: -o-linear-gradient(176deg, #CBD0E9 -11.42%, #606EC4 52%, #4B5CC6 106.17%);
  background: linear-gradient(274deg, #CBD0E9 -11.42%, #606EC4 52%, #4B5CC6 106.17%);
}
main.videosPage .videos-front__row {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  overflow: visible;
  max-height: 350px;
}
main.videosPage .videos-front__info {
  font-family: "Open Sans", sans-serif;
  color: #FFFFFF;
  font-size: 22px;
  font-weight: 600;
  line-height: 125%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 50px;
  z-index: 2;
  width: 37%;
  margin-top: 10px;
  padding: 10px;
}
main.videosPage .videos-front__img {
  width: 55%;
  -ms-flex-item-align: start;
      align-self: flex-start;
  margin-right: 7px;
}
main.videosPage .videos-front__img img {
  width: 100%;
}
main.videosPage .videos-slider {
  max-width: 1540px;
  padding-bottom: 160px;
  margin: 0 auto;
  overflow-x: hidden;
  overflow-y: visible;
  margin-top: 148px;
}
main.videosPage .videos-slider .container {
  padding: 0px;
  max-width: 1440px;
}
main.videosPage .videos-promo {
  margin-top: 80px;
}
main.videosPage .videos-promo__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
main.videosPage .videos-promo__img {
  width: 50%;
}
main.videosPage .videos-promo__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
main.videosPage .videos-promo__description {
  width: 50%;
  background-color: #E8F4FC;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 15px 6%;
}
main.videosPage .videos-promo__text {
  font-family: "Open Sans", sans-serif;
  color: #2D3039;
  text-align: center;
  font-size: 22px;
  font-weight: 600;
  line-height: 125%;
}

main.quotePage .front {
  margin-top: 48px;
}
main.quotePage .front__info {
  margin-bottom: 40px;
}
main.quotePage .front__title {
  font-family: "Open Sans", sans-serif;
  font-size: 28px;
  color: #444955;
  font-style: normal;
  font-weight: 700;
  line-height: 125%;
}
main.quotePage .quote-form__title {
  margin-top: 90px;
  color: #0F558A;
  font-family: "Barlow", sans-serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}
main.quotePage .quote-form__row {
  margin-top: 42px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
main.quotePage .quote-form__text {
  width: 29%;
  line-height: 150%;
}
main.quotePage .quote-form .wpcf7 {
  width: 57.63%;
}
main.quotePage .quote-form .wpcf7-submit {
  cursor: pointer;
}
main.quotePage .quote-form .wpcf7-spinner {
  display: block;
  margin: 0 auto;
  margin-top: 15px;
}
main.quotePage .quote-form .wpcf7 form .wpcf7-response-output {
  margin: 15px 0px;
  padding: 18px;
  border-radius: 8px;
  border: 1px solid #E3E4E8;
}
main.quotePage .quote-form .wpcf7-not-valid-tip {
  color: #BA0000;
  font-size: 12px;
  font-weight: 400;
  line-height: 150%;
  margin-top: 10px;
}
main.quotePage .quote-form__steps {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
main.quotePage .quote-form__steps .btn {
  max-width: 100%;
  margin-top: 10px;
  padding: 18px;
}
main.quotePage .quote-form__step {
  border-radius: 8px;
  background: #F1F2F4;
  padding: 28px 80px 28px 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  position: relative;
  z-index: 2;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
main.quotePage .quote-form__step.active {
  background: #D1E8FA;
}
main.quotePage .quote-form__step.active .quote-form__more {
  -webkit-transform: rotate(-90deg);
      -ms-transform: rotate(-90deg);
          transform: rotate(-90deg);
}
main.quotePage .quote-form__step-title {
  color: #17181C;
  font-family: "Open Sans", sans-serif;
  font-size: 22px;
  font-weight: 600;
  line-height: 125%;
}
main.quotePage .quote-form__step-text {
  color: #5B6171;
  font-size: 14px;
  font-weight: 600;
  line-height: 150%;
}
main.quotePage .quote-form__more {
  -webkit-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  position: absolute;
  bottom: 28px;
  right: 20px;
  padding: 12px;
}
main.quotePage .quote-form__step-body {
  margin-top: -30px;
  padding: 50px 40px 40px 40px;
  border-radius: 0px 0px 8px 8px;
  background: #E8F4FC;
  -webkit-transition: padding 0.3s ease-out, -webkit-transform 0.3s ease-out;
  transition: padding 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -o-transition: transform 0.3s ease-out, padding 0.3s ease-out;
  transition: transform 0.3s ease-out, padding 0.3s ease-out;
  transition: transform 0.3s ease-out, padding 0.3s ease-out, -webkit-transform 0.3s ease-out;
  visibility: hidden;
  height: 0px;
  padding-top: 10px;
  padding-bottom: 0px;
  -webkit-transform: translateY(-10px);
      -ms-transform: translateY(-10px);
          transform: translateY(-10px);
  opacity: 0;
}
main.quotePage .quote-form__step-body.active {
  visibility: visible;
  height: auto;
  padding-top: 40px;
  padding-bottom: 10px;
  opacity: 1;
  -webkit-transform: translateY(0px);
      -ms-transform: translateY(0px);
          transform: translateY(0px);
}
main.quotePage .quote-form__form-item {
  position: relative;
  margin-bottom: 20px;
}
main.quotePage .quote-form__form-item label {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  color: #444955;
  font-size: 16px;
  font-weight: 600;
  line-height: 150%;
}
main.quotePage .quote-form__form-item label input {
  -webkit-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  font-family: "Work Sans", sans-serif;
  width: 100%;
  padding: 13.5px 20px;
  border-radius: 8px;
  border: 1px solid #E3E4E8;
  background: #FFFFFF;
  color: #2D3039;
  font-size: 14px;
  font-weight: 400;
  line-height: 150%;
}
main.quotePage .quote-form__form-item label input:focus {
  border: 1px solid #007C78;
}
main.quotePage .quote-form__form-item label input.wpcf7-not-valid {
  border: 1px solid #BA0000;
}
main.quotePage .quote-form__form-item label select {
  cursor: pointer;
  font-family: "Work Sans", sans-serif;
  width: 100%;
  padding: 13.5px 20px;
  border-radius: 8px;
  border: 1px solid #E3E4E8;
  color: #2D3039;
  font-size: 14px;
  font-weight: 400;
  line-height: 150%;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: white;
}
main.quotePage .quote-form__form-item label select:focus {
  border: 1px solid #007C78;
}
main.quotePage .quote-form__form-item label textarea {
  cursor: pointer;
  font-family: "Work Sans", sans-serif;
  width: 100%;
  padding: 13.5px 20px;
  border-radius: 8px;
  border: 1px solid #E3E4E8;
  color: #2D3039;
  font-size: 14px;
  font-weight: 400;
  line-height: 150%;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  height: 150px;
}
main.quotePage .quote-form__form-item label textarea:focus {
  border: 1px solid #007C78;
}
main.quotePage .quote-form__form-item .select-arrow {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
  position: absolute;
  right: 20px;
  bottom: 14px;
}
main.quotePage .quote-form__form-item .input-file input {
  visibility: hidden;
  height: 0px;
  padding: 0px;
}
main.quotePage .quote-form__form-item .input-file__alert {
  margin-top: 3px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
}
main.quotePage .quote-form__form-item .input-file__alert .input-file__alert-logo img {
  width: 24px;
  height: 24px;
}
main.quotePage .quote-form__form-item .input-file__alert .input-file__alert-text {
  width: calc(100% - 35px);
  color: #5B6171;
  font-size: 12px;
  font-weight: 400;
  line-height: 140%;
}
main.quotePage .quote-form__form-item .input-file__alert .input-file__alert-info {
  width: 100%;
  color: #5B6171;
  font-size: 12px;
  font-weight: 400;
  line-height: 140%;
}
main.quotePage .quote-form__form-item .codedropz-upload-handler {
  background-color: white;
  font-family: "Work Sans", sans-serif;
  width: 100%;
  padding: 13.5px 20px;
  border-radius: 8px;
  border: 1px solid #e3e4e8;
  color: #2d3039;
  font-size: 14px;
  font-weight: 400;
  line-height: 150%;
}
main.quotePage .quote-form__form-item .codedropz-upload-handler h3 {
  font-family: "Work Sans", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 150%;
}
main.quotePage .quote-form__form-item .codedropz-upload-handler .cd-upload-btn {
  border-radius: 4px;
  border: 1px solid #007C78;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 7px;
  max-width: 160px;
  color: #007C78;
  text-align: center;
  font-family: "Work Sans", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 150%;
  text-transform: uppercase;
  margin: 0 auto;
  margin-top: 8px;
}
main.quotePage .quote-form__form-required {
  display: inline-block;
  margin-left: 6px;
  color: #BA0000;
  font-size: 12px;
  font-weight: 400;
  line-height: 150%;
  position: relative;
  bottom: 1px;
}
main.quotePage .quote-contacts {
  margin-top: 60px;
}
main.quotePage .quote-contacts__title {
  color: #0F558A;
  font-family: "Barlow", sans-serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}
main.quotePage .quote-contacts__col {
  margin-top: 43px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
main.quotePage .quote-contacts__img {
  width: 49%;
}
main.quotePage .quote-contacts__img img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
main.quotePage .quote-contacts__row {
  width: 46%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
main.quotePage .quote-contacts__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}
main.quotePage .quote-contacts__item:nth-child(1) {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  width: 222px;
}
main.quotePage .quote-contacts__item:nth-child(2) {
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
  width: 222px;
  margin-top: 22px;
}
main.quotePage .quote-contacts__item:nth-child(3) {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  width: 300px;
}
main.quotePage .quote-contacts__item:nth-child(4) {
  -webkit-box-ordinal-group: 5;
      -ms-flex-order: 4;
          order: 4;
  margin-top: 22px;
  width: 300px;
}
main.quotePage .quote-contacts__item-container {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}
main.quotePage .quote-contacts__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  color: #2D3039;
  font-size: 14px;
  font-weight: 500;
  line-height: 140%;
  margin-top: -2px;
}
main.quotePage .quote-contacts__text p {
  font-weight: 500;
}
main.quotePage .quote-contacts__text a {
  font-weight: 500;
  margin-bottom: 1px;
}
main.quotePage .quote-contacts__text span {
  font-size: 12px;
  font-weight: 500;
  margin-bottom: 1px;
}
main.quotePage .quote-contacts__text span:first-child {
  margin-bottom: 0px;
  font-weight: 400;
}
main.quotePage .quote-services {
  margin-top: 90px;
}
main.quotePage .quote-services__title {
  color: #0F558A;
  font-family: "Barlow", sans-serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  margin-bottom: 40px;
}
main.quotePage .quote-services__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  max-width: 280px;
}
main.quotePage .quote-services__item-img {
  height: 240px;
  overflow: hidden;
  border-radius: 8px;
}
main.quotePage .quote-services__item-img img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
main.quotePage .quote-services__item-title {
  color: #444955;
  font-size: 16px;
  font-weight: 600;
  line-height: 150%;
}

.hide-cart {
  display: none !important;
}

@media (max-width: 860px) {
  .header__btn {
    display: none;
  }
  .header__search {
    display: none;
  }
  .header__row-bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .about__col2 {
    padding-right: 0px;
  }
  .footer__row {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 0px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .footer__emails {
    width: 100%;
    margin-bottom: 30px;
  }
  .footer__serv {
    width: 48%;
    margin-bottom: 30px;
  }
  .footer__address {
    width: 48%;
  }
  .footer__row-bottom {
    margin-top: 30px;
  }
  main.services .services-steps__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 30px;
  }
  main.services .services-steps__title-mobile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 10px;
  }
  main.services .services-steps__btn-mobile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0 auto;
  }
  main.services .services-steps__first-item {
    display: none;
  }
  main.services .services-steps__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  main.services .services-steps__container-item {
    border-radius: 8px;
    width: 73.85%;
  }
  main.aboutPage .trust__item {
    width: 28.728%;
  }
  main.aboutPage .about-contacts__row {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 15px;
  }
  main.aboutPage .about-contacts__item {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
            flex: 1 1 100%;
  }
  main.aboutPage .about-contacts__item:nth-child(1) {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 40%;
            flex: 1 1 40%;
  }
  main.aboutPage .about-contacts__item:nth-child(2) {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 40%;
            flex: 1 1 40%;
  }
  main.aboutPage .about-contacts__text span {
    margin-bottom: 3px;
  }
  main.accountPage .account-select__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 15px;
  }
  main.accountPage .account-select__item {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
    width: 100%;
  }
  .default-page {
    margin-top: 20px;
  }
  .default-page__title {
    font-family: "Open Sans", sans-serif;
    font-size: 18px;
    color: #444955;
    font-style: normal;
    font-weight: 700;
    line-height: 125%;
    line-height: normal;
  }
  .default-page__content {
    margin-top: 30px;
  }
  .default-page .cart_totals > h2 {
    font-size: 18px;
    margin-bottom: 30px;
  }
  .account-page {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    gap: 35px;
  }
  .account-page .woocommerce-MyAccount-navigation {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
    -ms-flex-item-align: initial;
        align-self: initial;
  }
  .account-page .woocommerce-MyAccount-content {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
  }
  .account-page .woocommerce-MyAccount-content .woocommerce-Addresses {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 35px;
  }
  .account-page .woocommerce-MyAccount-content .woocommerce-Addresses .woocommerce-Address {
    width: 100%;
    padding: 10px 25px;
  }
  .login-page {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 35px;
  }
  .login-page .u-column1 {
    width: 100%;
  }
  .login-page .u-column2 {
    width: 100%;
  }
  .singleProduct-page__info .woocommerce-product-gallery {
    width: 59%;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-around;
  }
  .singleProduct-page__info .summary {
    width: 39%;
  }
  main.builder-page .nav {
    margin-top: 20px;
  }
  main.builder-page .nav__text {
    font-family: Work Sans;
    font-size: 11px;
    font-weight: 400;
    line-height: 13px;
    letter-spacing: 0px;
    text-align: left;
    background-color: white;
  }
  main.builder-page .nav__text2 {
    color: #007C78;
  }
  main.builder-page .page-title {
    margin-top: 20px;
  }
  main.builder-page .page-title__text {
    font-family: Open Sans;
    font-size: 18px;
    font-weight: 700;
    line-height: 25px;
    letter-spacing: 0px;
    text-align: left;
  }
  main.builder-page .steps__layout {
    display: none;
  }
  main.builder-page .steps__mobile {
    margin-top: 20px;
    display: inline-block;
  }
  main.builder-page .steps__mobile__text {
    font-family: Work Sans;
    font-size: 14px;
    font-weight: 600;
    line-height: 16px;
    letter-spacing: 0px;
    text-align: left;
  }
  main.builder-page .steps__mobile__text2 {
    font-size: 12px;
    font-weight: 400;
    line-height: 14px;
    letter-spacing: 0px;
    text-align: left;
  }
  main.builder-page .hose-builder {
    margin-right: 0;
    margin-top: 20px;
  }
  main.builder-page .hose-builder__title {
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
  }
  main.builder-page .hose-builder__df {
    display: inline;
  }
  main.builder-page .hose-builder__image-m {
    width: 100%;
  }
  main.builder-page .hose-builder__layout {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    background-color: #F5F5F5;
    border-radius: 0px;
  }
  main.builder-page .hose-builder__text {
    font-size: 16px;
    font-weight: 700;
    line-height: 22px;
    letter-spacing: 0px;
    text-align: center;
  }
  main.builder-page .hose-builder__text2 {
    font-size: 11px;
    font-weight: 400;
    line-height: 13px;
    letter-spacing: 0px;
    text-align: center;
  }
  main.builder-page .hose-builder__text3 {
    font-family: Work Sans;
    font-size: 14px;
    font-weight: 600;
    line-height: 16px;
    letter-spacing: 0px;
    text-align: center;
  }
  main.builder-page .hose-builder__button {
    width: 140px;
    height: 32px;
    padding: 4px 4px 4px 4px;
    border-radius: 8px;
    gap: 8px;
    background-color: #007C78;
    color: #FFFFFF;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  main.builder-page .hose-builder__layout-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  main.builder-page .hose-builder2 {
    margin-top: 15px;
  }
  main.builder-page .hose-builder2__mt {
    margin-top: 10px;
  }
  main.builder-page .hose-builder2__mt2 {
    margin-top: 5px;
  }
  main.builder-page .hose-builder2__radio {
    width: 16px;
    height: 16px;
  }
  main.builder-page .hose-builder2__text {
    font-family: Work Sans;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
  }
  main.builder-page .hose-builder2__layout {
    background-color: white;
  }
  main.builder-page .hose-builder2__layout2 {
    margin-left: 0;
    margin-top: 0;
  }
  main.builder-page .hose-builder2__select {
    width: 223px;
    height: 36px;
    padding: 8px 12px 8px 16px;
    border-radius: 8px;
    gap: 8px;
    border: 1px solid #C6C9D2;
  }
  main.builder-page .hose-builder5__layout {
    background-color: white;
    padding: 0;
  }
  main.builder-page .hose-builder5__checkbox {
    width: 18px;
    height: 18px;
  }
  main.builder-page .hose-builder5__checkbox_checked[type=checkbox] {
    width: 18px;
    height: 18px;
    accent-color: #007C78;
  }
  main.builder-page .hose-gas__top2 {
    background-color: white;
  }
  main.builder-page .hose-gas__mobile {
    width: 30%;
  }
  main.builder-page .hose-gas__mobile2 {
    width: 30%;
  }
  main.builder-page .hose-gas__layout-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-left: 10px;
    margin-right: 10px;
  }
  main.builder-page .hose-gas__text {
    margin-top: 10px;
    margin-left: 5px;
    font-family: Work Sans;
    font-size: 12px;
    font-weight: 400;
    line-height: 14px;
    letter-spacing: 0px;
    text-align: left;
  }
  main.builder-page .hose-gas__cd {
    width: 100%;
    height: 80%;
    background-color: #F5F5F5;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    position: relative;
    margin-top: 10px;
  }
  main.builder-page .hose-gas__checkbox {
    position: absolute;
    top: 10px;
    right: 10px;
  }
  main.builder-page .hose-gas__img {
    width: 75%;
  }
}
@media (max-width: 730px) {
  .recaptcha {
    -webkit-transform: scale(0.77);
        -ms-transform: scale(0.77);
            transform: scale(0.77);
    -webkit-transform-origin: 0 0;
        -ms-transform-origin: 0 0;
            transform-origin: 0 0;
  }
}
@media (max-width: 600px) {
  body {
    font-size: 14px;
  }
  .container {
    padding: 0 25px;
  }
  .header__mobile-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .header__mobile-menu .header__menu-cart {
    display: none;
  }
  .header__top-row {
    display: none;
  }
  .header__row {
    margin-top: 20px;
    padding: 0px 0px;
    gap: 0px;
  }
  .header__logo {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100px;
            flex: 0 0 100px;
  }
  .header__menu {
    gap: 22px;
  }
  .header__menu .header__menu-cart span.header__menu-cart-count {
    right: auto;
    left: -10px;
    width: 18px;
    height: 18px;
    font-size: 11px;
    font-weight: 500;
  }
  .header__menu-item {
    width: auto;
  }
  .header__menu-item:last-child {
    -webkit-box-ordinal-group: 1000;
        -ms-flex-order: 999;
            order: 999;
  }
  .header__menu-item:first-child {
    display: none;
  }
  .header__menu-item span {
    display: none;
  }
  main {
    margin-bottom: 60px;
  }
  .front {
    margin-top: 30px;
  }
  .front__mobile-btns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .front__info {
    margin-bottom: 15px;
  }
  .front__title {
    font-family: "Open Sans", sans-serif;
    font-size: 18px;
    color: #444955;
    font-style: normal;
    font-weight: 600;
    line-height: 125%;
    line-height: normal;
    margin-bottom: 15px;
  }
  .front__subtitle {
    font-family: "Open Sans", sans-serif;
    font-size: 24px;
    color: #0A385C;
    font-style: normal;
    font-weight: 700;
    line-height: 125%;
    line-height: normal;
    margin-bottom: 0px;
  }
  .front__btns {
    display: none;
  }
  .front__img-bg {
    display: none;
  }
  .front__img img {
    min-height: 270px;
  }
  .advantage {
    margin-top: 60px;
  }
  .advantage__title {
    font-family: "Open Sans", sans-serif;
    font-size: 18px;
    color: #0F558A;
    font-style: normal;
    font-weight: 700;
    line-height: 125%;
    margin-bottom: 40px;
    line-height: normal;
  }
  .advantage__item {
    height: 340px;
    padding: 20px 16px;
    margin: 0px 43px;
  }
  .advantage__item-center {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding-top: 0px;
  }
  .advantage__item-title {
    font-family: "Open Sans", sans-serif;
    font-size: 16px;
    color: #FFFFFF;
    font-style: normal;
    font-weight: 700;
    line-height: 125%;
    line-height: normal;
    margin-bottom: 16px;
  }
  .advantage__item-text {
    line-height: normal;
  }
  .btn-catalog {
    font-family: "Work Sans", sans-serif;
    font-weight: 500;
    letter-spacing: normal;
    padding: 8px 20px;
  }
  .btn-catalog__burger {
    gap: 4.2px;
  }
  .btn-catalog__burger span {
    height: 2px;
    width: 16px;
    border-radius: 0px;
  }
  header .search input[type=text] {
    font-size: 12px;
    line-height: normal;
    padding: 8px 12px 8px 37px;
  }
  header .search input[type=submit] {
    height: 32px;
    width: 35px;
  }
  header .search > img {
    width: 16px;
    height: 16px;
    left: 13px;
    top: 8px;
  }
  header .search__result {
    position: absolute;
    width: 100%;
    right: 0px;
    min-width: 250px;
  }
  header .search__result-item {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 5px;
  }
  header .search__result-item-description {
    gap: 6px;
    width: 100%;
  }
  header .search__result-item-title {
    font-size: 13px;
  }
  header .search__result-item p {
    line-height: 11px;
    font-size: 11px;
  }
  header .search__result-item img {
    width: 100px;
    margin: 0 0px 5px 0;
  }
  .btn {
    max-width: 240px;
    padding: 11px;
    font-size: 14px;
    line-height: normal;
  }
  .about {
    margin-top: 60px;
  }
  .about__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 40px;
  }
  .about__col1 {
    width: 100%;
  }
  .about__title {
    color: #0F558A;
    font-family: "Open Sans", sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
  }
  .about__col2 {
    display: none;
  }
  .about__btn {
    display: none;
  }
  .about__mobile-col {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .products {
    margin-top: 60px;
  }
  .products__list {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    gap: 0px;
  }
  .products__item-first {
    display: none;
  }
  .products__item {
    padding: 20px 2.5% 5px 7.38%;
    width: 47.7%;
    height: auto;
    min-height: 98px;
    margin-bottom: 15px;
  }
  .products__item:nth-child(n+6) {
    display: none;
  }
  .products__item-title {
    color: #17181C;
    font-family: "Work Sans", sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    padding-left: 0;
  }
  .products__item-more {
    padding: 0;
  }
  .products__btn-container {
    gap: 10px;
  }
  .products__mobile-title {
    display: block;
  }
  .products__mobile-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 7.5px 0px;
    line-height: normal;
  }
  .news {
    margin-top: 60px;
  }
  .news__col1 {
    display: none;
  }
  .news__mobile-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .news__title {
    font-family: "Work Sans", sans-serif;
    font-size: 14px;
    color: #17181C;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 10px;
  }
  .news__text {
    font-size: 12px;
    line-height: normal;
    font-weight: 400;
  }
  .news__more {
    position: absolute;
    bottom: 0;
    right: 0;
  }
  .news__col2 {
    width: 100%;
    gap: 15px;
  }
  .news__item {
    position: relative;
    padding: 20px 2.46% 50px 5%;
    min-height: 100px;
  }
  .news__item-container .news__text {
    width: 86%;
  }
  .promo {
    margin-top: 60px;
  }
  .promo__col {
    max-width: 742px;
    padding: 20px 6.77% 20px 4.92%;
    gap: 15px;
  }
  .promo__title {
    font-family: "Open Sans", sans-serif;
    font-size: 18px;
    line-height: normal;
  }
  .promo__text {
    color: #FFFFFF;
    font-family: "Work Sans", sans-serif;
    font-size: 12px;
    line-height: normal;
  }
  .promo__btn {
    max-width: 245px;
    padding: 10px 45px;
    font-size: 14px;
    line-height: normal;
  }
  .promo__btn-container {
    gap: 10px;
  }
  .footer__logo {
    margin-bottom: 28px;
    width: 30.77%;
  }
  .footer__emails-list {
    gap: 10px;
  }
  .footer__eamil {
    gap: 8px;
  }
  .footer__email-img {
    width: 16px;
    height: auto;
    margin-left: 2px;
    margin-bottom: 6px;
  }
  .footer__email-text {
    gap: 3px;
    font-size: 12px;
    line-height: normal;
  }
  .footer__subtitle {
    font-size: 12px;
    line-height: normal;
  }
  .footer__list li {
    font-size: 12px;
    line-height: normal;
  }
  .footer__address {
    width: 48%;
  }
  .footer__info-text {
    font-size: 12px;
    font-weight: 400;
    line-height: normal;
  }
  .footer__copyright {
    font-family: "Work Sans", sans-serif;
    font-size: 12px;
  }
  .product-similar {
    margin-top: 40px;
  }
  .product-similar .container {
    max-width: auto;
    padding: 0px;
  }
  .product-similar .product-similar__title {
    font-family: "Open Sans", sans-serif;
    font-size: 18px;
    color: #0F558A;
    font-style: normal;
    font-weight: 700;
    line-height: 125%;
    margin-left: 25px;
    margin-bottom: 40px;
    text-transform: uppercase;
  }
  .product-related {
    margin-top: 60px;
  }
  .product-related .container {
    max-width: auto;
    padding: 0px;
  }
  .product-related .product-related__title {
    font-family: "Open Sans", sans-serif;
    font-size: 18px;
    color: #0F558A;
    font-style: normal;
    font-weight: 700;
    line-height: 125%;
    margin-left: 25px;
    margin-bottom: 43px;
    text-transform: uppercase;
  }
  .filter {
    max-width: 0px;
    overflow: hidden;
    -webkit-transform: translateY(-300px);
        -ms-transform: translateY(-300px);
            transform: translateY(-300px);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    min-height: 100%;
    z-index: 20;
    -webkit-transition: -webkit-transform 0.3s ease-out;
    transition: -webkit-transform 0.3s ease-out;
    -o-transition: transform 0.3s ease-out;
    transition: transform 0.3s ease-out;
    transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  }
  .filter_active {
    max-width: 100%;
    overflow: auto;
    -webkit-transform: translateY(0px);
        -ms-transform: translateY(0px);
            transform: translateY(0px);
  }
  .filter__mobile-title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #E3E4E8;
    color: #444955;
    font-size: 14px;
    font-weight: 400;
    line-height: normal;
  }
  .filter__mobile-submit__mobile-submit button {
    width: 74%;
  }
  .filter__form {
    position: static;
    border-radius: 0px;
    min-height: 100%;
    height: auto;
  }
  .filter__switch-title {
    color: #2D3039;
    line-height: normal;
  }
  .filter__list-title {
    gap: 20px;
  }
  .filter__list-title {
    color: #444955;
    line-height: normal;
  }
  .filter__list-items label {
    color: #000;
    line-height: normal;
  }
  .range_container .form_control {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 15px;
    font-size: 12px;
    color: #000;
  }
  .range_container .form_control_container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 15px;
  }
  main.services .services-front {
    margin-top: 20px;
  }
  main.services .services-front__info {
    max-width: 100%;
    margin-bottom: 30px;
  }
  main.services .services-front__info.testing-info {
    max-width: 100%;
  }
  main.services .services-front__title {
    font-family: "Open Sans", sans-serif;
    font-size: 18px;
    color: #444955;
    font-style: normal;
    font-weight: 600;
    line-height: 125%;
    line-height: normal;
    margin-bottom: 15px;
  }
  main.services .services-front__subtitle {
    color: #444955;
    font-family: "Work Sans", sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 20px;
  }
  main.services .services-front__subtitle.testing-subtitle {
    max-width: 100%;
  }
  main.services .services-front__btn {
    padding: 7.5px 22px;
    font-size: 14px;
    line-height: normal;
  }
  main.services .services-front__btn-container {
    gap: 10px;
  }
  main.services .services-front__img {
    margin-bottom: 60px;
  }
  main.services .services-front__img img {
    min-height: 270px;
  }
  main.services .services-row {
    margin-top: 15px;
    gap: 20px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  main.services .services-row__left {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
            flex: 1 1 100%;
  }
  main.services .services-row__left .services-content__photo {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  main.services .services-row__right {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
            flex: 1 1 100%;
    gap: 10px;
  }
  main.services .services-row.testing-row {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  main.services .services-row.reverse-row .services-row__left {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  main.services .services-row.reverse-row .services-row__right {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  main.services .services-title {
    color: #0F558A;
    font-family: "Work Sans", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: normal;
  }
  main.services .services-list__items {
    gap: 10px;
    margin-left: 26.15%;
  }
  main.services .services-list__item-title {
    padding: 5px 0px;
    gap: 10px;
  }
  main.services .services-list__item-title img {
    -webkit-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
  }
  main.services .services-list__item-title_active img {
    -webkit-transform: rotate(-90deg);
        -ms-transform: rotate(-90deg);
            transform: rotate(-90deg);
  }
  main.services .services-list__item-more {
    padding: 0px;
  }
  main.services .services-list__item-more img {
    width: 24px;
    height: 24px;
  }
  main.services .services-list__items-more {
    display: none;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  main.services .services-list__items-more_active {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  main.services .services-list__items-more a {
    font-size: 12px;
  }
  main.services .services-list__item-text {
    font-size: 12px;
    font-weight: 500;
    line-height: normal;
  }
  main.services .services-list__item-description {
    font-size: 12px;
    line-height: normal;
    padding-left: 36px;
  }
  main.services .services-steps {
    margin-top: 55px;
  }
  main.services .services-steps__title-mobile {
    color: #0F558A;
    font-family: "Open Sans", sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
  }
  main.services .services-steps__item {
    min-height: 340px;
  }
  main.services .services-steps__btn-mobile {
    width: 73.85%;
    max-width: 100%;
    padding: 7.5px 20px 7.5px 32px;
  }
  main.services .services-steps__btn-container {
    gap: 10px;
  }
  main.services .services-steps__item-number {
    font-size: 18px;
    font-weight: 700;
    line-height: normal;
  }
  main.services .services-steps__item-title {
    font-size: 16px;
    font-weight: 700;
    line-height: normal;
  }
  main.services .services-steps__item-description {
    font-size: 11px;
    line-height: normal;
  }
  main.services .services-content .services-row {
    margin-top: 15px;
    gap: 15px;
  }
  main.services .services-content__text {
    font-size: 12px;
    line-height: normal;
    gap: 10px;
  }
  main.services .services-content__text h3 {
    color: #444955;
    font-family: "Work Sans", sans-serif;
    font-size: 12px;
    font-weight: 500;
    line-height: normal;
  }
  main.services .services-content__photo {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100%;
    max-width: 100%;
  }
  main.services .services-content__photo img {
    width: 100%;
    min-height: 217px;
  }
  main.services .services-content__btns {
    margin-top: 5px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    height: 100%;
    gap: 21px;
  }
  main.services .services-content__btn {
    max-width: 100%;
    width: 100%;
  }
  main.services .services-content .detection-margin-section {
    margin-top: 15px;
  }
  main.services .services-content .detection-margin-text {
    margin-top: 16px;
  }
  main.services .services-content .services-title-mobile-delivery {
    display: block;
  }
  main.services .services-content .services-content__btns-container .services-title {
    display: none;
  }
  main.services .services-basic-content {
    margin-top: 60px;
    font-size: 12px;
  }
  main.services .services-basic-content ul li {
    margin-left: 15px;
  }
  main.aboutPage .front {
    margin-top: 30px;
  }
  main.aboutPage .front__info {
    margin-bottom: 15px;
  }
  main.aboutPage .front__title {
    font-family: "Open Sans", sans-serif;
    font-size: 24px;
    color: #444955;
    font-style: normal;
    font-weight: 700;
    line-height: 125%;
    line-height: normal;
  }
  main.aboutPage .our-work {
    margin-top: 60px;
  }
  main.aboutPage .our-work__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    gap: 16px;
  }
  main.aboutPage .our-work__col {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    gap: 16px;
    min-height: auto;
  }
  main.aboutPage .our-work__col:nth-child(1) h3 {
    color: #0F558A;
    display: block;
  }
  main.aboutPage .our-work__col:nth-child(2) h3 {
    display: none;
  }
  main.aboutPage .our-work__title {
    color: #0F558A;
    font-family: "Open Sans", sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
    margin-bottom: 25px;
  }
  main.aboutPage .our-work__photo img {
    border-radius: 8px;
    width: 100%;
    min-height: 216px;
    -o-object-fit: cover;
       object-fit: cover;
  }
  main.aboutPage .our-work__text {
    gap: 10px;
  }
  main.aboutPage .our-work__text p {
    font-size: 12px;
    line-height: normal;
  }
  main.aboutPage .our-work__text h3 {
    color: #0F558A;
    max-width: 100%;
    font-family: "Work Sans", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: normal;
  }
  main.aboutPage .trust {
    margin-top: 34px;
  }
  main.aboutPage .trust__title {
    color: #0F558A;
    font-family: "Open Sans", sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
    margin-bottom: 40px;
  }
  main.aboutPage .trust__row {
    gap: 0px;
  }
  main.aboutPage .trust__item {
    width: 47.69%;
    margin-bottom: 15px;
    padding: 14px 0px;
    color: #2D3039;
    font-family: "Work Sans", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: normal;
  }
  main.aboutPage .trust__item:last-child {
    padding: 12px 0px;
  }
  main.aboutPage .trust__item:last-child img {
    width: 18px;
    height: 18px;
  }
  main.aboutPage .principles {
    margin-top: 45px;
  }
  main.aboutPage .principles__title {
    color: #0F558A;
    font-family: "Open Sans", sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
    margin-bottom: 40px;
  }
  main.aboutPage .principles__row {
    margin-top: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    gap: 15px;
  }
  main.aboutPage .principles__col {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    width: 100%;
    gap: 15px;
  }
  main.aboutPage .principles__col .principles__item .principles__item-text {
    width: 100%;
  }
  main.aboutPage .principles__col2 {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    width: 100%;
    padding: 28px 24px 32px 24px;
  }
  main.aboutPage .clients {
    margin-top: 63px;
  }
  main.aboutPage .clients__title {
    color: #0F558A;
    font-family: "Open Sans", sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
    margin-bottom: 40px;
  }
  main.aboutPage .reviews {
    margin-top: 85px;
    height: 203px;
  }
  main.aboutPage .reviews__title {
    color: #0F558A;
    font-family: "Open Sans", sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
    margin-bottom: 40px;
    margin-bottom: 20px;
  }
  main.aboutPage .about-contacts {
    margin-top: 90px;
  }
  main.aboutPage .about-contacts__title {
    color: #0F558A;
    font-family: "Open Sans", sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
  }
  main.aboutPage .about-contacts__item:nth-child(1) {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  main.aboutPage .about-contacts__item:nth-child(2) {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  main.aboutPage .about-contacts__item:nth-child(3) {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }
  main.aboutPage .about-contacts__item:nth-child(4) {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
  main.aboutPage .about-contacts__row {
    margin-top: 40px;
  }
  main.aboutPage .about-contacts__text {
    font-size: 12px;
  }
  main.aboutPage .map {
    margin-top: 15px;
  }
  main.aboutPage .map .container {
    padding: 0px;
  }
  main.aboutPage .map__row {
    height: 340px;
  }
  main.aboutPage .map__btn {
    top: 70px;
  }
  .default-page .woocommerce-cart-form .shop_table .shop_table__head-row {
    gap: 5px;
  }
  .default-page .woocommerce-cart-form .shop_table .shop_table__head-row .product-remove {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 10px;
            flex: 0 0 10px;
  }
  .default-page .woocommerce-cart-form .shop_table .shop_table__head-row .product-img {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 30%;
            flex: 0 0 30%;
  }
  .default-page .woocommerce-cart-form .shop_table .shop_table__head-row .product-description {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
            flex: 1 1 100%;
  }
  .default-page .woocommerce-cart-form .shop_table .shop_table__head-row .product-total {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 90px;
            flex: 1 0 90px;
  }
  .default-page .woocommerce-cart-form .shop_table .shop_table__body-row .cart_item {
    gap: 5px;
  }
  .default-page .woocommerce-cart-form .shop_table .shop_table__body-row .product-remove {
    font-size: 20px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 10px;
            flex: 0 0 10px;
  }
  .default-page .woocommerce-cart-form .shop_table .shop_table__body-row .product-thumbnail {
    padding: 15px 5px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 30%;
            flex: 0 0 30%;
  }
  .default-page .woocommerce-cart-form .shop_table .shop_table__body-row .product-description {
    padding: 15px 5px;
    -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
            flex: 1 1 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
    font-size: 12px;
  }
  .default-page .woocommerce-cart-form .shop_table .shop_table__body-row .product-subtotal {
    padding: 15px 5px;
    -webkit-box-flex: 1;
        -ms-flex: 1 0 90px;
            flex: 1 0 90px;
    font-size: 12px;
  }
  .default-page .cart_totals > h2 {
    font-size: 18px;
    line-height: 100%;
    margin: 30px 0px;
  }
  .default-page .cart_totals .shop_table tr th {
    padding-right: 15px;
    text-align: start;
  }
  .default-page .cart_totals .shop_table tr td {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 10px;
  }
  .default-page .cart_totals .woocommerce-shipping-calculator {
    padding: 0px 0px;
  }
  main.accountPage .account-front {
    margin-top: 31px;
  }
  main.accountPage .account-front .container {
    padding: 0px;
  }
  main.accountPage .account-front__title {
    font-family: "Open Sans", sans-serif;
    font-size: 24px;
    color: #444955;
    font-style: normal;
    font-weight: 700;
    line-height: 125%;
    line-height: normal;
    margin-bottom: 40px;
    padding: 0px 25px;
  }
  main.accountPage .account-front__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  main.accountPage .account-front__text {
    width: 87.4%;
    font-family: "Open Sans", sans-serif;
    font-size: 16px;
    color: #FFFFFF;
    font-style: normal;
    font-weight: 700;
    line-height: 125%;
    line-height: normal;
    text-transform: uppercase;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-flex: 0;
        -ms-flex: 0 1 auto;
            flex: 0 1 auto;
    padding: 30px 25px 30px 25px;
  }
  main.accountPage .account-front__img {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
    width: 100%;
  }
  main.accountPage .account-front__img img {
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  main.accountPage .account-select {
    margin-top: 60px;
  }
  main.accountPage .account-select__title {
    color: #0F558A;
    font-family: "Open Sans", sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
    margin-bottom: 40px;
  }
  main.accountPage .account-select__item {
    padding: 10px 0px 10px 10px;
  }
  main.accountPage .account-select__img {
    margin-right: 9px;
  }
  main.accountPage .account-select__img img {
    width: 40px;
    height: 40px;
  }
  main.accountPage .account-select__text {
    gap: 5px;
  }
  main.accountPage .account-select__item-title {
    color: #17181C;
    font-family: "Work Sans", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: normal;
  }
  main.accountPage .account-select__item-description {
    font-size: 12px;
    font-weight: 400;
    line-height: normal;
  }
  main.accountPage .account-select__more {
    padding: 0px;
  }
  .shop-page {
    margin-top: 15px;
    margin-bottom: 60px;
  }
  .shop-page .archive-title {
    margin-top: 26px;
    font-family: "Open Sans", sans-serif;
    font-size: 18px;
    color: #444955;
    font-style: normal;
    font-weight: 700;
    line-height: 125%;
  }
  .shop-page .archive {
    margin-top: 15px;
    gap: 0px;
  }
  .shop-page .archive__front {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
    width: 100%;
  }
  .shop-page .archive__prop {
    margin-top: 0px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    gap: 19px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 20px;
  }
  .shop-page .archive__sort {
    display: none;
  }
  .shop-page .archive__prop-mobile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .shop-page .archive__view {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 13px;
  }
  .shop-page .archive__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 15px;
  }
  .shop-page .archive__pagination {
    margin-top: 67px;
  }
  .shop-page .products > h2 {
    font-family: "Open Sans", sans-serif;
    font-size: 18px;
    color: #0F558A;
    font-style: normal;
    font-weight: 700;
    line-height: 125%;
    margin-bottom: 40px;
    line-height: normal;
    text-transform: uppercase;
  }
  .shop-page .products .product {
    width: 155px;
    max-width: 155px;
    position: relative;
  }
  .shop-page .products .product .woocommerce-LoopProduct-link .image-с {
    min-height: 155px;
    max-height: 155px;
    margin-bottom: 10px;
  }
  .shop-page .products .product .woocommerce-LoopProduct-link .image-с img {
    max-width: 110px;
    width: 100%;
    height: 110px;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .shop-page .products .product .description-с {
    padding: 0px 0px;
    max-width: 155px;
  }
  .shop-page .products .product .description-с .woocommerce-loop-product__title {
    font-size: 12px;
    font-weight: 500;
    line-height: normal;
    margin-bottom: 8px;
  }
  .shop-page .products .product .description-с .price {
    gap: 5px;
    font-size: 14px;
    font-weight: 600;
    line-height: normal;
  }
  .shop-page .products .product .description-с .price ins {
    font-size: 11px;
    font-weight: 500;
    line-height: normal;
  }
  .shop-page .products .product .description-с .category-c {
    margin-bottom: 8px;
  }
  .shop-page .products .product .add_to_cart_button {
    top: 110px;
    right: 10px;
    width: 30px;
    height: 30px;
  }
  .shop-page .products .product.product-category > a {
    max-width: 100%;
  }
  .shop-page .products .product.product-category .image-с {
    min-height: 155px;
    max-height: 155px;
    margin-bottom: 10px;
  }
  .shop-page .products .product.product-category .image-с img {
    max-width: 110px;
    width: 100%;
    height: 110px;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .shop-page .products .product.product-category h2 {
    gap: 8px;
    font-size: 12px;
    line-height: normal;
  }
  .shop-page .products .product.product-category h2 mark {
    font-size: 12px;
    font-weight: 500;
    line-height: normal;
  }
  .shop-page .products.products-row {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    gap: 15px;
  }
  .shop-page .products.products-row .product {
    gap: 15px;
  }
  .shop-page .products.products-row .product .woocommerce-LoopProduct-link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .shop-page .products.products-row .product .woocommerce-LoopProduct-link .image-с {
    min-height: 100px;
    max-height: initial;
  }
  .shop-page .products.products-row .product .woocommerce-LoopProduct-link .image-с img {
    height: 75px;
  }
  .shop-page .products.products-row .product .description-с .price {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
  .shop-page .products.products-row.product-category > a {
    gap: 15px;
  }
  .singleProduct-page {
    margin-top: 25px;
  }
  .singleProduct-page__info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
    margin-bottom: 0px;
  }
  .singleProduct-page__info .singleProduct-page__info-mobile {
    display: block;
  }
  .singleProduct-page__info .woocommerce-product-gallery {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    gap: 20px;
  }
  .singleProduct-page__info .woocommerce-product-gallery .flex-control-nav {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 10px;
  }
  .singleProduct-page__info .woocommerce-product-gallery .flex-control-nav li {
    cursor: pointer;
    width: 6px;
    height: 6px;
    border-radius: 100px;
    background: #A3D1F5;
    opacity: 1;
  }
  .singleProduct-page__info .woocommerce-product-gallery .flex-control-nav li img {
    opacity: 0;
    height: 6px;
  }
  .singleProduct-page__info .woocommerce-product-gallery .flex-control-nav li:has(img.flex-active) {
    background: #1471B8;
  }
  .singleProduct-page__info .woocommerce-product-gallery .flex-viewport {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    height: auto;
  }
  .singleProduct-page__info .woocommerce-product-gallery .flex-viewport .woocommerce-product-gallery__image img {
    min-height: 268px;
    height: auto;
  }
  .singleProduct-page__info .summary {
    width: 100%;
    gap: 15px;
    margin-top: 0px;
  }
  .singleProduct-page__info .summary .product_title {
    display: none;
  }
  .singleProduct-page__info .summary .price {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    gap: 10px;
  }
  .singleProduct-page__info .summary .price ins {
    font-size: 18px;
    line-height: normal;
  }
  .singleProduct-page__info .summary .cart-c {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .singleProduct-page__info .summary .cart__title-c {
    font-size: 12px;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 5px;
  }
  .singleProduct-page__info .summary .cart {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 15px;
  }
  .singleProduct-page__info .summary .cart .single_add_to_cart_button {
    margin-top: 0px;
    font-size: 14px;
    font-weight: 600;
    line-height: normal;
    width: auto;
    -webkit-box-flex: 1;
        -ms-flex: 1 1 280px;
            flex: 1 1 280px;
  }
  .singleProduct-page__info .summary .product_meta {
    display: none;
  }
  .singleProduct-page__content {
    margin-top: 20px;
  }
  .singleProduct-page__content .woocommerce-tabs {
    display: none;
  }
  .singleProduct-page__content .product-mobile-description {
    display: block;
  }
  .singleProduct-page__content .up-sells {
    margin-top: 60px;
  }
  .singleProduct-page__content .up-sells .products {
    margin: 0px -25px;
  }
  .singleProduct-page__content .related {
    margin-top: 60px;
  }
  .singleProduct-page__content .related .products {
    margin: 0px -25px;
  }
  .woocommerce-breadcrumb {
    margin-top: 17px;
    font-size: 12px;
    line-height: normal;
    max-height: 50px;
  }
  .search-page {
    min-height: 60vh;
    margin-top: 30px;
  }
  .search-page__title {
    font-family: "Open Sans", sans-serif;
    font-size: 18px;
    color: #444955;
    font-style: normal;
    font-weight: 600;
    line-height: 125%;
    text-transform: uppercase;
    line-height: normal;
  }
  .search-page__query {
    color: #0F558A;
    font-family: "Barlow", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
    margin-top: 8px;
  }
  .search-page__row {
    margin-top: 32px;
  }
  .search-page__results-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 15px;
  }
  .search-page__result {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 15px;
    padding-bottom: 20px;
    border-bottom: 1px solid #ccc;
  }
  .search-page__result h2 {
    font-size: 16px;
  }
  .search-page__btn {
    max-width: 125px;
    padding: 8px 12px;
    font-size: 14px;
  }
  main.builder-page .hose-gas__mobile {
    width: 47%;
    margin-bottom: 15px;
  }
  main.builder-page .hose-gas__mobile2 {
    width: 47%;
  }
  main.builder-page .hose-gas__cd {
    width: 100%;
    margin-top: 0px;
    padding: 20px 23px;
    height: 150px;
    cursor: pointer;
  }
  main.builder-page .hose-gas__img {
    width: 100%;
    max-width: 180px;
  }
  main.builder-page .hose-gas__layout-wrapper {
    margin-left: 25px;
    margin-right: 25px;
  }
  main.builder-page .hose-gas__top2 {
    margin-top: 20px;
  }
  main.builder-page .hose-gas__checkbox {
    top: 12px;
    right: 10px;
  }
  main.builder-page .hose-gas__text {
    font-size: 12px;
    line-height: normal;
    margin-top: 10px;
    margin-left: 0px;
  }
  main.builder-page .steps {
    margin: 0;
  }
  main.builder-page .steps__mobile__text2 {
    margin-top: 5px;
    margin-bottom: 4px;
  }
  main.builder-page .hose-builder {
    margin-top: 0;
  }
  main.builder-page .hose-builder__image-inline {
    -webkit-transform: scale(1.1);
        -ms-transform: scale(1.1);
            transform: scale(1.1);
  }
  main.builder-page .hose-builder__layout {
    padding: 35px 0px 29px 0px;
    border-radius: 0px;
  }
  main.builder-page .hose-builder__text {
    color: #444955;
    line-height: normal;
  }
  main.builder-page .hose-builder__mt {
    margin-top: 12px;
    padding-bottom: 0px;
    padding-top: 0px;
  }
  main.builder-page .hose-builder__mt img {
    width: 19px;
    height: 19px;
  }
  main.builder-page .hose-builder__mt span {
    font-size: 12px;
    font-weight: 400;
    line-height: normal;
  }
  main.builder-page .hose-builder__image-m-center {
    width: 36%;
    min-width: 0px;
  }
  main.builder-page .hose-builder__image-left {
    width: 22%;
  }
  main.builder-page .hose-builder__image-right {
    width: 22%;
    -webkit-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
            transform: rotate(180deg);
  }
  main.builder-page .page-title {
    margin-top: 25px;
  }
  main.builder-page .page-title__text {
    font-family: "Open Sans", sans-serif;
    color: #444955;
    font-size: 18px;
    font-weight: 700;
    text-align: left;
  }
  main.builder-page .hose-builder2__button-center {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  main.videosPage .videos__title {
    margin-top: 36px;
    margin-bottom: 15px;
    font-family: "Open Sans", sans-serif;
    font-size: 24px;
    color: #444955;
    font-style: normal;
    font-weight: 700;
    line-height: 125%;
    line-height: normal;
  }
  main.videosPage .videos-front {
    overflow: hidden;
    max-height: none;
    background: -o-linear-gradient(120deg, #5061C6 9.15%, #6270C5 50.65%, #A8B0DD 95.8%);
    background: linear-gradient(330deg, #5061C6 9.15%, #6270C5 50.65%, #A8B0DD 95.8%);
  }
  main.videosPage .videos-front__row {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    overflow: visible;
    max-height: none;
  }
  main.videosPage .videos-front__info {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    font-size: 16px;
    font-weight: 700;
    line-height: normal;
    gap: 25px;
    width: 100%;
    margin-top: 30px;
    padding: 0px 0px 60px 0px;
    text-transform: uppercase;
  }
  main.videosPage .videos-front__info .btn {
    max-width: 160px;
    padding: 8px;
  }
  main.videosPage .videos-front__img {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    width: 100%;
    margin-right: 0px;
  }
  main.videosPage .videos-front__img img {
    width: 115%;
    position: relative;
    left: -10%;
  }
  main.videosPage .videos-slider {
    padding-bottom: 35px;
    margin-top: 40px;
    padding: 0px 25px 35px 25px;
  }
  main.videosPage .videos-promo {
    margin-top: 25px;
  }
  main.videosPage .videos-promo__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    border-radius: 8px;
    overflow: hidden;
  }
  main.videosPage .videos-promo__img {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    width: 100%;
    height: 270px;
  }
  main.videosPage .videos-promo__description {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    width: 100%;
    gap: 15px;
    padding: 30px 15%;
  }
  main.videosPage .videos-promo__text {
    font-family: "Work Sans", sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: normal;
  }
  main.videosPage .videos-promo .btn {
    max-width: 189px;
  }
  main.quotePage .front {
    margin-top: 35px;
  }
  main.quotePage .front__info {
    margin-bottom: 15px;
  }
  main.quotePage .front__title {
    font-family: "Open Sans", sans-serif;
    font-size: 24px;
    color: #444955;
    font-style: normal;
    font-weight: 700;
    line-height: 125%;
    line-height: normal;
  }
  main.quotePage .quote-form__title {
    margin-top: 60px;
    color: #0F558A;
    font-family: "Open Sans", sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
  }
  main.quotePage .quote-form__row {
    margin-top: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
  main.quotePage .quote-form__text {
    width: 100%;
    font-weight: 400;
    font-size: 14px;
    line-height: normal;
  }
  main.quotePage .quote-form .wpcf7 {
    width: 100%;
  }
  main.quotePage .quote-form__steps {
    width: 100%;
  }
  main.quotePage .quote-form__steps .btn {
    max-width: 100%;
    padding: 11px;
  }
  main.quotePage .quote-form__step {
    padding: 15px 80px 15px 15px;
    gap: 5px;
  }
  main.quotePage .quote-form__step-title {
    color: #17181C;
    font-family: "Work Sans", sans-serif;
    font-size: 14px;
    line-height: normal;
  }
  main.quotePage .quote-form__step-text {
    font-size: 12px;
    font-weight: 400;
    line-height: normal;
  }
  main.quotePage .quote-form__more {
    position: absolute;
    bottom: 15px;
    right: 7px;
    padding: 0px;
  }
  main.quotePage .quote-form__step-body {
    margin-top: -30px;
    padding: 25px 15px 25px 15px;
    border-radius: 0px 0px 8px 8px;
    padding-top: 10px;
    padding-bottom: 0px;
    -webkit-transform: translateY(-10px);
        -ms-transform: translateY(-10px);
            transform: translateY(-10px);
  }
  main.quotePage .quote-form__step-body.active {
    visibility: visible;
    height: auto;
    padding-top: 25px;
    padding-bottom: 5px;
    -webkit-transform: translateY(0px);
        -ms-transform: translateY(0px);
            transform: translateY(0px);
  }
  main.quotePage .quote-form__form-item {
    margin-bottom: 14px;
  }
  main.quotePage .quote-form__form-item label {
    gap: 5px;
    font-size: 14px;
    font-weight: 400;
    line-height: normal;
  }
  main.quotePage .quote-form__form-item label input {
    padding: 13.5px 15px;
    font-size: 12px;
    line-height: normal;
  }
  main.quotePage .quote-form__form-item label select {
    cursor: pointer;
    padding: 13.5px 15px;
    font-size: 12px;
    font-weight: 400;
    line-height: normal;
  }
  main.quotePage .quote-form__form-item label textarea {
    padding: 13.5px 15px;
    font-size: 12px;
    font-weight: 400;
    line-height: normal;
    height: 110px;
  }
  main.quotePage .quote-form__form-item .select-arrow {
    right: 14px;
    bottom: 13px;
  }
  main.quotePage .quote-form__form-item .input-file {
    margin-top: -2px;
  }
  main.quotePage .quote-form__form-item .input-file input {
    visibility: hidden;
    height: 0px;
    padding: 0px;
  }
  main.quotePage .quote-form__form-item .input-file__alert {
    margin-top: 5px;
  }
  main.quotePage .quote-form__form-item .input-file__alert .input-file__alert-logo img {
    width: 20px;
    height: 20px;
  }
  main.quotePage .quote-form__form-item .input-file__alert .input-file__alert-text {
    width: calc(100% - 31px);
    font-size: 11px;
    line-height: normal;
  }
  main.quotePage .quote-form__form-item .input-file__alert .input-file__alert-text p {
    line-height: normal;
  }
  main.quotePage .quote-form__form-item .input-file__alert .input-file__alert-info {
    width: 100%;
    color: #5B6171;
    font-size: 11px;
    line-height: normal;
  }
  main.quotePage .quote-form__form-item .codedropz-upload-handler {
    font-size: 12px;
    line-height: normal;
  }
  main.quotePage .quote-form__form-item .codedropz-upload-handler h3 {
    font-family: "Work Sans", sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: normal;
  }
  main.quotePage .quote-form__form-item .codedropz-upload-handler .cd-upload-btn {
    padding: 10px;
    max-width: 145px;
    font-weight: 600;
    line-height: normal;
    margin: 0 auto;
    margin-top: 8px;
  }
  main.quotePage .quote-form__form-required {
    line-height: normal;
  }
  main.quotePage .quote-contacts {
    margin-top: 60px;
  }
  main.quotePage .quote-contacts__title {
    color: #0F558A;
    font-family: "Open Sans", sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
  }
  main.quotePage .quote-contacts__col {
    margin-top: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  main.quotePage .quote-contacts__img {
    width: 100%;
  }
  main.quotePage .quote-contacts__row {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 15px;
  }
  main.quotePage .quote-contacts__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  main.quotePage .quote-contacts__item:nth-child(1) {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    width: 40%;
  }
  main.quotePage .quote-contacts__item:nth-child(2) {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    width: 45%;
    margin-top: 0px;
  }
  main.quotePage .quote-contacts__item:nth-child(3) {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
    width: 100%;
  }
  main.quotePage .quote-contacts__item:nth-child(4) {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    margin-top: 0px;
    width: 100%;
  }
  main.quotePage .quote-contacts__item-container {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 10px;
  }
  main.quotePage .quote-contacts__text {
    font-size: 12px;
    line-height: normal;
    margin-top: 0px;
  }
  main.quotePage .quote-contacts__text p {
    font-weight: 500;
  }
  main.quotePage .quote-contacts__text a {
    font-weight: 500;
    margin-bottom: 1px;
  }
  main.quotePage .quote-contacts__text span {
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 1px;
  }
  main.quotePage .quote-contacts__text span:first-child {
    margin-bottom: 4px;
    font-weight: 400;
  }
  main.quotePage .quote-services {
    margin-top: 60px;
    margin-bottom: 110px;
  }
  main.quotePage .quote-services__title {
    color: #0F558A;
    font-family: "Open Sans", sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
    margin-bottom: 40px;
  }
  main.quotePage .quote-services__item {
    max-width: 325px;
  }
  main.quotePage .quote-services__item-img {
    height: 280px;
  }
  main.quotePage .quote-services__item-title {
    font-size: 14px;
    line-height: normal;
  }
}
@media (max-width: 399px) {
  .shop-page .archive__prop {
    gap: 10px;
  }
  .shop-page .archive__prop-mobile {
    gap: 8px;
  }
  .shop-page .archive__view {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 5px;
  }
  .shop-page .archive .products {
    gap: 10px;
  }
  .shop-page .archive .products.products-row {
    gap: 15px;
  }
}
@media (max-width: 358px) {
  .header__search-bottom {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
  }
  header .search__result {
    min-width: 200px;
  }
  main.builder-page .hose-gas__cd {
    width: 100%;
  }
  .default-page .woocommerce-cart-form .shop_table .shop_table__head-row .product-remove {
    display: none;
  }
  .default-page .woocommerce-cart-form .shop_table .shop_table__head-row .product-img {
    font-size: 11px;
  }
  .default-page .woocommerce-cart-form .shop_table .shop_table__head-row .product-total {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 60px;
            flex: 1 0 60px;
    font-size: 11px;
  }
  .default-page .woocommerce-cart-form .shop_table .shop_table__body-row .product-description {
    font-size: 10px;
  }
  .default-page .woocommerce-cart-form .shop_table .shop_table__body-row .product-subtotal {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 60px;
            flex: 1 0 60px;
    font-size: 10px;
  }
}
@media (max-width: 320px) {
  .recaptcha {
    -webkit-transform: scale(0.63);
        -ms-transform: scale(0.63);
            transform: scale(0.63);
    -webkit-transform-origin: 0 0;
        -ms-transform-origin: 0 0;
            transform-origin: 0 0;
  }
}
@media (hover: hover) {
  main.quotePage .quote-form__step:hover {
    background: #D1E8FA;
  }
}
@media (hover: none) {
  .btn:hover {
    background: #007C78;
    color: #FFFFFF;
  }
  .btn:hover path {
    stroke: #FFFFFF;
  }
  .btn_inversion:hover {
    background: #FFFFFF;
    color: #007C78;
  }
  .btn_inversion:hover path {
    stroke: #007C78;
  }
  .front__mobile-btns button:hover {
    -webkit-transform: translateY(0px);
        -ms-transform: translateY(0px);
            transform: translateY(0px);
    background: #007C78;
    color: #FFFFFF;
  }
  .front__mobile-btns button.btn_inversion:hover {
    -webkit-transform: translateY(0px);
        -ms-transform: translateY(0px);
            transform: translateY(0px);
    background: #FFFFFF;
    color: #007C78;
  }
  .header__menu-item:hover {
    -webkit-transform: translateY(0px);
        -ms-transform: translateY(0px);
            transform: translateY(0px);
  }
  .btn-catalog:hover {
    background: #007C78;
    color: #FFFFFF;
  }
  .btn-catalog:hover .btn-catalog__burger span {
    background-color: #FFFFFF;
  }
  .advantage__item:hover .advantage__item-arrow img {
    -webkit-transform: scale(1);
        -ms-transform: scale(1);
            transform: scale(1);
  }
  .advantage__item:hover .advantage__item-logo {
    -webkit-transform: scale(1);
        -ms-transform: scale(1);
            transform: scale(1);
  }
  .products__item:hover {
    background-color: #f1f2f4;
    background-image: none;
    background-size: 0px;
  }
  .products__item:hover .products__item-more img {
    -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  .news__col1:hover {
    background: #e8f4fc;
  }
  .news__col1:hover .news__more img {
    -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  .news__item:hover {
    background: #e8f4fc;
  }
  .news__item:hover .news__more img {
    -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  .promo__btn:hover {
    color: #FFFFFF;
    border: 1px solid #FFFFFF;
    background-color: rgba(0, 0, 0, 0);
  }
  .promo__btn:hover path {
    stroke: #FFFFFF;
  }
  main.aboutPage .trust__item:hover {
    -webkit-transform: translateY(0px);
        -ms-transform: translateY(0px);
            transform: translateY(0px);
  }
  main.aboutPage .trust__item:hover:last-child {
    -webkit-transform: translateY(0px);
        -ms-transform: translateY(0px);
            transform: translateY(0px);
    background: #007C78;
    color: #FFFFFF;
  }
  main.aboutPage .trust__item:hover:last-child path {
    stroke: #FFFFFF;
  }
  main.accountPage .account-select__item:hover {
    background: #f1f2f4;
  }
  main.accountPage .account-select__item:hover .account-select__more {
    -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  main.accountPage .account-select__img {
    margin-right: 20px;
  }
  .default-page form button:hover {
    background: #007C78;
    color: #FFFFFF;
  }
  main.services .services-front__btn:hover {
    background: #007C78;
    color: #FFFFFF;
  }
  main.services .services-front__btn:hover path {
    stroke: #FFFFFF;
  }
  main.services .services-steps__item:hover .services-steps__item-number {
    -webkit-transform: scale(1);
        -ms-transform: scale(1);
            transform: scale(1);
  }
  main.services .services-steps__item:hover .services-steps__item-more img {
    -webkit-transform: scale(1);
        -ms-transform: scale(1);
            transform: scale(1);
  }
  main.services .services-content__btns .btn:hover {
    -webkit-transform: translateY(0px);
        -ms-transform: translateY(0px);
            transform: translateY(0px);
    background-color: #007C78;
    color: #FFFFFF;
  }
  main.services .services-content__btns .btn_inversion:hover {
    -webkit-transform: translateY(0px);
        -ms-transform: translateY(0px);
            transform: translateY(0px);
    background-color: #FFFFFF;
    color: #007C78;
  }
  .shop-page .products .product:hover .woocommerce-LoopProduct-link .image-с img {
    -webkit-transform: scale(1);
        -ms-transform: scale(1);
            transform: scale(1);
  }
  .shop-page .products .product.product-category:hover .image-с img {
    -webkit-transform: scale(1);
        -ms-transform: scale(1);
            transform: scale(1);
  }
  .shop-page .products .product .add_to_cart_button:hover {
    background-color: #006663;
  }
  .shop-page .cwg_popup_submit:hover {
    background: #007C78;
    color: #FFFFFF;
  }
  .singleProduct-page__info .summary .cart .single_add_to_cart_button:hover {
    background-color: #007C78;
    color: #FFFFFF;
  }
  .singleProduct-page__info .form-group--number button:hover:before {
    background-color: #999;
  }
  .singleProduct-page__info .form-group--number button:hover:after {
    background-color: #999;
  }
  main.quotePage .quote-form__form-item .input-file__field .button:hover {
    color: #007C78;
  }
}
@media (min-width: 601px) {
  .singleProduct-page__info .woocommerce-product-gallery .flex-control-nav li {
    -webkit-transition: 0.3s ease-out;
    -o-transition: 0.3s ease-out;
    transition: 0.3s ease-out;
  }
  .singleProduct-page__info .woocommerce-product-gallery .flex-control-nav li:hover {
    -webkit-transform: scale(1.1);
        -ms-transform: scale(1.1);
            transform: scale(1.1);
  }
}