* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --primary: #1281cc;
  --secondary: #1779d1;
  --title: #565f68;
  --text: #7a7d82;
  --bg: #f2f6f9;
  --bg2: #f4f7fb;
}
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-size: inherit;
  font-family: inherit;
  color: inherit;
  text-transform: inherit;
  font-weight: inherit;
  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: "Inter", sans-serif;
  animation: fadeIn 0.4s ease-in forwards;
}
body.fixed {
  overflow: hidden;
  padding-right: 15px;
}
body [data-wpr-lazyrender] {
  content-visibility: unset;
}
.Oswald,
h1,
h2,
h3,
strong,
.title,
th {
  font-family: "Oswald", sans-serif;
}
.Inter,
p strong {
  font-family: "Inter", sans-serif;
}
.Inter h3,
p strong h3,
.Inter strong,
p strong strong {
  font-family: "Inter", sans-serif;
}
@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 {
  transition: all 0.3s;
}
.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;
}
.btn {
  font-family: "Oswald", sans-serif;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  cursor: pointer;
  text-transform: uppercase;
  transition: all 0.3s;
  background-color: var(--primary);
  border: 2px solid var(--primary);
  color: #fff;
  font-weight: 600;
  font-size: 2rem;
  gap: 1.3rem;
  line-height: 5.6rem;
  padding: 0 2.8rem;
}
.btn::after {
  display: inline-block;
  flex-shrink: 0;
  content: '';
  transition: all 0.3s;
  width: 0.85em;
  height: 0.64em;
  filter: contrast(0) brightness(2);
  background: url("../img/arrow-r.svg") no-repeat center bottom / contain;
}
.btn:hover {
  background-color: transparent;
  color: var(--primary);
}
.btn:hover::after {
  filter: none;
  transform: translateX(20%);
}
.btn.no_a {
  padding: 0 2.2rem;
}
.btn.no_a::after {
  display: none;
}
.btn.wt {
  background-color: #fff;
  border-color: #fff;
  color: var(--primary);
}
.btn.wt::after {
  filter: none;
}
.btn.wt:hover {
  background-color: var(--primary);
  border-color: var(--primary);
  color: #fff;
}
.btn.wt:hover::after {
  filter: contrast(0) brightness(2);
}
.btn_line {
  font-family: "Oswald", sans-serif;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  cursor: pointer;
  text-transform: uppercase;
  transition: all 0.3s;
  background-color: transparent;
  border: 1px solid #e8e8eb;
  color: var(--title);
  font-weight: 600;
  font-size: 2rem;
  gap: 1.1rem;
  line-height: 5.9rem;
  padding: 0 3rem;
}
.btn_line::after {
  display: inline-block;
  flex-shrink: 0;
  content: '';
  transition: all 0.3s;
  width: 0.85em;
  height: 0.64em;
  filter: contrast(0) brightness(0.7);
  background: url("../img/arrow-r.svg") no-repeat center bottom / contain;
}
.btn_line:hover {
  background-color: var(--primary);
  border-color: var(--primary);
  color: #fff;
}
.btn_line:hover::after {
  transform: translateX(20%);
  filter: contrast(0) brightness(2);
}
.btn_line.no_a::after {
  display: none;
}
.btn_line.pm {
  border-color: var(--primary);
  color: var(--primary);
}
.btn_line.pm::after {
  filter: none;
}
.btn_line.pm:hover {
  color: #fff;
}
.btn_line.pm:hover::after {
  filter: contrast(0) brightness(2);
}
.swiper_btns {
  gap: 3.6rem;
  display: flex;
}
.swiper_btns div {
  width: 6rem;
  cursor: pointer;
  transition: all 0.3s;
  background-color: #ebeff2;
}
.swiper_btns div::after {
  content: '';
  display: block;
  width: 100%;
  padding-bottom: 100%;
  transition: all 0.3s;
  background: url(../img/arrow-r.svg) no-repeat center / 28.33%;
  filter: contrast(0) brightness(0.7);
}
.swiper_btns div:hover {
  border-color: var(--primary);
  background-color: var(--primary);
}
.swiper_btns div:hover::after {
  filter: contrast(0) brightness(2);
}
.swiper_btns .btn_prev::after {
  transform: rotate(180deg);
}
.swiper_btns .swiper-button-disabled {
  cursor: default;
  pointer-events: none;
  background-color: #ebeff2;
  opacity: 0.5;
}
.swiper_btns .swiper-button-disabled::after {
  filter: contrast(0) brightness(0.7);
}
.swiper_btns .swiper-button-disabled:hover {
  background-color: #ebeff2;
}
.swiper_btns .swiper-button-disabled:hover::after {
  filter: contrast(0) brightness(0.7);
}
.swiper_btns:has(.swiper-button-lock) {
  opacity: 0;
}
.swiper_btns.middle {
  width: 98%;
  max-width: 159.8rem;
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  pointer-events: none;
  transform: translate(-50%, -50%);
  justify-content: space-between;
}
.swiper_btns.middle div {
  pointer-events: all;
}
.swiper_btns.middle .swiper-button-disabled,
.swiper_btns.middle .swiper-button-lock {
  pointer-events: none;
}
.center .tcon h2::before,
.center.tcon h2::before {
  left: 50%;
  transform: translateX(-50%);
}
.tcon h1,
.tcon .hd_h1 {
  font-family: "Oswald", sans-serif;
  font-size: 6rem;
  line-height: 1.3;
  font-weight: 700;
  text-transform: uppercase;
}
.tcon h2 {
  position: relative;
  z-index: 2;
  font-size: 6rem;
  line-height: 1.03333;
  font-weight: 600;
  text-transform: uppercase;
}
.tcon h2::before {
  position: absolute;
  left: -0.058862em;
  bottom: -0.0981em;
  z-index: -1;
  font-size: 2.548333em;
  line-height: 0.966645;
  color: transparent;
  -webkit-text-stroke: 1px rgba(135, 135, 135, 0.25);
  white-space: nowrap;
  content: attr(data-h2);
}
.tcon p {
  font-size: 2.2rem;
  line-height: 2.8rem;
  color: var(--text);
  letter-spacing: 0.00818em;
}
.tcon.bn p {
  font-size: 2.4rem;
  line-height: 3.8rem;
  font-weight: 500;
  color: #616a75;
  letter-spacing: 0.0133em;
}
.tcon.full h2::before {
  color: var(--bg2);
  -webkit-text-stroke: unset;
  line-height: 1.05;
}
.tcon.sm p {
  font-size: 1.9rem;
  line-height: 3rem;
  letter-spacing: 0.00211em;
}
header {
  position: sticky;
  left: 0;
  top: -122px;
  right: 0;
  z-index: 996;
  transition: all 0.3s;
  background-color: #fff;
}
header.style {
  top: 0;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}
header .content {
  max-width: 157.2rem;
}
header .flex {
  gap: 4.13486%;
}
header .logo {
  display: block;
  position: relative;
  margin-right: auto;
  padding-bottom: 1px;
}
header .logo img {
  display: block;
  width: auto;
  height: 10.1rem;
}
header .logo p {
  width: 1px;
  height: 1px;
  overflow: hidden;
  position: absolute;
  clip: rect(1px, 1px, 1px, 1px);
}
header nav {
  text-transform: uppercase;
}
header nav .close {
  display: none;
}
header nav .menu {
  gap: 4.65rem;
  display: flex;
}
header nav .menu > li {
  position: relative;
  z-index: 2;
}
header nav .menu > li > a {
  display: block;
  font-size: 25px;
  font-weight: 700;
  color: #626872;
  line-height: 48px;
  padding-top: 3px;
  transition: all 0.3s;
  letter-spacing: 0.008em;
}
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: 180px;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
header nav .sub-menu > li {
  position: relative;
}
header nav .sub-menu > li > a {
  display: block;
  font-size: 16px;
  white-space: nowrap;
  padding: 12px 18px;
  transition: all 0.3s;
}
header nav .sub-menu > li > a:hover {
  background-color: var(--primary);
  color: #fff;
}
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: 0;
}
header .btns {
  flex: 1;
  max-width: 48.7rem;
  gap: 4.6rem;
  display: flex;
  align-items: center;
  text-transform: uppercase;
  font-size: 22px;
  font-weight: 700;
  color: #626872;
  min-height: 122px;
}
header .btns .search_box {
  flex: 1;
}
header .btns .search_box form {
  display: grid;
  grid-template-columns: 1fr 6.9rem;
  border: 2px solid #dedee2;
  transition: border-color 0.2s;
  height: 7.1rem;
}
header .btns .search_box form:focus-within {
  border-color: var(--primary);
}
header .btns .search_box form input {
  display: block;
  width: 100%;
  padding: 2px 2.5rem 0;
}
header .btns .search_box form input[type=submit] {
  padding: 0;
  text-indent: -999px;
  overflow: hidden;
  background: url("../img/icon-search.svg") no-repeat center / 28.99%;
}
header .btns .btn_lang {
  display: block;
  position: relative;
  transition: all 0.3s;
  padding: 0 0.98em 0 1.54em;
  margin-top: 2px;
}
header .btns .btn_lang:hover {
  color: var(--primary);
}
header .btns .btn_lang::before,
header .btns .btn_lang::after {
  position: absolute;
  content: '';
  top: 50%;
  transform: translateY(-50%);
  background: no-repeat center / contain;
}
header .btns .btn_lang::before {
  width: 0.955em;
  height: 0.955em;
  left: 0;
  background-image: url("../img/icon-lang.svg");
}
header .btns .btn_lang::after {
  width: 0.591em;
  height: 0.591em;
  right: 0.091em;
  background-image: url("../img/lang-select.svg");
}
header .btns .btn_menu,
header .btns .btn_search {
  display: none;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  overflow: hidden;
  text-indent: -999px;
  background: url(../img/nav-btn.svg) no-repeat center / 52.3%;
}
header .btns .btn_search {
  background-image: url("../img/icon-search.svg");
  background-size: 45.5%;
}
footer .main {
  padding: 17.3rem 0 7.2rem;
}
footer .main strong {
  display: block;
  font-size: 2.6rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 2rem;
  letter-spacing: 0.03em;
}
footer .main .foot_intro {
  margin-top: -8.3rem;
  margin-right: 3%;
}
footer .main .foot_intro .logo {
  display: block;
  position: relative;
  max-width: 17.5rem;
  margin: 0 auto;
}
footer .main .foot_intro .logo img {
  display: block;
  width: 100%;
  height: auto;
}
footer .main .foot_intro .logo p {
  width: 1px;
  height: 1px;
  overflow: hidden;
  position: absolute;
  clip: rect(1px, 1px, 1px, 1px);
}
footer .main .foot_intro p {
  font-size: 2.4rem;
  line-height: 1.333;
  font-weight: 500;
  color: var(--text);
  text-align: center;
  max-width: 27.6rem;
  margin: 2rem auto 0;
  letter-spacing: 0.0125em;
}
footer .main .foot_intro .social {
  gap: 2rem 0.9rem;
  display: flex;
  flex-wrap: wrap;
  margin-top: 2rem;
}
footer .main .foot_intro .social a {
  opacity: 1;
  display: block;
  width: 5.2rem;
  height: 5.2rem;
  overflow: hidden;
  text-indent: -999px;
  position: relative;
  transition: all 0.3s;
  border-radius: 50%;
  background-color: var(--bg);
}
footer .main .foot_intro .social a::after {
  content: '';
  display: block;
  position: absolute;
  inset: 0;
  background: no-repeat center / 38.5%;
  transition: all 0.3s;
}
footer .main .foot_intro .social a:hover {
  transform: scale(1.1);
  background-color: var(--primary);
}
footer .main .foot_intro .social a:hover::after {
  filter: contrast(0) brightness(2);
}
footer .main .foot_intro .social .facebook a::after {
  background-image: url(../img/social-facebook.svg);
}
footer .main .foot_intro .social .whatsapp a::after {
  background-image: url(../img/social-whatsapp.svg);
}
footer .main .foot_intro .social .youtube a::after {
  background-image: url(../img/social-youtube.svg);
}
footer .main .foot_intro .social .instagram a::after {
  background-image: url(../img/social-instagram.svg);
}
footer .main .foot_intro .social .linkedin a::after {
  background-image: url(../img/social-linkedin.svg);
}
footer .main .foot_nav {
  min-width: 9.7015%;
}
footer .main .foot_nav li + li {
  margin-top: 1.4rem;
}
footer .main .foot_nav li a {
  font-size: 2rem;
  font-weight: 500;
  color: var(--text);
  transition: all 0.3s;
  vertical-align: top;
  text-decoration: underline transparent;
  letter-spacing: 0.004em;
}
footer .main .foot_nav li a:hover {
  opacity: 1;
  color: var(--primary);
  text-decoration-color: var(--primary);
}
footer .main .foot_connect {
  width: 25.45%;
}
footer .main .foot_connect li {
  position: relative;
  padding-left: 2.8125em;
}
footer .main .foot_connect li::before {
  content: '';
  display: block;
  width: 1.8125em;
  height: 1.8125em;
  background: no-repeat center left / contain;
  position: absolute;
  left: 0;
  top: 0.0625em;
}
footer .main .foot_connect li .label {
  color: var(--text);
  opacity: 0.76;
  text-transform: uppercase;
  margin-bottom: 0.3rem;
  letter-spacing: 0.06em;
}
footer .main .foot_connect li a,
footer .main .foot_connect li p {
  font-size: 2rem;
  line-height: 1.2;
  font-weight: 500;
  letter-spacing: 0.004em;
}
footer .main .foot_connect li a {
  transition: all 0.3s;
  vertical-align: top;
  text-decoration: underline transparent;
}
footer .main .foot_connect li a:hover {
  opacity: 1;
  color: var(--primary);
  text-decoration-color: var(--primary);
}
footer .main .foot_connect li p {
  padding-top: 0.3rem;
}
footer .main .foot_connect .website .label {
  margin-bottom: 0.6rem;
}
footer .main .foot_connect li + li {
  margin-top: 2.4rem;
}
footer .main .foot_connect .phone .label {
  margin-bottom: 0.4rem;
}
footer .main .foot_connect .email {
  margin-top: 2.1rem;
}
footer .main .foot_connect .phone::before {
  background-image: url(../img/icon-phone.svg);
  background-size: 86.21%;
  background-position-y: bottom;
  top: 0.1875em;
}
footer .main .foot_connect .email::before {
  background-image: url(../img/icon-email.svg);
}
footer .main .foot_connect .locate::before {
  background-image: url(../img/icon-locate.svg);
  background-size: 96.6%;
  background-position-y: bottom;
  top: 0.125em;
}
footer .main .foot_connect .website::before {
  background-image: url(../img/icon-website.svg);
}
footer .bottom {
  border-top: 1px solid rgba(11, 26, 51, 0.11);
  color: rgba(98, 101, 107, 0.7);
  padding: 1.8rem 0 1.9rem;
}
footer .bottom p {
  font-size: 1.7rem;
  letter-spacing: -0.0024em;
}
footer .bottom a {
  transition: all 0.3s;
  text-decoration: underline transparent;
  letter-spacing: -0.0044em;
}
footer .bottom a:hover {
  color: var(--primary);
  text-decoration-color: var(--primary);
}
footer .bottom ul {
  gap: 2rem 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
footer .bottom ul li {
  display: flex;
  align-items: center;
}
footer .bottom ul li::before {
  display: inline-block;
  width: 1px;
  height: 0.6875em;
  background-color: #0b1a33;
  opacity: 0.15;
  content: '';
  margin: 0 1.125em 0 1.0625em;
}
footer .bottom ul li:first-child::before {
  display: none;
}
footer #backtop {
  position: fixed;
  z-index: 99;
  right: 1.7rem;
  bottom: 1.8rem;
  display: block;
  cursor: pointer;
  transition: all 0.3s;
  width: 5.2rem;
  height: 5.2rem;
  background: url("../img/arrow-t-w.svg") no-repeat center / 19.231% var(--primary);
  opacity: 0;
  transform: translateY(100%);
}
footer #backtop.show {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
footer #backtop:hover {
  transform: scale(1.1);
}
.section_about {
  position: relative;
}
.section_about .flex {
  max-width: 192rem;
  margin: 0 auto;
}
.section_about .img.img_cv {
  width: 48.22916667%;
  height: auto;
}
.section_about .img.img_cv + .flex1 {
  width: 100%;
  max-width: 89.7rem;
}
.section_about .flex1 {
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
}
.section_about .head {
  padding: 4rem 3rem;
  margin-top: 0.8rem;
}
.section_about .head h3 {
  font-size: 2.2rem;
  line-height: 1.2273;
  font-weight: 600;
  color: var(--text);
  max-width: 57.7rem;
  margin-top: 3.6rem;
  letter-spacing: 0.006em;
}
.section_about p {
  max-width: 57.7rem;
  margin-top: 2.43rem;
}
.section_about p + p {
  margin-top: 3rem;
}
.section_about .btn {
  margin-top: 5rem;
}
.section_about .watermarker {
  position: absolute;
  z-index: -1;
  right: 0;
  bottom: 0;
  font-size: 12.8rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--bg2);
  white-space: nowrap;
  line-height: 0.9;
}
.section_about .floats {
  top: -56.146%;
  bottom: -50.1%;
}
.section_nums {
  background-color: var(--bg2);
  padding: 6.4rem 0 5.9rem;
}
.section_nums .nums ul {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
}
.section_nums .nums li {
  flex: 1;
  text-align: center;
  text-transform: uppercase;
}
.section_nums .nums li strong {
  font-size: 5.5rem;
  line-height: 1;
  font-weight: 600;
}
.section_nums .nums li strong:has(.num) {
  white-space: nowrap;
}
.section_nums .nums li p {
  font-size: 1.9rem;
  color: var(--text);
  margin-top: 1.8rem;
  letter-spacing: 0.00211em;
}
.footer_contact {
  position: relative;
  z-index: 2;
  background-color: var(--bg);
  overflow: hidden;
  padding: 12.7rem 0 10.6rem;
}
.footer_contact .head {
  flex: 1;
  width: 100%;
  padding-top: 5.373134%;
  max-width: 35.3rem;
}
.footer_contact p {
  margin-top: 1.5rem;
}
.footer_contact .connect {
  margin-top: 4.9rem;
}
.footer_contact .connect li + li {
  margin-top: 4.9rem;
}
.footer_contact .connect li {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  font-size: 1.9rem;
  padding-left: 4.73684211em;
  min-height: 3.579em;
  gap: 0.211em;
  padding-top: 2px;
}
.footer_contact .connect li::before {
  position: absolute;
  left: 0;
  top: 0;
  content: '';
  width: 3.579em;
  height: 3.579em;
  background: no-repeat center / 36.8% var(--primary);
}
.footer_contact .connect li .label {
  color: var(--text);
  opacity: 0.64;
  text-transform: uppercase;
}
.footer_contact .connect li a {
  font-size: 2.2rem;
  font-weight: 600;
  vertical-align: top;
  transition: all 0.3s;
  text-decoration: underline transparent;
}
.footer_contact .connect li a:hover {
  color: var(--primary);
  text-decoration-color: var(--primary);
}
.footer_contact .connect .phone::before {
  background-image: url("../img/icon-phone-w.svg");
}
.footer_contact .connect .email::before {
  background-image: url("../img/icon-email-w.svg");
  background-size: 43%;
}
.footer_contact .quote_form {
  width: 56.79104478%;
}
.footer_contact .floats {
  top: -31.1%;
}
.section_banner {
  background-color: #d1e5f0;
}
.section_banner.img_bg > picture {
  max-width: 256rem;
  left: 50%;
  transform: translateX(-50%);
}
.section_banner .flex {
  min-height: 69.2rem;
  padding: 6rem 0;
}
.section_banner .head {
  width: 50%;
  padding-bottom: 0.6%;
}
.section_banner p {
  max-width: 60rem;
  margin-top: 1.8rem;
}
.section_banner .btn {
  margin-top: 3rem;
}
.section_banner form {
  display: grid;
  grid-template-columns: 1fr 6.7rem;
  background-color: #fff;
  height: 6.6rem;
  max-width: 51rem;
  margin-top: 2.8rem;
}
.section_banner form input {
  display: block;
  font-size: 2.2rem;
  color: #6b7785;
  border: 1px solid transparent;
  border-right: none;
  transition: all 0.3s;
  padding: 0 3.1rem;
  letter-spacing: -0.0164em;
}
.section_banner form input::placeholder {
  color: #6b7785;
}
.section_banner form input:focus {
  border-color: var(--primary);
}
.section_banner form input[type=submit] {
  border: none;
  padding: 0;
  text-indent: -999px;
  overflow: hidden;
  background: url("../img/icon-search-w.svg") no-repeat center / 29.9% var(--primary);
}
.section_banner form input[type=submit]:hover {
  background-color: rgba(18, 129, 204, 0.7);
}
.breadcrumbs {
  line-height: 3rem;
  min-height: 3.4rem;
}
.breadcrumbs span {
  font-size: 1.8rem;
  color: var(--text);
}
.breadcrumbs span span::before {
  display: inline-block;
  content: '';
  width: 0.389em;
  height: 0.389em;
  margin: 0 0.6112em 0 0.33em;
  background: url("../img/nav-r.svg") no-repeat center / contain;
}
.breadcrumbs span span:first-child::before {
  display: none;
}
.breadcrumbs span a {
  vertical-align: top;
  text-decoration: underline transparent;
  transition: all 0.3s;
}
.breadcrumbs span a:hover {
  color: var(--primary);
  text-decoration-color: var(--primary);
}
.quote_form form {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  background-color: #fff;
  border: 1px solid #e8e8eb;
  gap: 3.8rem 0;
  padding: 8.0157687% 6.7017083% 7.0959264% 6.8331143%;
}
.quote_form form > span {
  width: 100%;
}
.quote_form form .wpcf7-form-control-wrap:not(:has(input[type="checkbox"])) {
  display: block;
  width: 100%;
}
.quote_form form .col-2 {
  width: 48.40182648%;
}
.quote_form form .label {
  display: block;
  font-size: 1.9rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}
.quote_form form label:has([aria-required="true"]) .label::after {
  content: '*';
  margin-left: 0.25em;
  color: #d63638;
}
.quote_form form input:not([type="checkbox"]):not([type="submit"]):not([type="hidden"]),
.quote_form form textarea,
.quote_form form select {
  display: block;
  width: 100%;
  font-size: 1.9rem;
  color: var(--text);
  border: 1px solid #e8e8eb;
  background-color: #fff;
  transition: border-color 0.2s;
  height: 6.3rem;
  padding: 0 2.5rem;
}
.quote_form form input::placeholder,
.quote_form form textarea::placeholder,
.quote_form form select::placeholder {
  color: var(--text);
  opacity: 0.75;
}
.quote_form form input:focus,
.quote_form form textarea:focus,
.quote_form form select:focus,
.quote_form form input.focus,
.quote_form form textarea.focus,
.quote_form form select.focus {
  border-color: var(--primary);
}
.quote_form form select {
  outline: none;
  background: url("../img/icon-select.svg") no-repeat center right 2rem/1.3rem #fff;
  padding-right: 4rem;
}
.quote_form form textarea {
  padding: 2.5rem 2.5rem;
  height: 16.4rem;
  margin-top: -1px;
}
.quote_form form > span:has(input[type=checkbox]) {
  margin-top: -2.3rem;
}
.quote_form form label:has(input[type=checkbox]) {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 1.6rem;
  align-items: start;
}
.quote_form form .wpcf7-form-control-wrap:has(input[type=checkbox]) {
  display: contents;
}
.quote_form form .wpcf7-acceptance,
.quote_form form .wpcf7-list-item {
  display: block;
  width: auto;
  margin: 0;
  grid-column: 1;
  grid-row: 1;
}
.quote_form form input[type=checkbox] {
  display: block;
  width: 2.7rem;
  height: 2.7rem;
  padding: 0;
  border: 1px solid #e8e8eb;
  background-color: #fff;
}
.quote_form form input[type=checkbox]::after {
  display: block;
  width: 100%;
  height: 100%;
  content: '';
  background: url(../img/gou.svg) no-repeat center / 80%;
  transition: all 0.3s;
  filter: contrast(0) brightness(2);
  opacity: 0;
  pointer-events: none;
}
.quote_form form input[type=checkbox]:checked {
  border-color: var(--primary);
  background-color: var(--primary);
}
.quote_form form input[type=checkbox]:checked::after {
  opacity: 1;
}
.quote_form form label:has(input[type=checkbox]) > span:not(.wpcf7-form-control-wrap) {
  display: block;
  cursor: pointer;
  font-size: 1.7rem;
  line-height: 2.8rem;
  color: var(--text);
  width: auto;
  padding-left: 0;
  grid-column: 2;
  grid-row: 1;
  letter-spacing: -0.0024em;
}
.quote_form form label:has(input[type=checkbox]) > span:not(.wpcf7-form-control-wrap) a {
  color: var(--primary);
  text-decoration: underline;
  transition: all 0.3s;
}
.quote_form form label:has(input[type=checkbox]) > span:not(.wpcf7-form-control-wrap) a:hover {
  text-decoration-color: transparent;
}
.quote_form form > span:has(.btn) {
  margin-top: -1.1rem;
}
.quote_form form .btn {
  position: relative;
  gap: 1.5rem;
  white-space: nowrap;
  width: auto;
  max-width: 100%;
}
.quote_form form .btn::after {
  pointer-events: none;
}
.quote_form form .btn input,
.quote_form form .btn input[type="submit"] {
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  opacity: 0;
  cursor: pointer;
  z-index: 2;
  border: none;
  background: transparent;
  appearance: none;
  -webkit-appearance: none;
}
.quote_form form .btn .wpcf7-spinner {
  position: absolute;
  top: 50%;
  right: -3.2rem;
  width: 24px;
  height: 24px;
  margin: 0;
  transform: translateY(-50%);
}
.quote_form form .wpcf7-not-valid-tip {
  grid-column: 1 / -1;
  grid-row: 2;
  width: 100%;
  margin-top: 0.8rem;
  font-size: 1.5rem;
  line-height: 1.45;
  color: #d63638;
}
.quote_form form .wpcf7-not-valid:not([type="checkbox"]):not([type="submit"]) {
  border-color: #d63638;
}
.quote_form form .wpcf7-acceptance.wpcf7-not-valid input[type="checkbox"] {
  border-color: #d63638;
}
.quote_form .wpcf7 form .wpcf7-response-output {
  width: 100%;
  margin: 0;
  padding: 1.2rem 1.6rem;
  font-size: 1.6rem;
  line-height: 1.5;
  border-width: 1px;
  background: #fff8e5;
  color: #8a5a00;
}
.quote_form .wpcf7 form.sent .wpcf7-response-output {
  background: #f0faf1;
  border-color: #46b450;
  color: #1e7a28;
}
.quote_form .wpcf7 form.failed .wpcf7-response-output,
.quote_form .wpcf7 form.aborted .wpcf7-response-output {
  background: #fff2f2;
  border-color: #dc3232;
  color: #a31717;
}
.quote_form .wpcf7 form.invalid .wpcf7-response-output,
.quote_form .wpcf7 form.unaccepted .wpcf7-response-output {
  background: #fff8e5;
  border-color: #e6a800;
  color: #8a5a00;
}
.floats {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  overflow: hidden;
  z-index: -1;
  pointer-events: none;
}
.floats ul {
  position: relative;
  max-width: 192rem;
  margin: 0 auto;
  height: 100%;
}
.floats .img {
  position: absolute;
  width: 11%;
  max-width: 20.1rem;
  height: auto;
}
.floats .img img {
  opacity: 0.28;
}
.floats .fl1 {
  left: -1.75%;
  bottom: 0;
}
.floats .fl2 {
  right: 0;
  top: 0;
}
.product_list a {
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 1px solid #e6e7e8;
}
.product_list a:hover img {
  transform: scale(1.03);
}
.product_list .img {
  display: flex;
  justify-content: center;
  background-image: linear-gradient(to bottom, #edf0f2 6.3%, #fff 52%, #edf0f2 94%);
  padding-bottom: 78.05642633%;
}
.product_list .img.img_ab img {
  left: unset;
  width: 78.05642633%;
}
.product_list .info {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 5.05157% 8.1504702% 6.5830721%;
}
.product_list .title {
  font-size: 2.4rem;
  font-weight: 600;
}
.product_list .desc {
  flex: 1;
  font-size: 1.8rem;
  line-height: 1.47166667;
  color: var(--text);
  border-top: 1px solid #ededed;
  hyphens: auto;
  padding-top: 1.4rem;
  margin-top: 1.6rem;
}
.product_list .desc p {
  margin-top: 2px;
}
.product_list .desc ul {
  padding-bottom: 0.5rem;
}
.product_list .desc ul li + li {
  margin-top: 0.1944em;
}
.product_list .btn {
  margin-top: 2.8rem;
  line-height: 4.4rem;
}
.news_list a {
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 1px solid #e8e8eb;
}
.news_list a:hover img {
  transform: scale(1.03);
}
.news_list .img {
  padding-bottom: 65.55819477%;
}
.news_list .info {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 6.175772% 7.8384798% 5.4631829%;
}
.news_list .info .text {
  flex: 1;
}
.news_list .info .metas {
  display: flex;
  flex-wrap: wrap;
  text-transform: uppercase;
  font-size: 1.5rem;
  color: var(--text);
  gap: 0.8rem;
  letter-spacing: -0.0067em;
}
.news_list .info .metas .cat {
  font-size: 1.1334em;
  font-weight: 500;
  letter-spacing: normal;
  margin-right: -0.11em;
}
.news_list .info .metas a {
  color: inherit;
}
.news_list .info .title {
  font-size: 2.5rem;
  line-height: 1.2;
  font-weight: 600;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 3;
  margin-top: 1rem;
}
.news_list .info .desc {
  font-size: 1.7rem;
  line-height: 2.4rem;
  color: var(--text);
  hyphens: auto;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 3;
  letter-spacing: -0.0024em;
  margin-top: 1.4rem;
}
.news_list .info .btn {
  margin-top: 2.7rem;
  line-height: 4.6rem;
}
@media screen and (min-width: 769px) and (max-width: 1660px) {
  header nav .menu > li > a,
  header .btns {
    font-size: 20px;
  }
}
@media screen and (min-width: 769px) and (max-width: 1440px) {
  header nav .menu > li > a,
  header .btns {
    font-size: 18px;
  }
}
@media screen and (min-width: 769px) and (max-width: 1220px) {
  .content {
    padding: 0 3rem;
  }
  header nav .menu > li > a,
  header .btns {
    font-size: 16px;
  }
  header .flex {
    gap: 3rem;
  }
  .tcon h2::before {
    font-size: 2em;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .content,
  .swiper_content {
    max-width: 896px;
  }
  .tcon h1,
  .tcon .hd_h1 {
    font-size: 5rem;
  }
  .tcon h2 {
    font-size: 5rem;
  }
  .section_nums .nums li strong {
    font-size: 5rem;
  }
}
@media screen and (max-width: 1024px) {
  header .flex {
    justify-content: space-between;
  }
  header nav {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    pointer-events: none;
    display: flex;
    --radius: 0;
  }
  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 {
    padding: 12px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }
  header nav .close_box .close {
    display: block;
    width: 40px;
    height: 40px;
    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 {
    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);
    color: var(--title);
  }
  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 .logo,
  header .btns {
    margin: 0;
    padding: 0;
  }
  header .btns {
    max-width: 60rem;
  }
  header .btns .btn_menu {
    display: block;
  }
  header .btns .btn_search,
  header .btns .btn_lang,
  header .btns .btn {
    margin: 0;
  }
}
@media screen and (min-width: 769px) and (max-width: 896px) {
  .content,
  .swiper_content {
    max-width: 768px;
  }
  .tcon h2 {
    font-size: 4rem;
  }
  .section_nums .nums li p {
    font-size: 1.7rem;
  }
}
@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;
    gap: 8px;
    border-width: 1px;
  }
  .btn.no_a {
    padding: 0 20px;
  }
  .swiper_btns {
    gap: 14px;
  }
  .swiper_btns div {
    width: 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: 14px;
    margin-bottom: 8px;
  }
  .tcon h1,
  .tcon .hd_h1 {
    font-size: 38px;
    line-height: 1.3;
  }
  .tcon h2 {
    font-size: 30px;
    line-height: 1.2;
  }
  .tcon h2::before {
    font-size: 2em;
  }
  .tcon .desc,
  .tcon p {
    font-size: 14px;
    line-height: 1.5;
    margin-top: 10px;
  }
  .tcon.bn p,
  .tcon.sm p {
    font-size: 14px;
    line-height: 1.5;
  }
  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;
    gap: 8px;
    margin-top: 20px;
  }
  div.head .btns {
    gap: 14px;
    margin-top: 20px;
  }
  div.head .btns .btn,
  div.head .btns .btn_line {
    margin: 0;
    padding: 0 20px;
    line-height: 42px;
  }
  header {
    top: 0;
  }
  header .logo img {
    height: 50px;
  }
  header .btns {
    justify-content: flex-end;
    font-size: 14px;
    gap: 14px;
    min-height: 64px;
  }
  header .btns .btn_lang {
    padding: 0 20px 0 30px;
  }
  header .btns .btn_lang::before {
    width: 18px;
    height: 18px;
  }
  header .btns .btn_lang::after {
    width: 10px;
    height: 10px;
    right: 0;
  }
  header .btns .search_box {
    max-width: 300px;
  }
  header .btns .search_box form {
    grid-template-columns: 1fr 44px;
    height: 48px;
  }
  header .btns .search_box form input {
    padding: 0 20px;
  }
  footer .main {
    display: block;
    padding: 50px 0;
  }
  footer .main strong {
    font-size: 16px;
    margin-bottom: 16px;
  }
  footer .main .foot_intro {
    margin: 0;
    padding-bottom: 20px;
  }
  footer .main .foot_intro .logo {
    max-width: 120px;
  }
  footer .main .foot_intro p {
    max-width: 200px;
    font-size: 16px;
    margin-top: 20px;
  }
  footer .main .foot_intro .social {
    width: 100%;
    justify-content: space-around;
    gap: 8px;
    margin-top: 30px;
  }
  footer .main .foot_intro .social a {
    width: 44px;
    height: 44px;
  }
  footer .main .foot_nav {
    width: 100%;
    min-width: unset;
  }
  footer .main .foot_nav strong {
    line-height: 46px;
    border: 1px solid #e8e8eb;
    padding: 0 22px;
    position: relative;
  }
  footer .main .foot_nav strong::after {
    content: '';
    display: block;
    width: 12px;
    height: 12px;
    background: url(../img/icon-select.svg) no-repeat center / contain;
    position: absolute;
    right: 22px;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s;
  }
  footer .main .foot_nav.active strong::after {
    transform: translateY(-50%) rotate(180deg);
  }
  footer .main .foot_nav > div {
    display: none;
    padding: 0 20px 20px;
  }
  footer .main .foot_nav > div li + li {
    margin-top: 14px;
  }
  footer .main .foot_nav > div a {
    font-size: 14px;
    display: block;
    font-weight: normal;
  }
  footer .main .foot_nav > div p {
    font-size: 14px;
    line-height: 1.5;
  }
  footer .main .foot_connect {
    width: 100%;
    padding-top: 20px;
  }
  footer .main .foot_connect li .label {
    margin-bottom: 2px;
  }
  footer .main .foot_connect li a,
  footer .main .foot_connect li p {
    font-size: 16px;
  }
  footer .main .foot_connect .website .label,
  footer .main .foot_connect .phone .label {
    margin-bottom: 2px;
  }
  footer .main .foot_connect li + li,
  footer .main .foot_connect .email {
    margin-top: 20px;
  }
  footer .bottom {
    flex-direction: column-reverse;
    padding: 20px 0;
    text-align: center;
  }
  footer .bottom p {
    font-size: 13px;
  }
  footer #backtop {
    width: 44px;
    height: 44px;
    right: 20px;
    bottom: 20px;
  }
  .section_about {
    padding-top: 30px;
  }
  .section_about .head {
    padding: 40px 20px;
    margin: 0;
  }
  .section_about .head h3 {
    font-size: 18px;
    margin-top: 12px;
  }
  .section_about .watermarker {
    font-size: 50px;
  }
  .section_nums {
    padding: 30px 0;
  }
  .section_nums .nums {
    gap: 20px;
  }
  .section_nums .nums li strong {
    font-size: 30px;
  }
  .section_nums .nums li p {
    font-size: 14px;
    margin-top: 10px;
  }
  .footer_contact {
    padding: 50px 0;
  }
  .footer_contact .head {
    padding: 0;
  }
  .footer_contact .connect {
    margin-top: 22px;
  }
  .footer_contact .connect li + li {
    margin-top: 20px;
  }
  .footer_contact .connect li {
    padding-top: 0;
    padding-left: 55px;
    font-size: 14px;
    min-height: 40px;
  }
  .footer_contact .connect li::before {
    width: 40px;
    height: 40px;
  }
  .footer_contact .connect li a {
    font-size: 16px;
  }
  .footer_contact .quote_form {
    width: 60%;
  }
  .section_banner .flex {
    min-height: unset;
    padding: 50px 0;
  }
  .section_banner .flex .head {
    padding: 0;
  }
  .section_banner .flex .head p {
    margin-top: 12px;
  }
  .section_banner .flex .head .btn {
    margin-top: 20px;
  }
  .section_banner .flex .head form {
    grid-template-columns: 1fr 50px;
    margin-top: 20px;
    height: 50px;
  }
  .section_banner .flex .head form input {
    font-size: 14px;
    padding: 0 20px;
  }
  .quote_form form {
    gap: 16px 0;
    padding: 20px;
  }
  .quote_form form .label {
    font-size: 14px;
    margin-bottom: 10px;
  }
  .quote_form form input:not([type="checkbox"]):not([type="submit"]):not([type="hidden"]),
  .quote_form form textarea,
  .quote_form form select {
    font-size: 14px;
    height: 46px;
    padding: 0 20px;
  }
  .quote_form form select {
    background-size: 12px;
    background-position: right 20px center;
    padding-right: 40px;
  }
  .quote_form form textarea {
    height: 120px;
    padding: 14px 20px;
    margin: 0;
  }
  .quote_form form > span:has(input[type=checkbox]) {
    margin-top: 0;
  }
  .quote_form form input[type=checkbox] {
    width: 20px;
    height: 20px;
  }
  .quote_form form label:has(input[type=checkbox]) {
    column-gap: 12px;
  }
  .quote_form form label:has(input[type=checkbox]) > span:not(.wpcf7-form-control-wrap) {
    width: auto;
    padding-left: 0;
    font-size: 14px;
    line-height: 1.5;
    margin-top: 0;
  }
  .quote_form form .wpcf7-not-valid-tip {
    margin-top: 8px;
    font-size: 13px;
  }
  .quote_form .wpcf7 form .wpcf7-response-output {
    font-size: 13px;
    padding: 10px 12px;
  }
  .quote_form form > span:has(.btn) {
    margin-top: 10px;
  }
  .quote_form form .btn {
    gap: 8px;
  }
  .breadcrumbs {
    line-height: 20px;
    min-height: 26px;
  }
  .breadcrumbs span {
    font-size: 14px;
  }
  .breadcrumbs span span::before {
    margin: 0 5px;
    width: 8px;
    height: 8px;
  }
  .product_list .info {
    padding: 14px;
  }
  .product_list .info .title {
    font-size: 20px;
  }
  .product_list .info .desc {
    font-size: 14px;
    line-height: 1.5;
    padding-top: 10px;
    margin-top: 10px;
  }
  .product_list .info .desc p {
    margin: 0;
    padding: 0;
  }
  .product_list .info .desc ul {
    padding: 0;
  }
  .product_list .info .desc ul li + li {
    margin: 0;
  }
  .product_list .info .btn {
    margin-top: 20px;
    line-height: 36px;
  }
  .news_list .info {
    padding: 20px;
  }
  .news_list .info .metas {
    font-size: 14px;
    gap: 7px;
  }
  .news_list .info .title {
    font-size: 20px;
  }
  .news_list .info .desc {
    font-size: 14px;
    line-height: 1.5;
    margin-top: 10px;
  }
  .news_list .info .btn {
    margin-top: 20px;
    line-height: 36px;
  }
}
@media screen and (max-width: 576px) {
  header .btns .search_box {
    position: absolute;
    left: 0;
    right: 0;
    max-width: unset;
    top: 100%;
    padding: 14px 20px;
    background-color: #fff;
    border-top: 1px solid #e6e7e8;
    display: none;
  }
  header .btns .btn_search {
    display: block;
  }
  .tcon h2::before,
  .tcon.full h2::before {
    font-size: 1.4em;
    line-height: 1.5;
  }
  .section_about .img.img_cv {
    width: 100%;
  }
  .section_about .flex1 {
    overflow: unset;
  }
  .section_nums .nums ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .footer_contact .quote_form {
    width: 100%;
  }
  .quote_form form .col-2 {
    width: 100%;
  }
  .section_banner.img_bg > picture {
    opacity: 0.3;
  }
  .section_banner .head {
    width: 100%;
  }
  [data-aos] {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* === 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 .title {
  color: var(--title);
  font-size: 2rem;
  line-height: 1.4;
  font-weight: 600;
  margin: 0 0 0.8rem;
}
.quote_modal_inner .head .desc {
  display: block;
  text-align: center;
  color: #60686d;
  font-size: 1.4rem;
  line-height: 1.6;
  margin: 0;
}
.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 .title {
    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;
  }
}
/* === /btn_quote === */
