@font-face {
  font-family: "TTNorms";
  font-display: swap;
  src: url("../fonts/TTNorms-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: "TTNorms";
  font-display: swap;
  src: url("../fonts/TTNorms-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "TTNorms";
  font-display: swap;
  src: url("../fonts/TTNorms-Light.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: "TTNorms";
  font-display: swap;
  src: url("../fonts/TTNorms-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
}

:root {
  --color-whte: #fff;
  --color-whte--rgb: 255, 255, 255;
  --color-blck: #464b53;
  --color-blck--rgb: 70, 75, 83;
  --color-textColor: #464b53;
  --color-textColor--rgb: 70, 75, 83;
  --color-grn: #7ABB4C;
  --color-grn--rgb: 122, 187, 76;
  --color-blu: #3EA6F0;
  --color-blu--rgb: 62, 166, 240;
  --color-gry: #C3C3C3;
  --color-gry--rgb: 195, 195, 195;
  --color-whteGry: #F0F5F8;
  --color-whteGry--rgb: 240, 245, 248;
  --font-primary: TTNorms, sans-serif, -apple-system, BlinkMacSystemFont, Roboto, Ubuntu, Droid Sans, Helvetica Neue, Arial, sans-serif, Apple Color Emoji;
}

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

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

*::before,
*::after {
  display: inline-block;
}

html,
body {
  height: 100%;
  min-width: 320px;
  scroll-behavior: smooth;
  -webkit-tap-highlight-color: rgba(0,0,0,0);
}

body {
  color: var(--color-primary);
  line-height: 1;
  font-family: "TTNorms",sans-serif,-apple-system,BlinkMacSystemFont,Roboto,Ubuntu,"Droid Sans","Helvetica Neue",Arial,sans-serif,"Apple Color Emoji";
  font-size: 1.3125rem;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.admin-bar {
  position: relative;
}

input,
button,
textarea {
  font-family: "TTNorms",sans-serif,-apple-system,BlinkMacSystemFont,Roboto,Ubuntu,"Droid Sans","Helvetica Neue",Arial,sans-serif,"Apple Color Emoji";
  font-size: inherit;
  line-height: inherit;
}

button {
  cursor: pointer;
  color: inherit;
  background-color: rgba(0,0,0,0);
}

a {
  display: inline-block;
  color: inherit;
  text-decoration: none;
}

ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

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

address,
cite {
  font-style: normal;
}

body {
  color: var(--color-textColor);
  line-height: normal;
  background-color: #fbfbfb;
}

.lock body {
  overflow: hidden;
  -ms-touch-action: none;
      touch-action: none;
  -ms-scroll-chaining: none;
      overscroll-behavior: none;
}

body::-webkit-scrollbar {
  height: 5px;
  width: 6px;
}

body::-webkit-scrollbar-track {
  background: var(--color-scroll-bg);
}

body::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background: var(--color-alt);
}

.wrapper {
  min-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;
  overflow: hidden;
}

@supports (overflow: clip) {
  .wrapper {
    overflow: clip;
  }
}

.wrapper>main {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.wrapper>* {
  min-width: 0;
}

[class*=__container] {
  --pad: 40px;
  max-width: calc(100.625rem);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0 var(--pad);
  margin: 0 auto;
}

input[type=text],
input[type=email],
input[type=tel],
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

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

.input {
  border: 1px solid #c3c3c3;
  border-radius: 10px;
  padding: 1.5rem;
  width: 47%;
}

.input[placeholder]:not([data-placeholder-nohiden])::-webkit-input-placeholder {
  -webkit-transition: opacity .3s;
  transition: opacity .3s;
}

.input[placeholder]:not([data-placeholder-nohiden])::-moz-placeholder {
  -moz-transition: opacity .3s;
  transition: opacity .3s;
}

.input[placeholder]:not([data-placeholder-nohiden]):-ms-input-placeholder {
  -ms-transition: opacity .3s;
  transition: opacity .3s;
}

.input[placeholder]:not([data-placeholder-nohiden])::-ms-input-placeholder {
  -ms-transition: opacity .3s;
  transition: opacity .3s;
}

.input[placeholder]:not([data-placeholder-nohiden])::placeholder {
  -webkit-transition: opacity .3s;
  transition: opacity .3s;
}

.input[placeholder]:not([data-placeholder-nohiden]):focus::-webkit-input-placeholder {
  opacity: 0;
}

.input[placeholder]:not([data-placeholder-nohiden]):focus::-moz-placeholder {
  opacity: 0;
}

.input[placeholder]:not([data-placeholder-nohiden]):focus:-ms-input-placeholder {
  opacity: 0;
}

.input[placeholder]:not([data-placeholder-nohiden]):focus::-ms-input-placeholder {
  opacity: 0;
}

.input[placeholder]:not([data-placeholder-nohiden]):focus::placeholder {
  opacity: 0;
}

textarea.input {
  resize: none;
  padding: 0px 0px;
}

.checkbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.875rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.checkbox__input {
  position: relative;
  width: 1.875rem;
  height: 1.875rem;
  min-width: 1.875rem;
  min-height: 1.875rem;
  border: 1px solid var(--color-gry);
  border-radius: 5px;
  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;
}

.checkbox__input input {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  z-index: 100;
}

.popup__content-success {
  display: none;
}

.checkbox__input input:checked+label {
  opacity: 1;
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
}

.checkbox__input label {
  font-size: 0;
  opacity: 0;
  -webkit-transform: translateY(-2px);
      -ms-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  background-image: url("/img/icons/checkbox-mark.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  width: 1.09375rem;
  height: 0.75rem;
}

.checkbox__text {
  font-size: 1rem;
}

.checkbox__text a {
  display: inline;
  text-decoration: none;
}

.checkbox__text a:hover {
  text-decoration: underline;
}

body::after {
  content: "";
  background-color: rgba(0,0,0,.5);
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  -webkit-transition: opacity .8s ease 0s;
  transition: opacity .8s ease 0s;
  pointer-events: none;
  z-index: 149;
}

.popup-show body::after {
  opacity: 1;
}

.popup {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  padding: 30px 10px;
  -webkit-transition: visibility .8s ease 0s;
  transition: visibility .8s ease 0s;
  visibility: hidden;
  pointer-events: none;
}

.popup_show {
  z-index: 150;
  visibility: visible;
  overflow: auto;
  pointer-events: auto;
}

body:has(.popup_show) {
  overflow: hidden;
}

html:has(.popup_show) body {
  overflow: hidden;
}

html:has(.popup_show)::before{
  content: "";
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
  filter: blur(2px);
  z-index: 2;
}

.popup_show .popup__content {
  visibility: visible;
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
}

.popup__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;
  min-height: 100%;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  width: 100%;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  align-items: center;
}

.popup__content {
  visibility: hidden;
  -webkit-transform: scale(0);
      -ms-transform: scale(0);
          transform: scale(0);
  -webkit-transition: -webkit-transform .3s ease 0s;
  transition: -webkit-transform .3s ease 0s;
  transition: transform .3s ease 0s;
  transition: transform .3s ease 0s, -webkit-transform .3s ease 0s;
  background-color: #eee;
  padding: 20px;
  width: 100%;
  max-width: 900px;
  border-radius: 20px;
}

.lock .popup__content {
  visibility: visible;
}

.ibg {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.ibg--top {
  -o-object-position: top;
     object-position: top;
}

.ibg--bottom {
  -o-object-position: bottom;
     object-position: bottom;
}

.ibg--left {
  -o-object-position: left;
     object-position: left;
}

.ibg--right {
  -o-object-position: right;
     object-position: right;
}

.ibg--contain {
  -o-object-fit: contain;
     object-fit: contain;
}

.btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 2.0625rem 0.625rem;
  gap: 10px;
  background: -webkit-gradient(linear, left bottom, left top, from(#7abb4c), to(#b4eb66));
  background: linear-gradient(360deg, #7abb4c 0%, #b4eb66 100%);
  -webkit-box-shadow: 0 6px 0 0 #509a1b;
          box-shadow: 0 6px 0 0 #509a1b;
  border-radius: 10px 25px;
  max-width: 15rem;
  color: #fff;
  font-weight: 700;
  font-size: 24px;
}

.btn__mobile {
  display: none;
}

.btn__tablet {
  display: none;
}

.btn__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
}

.btn__text p {
  font-weight: 400;
  font-size: 12px;
}

.btn__text span {
  font-weight: 700;
  font-size: 16px;
}

.btn--solid {
  cursor: pointer;
  color: rgba(0,0,0,0);
  background: -webkit-gradient(linear, left bottom, left top, from(#7abb4c), to(#b4eb66));
  background: linear-gradient(360deg, #7abb4c 0%, #b4eb66 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-box-shadow: none;
          box-shadow: none;
  border: none;
  position: relative;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  font-size: 1.875rem;
  font-weight: 500;
}

.btn--solid::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 8px 23px;
  border: 1px solid rgba(0,0,0,0);
  background: -webkit-gradient(linear, left bottom, left top, from(#7abb4c), to(#b4eb66)) border-box;
  background: linear-gradient(360deg, #7abb4c 0%, #b4eb66 100%) border-box;
  -webkit-mask: -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff)) padding-box,-webkit-gradient(linear, left top, left bottom, color-stop(0, #fff));
  -webkit-mask: linear-gradient(#fff 0 0) padding-box,linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  z-index: -1;
}

.btn--solid:hover {
  color: var(--color-whte) !important;
  background: -webkit-gradient(linear, left bottom, left top, from(#7abb4c), to(#b4eb66));
  background: linear-gradient(360deg, #7abb4c 0%, #b4eb66 100%);
}

.btn--blue {
  background: -webkit-gradient(linear, left top, left bottom, from(#48B0FA), to(#0C74BE));
  background: linear-gradient(180deg, #48B0FA 0%, #0C74BE 100%);
  -webkit-box-shadow: 0 6px 0 0 #055688;
          box-shadow: 0 6px 0 0 #055688;
}

.h1 {
  font-size: 4.125rem;
  font-weight: 500;
}

.h2, .soil-analysis__text h2 {
  font-weight: 700;
  font-size: 3.375rem;
  text-align: center;
  line-height: normal;
}

.h3 {
  font-size: 2rem;
  font-weight: 500;
}

.text--lg {
  font-size: 1.3125rem;
}

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

.services-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1.875rem;
}

.card-service picture {
  display: block;
  width: 100%;
  height: 100%;
}

.card-service {
  overflow: hidden;
  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;
  width: calc(33.333% - 20px);
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding: 18.572% 36.5px 10px;
  position: relative;
}

.card-service img {
  -o-object-fit: cover;
     object-fit: cover;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 25px;
  position: absolute;
}

.card-service p {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: auto;
  position: relative;
  z-index: 2;
  font-weight: 500;
  font-size: 26px;
  text-align: center;
  background-color: #fff;
  border-radius: 52px;
  padding: 10px 30px;
  width: 100%;
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
  word-wrap: break-word;
}

.card-service__link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
}

.section-p {
  padding-top: 6.25rem;
}

.slider {
  position: relative;
}

.slider__arrow {
  position: absolute;
  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;
  width: 4.8125rem;
  height: 4.8125rem;
  border-radius: 50%;
  background: var(--color-whteGry);
  top: 50%;
  z-index: 3;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  cursor: pointer;
}

.slider__arrow--prev {
  left: -2.5rem;
}

.slider__arrow--next {
  right: -2.5rem;
}

.slider__arrow--next img {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}

.slider__pag {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 30px;
  gap: 14px;
}

.slider__pag .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: #ddd;
  border-radius: 100%;
  opacity: 1;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  margin: 0 !important;
}

.slider__pag .swiper-pagination-bullet-active {
  background: -webkit-gradient(linear, left bottom, left top, from(#7abb4c), to(#b4eb66));
  background: linear-gradient(360deg, #7abb4c 0%, #b4eb66 100%);
}

.custom-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: 1.5rem;
}

.custom-list li {
  padding-left: 3.125rem;
  line-height: 152%;
  position: relative;
}

.custom-list li::after {
  content: "";
  position: absolute;
  left: 0.3125rem;
  top: 0.125rem;
  width: 1.875rem;
  height: 1.875rem;
  background-image: url("/img/icons/placemark2.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.offer__description p {
    line-height: normal;
  }

.custom-list li strong {
  display: inline;
}

p {
  font-size: 1.3125rem;
  line-height: 152%;
}

h1 {
  font-size: 4.125rem;
}

h2 {
  font-size: 3.375rem;
}

h3 {
  font-size: 2.625rem;
}

h4 {
  font-size: 2rem;
}

h5 {
  font-size: 1.625rem;
}

h6 {
  font-size: 1.3125rem;
  line-height: 152%;
}

.graphics {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: -1;
}

.graphics img {
  position: absolute;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}

.header--fixed {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
}

.header__top {
  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: 20px 0;
}

.header__logo {
  max-width: 160px;
  width: 100%;
  height: auto;
  display: block;
}

.header__logo img {
  display: block;
  width: 100%;
  height: auto;
}

.header__city {
  margin-left: 3.8125rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
}

.header__city-select {
  position: relative;
}

.header__city-select::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 10px;
  height: 100%;
  z-index: 1;
}

.header__city-select select {
  position: relative;
  z-index: 0;
  display: block;
  cursor: pointer;
  font-size: 1.3125rem;
  font-family: "TTNorms",sans-serif;
  border-bottom: 1px dashed var(--color-grn);
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  padding-right: 14.5px;
  background-color: rgba(0,0,0,0);
}

.header__city-select select:focus {
  outline: none;
}

.header__city-select select option {
  font-size: 1.125rem;
  border: none;
  outline: none;
}

.header__city-select svg {
  z-index: 2;
  display: block;
  width: 10;
  height: 5px;
  position: absolute;
  bottom: 5px;
  right: 0;
}

.header__icon {
  display: block;
  width: 35px;
  height: 35px;
}

.header__mail {
  margin-left: 68.5px;
}
.header__mail:hover {
  color: var(--color-grn);
}

.header__tg {
  margin-left: 46px;
}

.header__tg,
.header__mail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
}

.header__socials {
  margin-left: 37px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
}

.header__socials a {
  display: block;
}

.header__phone {
  font-size: 1.6875rem;
  margin-left: 1.25rem;
  font-weight: 500;
  -webkit-transition: color .3s ease;
  transition: color .3s ease;
  white-space: nowrap;
}

.header__phone:hover {
  color: var(--color-grn);
}

.header__btn {
  margin-left: 1.6875rem;
  padding: 1rem 1.5rem;
  max-width: 242px;
  width: 100%;
  background-color: var(--color-blu);
  color: var(--color-whte);
  font-size: 1rem;
  font-weight: 500;
  border-radius: 10px;
  -webkit-transition: opacity .3s ease;
  transition: opacity .3s ease;
}

.header__btn:hover {
  opacity: .9;
}

.header__menu {
  background-color: var(--color-blck);
  border-radius: 10px;
  color: var(--color-whte);
  padding: 1.5rem;
}

.header__menu-list {
  max-width: 1422px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-left: auto;
  margin-right: auto;
}

.header__menu li {
  font-weight: 500;
}

.header__menu li ul {
  position: absolute;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background-color: var(--color-blck);
  margin-left: -24px;
  padding: 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 0 0 10px 10px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.75rem;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity .3s linear;
  transition: opacity .3s linear;
  z-index: 99;
}

.header__menu li ul a {
  font-weight: 400;
  font-size: 1.125rem;
}

.header__menu li ul a:hover {
  text-decoration: underline;
}

.header__menu-item--sub {
  padding-right: 15px;
  background-image: url("/img/icons/arrow-down.svg");
  background-size: 10px 5px;
  background-repeat: no-repeat;
  background-position: right 11.5px;
}

.header__menu-item--sub:hover ul {
  opacity: 1;
  visibility: visible;
}


.header__menu-item--sub ul ul {
  display: none;
}

.header__menu-item--sub ul ul li {
  white-space: nowrap;
}
.header__menu-item--sub ul li {
  position: relative;
}
.header__menu-item--sub ul li:has(ul.sub-menu)::after{
  content: '';
  background-image: url(/img/icons/arrow-right.svg);
  display: block;
  background-size: 10px 5px;
  background-repeat: no-repeat;
  background-position: right 10px;
  width: 15px;
  height: 25px;
  position: absolute;
  top:0;
  right: 0;
}

html #wpadminbar{
      position: fixed !important;
}
.header__menu-item--sub:hover ul li:hover ul {
  display: flex;
  gap: 0.75rem;
  position: absolute;
  left: calc(100% + 25px);
  padding-left: 25px;
  margin-top: -46px;
  z-index: 199;
}

.header__burger {
  display: none;
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 0.625rem;
  background-color: var(--color-whte);
  visibility: hidden;
  opacity: 0;
  -webkit-transition: opacity .3s ease;
  transition: opacity .3s ease;
}

.mobile-menu.active {
  visibility: visible;
  opacity: 1;
}

.mobile-menu__top {
  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;
}

.mobile-menu__close {
  width: 30px;
  height: 30px;
}

.mobile-menu__close svg {
  width: 100%;
  height: 100%;
  display: block;
}

.mobile-menu__body {
  margin-top: 15px;
}

.mobile-menu__socials {
  margin: 15px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.services-catalog {
  padding-top: 3.5rem;
}

.services-catalog .row {
  margin-top: 3.25rem;
}

.contacts {
  padding-bottom: 3.125rem;
}

.contacts h2 {
  margin-top: 100px;
}

.contacts__row {
  margin-top: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.9375rem;
  row-gap: 1.875rem;
}

.contacts__col {
  width: calc(25% - 0.71875rem);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.contacts__col .icon-circle {
  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;
  background: -webkit-gradient(linear, left bottom, left top, from(#7abb4c), to(#b4eb66));
  background: linear-gradient(360deg, #7abb4c 0%, #b4eb66 100%);
  border-radius: 50%;
  margin-right: 11px;
  width: 89px;
  height: 89px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 5.5625rem;
          flex: 0 0 5.5625rem;
}

.contacts__col img {
  width: 32px;
  height: 32px;
}

.contacts__col-contact,
.contacts__col-list li {
  font-weight: 700;
  font-size: 18px;
  line-height: 133%;
}

.contacts__col a.contacts__col-contact:hover {
  text-decoration: underline;
}

.contacts__form {
  margin-top: 5.1875rem;
}

.service-offer .row {
  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: 1.625rem;
}

.service-offer__btns {
  margin-top: 26px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 15px;
  width: 100%;
}

.service-offer__btns .btn {
  max-width: calc(50% - 0.46875rem);
  width: 100%;
}

.service-offer__col--left {
  width: calc(60% - 1.625rem);
}

.service-offer__col--left h2 {
  margin-top: 56px;
  font-weight: 500;
  font-size: 66px;
  width: 100%;
}

.service-offer__col--left p {
  margin-top: 33px;
  font-weight: 500;
  font-size: 24px;
  line-height: 137%;
  max-width: 611px;
}

.service-offer__col--right {
  width: 40%;
}

.service-offer__img img {
  width: 100%;
  height: auto;
  border-radius: 20px 65px;
  max-height: 450px;
  object-fit: cover;
}

.service-offer__items {
  margin-top: 33px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 30px;
}

.service-offer__item {
  width: calc(25% - 22.5px);
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 15px;
  padding: 30px;
  background: #464b53;
  color: #fff;
  gap: 16px;
}

.service-offer__item-text {
  white-space: normal;
  word-wrap: break-word;
  overflow-wrap: break-word;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  min-width: 0;
}

.service-offer__item h3 {
  font-weight: 700;
  font-size: 18px;
}

.service-offer__item p {
  margin-top: 8px;
  font-size: 16px;
}

.service-offer__item-img {
  margin: auto 0;
  max-width: 40px;
  max-height: 40px;
  background: -webkit-gradient(linear, left bottom, left top, from(#7abb4c), to(#b4eb66));
  background: linear-gradient(360deg, #7abb4c 0%, #b4eb66 100%);
  border-radius: 31px;
  padding: 14px 10px;
}

.service-offer__text {
  margin-top: 100px;
  font-weight: 400;
  font-size: 21px;
  line-height: 152%;
}

.soil-analysis {
  
}

.soil-analysis .row {
  gap: 30px;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}

.soil-analysis__col {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 40px;
}

.soil-analysis__col--left {
  width: 41%;
}

.soil-analysis__col--left img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 25px 100px;
}



.soil-analysis__text {
  font-size: 21px;
  line-height: 152%;
  margin-bottom: 1.5rem;
}

.soil-analysis__col--right ul {
  display: flex;
  flex-direction: column;
  margin-top: 0.75rem;
  margin-bottom: 1.75rem;
  padding-left: 0;
}

.soil-analysis__col--right li {
  margin-top: 10px;
  padding-left: 0.3125rem;

  font-size: 21px;
  line-height: 152%;
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.9375rem;
  list-style-type: none;
}

.soil-analysis__col--right li::before {
  content: "";
  width: 1.875rem;
  height: 1.875rem;
  min-width: 1.875rem;
  min-height: 1.875rem;
  background-image: url("/img/icons/placemark2.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

/* Дополнительные стили для лучшего отображения */
.soil-analysis__col--right p {
  margin-bottom: 1.5rem;
}

.soil-analysis__col--right p:last-child {
  margin-bottom: 0;
}

.lab-details__items {
  margin-top: 40px;
}

.team__content {
  margin-top: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 85px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.team__photos {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  width: 50%;
}

.team__member p {
  margin-top: 20px;
  font-weight: 700;
  font-size: 21px;
  line-height: 114%;
  margin-bottom: 4px;
}

.team__member span {
  font-weight: 400;
  font-size: 18px;
  line-height: 133%;
}

.team__photo {
  border-radius: 25px 100px;
  width: 100%;
}

.team__stats {
  width: 50%;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  gap: 2.0625rem 6.25rem;
}

.team__stat-number {
  display: inline-block;
  position: relative;
  font-weight: 700;
  font-size: 60px;
}

.team__stat-number::after {
  content: "";
  position: absolute;
  bottom: 0.5625rem;
  left: 0;
  width: 100%;
  height: 14px;
  z-index: -1;
  background: -webkit-gradient(linear, left top, right top, from(#7abb4c), to(#b4eb66));
  background: linear-gradient(90deg, #7abb4c, #b4eb66);
}

.team__stat-text {
  display: block;
  font-weight: 400;
  font-size: 21px;
}

.reasons__text {
  margin-top: 40px;
  font-size: 21px;
  line-height: 150%;
}

.reasons__items {
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
}

.reasons__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #464b53;
  color: #fff;
  border-radius: 15px;
  padding: 1.875rem;
  width: calc(33.333% - 10px);
  min-height: 8.4375rem;
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  gap: 16px;
}

.reasons__item--sm {
  width: calc(20% - 8px);
}

.reasons__item::before {
  content: "";
  width: 2.5rem;
  height: 2.5rem;
  min-width: 2.5rem;
  min-height: 2.5rem;
  background-image: url("/img/icons/adv-mark.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.reasons__item-text {
  font-weight: 500;
  font-size: 18px;
}

.how-it-works .row {
  margin-top: 50px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.how-it-works__items {
  gap: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.how-it-works__item {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 calc(20% - 24px);
          flex: 1 1 calc(20% - 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-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.how-it-works__item:hover .how-it-works__smallCircle {
  border-radius: 100%;
  background: -webkit-gradient(linear, left bottom, left top, from(#7abb4c), to(#b4eb66));
  background: linear-gradient(360deg, #7abb4c 0%, #b4eb66 100%);
}

.how-it-works__item:hover .how-it-works__img {
  border-radius: 100%;
  background: -webkit-gradient(linear, left bottom, left top, from(#7abb4c), to(#b4eb66));
  background: linear-gradient(360deg, #7abb4c 0%, #b4eb66 100%);
}

.how-it-works__item-top {
  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;
}

.how-it-works__bigCircle {
  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: 201px;
  height: 201px;
  border-radius: 100%;
  fill: var(--ffffff);
  -webkit-box-shadow: 0 13px 14px 0 rgba(0,0,0,.21);
          box-shadow: 0 13px 14px 0 rgba(0,0,0,.21);
}

.how-it-works__img {
  border-radius: 100%;
  border: 1px dashed #464b53;
  padding: 40px 40px;
}

.how-it-works__line {
  background: #fff;
  width: 4px;
  height: 36px;
  margin-top: -1px;
}

.how-it-works__smallCircle {
  width: 40px;
  height: 40px;
  border-radius: 100%;
  stroke-width: 4px;
  stroke: var(--ffffff);
  background: #464b53;
}

.how-it-works__smallCircle--active {
  border-radius: 100%;
  width: 40px;
  height: 40px;
  background: -webkit-gradient(linear, left bottom, left top, from(#7abb4c), to(#b4eb66));
  background: linear-gradient(360deg, #7abb4c 0%, #b4eb66 100%);
}

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

.how-it-works__text p {
  margin-top: 20px;
  font-weight: 700;
  font-size: 21px;
  line-height: 114%;
  text-align: center;
}

.how-it-works__text span {
  margin-top: 10px;
  font-weight: 400;
  font-size: 16px;
  line-height: 131%;
  text-align: center;
}

.our-works {
  margin-top: 100px;
}

.reviews__slider {
  margin-top: 50px;
  position: relative;
}

.reviews__slider .swiper-wrapper {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.reviews__slide-img {
  border-radius: 10px 50px;
  -webkit-box-shadow: 0 4px 71px 0 rgba(0,0,0,.11);
          box-shadow: 0 4px 71px 0 rgba(0,0,0,.11);
  position: relative;
}

.reviews__slide-img::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 10px 50px;
  padding: 2px;
  background: -webkit-gradient(linear, left bottom, left top, from(#7abb4c), to(#b4eb66));
  background: linear-gradient(360deg, #7abb4c 0%, #b4eb66 100%);
  -webkit-mask: -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff)) content-box,-webkit-gradient(linear, left top, left bottom, color-stop(0, #fff));
  -webkit-mask: linear-gradient(#fff 0 0) content-box,linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.reviews__slide-img img {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 10px 50px;
  -o-object-fit: cover;
     object-fit: cover;
}

.service-graphics img:nth-child(1) {
  top: 5.375rem;
  right: 0rem;
}

.service-graphics img:nth-child(2) {
  top: 204.4375rem;
  right: 0.6875rem;
}

.service-graphics img:nth-child(3) {
  top: 406.75rem;
  right: 0rem;
}

.price__text {
  font-weight: 400;
  line-height: 150%;
}

.h2+.price__text {
  margin-top: 1.875rem;
}

.h2+.price__table-container {
  margin-top: 2.5rem;
}

.price__text+.price__table-container {
  margin-top: 3.125rem;
}

.price__table-container+.price__text {
  margin-top: 2.5rem;
}

.price__form {
  margin-top: 2.5rem;
}

.price__table-container .btn {
  margin: 3.125rem auto 0;
}

.price__table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 1rem;
  font-weight: 700;
  -webkit-box-shadow: 0 4px 48px 0 rgba(0,0,0,.11);
          box-shadow: 0 4px 48px 0 rgba(0,0,0,.11);
  background-color: var(--color-whte);
}

.price__table th,
.price__table td {
  padding: 1.4375rem 1.5rem;
  border: 1px solid #ccc;
}

.price__table tr th {
  background: #464b53;
  color: #fff;
}

.price__table th {
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}

.price__table th:first-child {
  width: 42.565%;
}

.price__table th:nth-child(2) {
  width: 25.5%;
}

.price__table th:nth-child(3) {
  width: 32%;
}

.price__table tr td:nth-child(2),
.price__table tr td:nth-child(3),
.price__table th:nth-child(2),
.price__table th:nth-child(3) {
  padding-left: 0.625rem;
  padding-right: 0.625rem;
}

.price__table tr td:nth-child(3),
.price__table th:nth-child(3) {
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}

.price__table tbody tr td:nth-child(3) {
  font-size: 21px;
}

.peculiarity__text {
  margin-top: 50px;
  font-size: 21px;
  line-height: 152%;
}

.peculiarity__items {
  margin-top: 24px;
  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;
}

.peculiarity__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 10px;
}

.peculiarity__item--img {
  margin-top: 5px;
  width: 30px;
  height: 30px;
  background: -webkit-gradient(linear, left bottom, left top, from(#7abb4c), to(#b4eb66));
  background: linear-gradient(360deg, #7abb4c 0%, #b4eb66 100%);
  border-radius: 31px;
}

.peculiarity__item--img img {
  padding: 9.25px 5.75px;
}

.peculiarity__item p {
  font-weight: 700;
  font-size: 21px;
  line-height: 152%;
}

.equipment__slider {
  margin-top: 50px;
  position: relative;
}

.equipment__slider .swiper-wrapper {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.equipment__slide--text {
  width: auto;
  margin-top: 24px;
}

.equipment__slide--text p {
  font-weight: 700;
  font-size: 21px;
  line-height: 114%;
}

.equipment__slide--text span {
  display: inline-block;
  font-weight: 400;
  font-size: 18px;
  line-height: 133%;
  width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
  -ms-hyphens: auto;
      hyphens: auto;
}

.equipment__slide--img {
  height: 350px;
}

.equipment__slide--img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.equipment__nav-arrow {
  position: absolute;
  width: 77px;
  height: 77px;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 10;
  cursor: pointer;
}

.equipment__nav-arrow--prev {
  left: -40px;
}

.equipment__nav-arrow--next {
  right: -40px;
}

.equipment__nav-arrow img {
  width: 100%;
  height: 100%;
}

.equipment__pagination {
  display: none;
  margin-top: 30px;
  gap: 14px;
}

.equipment__pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: #ddd;
  border-radius: 100%;
  opacity: 1;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  margin: 0 !important;
}

.equipment__pagination .swiper-pagination-bullet-active {
  background: -webkit-gradient(linear, left bottom, left top, from(#7abb4c), to(#b4eb66));
  background: linear-gradient(360deg, #7abb4c 0%, #b4eb66 100%);
}

.peculiarity__container ol {
  list-style: none; /* Отключаем стандартные маркеры */
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 24px;
}

.peculiarity__container ol li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-weight: 700;
  font-size: 21px;
  line-height: 152%;
  position: relative; 
}

.peculiarity__container ol li::before {
  content: '';
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background: linear-gradient(360deg, #7abb4c 0%, #b4eb66 100%);
  border-radius: 31px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 5px;
}

.peculiarity__container ol li::after {
  content: '';
  position: absolute;
  left: 8px;
  top: 14px;
  width: 16px;
  height: 16px;
  background-image: url(/img/thincheckmark.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.peculiarity__container .h2+ p {
    margin-top: 1.875rem;
}



.reports__content {
  padding: 56px 0;
  padding-top: .1px;
  height: 362px;
  border-radius: 25px 100px;
  -webkit-box-shadow: 0 4px 71px 0 rgba(0,0,0,.11);
          box-shadow: 0 4px 71px 0 rgba(0,0,0,.11);
}

.reports__content h2 {
  margin-top: 56px;
}

.reports__content p {
  margin-top: 24px;
  font-size: 21px;
  line-height: 152%;
  text-align: center;
}

.reports__buttons {
  margin-top: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 30px;
}

.reports__btn {
  gap: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: calc(24.968% - 15px);
  border-radius: 10px 25px;
  padding: 24px 36px;
  -webkit-box-shadow: none;
          box-shadow: none;
  background: none;
  border: none;
  position: relative;
  font-weight: 500;
  font-size: 16px;
  cursor: pointer;
  color: rgba(0,0,0,0);
  background: -webkit-gradient(linear, left bottom, left top, from(#7abb4c), to(#b4eb66));
  background: linear-gradient(360deg, #7abb4c 0%, #b4eb66 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.reports__btn--text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: left;
  -ms-grid-column-align: center;
      justify-self: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.reports__btn--img {
  margin-left: 27px;
}

.reports__btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 8px 23px;
  border: 2px solid rgba(0,0,0,0);
  background: -webkit-gradient(linear, left bottom, left top, from(#7abb4c), to(#b4eb66)) border-box;
  background: linear-gradient(360deg, #7abb4c 0%, #b4eb66 100%) border-box;
  -webkit-mask: -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff)) padding-box,-webkit-gradient(linear, left top, left bottom, color-stop(0, #fff));
  -webkit-mask: linear-gradient(#fff 0 0) padding-box,linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  z-index: -1;
}

.reports__btn:hover {
  opacity: .9;
}

.reports__btn:active {
  -webkit-transform: translateY(1px);
      -ms-transform: translateY(1px);
          transform: translateY(1px);
}

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

.offer__container {
  padding-top: 6.5rem;
  padding-bottom: 4.0625rem;
}

.offer__text {
  width: 59.935%;
}

.offer__title {
  margin-bottom: 0.625rem;
}

.offer__form {
  max-width: 42rem;
  margin-top: 2.5rem;
}

.offer__form-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.offer__form .input {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 calc(50% - 0.75rem);
          flex: 0 1 calc(50% - 0.75rem);
}

.offer__form .btn {
  width: 100%;
  max-width: 100%;
  text-align: center;
}

.offer__form .checkbox {
  margin-top: -0.25rem;
}

.offer__advantages {
  margin-top: 4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1.875rem;
}

.offer__advantages-item {
  width: calc(25% - 1.5rem);
  padding: 1.875rem;
  border-radius: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  background-color: var(--color-blck);
  color: var(--color-whte);
}

.offer__advantages-item::before {
  content: "";
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  display: block;
  width: 2.5rem;
  height: 2.5rem;
  background-image: url("/img/icons/adv-mark.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.offer__advantages-item-title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.offer__advantages-item-description {
  font-size: 1rem;
}

.services .h2,
.soil-analysis__text h2 {
  margin-bottom: 3.125rem;
}

.services .btn {
  max-width: 30.625rem;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 3.125rem;
}

.works__tabs {
  margin-top: 3.125rem;
}

.works__tabs-titles {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-right: -2.5rem;
  gap: 1.5rem;
  overflow: auto;
}

.works__tabs-title {
  font-size: 1rem;
  padding: 1.59375rem 2rem;
  min-width: -webkit-fit-content;
  min-width: -moz-fit-content;
  min-width: fit-content;
  font-weight: 700;
}

.works__tabs-title.active {
  background: -webkit-gradient(linear, left bottom, left top, from(#7ABB4C), to(#B4EB66));
  background: linear-gradient(360deg, #7ABB4C 0%, #B4EB66 100%);
  color: #fff;
}

.works__tabs-contents {
  margin-top: 3.125rem;
}

.works__tabs-content {
  display: none;
}

.works__tabs-content.active {
  display: block;
}

.laboratory__container img {
  max-width: 100%;
}

.works__slider-slide img {
  width: 100%;
  height: auto;
  max-height: 47.5rem;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 25px 100px;
  display: block;
}

.video-works__slider {
  margin-top: 3.125rem;
}

.no-webp .video-works__slide-inner {
  background-image: url("/img/home/video-works/mask.png"); }

.video-works__slide-inner {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
  position: relative;
  padding-top: 175.057%;
  overflow: hidden;
  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;
}

.video-works__slide-inner video {
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 1.8%;
  left: 3.2%;
  right: 3%;
  bottom: 3.6%;
  width: 93.8%;
  height: 93.04%;
  border-radius: 15.3% 15.3% 15.3% 15.3%/8.6% 8.6% 8.6% 8.6%;
}

.video-works__slide-play {
  display: block;
  position: absolute;
  z-index: 3;
  top: 1.8%;
  left: 3.2%;
  right: 3%;
  bottom: 3.6%;
  width: 93.8%;
  height: 93.04%;
  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;
  background: rgba(0,0,0,.4);
  border-radius: 15.3% 15.3% 15.3% 15.3%/8.6% 8.6% 8.6% 8.6%;
  opacity: 1;
  visibility: visible;
  -webkit-transition: opacity .3s ease;
  transition: opacity .3s ease;
}

.video-works__slide-play img {
  -webkit-transition: -webkit-transform .3s ease;
  transition: -webkit-transform .3s ease;
  transition: transform .3s ease;
  transition: transform .3s ease, -webkit-transform .3s ease;
  width: 4.375rem;
  height: 4.375rem;
}

.video-works__slide-play:hover img {
  -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1);
}

.video-works__slide-play.active {
  opacity: 0;
  visibility: hidden;
}

.research__title {
  max-width: 79.375rem;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.research__description {
  margin: 1.875rem 0 0 0;
  line-height: 9.5%rem;
}

.research__items {
  margin-top: 3.125rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1.875rem;
  counter-reset: item;
}

.research__item {
  position: relative;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 calc(25% - 22.5px);
          flex: 0 1 calc(25% - 22.5px);
  border-radius: 9px 25px;
  background-clip: padding-box;
  background: var(--color-whte);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.5rem;
  padding: 1.5rem;
}

.research__item::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: -webkit-gradient(linear, left bottom, left top, from(#7ABB4C), to(#B4EB66));
  background: linear-gradient(360deg, #7ABB4C 0%, #B4EB66 100%);
  -webkit-mask: -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff)) content-box,-webkit-gradient(linear, left top, left bottom, color-stop(0, #fff));
  -webkit-mask: linear-gradient(#fff 0 0) content-box,linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.research__item::after {
  counter-increment: item;
  content: counter(item, decimal-leading-zero);
  font-size: 1.125rem;
  position: absolute;
  font-size: 1.125rem;
  line-height: 133.333%;
  top: 0.875rem;
  right: 0.9375rem;
}

.research__item-icon {
  width: 60px;
  height: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.research__item-icon svg {
  width: auto;
  height: 100%;
}

.research__item-title,
.research__item-description {
  font-size: 1.125rem;
  line-height: 133.333%;
}

.research__item-title {
  font-weight: 700;
}

.research__item:first-child {
  background: -webkit-gradient(linear, left bottom, left top, from(#7ABB4C), to(#B4EB66));
  background: linear-gradient(360deg, #7ABB4C 0%, #B4EB66 100%);
  -webkit-box-shadow: 0 4px 48px 0 #b4eb66;
          box-shadow: 0 4px 48px 0 #b4eb66;
}

.research__item:first-child::after {
  color: var(--color-whte);
}

.research__form {
  margin-top: 3.4375rem;
}

.laboratory__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 1.875rem;
  margin-top: 3.125rem;
}

.laboratory__slider {
  width: 40.523%;
}

.laboratory__slider-slide img,
.laboratory__slider-slide picture {
  width: 100%;
  height: 100%;
  max-height: 29.625rem;
  display: block;
}

.laboratory__pag {
  margin-top: 1.25rem;
}

.laboratory__info {
  max-width: 755px;
  width: 100%;
}

.laboratory__info-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  row-gap: 0.75rem;
}

.laboratory__info-item {
  width: 50%;
}

.laboratory__info-item-count {
  font-size: 5.4375rem;
  font-weight: 700;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.laboratory__info-item-count::after {
  content: "";
  position: absolute;
  bottom: 0.875rem;
  z-index: -1;
  left: 0;
  height: 0.875rem;
  width: 100%;
  background: -webkit-gradient(linear, left bottom, left top, from(#7ABB4C), to(#B4EB66));
  background: linear-gradient(360deg, #7ABB4C 0%, #B4EB66 100%);
}

.laboratory__info-item-title {
  margin-top: -0.125rem;
  font-size: 1.75rem;
  font-weight: 500;
}

.laboratory__info-item-description {
  line-height: 152%;
  margin-top: 0.5rem;
}

.laboratory__info-btn {
  max-width: 40.625rem;
  width: 100%;
  margin-top: 1.4375rem;
}

.faq__spollers {
  margin-top: 5rem;
}

.faq__spollers-item {
  padding: 2rem 1.5rem;
  border-bottom: 1px solid var(--color-gry);
}

.faq__spollers-item:first-child {
  padding-top: 0;
}

.faq__spollers-item-title {
  list-style: none;
  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: 0.625rem;
  font-size: 1.75rem;
  font-weight: 500;
  cursor: pointer;
}

.faq__spollers-item-title svg {
  width: 1.5625rem;
  min-width: 1.5625rem;
  height: auto;
  -webkit-transition: all .4s ease;
  transition: all .4s ease;
}

.faq__spollers-item-title._spoller-active svg {
  -webkit-transform: rotateZ(180deg);
      -ms-transform: rotate(180deg);
          transform: rotateZ(180deg);
}

.faq__spollers-item-text {
  padding-top: 1.5625rem;
}

.home-graphics img:nth-child(1) {
  top: 158.3125rem;
  right: 0.6875rem;
}

.home-graphics img:nth-child(2) {
  top: 185.4375rem;
  left: 0;
}

.home-graphics img:nth-child(3) {
  top: 303.375rem;
  right: 0;
}

.home-graphics img:nth-child(4) {
  top: 442.75rem;
  left: 0;
}

.home-graphics img:nth-child(5) {
  top: 458.5625rem;
  right: 0;
}

.home-graphics img:nth-child(6) {
  top: 540.625rem;
  left: 0;
}

.offer-price {
  margin-top: 3.5rem;
}

.offer-price__content {
  margin-top: 2.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.25rem;
  line-height: 152%;
}

.offer-price__content .custom-list {
  gap: 0.375rem;
}

.price-graphics img:nth-child(1) {
  top: 5.375rem;
  right: 0;
}

.price-graphics img:nth-child(2) {
  top: 110.375rem;
  right: 0.6875rem;
}

.offer-about {
  padding-top: 1.25rem;
}

.offer-about .h1 {
  padding-top: 3.5rem;
}

.offer-about img {
  width: 44.641%;
  height: auto;
  float: right;
  margin: 0 0 3.75rem 1.6875rem;
  border-radius: 0.625rem 1.5625rem;
}

.offer-about p {
  line-height: 152%;
}

.offer-about .h1+p {
  margin-top: 2.5rem;
}

.offer-about p:nth-child(5) {
  margin-top: 0.375rem;
}

.offer-about p+p {
  margin-top: 1.25rem;
}

.about-graphics img {
  top: 5.375rem;
  right: 0;
}

.offer-works {
  padding-top: 3.5rem;
}

.specials__content {
  margin-top: 3.125rem;
}

.specials__content p+ul {
  margin-top: 1.5rem;
}

.contacts {
  position: relative;
}

.contacts--page {
  padding-top: 3.5rem;
  padding-bottom: 0;
}

.contacts--page .contacts__row {
  margin-bottom: 3.125rem;
}

.contacts--page .contacts__form {
  
}

.contacts__map .map {
  position: absolute;
  left: 0;
  width: 100%;
  height: 51.9375rem;
}

.contacts__map .map ymap {
  width: 100%;
  height: 100%;
}

.contacts__map .map canvas,
.contacts__map .map .ymaps-2-1-79-ground-pane {
  -webkit-filter: grayscale(1) !important;
          filter: grayscale(1) !important;
}

.details {
  padding-bottom: 6.25rem;
}

.details__row {
  margin-top: 2.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 7.75rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.details__item {
  border-radius: 10px 25px;
  background: #fff;
  -webkit-box-shadow: 0 4px 18.6px 0 rgba(0,0,0,.07);
          box-shadow: 0 4px 18.6px 0 rgba(0,0,0,.07);
  padding: 1.875rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.25rem;
  line-height: 7.125%rem;
  cursor: pointer;
}

.details__item-name {
  font-weight: 700;
}

.details__item-copy {
  width: 1.3125rem;
  height: 1.3125rem;
}

.article {
  padding-top: 3.5rem;
}

.article__content {
  padding-top: 3.5rem;
  --gap-1: 40px;
  --gap-2: 20px;
  --gap-3: 18px;
}

.article__content h1,
.article__content h3,
.article__content h4,
.article__content h5,
.article__content h6 {
  font-weight: 500;
}

.article__content h1+*,
.article__content h2+*,
.article__content h3+*,
.article__content h4+*,
.article__content h5+* {
  margin-top: var(--gap-2);
}

.article__content h6+* {
  margin-top: var(--gap-3);
}

.article__content *+h1,
.article__content *+h2,
.article__content *+h3,
.article__content *+h4,
.article__content *+h5 {
  margin-top: var(--gap-1);
}

.article__content *+h6 {
  margin-top: var(--gap-2);
}

.article__content p+p {
  margin-top: var(--gap-2);
}

.article__content figure picture,
.article__content figure img {
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 25px 100px;
  width: 100%;
}

.article__content figure figcaption {
  margin-top: 0.625rem;
  font-size: 1rem;
  color: #7c7c7c;
  line-height: 140%;
}

.article__content ul {
  padding-left: 1.5rem;
}

.article__content ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5625rem;
}

.article__content ul li::before {
  content: "";
  display: block;
  width: 0.25rem;
  height: 0.25rem;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 0.25rem;
          flex: 0 0 0.25rem;
  border-radius: 50%;
  margin-top: 0.5rem;
  background-color: var(--color-blck);
}

.article__content ul,
.article__content ol {
  display: block;
}

.article__content ul li,
.article__content ol li {
  margin-top: 0.9375rem;
}

.article__content ul li:first-child,
.article__content ol li:first-child {
  margin-top: 0;
}

.article__content ol {
  padding-left: 0.875rem;
  list-style-position: inside;
}

.article__content ol span {
  display: inline-block;
  word-break: break-word;
  white-space: normal;
}

.article__content aside {
  padding: 1.5rem;
  border-radius: 15px 50px;
  background: #fff;
  -webkit-box-shadow: 0 4px 48px 0 rgba(158,189,202,.25);
          box-shadow: 0 4px 48px 0 rgba(158,189,202,.25);
  font-size: 1.125rem;
  line-height: 140%;
}

.article__content aside span {
  font-weight: 700;
}

.article__content aside p {
  margin-top: 0.75rem;
  font-size: 1.125rem;
  line-height: 140%;
}

.article__content aside+*,
.article__content aside+*,
.article__content figure+*,
.article__content .notice+* {
  margin-top: var(--gap-1);
}

.article__content *+aside,
.article__content *+.notice,
.article__content *+figure {
  margin-top: var(--gap-1);
}

.article__content .notice {
  padding: 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.5rem;
  border-radius: 15px 50px;
  background: #fff;
  -webkit-box-shadow: 0 4px 48px 0 rgba(158,189,202,.25);
          box-shadow: 0 4px 48px 0 rgba(158,189,202,.25);
}

.article__content .notice__icon {
  width: 2.25rem;
  height: 2.25rem;
}

.article__content .notice__text {
  line-height: 140%;
}

.article__content table+* {
  margin-top: var(--gap-2);
}

.article__content *+table {
  margin-top: var(--gap-2);
}

.article__content table {
  background-color: #fff;
  border-bottom: 1px solid #c2c2c2;
}

.article__content table th {
  width: 256px;
  font-weight: 700;
}

.article__content table th,
.article__content table td {
  vertical-align: top;
  border-top: 1px solid #c2c2c2;
  padding: 0.625rem;
  text-align: left;
  font-size: 1.125rem;
  line-height: 140%;
}

.footer {
  color: #fff;
  background-color: #464b53;
  padding-bottom: 20px;
}

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

.footer__menu-title {
  font-size: 24px;
  margin-bottom: 16px;
}

.footer__menu-list {
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  font-size: 18px;
  margin-bottom: 12px;
}

.footer__menu-list li {
  margin-bottom: 12px;
}

.footer__col {
  width: 25%;
  margin-top: 68px;
}

.footer__col--1 .logo {
  margin-bottom: 22px;
}

.footer__col--1 p {
  margin-bottom: 16px;
}

.footer .btn {
  margin-top: 60px;
}

.footer .btn img {
  width: auto;
  height: auto;
  display: block;
}

.request {
  padding-bottom: 2.3%;
  position: relative;
}

.no-webp .request::after {
  background-image: url("/img/home/request/bg-part.png"); }

.request::after {
  content: "";
  position: absolute;
  max-width: 12.5rem;
  max-height: 27.3125rem;
  width: 100%;
  height: 100%;
  top: 2.3125rem;
  right: 25.5%;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  pointer-events: none;
}

.no-webp .request__content {
  background-image: url("/img/home/request/bg.png"); }

.request__content {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center right;
  background-color: #fff;
  border-radius: 25px 100px;
  padding: 3.5rem 40% 3.9375rem 6.625rem;
  -webkit-box-shadow: 0 4px 71px 0 rgba(0,0,0,.11);
          box-shadow: 0 4px 71px 0 rgba(0,0,0,.11);
}

.request__title {
  font-size: 2.5rem;
  font-weight: 700;
  max-width: 46.6875rem;
  width: 100%;
}

.request__form {
  margin-top: 2rem;
  max-width: 42rem;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1.5rem;
}

.request__form .input {
  width: calc(50% - 12px);
}

.request__form .btn {
  max-width: 100%;
  width: 100%;
}

.request__form .checkbox {
  margin-top: -0.25rem;
}

.breadcrumbs {
  padding-top: 2rem;
  padding-bottom: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.75rem;
  white-space: wrap;
}

.breadcrumbs li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.75rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1rem;
}

.breadcrumbs li::after {
  content: "";
  width: 1.125rem;
  height: 0.9375rem;
  background-image: url("/img/icons/pickx.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.breadcrumbs li:last-child::after {
  display: none;
}

.breadcrumbs li a {
  background: var(--Linear, linear-gradient(0deg, #7abb4c 0%, #b4eb66 100%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: rgba(0,0,0,0);
  display: block;
  position: relative;
}

.breadcrumbs li a::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  bottom: 0;
  left: 0;
  background: var(--Linear, linear-gradient(0deg, #7abb4c 0%, #b4eb66 100%));
}

.swiper {
  overflow: hidden;
}

.swiper-initialized {
  -ms-touch-action: pan-y;
      touch-action: pan-y;
}

.swiper-wrapper {
  width: 100%;
  height: 100%;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}

.swiper-vertical .swiper-wrapper {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.swiper-autoheight .swiper-wrapper {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.swiper-initialized .swiper-slide {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.swiper-android .swiper-slide,
.swiper-android .swiper-wrapper {
  -webkit-transform: translate3d(0px, 0, 0);
          transform: translate3d(0px, 0, 0);
}

.swiper-button-lock {
  display: none !important;
}

@media (max-width: 1360px) {
  .reasons__items {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }

  .reasons__item {
    width: 100%;
  }
}

@media (max-width: 1200px) {
  .reports__btn {
    padding: 24px 8px;
  }

  .reports__btn--img {
    margin-left: 0;
  }

  .reports__btn--text {
    word-break: break-word;
  }
}

@media (max-width: 1920px) {
  .header {
    font-size: 1.1875rem;
  }

  .header__logo {
    max-width: 100px;
  }

  .header__city {
    margin-left: 20px;
  }

  .header__city select {
    font-size: 1.1875rem;
  }

  .header__mail {
    margin-left: 20px;
  }

  .header__tg {
    display: none;
  }

  .header__socials {
    margin-left: 16px;
  }

  .header__btn {
    max-width: 180px;
    margin-left: 15px;
  }

  .header__phone {
    font-size: 1.1875rem;
  }

  .header__mail,
  .header__telegram {
    gap: 6px;
  }

  .header__icon {
    width: 30px;
    height: 30px;
  }

  .contacts__col .icon-circle {
    width: 4.375rem;
    height: 4.375rem;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 4.375rem;
            flex: 0 0 4.375rem;
  }

  .research__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 calc(50% - 15px);
            flex: 0 1 calc(50% - 15px);
  }

  .details__row {
    gap: 3.75rem;
  }

  .request::after {
    display: none;
  }

  .request__content {
    background-position: center;
    padding-left: 1.875rem;
  }
}

@media (max-width: 61.99875em) {
  [class*=__container] {
    --pad: 40px;
  }

  .btn--solid {
    font-size: 1.3125rem;
    padding-top: 1.125rem;
    padding-bottom: 1.125rem;
  }

  .btn__desktop {
    display: none;
  }

  .btn__tablet {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
  }

  .h1 {
    font-size: 3.125rem;
  }

  .h2,
  .soil-analysis__text h2 {
    font-size: 2.625rem;
  }

  .h3 {
    font-size: 1.5rem;
  }

  .services-row {
    gap: 0.8125rem;
  }

  .card-service {
    width: calc(50% - 15px);
  }

  .card-service p {
    font-size: 18px;
  }

  .card-service img {
    border-radius: 15px;
  }

  .section-p {
    padding-top: 5rem;
  }

  .custom-list li {
    font-size: 1rem;
  }

  p {
    font-size: 1rem;
    line-height: 150%;
  }

  h1 {
    font-size: 3.4375rem;
  }

  h2 {
    font-size: 2.75rem;
  }

  h3 {
    font-size: 2.375rem;
  }

  h4 {
    font-size: 1.75rem;
  }

  h5 {
    font-size: 1.3125rem;
  }

  h6 {
    font-size: 1.125rem;
    line-height: 133.333%;
  }

  .graphics {
    display: none;
  }

  .header__burger {
    width: 35px;
    height: 35px;
    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;
    border-radius: 50%;
    background-color: var(--color-blck);
  }

  .header__burger-inner {
    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;
    width: 20px;
    height: 14px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    position: relative;
  }

  .header__burger-inner span {
    display: block;
    width: 20px;
    height: 2px;
    background: -webkit-gradient(linear, left bottom, left top, from(#7ABB4C), to(#B4EB66));
    background: linear-gradient(0deg, #7ABB4C 0%, #B4EB66 100%);
    border-radius: 13px;
    -webkit-transition: all .3s cubic-bezier(0.4, 0, 0.2, 1);
    transition: all .3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
  }

  .header__burger-inner span:last-child {
    width: 17px;
  }

  .header__burger-inner.is-active span:nth-child(1) {
    -webkit-transform: translateY(7px) rotate(45deg);
        -ms-transform: translateY(7px) rotate(45deg);
            transform: translateY(7px) rotate(45deg);
  }

  .header__burger-inner.is-active span:nth-child(2) {
    opacity: 0;
    -webkit-transform: scaleX(0);
        -ms-transform: scaleX(0);
            transform: scaleX(0);
  }

  .header__burger-inner.is-active span:nth-child(3) {
    -webkit-transform: translateY(-7px) rotate(-45deg);
        -ms-transform: translateY(-7px) rotate(-45deg);
            transform: translateY(-7px) rotate(-45deg);
  }

  .header__top {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }

  .header__logo {
    max-width: 160px;
    width: 100%;
    margin-right: 7.4127906977%;
  }

  .header__burger {
    margin-right: 17.7325581395%;
  }

  .header__socials {
    margin-left: 0;
  }

  .header__icon {
    width: 35px;
    height: 35px;
  }

  .header__phone {
    margin-left: 20px;
    font-size: 27px;
  }

  .services-catalog {
    padding-top: 1.375rem;
  }

  .services-catalog .row {
    margin-top: 2.5rem;
  }

  .contacts h2 {
    margin-top: 80px;
  }

  .contacts__row {
    margin-top: 40px;
  }

  .contacts__col {
    width: calc(50% - 7.5px);
  }

  .contacts__col .icon-circle {
    width: 5.375rem;
    height: 5.375rem;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 5.375rem;
            flex: 0 0 5.375rem;
  }

  .contacts__col-contact,
  .contacts__col-list li {
    font-weight: 700;
    font-size: 18px;
    line-height: 133%;
  }

  .contacts__form {
    margin-top: 3.125rem;
  }

  .service-offer__col--left {
    width: 100%;
  }

  .service-offer__col--left h2 {
    margin-top: 0;
    font-size: 50px;
  }

  .service-offer__col--left p {
    margin-top: 24px;
    font-size: 24px;
    
    max-width: none;
  }

  .service-offer__col--right {
    width: 100%;
  }

  .service-offer__col--right img {
    max-width: 38.75rem;
    width: 100%;
    margin: 0 auto;
    display: block;
  }

  .service-offer__btns {
    margin-top: 42px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .service-offer__btns .btn {
    margin-left: auto;
    margin-right: auto;
    max-width: 620px;
  }

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

  .service-offer__item {
    width: calc(50% - 15px);
  }

  .service-offer__text {
    margin-top: 42px;
    font-size: 16px;
    line-height: 150%;
  }

  .soil-analysis {
    margin-top: 80px;
  }

  .soil-analysis .row {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }



  .soil-analysis__img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 25px 65px;
  }

  .soil-analysis__img img {
    width: 100%;
    height: auto;
    -o-object-fit: cover;
       object-fit: cover;
    display: block;
    max-height: 26.6875rem;
  }

  .soil-analysis__item li {
    font-size: 16px;
    line-height: 150%;
  }

  .soil-analysis__text {
    font-size: 16px;
    line-height: 150%;
  }

  .lab-details__items {
    margin-top: 1.875rem;
    gap: 1rem;
  }

  .lab-details__item {
    font-size: 1rem;
    line-height: 150%;
  }

  .team__content {
    margin-top: 2.5rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.875rem;
  }

  .team__stats {
    width: 100%;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
    gap: 0.625rem 2.5rem;
  }

  .team__photos {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
    width: 100%;
  }

  .team__member p {
    margin-top: 18px;
  }

  .reasons__text {
    margin-top: 20px;
  }

  .reasons__items {
    margin-top: 20px;
  }

  .reasons__item {
    min-height: 8.4375rem;
  }

  .reasons__item--sm {
    min-height: 0;
  }

  .how-it-works__item {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 calc(33.333% - 24px);
            flex: 1 1 calc(33.333% - 24px);
  }

  .how-it-works__bigCircle {
    width: 146px;
    height: 146px;
  }

  .how-it-works__img {
    padding: 32px;
  }

  .how-it-works__img img {
    height: 40px;
    width: 40px;
  }

  .how-it-works__line {
    width: 3px;
    height: 27px;
  }

  .how-it-works__smallCircle {
    width: 29px;
    height: 29px;
  }

  .how-it-works__text p {
    font-size: 18px;
    line-height: 117%;
  }

  .how-it-works__text span {
    font-size: 16px;
    line-height: 131%;
  }

  .reviews .reviews__slide {
    max-width: 330px;
    max-height: 425px;
  }

  .reviews .reviews__slider-container {
    padding: 0 40px;
  }

  .h2+.price__text {
    margin-top: 2.5rem;
  }

  .h2+.price__table-container {
    margin-top: 1.875rem;
  }

  .price__text+.price__table-container {
    margin-top: 2.5rem;
  }

  .price__table-container+.price__text {
    margin-top: 3.125rem;
  }

  .price__text {
    font-size: 1rem;
  }

  .price__form {
    margin-top: 3.125rem;
  }

  .price__table-container .btn {
    max-width: 20.1875rem;
    margin-top: 1.875rem;
  }

  .price__table-container .btn__mobile {
    display: block;
    max-width: 20.1875rem;
    width: 100%;
  }

  .price__table {
    -webkit-box-shadow: none;
            box-shadow: none;
    font-size: 0.875rem;
  }

  .price__table th:first-child {
    width: 51%;
  }

  .price__table th:nth-child(2) {
    width: 22%;
  }

  .price__table th:nth-child(3) {
    width: 26%;
  }

  .price__table th,
  .price__table td {
    padding: 1.25rem 0.625rem;
  }

  .price__table th:first-child,
  .price__table td:first-child {
    padding: 1.25rem 1.5rem;
  }

  .peculiarity__text {
    margin-top: 40px;
    font-size: 16px;
    line-height: 150%;
  }

  .peculiarity__item p {
    font-size: 16px;
    line-height: 150%;
  }

  .peculiarity__text {
    margin-top: 30px;
    font-size: 14px;
  }

  .peculiarity__item p {
    font-size: 14px;
  }

  .equipment__slider {
    margin-top: 40px;
  }

  .reports__content {
    height: 284px;
    border-radius: 5px 65px;
  }

  .reports__content h2 {
    margin-top: 33px;
  }

  .reports__content p {
    font-size: 16px;
    line-height: 150%;
  }

  .reports__btn {
    width: calc(30% - 15px);
  }

  .offer__container {
    padding-top: 2.6875rem;
    padding-bottom: 2.0625rem;
  }

  .offer__text {
    width: 100%;
    max-width: 617px;
  }

  .offer__description {
    font-size: 1.125rem;
  }
  

  .offer__form {
    margin-top: 3.375rem;
    max-width: 35.6875rem;
  }

  .offer__form-form {
    margin-top: 1.0625rem;
  }

  .offer__form .checkbox {
    margin-top: -0.3125rem;
  }

  .offer__advantages-item {
    width: calc(50% - 0.9375rem);
    max-height: 127px;
  }

  .services .h2 {
    margin-bottom: 2.5rem;
  }

  .services .btn {
    margin-top: 1.875rem;
  }

  .works__tabs,
  .works__tabs-contents {
    margin-top: 2.5rem;
  }

  .works__slider-slide img {
    min-height: 27.5rem;
    border-radius: 10px 50px;
  }

  .research__description {
    font-size: 1rem;
    margin-top: 2.5rem;
    text-align: center;
  }

  .research__items {
    margin-top: 2.5rem;
  }

  .research__form {
    margin-top: 2.5rem;
  }

  .laboratory__row {
    margin-top: 2.5rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2.5rem;
  }

  .laboratory__slider,
  .laboratory__info {
    width: 100%;
    max-width: 100%;
  }

  .laboratory__info-items {
    gap: 0;
  }

  .laboratory__info-btn {
    max-width: 100%;
  }

  .faq__spollers {
    margin-top: 2.5rem;
  }

  .faq__spollers-item {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .faq__spollers-item-title {
    font-size: 1.125rem;
  }

  .faq__spollers-item-text {
    padding: 1.3125rem 0 0.3125rem;
    font-size: 1rem;
    line-height: 150%;
  }

  .offer-price {
    padding-top: 1.375rem;
  }

  .offer-price__content {
    margin-top: 1.375rem;
    font-size: 1rem;
  }

  .offer-about {
    padding-top: 1.375rem;
  }

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

  .offer-about .h1 {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
    padding-top: 0;
  }

  .offer-about img {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    float: none;
    margin: 1.3125rem 0 0 0;
    width: 100%;
  }

  .offer-about .h1+p {
    margin-top: 1.25rem;
  }

  .offer-about p {
    font-size: 1rem;
    line-height: 150%;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }

  .offer-works {
    padding-top: 1.375rem;
  }

  .specials__content {
    margin-top: 2.5rem;
  }

  .contacts--page {
    padding-top: 1.375rem;
  }

  .contacts--page .contacts__form {
    
  }

  .details {
    padding-bottom: 5rem;
  }

  .details .h2 {
    text-align: left;
    font-weight: 500;
    font-size: 3.125rem;
  }

  .details__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.5rem;
  }

  .details__item {
    max-width: -webkit-fit-content;
    max-width: -moz-fit-content;
    max-width: fit-content;
  }

  .article {
    padding-top: 1.375rem;
  }

  .article__content {
    padding-top: 1.375rem;
  }

  .article__content h1+p {
    font-size: 1.3125rem;
  }

  .article__content ul li,
  .article__content ol li {
    font-size: 1rem;
    line-height: 150%;
  }

  .article__content figure img,
  .article__content figure picture {
    border-radius: 10px 50px;
  }

  .article__content .notice__text {
    font-size: 1rem;
  }

  .article__content table th,
  .article__content table td {
    font-size: 1rem;
  }

  .footer__col {
    width: 50%;
    margin-bottom: 55px;
  }

  .footer__col--3,
  .footer__col--4 {
    margin-top: 0;
  }

  .footer__col--4 .btn {
    margin-top: 30px;
  }

  .footer__col--4 .btn__desktop {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .footer .btn__mobile {
    display: none;
  }

  .request__content {
    background-image: none;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    border-radius: 10px 50px;
  }

  .request__title {
    font-size: 2rem;
  }

  .breadcrumbs {
    padding-top: 1.375rem;
  }
}

@media (max-width: 47.99875em) {
  [class*=__container] {
    --pad: 10px;
  }

  .input {
    padding: 1rem 1.5rem;
    font-size: 1.125rem;
  }

  .checkbox__text {
    font-size: 0.75rem;
  }

  .btn {
    padding: 1.25rem 0.625rem;
    font-size: 1.125rem;
  }

  .btn--solid {
    font-size: 0.875rem;
    padding-top: 0.90625rem;
    padding-bottom: 0.90625rem;
  }

  .btn__tablet,
  .btn__desktop {
    display: none;
  }

  .btn__mobile {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
  }

  .h1 {
    font-size: 2rem;
  }

  .h2, .soil-analysis__text h2 {
    font-size: 1.5rem;
  }

  .h3 {
    font-size: 1.125rem;
  }

  .services-row {
    gap: 0.75rem;
  }

  .card-service {
    width: calc(50% - 6.5px);
    padding: 0;
  }

  .card-service p {
    background-color: rgba(0,0,0,0);
    margin-top: 8px;
    border-radius: 0;
    padding: 0;
    margin-left: 0;
    text-align: left;
    margin-bottom: 0;
    height: 100%;
  }



  .card-service img {
    border-radius: 5px;
    position: relative;
    height: 8rem;
  }

  .section-p {
    padding-top: 3.125rem;
  }

  .slider__arrow {
    width: 2.0625rem;
    height: 2.0625rem;
  }

  .slider__arrow--prev {
    left: -0.5rem;
  }

  .slider__arrow--next {
    right: -0.5rem;
  }

  .slider__arrow img {
    min-width: 0.5rem;
    min-height: 0.875rem;
    max-width: 0.5rem;
    max-height: 0.875rem;
    display: block;
  }

  .slider__pag {
    gap: 0.8125rem;
  }

  .slider__pag .swiper-pagination-bullet {
    width: 0.5625rem;
    height: 0.5625rem;
  }

  .custom-list li {
    font-size: 0.875rem;
  }

  p {
    font-size: 0.875rem;
    line-height: 150%;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  h3 {
    font-size: 1.5rem;
  }

  h4 {
    font-size: 1.3125rem;
  }

  h5 {
    font-size: 1.125rem;
  }

  h6 {
    font-size: 1rem;
    line-height: 131%;
  }

  .header__logo {
    max-width: 104px;
    margin-right: 5.0704225352%;
  }

  .header__burger {
    margin-right: 8.7323943662%;
  }

  .header__phone {
    margin-left: 8px;
    font-size: 14px;
  }

  .header__socials {
    gap: 5px;
  }

  .header__burger {
    min-width: 24px;
    width: 24px;
    min-height: 24px;
    height: 24px;
  }

  .header__burger-inner {
    width: 13.71px;
    height: 9.6px;
    gap: 2.5px;
  }

  .header__burger-inner span {
    width: 13.71px;
    height: 1px;
  }

  .header__burger-inner span:last-child {
    width: 11.66px;
  }

  .header__icon {
    width: 24px;
    height: 24px;
    min-width: 24px;
    min-height: 24px;
  }

  .header__tg {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-left: 0;
  }

  .header__mail {
    margin-left: 0;
  }

  .header__menu {
    padding: 0.9375rem;
  }

  .header__menu li a {
    font-size: 1.0625rem;
  }

  .header__menu li ul {
    display: none;
  }

  .header__menu li ul.active {
    position: static;
    margin: 0.3125rem 0.625rem;
    display: block;
    padding: 0;
    opacity: 1;
    visibility: visible;
  }

  .header__menu-list {
    gap: 0.625rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .header__city {
    margin-left: 0;
    gap: 0.375rem;
    font-size: 1rem;
  }

  .header__city-select select {
    font-size: 1rem;
  }

  .header__btn {
    margin-left: 0;
    max-width: 100%;
  }

  .header__tg,
  .header__mail {
    font-size: 1rem;
  }

  .services-catalog {
    padding-top: 2.125rem;
  }

  .services-catalog .row {
    margin-top: 1.5rem;
  }

  .contacts h2 {
    margin-top: 50px;
  }

  .contacts__row {
    margin-top: 30px;
    row-gap: 0.625rem;
  }

  .contacts__col .icon-circle {
    width: 41px;
    height: 41px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 2.5625rem;
            flex: 0 0 2.5625rem;
  }

  .contacts__col img {
    width: 16px;
    height: 16px;
  }

  .contacts__col-contact {
    font-size: 14px;
    line-height: 150%;
  }

  .contacts__col-list li {
    line-height: 128%;
    font-size: 0.875rem;
  }

  .contacts__col-list li .contacts__col-contact {
    line-height: 128%;
    display: inline;
  }

  .contacts__form {
    margin-top: 2rem;
  }

  .service-offer .row {
    gap: 1rem;
  }

  .service-offer__col--left h2 {
    font-size: 32px;
  }

  .service-offer__col--left p {
    margin-top: 1rem;
    font-size: 16px;
    line-height: 152%;
    font-weight: 700;
  }

  .service-offer__items {
    margin-top: 1rem;
    gap: 6px;
  }

  .service-offer__btns {
    margin-top: 1rem;
  }

  .service-offer__item {
    gap: 4px;
    padding: 0.5rem;
    min-height: 86px;
    width: calc(50% - 4px);
    border-radius: 5px;
  }

  .service-offer__item-text h3 {
    max-width: -webkit-fit-content;
    max-width: -moz-fit-content;
    max-width: fit-content;
    font-size: 14px;
  }

  .service-offer__item-text p {
    font-size: 13px;
  }

  .service-offer__item-img {
    width: 1.5625rem;
    height: 1.5625rem;
    padding: 0.375rem;
  }

  .service-offer__text {
    font-size: 14px;
    line-height: 150%;
  }

  .service-offer .btn__tablet {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .soil-analysis {
    margin-top: 0px;
  }

  .soil-analysis__text {
    font-size: 14px;
  }

  .soil-analysis__col--right li {
font-size: 0.875rem;
  }
  .lab-details__item {
    font-size: 0.875rem;
  }

  .team h2 {
    margin-top: 50px;
  }

  .team__content {
    margin-top: 24px;
  }

  .team__photos {
    gap: 15px;
  }

  .team__photo {
    border-radius: 10px 50px;
  }

  .team__member p {
    margin-top: 9px;
    font-size: 16px;
    line-height: 131%;
    margin-bottom: 4px;
  }

  .team__member span {
    font-weight: 400;
    font-size: 14px;
    line-height: 150%;
  }

  .team__stats {
    gap: 1rem 1.25rem;
  }

  .team__stat-number {
    font-size: 55px;
  }

  .team__stat-number::after {
    bottom: 0.4375rem;
  }

  .team__stat-text {
    font-weight: 500;
    font-size: 16px;
  }

  .reasons__text {
    font-size: 0.875rem;
  }

  .reasons__item {
    min-height: 0;
  }

  .reasons__item--text {
    font-size: 1.125rem;
    line-height: normal;
  }

  .how-it-works .row {
    margin-top: 30px;
  }

  .how-it-works__item {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 calc(50% - 24px);
            flex: 1 1 calc(50% - 24px);
  }

  .how-it-works__text p {
    font-size: 14px;
    line-height: 129%;
  }

  .how-it-works__text span {
    font-size: 13px;
    line-height: 123%;
  }

  .reviews__pagination {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }

  .reviews__nav-arrow {
    width: 33px !important;
    height: 33px !important;
  }

  .reviews__nav-arrow--prev {
    left: 10px !important;
  }

  .reviews__nav-arrow--next {
    right: 10px !important;
  }

  .price__text {
    margin-top: 1.875rem;
    font-size: 0.875rem;
  }

  .price__table-container .btn {
    width: 50%;
    font-size: 14px;
    height: 46px;
  }

  .price__table {
    margin-top: 30px;
    font-weight: 700;
    font-size: 12px;
    line-height: normal;
  }

  .price__table th,
  .price__table td {
    border-right: none;
    border-left: none;
  }

  .price__table td {
    padding: 0.90625rem 0.75rem;
  }

  .price__table td:first-child {
    padding: 0.90625rem 0.75rem;
  }

  .price__table td:nth-child(2) {
    padding-left: 0.125rem;
    padding-right: 0.125rem;
  }

  .price__table td:nth-child(3) {
    padding-top: 0.8125rem;
    padding-bottom: 0.8125rem;
    padding-left: 0.625rem;
    padding-right: 0.625rem;
  }

  .price__table th {
    padding: 0.84375rem 0.75rem;
  }

  .price__table th:first-child {
    padding: 0.84375rem 0.75rem;
    width: 59.93%;
  }

  .price__table th:nth-child(2) {
    width: 14.35%;
    padding-left: 0.125rem;
    padding-right: 0.125rem;
  }

  .price__table th:nth-child(3) {
    width: auto;
    padding-top: 0.40625rem;
    padding-bottom: 0.40625rem;
    padding-left: 0.625rem;
    padding-right: 0.625rem;
  }

  .price tbody tr td:nth-child(3) {
    font-size: 14px;
  }

  .equipment__slider {
    margin-top: 30px;
  }

  .equipment__slide--text p {
    font-size: 14px;
    line-height: 171%;
  }

  .equipment__slide--text span {
    font-size: 12px;
    line-height: 133%;
  }

  .equipment__pagination {
    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;
  }

  .equipment__nav-arrow {
    width: 33px !important;
    height: 33px !important;
  }

  .equipment__nav-arrow--prev {
    left: -8px !important;
  }

  .equipment__nav-arrow--next {
    right: -8px !important;
  }

  .reports__content {
    border-radius: 5px 50px;
    padding: 32px 11px;
    height: auto;
  }

  .reports__content h2 {
    margin-top: 0;
  }

  .reports__buttons {
    gap: 4px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .reports__btn {
    width: 100%;
  }

  .offer__description {
    display: none;
  }

  .offer__form {
    margin-top: 1.75rem;
  }

  .offer__form-title {
    max-width: 15.25rem;
  }

  .offer__form-form {
    margin-top: 1rem;
  }

  .offer__form .btn {
    max-width: 16.1875rem;
  }

  .offer__form .input,
  .offer__form .checkbox {
    display: none;
  }

  .offer__advantages {
    margin-top: 1.75rem;
    gap: 0.375rem;
  }

  .offer__advantages-item {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 calc(50% - 0.1875rem);
            flex: 0 1 calc(50% - 0.1875rem);
    padding: 0.5rem;
    gap: 0.25rem;
    max-height: none;
  }

  .offer__advantages-item::before {
    width: 1.5625rem;
    height: 1.5625rem;
  }

  .offer__advantages-item-title {
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
  }

  .offer__advantages-item-description {
    font-size: 0.8125rem;
  }

  .offer__advantages--custom-order .offer__advantages-item:nth-child(2) {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }

  .offer__advantages--custom-order .offer__advantages-item:nth-child(3) {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }

  .offer__advantages--custom-order .offer__advantages-item:nth-child(4) {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }

  .services .h2 {
    margin-bottom: 1.875rem;
  }

  .services .btn {
    max-width: 10.5rem;
    margin-top: 1.5rem;
  }

  .works__tabs,
  .works__tabs-contents {
    margin-top: 1.875rem;
  }

  .works__tabs-titles {
    gap: 0.25rem;
    margin-right: -0.625rem;
  }

  .works__tabs-title {
    font-size: 0.8125rem;
    padding: 1.1875rem 0.75rem;
  }

  .works__slider-slide img {
    min-height: 14.125rem;
  }

  .video-works__container {
    padding-left: 1.5625rem;
    padding-right: 1.5625rem;
  }

  .video-works__slide-container {
    max-width: 22.5rem;
    width: 100%;
    margin: 0 auto;
  }

  .video-works__arrow--prev {
    left: -1.75rem;
  }

  .video-works__arrow--next {
    right: -1.75rem;
  }

  .research__description {
    font-size: 0.875rem;
    margin-top: 1.25rem;
    line-height: 150%;
  }

  .research__items {
    gap: 0.75rem;
  }

  .research__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 100%;
            flex: 0 1 100%;
  }

  .research__item::after {
    right: 2.5rem;
  }

  .research__item-title {
    font-size: 1rem;
    line-height: 131%;
  }

  .research__item-description {
    font-size: 0.875rem;
    line-height: 150%;
  }

  .research__form {
    margin-top: 1.875rem;
  }

  .laboratory__row {
    margin-top: 1.875rem;
    gap: 1.5rem;
  }

  .laboratory__pag {
    margin-top: 1.875rem;
  }

  .laboratory__info-item-title {
    font-size: 1.3125rem;
  }

  .laboratory__info-item-description {
    font-size: 0.875rem;
    line-height: 150%;
  }

  .faq__spollers {
    margin-top: 1.875rem;
  }

  .faq__spollers-item {
    padding-right: 0;
  }

  .faq__spollers-item-title {
    font-size: 0.875rem;
    font-weight: 500;
  }

  .faq__spollers-item-title svg {
    width: 1.5625rem;
    min-width: 1.5625rem;
  }

  .faq__spollers-item-text {
    font-size: 0.875rem;
    padding: 0.5rem 0 0;
  }

  .offer-price {
    padding-top: 0;
    margin-top: 0;
  }

  .offer-price__content {
    margin-top: 1.5rem;
    line-height: 150%;
    font-size: 0.875rem;
  }

  .offer-about .h1+p {
    margin-top: 1rem;
  }

  .offer-about p+p {
    margin-top: 1rem;
  }

  .offer-about p {
    font-size: 0.875rem;
  }

  .offer-about img {
    margin-top: 1rem;
  }

  .offer-works {
    padding-top: 2.125rem;
  }

  .specials__content {
    margin-top: 1.875rem;
  }

  .contacts--page {
    padding-top: 2.125rem;
  }

  .contacts--page .contacts__form {
    
  }

  .details {
    padding-bottom: 3.125rem;
  }

  .details .h2 {
    font-size: 2rem;
  }

  .article {
    padding-top: 2.125rem;
  }

  .article__content {
    padding-top: 1rem;
    --gap-1: 20px;
  }

  .article__content h1+p {
    font-size: 0.875rem;
  }

  .article__content figure img,
  .article__content figure picture {
    min-height: 15.0625rem;
  }

  .article__content figure figcaption {
    font-size: 0.875rem;
  }

  .article__content ol li,
  .article__content ul li {
    font-size: 0.875rem;
    line-height: 150%;
  }

  .article__content table th {
    width: 33.333%;
  }

  .article__content table th,
  .article__content table td {
    font-size: 0.875rem;
  }

  .footer__col {
    width: 100%;
    margin: 42px 0 0 0;
  }

  .footer__col--1 {
    margin-top: 15px;
    text-align: center;
  }

  .footer__col--3,
  .footer__col--4 {
    width: 50%;
  }

  .request__content {
    padding: 1.8125rem 1.125rem 2.0625rem 1.5rem;
  }

  .request__title {
    font-size: 1.5rem;
  }

  .request__form {
    margin-top: 1.375rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .request__form .input {
    width: 100%;
  }

  .breadcrumbs {
    padding-top: 1rem;
  }
}

@media (max-width: 47.99875em)and (max-width: 23.4375em) {
  .contacts__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .contacts__col {
    width: 100%;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

@media (max-width: 29.99875em) {
  .card-service p {
    font-size: 0.8125rem;
  }
}

@media (max-width: 23.4375em) {
  .custom-list li {
    padding-left: 1.875rem;
  }

  .custom-list li::after {
    width: 1.25rem;
    height: 1.25rem;
  }

  .laboratory__info-item-count {
    font-size: 3.75rem;
  }

  .laboratory__info-item-title {
    font-size: 1.125rem;
  }

  .laboratory__info-item-description {
    font-size: 0.75rem;
  }

  .article__content table th,
  .article__content table td {
    font-size: 0.75rem;
    padding: 0.3125rem;
  }

  .article__content aside {
    font-size: 1rem;
  }

  .article__content aside p {
    margin-top: 0.5rem;
    font-size: 1rem;
  }
}

.webp .video-works__slide-inner { background-image: url(/img/home/video-works/mask.webp); }

.webp .request::after { background-image: url(/img/home/request/bg-part.webp); }

.webp .request__content { background-image: url(/img/home/request/bg.webp); }

.pager {
  display: flex;
  justify-content: center;
  margin: 60px -5px 0;
  width: 100%;
  margin-bottom: 50px;
}
.pager a,
.pager span {
  margin: 0 5px;
  width: 40px;
  height: 40px;
  font-weight: 700;
  line-height: 40px;
  text-align: center;
}
.pager__current, .pager__link:hover {
  color: #fff;
  background: -webkit-gradient(linear, left bottom, left top, from(#7abb4c), to(#b4eb66));
  background: linear-gradient(360deg, #7abb4c 0%, #b4eb66 100%);
}
.pager__link {
 
  border-radius: 5px;
}
.pager__current {
  color: #fff;
  border-radius: 5px;
  
}
.pager__prev, .pager__next {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  cursor: pointer;
}
.pager__prev:hover path, .pager__next:hover path {
  stroke: #b4eb66; 
}
.pager__prev {
  margin: 0 !important;
}
.pager__next {
  margin-left: 0;
}

.alignleft {
  float: left;
  margin: 0 30px 30px 0;
}

.alignright {
  float: right;
  margin: 0 0 30px 30px;
}

.aligncenter {
  margin: 0 auto 30px;
}


.popup__content {

  background-color: #fff;

  max-width: 36.1875rem;

  width: 100%;

  padding: 2.25rem;

  padding-bottom: 2rem;

  border-radius: 25px 50px;

  -webkit-box-shadow: 0 4px 71px 0 rgba(0,0,0,.11);

          box-shadow: 0 4px 71px 0 rgba(0,0,0,.11);

  text-align: center;

}



.popup__content-title {

  font-size: 2.5rem;

  font-weight: 700;

}



.popup__content-subtitle {

  margin-top: 0.5rem;

  font-size: 1.3125rem;

  line-height: 152%;

}



.popup__content-form {

  display: -webkit-box;

  display: -ms-flexbox;

  display: flex;

  -webkit-box-orient: vertical;

  -webkit-box-direction: normal;

      -ms-flex-direction: column;

          flex-direction: column;

  margin-top: 1.5rem;

  gap: 1.5rem;

  width: 100%;

}



.popup__content-form .input,

.popup__content-form .btn,

.popup__content-form .checkbox {

  width: 100%;

  max-width: 100%;

}



.popup__content-form .input {

  padding-top: 1.4375rem;

  padding-bottom: 1.4375rem;

}



.popup__content-form .checkbox {

  margin-top: -4px;

  text-align: left;

}



.popup__close {

  position: absolute;

  top: 15px;

  right: 15px;

  padding: 0;

  width: 2.625rem;

  height: 2.625rem;

}



.popup__close svg {

  width: 100%;

  height: 100%;

}

.header__city select {
  width: 250px;
}