* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --primary: #00af76;
  --secondary: #164e4f;
  --title: #1c1c1c;
  --text: #5a5a5a;
}
html {
  scroll-behavior: smooth;
  font-size: clamp(7.5px, 0.520834vw, 10px);
}
.content {
  max-width: 134rem;
  margin: 0 auto;
  position: relative;
}
.content .content {
  padding: 0;
}
.swiper_box {
  position: relative;
}
.swiper_content {
  max-width: 137rem;
  margin: 0 auto;
  position: relative;
  padding: 1.5rem;
  overflow: hidden;
}
li {
  list-style: none;
}
li.swiper-slide {
  height: auto;
}
a {
  color: inherit;
  cursor: pointer;
  font-size: inherit;
  text-decoration: none;
}
i,
em {
  font-style: normal;
}
input,
button,
textarea {
  border: none;
  outline: none;
  font-family: unset;
  color: var(--title);
  background-color: transparent;
}
select {
  cursor: pointer;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  font-family: unset;
  color: var(--title);
}
textarea {
  resize: none;
}
button,
input[type="submit"] {
  cursor: pointer;
}
input[type="checkbox"] {
  cursor: pointer;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
}
input[type="number"] {
  appearance: textfield;
  -moz-appearance: textfield;
  -webkit-appearance: textfield;
}
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  margin: 0;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
}
table {
  width: 100%;
  border-collapse: collapse;
}
.flex {
  display: flex;
}
.wrap {
  flex-wrap: wrap;
}
.flex1 {
  flex: 1;
}
.flex2 {
  flex: 2;
}
.flex3 {
  flex: 3;
}
.between {
  justify-content: space-between;
}
.center {
  text-align: center;
}
.center p,
.center .desc,
.center h1,
.center h2 {
  margin-left: auto;
  margin-right: auto;
}
.flex_start {
  justify-content: flex-start;
}
.flex_center {
  justify-content: center;
}
.flex_end {
  justify-content: flex-end;
}
.flex_top {
  align-items: flex-start;
}
.flex_middle {
  align-items: center;
}
.flex_bottom {
  align-items: flex-end;
}
.aligncenter {
  margin-left: auto;
  margin-right: auto;
}
.row_reverse {
  flex-direction: row-reverse;
}
body {
  font-size: 1.6rem;
  color: var(--title);
  font-family: 'Plus Jakarta Sans', sans-serif;
  animation: fadeIn 0.4s ease-in forwards;
}
body.fixed {
  overflow: hidden;
  padding-right: 15px;
}
body [data-wpr-lazyrender] {
  content-visibility: unset;
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@media (prefers-reduced-motion: reduce) {
  body {
    animation: none;
  }
}
.only_mobile {
  display: none;
}
.gap {
  gap: 3rem;
}
.grecaptcha-badge {
  visibility: hidden;
}
.img.img_cv {
  overflow: hidden;
}
.img.img_cv img,
.img.img_cv video,
.img.img_cv iframe,
.img.img_cv picture {
  object-fit: cover;
}
.img.img_ct img {
  object-fit: contain;
}
.img.img_ab {
  position: relative;
}
.img.img_ab img,
.img.img_ab video,
.img.img_ab iframe,
.img.img_ab picture {
  position: absolute;
  left: 0;
  top: 0;
}
.img.img_aba {
  position: relative;
}
.img.img_aba::after {
  content: '';
  display: block;
  padding-bottom: var(--h);
}
.img.img_aba img,
.img.img_aba video,
.img.img_aba iframe,
.img.img_aba picture {
  position: absolute;
  left: 0;
  top: 0;
}
.img.img_hv:hover img {
  transform: scale(1.03);
}
.img img,
.img video,
.img iframe,
.img picture {
  width: 100%;
  height: 100%;
  display: block;
  transition: all 0.5s;
  aspect-ratio: inherit;
}
.img_bg {
  position: relative;
  z-index: 2;
}
.img_bg > img,
.img_bg > video,
.img_bg > iframe,
.img_bg > picture {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -2;
}
.img_bg > picture img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.icon.icon_ab {
  position: relative;
  padding-bottom: 100%;
}
.icon.icon_ab img {
  position: absolute;
  left: 0;
  top: 0;
}
.icon img {
  display: block;
  object-fit: contain;
  width: 100%;
  height: 100%;
  transition: all 0.3s;
}
.custom-popup {
  --radius: 0px;
  position: absolute;
  display: flex;
  flex-direction: column;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: var(--radius);
  z-index: 999;
  padding: 8px;
  font-size: var(--font-size, 14px);
  opacity: 0;
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.custom-popup.show {
  opacity: 1;
  transform: scaleY(1);
}
.custom-popup.up {
  transform-origin: bottom;
}
.custom-popup.up .popup-input {
  order: 3;
  margin-bottom: 0;
  margin-top: 8px;
}
.custom-popup.up .popup-options {
  order: 1;
}
.custom-popup.up .popup-empty {
  order: 2;
}
.custom-popup .popup-empty {
  padding: 12px;
  text-align: center;
  color: #999;
}
.custom-popup input.popup-input {
  display: block;
  width: 100%;
  padding: 11px 12px;
  font-size: inherit;
  border: 1px solid #ccc;
  background: #fff;
  color: var(--title);
  margin-bottom: 8px;
  border-radius: calc(var(--radius) - 2px);
  flex-shrink: 0;
}
.custom-popup input.popup-input::placeholder {
  color: #666;
}
.custom-popup input.popup-input:focus {
  border-color: var(--primary);
}
.custom-popup .popup-options {
  flex: 0 1 auto;
  min-height: 0;
  overflow: auto;
  max-height: 50vh;
}
.custom-popup .popup-option {
  padding: 12px;
  margin: 0 0 4px;
  cursor: pointer;
  transition: all 0.15s;
  word-break: break-word;
  border-radius: calc(var(--radius) - 2px);
}
.custom-popup .popup-option:hover,
.custom-popup .popup-option.selected {
  background-color: #f0f0f0;
}
.custom-popup .popup-option:last-child {
  margin-bottom: 0;
}
.tcon em {
  color: var(--primary);
}
.tcon > em {
  font-weight: 600;
  font-size: 1.4rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1.3rem;
  display: inline-block;
  vertical-align: top;
}
.tcon h1 {
  font-weight: 700;
  font-size: 6.2rem;
  line-height: 1.17742;
}
.tcon h2,
.tcon .head_h2 {
  font-weight: 700;
  font-size: 4.8rem;
  line-height: 1.25;
}
.tcon p {
  color: var(--text);
  font-size: 1.8rem;
  line-height: 2.8rem;
}
.tcon.bn > em {
  font-size: 11px;
  font-weight: 400;
  margin-bottom: 1.4rem;
}
.btn {
  display: inline-block;
  vertical-align: top;
  text-align: center;
  transition: all 0.3s;
  cursor: pointer;
  color: #fff;
  font-weight: 500;
  font-size: 1.8rem;
  line-height: 5.4rem;
  padding: 0 3.3rem;
  border-radius: 1rem;
  border: 1px solid var(--primary);
  background-color: var(--primary);
}
.btn:hover {
  border-color: var(--secondary);
  background-color: var(--secondary);
}
.btn.l {
  color: var(--title);
  background-color: transparent;
}
.btn.l.b {
  border-color: #889289;
}
.btn.l:hover {
  color: #fff;
  border-color: var(--secondary);
  background-color: var(--secondary);
}
.btn_line {
  display: inline-block;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s;
  color: #0e191d;
  background-color: transparent;
  border: 1px solid rgba(14, 25, 29, 0.5);
  border-radius: 1rem;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 5.5rem;
  padding: 0 3.3rem;
}
.btn_line:hover {
  background-color: var(--secondary);
  border-color: var(--secondary);
  color: #fff;
}
.btn_line.pm {
  color: var(--title);
  border-color: var(--primary);
  min-width: 16.6rem;
}
.btn_line.pm:hover {
  background-color: var(--primary);
  color: #fff;
}
.btn_a {
  gap: 1.5rem;
  display: inline-flex;
  align-items: center;
  vertical-align: top;
  font-weight: 600;
  font-size: 1.8rem;
  transition: all 0.3s;
}
.btn_a::after {
  content: '';
  display: block;
  width: 1.8rem;
  height: 1.8rem;
  transition: all 0.3s;
  transform: translateY(1px);
  background: url(../img/arrow-l-r.svg) no-repeat center / contain;
}
.btn_a:hover {
  color: var(--primary);
}
.btn_a:hover::after {
  transform: translate(5px, 1px);
}
.swiper_btns {
  gap: 3rem;
  display: flex;
}
.swiper_btns.middle {
  width: 98%;
  max-width: 159.4rem;
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  transform: translate(-50%, -50%);
  pointer-events: none;
  justify-content: space-between;
}
.swiper_btns.middle div {
  pointer-events: auto;
}
.swiper_btns.middle .swiper-button-disabled {
  pointer-events: none;
}
.swiper_btns div {
  cursor: pointer;
  width: 6.2rem;
  height: 6.2rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--primary);
  background-color: var(--primary);
  transition: all 0.3s;
}
.swiper_btns div::after {
  content: '';
  display: block;
  width: 32%;
  height: 32%;
  transition: all 0.3s;
  filter: contrast(0) brightness(2);
  background: url(../img/arrow-l-r.svg) no-repeat center / contain;
}
.swiper_btns div:hover {
  border-color: var(--secondary);
  background-color: var(--secondary);
}
.swiper_btns div:hover::after {
  filter: contrast(0) brightness(2);
}
.swiper_btns .btn_prev::after {
  transform: rotate(180deg);
}
.swiper_btns .swiper-button-disabled {
  pointer-events: none;
  border-color: #a7aba8;
  background-color: transparent;
}
.swiper_btns .swiper-button-disabled::after {
  filter: contrast(0) brightness(0);
}
.swiper_btns:has(.swiper-button-lock) {
  opacity: 0;
  pointer-events: none;
}
div.swiper-pagination.swiper-pagination-bullets {
  position: static;
  gap: 2px;
  display: flex;
}
div.swiper-pagination.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0;
  opacity: 1;
  transition: all 0.3s;
  width: 12px;
  height: 12px;
  background-color: #aaaaaa;
  transform: scale(0.666667);
}
div.swiper-pagination.swiper-pagination-bullets .swiper-pagination-bullet-active {
  background-color: #161616;
  transform: scale(1);
}
.news_list .active .info {
  border-color: var(--primary);
}
.news_list .active .info::after {
  background-color: var(--primary);
}
.news_list a {
  height: 100%;
  display: flex;
  flex-direction: column;
}
.news_list a:hover img {
  transform: scale(1.03);
}
.news_list .img {
  border-radius: 2.3rem;
  padding-bottom: 63.058824%;
}
.news_list .info {
  flex: 1;
  display: flex;
  flex-direction: column;
  transition: all 0.3s;
  border-bottom: 1px solid #d8e2ec;
}
.news_list .info .metas {
  gap: 0 1.4rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  color: #505151;
  font-weight: 500;
  font-size: 1.5rem;
  text-transform: uppercase;
  margin-top: 2.5rem;
}
.news_list .info .metas .cat {
  font-weight: 600;
  font-size: 1.6rem;
}
.news_list .info .metas span {
  gap: 1.4rem;
  display: flex;
  align-items: center;
}
.news_list .info .metas span::after {
  content: '';
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background-color: var(--primary);
}
.news_list .info .metas span:last-child::after {
  display: none;
}
.news_list .info .title {
  font-weight: 600;
  font-size: 2.4rem;
  line-height: 3.4rem;
  margin-top: 1.3rem;
  margin-bottom: auto;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.news_list .info::after {
  content: '';
  display: block;
  width: 100%;
  height: 1px;
  transition: all 0.3s;
  margin-top: 4.4rem;
}
.news_list .btn_a {
  gap: 0.8rem;
  font-size: 1.6rem;
  margin-top: 2rem;
  max-width: max-content;
}
.news_list .btn_a::after {
  width: 1.4rem;
  height: 1.4rem;
}
.pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  margin-top: 6rem;
}
.pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 4.6rem;
  height: 4.6rem;
  padding: 0 1.6rem;
  border-radius: 1rem;
  background-color: #f3f4f6;
  color: #1a1a1a;
  font-weight: 500;
  line-height: 1.5;
  transition: all 0.3s;
}
.pagination .page-numbers:hover {
  background-color: rgba(0, 175, 118, 0.1);
}
.pagination .page-numbers.current {
  font-weight: 600;
  color: #fff;
  background-color: var(--primary);
}
.news_nav {
  padding: 4.7rem 0;
}
.news_nav .flex {
  gap: 2rem 1.94029851%;
}
.news_nav .head {
  width: 18.3rem;
  padding-bottom: 0.4rem;
}
.news_nav .head h2 {
  font-size: 3rem;
  line-height: 1.26667;
  font-weight: 600;
}
.news_nav .logo_svg {
  width: 13rem;
}
.news_nav .nav {
  flex: 1;
  border-bottom: 1px solid #e5e7eb;
  align-self: flex-end;
  padding-bottom: 3.7rem;
  margin-bottom: 0.9rem;
}
.news_nav .nav .nav_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 1.5rem;
}
.news_nav .nav .nav_item {
  display: block;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s;
  font-weight: 500;
  color: #1a1a1a;
  background-color: #f3f4f6;
  border-radius: 1rem;
  line-height: 1.5;
  padding: 0.75em 1.71875em;
  min-width: 8.1875em;
}
.news_nav .nav .nav_item:hover {
  background-color: rgba(0, 175, 118, 0.1);
}
.news_nav .nav .nav_item.active {
  font-weight: 600;
  color: #fff;
  background-color: var(--primary);
}
.news_main {
  padding: 10.1rem 0 8.6rem;
}
.news_main .list {
  margin-top: 5rem;
}
.news_main .list ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem 1.75373134%;
}
.search_banner {
  background-color: #e5f5e8;
}
.search_banner .head {
  max-width: 86rem;
  margin: 0 auto;
  padding: 10rem 0;
}
.search_banner h1 {
  font-size: 4.5rem;
  line-height: 1.24;
  font-weight: 700;
  color: var(--title);
  word-break: break-word;
}
.search_banner h1 span {
  color: var(--primary);
}
.search_banner .head > p {
  max-width: 67.4rem;
  color: #63687a;
  margin: 2rem auto 0;
}
.search_results {
  padding: 10.1rem 0 8.6rem;
}
.search_results .list ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem 1.75373134%;
}
.search_results .image .search_img img {
  object-fit: cover;
}
.search_results .no-results {
  max-width: 67.4rem;
  margin: 0 auto;
}
.search_results .no-results h2 {
  font-size: 3.2rem;
  line-height: 1.3;
  font-weight: 700;
  color: var(--title);
}
.search_results .no-results p {
  color: #63687a;
  margin-top: 1.5rem;
}
.search-form-wrapper {
  margin-top: 3.5rem;
}
.search-form {
  display: flex;
  max-width: 56rem;
  gap: 1.2rem;
  margin: 0 auto;
}
.search-form label {
  flex: 1;
}
.search-form .search-field {
  width: 100%;
  height: 5.2rem;
  font: inherit;
  color: var(--text);
  border-radius: 1rem;
  padding: 0 2rem;
  background-color: #f3f4f6;
  border: 1px solid transparent;
  transition: all 0.3s;
  outline: none;
}
.search-form .search-field:focus {
  background-color: #fff;
  border-color: var(--primary);
}
.search-form .search-submit {
  cursor: pointer;
  height: 5.2rem;
  border: none;
  font: inherit;
  font-weight: 600;
  color: #fff;
  padding: 0 3.2rem;
  border-radius: 1rem;
  background-color: var(--primary);
  transition: all 0.3s;
}
.search-form .search-submit:hover {
  background-color: var(--secondary);
}
.quote_form form {
  gap: 3.2rem 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.quote_form span {
  width: 100%;
}
.quote_form .col2 {
  width: 48.328267%;
}
.quote_form .label {
  cursor: pointer;
  font-weight: 500;
  font-size: 1.8rem;
  max-width: max-content;
  margin-bottom: 1.4rem;
}
.quote_form .label span {
  color: #6b7280;
  font-size: 1.4rem;
}
.quote_form .label i {
  color: var(--primary);
}
.quote_form input,
.quote_form select,
.quote_form textarea {
  width: 100%;
  height: 5.6rem;
  display: block;
  color: var(--title);
  font-weight: 600;
  font-size: 1.6rem;
  transition: all 0.3s;
  border-radius: 1.2rem;
  border: 1px solid #e5e7eb;
  padding: 0 2.2rem;
}
.quote_form input:focus,
.quote_form select:focus,
.quote_form textarea:focus {
  border-color: var(--primary);
}
.quote_form input::placeholder,
.quote_form select::placeholder,
.quote_form textarea::placeholder {
  color: var(--text);
}
.quote_form textarea {
  height: 15rem;
  padding: 1.6rem 2.2rem;
}
.quote_form .wpcf7-checkbox {
  gap: 1.6rem;
  display: flex;
  flex-wrap: wrap;
  padding: 0.4rem 0;
}
.quote_form .wpcf7-checkbox .wpcf7-list-item {
  flex: auto;
  width: auto;
}
.quote_form .wpcf7-checkbox label {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s;
  border-radius: 1.2rem;
  border: 1px solid #f2f3f4;
  background-color: #f2f3f4;
  padding: 1.3rem 0;
}
.quote_form .wpcf7-checkbox label:has(input:checked) {
  color: var(--primary);
  border-color: var(--primary);
  background-color: #f1faf5;
}
.quote_form .wpcf7-checkbox label input {
  display: none;
}
.quote_form .upload {
  padding: 6.382979% 4.863222% 4.863222%;
  text-align: center;
  border-radius: 1.2rem;
  border: 1px dashed #e5e7eb;
  background-color: #fafbfa;
  transition: all 0.3s;
  cursor: pointer;
}
.quote_form .upload:hover {
  border: 1px solid var(--primary);
}
.quote_form .upload::before {
  content: '';
  display: block;
  width: 2rem;
  height: 2rem;
  margin: 0 auto;
  background: url(../img/icon-upload.svg) no-repeat center / contain;
}
.quote_form .upload .title {
  font-weight: 600;
  margin-top: 1.2rem;
}
.quote_form .upload .desc {
  color: #6b7280;
  font-size: 1.3rem;
  margin-top: 0.7rem;
}
.quote_form .upload input {
  display: none;
}
.quote_form .wpcf7-acceptance input[type="checkbox"] {
  padding: 0;
  width: 2.2rem;
  height: 2.2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  border: 1px solid #e5e7eb;
  transition: all 0.3s;
}
.quote_form .wpcf7-acceptance input[type="checkbox"]:checked::after {
  opacity: 1;
}
.quote_form .wpcf7-acceptance input[type="checkbox"]::after {
  content: '';
  width: 80%;
  height: 80%;
  opacity: 0;
  transition: all 0.3s;
  background: url(../img/icon-gou.svg) no-repeat center / contain;
}
.quote_form .wpcf7-acceptance input[type="checkbox"] ~ span {
  width: calc(100% - 3rem);
  color: #444444;
  font-weight: 500;
  line-height: 1.5;
  display: inline-block;
  vertical-align: top;
  padding-left: 1.8rem;
  cursor: pointer;
}
.quote_form .wpcf7-acceptance input[type="checkbox"] ~ span a {
  color: var(--primary);
  transition: all 0.3s;
  text-decoration: underline;
}
.quote_form .wpcf7-acceptance input[type="checkbox"] ~ span a:hover {
  text-decoration-color: transparent;
}
.quote_form input[type="submit"] {
  color: #fff;
  font-weight: 500;
  font-size: 1.8rem;
  border-color: var(--primary);
  background-color: var(--primary);
}
.quote_form input[type="submit"]:hover {
  border-color: var(--secondary);
  background-color: var(--secondary);
}
.logo_svg {
  position: relative;
  animation: rotate 10s linear infinite;
}
.logo_svg .img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 26%;
  animation: rotate_center 10s linear infinite;
}
@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes rotate_center {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(-360deg);
  }
}
.product_list .active a::after {
  opacity: 1;
}
.product_list .active .image .img_cv {
  opacity: 1;
}
.product_list .active .image .btn {
  transform: translateX(-50%);
}
.product_list a {
  position: relative;
  display: block;
  height: 100%;
  --rd: 2.4rem;
  border-radius: var(--rd);
  border: 1px solid #eaeaea;
  background-color: #fff;
  padding: 1.6rem 1.55rem 0;
}
.product_list a::after {
  position: absolute;
  left: -1.5px;
  top: -2px;
  bottom: -1.5px;
  right: -1.5px;
  content: '';
  border-radius: var(--rd);
  border: 2px solid var(--primary);
  transition: all 0.3s;
  opacity: 0;
  pointer-events: none;
  box-shadow: 0 1rem 1rem rgba(189, 204, 214, 0.35);
}
.product_list a:hover img {
  transform: scale(1.03);
}
.product_list .image {
  position: relative;
  border-radius: 1.6rem;
  overflow: hidden;
}
.product_list .image .img {
  padding-bottom: 80.904523%;
  background-color: #f1f5f6;
}
.product_list .image .img_cv {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  opacity: 0;
  transition: all 0.3s;
}
.product_list .image .btn {
  position: absolute;
  left: 50%;
  bottom: 2.2rem;
  z-index: 3;
  font-size: 1.6rem;
  line-height: 4.4rem;
  padding: 0 3.1rem;
  white-space: nowrap;
  transform: translate(-50%, calc(100% + 2.2rem));
}
.product_list .info {
  padding: 8.7939698% 4.0201005% 10.8040201%;
}
.product_list .info .cat {
  color: var(--primary);
  font-weight: 600;
  font-size: 1.4rem;
  text-transform: uppercase;
}
.product_list .info .title {
  font-weight: 600;
  font-size: 2.2rem;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-top: 0.9rem;
}
.product_list .info .desc {
  color: #505151;
  margin-top: 1.5rem;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.leaf_img {
  position: absolute;
  height: auto;
  filter: drop-shadow(0 3rem 1.5rem rgba(145, 155, 155, 0.35));
}
.leaf_img.sec {
  filter: drop-shadow(0 3rem 1.5rem rgba(3, 35, 34, 0.35));
}
header {
  position: sticky;
  top: 0;
  z-index: 996;
  transition: all 0.4s;
  background-color: #fff;
}
header.shadow {
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.08);
}
header.hide {
  top: -94px;
}
header .lt,
header .rt {
  flex: 1;
  gap: 2.4rem;
  display: flex;
  align-items: center;
  min-height: 94px;
}
header .rt {
  justify-content: flex-end;
}
header .logo {
  display: block;
  position: relative;
  transform: translateY(4px);
}
header .logo img {
  display: block;
  width: auto;
  height: 6rem;
}
header .logo p {
  width: 1px;
  height: 1px;
  overflow: hidden;
  position: absolute;
  clip: rect(1px, 1px, 1px, 1px);
}
header nav .close_box {
  display: none;
}
header nav .menu {
  gap: 4.2rem;
  display: flex;
}
header nav .menu > li {
  position: relative;
  z-index: 2;
}
header nav .menu > li > a {
  display: block;
  color: #0e191d;
  font-size: 16px;
  font-weight: 500;
  line-height: 50px;
  transition: all 0.3s;
}
header nav .menu > li > a:hover {
  color: var(--primary);
}
header nav .menu > li.current-menu-item > a,
header nav .menu > li.current-menu-parent > a,
header nav .menu > li:has(.current-menu-parent) > a {
  color: var(--primary);
}
header nav .menu > li:hover > .sub-menu {
  transform: translate(0);
  pointer-events: all;
  opacity: 1;
}
header nav .sub-menu {
  position: absolute;
  top: 100%;
  left: -24px;
  padding: 6px;
  transition: all 0.3s;
  transform: translateY(-10px);
  pointer-events: none;
  opacity: 0;
  min-width: max-content;
  width: calc(100% + 48px);
  border-radius: 1rem;
  background-color: #fff;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.08);
}
header nav .sub-menu > li {
  position: relative;
}
header nav .sub-menu > li + li {
  margin-top: 4px;
}
header nav .sub-menu > li > a {
  display: block;
  font-size: 15px;
  font-weight: 500;
  white-space: nowrap;
  padding: 12px 18px;
  transition: all 0.2s;
  border-radius: 0.8rem;
}
header nav .sub-menu > li > a:hover {
  background-color: #e9f4ec;
}
header nav .sub-menu > li:hover > .sub-menu {
  transform: translate(0);
  pointer-events: auto;
  opacity: 1;
}
header nav .sub-menu .sub-menu {
  left: 100%;
  top: 10px;
}
header .btn_search {
  width: 18px;
  height: 18px;
  overflow: hidden;
  text-indent: -999px;
  background: url(../img/icon-search.svg) no-repeat center / contain;
}
header .btn_lang {
  font-size: 15px;
  font-weight: 500;
  line-height: 50px;
  padding-left: 25px;
  text-transform: uppercase;
  background: url(../img/icon-lang.svg) no-repeat left center / 18px;
}
header .btn_menu {
  display: none;
}
header .btn {
  font-size: 16px;
  line-height: 48px;
  padding: 0 2.6rem;
}
footer {
  max-width: 256rem;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
  background-color: #e9f4ed;
  padding-top: 20.8rem;
}
footer .bg {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 100%;
  pointer-events: none;
  min-width: 212.8rem;
  background-image: linear-gradient(to top, #e9f4ed 0%, #e9f4ed 50%, #fff 50%, #fff 100%);
}
footer .leaf {
  position: absolute;
  left: -27%;
  top: 50%;
  transform: translateY(-66%);
  width: 18.134328%;
}
footer .top .logo {
  flex: 1;
  display: block;
  position: relative;
  max-width: 23.9rem;
}
footer .top .logo img {
  display: block;
  width: 100%;
  height: auto;
}
footer .top .logo p {
  width: 1px;
  height: 1px;
  overflow: hidden;
  position: absolute;
  clip: rect(1px, 1px, 1px, 1px);
}
footer .top .slogan {
  width: 67.61194%;
  font-weight: 600;
  font-size: 2.2rem;
  position: relative;
  padding-left: 6.716418%;
}
footer .top .slogan::before {
  content: '';
  position: absolute;
  left: 0;
  top: 1.4rem;
  width: 7.395143%;
  height: 1px;
  background-color: var(--primary);
}
footer .mid {
  padding: 3.8rem 0 15.4rem;
}
footer .mid strong {
  display: block;
  color: var(--secondary);
  font-weight: 500;
  font-size: 1.8rem;
  text-transform: uppercase;
  margin-bottom: 2.3rem;
}
footer .mid .contact li {
  position: relative;
  padding-left: 3.8rem;
}
footer .mid .contact li + li {
  margin-top: 1.6rem;
}
footer .mid .contact li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.4rem;
  width: 2rem;
  height: 2rem;
  background: no-repeat center / contain;
}
footer .mid .contact .phone::before {
  width: 1.6rem;
  height: 1.6rem;
  background-image: url(../img/icon-phone.svg);
}
footer .mid .contact .email::before {
  background-image: url(../img/icon-email.svg);
}
footer .mid .contact a {
  font-weight: 600;
  font-size: 1.8rem;
  transition: all 0.3s;
  vertical-align: top;
}
footer .mid .contact a:hover {
  color: var(--primary);
}
footer .mid .social {
  gap: 1.2rem;
  display: flex;
  flex-wrap: wrap;
  margin-top: 4.2rem;
}
footer .mid .social a {
  display: block;
  width: 4.6rem;
  height: 4.6rem;
  overflow: hidden;
  text-indent: -999px;
  border-radius: 50%;
  border: 1px solid #c7d1cd;
  position: relative;
  transition: all 0.3s;
}
footer .mid .social a::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  transition: all 0.3s;
  background: no-repeat center / contain;
}
footer .mid .social a:hover {
  border-color: var(--primary);
  background-color: var(--primary);
}
footer .mid .social a:hover::after {
  filter: contrast(0) brightness(2);
}
footer .mid .social .facebook a::after {
  background-image: url(../img/social-facebook.svg);
}
footer .mid .social .instagram a::after {
  background-image: url(../img/social-instagram.svg);
}
footer .mid .social .youtube a::after {
  background-image: url(../img/social-youtube.svg);
}
footer .mid .social .linkedin a::after {
  background-image: url(../img/social-linkedin.svg);
}
footer .mid .social .twitter a::after {
  background-image: url(../img/social-twitter.svg);
}
footer .mid .foot_navs {
  width: 67.61194%;
  padding-left: 6.716418%;
  gap: 5rem 3rem;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
}
footer .mid .foot_nav {
  min-width: 25.245098%;
}
footer .mid .foot_nav li + li {
  margin-top: 1.5rem;
}
footer .mid .foot_nav a {
  vertical-align: top;
  color: #383c47;
  font-weight: 500;
  font-size: 1.8rem;
  transition: all 0.3s;
}
footer .mid .foot_nav a:hover {
  color: var(--primary);
}
footer .bot {
  max-width: 148.6rem;
  margin: 0 auto;
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.88);
  background-color: var(--secondary);
  border-radius: 2.9rem 2.9rem 0 0;
  padding: 2.6rem 0 1.9rem;
}
footer .bot ul {
  gap: 1.6rem;
  display: flex;
  align-items: center;
}
footer .bot ul li {
  gap: 1.6rem;
  display: flex;
  align-items: center;
}
footer .bot ul li::after {
  content: '';
  display: block;
  width: 1px;
  height: 1.2rem;
  background-color: rgba(255, 255, 255, 0.3);
}
footer .bot ul li:last-child::after {
  display: none;
}
footer .bot ul a {
  display: block;
  color: rgba(255, 255, 255, 0.68);
  transition: all 0.3s;
}
footer .bot ul a:hover {
  color: var(--primary);
}
.section_touch {
  overflow: hidden;
  margin-bottom: -28rem;
  padding: 10.6rem 0 14.6rem;
  position: relative;
  z-index: 2;
}
.section_touch .lt {
  position: relative;
  width: 31.865672%;
  margin-left: -8.656716%;
  margin-bottom: 6.567164%;
}
.section_touch .mid {
  flex: 1;
  padding: 8rem 0;
  margin-bottom: 5.223881%;
}
.section_touch .head p {
  max-width: 46rem;
  margin: 3rem auto 0;
}
.section_touch .btns {
  gap: 3rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 5rem;
}
.section_touch .rt {
  position: relative;
  width: 32.53732%;
  margin-right: -10.298507%;
}
.section_touch .img_cv {
  border-radius: 2.8rem;
}
.section_touch .photo1 {
  width: 77.04918%;
  margin-left: auto;
}
.section_touch .photo2 {
  width: 69.266055%;
  margin-left: 19.954128%;
}
.section_touch .photo3 {
  width: 89.69555%;
  margin-top: 14.754098%;
}
.section_touch .photo4 {
  width: 80.733945%;
  margin-top: 14.908257%;
}
.section_touch .img1 {
  width: 58.782201%;
  position: absolute;
  left: -5.152225%;
  top: 0;
  z-index: 2;
  transform: translateY(35.856574%);
}
.section_touch .img2 {
  width: 85.550459%;
  position: absolute;
  right: -8.027523%;
  bottom: 0;
  z-index: 2;
  transform: translateY(50%);
}
.section_touch .leaf {
  width: 59.633028%;
  position: absolute;
  left: -5%;
  top: -10rem;
  pointer-events: none;
}

body .wpcf7-spinner{
  width: 24px !important;
  margin: 0;
  margin-top: 1.5rem;
}
body .wpcf7 form .wpcf7-response-output{
  padding: 0;
  margin: 0;
  border: none;
}
@media screen and (min-width: 769px) and (max-width: 1220px) {
  .content {
    padding: 0 3rem;
  }
  header .lt,
  header .rt {
    flex: unset;
  }
  header .flex > nav {
    margin-left: auto;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .content,
  .swiper_content {
    max-width: 896px;
  }
  .tcon h1 {
    font-size: 6rem;
  }
}
@media screen and (max-width: 1024px) {
  header nav {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    pointer-events: none;
    display: flex;
    --radius: 8px;
  }
  header nav.active {
    pointer-events: auto;
  }
  header nav.active .close {
    opacity: 1;
  }
  header nav.active .con {
    transform: translate(0);
  }
  header nav > .close {
    position: absolute;
    display: block;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    opacity: 0;
    transition: all 0.3s;
    background-color: rgba(0, 0, 0, 0.75);
  }
  header nav .con {
    width: min(300px, 80%);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.3s;
    transform: translateX(-100%);
    background-color: #fff;
  }
  header nav .close_box {
    display: block;
    padding: 12px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }
  header nav .close_box .close {
    display: block;
    width: 44px;
    height: 44px;
    cursor: pointer;
    margin-left: auto;
    transition: all 0.3s;
    border-radius: var(--radius);
    background: url('../img/close.svg') no-repeat center / 12px;
  }
  header nav .close_box .close:hover {
    background-color: rgba(0, 0, 0, 0.05);
  }
  header nav .close_box + div {
    flex: 1;
    overflow: auto;
    padding: 12px 12px 30px;
  }
  header nav .menu {
    display: block;
  }
  header nav .menu > li {
    cursor: pointer;
  }
  header nav .menu > li + li {
    margin-top: 8px;
  }
  header nav .menu > li > a {
    color: var(--title);
    display: block;
    font-size: 16px;
    line-height: 26px;
    padding: 10px 12px;
    transition: all 0.3s;
    border-radius: var(--radius);
  }
  header nav .menu > li > a:hover {
    background-color: rgba(0, 0, 0, 0.05);
  }
  header nav .menu > li.current-menu-item > a,
  header nav .menu > li.current-menu-parent > a {
    background-color: rgba(0, 0, 0, 0.05);
  }
  header nav .menu .menu-item-has-children {
    position: relative;
  }
  header nav .menu .menu-item-has-children > a {
    margin-right: 46px;
  }
  header nav .menu .menu-item-has-children::before,
  header nav .menu .menu-item-has-children::after {
    content: '';
    display: block;
    position: absolute;
    top: 5px;
    right: 0;
    width: 36px;
    height: 36px;
    transition: all 0.3s;
    border-radius: var(--radius);
  }
  header nav .menu .menu-item-has-children::after {
    background: url(../img/select.svg) no-repeat center / 12px;
  }
  header nav .menu .menu-item-has-children.active::before {
    background-color: rgba(0, 0, 0, 0.05);
  }
  header nav .menu .menu-item-has-children.active::after {
    transform: rotate(180deg);
  }
  header nav .sub-menu {
    width: 100%;
    position: static;
    padding: 10px;
    margin: 12px 0;
    box-shadow: none;
    display: none;
    opacity: 1;
    pointer-events: auto;
    transition: none;
    min-width: unset;
    border-radius: var(--radius);
    transform: translate(0);
    background-color: rgba(0, 0, 0, 0.02);
  }
  header nav .sub-menu > li {
    cursor: pointer;
    transform: translate(0);
  }
  header nav .sub-menu > li + li {
    margin-top: 6px;
  }
  header nav .sub-menu > li > a {
    display: block;
    font-size: 14px;
    line-height: 20px;
    white-space: normal;
    padding: 10px;
    transition: all 0.3s;
    border-radius: var(--radius);
  }
  header nav .sub-menu > li > a:hover {
    background-color: rgba(0, 0, 0, 0.05);
  }
  header nav .sub-menu > li.current-menu-item > a {
    background-color: rgba(0, 0, 0, 0.05);
  }
  header nav .sub-menu .menu-item-has-children > a {
    margin-right: 42px;
  }
  header nav .sub-menu .menu-item-has-children::before,
  header nav .sub-menu .menu-item-has-children::after {
    top: 2px;
    width: 36px;
    height: 36px;
    background-size: 10px;
  }
  header nav .sub-menu .sub-menu {
    margin: 10px 0;
  }
  header nav .sub-menu .sub-menu > li + li {
    margin-top: 0;
  }
  header nav .sub-menu .sub-menu > li > a {
    font-size: 12px;
  }
  header .lt,
  header .rt {
    gap: 10px;
  }
  header .btn_search {
    width: 44px;
    height: 44px;
    background-size: 18px;
  }
  header .btn_lang {
    font-size: 14px;
    line-height: 44px;
    min-width: 44px;
  }
  header .btn_menu {
    width: 44px;
    height: 44px;
    display: block;
    overflow: hidden;
    text-indent: -999px;
    background: url(../img/nav-btn.svg) no-repeat center / 22px;
  }
}
@media screen and (min-width: 769px) and (max-width: 896px) {
  .content,
  .swiper_content {
    max-width: 768px;
  }
  .tcon h1 {
    font-size: 5rem;
  }
  .tcon h2,
  .tcon .head_h2 {
    font-size: 4rem;
  }
}
@media screen and (min-width: 769px) {
  ul::-webkit-scrollbar,
  div::-webkit-scrollbar {
    width: 4px;
    height: 4px;
  }
  ul::-webkit-scrollbar-thumb,
  div::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-color: #8b8b8b;
  }
}
@media screen and (max-width: 768px) {
  html {
    font-size: 10px;
  }
  body {
    font-size: 1.4rem;
  }
  .content {
    padding: 0 20px;
  }
  .swiper_content {
    padding: 10px 20px;
  }
  .only_mobile {
    display: block;
  }
  body.fixed {
    padding-right: 0;
  }
  .gap {
    gap: 20px;
  }
  .btn,
  .btn_line {
    font-size: 14px;
    line-height: 42px;
    padding: 0 20px;
    border-radius: 6px;
  }
  .btn.pm,
  .btn_line.pm {
    min-width: unset;
  }
  .btn_a {
    font-size: 14px;
    gap: 8px;
  }
  .btn_a::after {
    width: 14px;
    height: 14px;
  }
  .swiper_btns {
    gap: 14px;
  }
  .swiper_btns div {
    width: 44px;
    height: 44px;
  }
  .swiper_btns.middle:not(:has(.swiper-button-lock)) {
    position: static;
    width: 100%;
    max-width: unset;
    justify-content: flex-end;
    transform: translate(0);
    pointer-events: all;
    margin-top: 30px;
    padding: 0 20px;
  }
  .tcon > em {
    font-size: 13px;
    margin-bottom: 8px;
  }
  .tcon h1 {
    font-size: 38px;
    line-height: 1.2;
  }
  .tcon h2,
  .tcon .head_h2 {
    font-size: 30px;
    line-height: 1.2;
  }
  .tcon .desc,
  .tcon p {
    font-size: 14px;
    line-height: 1.5;
    margin-top: 10px;
  }
  .tcon.bn > em {
    margin-bottom: 8px;
  }
  div.head.flex .tcon {
    padding: 0;
  }
  div.head.flex .btn,
  div.head.flex .btn_line {
    margin: 0;
  }
  div.head .desc,
  div.head p {
    margin-top: 12px;
  }
  div.head p + p {
    margin-top: 12px;
  }
  div.head .btn,
  div.head .btn_line {
    font-size: 14px;
    line-height: 42px;
    padding: 0 20px;
    margin-top: 20px;
  }
  div.head .btns {
    gap: 14px;
    margin-top: 20px;
  }
  div.head .btns .btn,
  div.head .btns .btn_line {
    margin: 0;
    padding: 0 18px;
  }
  header {
    top: 0;
  }
  header.hide {
    top: 0;
  }
  header .logo {
    transform: none;
  }
  header .logo img {
    height: 40px;
  }
  header .lt {
    min-height: unset;
  }
  header .rt {
    gap: 14px;
    min-height: 64px;
  }
  header .rt .btn {
    font-size: 14px;
    line-height: 42px;
    padding: 0 20px;
  }
  header .rt .btn_search {
    width: 44px;
    height: 44px;
    background-size: 40%;
  }
  footer {
    padding-top: 80px;
  }
  footer .top .logo {
    max-width: 150px;
  }
  footer .top .slogan {
    font-size: 16px;
  }
  footer .top .slogan::before {
    top: 10px;
  }
  footer .mid {
    display: block;
    padding: 30px 0;
  }
  footer .mid strong {
    font-size: 18px;
    margin-bottom: 20px;
  }
  footer .mid .foot_navs {
    width: 100%;
    padding: 0;
    display: block;
  }
  footer .mid .foot_nav {
    width: 100%;
    min-width: unset;
  }
  footer .mid .foot_nav strong {
    font-size: 16px;
    line-height: 46px;
    border: 1px solid #c7d1cd;
    padding: 0 22px;
    position: relative;
    margin-bottom: 16px;
  }
  footer .mid .foot_nav strong::after {
    content: '';
    display: block;
    width: 12px;
    height: 12px;
    background: url(../img/select.svg) no-repeat center / contain;
    position: absolute;
    right: 22px;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s;
  }
  footer .mid .foot_nav.active strong::after {
    transform: translateY(-50%) rotate(180deg);
  }
  footer .mid .foot_nav > div {
    display: none;
    padding: 0 20px 20px;
  }
  footer .mid .foot_nav > div li + li {
    margin-top: 14px;
  }
  footer .mid .foot_nav > div a {
    font-size: 14px;
    display: block;
    font-weight: normal;
  }
  footer .mid .foot_nav > div p {
    font-size: 14px;
    line-height: 1.5;
  }
  footer .mid .social {
    gap: 10px;
    margin-top: 30px;
    padding-bottom: 20px;
  }
  footer .mid .social a {
    width: 44px;
    height: 44px;
  }
  footer .mid .contact li + li {
    margin-top: 14px;
  }
  footer .mid .contact li {
    padding-left: 25px;
  }
  footer .mid .contact li::before {
    width: 16px;
    height: 16px;
    top: 2px;
  }
  footer .mid .contact a {
    font-size: 14px;
  }
  footer .bot {
    font-size: 13px;
    border-radius: 10px 10px 0 0;
    padding: 20px 0;
  }
  footer .bot ul {
    gap: 14px;
  }
  footer .bot ul li {
    gap: 14px;
  }
  footer .bot ul li::after {
    height: 10px;
  }
  footer .bot ul a {
    font-size: 14px;
  }
  .section_touch {
    padding: 50px 0;
    margin: 0;
  }
  .section_touch .lt {
    width: 26%;
    margin: 0;
  }
  .section_touch .mid {
    padding: 0;
    margin: 0;
  }
  .section_touch .head p {
    margin-top: 12px;
  }
  .section_touch .btns {
    gap: 14px;
    margin-top: 20px;
  }
  .section_touch .rt {
    width: 26%;
    margin: 0;
  }
  .section_touch .img_cv {
    border-radius: 10px;
  }
  .section_touch .leaf {
    top: -20px;
  }
  .product_list a {
    --rd: 10px;
    padding: 10px;
  }
  .product_list .image {
    border-radius: 10px;
  }
  .product_list .image .btn {
    transform: translateX(-50%);
    padding: 0 20px;
    font-size: 14px;
    line-height: 36px;
    bottom: 16px;
  }
  .product_list .info {
    padding: 14px 10px;
  }
  .product_list .info .cat {
    font-size: 13px;
  }
  .product_list .info .title {
    font-size: 20px;
    margin-top: 5px;
  }
  .product_list .info .desc {
    margin-top: 10px;
  }
  .news_list .img {
    border-radius: 10px;
  }
  .news_list .info .metas {
    font-size: 14px;
    margin-top: 14px;
    gap: 8px;
  }
  .news_list .info .metas .cat {
    font-size: 15px;
  }
  .news_list .info .metas span {
    gap: 8px;
  }
  .news_list .info .metas span::after {
    width: 3px;
    height: 3px;
  }
  .news_list .info .title {
    font-size: 18px;
    line-height: 1.5;
    margin-top: 10px;
  }
  .news_list .info::after {
    margin-top: 22px;
  }
  .news_list .btn_a {
    gap: 10px;
    margin-top: 10px;
    font-size: 14px;
  }
  .pagination {
    gap: 8px;
    margin-top: 30px;
  }
  .pagination .page-numbers {
    min-width: 36px;
    height: 36px;
    padding: 0 10px;
    border-radius: 6px;
    font-size: 13px;
  }
  .news_nav {
    padding: 30px 0;
  }
  .news_nav .head {
    padding: 0;
    width: 100px;
  }
  .news_nav .head h2 {
    font-size: 20px;
    line-height: 1.2;
  }
  .news_nav .logo_svg {
    width: 90px;
  }
  .news_nav .nav {
    padding-bottom: 20px;
    margin: 0;
    max-width: 100%;
  }
  .news_nav .nav .nav_list {
    width: calc(100% + 40px);
    padding: 0 20px;
    margin: 0 -20px;
    flex-wrap: nowrap;
    gap: 12px;
    overflow-x: auto;
    justify-content: unset;
  }
  .news_nav .nav .nav_list::-webkit-scrollbar {
    display: none;
  }
  .news_nav .nav .nav_list li {
    flex-shrink: 0;
  }
  .news_nav .nav .nav_list li:first-child {
    margin-left: auto;
  }
  .news_nav .nav .nav_item {
    min-width: 5em;
    padding-inline: 1.4em;
    border-radius: 6px;
  }
  .news_main {
    padding: 50px 0;
  }
  .news_main .list {
    margin-top: 30px;
  }
  .news_main .list ul {
    grid-template-columns: repeat(auto-fill, minmax(min(230px, 100%), 1fr));
    gap: 30px 16px;
  }
  .search_banner .head {
    padding: 50px 0;
  }
  .search_banner h1 {
    font-size: 26px;
  }
  .search_banner .head > p {
    margin-top: 14px;
  }
  .search_results {
    padding: 50px 0;
  }
  .search_results .list ul {
    grid-template-columns: repeat(auto-fill, minmax(min(230px, 100%), 1fr));
    gap: 30px 16px;
  }
  .search_results .no-results h2 {
    font-size: 22px;
  }
  .search-form {
    flex-direction: column;
    gap: 12px;
  }
  .search-form .search-field,
  .search-form .search-submit {
    height: 48px;
  }
  .leaf_img {
    filter: drop-shadow(0 16px 8px rgba(145, 155, 155, 0.35));
  }
  .leaf_img.sec {
    filter: drop-shadow(0 16px 8px rgba(3, 35, 34, 0.35));
  }
  .quote_form form {
    gap: 16px 0;
  }
  .quote_form form .label {
    font-size: 14px;
    margin-bottom: 10px;
  }
  .quote_form form .label span {
    font-size: 13px;
  }
  .quote_form form input,
  .quote_form form select,
  .quote_form form textarea {
    font-size: 14px;
    height: 46px;
    border-radius: 6px;
    padding: 0 20px;
  }
  .quote_form form textarea {
    height: 120px;
    padding: 14px 20px;
  }
  .quote_form form .wpcf7-checkbox {
    gap: 12px;
    padding: 0;
  }
  .quote_form form .wpcf7-checkbox label {
    border-radius: 6px;
    padding: 10px;
  }
  .quote_form form .upload {
    padding: 20px;
    border-radius: 6px;
  }
  .quote_form form .upload::before {
    width: 16px;
    height: 16px;
  }
  .quote_form form .upload .title {
    margin-top: 10px;
  }
  .quote_form form .upload .desc {
    font-size: 12px;
    margin-top: 5px;
  }
  .quote_form form .wpcf7-acceptance input[type="checkbox"] {
    width: 20px;
    height: 20px;
    border-radius: 4px;
  }
  .quote_form form .wpcf7-acceptance input[type="checkbox"] ~ span {
    width: calc(100% - 24px);
    padding-left: 12px;
  }
  .quote_form form input[type="submit"] {
    font-size: 14px;
  }
}
@media screen and (max-width: 576px) {
  header .rt .btn {
    display: none;
  }
  .section_touch .flex {
    flex-direction: column;
  }
  .section_touch .lt,
  .section_touch .rt {
    width: 100%;
    order: -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .section_touch .lt .img,
  .section_touch .rt .img {
    width: 100%;
    margin: 0;
  }
  .section_touch .lt .img2,
  .section_touch .rt .img2,
  .section_touch .lt .img1,
  .section_touch .rt .img1 {
    width: 50%;
  }
  .section_touch .lt .leaf,
  .section_touch .rt .leaf {
    width: 40%;
    top: 80%;
  }
  .section_touch .mid {
    padding-top: 50px;
  }
  footer .top {
    flex-direction: column;
  }
  footer .top .slogan {
    width: 100%;
    text-align: center;
  }
  footer .bot .flex {
    flex-direction: column-reverse;
    text-align: center;
  }
  .quote_form .col2 {
    width: 100%;
  }
}

/* === megamenu === */
.megamenu_mask {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 100vh;
  z-index: 994;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  background-color: rgba(12, 12, 12, 0.5);
}
.megamenu {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  z-index: 995;
  background-color: #fff;
  border-top: 1px solid #eef1f0;
  box-shadow: 0 2.4rem 4rem rgba(12, 12, 12, 0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-1rem);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
}
body.megamenu_open .megamenu_mask {
  opacity: 1;
  visibility: visible;
}
body.megamenu_open .megamenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.megamenu_flex {
  display: flex;
  gap: 4rem;
  padding: 3.6rem 0;
}
.megamenu_cats {
  width: 22rem;
  flex-shrink: 0;
  border-right: 1px solid #eef1f0;
  padding-right: 2rem;
}
.megamenu_cat a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 500;
  color: var(--text);
  border-radius: 0.8rem;
  padding: 0.9rem 1.4rem;
  transition: all 0.3s;
}
.megamenu_cat a::after {
  content: '';
  width: 0.6rem;
  height: 0.6rem;
  flex-shrink: 0;
  opacity: 0;
  transition: all 0.3s;
  border-top: 1.5px solid currentColor;
  border-right: 1.5px solid currentColor;
  transform: rotate(45deg);
}
.megamenu_cat + .megamenu_cat {
  margin-top: 0.4rem;
}
.megamenu_cat:hover a {
  color: var(--primary);
  background-color: rgba(0, 175, 118, 0.06);
}
.megamenu_cat.active a {
  font-weight: 600;
  color: #fff;
  background-color: var(--primary);
}
.megamenu_cat.active a::after {
  opacity: 1;
}
.megamenu_products {
  flex: 1;
  position: relative;
  min-width: 0;
}
.megamenu_product_list {
  display: none;
}
.megamenu_product_list.active {
  display: block;
}
.megamenu_product_list ul {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2.4rem 1.6rem;
}
.megamenu_product_list li a {
  display: block;
}
.megamenu_product_list .img {
  border-radius: 1rem;
  background-color: #f1f5f6;
  padding-bottom: 80.904523%;
}
.megamenu_product_list .img img {
  transition: transform 0.3s;
}
.megamenu_product_list li a:hover .img img {
  transform: scale(1.05);
}
.megamenu_product_list .title {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.4;
  color: var(--title);
  margin-top: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.3s;
}
.megamenu_product_list li a:hover .title {
  color: var(--primary);
}
.megamenu_more {
  display: inline-flex;
  align-items: center;
  font-weight: 600;
  font-size: 1.4rem;
  color: var(--primary);
  margin-top: 2.4rem;
  transition: all 0.3s;
}
.megamenu_more::after {
  content: '';
  width: 0.6rem;
  height: 0.6rem;
  margin-left: 0.8rem;
  border-top: 1.5px solid currentColor;
  border-right: 1.5px solid currentColor;
  transform: rotate(45deg);
}
.megamenu_more:hover {
  color: var(--secondary);
}
@media screen and (max-width: 1220px) {
  .megamenu_flex {
    gap: 2.4rem;
  }
  .megamenu_cats {
    width: 18rem;
  }
}
@media screen and (max-width: 768px) {
  .megamenu,
  .megamenu_mask {
    display: none;
  }
}
/* === /megamenu === */

/* === 404 page === */
.page_404 {
  min-height: 56vh;
  display: flex;
  align-items: center;
  background-color: #f7fbf9;
}
.page_404 .content {
  width: 100%;
}
.page_404 .flex {
  justify-content: center;
}
.page_404 .head {
  max-width: 67.4rem;
  text-align: center;
}
.page_404 .head h1 {
  font-size: 14rem;
  line-height: 1.1;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.02em;
  text-shadow: 0.4rem 0.4rem 0 rgba(0, 175, 118, 0.12);
}
.page_404 .head p {
  max-width: 52rem;
  color: #63687a;
  margin: 1.5rem auto 0;
}
.page_404 .btns {
  display: flex;
  justify-content: center;
  margin-top: 3.5rem;
}
.page_404 .search_form {
  margin-top: 3rem;
}



.default_head{
  padding: 9rem 0;
  background-color: #eee;
}
.default_head h1{
  font-size: 4.5rem;
}
.default_body{
  padding: 5rem 0;
  font-size: 1.8rem;
  line-height: 3.2rem;
  color: #171717;
}

.default_body h2 {
  font-size: 2.6rem;
  line-height: 3.4rem;
  font-weight: 700;
  margin: 3.5rem 0 3.3rem;
}
.default_body h3 {
  font-size: 2rem;
  line-height: 3.4rem;
  font-weight: 700;
  margin: 1.6rem 0 1rem;
}
.default_body p {
  margin: 1rem 0;
}
.default_body img {
  border-radius: 8px;
  width: 100%;
  display: block;
  object-fit: cover;
  margin: 4.7rem 0;
}
.default_body ul {
  margin: 1rem 0;
}
.default_body ul li {
  position: relative;
  padding-left: 2.4rem;
  margin-bottom: 1rem;
}
.default_body ul li:last-child {
  margin-bottom: 0;
}
.default_body ul li::before {
  width: 1.4rem;
  height: 1.4rem;
  position: absolute;
  left: 0;
  top: 0.8rem;
  border-radius: 50%;
  
  content: '';
}


@media screen and (max-width: 768px) {
  .page_404 {
    min-height: 46vh;
    padding: 50px 0;
  }
  .page_404 .head h1 {
    font-size: 80px;
  }
  .page_404 .head p {
    margin-top: 12px;
  }
  .page_404 .btns {
    margin-top: 24px;
  }
  .page_404 .search_form {
    margin-top: 20px;
  }
}
/* === /404 page === */

/* === btn_lang === */
.jst-language-switcher {
      display: none;
  }
/* === /btn_lang === */

/* === btn_quote === */
/* quote modal */
.quote_modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(12, 12, 12, 0.88);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.quote_modal.active {
  opacity: 1;
  visibility: visible;
}
.quote_modal_close {
  position: absolute;
  top: 2.4rem;
  right: 2.4rem;
  width: 3.6rem;
  height: 3.6rem;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1;
}
.quote_modal_close::before,
.quote_modal_close::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2.4rem;
  height: 2px;
  background-color: #fff;
  transition: background-color 0.2s ease;
}
.quote_modal_close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.quote_modal_close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.quote_modal_close:hover::before,
.quote_modal_close:hover::after {
  background-color: var(--primary);
}
.quote_modal_inner {
  width: 92%;
  max-width: 680px;
  max-height: 90vh;
  overflow-y: auto;
  background: #fff;
  border: 1px solid #e8e5f0;
  border-radius: 1.2rem;
  padding: 3.6rem 3.2rem;
}
.quote_modal .form form {
  display: flex;
  justify-content: space-between;
  flex-flow: wrap;
  gap: 1.5rem;
}
.quote_modal .form form strong.title,
.quote_modal .form form > .head {
  display: none;
}
.quote_modal_inner .head {
  text-align: center;
  margin-bottom: 2.4rem;
}
.quote_modal_inner .head .subtitle {
  display: block;
  text-align: center;
  color: #000000;
  font-size: 1.4rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 0.8rem;
}
.quote_modal_inner .head .subtitle:before {
  display: none;
}
.quote_modal_inner .head .subtitle + h2 {
  margin-top: 0;
}
.quote_modal_inner .head h2 {
  color: var(--title);
  font-size: 2rem;
  line-height: 1.4;
  font-weight: 600;
  margin: 0;
}
.quote_modal_inner .head h2 span {
  color: var(--primary);
}
.quote_modal_inner .con {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.quote_modal_inner .con > span {
  width: 100%;
}
.quote_modal_inner .con > span.col2 {
  width: calc(50% - 0.75rem);
}
.quote_modal .form form br {
  display: none;
}
.quote_modal .form form .hidden-fields-container {
  display: none;
}
.quote_modal .form form .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}
.quote_modal .form form span.col2 > label,
.quote_modal .form form span.col_file > label,
.quote_modal .form form span.col_textarea > label,
.quote_modal .form form > span > label {
  display: flex;
  align-items: center;
  font-size: 1.4rem;
  color: #303030;
  font-weight: 600;
  text-transform: capitalize;
  margin-bottom: 0.8rem;
}
.quote_modal .form form span label i {
  color: var(--primary);
  margin-left: 0.4rem;
}
.quote_modal .form form span {
  display: block;
  width: 100%;
}
.quote_modal .form form span.col2 {
  width: calc(50% - 0.75rem);
}
.quote_modal .form form span input:not([type="checkbox"]),
.quote_modal .form form .wpcf7-form-control-wrap input:not([type="checkbox"]) {
  height: 5rem;
  line-height: 5rem;
  padding: 0 1.5rem;
  border: 1px solid #dddddd;
  border-radius: 0.6rem;
  width: 100%;
  color: #111;
  font-size: 1.5rem;
  transition: all 0.3s;
  box-sizing: border-box;
  background: #fff;
}
.quote_modal .form form span input:not([type="checkbox"]):focus,
.quote_modal .form form .wpcf7-form-control-wrap input:not([type="checkbox"]):focus,
.quote_modal .form form textarea:focus,
.quote_modal .form form span select:focus,
.quote_modal .form form .wpcf7-form-control-wrap select:focus {
  border-color: var(--primary);
  outline: none;
}
.quote_modal .form form span select,
.quote_modal .form form .wpcf7-form-control-wrap select {
  height: 5rem;
  line-height: 5rem;
  padding: 0 1.5rem;
  border: 1px solid #dddddd;
  border-radius: 0.6rem;
  width: 100%;
  font-size: 1.5rem;
  color: #60686d;
  background: #fff url('../img/select.svg') no-repeat right 1.5rem center/1.2rem;
  box-sizing: border-box;
  appearance: none;
}
.quote_modal .form form .upload_con {
  padding: 1.8rem;
  border-radius: 0.6rem;
  border: 2px dashed #dddddd;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s;
}
.quote_modal .form form .upload_con:hover {
  border-color: var(--primary);
}
.quote_modal .form form .upload_con.has-file {
  border-color: var(--primary);
  background: rgba(var(--primary-rgb, 0, 0, 0), 0.04);
}
.quote_modal .form form .upload_con.dragover {
  border-color: var(--primary);
  background: rgba(var(--primary-rgb, 0, 0, 0), 0.06);
}
.quote_modal .form form .upload_filename {
  display: block;
  margin-top: 0.8rem;
  font-size: 1.4rem;
  color: var(--primary);
  font-weight: 600;
}
.quote_modal .form form .upload_con .upload_hint {
  font-weight: 400;
}
.quote_modal .form form .upload_con .icon {
  width: 3.6rem;
  height: 3.6rem;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0.8rem;
}
.quote_modal .form form .upload_con p {
  font-size: 1.4rem;
  color: #666666;
}
.quote_modal .form form .upload_con p strong {
  font-weight: 600;
  color: #111111;
}
.quote_modal .form form .upload_con span {
  font-size: 1.4rem;
  color: #888888;
  margin-top: 0.5rem;
}
.quote_modal .form form span.col_file,
.quote_modal .form form span.col_textarea {
  margin-top: 0;
}
.quote_modal .form form textarea,
.quote_modal .form form .wpcf7-form-control-wrap textarea {
  padding: 1.4rem 1.5rem;
  border: 1px solid #dddddd;
  border-radius: 0.6rem;
  width: 100%;
  font-size: 1.5rem;
  color: #111;
  height: 14rem;
  box-sizing: border-box;
  resize: none;
  background: #fff;
}
.quote_modal .form form input[type="file"],
.quote_modal .form form .wpcf7-file {
  display: none !important;
}
.quote_modal .form form > p,
.quote_modal .form form > p.agree_row {
  font-size: 1.3rem;
  color: #60686d;
  width: 100%;
  margin: 0;
  padding: 0;
}
.quote_modal .form form > p.agree_row .wpcf7-form-control-wrap,
.quote_modal .form form .wpcf7-acceptance {
  width: 100%;
}
.quote_modal .form form > p input[type="checkbox"],
.quote_modal .form form .wpcf7-acceptance input[type="checkbox"] {
  width: 1.8rem;
  height: 1.8rem;
  min-width: 1.8rem;
  margin: 0.15rem 0 0;
  border: 2px solid #333;
  border-radius: 0.2rem;
  flex-shrink: 0;
  appearance: none;
  -webkit-appearance: none;
  background: #fff;
  cursor: pointer;
  grid-column: 1;
  grid-row: 1;
  align-self: start;
}
.quote_modal .form form .wpcf7-acceptance .wpcf7-list-item {
  margin: 0;
  display: block;
}
.quote_modal .form form .wpcf7-acceptance label {
  display: grid;
  grid-template-columns: 1.8rem 1fr;
  column-gap: 1rem;
  row-gap: 0;
  align-items: start;
  font-size: 1.3rem;
  font-weight: 400;
  text-transform: none;
  color: #60686d;
  margin-bottom: 0;
  cursor: pointer;
}
.quote_modal .form form .wpcf7-acceptance .wpcf7-list-item-label {
  grid-column: 2;
  line-height: 1.6;
  margin: 0;
  padding: 0;
}
.quote_modal .form form .btn {
  width: 100%;
  height: 5rem;
  line-height: 5rem;
  padding: 0 3rem;
  justify-content: center;
  font-size: 1.5rem;
  margin-top: 0.5rem;
  cursor: pointer;
  position: relative;
}
.quote_modal .form form .btn:not(.is-ready) {
  opacity: 0.55;
  cursor: not-allowed;
  filter: none;
}
.quote_modal .form form .btn.is-ready {
  opacity: 1;
  cursor: pointer;
}
.quote_modal .form form .btn.is-ready:hover {
  filter: brightness(120%);
}
.quote_modal .form form .btn > p {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.quote_modal .form form > p.agree_row.needs-attention {
  color: #c0392b;
}
.quote_modal .form form .btn:after {
  width: 1.45rem;
  height: 1.45rem;
  margin-left: 1.2rem;
}
.quote_modal .form form .btn input[type="submit"] {
  display: none;
}
.quote_modal .form form .btn input[type="submit"]:disabled {
  display: none;
}
.quote_modal .form form > p input:checked,
.quote_modal .form form .wpcf7-acceptance input:checked {
  background: url('../img/correct.svg') no-repeat center/100%;
  background-color: var(--primary);
  border-color: var(--primary);
}
.quote_modal .form .wpcf7-spinner {
  position: absolute;
  right: 1rem;
  width: 24px;
}
.quote_modal .form .wpcf7-response-output {
  width: 100%;
  margin: 1rem 0 0;
  padding: 0.8rem 1.2rem;
  border-radius: 0.6rem;
  font-size: 1.3rem;
}
.quote_modal .form .wpcf7-not-valid-tip {
  font-size: 1.2rem;
  color: #c0392b;
  margin-top: 0.4rem;
}
body.quote_modal_open {
  overflow: hidden;
}

@media (max-width: 768px) {
  .quote_modal_inner {
    padding: 3rem 2rem;
    border-radius: 1.2rem;
  }
  .quote_modal .form form {
    gap: 1.2rem;
  }
  .quote_modal .form form strong.title,
  .quote_modal_inner .head h2 {
    font-size: 1.8rem;
  }
  .quote_modal .form form span.col2,
  .quote_modal_inner .con > span.col2 {
    width: 100%;
  }
  .quote_modal .form form span input:not([type="checkbox"]),
  .quote_modal .form form .wpcf7-form-control-wrap input:not([type="checkbox"]) {
    line-height: 4rem;
    font-size: 1.4rem;
  }
  .quote_modal .form form span select,
  .quote_modal .form form .wpcf7-form-control-wrap select {
    line-height: 4rem;
    font-size: 1.4rem;
  }
  .quote_modal .form form textarea,
  .quote_modal .form form .wpcf7-form-control-wrap textarea {
    height: 12rem;
    font-size: 1.4rem;
  }
  .quote_modal .form form span.col2 > label,
  .quote_modal .form form span.col_file > label,
  .quote_modal .form form span.col_textarea > label,
  .quote_modal .form form > span > label {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
  }
  .quote_modal .form form > p,
  .quote_modal .form form > p.agree_row {
    font-size: 1.3rem;
  }
  .quote_modal .form form .upload_con p {
    font-size: 1.5rem;
  }
  .quote_modal .form form .upload_con span {
    font-size: 1.4rem;
  }
  .quote_modal .form form > p input[type="checkbox"],
  .quote_modal .form form .wpcf7-acceptance input[type="checkbox"] {
    width: 2rem;
    height: 2rem;
    min-width: 2rem;
  }
  .quote_modal .form form .btn {
    font-size: 1.5rem;
  }
}

/* quote modal overrides — adapt to current CF7 markup (.label div + wpcf7-submit input) */
.quote_modal_inner .head.white .subtitle {
  color: var(--primary);
}
.quote_modal_inner .head strong {
  display: block;
  color: var(--title);
  font-size: 2.4rem;
  line-height: 1.35;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.quote_modal_inner .head strong span {
  display: block;
  color: var(--primary);
}
.quote_modal .form form label {
  display: block;
  width: 100%;
  margin-bottom: 0;
}
.quote_modal .form form span.col2 > label,
.quote_modal .form form span.col_file > label,
.quote_modal .form form span.col_textarea > label,
.quote_modal .form form > span > label {
  display: block;
  align-items: unset;
}
.quote_modal .form form .label {
  display: block;
  max-width: max-content;
  font-size: 1.4rem;
  font-weight: 600;
  color: #303030;
  text-transform: capitalize;
  cursor: pointer;
  margin-bottom: 0.8rem;
}
.quote_modal .form form .label i {
  color: var(--primary);
  margin-left: 0.3rem;
}
.quote_modal .form form input[type="submit"].wpcf7-submit {
  display: block;
  width: 100%;
  height: 5rem;
  border: none;
  cursor: pointer;
  font: inherit;
  font-size: 1.6rem;
  font-weight: 600;
  color: #fff;
  border-radius: 1rem;
  background-color: var(--primary);
  transition: all 0.3s;
  margin-top: 0.5rem;
}
.quote_modal .form form input[type="submit"].wpcf7-submit:hover {
  background-color: var(--secondary);
}
@media (max-width: 768px) {
  .quote_modal_inner .head strong {
    font-size: 1.8rem;
  }
}
/* === /btn_quote === */

/* === btn_search === */
div.search-block {
    position: fixed;
    z-index: 998;
    background-color: #fff;
    box-shadow: 0 0 15px rgba(0, 55, 96, 0.12);
    width: 100%;
    bottom: -100vh;
    height: 100vh;
    transition: 0.3s ease;
  }
  div.search-block.active {
    bottom: 0;
    opacity: 1;
    transform: translateY(150px);
  }
  div.search-block div.content {
    position: relative;
    display: block;
  }
  .wd-action-btn {
    display: inline-flex;
    vertical-align: middle;
    background: url(../../global/img/cloes.svg) no-repeat center;
    background-size: contain;
    position: absolute;
    top: 38px;
    right: 0;
    z-index: 1;
    width: 28px;
    height: 28px;
    transition: all 0.3s;
    cursor: pointer;
  }
  .wd-action-btn:hover {
    transform: rotate(180deg);
  }
  div.search-block .searchform {
    border-bottom: 1px solid rgba(119, 119, 119, 0.2);
    /* opacity: 0; */
    transition: opacity 0.35s ease 0.2s;
    --wd-form-color: #333;
    --wd-form-placeholder-color: #333;
    text-align: center;
    transition: 0.75s all ease;
  }
  div.search-block.active .searchform {
    opacity: 1;
  }
  div.search-block .searchform input[type='text'] {
    padding: 0;
    height: 110px;
    border: none;
    text-align: center;
    font-size: 35px;
    outline: none;
  }
  header div.main-menu div.main div.right {
    display: none;
  }
  div.search-block .searchform ::-webkit-input-placeholder {
    color: #333333;
  }
  
  @media (max-width: 768px) { 
    div.search-block div.content {
      height: 100%;
    }
    div.search-block {
      height: calc(100vh - 150px);
    }
    div.search-block.active {
      transform: translate(0);
    }
    div.search-block .searchform {
      padding-top: 2rem;
      display: grid;
      align-items: center;
      grid-template-columns: 1fr auto;
      gap: 12px;
    }
    div.search-block .searchform input[type='text'] {
      height: 42px;
      min-width: unset;
      width: 100%;
      font-size: 22px;
    }
    div.search-block .searchform input[type='submit'] {
      display: block;
      width: 20px;
      filter: contrast(0) brightness(0);
      height: 20px;
      background: url(../img/icon-search.svg) no-repeat center/contain;
    }
    .wd-action-btn {
      right: 2rem;
      bottom: 2rem;
      top: unset;
    }
  }
/* === /btn_search === */
