* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --primary: #ed6928;
  --secondary: #0c4169;
  --tertiary: #e8722a;
  --title: #14304a;
  --text: #6b7785;
  --bg: #f7f8fa;
  --border: #eceef1;
  --cp: 1rem;
  --clip_path: polygon(0 0, calc(100% - var(--cp)) 0, 100% var(--cp), 100% 100%, var(--cp) 100%, 0 calc(100% - var(--cp)));
  --shadow: 0 1.5rem 1.5rem rgba(224, 224, 224, 0.55);
}
html {
  scroll-behavior: smooth;
  font-size: clamp(7.5px, 0.520834vw, 10px);
}
.content {
  max-width: 132rem;
  margin: 0 auto;
  position: relative;
}
.content .content {
  padding: 0;
}
.swiper_box {
  position: relative;
}
.swiper_content {
  max-width: 135rem;
  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;
}
.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: "Geist", sans-serif;
}
body.fixed {
  overflow: hidden;
  padding-right: 15px;
}
body [data-wpr-lazyrender] {
  content-visibility: unset;
}
.only_mobile {
  display: none;
}
.gap {
  gap: 3rem;
}
.grecaptcha-badge {
  visibility: hidden;
}
#fullscreen-loader {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
}
#fullscreen-loader::after {
  content: '';
  display: block;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 8px solid var(--primary);
  animation: l20-1 0.8s infinite linear alternate, l20-2 1.6s infinite linear;
}
@keyframes l20-1 {
  0% {
    clip-path: polygon(50% 50%, 0 0, 50% 0%, 50% 0%, 50% 0%, 50% 0%, 50% 0%);
  }
  12.5% {
    clip-path: polygon(50% 50%, 0 0, 50% 0%, 100% 0%, 100% 0%, 100% 0%, 100% 0%);
  }
  25% {
    clip-path: polygon(50% 50%, 0 0, 50% 0%, 100% 0%, 100% 100%, 100% 100%, 100% 100%);
  }
  50% {
    clip-path: polygon(50% 50%, 0 0, 50% 0%, 100% 0%, 100% 100%, 50% 100%, 0% 100%);
  }
  62.5% {
    clip-path: polygon(50% 50%, 100% 0, 100% 0%, 100% 0%, 100% 100%, 50% 100%, 0% 100%);
  }
  75% {
    clip-path: polygon(50% 50%, 100% 100%, 100% 100%, 100% 100%, 100% 100%, 50% 100%, 0% 100%);
  }
  100% {
    clip-path: polygon(50% 50%, 50% 100%, 50% 100%, 50% 100%, 50% 100%, 50% 100%, 0% 100%);
  }
}
@keyframes l20-2 {
  0% {
    transform: scaleY(1) rotate(0deg);
  }
  49.99% {
    transform: scaleY(1) rotate(135deg);
  }
  50% {
    transform: scaleY(-1) rotate(0deg);
  }
  100% {
    transform: scaleY(-1) rotate(-135deg);
  }
}
.img.img_cv {
  overflow: hidden;
}
.img.img_cv img {
  object-fit: cover;
}
.img.img_ct img {
  object-fit: contain;
}
.img.img_ab {
  position: relative;
}
.img.img_ab img {
  position: absolute;
  left: 0;
  top: 0;
}
.img.img_aba {
  position: relative;
  --h: 100%;
}
.img.img_aba::after {
  content: '';
  display: block;
  padding-bottom: var(--h);
}
.img.img_aba img {
  position: absolute;
  left: 0;
  top: 0;
}
.img.img_hv:hover img {
  transform: scale(1.03);
}
.img img {
  width: 100%;
  height: 100%;
  display: block;
  transition: all 0.5s;
  aspect-ratio: inherit;
}
.img_bg {
  position: relative;
  z-index: 2;
}
.img_bg > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -2;
}
.icon.icon_ab {
  position: relative;
}
.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;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: var(--radius);
  z-index: 999;
  padding: 8px;
  font-size: 14px;
  opacity: 0;
  transform: scaleY(0);
  transform-origin: top;
  transition: all 0.2s ease;
}
.custom-popup.show {
  opacity: 1;
  transform: scaleY(1);
}
.custom-popup.up {
  transform-origin: bottom;
}
.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: 14px;
  border: 1px solid #ccc;
  background: #fff;
  color: var(--title);
  margin-bottom: 8px;
  border-radius: calc(var(--radius) - 2px);
}
.custom-popup input.popup-input::placeholder {
  color: #666;
}
.custom-popup input.popup-input:focus {
  border-color: var(--primary);
}
.custom-popup .popup-options {
  overflow: auto;
  max-height: 50vh;
}
.custom-popup .popup-option {
  padding: 12px;
  margin: 0 0 4px;
  cursor: pointer;
  transition: all 0.15s;
  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 {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s;
  text-transform: uppercase;
  background-color: var(--primary);
  color: #fff;
  font-size: 1.6rem;
  line-height: 3rem;
  font-weight: 600;
  clip-path: var(--clip_path);
  padding: 1.4rem 3rem;
  gap: 1rem;
  letter-spacing: 0.05rem;
}
.btn::after {
  display: inline-block;
  content: '';
  background: url("../img/arrow-r.svg") no-repeat center / contain;
  transition: all 0.3s;
  filter: contrast(0) brightness(2);
  width: 1.4rem;
  height: 1.4rem;
}
.btn::before {
  position: absolute;
  z-index: -1;
  pointer-events: none;
  left: 1px;
  top: 1px;
  right: 1px;
  bottom: 1px;
  content: '';
  background-color: var(--primary);
  clip-path: polygon(evenodd, 0 0, calc(100% - var(--cp)) 0, 100% var(--cp), 100% 100%, var(--cp) 100%, 0 calc(100% - var(--cp)), 0 0, -1px -1px, 1px 1px, 1px calc(100% - var(--cp) - 0.5px), calc(var(--cp) + 0.5px) calc(100% - 1px), calc(100% - 1px) calc(100% - 1px), calc(100% - 1px) calc(var(--cp) + 0.5px), calc(100% - var(--cp) - 0.5px) 1px, 1px 1px);
  transition: all 0.3s;
  opacity: 0;
}
.btn:hover {
  color: var(--primary);
  background-color: transparent;
}
.btn:hover::before {
  opacity: 1;
}
.btn:hover::after {
  filter: unset;
  transform: translateX(20%);
}
.btn.no_i {
  display: inline-block;
}
.btn.no_i::after {
  display: none;
}
.btn_line {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s;
  text-transform: uppercase;
  background-color: transparent;
  color: var(--title);
  font-size: 1.6rem;
  line-height: 3.1rem;
  font-weight: 600;
  clip-path: var(--clip_path);
  padding: 1.4rem 3rem;
  gap: 1.1rem;
  letter-spacing: 0.05rem;
}
.btn_line::before {
  position: absolute;
  z-index: -1;
  pointer-events: none;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  content: '';
  background-color: var(--secondary);
  opacity: 0.5;
  transition: all 0.3s;
  /*clip-path: polygon(evenodd,
    0 0, calc(100% - var(--cp)) 0, 100% var(--cp), 100% 100%, var(--cp) 100%, 0 calc(100% - var(--cp)), 0 0,
      -1px -1px,
    1px 1px, 1px calc(100% - var(--cp) - 1px), calc(var(--cp) + 1px) calc(100% - 1px), calc(100% - 1px) calc(100% - 1px), calc(100% - 1px) calc(var(--cp) + 1px), calc(100% - var(--cp) - 1px) 1px, 1px 1px);*/
  clip-path: polygon(evenodd, 0 0, calc(100% - var(--cp)) 0, 100% var(--cp), 100% 100%, var(--cp) 100%, 0 calc(100% - var(--cp)), 0 0, -1px -1px, 1px 1px, 1px calc(100% - var(--cp) - 0.5px), calc(var(--cp) + 0.5px) calc(100% - 1px), calc(100% - 1px) calc(100% - 1px), calc(100% - 1px) calc(var(--cp) + 0.5px), calc(100% - var(--cp) - 0.5px) 1px, 1px 1px);
}
.btn_line::after {
  display: inline-block;
  content: '';
  background: url("../img/arrow-r-b.svg") no-repeat center / contain;
  transition: all 0.3s;
  width: 1.4rem;
  height: 1.4rem;
}
.btn_line:hover {
  background-color: var(--primary);
  color: #fff;
}
.btn_line:hover::before {
  background-color: var(--primary);
  opacity: 1;
}
.btn_line:hover::after {
  filter: contrast(0) brightness(2);
  transform: translateX(20%);
}
.btn_line.no_i {
  display: inline-block;
}
.btn_line.no_i::after {
  display: none;
}
.btn_line.wt {
  color: #fff;
}
.btn_line.wt::before {
  background-color: #fff;
}
.btn_line.wt:hover::before {
  background-color: var(--primary);
}
.btn_i {
  position: relative;
  display: inline-grid;
  grid-template-columns: 1fr 4rem;
  align-items: center;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--title);
  gap: 1.6rem;
  --cp: 0.6rem;
  letter-spacing: 0.05rem;
}
.btn_i::after {
  display: block;
  content: '';
  padding-bottom: 100%;
  background: url("../img/arrow-r-w.svg") no-repeat center / 32.5% var(--secondary);
  transition: all 0.3s;
  clip-path: polygon(0 0, calc(100% - var(--cp)) 0, 100% var(--cp), 100% 100%, var(--cp) 100%, 0 calc(100% - var(--cp)));
}
.btn_i:hover {
  color: var(--primary);
}
.btn_i:hover::after {
  background-color: var(--primary);
}
.swiper_btns {
  gap: 2.1rem;
  display: flex;
}
.swiper_btns div {
  position: relative;
  z-index: 2;
  width: 5.9rem;
  cursor: pointer;
  transition: all 0.3s;
  clip-path: var(--clip_path);
  background-color: var(--tertiary);
}
.swiper_btns div::before {
  position: absolute;
  z-index: -1;
  pointer-events: none;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  content: '';
  background-color: var(--primary);
  transition: all 0.3s;
  clip-path: polygon(evenodd, 0 0, calc(100% - var(--cp)) 0, 100% var(--cp), 100% 100%, var(--cp) 100%, 0 calc(100% - var(--cp)), 0 0, -1px -1px, 1px 1px, 1px calc(100% - var(--cp) - 0.5px), calc(var(--cp) + 0.5px) calc(100% - 1px), calc(100% - 1px) calc(100% - 1px), calc(100% - 1px) calc(var(--cp) + 0.5px), calc(100% - var(--cp) - 0.5px) 1px, 1px 1px);
  opacity: 0;
}
.swiper_btns div::after {
  content: '';
  display: block;
  width: 100%;
  padding-bottom: 100%;
  transition: all 0.3s;
  background: url(../img/arrow-r-b.svg) no-repeat center / 32%;
  filter: contrast(0) brightness(2);
}
.swiper_btns div:hover {
  background-color: var(--secondary);
}
.swiper_btns .btn_prev {
  transform: rotateY(180deg);
}
.swiper_btns .swiper-button-disabled {
  pointer-events: none;
  background-color: transparent;
}
.swiper_btns .swiper-button-disabled::before {
  background-color: var(--title);
  opacity: 0.5;
}
.swiper_btns .swiper-button-disabled::after {
  filter: none;
}
.swiper_btns:has(.swiper-button-lock) {
  opacity: 0;
}
.swiper_btns.middle {
  width: 98%;
  max-width: 164.7rem;
  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;
}
.head.center h1,
.head.center h2,
.head.center p,
.head.center .desc {
  margin-left: auto;
  margin-right: auto;
}
.head.white {
  color: #fff;
}
.head.white p,
.head.white .desc {
  color: rgba(255, 255, 255, 0.75);
  font-weight: 300;
  letter-spacing: 0.012rem;
}
.head .subtitle {
  display: inline-grid;
  grid-template-columns: 2.1rem 1fr;
  align-items: center;
  font-size: 1.3rem;
  font-weight: 600;
  line-height: normal;
  color: var(--tertiary);
  text-transform: uppercase;
  gap: 1rem;
  margin-bottom: 1.3rem;
  letter-spacing: 0.05em;
}
.head .subtitle::before {
  display: block;
  content: '';
  padding-bottom: 23.80952381%;
  background-color: var(--primary);
  clip-path: polygon(0 0, 100% 0, 81% 100%, 0 100%);
}
.head h1 {
  font-size: 7.8rem;
  line-height: 1.08974359;
  font-weight: 700;
  letter-spacing: 0.021em;
}
.head h1 span {
  color: var(--tertiary);
}
.head h2 {
  font-size: 4.8rem;
  line-height: 1.16666667;
  font-weight: 600;
  text-transform: uppercase;
}
.head p,
.head .desc {
  line-height: 2.4rem;
  color: var(--text);
}
header {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  z-index: 996;
  transition: all 0.3s;
  border-bottom: 1px solid var(--border);
  background-color: rgba(255, 255, 255, 0.9);
}
header.opt {
  top: -83px;
}
header.sticky {
  position: sticky;
}
header .flex {
  gap: 3.7878787%;
}
header .logo {
  display: block;
  position: relative;
  margin-top: 2px;
}
header .logo img {
  display: block;
  width: auto;
  height: 2.87623rem;
}
header .logo p {
  width: 1px;
  height: 1px;
  overflow: hidden;
  position: absolute;
  clip: rect(1px, 1px, 1px, 1px);
}
header nav {
  margin-left: auto;
}
header nav .close {
  display: none;
}
header nav .menu {
  gap: 4.25rem;
  display: flex;
  text-transform: uppercase;
}
header nav .menu > li {
  position: relative;
  z-index: 2;
}
header nav .menu > li > a {
  display: block;
  font-size: 16px;
  font-weight: 600;
  line-height: 48px;
  transition: all 0.3s;
  padding-top: 2px;
}
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 {
  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;
  border-radius: 6px;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  transform: translateY(-10px);
  pointer-events: none;
  opacity: 0;
  min-width: 180px;
}
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: 16px;
  white-space: nowrap;
  padding: 10px 18px;
  transition: all 0.2s;
  border-radius: 4px;
}
header nav .sub-menu > li > a:hover {
  background-color: #f9f9f7;
  color: var(--primary);
}
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: 50%;
}
header .btns {
  gap: 3.5rem;
  display: flex;
  align-items: center;
  min-height: 82px;
}
header .btn_search {
  display: block;
  width: 18px;
  height: 18px;
  overflow: hidden;
  text-indent: -999px;
  background: url(../img/icon-search.svg) no-repeat center / contain;
}
header .btn_lang {
  display: block;
  width: 20px;
  height: 20px;
  overflow: hidden;
  text-indent: -999px;
  background: url(../img/icon-lang.svg) no-repeat center / contain;
}
header .btn_menu {
  display: none;
  width: 23px;
  height: 23px;
  overflow: hidden;
  text-indent: -999px;
  background: url(../img/nav-btn.svg) no-repeat center / contain;
}
header .btn {
  display: inline-block;
  padding: 1.1rem 3.1rem;
  margin-left: 4px;
  margin-top: 2px;
  letter-spacing: unset;
}
header .btn::after {
  display: none;
}
footer .main {
  padding: 9.3rem 0 2.2rem;
}
footer .main strong {
  display: block;
  font-weight: 500;
  color: var(--text);
  text-transform: uppercase;
}
footer .main .flex {
  gap: 13.2rem 3.86363636%;
}
footer .main .foot_nav {
  min-width: 15.83333%;
}
footer .main .foot_nav strong {
  margin-bottom: 1.5rem;
}
footer .main .foot_nav li a {
  font-size: 1.7rem;
  color: #021826;
  font-weight: 500;
  transition: all 0.3s;
  vertical-align: top;
  text-decoration: underline transparent;
}
footer .main .foot_nav li a:hover {
  opacity: 1;
  color: var(--primary);
  text-decoration-color: var(--primary);
}
footer .main .foot_nav li + li {
  margin-top: 1.4rem;
}
footer .main .foot_connect {
  margin-right: auto;
}
footer .main .foot_connect strong {
  margin-bottom: 2.5rem;
}
footer .main .foot_connect li {
  position: relative;
  padding-left: 3.6rem;
}
footer .main .foot_connect li::before {
  content: '';
  display: block;
  width: 2rem;
  height: 2rem;
  background: no-repeat center left / contain;
  position: absolute;
  left: 0;
  top: 0;
}
footer .main .foot_connect li a {
  font-size: 1.8rem;
  color: #021826;
  font-weight: 500;
  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 + li {
  margin-top: 1.6rem;
}
footer .main .foot_connect .phone::before {
  background-image: url(../img/icon-phone.svg);
  background-size: 75%;
}
footer .main .foot_connect .email::before {
  background-image: url(../img/icon-email.svg);
}
footer .main .foot_intro {
  width: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 3rem;
}
footer .main .foot_intro .logo {
  display: block;
  position: relative;
  flex: 1;
  max-width: 34.7rem;
  margin-bottom: 1px;
}
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 .social {
  gap: 1rem;
  display: flex;
  flex-wrap: wrap;
}
footer .main .foot_intro .social a {
  opacity: 1;
  display: block;
  width: 4.3rem;
  height: 4.3rem;
  overflow: hidden;
  text-indent: -999px;
  position: relative;
  transition: all 0.3s;
  border-radius: 50%;
  border: 1px solid rgba(4, 4, 20, 0.15);
}
footer .main .foot_intro .social a::after {
  content: '';
  display: block;
  position: absolute;
  inset: 0;
  background: no-repeat center / 48.8%;
  transition: all 0.3s;
}
footer .main .foot_intro .social a:hover {
  transform: scale(1.1);
  background-color: var(--primary);
  border-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 .twitter a::after {
  background-image: url(../img/social-twitter.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 .bottom {
  border-top: 1px solid rgba(4, 4, 20, 0.1);
  padding: 1.5rem 0 1.7rem;
}
footer .bottom p {
  font-size: 1.4rem;
  color: #021826;
}
footer .bottom a {
  font-size: 1.3rem;
  color: var(--text);
  transition: all 0.3s;
  text-decoration: underline transparent;
}
footer .bottom a:hover {
  opacity: 1;
  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 {
  width: 1px;
  height: 1.5rem;
  background-color: #040414;
  opacity: 0.1;
  display: inline-block;
  content: '';
  margin: 0 1.5rem;
}
footer .bottom ul li:first-child::before {
  display: none;
}
footer #backtop {
  position: fixed;
  z-index: 99;
  right: 1.6rem;
  bottom: 1.7rem;
  display: block;
  width: 5.2rem;
  height: 5.2rem;
  margin-left: auto;
  background: url("../img/arrow-t-w.svg") no-repeat center / 21.2% var(--secondary);
  transition: all 0.3s;
  opacity: 0;
  cursor: pointer;
  transform: translateY(100%);
  clip-path: var(--clip_path);
}
footer #backtop.show {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
footer #backtop:hover {
  transform: scale(1.1);
  background-color: var(--primary);
}
.page_banner .flex {
  max-width: 192rem;
  margin: 0 auto;
}
.page_banner .img.img_aba {
  width: 50.98958333%;
  --h: 80.79673136%;
  clip-path: polygon(18.1% 0, 100% 0, 100% 100%, 0 100%);
}
.page_banner .head {
  align-self: center;
  flex: 1;
  max-width: 64.2rem;
  padding: 90px 0 0.6rem 3rem;
  margin-left: auto;
}
.page_banner .head .subtitle {
  margin-bottom: 0.9rem;
}
.page_banner p {
  max-width: 56.1rem;
  margin-top: 2.7rem;
}
.page_banner .btns {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 3.3rem;
  gap: 2rem;
}
.page_banner form {
  display: grid;
  grid-template-columns: 1fr auto;
  width: 100%;
  max-width: 46rem;
  border: 2px solid #dfe3e8;
  transition: border-color 0.2s;
  padding-right: 0.7rem;
  margin-top: 5.7rem;
}
.page_banner form:focus-within {
  border-color: var(--primary);
}
.page_banner form input {
  display: block;
  width: 100%;
  font-size: 1.6rem;
  padding: 0 20px;
  color: var(--title);
}
.page_banner form input[type=submit] {
  width: 5.2rem;
  height: 5.2rem;
  overflow: hidden;
  text-indent: -999px;
  color: transparent;
  padding: 0;
  background: url("../img/icon-search-w.svg") no-repeat center / 34.6% var(--tertiary);
  transition: all 0.3s;
  margin: 0.5rem 0;
}
.page_banner form input[type=submit]:hover {
  background-color: var(--secondary);
}
.page_banner .nums {
  margin-top: 5.6rem;
}
.page_banner .nums ul {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}
.page_banner .nums li {
  flex: 1;
  max-width: 18.9rem;
}
.page_banner .nums li strong {
  font-size: 3.8rem;
  font-weight: 600;
  color: var(--primary);
}
.page_banner .nums li p {
  opacity: 0.8;
  font-size: 1.4rem;
  line-height: 1.5;
  text-transform: uppercase;
  margin-top: 0.9rem;
  letter-spacing: 0.09rem;
}
.banner_nums .nums {
  position: relative;
  z-index: 2;
  --cp_w: 9.2rem;
  margin-top: -5rem;
}
.banner_nums .nums::before {
  position: absolute;
  width: 100vw;
  height: 100%;
  background-color: var(--secondary);
  content: '';
  z-index: -1;
  right: -11.6667%;
  top: 0;
  clip-path: polygon(0 0, 100% 0, calc(100% - var(--cp_w)) 100%, 0 100%);
}
.banner_nums .nums ul {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem 0;
  padding: 3.6rem 0 3.7rem;
  overflow: hidden;
}
.banner_nums .nums li {
  flex: 1;
  max-width: 33.1rem;
  text-align: center;
  color: #fff;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  margin-left: -1px;
  padding: 0.9rem 1rem 1px;
}
.banner_nums .nums strong {
  white-space: nowrap;
  font-size: 3.8rem;
  font-weight: 600;
}
.banner_nums .nums strong i {
  color: var(--tertiary);
}
.banner_nums .nums p {
  text-transform: uppercase;
  font-size: 1.4rem;
  opacity: 0.8;
  margin-top: 0.9rem;
  font-weight: 300;
  letter-spacing: 0.1rem;
}
.footer_contact .flex {
  min-height: 59.4rem;
  padding: 6rem 0;
}
.footer_contact .img {
  width: 53.03030303%;
  --h: 64.28571429%;
  margin-right: -9.24242424%;
}
.footer_contact .head {
  flex: 1;
  width: 100%;
  max-width: 51.5rem;
  padding-bottom: 0.6rem;
}
.footer_contact p {
  margin-top: 2.8rem;
}
.footer_contact .btns {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 2.6rem;
}
.footer_contact .btn {
  gap: 1.2rem;
}
.page_products {
  overflow: hidden;
  padding: 11.1rem 0 9.5rem;
}
.page_products .text {
  max-width: 62.6rem;
}
.page_products .btn_line {
  margin-bottom: 1.9rem;
}
.page_products .page_products_swiper {
  margin-top: 3.4rem;
}
.page_products .page_products_swiper .swiper-slide {
  max-width: 416px;
}
.page_products .swiper_control {
  margin-top: 4.3rem;
}
.advantage_swiper {
  padding-bottom: 1rem;
}
.advantage_swiper .swiper-slide {
  max-width: 316px;
}
.advantage_swiper .active .item {
  background-color: var(--secondary);
  color: #fff;
  box-shadow: var(--shadow);
}
.advantage_swiper .active .item::after {
  opacity: 1;
}
.advantage_swiper .active .item .info p {
  color: #fff;
  opacity: 0.78;
}
.advantage_swiper .item {
  position: relative;
  display: block;
  height: 100%;
  transition: all 0.3s;
  border: 1px solid var(--border);
  background-color: #fff;
  padding: 12.9746835% 8.8607595% 13.9240506%;
}
.advantage_swiper .item::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 2px;
  content: '';
  background-color: var(--primary);
  opacity: 0;
  transition: all 0.3s;
}
.advantage_swiper .icon {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 5.5rem;
  height: 5.5rem;
}
.advantage_swiper .icon img {
  width: min-content;
  height: min-content;
  max-width: 100%;
  max-height: 100%;
}
.advantage_swiper .info {
  margin-top: 5.7rem;
}
.advantage_swiper .info strong {
  display: block;
  font-size: 2rem;
  font-weight: 600;
}
.advantage_swiper .info p {
  line-height: 2.6rem;
  color: var(--text);
  transition: all 0.3s;
  margin-top: 1.1rem;
}
.swiper_control {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
}
.swiper_control div.swiper-scrollbar {
  position: static;
  flex: 1;
  max-width: 109.2rem;
  width: 100%;
  height: 2px;
  background: #dddddd;
}
.swiper_control div.swiper-scrollbar .swiper-scrollbar-drag {
  background: var(--secondary);
}
.breadcrumbs {
  line-height: 2rem;
  min-height: 2.7rem;
}
.breadcrumbs span {
  font-size: 1.449rem;
  font-weight: 600;
  color: var(--tertiary);
}
.breadcrumbs span span::before {
  content: '/';
  font-weight: 400;
  color: var(--title);
  margin: 0 0.7rem;
}
.breadcrumbs span span:first-child::before {
  display: none;
}
.breadcrumbs span a {
  color: var(--title);
  transition: all 0.3s;
  text-decoration: underline transparent;
}
.breadcrumbs span a:hover {
  color: var(--primary);
  text-decoration-color: var(--primary);
}
.nav_wrap .nav_list {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}
.nav_wrap .nav_item {
  display: block;
  text-transform: uppercase;
  cursor: pointer;
  text-align: center;
  transition: all 0.3s;
  font-weight: 600;
  background-color: var(--secondary);
  color: #fff;
  clip-path: var(--clip_path);
  line-height: 3rem;
  padding: 1.4rem 2.2rem;
  min-width: 21.8rem;
  letter-spacing: 0.05rem;
}
.nav_wrap .nav_item:hover,
.nav_wrap .nav_item.active {
  background-color: var(--primary);
  color: #fff;
}
.image_wrap {
  position: relative;
  padding: 0 0 1.1363636% 1.5151515%;
}
.image_wrap .img {
  padding-bottom: 93.46092504%;
}
.image_wrap .num_box {
  position: absolute;
  left: 0;
  bottom: 0;
  background-color: var(--primary);
  color: #fff;
  clip-path: polygon(0 0, 89% 0, 100% 100%, 0 100%);
  padding: 2.2rem 3rem 2.3rem;
  min-width: 42.0402%;
}
.image_wrap .num_box .sub {
  font-size: 1.43rem;
  text-transform: uppercase;
  margin-bottom: -0.3rem;
  font-weight: 500;
  letter-spacing: 0.12rem;
}
.image_wrap .num_box strong {
  display: block;
  font-size: 4.4rem;
  font-weight: 700;
}
.image_wrap .num_box strong i {
  font-size: 0.90909em;
  margin-left: -0.114em;
}
.image_wrap .num_box .label {
  font-size: 1.5rem;
  font-weight: 300;
  letter-spacing: 0.01rem;
}
.product_list .active a {
  box-shadow: var(--shadow);
  border-bottom-color: var(--primary);
}
.product_list .active .info {
  background-color: var(--secondary);
  border-bottom-color: var(--primary);
  color: #fff;
}
.product_list .active .info .desc {
  color: #fff;
  opacity: 0.8;
}
.product_list .active .info .btn_i {
  color: #fff;
}
.product_list .active .info .btn_i::after {
  background-color: var(--primary);
}
.product_list a {
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: all 0.3s;
  border: 1px solid #dddddd;
  background-color: #fff;
}
.product_list a:hover img {
  transform: scale(1.03);
}
.product_list .img {
  padding-bottom: 71.42857143%;
  display: flex;
  justify-content: center;
}
.product_list .img img {
  left: unset !important;
  width: 71.42857143%;
}
.product_list .info {
  flex: 1;
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid transparent;
  transition: all 0.3s;
  padding: 6.2906777% 9.4360165% 5.3228811% 8.9521183%;
}
.product_list .info .text {
  flex: 1;
}
.product_list .info .cat {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--tertiary);
  letter-spacing: 0.05em;
}
.product_list .info .title {
  font-size: 2.6rem;
  font-weight: 600;
  margin-top: 0.5rem;
}
.product_list .info .desc {
  line-height: 2.4rem;
  color: var(--text);
  transition: all 0.3s;
  margin-top: 1.4rem;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}
.product_list .info .btn_i {
  grid-template-columns: 1fr 5.2rem;
  margin-top: 2.1rem;
  --cp: 1rem;
}
.news_list .active a {
  box-shadow: var(--shadow);
}
.news_list a {
  display: flex;
  flex-direction: column;
  height: 100%;
  background-color: #fff;
  transition: all 0.3s;
}
.news_list a:hover img {
  transform: scale(1.02);
}
.news_list .image {
  position: relative;
}
.news_list .image .img {
  padding-bottom: 57.89473684%;
}
.news_list .image .cat {
  position: absolute;
  left: 0;
  top: -1rem;
  z-index: 2;
  background-color: var(--primary);
  color: #fff;
  font-weight: 500;
  text-transform: uppercase;
  clip-path: polygon(0 0, 100% 0, 88.9% 100%, 0 100%);
  line-height: 3.3rem;
  padding: 0 2.2rem;
  min-width: 11.2rem;
  letter-spacing: 0.05rem;
}
.news_list .info {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 5.9808612% 6.6985646% 7.1770335%;
}
.news_list .info .date {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--text);
}
.news_list .info .title {
  font-size: 2rem;
  line-height: 1.5;
  font-weight: 600;
  margin-top: 0.7rem;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}
.news_list .info .desc {
  line-height: 2.6rem;
  color: var(--text);
  margin-top: 1.2rem;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 3;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}
.news_list .info .btn_i {
  margin-top: 3.6rem;
}

.contact_main .right .form form span.wpcf7-spinner, .quote_form .form form span.wpcf7-spinner, .post_main .postsidebar .pt_subscribe span.wpcf7-spinner{
  width: 24px !important;
  position: absolute;
  margin-top: 1.5rem !important;
}

.post_main .postsidebar .pt_subscribe span.wpcf7-spinner{
  margin-top: -3.5rem !important;
}

body .wpcf7 form .wpcf7-response-output{
  padding: 0;
  margin: 0;
  margin-top: 1.5rem;
  border: none;
}

.contact_main .right .form form input[type="checkbox"]:checked, .quote_form .form form input[type="checkbox"]:checked {
  border-color: var(--primary);
  background: url('../img/gou-white.svg') no-repeat center/60%;
  background-color: var(--primary);
}

div.jst-language-switcher {
  display: none;
}

.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: 500;
  margin: 3.5rem 0 3.3rem;
}
.default_body h3 {
  font-size: 2rem;
  line-height: 3.4rem;
  font-weight: 500;
  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: 0;
  margin-bottom: 1rem;
  list-style: disc;
  margin-left: 2rem;
}
.default_body ul li:last-child {
  margin-bottom: 0;
}


@media screen and (min-width: 769px) and (max-width: 1440px) {
  .banner_nums .nums::before {
    right: -2rem;
  }
}
@media screen and (min-width: 769px) and (max-width: 1220px) {
  .content {
    padding: 0 3rem;
  }
  header nav .menu > li > a {
    font-size: 14px;
  }
  .head h1 {
    font-size: 7rem;
  }
  .footer_contact .img {
    margin-right: 0;
    width: 50%;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .content,
  .swiper_content {
    max-width: 896px;
  }
  .head h1 {
    font-size: 6rem;
  }
  .advantage_swiper .item .info {
    margin-top: 3rem;
  }
  .image_wrap .num_box strong {
    font-size: 3rem;
  }
}
@media screen and (max-width: 1024px) {
  header .logo,
  header .btns {
    margin: 0;
    padding: 0;
  }
  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: all;
  }
  header nav.active .close {
    opacity: 1;
  }
  header nav.active .con {
    transform: translate(0);
  }
  header nav > .close {
    position: absolute;
    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);
    display: block;
  }
  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: all;
    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 .btn_menu {
    display: block;
  }
  header .btn_search,
  header .btn_lang,
  header .btn {
    margin: 0;
  }
}
@media screen and (min-width: 769px) and (max-width: 896px) {
  .content,
  .swiper_content {
    max-width: 768px;
  }
  .head h1 {
    font-size: 5rem;
  }
  .head h2 {
    font-size: 4rem;
  }
  .banner_nums .nums strong {
    font-size: 3rem;
  }
}
@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) {
  :root {
    --cp: 5px;
  }
  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: 1.5;
    padding: 10px 20px;
    letter-spacing: unset;
    gap: 10px;
  }
  .btn::after,
  .btn_line::after {
    width: 12px;
    height: 12px;
  }
  .btn_i {
    font-size: 14px;
    gap: 12px;
    grid-template-columns: 1fr 40px;
    --cp: 5px;
    letter-spacing: unset;
  }
  .swiper_btns {
    gap: 20px;
  }
  .swiper_btns div {
    width: 40px;
  }
  .swiper_btns.middle:not(:has(.swiper-button-lock)) {
    position: static;
    width: 100%;
    max-width: unset;
    justify-content: flex-end;
    transform: translateX(0);
    margin-top: 30px;
    padding: 0 20px;
  }
  div.head.white p,
  div.head.white .desc {
    letter-spacing: unset;
  }
  div.head.flex .text {
    padding: 0;
  }
  div.head.flex .btn,
  div.head.flex .btn_line {
    margin: 0;
  }
  div.head .subtitle {
    grid-template-columns: 16px 1fr;
    font-size: 14px;
    margin-bottom: 8px;
    gap: 5px;
  }
  div.head h1 {
    font-size: 25px;
    line-height: 1.3;
    letter-spacing: unset;
    max-width: unset;
  }
  div.head h2 {
    font-size: 22px;
    line-height: 1.3;
    letter-spacing: unset;
    max-width: unset;
  }
  div.head .desc,
  div.head p {
    font-size: 14px;
    line-height: 1.5;
    letter-spacing: unset;
    max-width: unset;
    margin-top: 12px;
  }
  div.head p + p {
    margin-top: 12px;
  }
  div.head .btn,
  div.head .btn_line {
    font-size: 14px;
    line-height: 1.5;
    padding: 10px 20px;
    letter-spacing: unset;
    gap: 10px;
    margin-top: 20px;
  }
  div.head .btn::after,
  div.head .btn_line::after {
    width: 12px;
    height: 12px;
  }
  div.head .btns {
    gap: 12px;
  }
  div.head .btns .btn,
  div.head .btns .btn_line {
    margin: 0;
  }
  header {
    padding: 0;
  }
  header.opt {
    top: 0;
  }
  header .logo img {
    height: 20px;
  }
  header .btns {
    gap: 26px;
    min-height: 64px;
  }
  header .btn_search,
  header .btn_lang {
    width: 22px;
    height: 22px;
  }
  header .btn {
    padding: 10px 20px;
  }
  footer .main {
    padding: 50px 0;
  }
  footer .main .flex {
    display: grid;
    gap: 0;
    align-items: unset;
    justify-content: unset;
  }
  footer .main .foot_intro {
    display: block;
    order: -1;
    margin-bottom: 30px;
  }
  footer .main .foot_intro .logo {
    max-width: 250px;
    margin: 0 auto;
  }
  footer .main .foot_intro .social {
    margin-top: 30px;
    justify-content: space-around;
    gap: 16px;
  }
  footer .main .foot_intro .social a {
    width: 40px;
    height: 40px;
  }
  footer .main .foot_nav {
    width: 100%;
  }
  footer .main .foot_nav strong {
    font-size: 16px;
    line-height: 46px;
    border: 1px solid rgba(22, 22, 22, 0.35);
    padding: 0 22px;
    position: relative;
    margin-bottom: 16px;
  }
  footer .main .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 .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 {
    order: 6;
    width: 100%;
    padding-top: 20px;
  }
  footer .main .foot_connect strong {
    margin-bottom: 20px;
  }
  footer .main .foot_connect li + li {
    margin-top: 14px;
  }
  footer .main .foot_connect li {
    padding-left: 30px;
  }
  footer .main .foot_connect li::before {
    width: 16px;
    height: 16px;
  }
  footer .main .foot_connect li a {
    font-size: 16px;
  }
  footer .main .foot_connect li .label {
    font-size: 14px;
    line-height: 1.5;
    margin-top: 6px;
  }
  footer .bottom {
    padding: 20px 0;
  }
  footer .bottom .flex {
    gap: 30px;
    flex-direction: column-reverse;
  }
  footer .bottom ul {
    gap: 1rem 0;
  }
  footer .bottom ul li::before {
    height: 10px;
    margin: 0 10px;
  }
  footer .bottom p {
    font-size: 13px;
  }
  footer .bottom a {
    font-size: 14px;
  }
  footer #backtop {
    width: 40px;
    height: 40px;
    right: 20px;
    bottom: 20px;
  }
  .page_banner .flex .head {
    padding: 90px 0 40px 20px;
  }
  .page_banner .flex .head .subtitle {
    margin-bottom: 8px;
  }
  .page_banner .flex .head p {
    margin-top: 12px;
  }
  .page_banner .flex .head .btns {
    margin-top: 20px;
    gap: 12px;
  }
  .page_banner form {
    padding-right: 5px;
    margin-top: 20px;
  }
  .page_banner form input {
    font-size: 14px;
  }
  .page_banner form input[type=submit] {
    width: 40px;
    height: 40px;
    margin: 5px 0;
  }
  .page_banner .nums {
    margin-top: 30px;
  }
  .page_banner .nums ul {
    gap: 20px;
  }
  .page_banner .nums li strong {
    font-size: 24px;
  }
  .page_banner .nums li p {
    font-size: 14px;
    margin-top: 5px;
    letter-spacing: unset;
  }
  .banner_nums .nums {
    --cp_w: 0;
    margin-top: 0;
  }
  .banner_nums .nums::before {
    right: -20px;
  }
  .banner_nums .nums ul {
    padding: 30px 0;
  }
  .banner_nums .nums li {
    padding: 0 12px;
    max-width: 183px;
  }
  .banner_nums .nums li strong {
    font-size: 24px;
  }
  .banner_nums .nums li p {
    font-size: 14px;
    margin-top: 5px;
    letter-spacing: unset;
  }
  .page_products {
    padding: 50px 0;
  }
  .page_products .page_products_swiper {
    margin-top: 30px;
  }
  .page_products .page_products_swiper .swiper-slide {
    max-width: 282px;
  }
  .page_products .swiper_control {
    margin-top: 30px;
  }
  .advantage_swiper {
    padding: 0;
  }
  .advantage_swiper .item {
    padding: 20px;
  }
  .advantage_swiper .item .icon {
    width: 40px;
    height: 40px;
  }
  .advantage_swiper .item .info {
    margin-top: 22px;
  }
  .advantage_swiper .item .info strong {
    font-size: 18px;
  }
  .advantage_swiper .item .info p {
    line-height: 1.5;
    margin-top: 10px;
  }
  .footer_contact .flex {
    min-height: unset;
    padding: 40px 0;
  }
  .footer_contact .img {
    width: 45%;
    margin-right: 0;
  }
  .footer_contact .head {
    padding: 0;
  }
  .footer_contact .btns {
    margin-top: 20px;
  }
  .swiper_control {
    gap: 20px;
  }
  .breadcrumbs {
    line-height: 20px;
    min-height: 28px;
  }
  .breadcrumbs span {
    font-size: 14px;
  }
  .breadcrumbs span span::before {
    margin: 0 8px;
  }
  .nav_wrap .nav_list {
    width: calc(100% + 40px);
    margin: 0 -20px 0;
    padding: 0 20px;
    overflow-x: auto;
    flex-wrap: nowrap;
    gap: 14px;
  }
  .nav_wrap .nav_list::-webkit-scrollbar {
    display: none;
  }
  .nav_wrap .nav_list .nav_item {
    white-space: nowrap;
    padding: 10px 20px;
    line-height: 1.5;
    min-width: 120px;
    letter-spacing: unset;
  }
  .image_wrap .num_box {
    padding: 14px 25px 14px 14px;
    clip-path: polygon(0 0, 100% 0, calc(100% - 20px) 100%, 0 100%);
  }
  .image_wrap .num_box .sub {
    font-size: 13px;
    letter-spacing: unset;
    margin-bottom: 0;
  }
  .image_wrap .num_box strong {
    font-size: 20px;
  }
  .image_wrap .num_box .label {
    font-size: 14px;
    letter-spacing: unset;
  }
  .product_list .info {
    padding: 20px;
  }
  .product_list .info .cat {
    font-size: 13px;
    letter-spacing: unset;
  }
  .product_list .info .title {
    font-size: 18px;
    margin-top: 5px;
  }
  .product_list .info .desc {
    line-height: 1.5;
    margin-top: 10px;
  }
  .product_list .info .btn_i {
    margin-top: 20px;
    grid-template-columns: 1fr 40px;
    --cp: 5px;
  }
  .news_list .image .cat {
    line-height: 2;
    padding: 0 16px 0 12px;
    min-width: 80px;
    letter-spacing: unset;
    top: -10px;
  }
  .news_list .info {
    padding: 20px;
  }
  .news_list .info .date {
    font-size: 14px;
  }
  .news_list .info .title {
    font-size: 18px;
    line-height: 1.5;
    margin-top: 5px;
  }
  .news_list .info .desc {
    line-height: 1.5;
    margin-top: 10px;
  }
  .news_list .info .btn_i {
    margin-top: 20px;
  }

  .default_head{
      padding: 10rem 0 5rem;
  }
  .default_head h1{
    font-size: 2rem;
  }
  .default_body{
    padding: 3rem 0;
    font-size: 0.9rem;
    line-height: 1.5rem;
  }
  
  .default_body h2 {
    font-size: 1.2rem;
    line-height: 1.5;
    font-weight: 700;
    margin: 1rem 0 1rem;
  }
  .default_body h3 {
    font-size: 1.1rem;
    line-height: 1.5;
    font-weight: 700;
    margin: 1rem 0;
  }
  .default_body p {
    margin: 1rem 0;
  }
  
  
  .default_body ul li {
    position: relative;
    margin-bottom: 1rem;
  }
}
@media screen and (max-width: 576px) {
  header .btn {
    display: none;
  }
  .page_banner .flex .img.img_aba {
    width: 100%;
    order: -1;
    clip-path: unset;
  }
  .page_banner .flex .head {
    padding: 0 20px 40px;
  }
  .page_banner .flex .head .btns {
    display: grid;
  }
  .page_banner .nums ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .banner_nums .nums ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .footer_contact .img {
    width: 100%;
    order: -1;
  }
  .footer_contact .btns {
    display: grid;
  }
}

/* ===== Search Modal ===== */
.search_modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(20, 48, 74, 0.88);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.search_modal.active {
  opacity: 1;
  visibility: visible;
}
.search_modal_close {
  position: absolute;
  top: 3rem;
  right: 3rem;
  width: 36px;
  height: 36px;
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
  z-index: 2;
}
.search_modal_close::before,
.search_modal_close::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 28px;
  height: 2px;
  background-color: #fff;
  border-radius: 2px;
  transition: background-color 0.3s;
}
.search_modal_close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.search_modal_close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.search_modal_close:hover::before,
.search_modal_close:hover::after {
  background-color: var(--primary);
}
.search_modal_inner {
  width: 92%;
  max-width: 720px;
  padding: 0 1rem;
}
.search_modal_form {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  background-color: #fff;
  border: 2px solid #dfe3e8;
  padding: 0.5rem 0.7rem 0.5rem 2rem;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
  transform: translateY(-30px);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.2s;
}
.search_modal_form:focus-within {
  border-color: var(--primary);
}
.search_modal.active .search_modal_form {
  transform: translateY(0);
}
.search_modal_form input[type="search"] {
  width: 100%;
  height: 5.2rem;
  font-size: 1.6rem;
  color: var(--title);
  background: transparent;
  border: 0;
  outline: none;
  padding: 0;
}
.search_modal_form input[type="search"]::placeholder {
  color: var(--text);
}
.search_modal_form input[type="search"]::-webkit-search-cancel-button {
  -webkit-appearance: none;
  appearance: none;
}
.search_modal_submit {
  width: 5.2rem;
  height: 5.2rem;
  border: 0;
  background-color: var(--tertiary);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.3s;
}
.search_modal_submit:hover {
  background-color: var(--secondary);
}
.search_modal_submit svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
}
body.search_modal_open {
  overflow: hidden;
}
@media screen and (max-width: 1024px) {
  .search_modal_close {
    top: 24px;
    right: 24px;
    width: 32px;
    height: 32px;
  }
  .search_modal_close::before,
  .search_modal_close::after {
    width: 24px;
  }
}
@media screen and (max-width: 768px) {
  .search_modal_close {
    top: 18px;
    right: 18px;
    width: 28px;
    height: 28px;
  }
  .search_modal_close::before,
  .search_modal_close::after {
    width: 22px;
  }
  .search_modal_inner {
    width: 100%;
    padding: 0 16px;
  }
  .search_modal_form {
    padding: 4px 4px 4px 16px;
    gap: 6px;
  }
  .search_modal_form input[type="search"] {
    height: 44px;
    font-size: 14px;
  }
  .search_modal_submit {
    width: 44px;
    height: 44px;
  }
  .search_modal_submit svg {
    width: 16px;
    height: 16px;
  }
}

/* ===== Search Results Banner ===== */
.page_banner.search_banner {
  background-color: var(--bg);
  border-bottom: 1px solid var(--border);
}
.page_banner.search_banner .content {
  position: relative;
}
.page_banner.search_banner .head {
  flex: none;
  max-width: none;
  margin-left: 0;
  padding: 14rem 0 6rem;
  text-align: left;
}
.page_banner.search_banner .breadcrumbs {
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 1.6rem;
}
.page_banner.search_banner .breadcrumbs a {
  color: var(--text);
  transition: color 0.2s;
}
.page_banner.search_banner .breadcrumbs a:hover {
  color: var(--primary);
}
.page_banner.search_banner .breadcrumbs .syeditorlist > span + span::before {
  content: '/';
  margin: 0 0.6rem;
  color: var(--text);
  opacity: 0.5;
}
.page_banner.search_banner .breadcrumbs .syeditorlist > span:last-child {
  color: var(--primary);
}
.page_banner.search_banner h1 {
  font-size: 4.4rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--title);
  margin: 0 0 1.4rem;
}
.page_banner.search_banner p {
  max-width: 720px;
  margin: 0;
  font-size: 1.6rem;
  line-height: 1.7;
  color: var(--text);
}
.page_banner.search_banner p strong {
  color: var(--primary);
  font-weight: 600;
}
@media screen and (max-width: 1024px) {
  .page_banner.search_banner .head {
    padding: 12rem 0 4rem;
  }
  .page_banner.search_banner h1 {
    font-size: 3.4rem;
  }
}
@media screen and (max-width: 768px) {
  .page_banner.search_banner .head {
    padding: 10rem 0 3rem;
  }
  .page_banner.search_banner .breadcrumbs {
    font-size: 1.3rem;
    margin-bottom: 1rem;
  }
  .page_banner.search_banner h1 {
    font-size: 2.6rem;
    margin-bottom: 1rem;
  }
  .page_banner.search_banner p {
    font-size: 1.4rem;
  }
}

/* ===== 404 Page ===== */
.error_404 {
  padding: 12rem 0 10rem;
  text-align: center;
  background-color: var(--bg);
}
.error_404_inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 2rem;
}
.error_404_code {
  font-size: 14rem;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--primary);
  margin-bottom: 2rem;
}
.error_404_title {
  font-size: 3.6rem;
  font-weight: 700;
  color: var(--title);
  margin-bottom: 1.6rem;
}
.error_404_desc {
  font-size: 1.6rem;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 3.6rem;
}
.error_404_btns {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.6rem;
}
@media screen and (max-width: 768px) {
  .error_404 {
    padding: 8rem 0 6rem;
  }
  .error_404_code {
    font-size: 9rem;
    margin-bottom: 1.2rem;
  }
  .error_404_title {
    font-size: 2.4rem;
  }
  .error_404_desc {
    font-size: 1.4rem;
    margin-bottom: 2.4rem;
  }
  .error_404_btns {
    gap: 1rem;
  }
}
