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

.fw600 {
  font-weight: 600;
}

.fw500 {
  font-weight: 500;
}

.fw300 {
  font-weight: 300;
}

.center {
  text-align: center;
}

.left_mark {
  position: relative;
}
.left_mark:before {
  content: "";
  position: absolute;
  top: 0.3vw;
  left: -1.8vw;
  width: 0.625vw;
  height: 0.625vw;
  background-color: #608943;
}

.green {
  color: #608943;
}

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

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

.section_heading {
  font-size: 2vw;
  font-weight: 400;
  text-transform: uppercase;
}

.tel_link {
  position: relative;
}
.tel_link:before {
  content: "";
  position: absolute;
  top: 50%;
  width: 1.2vw;
  height: 1.2vw;
  left: -1.5vw;
  transform: translateY(-50%);
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url("/img/phone_icon.svg");
}

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

.btn {
  height: 2.813vw;
  width: 14.375vw;
  border-radius: 2vw;
  color: #fff;
  background: linear-gradient(180deg, #89BC65 0%, #608943 100%);
  box-shadow: 0 4px 4px 0 rgba(19, 19, 19, 0.25) inset;
  justify-content: center;
  text-align: center;
  align-items: center;
  cursor: pointer;
}
.btn:hover {
  background: linear-gradient(180deg, #608943 0%, #608943 100%);
}

.slider-arr {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 2.5vw;
  height: 2.5vw;
  border-radius: 50%;
  background-color: #EFEFEF;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.3s all ease;
}
.slider-arr:hover {
  background-color: #608943;
}
.slider-arr:hover svg path {
  fill: #fff;
}
.slider-arr.prev {
  left: -1.25vw;
}
.slider-arr.next {
  right: -1.25vw;
}

.breadcrumbs {
  margin-top: 10.5vw;
}
.breadcrumbs ol {
  display: flex;
}
.breadcrumbs ol li {
  font-size: 1vw;
  margin-right: 0.5vw;
}
.breadcrumbs ol li a {
  padding-right: 1vw;
  position: relative;
}
.breadcrumbs ol li a:before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  width: 0.5vw;
  height: 1vw;
  background-image: url("/img/breadcrumb.svg");
}
.breadcrumbs ol li a span {
  font-weight: 400;
}
.breadcrumbs ol li a:hover {
  text-decoration: underline;
}
.breadcrumbs ol li span {
  font-weight: 600;
}

@media only screen and (max-width: 900px) {
  .breadcrumbs {
    margin-top: 16vw;
  }
  .breadcrumbs ol li {
    font-size: 2.5vw;
    margin-right: 1vw;
  }
  .breadcrumbs ol li a {
    padding-right: 2vw;
  }
  .breadcrumbs ol li a:before {
    top: 10%;
    width: 1vw;
    height: 2vw;
  }
  .breadcrumbs ol li a span {
    font-size: 2.5vw;
  }

  .left_mark:before {
    width: 2vw;
    height: 2vw;
    top: 1.1vw;
    left: 0;
  }

  .tel_link:before {
    width: 3.5vw;
    height: 3.5vw;
    left: -4.5vw;
  }

  .section_heading {
    font-size: 4.5vw;
  }
  .section_heading br {
    display: none;
  }

  .slider-arr {
    width: 8vw;
    height: 8vw;
  }
  .slider-arr.prev {
    left: -3vw;
  }
  .slider-arr.next {
    right: -3vw;
  }

  .btn {
    height: 9vw;
    border-radius: 4vw;
    font-size: 3.5vw;
    width: -moz-max-content;
    width: max-content;
    padding: 0 5vw;
  }

  .has_dot:before {
    width: 1vw;
    height: 1vw;
    left: -1.5vw;
  }

  .slick-dots {
    bottom: -7vw;
  }
  .slick-dots li {
    width: 1.5vw;
    height: 1.5vw;
    margin: 0 0.8vw;
  }
  .slick-dots li.slick-active {
    margin: 0 1vw;
  }
  .slick-dots li.slick-active button:before {
    width: 1.5vw;
    height: 1.5vw;
    border-radius: 50%;
  }
}
@keyframes blinkDot {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes pusleWidgetBtn {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}
@keyframes rotateWidgetPhone {
  0% {
    transform: rotate(120deg);
  }
  10% {
    transform: rotate(110deg);
  }
  20% {
    transform: rotate(120deg);
  }
  40% {
    transform: rotate(110deg);
  }
  50% {
    transform: rotate(120deg);
  }
  100% {
    transform: rotate(120deg);
  }
}
@keyframes btnBlick {
  0% {
    left: -50%;
  }
  30% {
    left: 200%;
  }
  100% {
    left: 200%;
  }
}
@keyframes moveSideLine {
  0% {
    top: 100%;
  }
  50% {
    top: -105%;
  }
  100% {
    top: -105%;
  }
}
@keyframes moveSideDot {
  0% {
    top: -120%;
  }
  50% {
    top: 0%;
  }
  100% {
    top: 120%;
  }
}
@keyframes loadingProgressCalc {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(50%);
  }
}
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  vertical-align: baseline;
  outline: none;
  font-family: "Montserrat", sans-serif;
  box-sizing: border-box;
  color: #2E2E2E;
}

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

body {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
}

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

p {
  line-height: 130%;
  font-weight: 500;
  font-size: 1vw;
  color: #2E2E2E;
}

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

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

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

form button {
  cursor: pointer;
}

b {
  font-weight: 700;
}

ol, ul {
  list-style: none;
}

svg {
  transition: 0.3s all ease;
}

svg path {
  transition: 0.3s all ease;
}

blockquote, q {
  quotes: none;
}

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

strong {
  font-weight: bold;
}

input {
  outline: none;
}

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

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

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

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

details :focus {
  outline: 0;
}

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

details summary:before {
  content: none;
}

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

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

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

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

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

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

@media only screen and (max-width: 900px) {
  .container {
    width: 92vw;
  }
}
form textarea,
form input {
  width: 100%;
  height: 2.813vw;
  padding: 0 1.5vw;
  border-radius: 2vw;
  background: linear-gradient(180deg, #FFF 0%, rgba(254, 254, 254, 0.9) 100%);
  box-shadow: 0 4px 4px 0 rgba(19, 19, 19, 0.25) inset;
  font-size: 1vw;
  margin-bottom: 0.75vw;
  box-sizing: border-box;
}
form textarea {
  resize: none;
  height: 5.625vw;
  border-radius: 1vw;
  padding: 1vw 1.5vw;
  font-family: "Montserrat", sans-serif;
}
form button.btn {
  display: block;
  width: 100%;
  border: none;
  font-size: 1.1vw;
  letter-spacing: 0.05vw;
}
form .agree_row {
  margin-top: 0.8vw;
}
form .agree_row input {
  width: 1vw;
  height: 1vw;
  position: relative;
  cursor: pointer;
}
form .agree_row input:before, form .agree_row input:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background-color: #fff;
}
form .agree_row input:checked:after {
  background-image: url("/img/checked.svg");
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  width: 70%;
  height: 70%;
  z-index: 2;
}
form .agree_row label {
  cursor: pointer;
  width: 70%;
  margin-left: 1vw;
  font-size: 0.8vw;
  font-weight: 300;
  color: #fff;
}
form .agree_row label a {
  color: #fff;
  font-size: 0.8vw;
  border-bottom: 1px dashed #fff;
}
form .agree_row label a:hover {
  color: #608943;
  border-bottom: 1px dashed #608943;
}

@media only screen and (max-width: 900px) {
  form textarea,
form input {
    height: 9vw;
    font-size: 3.5vw;
    border-radius: 9vw;
    padding: 0 3vw;
    margin-bottom: 2vw;
  }
  form textarea {
    padding: 1.5vw 3vw;
    height: 20vw;
    border-radius: 4vw;
  }
  form button.btn {
    font-size: 3.5vw;
  }
  form .agree_row {
    margin-top: 2vw;
  }
  form .agree_row input {
    width: 3vw;
    height: 3vw;
  }
  form .agree_row label {
    font-size: 3vw;
    width: 90%;
  }
  form .agree_row label a {
    font-size: 3vw;
  }
}
.content_block h1 {
  font-size: 1.75vw;
  font-weight: 600;
}
.content_block h2, .content_block h3, .content_block h4, .content_block h5, .content_block h6 {
  font-size: 1.25vw;
  font-weight: 600;
}
.content_block a {
  font-size: 1.1vw;
  text-decoration: underline;
}
.content_block p {
  font-size: 1.1vw;
  font-weight: 400;
  margin: 1vw 0;
}
.content_block ul {
  margin: 0.5vw 0;
}
.content_block ul li {
  padding-left: 0.7vw;
  position: relative;
}
.content_block ul li p {
  margin: 0;
}
.content_block ul li:before {
  content: "";
  position: absolute;
  top: 0.6vw;
  left: 0;
  width: 0.3vw;
  height: 0.3vw;
  background-color: #608943;
  border-radius: 50%;
}

@media only screen and (max-width: 900px) {
  .content_block h1, .content_block h2, .content_block h3, .content_block h4, .content_block h5, .content_block h6 {
    margin-top: 3vw;
    font-size: 4.5vw;
  }
  .content_block a {
    font-size: 3.5vw;
  }
  .content_block p {
    font-size: 3.5vw;
    margin: 2vw 0;
  }
  .content_block ul {
    margin: 1vw 0;
  }
  .content_block ul li {
    padding-left: 3vw;
  }
  .content_block ul li:before {
    top: 2vw;
    width: 1.5vw;
    height: 1.5vw;
  }
}
header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 99;
  width: 100%;
  padding: 0.625vw 0 0;
}
header.fixed .container .menu_row {
  margin: 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  border-radius: 0;
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.2);
  padding: 0 8vw;
}
header .container {
  justify-content: space-between;
  align-items: center;
}
header .container .logo_block {
  align-items: center;
  position: relative;
  z-index: 99;
}
header .container .logo_block a img {
  width: 7.5vw;
}
header .container .logo_block p {
  margin-left: 1vw;
  font-size: 0.85vw;
}
header .container .header_messengers p {
  font-size: 0.75vw;
  margin-bottom: 0.2vw;
}
header .container .header_messengers .messengers a {
  width: 2.5vw;
  height: 2.5vw;
}
header .container .phone_block {
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 99;
}
header .container .phone_block a.tel_link {
  font-size: 1.5vw;
}
header .container .phone_block a.tel_link:hover {
  text-decoration: underline;
}
header .container .phone_block p {
  margin-top: 0.2vw;
  font-size: 0.9vw;
}
header .container .phone_block p.get_call {
  cursor: pointer;
  line-height: 100%;
  border-bottom: 1px dashed #608943;
}
header .container .menu_row {
  margin-top: 0.625vw;
  width: 100%;
  height: 3.125vw;
  background-color: #fff;
  border-radius: 0.625vw;
  align-items: center;
  justify-content: space-between;
  padding: 0 0 0 3.125vw;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
}
header .container .menu_row nav ul li {
  margin-right: 4vw;
}
header .container .menu_row nav ul li a {
  text-transform: uppercase;
  font-weight: 600;
}
header .container .menu_row nav ul li a:hover {
  color: #608943;
}
header .container .burger_mobile {
  display: none;
  width: 8.5vw;
  height: 8.5vw;
  padding: 0;
  border-radius: 50%;
  margin-left: -18vw;
  cursor: pointer;
  position: relative;
  z-index: 99;
}
header .container .burger_mobile.active span:first-child {
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}
header .container .burger_mobile.active span:last-child {
  top: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
}
header .container .burger_mobile.active span:nth-child(2) {
  left: 100%;
  opacity: 0;
}
header .container .burger_mobile span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 50%;
  height: 2px;
  background-color: #fff;
  transform: translate(-50%, -50%);
  transition: 0.3s all ease;
}
header .container .burger_mobile span:first-child {
  top: 30%;
}
header .container .burger_mobile span:last-child {
  top: 70%;
}

@media only screen and (max-width: 900px) {
  header {
    padding: 1vw 0 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99;
  }
  header.fixed {
    background: linear-gradient(180deg, #FDF9F5 0%, rgba(255, 255, 255, 0) 250%);
    -webkit-backdrop-filter: blur(4px);
            backdrop-filter: blur(4px);
    box-shadow: 0 5px 5px rgba(0, 0, 0, 0.1);
    padding: 1vw 0;
  }
  header .container .logo_block a img {
    width: 18vw;
  }
  header .container .logo_block p {
    display: none;
  }
  header .container .header_messengers {
    display: none;
  }
  header .container .phone_block p {
    font-size: 2.5vw;
  }
  header .container .phone_block p.get_call {
    margin-top: 0.5vw;
  }
  header .container .phone_block a.tel_link {
    font-size: 4vw;
  }
  header .container .menu_row {
    display: none;
  }
  header .container .menu_row.active {
    padding: 0 !important;
    margin-top: 0;
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    height: 100vh;
    z-index: 8;
  }
  header .container .menu_row.active nav ul {
    flex-direction: column;
    padding: 26vw 0 0 4vw;
  }
  header .container .menu_row.active nav ul li {
    margin-bottom: 4vw;
  }
  header .container .menu_row.active nav ul li a {
    font-size: 5vw;
  }
  header .container .burger_mobile {
    display: block !important;
  }
  header .container p.btn {
    display: none;
  }
}
.messengers p {
  color: #fff;
  margin-bottom: 0.2vw;
}
.messengers a {
  width: 3vw;
  height: 3vw;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  margin-right: 1vw;
  background-color: rgba(255, 255, 255, 0.9);
}
.messengers a img, .messengers a svg {
  width: 50%;
  height: 50%;
  transition: 0.3s all ease;
}
.messengers a.va {
  background-color: #7360F2;
}
.messengers a.va svg path {
  fill: #fff;
}
.messengers a.tg {
  background-color: #229ED9;
}
.messengers a.tg svg path {
  fill: #fff;
}
.messengers a.wa {
  background-color: #25D366;
}
.messengers a.wa svg path {
  fill: #fff;
}
.messengers a.fb svg path {
  fill: #4267B2;
}
.messengers a:hover {
  transform: scale(1.2);
}
.messengers a:last-child {
  margin-right: 0;
}

@media only screen and (max-width: 900px) {
  .messengers a {
    width: 8vw;
    height: 8vw;
    margin-right: 2vw;
  }
}
section.first_screen {
  height: 49.688vw;
  padding-top: 14.375vw;
}
section.first_screen .inner {
  padding-left: 3vw;
}
section.first_screen .inner h1 {
  font-size: 3.125vw;
}
section.first_screen .inner .secondary {
  margin: 1.563vw 0 3.75vw;
}
section.first_screen .inner .secondary img {
  margin-right: 0.875vw;
  position: relative;
  top: 0.5vw;
}
section.first_screen .inner .secondary p {
  font-size: 1.125vw;
}
section.first_screen .inner a.btn {
  height: 4.375vw;
  width: 21.875vw;
  border-radius: 4vw;
}
section.first_screen .inner a.btn svg {
  margin-left: 1.875vw;
  width: 1.3vw;
  height: 1.3vw;
}
section.first_screen .inner .hero_messengers {
  margin-top: 3.75vw;
  align-items: center;
}
section.first_screen .inner .hero_messengers p {
  margin-right: 2.5vw;
}

section.adv_section {
  margin-top: 5vw;
}
section.adv_section .container {
  justify-content: space-between;
}
section.adv_section .container .left {
  width: 28.125vw;
}
section.adv_section .container .left p.secondary {
  margin-top: 10vw;
  font-size: 1.375vw;
}
section.adv_section .container .right {
  width: 50%;
  justify-content: space-between;
}
section.adv_section .container .right .item {
  width: 40%;
  margin-bottom: 3.125vw;
  font-size: 1.05vw;
}
section.adv_section .container .right .item:nth-child(7), section.adv_section .container .right .item:last-child {
  margin-bottom: 0;
}

section.products_section {
  margin-top: 5vw;
}
section.products_section .product_items_slider {
  margin-top: 3.125vw;
  display: none;
}
section.products_section .product_items_slider.slick-initialized {
  display: block;
}
section.products_section .product_items_slider .item .inner {
  justify-content: space-between;
}
section.products_section .product_items_slider .item .inner .img_block {
  display: block;
  width: 50%;
  height: 29.375vw;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  overflow: hidden;
}
section.products_section .product_items_slider .item .inner .img_block:hover a {
  transform: scale(1.1);
}
section.products_section .product_items_slider .item .inner .img_block a {
  display: block;
  height: 100%;
}
section.products_section .product_items_slider .item .inner .desc {
  width: 46%;
}
section.products_section .product_items_slider .item .inner .desc a.name {
  display: block;
  font-size: 1.75vw;
  margin: 0.5vw 0 1.563vw;
  text-transform: uppercase;
}
section.products_section .product_items_slider .item .inner .desc .content_block {
  margin-bottom: 1.5vw;
}
section.products_section .product_items_slider .item .inner .desc .content_block p {
  margin: 0.3vw 0;
}
section.products_section .product_items_slider .item .inner .desc .get_consult {
  margin-top: 0.8vw;
  color: #608943;
  display: inline-block;
  border-bottom: 1px dashed #608943;
  cursor: pointer;
}
section.products_section .product_items_slider .slider-arr {
  top: -4vw;
  width: 3.2vw;
  height: 3.2vw;
}
section.products_section .product_items_slider .slider-arr.prev {
  left: 91%;
}
section.products_section .product_items_slider .slider-arr.next {
  right: 0;
}
section.products_section .product_items_slider .slick-dots {
  bottom: -2.5vw;
}

section.about_section {
  margin-top: 7.5vw;
  padding: 5vw 0;
}
section.about_section .container {
  justify-content: space-between;
}
section.about_section .container .left {
  width: 40vw;
}
section.about_section .container .left p {
  color: #fff;
}
section.about_section .container .left p.section_heading {
  font-size: 2.8vw;
}
section.about_section .container .left p.section_heading span {
  color: #fff;
}
section.about_section .container .left p b {
  color: #fff;
}
section.about_section .container .left p.desc {
  margin-top: 1.875vw;
  font-size: 1.15vw;
  font-weight: 300;
}
section.about_section .container .left .form_block {
  margin-top: 5vw;
}
section.about_section .container .left .form_block p.title {
  font-size: 1.25vw;
  font-weight: 300;
}
section.about_section .container .left .form_block form {
  margin-top: 1.25vw;
  width: 24.375vw;
  justify-content: space-between;
}
section.about_section .container .left .form_block form > input {
  width: 49%;
}
section.about_section .container .right {
  width: 20%;
}
section.about_section .container .right .item {
  margin-bottom: 2.5vw;
}
section.about_section .container .right .item p {
  color: #fff;
}
section.about_section .container .right .item p.title {
  font-size: 1.125vw;
  text-transform: uppercase;
  margin-bottom: 0.875vw;
}
section.about_section .container .right .item:last-child {
  margin-bottom: 0;
}

section.partners_section {
  margin-top: 4.375vw;
}
section.partners_section .top_row {
  align-items: center;
  justify-content: space-between;
}
section.partners_section .top_row .btns_block .btn {
  height: 3.75vw;
  padding: 0 1.875vw;
  margin-right: 1.875vw;
  background: linear-gradient(180deg, rgba(137, 188, 101, 0.18) 0%, rgba(96, 137, 67, 0.16) 100%);
  color: #2E2E2E;
}
section.partners_section .top_row .btns_block .btn.active {
  color: #fff;
  background: linear-gradient(180deg, #89BC65 0%, #608943 100%);
}
section.partners_section .top_row .btns_block .btn:last-child {
  margin-right: 0;
}
section.partners_section .slider_block {
  margin-top: 2.5vw;
  position: relative;
}
section.partners_section .slider_block .slider_partners {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  z-index: -1;
  display: none;
}
section.partners_section .slider_block .slider_partners.slick-initialized {
  display: block;
}
section.partners_section .slider_block .slider_partners.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}
section.partners_section .slider_block .slider_partners .slick-list {
  padding: 0 0.1vw;
}
section.partners_section .slider_block .slider_partners .item .row {
  height: 8.438vw;
  align-items: center;
}
section.partners_section .slider_block .slider_partners .item .row p {
  width: 50%;
  height: 100%;
  border: 1px solid rgba(0, 0, 0, 0.12);
}
section.partners_section .slider_block .slider_partners .item .row p.text {
  align-items: center;
  padding: 0 3vw 0 2.375vw;
}
section.partners_section .slider_block .slider_partners .item .row p.img {
  padding: 0 4vw;
  justify-content: center;
  align-items: center;
}
section.partners_section .slider_block .slider_partners .item .row p.img img {
  max-height: 80%;
}
section.partners_section .slider_block .slider_partners .item .row:last-child {
  border-top: none;
}

section.main_seo_content {
  margin-top: 26vw;
}

section.public_offer_content {
  margin-top: 3vw;
}

@media only screen and (max-width: 900px) {
  section.first_screen {
    height: 155vw;
    padding-top: 30vw;
  }
  section.first_screen .inner {
    padding-left: 0;
  }
  section.first_screen .inner h1 {
    font-size: 8vw;
    max-width: 80%;
  }
  section.first_screen .inner p {
    font-size: 3.5vw;
  }
  section.first_screen .inner p br {
    display: none;
  }
  section.first_screen .inner .secondary {
    margin: 5vw 0 8vw;
  }
  section.first_screen .inner .secondary p {
    font-size: 3.5vw;
    margin-top: 2vw;
  }
  section.first_screen .inner a.btn {
    width: -moz-max-content;
    width: max-content;
    height: 13vw;
    border-radius: 8vw;
    padding: 0 6vw;
  }
  section.first_screen .inner a.btn svg {
    margin-left: 4vw;
    width: 4vw;
    height: 4vw;
  }
  section.first_screen .inner .hero_messengers p {
    width: 100%;
  }
  section.first_screen .inner .hero_messengers .messengers {
    margin-top: 2vw;
  }

  section.adv_section {
    margin-top: 10vw;
  }
  section.adv_section .container .left {
    width: 100%;
  }
  section.adv_section .container .left p.secondary {
    margin-top: 2vw;
    font-size: 3.5vw;
  }
  section.adv_section .container .left p.secondary br {
    display: none;
  }
  section.adv_section .container .right {
    width: 100%;
    margin-top: 3vw;
  }
  section.adv_section .container .right .item {
    padding-left: 4vw;
    width: 100%;
    font-size: 3.5vw;
    margin-bottom: 2vw;
  }
  section.adv_section .container .right .item:nth-child(7) {
    margin-bottom: 2vw;
  }

  section.products_section {
    margin-top: 9vw;
  }
  section.products_section .product_items_slider .slider-arr {
    top: 30%;
    width: 8vw;
    height: 8vw;
  }
  section.products_section .product_items_slider .slider-arr.prev {
    left: 3vw;
  }
  section.products_section .product_items_slider .slider-arr.next {
    right: 3vw;
  }
  section.products_section .product_items_slider .slick-dots {
    bottom: -8vw;
  }
  section.products_section .product_items_slider .item .inner .img_block {
    width: 100%;
    height: 100vw;
  }
  section.products_section .product_items_slider .item .inner .desc {
    width: 100%;
    margin-top: 5vw;
  }
  section.products_section .product_items_slider .item .inner .desc .content_block {
    margin: 3vw 0 4vw;
  }
  section.products_section .product_items_slider .item .inner .desc a.name {
    font-size: 4.5vw;
  }
  section.products_section .product_items_slider .item .inner .desc a.btn {
    width: 100%;
  }
  section.products_section .product_items_slider .item .inner .desc .get_consult {
    margin-top: 3vw;
    font-size: 3.5vw;
  }

  section.about_section {
    margin-top: 16vw;
    padding: 10vw 0;
  }
  section.about_section .container .left {
    width: 100%;
  }
  section.about_section .container .left p.section_heading {
    font-size: 5vw;
    max-width: 80%;
  }
  section.about_section .container .left p.desc {
    margin-top: 3vw;
    font-size: 3.5vw;
  }
  section.about_section .container .left .form_block {
    margin-top: 15vw;
  }
  section.about_section .container .left .form_block p.title {
    font-size: 3.5vw;
  }
  section.about_section .container .left .form_block form {
    margin-top: 3vw;
    width: 100%;
  }
  section.about_section .container .right {
    display: none;
  }

  section.partners_section {
    margin-top: 10vw;
  }
  section.partners_section .top_row .btns_block {
    margin-top: 3vw;
  }
  section.partners_section .top_row .btns_block .btn {
    height: 9vw;
    width: 100%;
    margin-bottom: 2vw;
  }
  section.partners_section .slider_block {
    margin-top: 3.5vw;
  }
  section.partners_section .slider_block .slider_partners .item .row {
    height: 30vw;
  }
  section.partners_section .slider_block .slider_partners .item .row p.text {
    font-size: 3vw;
    padding: 0 4vw;
  }
  section.partners_section .slider_block .slider_partners .item .row p.img {
    padding: 0 3vw;
  }

  section.main_seo_content {
    margin-top: 80vw;
  }
}
section.product_page {
  margin-top: 2.5vw;
}
section.product_page .container {
  justify-content: space-between;
}
section.product_page .container .left {
  width: 72%;
}
section.product_page .container .left h1 {
  font-size: 2vw;
  margin-bottom: 1.875vw;
}
section.product_page .container .left .product_slider_images {
  display: none;
}
section.product_page .container .left .product_slider_images.slick-initialized {
  display: block;
}
section.product_page .container .left .product_slider_images .item a.img {
  height: 30vw;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
section.product_page .container .left .product_slider_images .item a.img img {
  max-height: 100%;
}
section.product_page .container .left .content_block {
  margin-top: 1.875vw;
}
section.product_page .container .right {
  width: 25%;
  position: sticky;
  top: 4vw;
  height: -moz-max-content;
  height: max-content;
}
section.product_page .container .right .offer {
  padding: 3.125vw 1.563vw;
}
section.product_page .container .right .offer p {
  color: #fff;
  font-size: 1.375vw;
  font-weight: 300;
}
section.product_page .container .right .offer p b {
  color: #fff;
}
section.product_page .container .right .offer form {
  margin-top: 3.188vw;
}

@media only screen and (max-width: 900px) {
  section.product_page {
    margin-top: 5.5vw;
  }
  section.product_page .container .left {
    width: 100%;
  }
  section.product_page .container .left h1 {
    font-size: 5.5vw;
    margin-bottom: 3vw;
  }
  section.product_page .container .left .product_slider_images .item a.img {
    height: 60vw;
  }
  section.product_page .container .right {
    margin-top: 10vw;
    width: 100%;
  }
  section.product_page .container .right .offer {
    padding: 8vw 5vw;
  }
  section.product_page .container .right .offer p {
    font-size: 5vw;
  }
}
section.thank_you_page {
  padding: 17vw 0 9vw;
  margin: -12vw 0 -5.5vw;
}
section.thank_you_page.not_found_page {
  padding: 15vw 0 7vw;
}
section.thank_you_page.not_found_page .container {
  justify-content: space-between;
  align-items: center;
}
section.thank_you_page.not_found_page .container p.text_error {
  font-size: 17.5vw;
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
}
section.thank_you_page .container {
  padding-left: 4vw;
}
section.thank_you_page .container p.title {
  font-size: 2.625vw;
}
section.thank_you_page .container p.secondary {
  font-size: 1.1vw;
  margin: 1vw 0 3vw;
}

@media only screen and (max-width: 900px) {
  section.thank_you_page {
    margin: -20vw 0 -17vw;
    padding: 30vw 0 20vw;
  }
  section.thank_you_page.not_found_page {
    margin: -20vw 0 -17vw;
    padding: 30vw 0 20vw;
  }
  section.thank_you_page.not_found_page .container p.text_error {
    font-size: 22vw;
  }
  section.thank_you_page .container p.title {
    font-size: 5vw;
  }
  section.thank_you_page .container p.secondary {
    font-size: 3.5vw;
  }
}
footer {
  margin-top: 5.313vw;
  background-color: #608943;
  padding: 3.563vw 0 1.063vw;
}
footer .container {
  justify-content: space-between;
}
footer .container p {
  color: #fff;
}
footer .container p.title {
  font-size: 1.3vw;
  margin-bottom: 0.9vw;
}
footer .container p b {
  color: #fff;
}
footer .container p.sm {
  font-size: 0.9vw;
  font-weight: 300;
  margin: 0 0 0.75vw;
}
footer .container p.consult_btn {
  color: #542C13;
  border-bottom: 1px dashed #542C13;
  cursor: pointer;
  margin-top: -0.7vw;
}
footer .container p.consult_btn:hover {
  border-bottom: 1px solid #542C13;
}
footer .container ul li {
  margin-bottom: 0.4vw;
}
footer .container ul li a {
  color: #fff;
  font-weight: 300;
  font-size: 1.1vw;
}
footer .container ul li a:hover {
  text-decoration: underline;
}
footer .container .menu_col {
  margin-left: 3vw;
}
footer .container a.contact_link {
  align-items: center;
  justify-content: space-between;
  color: #fff;
  font-size: 1.3vw;
  max-width: 15vw;
  margin-bottom: 1.5vw;
}
footer .container a.contact_link.location {
  font-size: 0.9vw;
}
footer .container a.contact_link:hover {
  text-decoration: underline;
}
footer .container a.contact_link span {
  width: 80%;
  color: #fff;
}
footer .container a.contact_link img {
  width: 1.3vw;
}
footer .container .phones_block {
  align-items: center;
  margin-bottom: 1.5vw;
}
footer .container .phones_block img {
  margin-right: 1vw;
  width: 1.2vw;
}
footer .container .phones_block a.contact_link {
  margin-bottom: 0;
}
footer .container .logo_block .logo img {
  width: 13vw;
}
footer .container .logo_block p {
  margin-top: 0.2vw;
  font-size: 1.1vw;
}
footer .container .logo_block .socials_block {
  margin-top: 3vw;
}
footer .container .logo_block .socials_block .socials {
  margin-top: 0.5vw;
}
footer .container .logo_block .socials_block .socials a {
  margin-right: 0.7vw;
  width: 2.188vw;
  height: 2.188vw;
  align-items: center;
  border-radius: 50%;
  background-color: #fff;
  justify-content: center;
}
footer .container .logo_block .socials_block .socials a img {
  width: 50%;
}
footer .container .logo_block .socials_block .socials a:hover {
  transform: scale(1.1);
}
footer .container .rights {
  margin-top: 3.75vw;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  padding-top: 1vw;
}
footer .container .rights p {
  font-size: 1vw;
}
footer .container .rights a {
  color: #fff;
}
footer .container .rights a:hover {
  text-decoration: underline;
}

@media only screen and (max-width: 900px) {
  footer {
    margin-top: 15vw;
    padding: 8vw 0 4vw;
  }
  footer .container p.title {
    font-size: 4vw;
    margin-bottom: 4vw;
  }
  footer .container p.sm {
    font-size: 2.5vw;
    margin: 0 0 1.5vw;
  }
  footer .container p.sm br {
    display: none;
  }
  footer .container p.consult_btn {
    font-size: 2.8vw;
    display: inline-block;
  }
  footer .container .phones_block {
    margin-bottom: 4vw;
  }
  footer .container .phones_block img {
    display: none;
  }
  footer .container a.contact_link {
    max-width: 100%;
    font-size: 4vw;
    margin-bottom: 3vw;
  }
  footer .container a.contact_link img {
    width: 3.5vw;
  }
  footer .container a.contact_link span {
    width: 85%;
  }
  footer .container a.contact_link.location {
    font-size: 3vw;
  }
  footer .container ul li {
    margin-bottom: 2vw;
  }
  footer .container ul li a {
    font-size: 3.5vw;
  }
  footer .container .logo_block {
    width: 100%;
    margin-bottom: 5vw;
  }
  footer .container .logo_block p {
    font-size: 3vw;
  }
  footer .container .logo_block .logo img {
    width: 25vw;
  }
  footer .container .logo_block .socials_block {
    margin-top: 5vw;
  }
  footer .container .logo_block .socials_block .socials {
    margin-top: 1.5vw;
  }
  footer .container .logo_block .socials_block .socials a {
    width: 8vw;
    height: 8vw;
    margin-right: 2vw;
  }
  footer .container .menu_col {
    width: 49%;
    margin: 4vw 0;
  }
  footer .container .address_col {
    width: 49%;
  }
  footer .container .rights {
    flex-direction: column;
    margin-top: 10vw;
    padding-top: 3vw;
  }
  footer .container .rights p {
    text-align: center;
    font-size: 2.5vw;
    margin-bottom: 1vw;
  }
  footer .container .rights a {
    font-size: 2.5vw;
  }
}
.modal_form {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  opacity: 0;
  z-index: -1;
  visibility: hidden;
}
.modal_form.show {
  opacity: 1;
  z-index: 99;
  visibility: visible;
}
.modal_form.show .inner {
  top: 50%;
}
.modal_form .inner {
  position: absolute;
  top: 90%;
  left: 50%;
  width: 33.125vw;
  transform: translate(-50%, -50%);
  padding: 2.313vw 2vw;
  transition: 0.3s all ease;
}
.modal_form .inner p.close_modal {
  position: absolute;
  top: 1.5vw;
  right: 1.5vw;
  cursor: pointer;
}
.modal_form .inner p.close_modal img {
  width: 1.2vw;
}
.modal_form .inner p.title {
  font-size: 1.5vw;
  color: #fff;
  margin-bottom: 2vw;
}
.modal_form .inner p.title b {
  color: #fff;
}
.modal_form .inner form {
  justify-content: space-between;
}
.modal_form .inner form > input {
  width: 49%;
}

@media only screen and (max-width: 900px) {
  .modal_form .inner {
    width: 80%;
    padding: 8vw 6vw;
  }
  .modal_form .inner p.title {
    font-size: 4vw;
    margin-bottom: 6vw;
  }
  .modal_form .inner p.close_modal {
    top: 4vw;
    right: 4vw;
  }
  .modal_form .inner p.close_modal img {
    width: 3vw;
  }
}
