a,
abbr,
acronym,
address,
applet,
article,
aside,
audio,
b,
big,
blockquote,
body,
canvas,
caption,
center,
cite,
code,
dd,
del,
details,
dfn,
div,
dl,
dt,
em,
embed,
fieldset,
figcaption,
figure,
footer,
form,
h1,
h2,
h3,
h4,
h5,
h6,
header,
hgroup,
html,
i,
iframe,
img,
ins,
kbd,
label,
legend,
li,
mark,
menu,
nav,
object,
ol,
output,
p,
pre,
q,
ruby,
s,
samp,
section,
small,
span,
strike,
strong,
sub,
summary,
sup,
table,
tbody,
td,
tfoot,
th,
thead,
time,
tr,
tt,
u,
ul,
var,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

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

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:after,
blockquote:before,
q:after,
q:before {
  content: '';
  content: none;
}

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

:root,
[data-theme='default'] {
  --color-main: 234;
  --color-primary: hsl(120, 42%, 45%);
  --color-primary-h: 120;
  --color-primary-s: 42%;
  --color-primary-l: 45%;
  --color-second: hsl(165, 56%, 69%);
  --color-second-h: 165;
  --color-second-s: 56%;
  --color-second-l: 69%;
  --color-dark: hsl(0, 0%, 13%);
  --color-dark-h: 0;
  --color-dark-s: 0%;
  --color-dark-l: 13%;
  --color-light: hsl(4, 19%, 84%);
  --color-light-h: 4;
  --color-light-s: 19%;
  --color-light-l: 84%;
  font-size: 1.1rem;
}

@media screen and (min-width: 20rem) {
  :root,
  [data-theme='default'] {
    font-size: calc(1.1rem + 0.7 * ((100vw - 20rem) / 30));
  }
}

@media screen and (min-width: 50rem) {
  :root,
  [data-theme='default'] {
    font-size: 1.8rem;
  }
}

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

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

::selection {
  background: hsla(
    var(--color-second-h),
    var(--color-second-s),
    var(--color-second-l),
    0.8
  );
}

html {
  position: relative;
  scrollbar-color: hsla(
      var(--color-primary-h),
      var(--color-primary-s),
      var(--color-primary-l),
      1
    )
    transparent;
  scrollbar-width: thin;
}

body {
  font-family: Montserrat, sans-serif;
  color: #545454;
  line-height: 1.2;
}

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

body::-webkit-scrollbar-track {
  -webkit-box-shadow: 5px 5px 5px -5px rgba(34, 60, 80, 0.2) inset;
  background-color: transparent;
}

body::-webkit-scrollbar-thumb {
  border-radius: 5px;
  background-color: hsla(
    var(--color-primary-h),
    var(--color-primary-s),
    var(--color-primary-l),
    1
  );
}

.container {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0.5em;
}

.visually-hidden:not(:focus):not(:active),
input[type='checkbox'].visually-hidden,
input[type='radio'].visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  border: 0;
  padding: 0;
  white-space: nowrap;
  -webkit-clip-path: inset(100%);
  clip-path: inset(100%);
  clip: rect(0 0 0 0);
  overflow: hidden;
}

button {
  background: 0 0;
  border: 0;
  cursor: pointer;
  transition: 265ms ease-in;
}

a {
  text-decoration: none;
}

a:focus,
button:focus,
input:focus,
textarea:focus {
  outline: 0;
  box-shadow: 0 0 12px 0
    hsla(
      var(--color-primary-h),
      var(--color-primary-s),
      var(--color-primary-l),
      0.05
    );
}

img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.noscroll {
  overflow: hidden;
}

.btn {
  padding: calc(10px * 1.5) calc(10px * 3.8);
  font-family: Roboto, sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  background: hsla(
    var(--color-primary-h),
    var(--color-primary-s),
    var(--color-primary-l),
    1
  );
  border-radius: 2px;
  transition: 0.5s;
}

.btn:hover {
  background: rgba(226, 237, 201, 0.9);
  color: #030303;
}

.title {
  font-family: 'Noto Serif', sans-serif;
  font-weight: 400;
  font-size: calc(10px * 5);
  color: #030303;
}

.burger {
  display: none;
}

.active .header-nav__list {
  visibility: visible;
}

.active .burger-line {
  background: #fff;
  transition: 0.6s cubic-bezier(0.9, 0, 0.33, 1);
}

.active .burger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}

.active .burger-line:nth-child(2) {
  background: 0 0;
}

.active .burger-line:nth-child(3) {
  transform: rotate(135deg) translate(-4px, 6px);
}

.decor-wrap {
  width: 100%;
  height: auto;
  position: absolute;
  overflow: hidden;
}

.decor-img {
  width: 100%;
}

.message-map {
  position: absolute;
  width: 235px;
  padding: 12px 28px;
  background: #fff;
  border-radius: 4px;
  box-shadow: 4px 4px 14px 0 rgba(0, 0, 0, 0.17);
}

.message-map .message-text {
  text-align: center;
  font-size: 13px;
  line-height: 1.6;
}

.hidden {
  opacity: 0;
  animation: 0.5s ease-in-out forwards fadeOut;
}

.show {
  visibility: visible !important;
}

.show-modal {
  display: -ms-flexbox !important;
  display: flex !important;
  opacity: 1 !important;
  animation: 0.8s ease-in-out fadeInUp;
  visibility: visible !important;
}

@font-face {
  font-family: Montserrat;
  font-display: swap;
  font-weight: 400;
  font-style: normal;
  src: url(../assets/fonts/Montserrat-Regular.woff2) format('woff2'),
    url(../assets/fonts/Montserrat-Regular.woff) format('woff');
}

@font-face {
  font-family: Montserrat;
  font-display: swap;
  font-weight: 700;
  font-style: normal;
  src: url(../assets/fonts/Montserrat-Bold.woff2) format('woff2'),
    url(../assets/fonts/Montserrat-Bold.woff) format('woff');
}

@font-face {
  font-family: Montserrat;
  font-display: swap;
  font-weight: 600;
  font-style: normal;
  src: url(../assets/fonts/Montserrat-SemiBold.woff2) format('woff2'),
    url(../assets/fonts/Montserrat-SemiBold.woff) format('woff');
}

@font-face {
  font-family: 'Noto Serif';
  font-display: swap;
  font-weight: 400;
  font-style: normal;
  src: url(../assets/fonts/NotoSerif.woff2) format('woff2'),
    url(../assets/fonts/NotoSerif.woff) format('woff');
}

@font-face {
  font-family: Roboto;
  font-display: swap;
  font-weight: 700;
  font-style: normal;
  src: url(../assets/fonts/Roboto-Bold.woff2) format('woff2'),
    url(../assets/fonts/Roboto-Bold.woff) format('woff');
}

@font-face {
  font-family: 'Noto Serif';
  src: url('../assets/fonts/NotoSerif-Medium.woff2') format('woff2'),
    url('../assets/fonts/NotoSerif-Medium.woff') format('woff');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Noto Serif';
  src: url('../assets/fonts/NotoSerif-Bold.woff2') format('woff2'),
    url('../assets/fonts/NotoSerif-Bold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@keyframes wormsPong {
  25%,
  75% {
    width: 100%;
  }
  50% {
    width: 0;
    left: auto;
    right: 0;
  }
  100% {
    width: 0;
    right: auto;
    left: 0;
  }
}

@keyframes avaliable {
  0%,
  100% {
    background: 0 0;
  }
  50% {
    opacity: 1;
    background: #9acd32;
  }
}

.fadeinDown {
  animation: 0.5s ease-in-out fadeInDown;
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.fadeinUp {
  animation: 0.5s ease-in-out fadeInUp;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.fadeInLeft {
  animation: 0.5s ease-in-out fadeInLeft;
}

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translateX(80px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.fadeInRight {
  animation: 0.5s ease-in-out fadeInRight;
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translateX(-80px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.fadeOut {
  animation-name: fadeOut;
  -webkit-animation-name: fadeOut;
  animation-duration: 0.4s;
  -webkit-animation-duration: 0.4s;
  animation-timing-function: ease-in-out;
  -webkit-animation-timing-function: ease-in-out;
  visibility: visible !important;
}

@keyframes fadeOut {
  0% {
    transform: scale(1);
    opacity: 1;
    visibility: visible;
  }
  100% {
    transform: scale(0);
    opacity: 0;
    visibility: hidden;
  }
}

@keyframes splide-loading {
  0% {
    transform: rotate(0);
  }
  to {
    transform: rotate(1turn);
  }
}

.header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background: 0 0;
  transition: 0.5s;
  z-index: 4;
}

.header-content {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.header-logo {
  display: -ms-flexbox;
  display: flex;
  transition: 0.5s;
  margin-top: -5px;
}

.header-logo__img {
  width: calc(10px * 6.7);
  height: calc(10px * 7);
}

.header-logo__txt {
  margin: calc(10px * 2) calc(10px * 1.6) 0 calc(10px * 1.3);
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  font-size: calc(10px * 1.4);
  line-height: 1.7;
  color: hsla(
    var(--color-primary-h),
    calc(var(--color-primary-s) + 33%),
    calc(var(--color-primary-l) - 25%),
    1
  );
}

.header-logo__txt::before,
.header-nav__list::after {
  content: '';
  margin-right: calc(10px * 1.6);
  display: block;
  width: 2px;
  height: 33px;
  background: #c4c4c4;
  z-index: 0;
}

.header-nav {
  display: -ms-flexbox;
  display: flex;
  position: relative;
  margin: 0;
  align-items: center;
}

.header-nav__list {
  display: -ms-flexbox;
  display: flex;
  font-size: initial;
}

.header-nav__list::after {
  height: 22px;
  margin: 0;
}

.header-nav__item {
  margin: 0 calc(10px * 5.6) 0 0;
  line-height: 24px;
}

.header-nav__item:nth-last-child(1) {
  margin: 0 calc(10px * 3.2) 0 0;
}

.header-nav__item--logo {
  display: none;
  width: 3rem;
  min-width: 51px;
}

.header-nav__item--btn {
  display: none;
}

.header-nav__item--link:hover .header-nav__item--title {
  color: hsla(
    var(--color-primary-h),
    var(--color-primary-s),
    var(--color-primary-l),
    1
  );
}

.header-nav__item--title {
  font-size: calc(10px * 1.4);
  color: #545454;
}

.header-nav__lang {
  margin: 0px calc(10px * 3.2) 0;
}

.dropdown-item--title,
.header-nav__lang--title {
  display: -ms-flexbox;
  display: flex;
  text-transform: uppercase;
  font-family: Montserrat, sans-serif;
  font-size: 12px;
  color: #545454;
}

.dropdown-item--title::after,
.header-nav__lang--title::after {
  content: '';
  display: block;
  margin: calc(10px * 0.2) 0 0 calc(10px * 0.4);
  width: 7px;
  height: 7px;
  transform: rotate(-136deg);
  border: 2px solid;
  border-bottom: #545454;
  border-right: #545454;
  border-radius: 1px;
  transition: 0.3s;
  margin-top: 2px;
}

.header-nav__lang:focus {
  outline: 0;
  box-shadow: 0 0 0 0.5px
    hsla(
      var(--color-primary-h),
      var(--color-primary-s),
      var(--color-primary-l),
      1
    );
}

.header-nav__lang.active:focus {
  box-shadow: none;
}

.header-nav__lang.active .dropdown-item--title::after,
.header-nav__lang.active .header-nav__lang--title::after {
  margin-top: calc(10px * 0.6);
  transform: rotate(45deg);
}

.dropdown-list {
  visibility: hidden;
  position: absolute;
  top: 1.2rem;
  right: 7.3rem;
  background: #fff;
  border: 1px solid #c4c4c4;
  border-radius: 5px;
  transition: 0.3s;
}

.dropdown-list.active {
  visibility: visible;
}

.dropdown-item {
  width: 1.5rem;
  padding: calc(10px * 0.5);
}

.dropdown-item--link {
  display: block;
}

.dropdown-item--title {
  display: block;
  text-align: center;
}

.dropdown-item--title::after {
  display: none;
}

.scroll {
  background: #fff !important;
  box-shadow: 0 8px 10px -5px #b8b8b8;
}

.scroll .header-nav {
  margin-top: 0 !important;
}

.scroll .header-content {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.scroll .header-logo {
  transform: scale(0.7);
}

.scroll .header-nav__btn {
  margin-top: 0;
}

.scroll .header-nav__lang {
  margin-top: 0px;
}

.top {
  min-height: 100vh;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  padding-bottom: 100px;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.45) 0, #fff 113.45%)
      0 0 / cover no-repeat,
    url(../assets/img/wood-bg.jpg) 0 0 / cover no-repeat,
    0 0 / cover no-repeat #fff;
}

.top-wrapper {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin: calc(10px * 10) 0 0;
}

.top-offer {
  width: 40%;
}

.top-offer__title {
  font-family: 'Noto Serif', sans-serif;
  font-size: calc(10px * 8);
  font-weight: 700;
  letter-spacing: 2px;
  line-height: 1;
  color: hsla(
    var(--color-primary-h),
    calc(var(--color-primary-s) + 58%),
    calc(var(--color-primary-l) - 20%),
    1
  );
}

.top-offer__title span {
  display: block;
  white-space: nowrap;
}

.top-offer__title span:nth-child(1) {
  position: relative;
}

.top-offer__title span:nth-child(1)::before {
  content: '';
  position: absolute;
  top: -30px;
  left: 280px;
  display: block;
  width: calc(10px * 7.5);
  height: calc(10px * 7.5);
  background: url(../assets/img/warranty.png) 0 0 / cover no-repeat;
}

.top-offer__subtitle {
  margin: calc(10px * 3) 0 0;
  font-family: 'Noto Serif', sans-serif;
  font-size: calc(10px * 2.8);
  font-weight: 400;
  line-height: 1.4;
  color: #030303;
}

.top-offer__list {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: baseline;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.top-offer__item {
  margin: calc(10px * 3.5) 0 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
}

.top-offer__icon {
  margin: calc(10px * 0.5) calc(10px * 1.2) 0 0;
}

.top-offer__text {
  font-size: 16px;
  line-height: 1.6;
  max-width: 225px;
}

.top-image {
  width: 60%;
}

.top-features {
  margin: calc(10px * 4) 0 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: stretch;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.top-features__item {
  min-width: 366px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  padding: calc(10px * 2.6) calc(10px * 3) calc(10px * 2.6) calc(10px * 3.2);
  background: #f2f7e8;
  border-radius: 5px;
  width: 30%;
}

.top-features__item:nth-last-child(1) {
  padding-right: calc(10px * 3);
}

.top-features__icon {
  margin: 0 calc(10px * 3.2) 0 0;
}

.top-features__text {
  font-size: calc(10px * 1.5);
  line-height: 1.6;
  max-width: 80%;
}

.top-features__text span {
  font-weight: 700;
}

.about {
  margin-bottom: calc(10px * 30.5);
  position: relative;
  background: #e2edc9;
}

.about .decor-img {
  position: absolute;
  width: 340px;
  top: -85px;
  left: -80px;
}

.about-wrapper {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: calc(10px * 10) 0 0;
}

.about-title {
  font-family: 'Noto Serif', sans-serif;
  font-size: calc(10px * 4);
  font-weight: 400;
  line-height: 1.3;
  text-align: center;
  color: #030303;
}

.about-title span {
  color: #43a343;
}

.about-desc {
  margin: calc(10px * 2.5) 0 calc(10px * 3);
  font-size: 16px;
  font-weight: 400;
  color: #030303;
}

.about-video {
  margin: 0 0 -200px;
  border-radius: 14px 14px;
  overflow: hidden;
  max-width: 715px;
}

.about-video video {
  display: block;
  cursor: pointer;
  height: 100%;
  width: 100%;
}

.services {
  overflow-x: hidden;
}

.services-content {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: baseline;
  align-items: baseline;
}

.services-content__title {
  font-family: 'Noto Serif', sans-serif;
  font-size: calc(10px * 7);
  font-weight: 400;
  line-height: 1.4;
  color: #030303;
  text-align: left;
}

.services-content__title span {
  color: hsla(
    var(--color-primary-h),
    var(--color-primary-s),
    var(--color-primary-l),
    1
  );
}

.services-content__title.title--mobile {
  display: none;
}

.services-wrapper {
  position: relative;
  width: 50%;
}

.services-wrapper:nth-child(1) {
  width: 40%;
}

.services-wrapper:nth-child(2) {
  width: 60%;
}

.services-wrapper:nth-child(2)::before {
  content: '';
  position: absolute;
  top: 0;
  left: 37px;
  display: block;
  width: 1px;
  height: 75%;
  background: rgba(0, 0, 0, 0.2);
}

.services-wrapper .decor-wrap {
  top: 130px;
  left: -56%;
  transform: scale(2);
  z-index: -1;
}

.services-title {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}

.services-title__icon {
  position: relative;
  margin: 0 calc(10px * 3.2) 0 0;
  width: 74px;
  height: 74px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  background: hsla(
    var(--color-primary-h),
    var(--color-primary-s),
    var(--color-primary-l),
    1
  );
  border-radius: 50%;
  box-shadow: 0 1px 0 14px #fff;
}

.services-title__txt {
  font-size: calc(10px * 2.4);
  font-weight: 700;
  color: #030303;
}

.services-list {
  margin: 0 0 calc(10px * 6.4);
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 0 0 0 calc(10px * 10);
}

.services-item {
  margin: 0 calc(10px * 1.7) calc(10px * 1.7) 0;
  width: calc(10px * 30);
  background: rgba(226, 237, 201, 0.5);
  border-radius: 5px;
}

.services-item__title {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  font-size: 15px;
  font-weight: 600;
  text-align: left;
  color: #030303;
}

.services-item__title::before {
  content: '';
  margin: 0 calc(10px * 1.6) 0 0;
  display: block;
  width: 9px;
  height: 9px;
  background: hsla(
    var(--color-primary-h),
    var(--color-primary-s),
    var(--color-primary-l),
    1
  );
}

.services-item.last .services-item__title::before {
  width: 10px;
}

.services-btn {
  width: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: justify;
  justify-content: space-between;
  height: 100%;
  padding: calc(10px * 1.5) calc(10px * 2);
}

.services-btn .icon-arrow {
  fill: #44a543;
}

.services-btn:hover {
  background: #44a244;
  border-radius: 5px;
}

.services-btn:hover .services-item__title {
  color: #fff;
}

.services-btn:hover .services-item__title::before {
  background: #eef5e0;
}

.services-btn:hover .icon-arrow {
  fill: #fff;
}

.advantages {
  position: relative;
  background: #e2edc9;
}

.advantages .decor-img {
  position: absolute;
  width: auto;
  top: -150px;
  left: calc(10px * -6.1);
}

.advantages-content {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-direction: column;
  flex-direction: column;
  padding-top: calc(10px * 11);
  padding-bottom: calc(10px * 11);
}

.advantages-title {
  font-family: 'Noto Serif', sans-serif;
  font-size: calc(10px * 5);
  font-weight: 400;
  text-align: center;
  color: #030303;
}

.advantages-title span {
  color: hsla(
    var(--color-primary-h),
    var(--color-primary-s),
    var(--color-primary-l),
    1
  );
}

.advantages-list {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.advantages-item {
  margin: calc(10px * 6.4) 0 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 30%;
  min-height: 222px;
  background: #e2edc9;
}

.advantages-item__icon {
  position: relative;
  margin: 0;
  width: 100px;
  height: 100px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  background: hsla(
    var(--color-primary-h),
    var(--color-primary-s),
    var(--color-primary-l),
    1
  );
  border-radius: 50%;
  box-shadow: none;
}

.advantages-item__desc {
  margin: calc(10px * 2.4) 0 0;
  width: 75%;
  font-size: calc(10px * 1.5);
  text-align: center;
  line-height: 1.6;
}

.advantages-item__desc span {
  font-weight: 700;
}

.international-content {
  position: relative;
  padding-top: calc(10px * 10);
  padding-bottom: calc(10px * 10);
  padding-right: 0;
}

.international-title {
  position: relative;
  text-align: center;
  z-index: 1;
}

.international-title span {
  color: hsla(
    var(--color-primary-h),
    var(--color-primary-s),
    var(--color-primary-l),
    1
  );
}

.international-wrapper {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 144px;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.international-wrapper.wrapper-ukraine {
  margin-top: 200px;
}

.international-wrapper.wrapper-ukraine .international-desc {
  padding-left: calc(10px * 6.6);
}

.international-desc {
  position: relative;
  width: 50%;
  z-index: 1;
}

.international-img__mask {
  position: relative;
  width: 50%;
  z-index: -1;
}

.international-img__mask.mask--europe {
  min-height: 170px;
}

.international-img__mask.mask--ukraine {
  min-height: 460px;
}

.international-img--europe {
  width: 66%;
  height: 265%;
  position: absolute;
  background: url(../assets/img/europe-bg.png) 0 0 / cover no-repeat;
  top: -75%;
  left: calc(100% - 66%);
  overflow-x: hidden;
}

.international-img--europe .tomato-box {
  width: 50%;
  position: absolute;
  top: calc(10% - 20px);
  left: 490px;
}

.international-img__message {
  top: 265px;
  left: 260px;
}

.international-img__message .message-text {
  text-align: center;
  font-size: 13px;
  line-height: 1.6;
}

.international-img--ukraine {
  width: 66%;
  height: 92%;
  position: absolute;
  background: url(../assets/img/ukraine-bg__map.png) 0 0/75% no-repeat;
  top: 8%;
  left: 0;
}

.international-img--ukraine .shelf {
  width: 76%;
  position: absolute;
  top: -55%;
  left: -16%;
}

.international-text {
  font-family: 'Noto Serif', sans-serif;
  font-size: calc(10px * 4);
  text-align: left;
  line-height: 1.3;
  color: #030303;
}

.international-text span {
  color: hsla(
    var(--color-primary-h),
    var(--color-primary-s),
    var(--color-primary-l),
    1
  );
}

.international-warranty {
  margin: calc(10px * 3.3) 0 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}

.international-warranty__text {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: calc(10px * 1.5);
  line-height: 1.6;
}

.international-warranty__text.mark::before {
  content: '';
  display: block;
  width: 58px;
  height: 50px;
  margin-right: calc(10px * 1.8);
  background: url(data:image/png;base64,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)
    0 0 / cover no-repeat;
}

.international-warranty__text span {
  text-align: left;
}

.international-warranty__text span br:nth-of-type(2) {
  display: none;
}

.international-offer {
  max-width: 1118px;
  margin: calc(10px * 10.2) auto 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: calc(10px * 5) calc(10px * 11.5);
  background: #e5eecd;
  border-radius: 2px;
}

.international-offer__title {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: baseline;
  align-items: baseline;
  -ms-flex-direction: column;
  flex-direction: column;
}

.international-offer__title span {
  line-height: 1.4;
  color: #030303;
}

.international-offer__title span.title-wrap {
  font-family: 'Noto Serif', sans-serif;
  font-size: calc(10px * 2.8);
  font-weight: 700;
}

.international-offer__title span.txt-wrap {
  font-size: calc(10px * 1.5);
}

.international-offer__title span.txt-wrap span:nth-child(1) {
  display: none;
}

.international-offer__btn {
  width: 232px;
  height: 56px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  line-height: 1.8;
  text-align: center;
}

.international-offer__btn:hover {
  color: #fff;
  background: hsla(
    var(--color-primary-h),
    var(--color-primary-s),
    var(--color-primary-l),
    1
  );
  box-shadow: 2px 4px 53px 17px rgba(67, 163, 67, 0.41);
}

.partners-content {
  padding-top: calc(10px * 10);
  padding-bottom: calc(10px * 10);
}

.partners-title {
  line-height: 1.3;
  text-align: center;
}

.partners-title span:nth-child(2) {
  color: hsla(
    var(--color-primary-h),
    var(--color-primary-s),
    var(--color-primary-l),
    1
  );
}

.partners-list {
  margin: calc(10px * 6.3) auto 0;
  max-width: 1100px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.partners-item {
  margin-bottom: calc(10px * 3.6);
  width: 25%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.partners-item:nth-of-type(1) {
  -ms-flex-pack: center;
  justify-content: center;
}

.partners-item:nth-of-type(2),
.partners-item:nth-of-type(3),
.partners-item:nth-of-type(4),
.partners-item:nth-of-type(5) {
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.partners-item:nth-of-type(6),
.partners-item:nth-of-type(7),
.partners-item:nth-of-type(8) {
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.partners-item__logo {
  width: 55%;
}

.partners-item__logo.logo-atb {
  width: 40%;
}

.partners-item__logo.logo-varus {
  width: 77%;
}

.partners-item__logo.logo-zhivorost {
  width: 70%;
}

.partners-item__logo.logo-biocontrol {
  width: 75%;
}

.feedback {
  position: relative;
  padding-top: calc(10px * 14.2);
  padding-bottom: calc(10px * 10.8);
  background: url(../assets/img/wood-bg2.jpg) no-repeat 0 0 / cover;
}

.feedback .decor-img {
  position: absolute;
  width: 25%;
  top: calc(10px * 5);
  left: calc(10px * -20);
}

.feedback-content {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: space-around;
}

.feedback-title {
  font-family: 'Noto Serif', sans-serif;
  font-weight: 700;
  font-size: calc(10px * 5);
  letter-spacing: 1px;
  line-height: 1.2;
  color: #545454;
}

.feedback-title span {
  font-size: calc(10px * 7);
  line-height: 1.4;
  color: hsla(
    var(--color-primary-h),
    var(--color-primary-s),
    var(--color-primary-l),
    1
  );
}

.feedback-list {
  margin: calc(10px * 4.2) 0 0;
}

.feedback-item {
  margin: 0 0 calc(10px * 2);
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  padding-left: 40px;
}

.feedback-item__icon {
  display: block;
  left: 0;
  position: absolute;
}

.feedback-item__title {
  font-size: calc(10px * 1.8);
}

.feedback-form {
  max-width: 505px;
  min-height: 563px;
  padding: calc(10px * 6.2) calc(10px * 8.6) calc(10px * 7.2);
  background: #e2edc9;
  border-radius: 2px;
}

.feedback-form fieldset {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
}

.feedback-form fieldset legend {
  display: block;
  margin: 0 0 calc(10px * 1.4);
  font-family: 'Noto Serif', sans-serif;
  font-size: 28px;
  font-weight: 600;
  text-align: center;
  line-height: 1.4;
  color: #030303;
}

.feedback-form input {
  max-width: 333px;
  width: 100%;
  height: 54px;
  padding: 15px 3px 15px 56px;
  font-size: 15px;
  color: #545454;
  border: 0;
  border-radius: 2px;
  background: #fff;
}
.feedback-form .input_p {
  position: relative;
}
.feedback-form .input_p:before {
  background: url(../assets/img/icons-sprite.png) no-repeat;
  position: absolute;
  left: 0px;
  top: 0;
  bottom: 0;
  margin: auto;
  content: '';
  width: 55px;
  height: 54px;
  display: block;
}
.feedback-form .user-name_p:before {
  background-position: -21px -974px;
}

.feedback-form .user-phone_p:before {
  background-position: -21px -1088px;
}

.feedback-form .user-email_p:before {
  background-position: -21px -1028px;
}

.feedback-form .user-region_p:before {
  background: url(../assets/img/Group.svg) no-repeat;
  background-position: center, center;
}

.feedback-form p {
  margin: 0 0 20px;
}

.feedback-form p:last-of-type {
  margin: 0;
}

.feedback-form__desc {
  margin: 0 0 calc(10px * 2.6);
  font-size: 15px;
  font-weight: 400;
  text-align: center;
  line-height: 1.6;
  color: #545454;
}

.feedback-form__btn {
  width: 189px;
  height: 56px;
  margin: 34px auto 0;
  font-size: 15px;
}

.feedback-form__btn:hover {
  color: #fff;
  background: hsla(
    var(--color-primary-h),
    var(--color-primary-s),
    var(--color-primary-l),
    1
  );
  box-shadow: 2px 4px 53px 17px rgba(67, 163, 67, 0.41);
}

input:valid {
  border: 1px solid
    hsla(
      var(--color-primary-h),
      var(--color-primary-s),
      var(--color-primary-l),
      1
    );
}

.form--error input:invalid {
  border: 1px solid red;
}

.contacts-content {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: baseline;
  align-items: baseline;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  padding-top: calc(10px * 15);
  padding-bottom: calc(10px * 10);
}

.contacts-wrapper {
  position: relative;
  width: 50%;
}

.contacts-wrapper:nth-of-type(1) {
  width: 40%;
}

.contacts-title {
  text-align: left;
}

.contacts-title span {
  color: hsla(
    var(--color-primary-h),
    var(--color-primary-s),
    var(--color-primary-l),
    1
  );
}

.contacts-list {
  margin: calc(10px * 6) 0 calc(10px * 6.5);
}

.contacts-item {
  margin-bottom: 26px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}

/*.contacts-item:first-of-type {*/
/*	margin-bottom: 26px*/
/*}*/

.contacts-item__phone {
  margin: 0 0 0 calc(10px * 2);
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: baseline;
  align-items: baseline;
  -ms-flex-direction: column;
  flex-direction: column;
}

.contacts-item__phone span {
  font-size: calc(10px * 1.5);
  line-height: 1.6;
}

.contacts-item__phone a {
  font-size: calc(10px * 3);
  color: #545454;
  transition: 0.5s;
}

.contacts-item__phone a:hover {
  color: hsla(
    var(--color-primary-h),
    var(--color-primary-s),
    var(--color-primary-l),
    1
  );
}

.contacts-terminals {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}

.contacts-terminals__logo {
  width: 63px;
  height: 65px;
  margin-right: 18px;
}

.contacts-terminals__text {
  margin-top: 15px;
  max-width: 280px;
  font-size: 15px;
  text-align: left;
  line-height: 1.5;
  color: #030303;
}

.contacts-map__mask {
  position: relative;
  width: 100%;
  z-index: -1;
  min-height: 380px;
}

.contacts-map__img {
  top: 15%;
  left: 0;
  width: 100%;
  height: 90%;
  position: absolute;
  background: url(../assets/img/contacts-map.png) left center/100% no-repeat;
  overflow-x: hidden;
}

.contacts-map__message {
  max-width: 276px;
  padding: 10px calc(10px * 2.4);
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: baseline;
  align-items: baseline;
  border-radius: 7px;
}

.contacts-map__message::before {
  content: '';
  margin-right: 12px;
  display: block;
  width: 7px;
  height: 7px;
  background: hsla(
    var(--color-primary-h),
    var(--color-primary-s),
    var(--color-primary-l),
    1
  );
  border-radius: 1px;
}

.contacts-map__message .message-text {
  font-size: 14px;
  white-space: nowrap;
}

.contacts-map__message .message-text span {
  display: block;
  text-align: left;
}

.contacts-map__message .message-text .message-title {
  font-weight: 700;
  line-height: 1.6;
}

.contacts-map__message {
  min-width: 276px;
  top: 69%;
  left: calc(100% - 374px);
}

/* .contacts-map__message:nth-last-of-type(3) {
  min-width: 276px;
  top: 45%;
  left: calc(100% - 500px);
}

.contacts-map__message:nth-last-of-type(2) {
  top: 88%;
  left: calc(100% - 410px);
}

.contacts-map__message:nth-last-of-type(1) {
  top: 57%;
  left: calc(100% - 210px);
} */

.social {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}

.social-item {
  margin: 0 calc(10px * 2.4) 0 0;
}

.social-item.icon-email {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}

.social-item.icon-email .social-link {
  margin: 0 calc(10px * 1.2) 0 0;
}

.social-item.icon-email .mail-link {
  margin-bottom: 3px;
  display: block;
  font-size: calc(10px * 1.5);
  line-height: 1.6;
  color: #030303;
  transition: 0.5s;
}

.social-item.icon-email .mail-link:hover {
  color: hsla(
    var(--color-primary-h),
    var(--color-primary-s),
    var(--color-primary-l),
    1
  );
}

.social-link {
  display: block;
}

.social-link:hover .social-icon {
  fill: hsla(
    var(--color-primary-h),
    var(--color-primary-s),
    var(--color-primary-l),
    1
  );
}

.social-icon {
  fill: #545454;
}

.footer {
  position: relative;
  background: #006100;
  padding-top: calc(10px * 2.4);
}

.footer-content {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-direction: column;
  flex-direction: column;
}

.footer-wrapper {
  margin: 0 0 calc(10px * 3);
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}

.footer-logo {
  width: 53px;
  height: 55px;
}

.footer-text {
  margin: calc(10px * 1.5) 0 0 calc(10px * 2);
  max-width: 244px;
  font-size: calc(10px * 1.2);
  line-height: 1.6;
  color: #e0e0e0;
}
.footer-text-phone {
  /* max-width: 244px; */
  text-align: center;
  font-size: 16px;
  line-height: 1.6;
  color: #e0e0e0;
  margin-bottom: 16px;
  text-decoration: none;
  transition: all 0.25s ease-in-out;
}
.footer-text-phone:hover {
  text-decoration: underline;
}

.footer-copyright {
  font-size: calc(10px * 1.1);
  color: rgba(224, 224, 224, 0.8);
}

.loader {
  display: none;
  position: fixed;
  top: 35%;
  width: 200px;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 5;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(36, 36, 36, 0.72);
  visibility: hidden;
  z-index: 3;
}

.modal {
  position: fixed;
  top: 25%;
  left: 0;
  right: 0;
  margin: auto;
  max-width: 935px;
  min-height: 387px;
  padding: 22px 0 22px 48px;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-align: start;
  align-items: flex-start;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 8px 10px -5px #b8b8b8;
  z-index: 4;
  display: none;
  visibility: hidden;
  opacity: 0;
}

.modal-close {
  position: absolute;
  top: 4%;
  left: 95%;
  width: 18px;
  height: 18px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-pack: justify;
  justify-content: space-between;
  cursor: pointer;
}

.modal-close__line {
  display: block;
  width: 25px;
  height: 3px;
  border-radius: 5px;
  background: #545454;
}

.modal-close__line:nth-child(2) {
  transform: rotate(45deg) translate(5px, 5px);
}

.modal-close__line:nth-child(3) {
  transform: rotate(135deg) translate(-5px, 6px);
}

.modal-wrapper {
  position: relative;
  width: 50%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: baseline;
  align-items: baseline;
  -ms-flex-direction: column;
  flex-direction: column;
}

.modal-logo {
  width: 37px;
  height: 39px;
  margin-bottom: 45px;
}

.modal-title {
  margin-bottom: 32px;
  font-size: 32px;
  line-height: 1.3;
  color: hsla(
    var(--color-primary-h),
    var(--color-primary-s),
    var(--color-primary-l),
    1
  );
}

.modal-desc {
  font-size: 15px;
  line-height: 1.6;
  color: #030303;
}

.thanks {
  max-width: 430px;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 22px 48px;
}
.thanks .modal-wrapper {
  width: 100%;
  -ms-flex-align: center;
  align-items: center;
}
.thanks .modal-title,
.thanks .modal-desc {
  text-align: center;
}
.thanks .modal-close {
  left: 91%;
}

@media (max-width: 1300px) {
  .top-offer__list {
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-align: baseline;
    align-items: baseline;
  }
}
@media screen and (max-width: 1180px) {
  .top-features {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .top-features__item {
    margin: 10px;
  }
  .advantages-item:nth-last-of-type(1) .advantages-item__desc {
    width: 90%;
  }
}

@media screen and (max-width: 1024px) {
  .top-offer__subtitle br {
    display: none;
  }
  .international-img__message {
    top: calc(100% - 390px);
    left: calc(100% - 400px);
  }
  .international-img--europe .tomato-box {
    width: 60%;
    position: absolute;
    top: calc(10% - 10px);
    left: 437px;
  }
  .advantages-item__desc {
    width: 90%;
  }
}

@media screen and (max-width: 1090px) {
  .header-logo__txt {
    display: none;
  }
}

@media screen and (max-width: 980px) {
  .header-logo__txt {
    display: -ms-flexbox;
    display: flex;
  }
  .international-title {
    display: none;
  }
  .top-wrapper {
    margin-top: 60px;
  }
  .header-nav__lang {
    margin-top: 5px;
  }
  .header-nav {
    margin: 10px;
  }
  .top-offer__text {
    max-width: 240px;
  }
  .about .decor-img {
    left: -90px;
  }
  .header-nav__list {
    visibility: hidden;
    position: fixed;
    top: 0.2rem;
    left: 0.2rem;
    width: 98%;
    -ms-flex-align: start;
    align-items: flex-start;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: calc(10px * 1.5) calc(10px * 3) calc(10px * 3) calc(10px * 1.5);
    background: hsla(
      var(--color-primary-h),
      calc(var(--color-primary-s) + 58%),
      calc(var(--color-primary-l) - 20%),
      1
    );
    box-shadow: 0 4px 17px 4px rgba(0, 0, 0, 0.25);
    z-index: 1;
  }
  .header-nav__list::after {
    display: none;
  }
  .header-nav__item {
    margin: 0 0 calc(10px * 2.4);
    padding: 0 0 0 calc(10px * 1.3);
  }
  .header-nav__item--logo {
    display: block;
    margin: 0 0 calc(10px * 4.5);
    padding: 0 0 0 calc(10px * 1.3);
  }
  .header-nav__item--title {
    font-size: calc(10px * 1.5);
    color: #fff;
  }
  .header-nav__item:nth-child(2) .header-nav__item--title {
    font-size: calc(10px * 3.2);
  }
  .header-nav__item:nth-child(3) .header-nav__item--title {
    font-size: calc(10px * 2);
  }
  .header-nav__item--btn {
    display: block;
    width: 100%;
    padding: calc(10px * 2.8) 0 0 calc(10px * 1.3);
    border-top: 2px solid #71b464;
  }
  .header-nav__item--btn a {
    font-size: calc(10px * 2.4);
    color: #fff;
  }
  .header-nav__btn {
    display: none;
  }
  .burger {
    width: 24px;
    height: 18px;
    padding: 0;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-pack: justify;
    justify-content: space-between;
    background: 0 0;
    border: 0;
    position: relative;
    margin: calc(10px * 0.6) 0 0;
    transition: 0.9s cubic-bezier(0.8, 0, 0.33, 1);
    z-index: 2;
  }
  .burger:hover {
    background: 0 0;
  }
  .burger:active,
  .burger:focus {
    background: 0 0;
    box-shadow: none;
  }
  .burger-line {
    width: 100%;
    height: 0.1rem;
    min-height: 3px;
    margin: 0;
    display: block;
    font-size: 0;
    background: #454545;
    border-radius: 0.5em;
    transition: 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
  }
  .dropdown-list {
    top: 114%;
    right: 30%;
  }
  .dropdown-item {
    width: 2rem;
    padding: 0.5rem;
  }
  .dropdown-item2 {
    padding-top: 0;
  }
  .dropdown-item--title {
    font-size: 12px;
  }
  .top-wrapper {
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .top-offer {
    width: 100%;
    -ms-flex-order: 1;
    order: 1;
  }
  .top-offer__subtitle,
  .top-offer__title {
    text-align: center;
  }
  .top-offer__subtitle span:nth-child(1)::before,
  .top-offer__title span:nth-child(1)::before {
    left: 67%;
  }
  .top-offer__subtitle br,
  .top-offer__title br {
    display: inline;
  }
  .top-offer__list {
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }
  .top-features {
    width: 100%;
  }
  .top-features__item {
    margin: calc(10px * 2);
  }

  .advantages {
    background: #fff;
  }
  .advantages-content {
    padding-top: 50px;
  }
  .advantages-title {
    margin: 0 0 36px;
  }
  .advantages-item {
    min-width: 340px;
    min-height: 150px;
    padding: calc(10px * 3);
  }
  .advantages-item__icon {
    margin: 0;
  }
  .advantages-item__desc {
    width: 100%;
    font-size: 15px;
  }
  .advantages-item__desc br {
    display: none;
  }

  .international-content {
    padding-left: 0;
    padding-top: 0;
  }
  .international-desc,
  .international-title {
    width: 96%;
    margin-left: auto;
    margin-right: auto;
  }
  .international-title {
    margin-bottom: 56px;
  }
  .international-wrapper {
    margin-top: 0px;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .international-wrapper.wrapper-ukraine .international-desc {
    padding-left: 0;
  }
  .international-text {
    text-align: center;
  }
  .international-warranty {
    -ms-flex-pack: center;
    justify-content: center;
  }
  .international-warranty__text:nth-last-of-type(1) {
    text-align: center;
  }
  .international-warranty__text span span {
    font-weight: 600;
  }
  .international-img__mask {
    width: 100%;
  }
  .international-img__mask.mask--europe {
    min-height: 200px;
  }
  .international-img__mask.mask--ukraine {
    min-height: 200px;
    -ms-flex-order: 1;
    order: 1;
  }
  .international-img--europe,
  .international-img--ukraine {
    top: 35%;
    left: 0;
    height: 100%;
    width: 100%;
    background-position: center;
    background-size: contain;
  }
  .international-img--europe .tomato-box,
  .international-img--ukraine .tomato-box {
    left: unset;
    right: -50px;
    width: 12rem;
  }
  .international-img--ukraine {
    top: 45%;
    background-size: 510px;
  }
  .international-img--ukraine .shelf {
    top: 0;
    left: calc(100vw - 25rem);
    width: 12rem;
  }
  .international-img__message {
    top: 34%;
    left: calc(100vw - 20rem);
  }
  .international-offer {
    margin-top: 190px;
    max-width: 330px;
    padding: 55px 50px;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .international-offer__title {
    -ms-flex-align: center;
    align-items: center;
  }
  .international-offer__title span {
    text-align: center;
  }
  .international-offer__title span.title-wrap {
    margin-bottom: 16px;
    font-size: 28px;
  }
  .international-offer__title span.title-wrap span:nth-child(2) {
    display: none;
  }
  .international-offer__title span.txt-wrap {
    margin-bottom: 40px;
    max-width: 470px;
    font-size: 15px;
  }
  .international-offer__title span.txt-wrap span:nth-child(1) {
    display: inline;
  }
  .international-offer__btn {
    font-size: 15px;
  }
  .partners-content {
    padding-top: 0;
  }
  .feedback {
    padding-top: 70px;
    background: url(../assets/img/wood-bg2.jpg);
  }
  .feedback .decor-img {
    width: 45%;
  }
  .feedback-content {
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .feedback-title {
    text-align: center;
    color: #030303;
  }
  .feedback-wrapper {
    width: 100%;
  }
  .feedback-item {
    -ms-flex-direction: column;
    flex-direction: column;
    max-width: 150px;
    margin: auto;
    align-items: baseline;
    padding: 10px 0 10px 40px;
  }
  .feedback-item__title {
    font-size: 15px;
  }
  .feedback-item__icon {
    top: 0;
    bottom: 0;
    margin: auto;
  }
  .feedback-form {
    height: unset;
    margin-top: 40px;
    margin-left: auto;
    margin-right: auto;
    padding: 40px 15px 46px;
  }
  .top-features__item:nth-last-child(1) {
    padding-right: 0;
  }
  .feedback-form fieldset legend {
    margin-bottom: 32px;
  }
  .feedback-form input {
    max-width: unset;
  }
  .feedback-form__desc {
    font-weight: 400;
  }
  .contacts-content {
    padding-top: 70px;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-align: center;
    align-items: center;
  }
  .contacts-wrapper,
  .contacts-wrapper:nth-of-type(1) {
    width: 100%;
  }
  .contacts-title {
    text-align: center;
  }
  .contacts-list {
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
  .contacts-item {
    margin-bottom: 32px;
    -ms-flex-pack: center;
    /*justify-content: center*/
  }
  .contacts-item__icon {
    width: 45px;
    height: 45px;
  }
  .contacts-terminals {
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-align: end;
    align-items: flex-end;
  }
  .contacts-terminals__logo {
    margin-right: 0;
  }
  .contacts-terminals__text {
    text-align: right;
  }
  .contacts-map__img {
    background-size: contain;
    background-position: center;
  }
  .contacts-map__message {
    left: 40%;
  }
  /* .contacts-map__message:nth-last-of-type(3) {
    left: 33%;
  } */
  .contacts-map__message:nth-last-of-type(1) {
    top: 67%;
    left: 44%;
  }
  .social {
    -ms-flex-pack: center;
    justify-content: center;
  }
  .footer-copyright {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-direction: column;
    flex-direction: column;
    font-size: 11px;
  }
  .footer-copyright::before {
    content: '';
    display: block;
    width: 100%;
    height: 2px;
    margin-bottom: 23px;
    background: rgba(226, 237, 201, 0.2);
  }
  .scroll .header-nav__lang {
    margin-top: 5px;
  }
  .modal {
    top: 15%;
    max-width: 460px;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 50px 22px;
  }
  .modal-logo {
    display: none;
  }
  .modal-wrapper {
    width: unset;
    -ms-flex-align: center;
    align-items: center;
  }
  .modal-desc,
  .modal-title {
    text-align: center;
  }
  .modal-close {
    left: 90%;
  }
  .splide__container {
    position: relative;
    box-sizing: border-box;
  }
  .splide__list {
    margin: 0 !important;
    padding: 0 !important;
    width: max-content;
    will-change: transform;
  }
  .splide.is-active .splide__list {
    display: -ms-flexbox;
    display: flex;
  }
  .splide__pagination {
    display: -ms-inline-flexbox;
    display: inline-flex;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 0;
  }
  .splide__pagination li {
    list-style-type: none;
    display: inline-block;
    line-height: 1;
    margin: 0;
  }
  .splide {
    visibility: hidden;
    position: relative;
    outline: 0;
  }
  .splide__slide {
    position: relative;
    outline: 0;
    box-sizing: border-box;
    list-style-type: none !important;
    margin: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
  }
  .splide__slide img {
    vertical-align: bottom;
  }
  .splide__slider {
    position: relative;
  }
  .splide__spinner {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    display: inline-block;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid #999;
    border-left-color: transparent;
    animation: 1s linear infinite splide-loading;
  }
  .splide__track {
    position: relative;
    z-index: 0;
    overflow: hidden;
  }
  .splide--draggable > .splide__track > .splide__list > .splide__slide {
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }
  .splide--fade > .splide__track > .splide__list {
    display: block;
  }
  .splide--fade > .splide__track > .splide__list > .splide__slide {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    opacity: 0;
  }
  .splide--fade > .splide__track > .splide__list > .splide__slide.is-active {
    position: relative;
    z-index: 1;
    opacity: 1;
  }
  .splide--rtl {
    direction: rtl;
  }
  .splide__track > .splide__list {
    display: block;
  }
  .splide__track > .splide__list .splide__pagination {
    width: auto;
  }
}

@media screen and (max-width: 830px) {
  .top-features__item {
    min-width: unset;
    width: 94%;
  }
  .about-video {
    width: 93%;
  }
  .about-video video {
    width: 100%;
    height: auto;
    margin: 0 auto;
  }
  .services-content {
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .services-content__title {
    font-size: calc(10px * 5);
  }
  .services-content__title.title--desktop {
    display: none;
  }
  .services-content__title.title--mobile {
    width: 80%;
    display: block;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 72px;
    text-align: center;
  }
  .services-wrapper:nth-child(1),
  .services-wrapper:nth-child(2) {
    width: 100%;
  }
  .services-wrapper:nth-child(1)::before,
  .services-wrapper:nth-child(2)::before {
    display: none;
  }
  .services-wrapper .decor-wrap {
    top: 0;
    left: calc(10px * 51.9);
    z-index: -1;
    transform: rotate(41deg);
    width: 60%;
  }
  .services-title {
    -ms-flex-direction: column;
    flex-direction: column;
    margin-bottom: 25px;
  }
  .services-title__icon {
    margin-bottom: 15px;
    margin-right: 0;
    box-shadow: none;
  }
  .services-list {
    padding: 0;
  }
  .services-item {
    margin-right: 0;
    width: 100%;
  }
  .services-item.last .services-item__title::before {
    width: 9px;
  }
  .international-img--ukraine .shelf {
    left: calc(100vw - 20rem);
  }
  .partners-list {
    -ms-flex-pack: center;
    justify-content: center;
  }
  .partners-item {
    width: 30%;
  }
  .partners-item:nth-of-type(6),
  .partners-item:nth-of-type(7),
  .partners-item:nth-of-type(8) {
    -ms-flex-pack: center;
    justify-content: center;
  }
}

@media screen and (max-width: 768px) {
  .services-title__txt {
    font-size: 18px;
  }
  .international-desc br {
    display: none;
  }
  .international-text {
    margin-bottom: 30px;
    padding-left: 15%;
    padding-right: 15%;
  }
  .international-offer {
    padding: 45px;
  }
  .international-warranty__text span {
    max-width: 70%;
  }
  .international-offer__title span.title-wrap {
    margin-bottom: 15px;
  }
  .international-offer__title span.txt-wrap {
    margin-bottom: 20px;
  }
  .international-warranty__text {
    font-size: 15px;
  }
  .feedback-title {
    font-weight: 400;
  }
  .feedback-title span {
    font-size: 44px;
  }
  .feedback-title {
    font-size: 34px;
  }
  .feedback-form {
    padding: 40px;
  }
  .feedback-form fieldset legend {
    margin-bottom: 15px;
  }
  .contacts-content {
    padding-left: 0;
  }

  .top-features__item {
    margin-bottom: 0;
  }
  .top {
    padding-bottom: 90px;
  }
  .contacts-wrapper:nth-of-type(1) {
    width: 96%;
    margin-left: auto;
    margin-right: auto;
  }
  .contacts-terminals__text {
    max-width: 240px;
  }
  .contacts-map__img {
    left: -20%;
  }
  /* .contacts-map__message:nth-last-of-type(3) {
    left: 10%;
  }
  .contacts-map__message:nth-last-of-type(2) {
    left: 18%;
  } */
  .contacts-map__message:nth-last-of-type(1) {
    top: 69%;
    left: 26%;
  }
  .about-desc,
  .contacts-item__phone span,
  .services-item__title,
  .social-item.icon-email .mail-link,
  .top-features__text,
  .top-offer__text {
    font-size: 15px;
  }
  .top-offer__text {
    max-width: 240px;
  }
}

@media screen and (max-width: 640px) {
  .contacts-map__message:nth-last-of-type(1) {
    top: 68%;
    left: 25%;
  }
  .about-desc,
  .contacts-item__phone span,
  .services-item__title,
  .social-item.icon-email .mail-link,
  .top-features__text,
  .top-offer__text {
    font-size: 15px;
  }
  .about .decor-img {
    width: 300px;
    top: -50px;
  }
  .about-title br {
    display: none;
  }
}

@media screen and (max-width: 480px) {
  .international-warranty__text span {
    max-width: 100%;
  }
  .international-text {
    padding-left: 0;
    padding-right: 0;
  }
  .social {
    max-width: 300px;
    flex-wrap: wrap;
    margin: auto;
  }
  .social-item {
    margin-right: 10px;
    margin-left: 10px;
  }
  .about .decor-img {
    width: 220px;
    top: -30px;
    left: -70px;
  }
  .advantages .decor-img {
    width: 80px;
    top: -80px;
    left: -25px;
  }
  .about-title br {
    display: none;
  }
  /* .contacts-map__message:nth-last-of-type(2) {
    top: 77%;
  } */
  .contacts-map__message:nth-last-of-type(1) {
    top: 44%;
    left: 9%;
    width: 179px;
  }
  .contacts-map__message .message-text,
  .footer-text {
    font-size: 12px;
  }
  .international-warranty__text span br {
    display: none;
  }
  .international-warranty__text.mark {
    position: relative;
    padding-left: 80px;
  }
  .international-warranty__text.mark::before {
    position: absolute;
    left: 0;
  }
  .top-offer__title {
    font-size: 50px;
  }
  .top-offer__subtitle {
    font-size: 22px;
  }
  .about-title,
  .international-text {
    font-size: 30px;
  }
  .services-content__title.title--mobile,
  .advantages-title,
  .title {
    font-size: 38px;
  }
  .about-wrapper {
    padding-top: 60px;
  }
  .services-btn {
    padding: 18px 20px;
  }
  .services-content__title.title--mobile,
  .advantages-title,
  .title {
    font-size: 30px;
  }
  .top-features__text {
    max-width: 78%;
  }
}
@media (max-width: 400px) {
  .top-offer__subtitle {
    font-size: 20px;
  }
  .top-features__item {
    width: 100%;
    margin: 10px 0;
  }
  .about-video {
    width: 100%;
  }
  .about {
    margin-bottom: 260px;
  }
  .top-offer__title span:nth-child(1)::before {
    width: 60px;
    height: 60px;
    left: 70%;
  }
  .services-content__title.title--mobile {
    margin-bottom: 40px;
  }
  .services-list {
    margin-bottom: 50px;
  }
  .advantages-content {
    padding-top: 0;
  }
  .contacts-item__phone a {
    font-size: 26px;
  }
  .top-image {
    width: 80%;
  }
  .header-logo__txt {
    display: none;
  }
  .partners-content {
    padding-bottom: 70px;
  }
  .feedback-form fieldset legend {
    font-size: 24px;
  }
}
@media screen and (max-width: 360px) {
  .header-logo__txt {
    font-size: 11px;
  }
  .top-features__text {
    max-width: 76%;
  }
  .dropdown-item--title,
  .header-nav__lang--title {
    font-size: 12px;
  }
  .top-features__icon {
    margin-right: 24px;
  }
  .top-features__item {
    padding: 16px;
  }
  .header-nav-item--title {
    font-size: 15px;
  }
  .header-nav-item:nth-child(2) .header-nav__item--title {
    font-size: 32px;
  }
  .header-nav-item:nth-child(3) .header-nav__item--title {
    font-size: 20px;
  }
  .top-offer__title {
    font-size: 50px;
  }
  .top-offer__title span:nth-child(1)::before {
    right: 8%;
  }
  .top-offer__subtitle {
    font-size: 21px;
  }
  .top-offer__list {
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .top-offer__item {
    margin: calc(10px * 2.4) 0 0;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-align: center;
    align-items: center;
  }
  .top-offer__icon {
    margin: 0 0 calc(10px * 1.5);
  }
  .top-offer__text {
    font-size: 15px;
    text-align: center;
  }
  .top-features__text {
    font-size: 15px;
  }
  .about {
    margin-bottom: 200px;
  }
  .about-wrapper {
    padding: 50px 0 90px;
  }
  .about-title,
  .international-offer__title span.title-wrap,
  .feedback-form fieldset legend {
    font-size: 24px;
  }
  .feedback-form fieldset legend {
    margin-bottom: 24px;
  }
  .contacts-content {
    padding-bottom: 0;
  }
  .services-content__title.title--mobile {
    margin-right: auto;
    margin-left: auto;
    font-size: 28px;
  }
  .services-item {
    margin-right: 0;
  }
  .services-item__title {
    font-size: 15px;
  }
  .services-wrapper .decor-wrap {
    top: 0;
    left: calc(10px * 42);
    z-index: -1;
    transform: rotate(29deg);
    width: 84%;
  }
  .advantages-item__icon {
    width: 52px;
    height: 52px;
  }
  .advantages-item__icon .icon {
    width: 25px;
    height: 25px;
  }
  .advantages-item__desc {
    font-size: 15px;
  }

  .international-title {
    font-size: 28px;
    line-height: 1.4;
  }
  .international-text {
    font-size: 22px;
  }
  .international-img--europe {
    top: 15%;
    height: 140%;
    background-position: 90% 75%;
    background-size: 606px;
  }
  .international-img--europe .tomato-box {
    top: 26%;
    right: -35px;
  }
  .international-img__message {
    top: 43%;
    left: 10px;
    width: 181px;
    padding: 5px 15px;
  }
  .international-img__message .message-text {
    font-size: 11px;
  }
  .international-img--ukraine {
    background-position: 75% 0;
  }
  .international-img--ukraine .shelf {
    top: 10%;
    width: 70%;
  }
  .international-warranty {
    margin-top: 24px;
  }
  .international-warranty__text {
    font-size: 15px;
  }
  .international-warranty__text br {
    display: none;
  }
  .international-warranty__text.mark {
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .international-warranty__text.mark:before {
    width: 74px;
    height: 64px;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
  }
  .international-warranty__text.mark span {
    text-align: center;
  }
  .international-warranty__text.mark {
    padding-left: 0;
    padding-top: 80px;
  }

  .international-warranty__text.mark span br:nth-of-type(1) {
    display: none;
  }

  .partners-title {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .partners-item:nth-of-type(6),
  .partners-item:nth-of-type(7),
  .partners-item:nth-of-type(8) {
    -ms-flex-pack: center;
    justify-content: center;
  }
  .feedback .decor-img {
    top: calc(10px * 26);
    left: calc(10px * -13);
  }
  .feedback-title,
  .feedback-title span {
    font-size: 28px;
  }
  .feedback-form {
    height: unset;
    margin-top: 40px;
    margin-left: auto;
    margin-right: auto;
    padding: 40px 15px 46px;
  }
  .feedback {
    padding-bottom: 80px;
  }
  .feedback-form input {
    max-width: unset;
  }
  .feedback-form__desc {
    font-weight: 400;
  }
  .contacts-item__phone a {
    font-size: 24px;
  }
  .contacts-item__phone span {
    font-size: 15px;
  }
  .contacts-item__icon {
    margin-right: 0px;
  }
  .contacts-map__mask {
    min-height: 475px;
  }
  .contacts-map__img {
    top: 5%;
    left: -92%;
    background-size: 113% 89%;
    width: 190%;
  }
  .contacts-map__message::before {
    display: none;
  }
  /* .contacts-map__message:nth-last-of-type(3) {
    top: 42%;
    left: 24%;
    min-width: unset;
    width: 207px;
  }
  .contacts-map__message:nth-last-of-type(2) {
    left: 2%;
    top: 75%;
    min-width: unset;
    width: 197px;
  } */
  .contacts-map__message:nth-last-of-type(1) {
    top: 32%;
    left: 10%;
    width: 179px;
  }
  .mail-link {
    font-size: 13px !important;
  }
}

@media screen and (max-width: 330px) {
  .contacts-item__phone a {
    font-size: 20px;
  }
}

@media screen and (max-width: 320px) {
  .services-content__title.title--mobile {
    font-size: 25px;
  }

  .feedback-form fieldset legend {
    font-size: 24px;
  }

  .contacts-item__icon {
    margin-right: 0;
    width: 35px;
    height: 35px;
  }
  .contacts-map__img {
    background-size: 113% 76%;
  }
  .social-item {
    margin-right: 20px;
  }
  .social-item:nth-last-of-type(1) {
    margin-right: 0;
  }
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  body {
    overflow-x: hidden;
  }
  .top {
    display: block;
  }
}

@media (max-width: 480px) {
  .modal {
    max-width: 320px;
  }
  .modal-title {
    font-size: 24px;
  }
  .international-text br {
    display: none;
  }
  .top-image {
    width: 70%;
  }
}
@media (max-width: 379px) {
  .social {
    flex-wrap: wrap;
  }
  .social-item {
    margin-right: 10px;
    margin-left: 10px;
  }
  .social-item.icon-email .social-link {
    margin-right: 0;
  }
  .mail-link {
    margin-top: 15px;
  }
}
@media (max-width: 360px) {
  .advantages-item__desc {
    padding-right: 10px;
    padding-left: 10px;
  }
  .about-title {
    font-size: 24px;
  }
  .top-offer__subtitle br,
  .top-offer__title br {
    display: none;
  }
}

@media (max-width: 1100px) and (min-width: 980px) {
  .top-offer__subtitle br,
  .top-offer__title br {
    display: none;
  }
}

.lang-en .top-offer__title span:nth-child(1)::before {
  display: none;
}
@media (max-width: 980px) {
  .lang-en .top-offer__item {
    width: 270px;
  }
  .splide__pagination__page {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin: 0 5px;
    background: #e2edc9;
    margin-top: 16px;
  }
  .splide__pagination__page.is-active {
    background: #43a343;
  }
  .top-offer__text br {
    display: none;
  }
}
@media (min-width: 1280px) {
  .feedback-form {
    width: 460px;
  }
}
input:-webkit-autofill,
textarea:-webkit-autofill,
select:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 1000px #fff inset !important;
  /*use inset box-shadow to cover background-color*/
  -webkit-text-fill-color: #545454 !important;
  /*use text fill color to cover font color*/
}

@media (min-width: 1260px) and (min-height: 660px) {
  .top-wrapper {
    margin-top: 4vh;
  }
  .top-image {
    width: 53%;
  }
  .top-features {
    margin-top: 2vh;
  }
}

@media (min-width: 1260px) and (min-height: 740px) {
  .top-wrapper {
    margin-top: 5vh;
  }
  .top-image {
    width: 55%;
  }
  .top-features {
    margin-top: 4vh;
  }
}

@media (min-width: 1260px) and (min-height: 800px) {
  .top-wrapper {
    margin-top: 7vh;
  }
  .top-image {
    width: 57%;
  }
  .top-features {
    margin-top: 4vh;
  }
}
@media (max-width: 1260px) {
  .top-wrapper {
    margin-top: 10vh;
  }
}
