* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --primary: #ee1d23;
  --secondary: #faa633;
  --title: #212121;
  --text: rgba(53, 53, 53, 0.85);
  --border: #ededed;
  --shadow: 0 0 1rem rgba(219, 219, 219, 0.45);
}
@font-face {
  src: url("../font/MiSans-Light.ttf");
  font-family: 'MiSans';
  font-weight: 300;
  font-display: swap;
}
@font-face {
  src: url("../font/MiSans-Normal.ttf");
  font-family: 'MiSans';
  font-weight: 400;
  font-display: swap;
}
@font-face {
  src: url("../font/MiSans-Regular.ttf");
  font-family: 'MiSans';
  font-weight: 450;
  font-display: swap;
}
@font-face {
  src: url("../font/MiSans-Medium.ttf");
  font-family: 'MiSans';
  font-weight: 500;
  font-display: swap;
}
@font-face {
  src: url("../font/MiSans-Demibold.ttf");
  font-family: 'MiSans';
  font-weight: 600;
  font-display: swap;
}
@font-face {
  src: url("../font/MiSans-Semibold.ttf");
  font-family: 'MiSans';
  font-weight: 650;
  font-display: swap;
}
@font-face {
  src: url("../font/MiSans-Bold.ttf");
  font-family: 'MiSans';
  font-weight: 700;
  font-display: swap;
}
html {
  scroll-behavior: smooth;
  font-size: clamp(7.5px, 0.520834vw, 10px);
}
.content {
  max-width: 134rem;
  margin: 0 auto;
  position: relative;
}
.content .content {
  padding: 0;
}
.swiper_box {
  position: relative;
}
.swiper_content {
  max-width: 137rem;
  margin: 0 auto;
  position: relative;
  padding: 1.5rem;
  overflow: hidden;
}
li {
  list-style: none;
}
li.swiper-slide {
  height: auto;
}
a {
  color: inherit;
  cursor: pointer;
  font-size: inherit;
  text-decoration: none;
}
i,
em {
  font-style: normal;
}
input,
button,
textarea {
  border: none;
  outline: none;
  font-family: unset;
  color: var(--title);
  background-color: transparent;
}
select {
  cursor: pointer;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  font-family: unset;
  color: var(--title);
}
textarea {
  resize: none;
}
button,
input[type="submit"] {
  cursor: pointer;
}
input[type="checkbox"] {
  cursor: pointer;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
}
input[type="number"] {
  appearance: textfield;
  -moz-appearance: textfield;
  -webkit-appearance: textfield;
}
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  margin: 0;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
}
table {
  width: 100%;
  border-collapse: collapse;
}
.flex {
  display: flex;
}
.wrap {
  flex-wrap: wrap;
}
.flex1 {
  flex: 1;
}
.flex2 {
  flex: 2;
}
.flex3 {
  flex: 3;
}
.between {
  justify-content: space-between;
}
.center {
  text-align: center;
}
.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: 'MiSans', 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);
  word-break: break-word;
}
.custom-popup .popup-option:hover,
.custom-popup .popup-option.selected {
  background-color: #f0f0f0;
}
.custom-popup .popup-option:last-child {
  margin-bottom: 0;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s;
  border-radius: 0.333em;
  border: 1px solid var(--primary);
  background-color: var(--primary);
  color: #fff;
  font-size: 1.8rem;
  line-height: 5.6rem;
  padding: 0 3.9rem;
  gap: 1.3rem;
  font-weight: 400;
  letter-spacing: 0.0277778em;
}
.btn::after {
  display: inline-block;
  content: '';
  flex-shrink: 0;
  width: 0.889em;
  height: 0.889em;
  background: url("../images/arrow-r.svg") no-repeat center / contain;
  transition: all 0.3s;
  filter: contrast(0) brightness(2);
}
.btn:hover {
  background-color: transparent;
  color: var(--primary);
}
.btn:hover::after {
  filter: unset;
  transform: translateX(20%);
}
.btn.no_a::after {
  display: none;
}
.btn.wt {
  background-color: #fff;
  border-color: #fff;
  color: var(--title);
  font-weight: 500;
}
.btn.wt::after {
  filter: contrast(0) brightness(0);
}
.btn.wt:hover {
  background-color: transparent;
  color: #fff;
}
.btn.wt:hover::after {
  filter: contrast(0) brightness(2);
}
.btn_line {
  display: inline-block;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s;
  border-radius: 0.333em;
  border: 1px solid rgba(26, 26, 26, 0.35);
  background-color: transparent;
  color: var(--title);
  font-weight: 500;
  font-size: 1.8rem;
  line-height: 5.7rem;
  padding: 0 3.75rem;
}
.btn_line:hover {
  background-color: var(--primary);
  border-color: var(--primary);
  color: #fff;
}
.btn_line.wt {
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
  font-weight: 400;
  letter-spacing: 0.0277778em;
}
.btn_line.wt:hover {
  background-color: #fff;
  border-color: #fff;
  color: var(--primary);
  font-weight: 500;
}
.btn_i {
  position: relative;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s;
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--title);
  gap: 2rem;
}
.btn_i::after,
.btn_i::before {
  display: inline-block;
  content: '';
  flex-shrink: 0;
  width: 2.2222em;
  height: 2.2222em;
  border-radius: 0.333em;
  background: url("../images/arrow-r.svg") no-repeat center / 40%;
  transition: all 0.3s;
}
.btn_i::after {
  filter: contrast(0) brightness(2);
}
.btn_i::before {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background: var(--primary) !important;
}
.btn_i:hover {
  color: var(--primary) !important;
}
.btn_i:hover::after {
  transform: rotate(90deg);
}
.btn_i.link {
  justify-content: space-between;
}
.btn_i.link::before {
  background-color: var(--border) !important;
}
.btn_i.link::after {
  filter: contrast(0) brightness(0);
}
.btn_s {
  display: inline-block;
  cursor: pointer;
  transition: all 0.3s;
  background-color: var(--border) !important;
  border-radius: 0.6rem;
  width: 4rem;
}
.btn_s::after {
  display: block;
  padding-bottom: 100%;
  content: '';
  background: url("../images/arrow-r.svg") no-repeat center / 40% !important;
  filter: contrast(0) brightness(0);
  transition: all 0.3s;
}
.btn_s:hover {
  background-color: var(--primary) !important;
}
.btn_s:hover::after {
  filter: contrast(0) brightness(2);
}
.swiper_btns {
  gap: 2.4rem;
  display: flex;
}
.swiper_btns div {
  width: 5.6rem;
  cursor: pointer;
  transition: all 0.3s;
  border-radius: 0.6rem;
  background-color: var(--primary) !important;
}
.swiper_btns div::after {
  content: '';
  display: block;
  width: 100%;
  padding-bottom: 100%;
  transition: all 0.3s;
  background: url(../images/arrow-line.svg) no-repeat center / 39.3%;
  filter: contrast(0) brightness(2);
}
.swiper_btns div:hover {
  background-color: var(--secondary);
}
.swiper_btns .btn_prev::after {
  transform: rotate(180deg);
}
.swiper_btns .swiper-button-disabled {
  pointer-events: none;
  background-color: var(--title) !important;
}
.swiper_btns:has(.swiper-button-lock) {
  opacity: 0;
}
.swiper_btns.middle {
  width: 98%;
  max-width: 166.5rem;
  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 p,
.head.center .desc,
.head.center h1,
.head.center h2 {
  margin-left: auto;
  margin-right: auto;
}
.head.white {
  color: #fff;
}
.head.white h2, .head.white h2 span{
  color: white;
}
.head.white .subtitle {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 300;
  letter-spacing: 0.116667em;
}
.head.white .subtitle::before {
  background-color: #fff;
}
.head.white p,
.head.white .desc {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 300;
}
.head .subtitle {
  display: inline-grid;
  grid-template-columns: 2.416667em 1fr;
  align-items: center;
  color: var(--primary);
  font-weight: 450;
  font-size: 1.2rem;
  line-height: 1.2;
  text-transform: uppercase;
  gap: 1.1667em;
  margin-bottom: 2rem;
  letter-spacing: 0.1em;
}
.head .subtitle::before {
  display: block;
  content: '';
  height: 1px;
  background-color: var(--primary);
}
.head h1 {
  font-size: 6.8rem;
  line-height: 1.2;
  font-weight: 600;
}
.head h1 span {
  color: var(--primary);
}
.head h2 {
  font-size: 5rem;
  line-height: 1.2;
  font-weight: 600;
}
.head h2 span {
  color: var(--primary);
}
.head p,
.head .desc {
  font-size: 1.8rem;
  line-height: 3.2rem;
  color: var(--text);
}
header {
  position: sticky;
  left: 0;
  top: -84px;
  right: 0;
  z-index: 996;
  transition: all 0.3s;
  background-color: #fff;
}
header .content {
  width: calc(100% - 6rem);
  max-width: 181.1rem;
}
header.opt {
  top: 0;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}
header .logo {
  display: block;
  position: relative;
  margin-right: 10.5%;
  padding-bottom: 0.4rem;
}
header .logo img {
  display: block;
  width: auto;
  height: 5.95955rem;
}
header .logo p {
  width: 1px;
  height: 1px;
  overflow: hidden;
  position: absolute;
  clip: rect(1px, 1px, 1px, 1px);
}
header nav .close {
  display: none;
}
header nav .menu {
  gap: 7.1rem;
  display: flex;
}
header nav .menu > li {
  position: relative;
  z-index: 2;
}
header nav .menu > li > a {
  display: block;
  font-size: 18px;
  line-height: 48px;
  font-weight: 450;
  transition: all 0.3s;
  padding-top: 4px;
}
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 .menu > li.btn_mega_menu > .sub-menu {
  display: none;
}
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;
  border-radius: 5px;
  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;
  border-radius: 5px;
}
header nav .sub-menu > li > a:hover {
  background-color: rgba(0, 0, 0, 0.05);
}
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 {
  gap: 1.8rem;
  display: flex;
  align-items: center;
  min-height: 84px;
  padding-top: 4px;
}
header .btns::before {
  display: inline-block;
  width: 1px;
  height: 21px;
  flex-shrink: 0;
  background-color: #111827;
  opacity: 0.36;
  content: '';
  margin: 2px -2px 0 2px;
}
header .btns .btn_icon {
  position: relative;
  display: inline-block;
  cursor: pointer;
  flex-shrink: 0;
  width: 33px;
  height: 33px;
  border-radius: 50%;
  text-indent: -999px;
  overflow: hidden;
  transition: all 0.3s;
  background-color: #e6eaef;
}
header .btns .btn_icon::after {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  content: '';
  background: no-repeat center / 45.45%;
  transition: all 0.3s;
}
header .btns .btn_icon.email::after {
  background-image: url("../images/icon-email.svg");
}
header .btns .btn_icon.whatsapp::after {
  background-image: url("../images/icon-whatsapp.svg");
}
header .btns .btn_icon:hover {
  background-color: var(--primary);
}
header .btns .btn_icon:hover::after {
  filter: contrast(0) brightness(2);
}
header .btns .btn_search {
  display: block;
  width: 18px;
  height: 18px;
  overflow: hidden;
  text-indent: -999px;
  background: url(../images/icon-search.svg) no-repeat center / contain;
  flex-shrink: 0;
  order: -1;
  margin-bottom: 2px;
}
header .btns .btn {
  line-height: 5rem;
  margin-left: 2.1rem;
  flex-shrink: 0;
  padding: 0 3.85rem;
}
header .btns .btn_menu {
  display: none;
  width: 23px;
  height: 23px;
  overflow: hidden;
  text-indent: -999px;
  background: url(../images/nav-btn.svg) no-repeat center / contain;
  flex-shrink: 0;
}
footer .main {
  padding: 11.5rem 0 7.1rem;
}
footer .main .flex {
  gap: 6.4rem 2rem;
}
footer .main .foot_intro {
  width: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  border-bottom: 1px solid #e2e2e2;
  padding-bottom: 4.7rem;
}
footer .main .foot_intro .logo {
  display: block;
  position: relative;
  flex: 1;
  max-width: 21.8rem;
}
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: 1.2rem;
  display: flex;
  flex-wrap: wrap;
}
footer .main .foot_intro .social a {
  opacity: 1;
  display: block;
  width: 4.6rem;
  height: 4.6rem;
  overflow: hidden;
  text-indent: -999px;
  position: relative;
  transition: all 0.3s;
  border-radius: 50%;
  background-color: #f4f4f4;
}
footer .main .foot_intro .social a::after {
  content: '';
  display: block;
  position: absolute;
  inset: 0;
  background: no-repeat center / 43.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(../images/social-facebook.svg);
}
footer .main .foot_intro .social .twitter a::after {
  background-image: url(../images/social-twitter.svg);
}
footer .main .foot_intro .social .youtube a::after {
  background-image: url(../images/social-youtube.svg);
}
footer .main .foot_intro .social .instagram a::after {
  background-image: url(../images/social-instagram.svg);
}
footer .main .foot_intro .social .linkedin a::after {
  background-image: url(../images/social-linkedin.svg);
}
footer .main .foot_quote {
  margin-top: -0.6rem;
  margin-right: 5.4%;
}
footer .main .foot_quote p {
  font-size: 2.8rem;
  line-height: 1.64285714;
  font-weight: 600;
  max-width: 27.8rem;
}
footer .main .foot_quote .menu {
  margin-top: 2.6rem;
}
footer .main .foot_quote .menu li + li {
  margin-top: 16px;
}
footer .main .foot_quote .menu a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s;
  border-radius: 0.333em;
  border: 1px solid var(--primary);
  background-color: var(--primary);
  color: #fff;
  font-size: 1.8rem;
  line-height: 5.6rem;
  padding: 0 3.7rem;
  gap: 1.3rem;
  font-weight: 400;
  letter-spacing: 0.0277778em;
}
footer .main .foot_quote .menu a::after {
  display: inline-block;
  content: '';
  flex-shrink: 0;
  width: 0.889em;
  height: 0.889em;
  background: url("../images/arrow-r.svg") no-repeat center / contain;
  transition: all 0.3s;
  filter: contrast(0) brightness(2);
}
footer .main .foot_quote .menu a:hover {
  background-color: transparent;
  color: var(--primary);
}
footer .main .foot_quote .menu a:hover::after {
  filter: unset;
  transform: translateX(20%);
}
footer .main .foot_nav {
  min-width: 11.41791045%;
}
footer .main .foot_nav strong {
  display: block;
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: 2.6rem;
}
footer .main .foot_nav li a {
  font-size: 1.8rem;
  color: #161616;
  opacity: 0.75;
  font-weight: 450;
  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.8rem;
}
footer .main .foot_nav button {
  font-size: 1.8rem;
  font-weight: 450;
  color: var(--primary);
  margin-top: 1.9rem;
  text-decoration: underline;
  transition: all 0.3s;
}
footer .main .foot_nav button:hover {
  text-decoration-color: transparent;
  color: var(--secondary);
}
footer .bottom {
  padding: 2.2rem 0;
}
footer .bottom p,
footer .bottom a {
  color: #161616;
  font-size: 1.4rem;
}
footer .bottom a {
  font-size: 1.5rem;
  font-weight: 450;
  opacity: 0.68;
  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.3rem;
  background-color: #161616;
  opacity: 0.15;
  display: inline-block;
  content: '';
  margin: 0 1.9rem;
}
footer .bottom ul li:first-child::before {
  display: none;
}
footer #backtop {
  position: fixed;
  z-index: 99;
  right: 4rem;
  bottom: 1.5rem;
  display: block;
  cursor: pointer;
  transition: all 0.3s;
  border-radius: 0.6rem;
  width: 4.2rem;
  height: 4.2rem;
  background: url("../images/arrow-t-w.svg") no-repeat center / 26.2% 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);
}
.mage-menu-overlay {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 991;
  width: 100%;
  height: 100%;
  transition: all 0.3s;
  background-color: rgba(0, 0, 0, 0.4);
  opacity: 0;
  pointer-events: none;
}
.mage-menu-overlay.active {
  opacity: 1;
  pointer-events: all;
}
.mega_menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 999;
  background-color: #fff;
  border-top: 1px solid var(--border);
  padding: 5rem 0;
  display: none;
}
.mega_menu .flex {
  gap: 3rem;
}
.mega_menu .nav {
  width: 15%;
  min-width: 30rem;
  max-height: calc(100vh - 22rem);
  overflow-y: auto;
  padding-right: 1rem;
  border-right: 1px solid var(--border);
  font-weight: 500;
}
.mega_menu .nav li + li {
  margin-top: 5px;
}
.mega_menu .nav .active a {
  background-color: rgba(0, 0, 0, 0.05);
}
.mega_menu .nav a {
  display: block;
  font-size: 18px;
  transition: all 0.3s;
  border-radius: 5px;
  gap: 2rem;
  padding: 10px 14px;
}
.mega_menu .list {
  flex: 1;
  max-height: calc(100vh - 22rem);
  overflow-y: auto;
  display: none;
  padding-right: 1rem;
}
.mega_menu .list.active {
  display: block;
}
.mega_menu .list ul {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(25rem, 100%), 1fr));
  gap: 4rem 2rem;
}
.mega_menu .list ul a {
  display: block;
  height: 100%;
}
.mega_menu .list ul a:hover img {
  transform: scale(1.03);
}
.mega_menu .list .img {
  padding-bottom: 69.60556845%;
  border-radius: 1rem;
  background-image: linear-gradient(to bottom, #f0f1f2 3%, #fff 50%, #f0f1f2 98%);
  overflow: hidden;
}
.mega_menu .list .title {
  font-size: 16px;
  margin-top: 1.6rem;
  font-weight: 450;
  text-align: center;
}
.mega_menu p.center:has(.btn_line) {
  margin-top: 5rem;
}
.footer_contact {
  padding: 6.6rem 0 9.4rem;
}
.footer_contact .text {
  flex: 1;
  max-width: 52rem;
}
.footer_contact h2 {
  max-width: 37.7rem;
}
.footer_contact p {
  margin-top: 1.1rem;
}
.footer_contact .btns {
  display: grid;
  gap: 1.6rem;
  min-width: 37.54%;
  margin-bottom: 0.4rem;
}
.footer_contact .btns .btn,
.footer_contact .btns .btn_line {
  margin: 0;
}
.page_category {
  padding: 9.9rem 0 11rem;
}
.page_category p {
  max-width: 61.7rem;
  margin-top: 2.1rem;
}
.page_category .list {
  margin-top: 4.1rem;
}
.page_category .list > ul {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(35rem, 100%), 1fr));
  gap: 4.2rem 1.52985075%;
}
.page_solutions {
  background-image: linear-gradient(to bottom, transparent 0 51.48%, #fcebe8 91.52%, #f8ddd9);
  padding: 11.1rem 0 11.4rem;
}
.page_solutions .lt {
  flex: 1;
  width: 100%;
  padding-bottom: 1.8rem;
}
.page_solutions .head .subtitle {
  margin-bottom: 1.9rem;
}
.page_solutions p {
  max-width: 54rem;
  margin-top: 2.3rem;
}
.page_solutions .nav {
  max-width: 53.6rem;
  margin-top: 7rem;
}
.page_solutions .nav .nav_item {
  border-top: 1px solid rgba(33, 33, 33, 0.1);
  display: flex;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s;
  font-size: 2rem;
  font-weight: 500;
  min-height: 7.2rem;
  padding: 1rem 0 1rem;
  letter-spacing: 0.04em;
}
.page_solutions .nav .nav_item.active {
  color: var(--primary);
  letter-spacing: 0.005em;
}
.page_solutions .nav .nav_item.active::before {
  margin: 0 1.5rem 0 0;
  opacity: 1;
}
.page_solutions .nav .nav_item.active strong {
  margin-bottom: 1rem;
}
.page_solutions .nav .nav_item.active .order {
  margin-right: 1.1rem;
  margin-bottom: 0.7rem;
}
.page_solutions .nav .nav_item::before {
  display: inline-block;
  width: 2px;
  height: 1.7em;
  content: '';
  border-radius: 1em;
  background-color: var(--primary);
  transition: all 0.3s;
  margin-left: -2px;
  opacity: 0;
}
.page_solutions .nav .nav_item .order {
  font-size: 0.75em;
  color: #7f7f7f;
  transition: all 0.3s;
  min-width: 3rem;
  margin-right: 1.5rem;
}
.page_solutions .nav .nav_item strong {
  display: -webkit-box;
  font-weight: 500;
  flex: 1;
  transition: all 0.3s;
}
.page_solutions .nav .nav_item .tag {
  display: inline-block;
  font-size: 0.7em;
  color: #fff;
  flex-shrink: 0;
  text-align: center;
  border-radius: 0.286em;
  line-height: 2.21428571;
  padding: 0 1em;
  min-width: 4.57143em;
  margin-top: 2px;
}
.page_solutions .nav .nav_item:last-child {
  border-bottom: 1px solid rgba(33, 33, 33, 0.1);
}
.page_solutions .swiper_box {
  width: 51.97761194%;
}
.page_solutions .page_solutions_swiper {
  overflow: hidden;
  background-color: #fff;
  border: 1px solid #efefef;
  border-radius: 1rem;
  box-shadow: 0 0 1rem rgba(219, 203, 202, 0.45);
}
.page_solutions .page_solutions_swiper .item {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 4.4604317%;
}
.page_solutions .page_solutions_swiper .item:hover img {
  transform: scale(1.03);
}
.page_solutions .page_solutions_swiper .img {
  padding-bottom: 53.08056872%;
  border-radius: 1rem;
}
.page_solutions .page_solutions_swiper .info {
  display: flex;
  flex-direction: column;
  padding: 4rem 1.4rem 0.5rem;
}
.page_solutions .page_solutions_swiper .info .text {
  flex: 1;
}
.page_solutions .page_solutions_swiper .info .title {
  font-size: 3rem;
  font-weight: 600;
}
.page_solutions .page_solutions_swiper .info .desc {
  line-height: 2.8rem;
  opacity: 0.85;
  margin-top: 2.5rem;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}
.page_solutions .page_solutions_swiper .info .tags {
  display: flex;
  flex-wrap: wrap;
  font-size: 1.3rem;
  line-height: 1.5;
  font-weight: 500;
  gap: 0.8rem;
  margin-top: 4.5rem;
  letter-spacing: 0.06154em;
}
.page_solutions .page_solutions_swiper .info .tags span {
  display: inline-block;
  transition: all 0.3s;
  text-align: center;
  border-radius: 0.3077em;
  border: 1px solid #e5e5e5;
  padding: 0.48077em 0.769231em;
  min-width: 6.6154em;
}
.page_solutions .page_solutions_swiper .info .tags span:hover {
  background-color: var(--primary);
  border-color: var(--primary);
  color: #fff;
}
.page_solutions .page_solutions_swiper .info .btn {
  margin-top: 3.2rem;
}
.page_advantages {
  background-image: linear-gradient(to bottom, #f4f4f4 14.3%, #f7f7f7 53.54% 77.1%, #f4f4f4 92.5%);
  overflow: hidden;
  position: relative;
  padding: 12.1rem 0 7.4rem;
}
.page_advantages .head {
  gap: 0 3rem;
}
.page_advantages .head .subtitle {
  margin-bottom: 1.8rem;
}
.page_advantages .head .subtitle {
  width: 100%;
}
.page_advantages .head p {
  max-width: 48.2rem;
  margin-top: 1.5rem;
}
.page_advantages .page_advantages_swiper {
  position: relative;
  z-index: 2;
  margin-top: 6.6rem;
}
.page_advantages .page_advantages_swiper::before {
  position: absolute;
  left: 50%;
  top: 44.1%;
  transform: translate(-50%, -50%);
  content: '';
  width: 100vw;
  height: 2px;
  z-index: -1;
  background: url("../images/dotted-mask.svg") repeat-x center left / auto 100%;
}
.page_advantages .page_advantages_swiper .swiper-slide {
  max-width: 426px;
}
.page_advantages .item {
  display: block;
  height: 100%;
  border-radius: 1.2rem;
  background-color: #fff;
  box-shadow: var(--shadow);
  padding: 10.3286385% 8.685446% 9.8591549%;
}
.page_advantages .item.even_item {
  transform: translateY(3.5rem);
}
.page_advantages .item .icon {
  position: relative;
  z-index: 2;
  font-size: 6rem;
  width: 1em;
  height: 1em;
  margin: 0.31667em 0 0 0.4333em;
}
.page_advantages .item .icon::before {
  position: absolute;
  width: 123.33%;
  padding-bottom: 123.33%;
  border-radius: 50%;
  content: '';
  left: -0.4333em;
  top: -0.31667em;
  background-image: linear-gradient(to bottom, #f8a3a3, #fef1ed 60%, transparent);
  mask: radial-gradient(transparent 40%, #000 40%);
  z-index: -1;
}
.page_advantages .item .info {
  margin-top: 25%;
}
.page_advantages .item .info h3 {
  font-size: 2.8rem;
  font-weight: 600;
}
.page_advantages .item .info p {
  font-size: 1.7rem;
  line-height: 3rem;
  color: #606060;
  max-width: 34.6rem;
  margin-top: 2rem;
}
.page_advantages .swiper_btns {
  justify-content: center;
  margin-top: 8.8rem;
}
.page_industry {
  padding: 13.9rem 0 8rem;
}
.page_industry .flex {
  max-width: 192rem;
  margin: 0 auto;
}
.page_industry .lt {
  flex: 1;
  max-width: 108rem;
  padding-left: 3rem;
  margin-left: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 6.5rem 3rem;
  padding-bottom: 0.9rem;
  overflow: hidden;
}
.page_industry .lt .head {
  width: 100%;
}
.page_industry .lt .intro {
  width: 38.0952381%;
}
.page_industry .lt .middle {
  flex: 1;
  width: 100%;
  max-width: 53.4rem;
}
.page_industry .image {
  width: 28.64583333%;
}
.page_industry p {
  max-width: 48.3rem;
  margin-top: 3rem;
}
.page_industry .page_industry_img_swiper {
  overflow: hidden;
  border-radius: 2.7rem 0 0 2.7rem;
}
.page_industry .page_industry_img_swiper:hover img {
  transform: scale(1.03);
}
.page_industry .page_industry_img_swiper .img {
  display: block;
  padding-bottom: 129.45454545%;
}
.page_industry .page_industry_swiper {
  overflow: hidden;
  border-radius: 2.7rem 2.7rem 0 0;
  margin-top: 2.1rem;
}
.page_industry .page_industry_swiper .item {
  display: block;
  height: 100%;
}
.page_industry .page_industry_swiper .item:hover img {
  transform: scale(1.03);
}
.page_industry .page_industry_swiper .img {
  padding-bottom: 70.5%;
  border-radius: 2.7rem;
}
.page_industry .page_industry_swiper .desc {
  font-size: 1.8rem;
  line-height: 3.2rem;
  color: var(--text);
  margin-top: 3.7rem;
}
.page_industry .nav {
  max-width: 44.8rem;
}
.page_industry .nav .nav_item {
  position: relative;
  display: grid;
  grid-template-columns: 5rem 1fr 2.6rem;
  align-items: center;
  font-size: 2.727rem;
  font-weight: 500;
  color: #b2b2b2;
  border-bottom: 1px solid #dbdddd;
  cursor: pointer;
  transition: all 0.3s;
  gap: 9.15179%;
  padding: 2.8rem 0 2.86rem;
}
.page_industry .nav .nav_item .icon {
  padding-bottom: 100%;
  filter: contrast(0) brightness(1.4);
  transition: all 0.3s;
}
.page_industry .nav .nav_item i {
  display: block;
  padding-bottom: 65.4%;
  content: '';
  background: url("../images/arrow-line.svg") no-repeat center / contain;
  transition: all 0.3s;
  filter: contrast(0) brightness(1.4);
}
.page_industry .nav .nav_item::after {
  position: absolute;
  width: 0;
  height: 2px;
  background-color: var(--secondary);
  left: 0;
  bottom: -2px;
  content: "";
}
.page_industry .nav .nav_item.active {
  font-weight: 600;
  color: #191919;
}
.page_industry .nav .nav_item.active .icon {
  filter: unset;
}
.page_industry .nav .nav_item.active::after {
  width: 100%;
  transition: width 5s linear;
}
.page_industry .nav .nav_item.active i {
  filter: contrast(0) brightness(0);
}
.page_industry .btn_i {
  margin-top: 4rem;
}
.nums_container {
  max-width: 192rem;
  margin: 0 auto;
}
.nums_container .watermark {
  white-space: nowrap;
  font-size: 9.253rem;
  line-height: 0.7;
  font-weight: 700;
  text-transform: uppercase;
  color: #f8f8f8;
  text-align: right;
  margin-right: -2.1rem;
  letter-spacing: 0.0313412em;
}
.nums_container .nums {
  position: relative;
  z-index: 2;
  padding: 9.3rem 0 5.8rem;
}
.nums_container .nums::before {
  position: absolute;
  width: 100vw;
  top: 0;
  bottom: 0;
  left: -10.661765%;
  z-index: -1;
  content: '';
  background-color: #f8f8f8;
  border-radius: 14rem;
}
.nums_container .nums ul {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem 1rem;
}
.nums_container .nums li {
  flex: 1;
  text-align: center;
}
.nums_container .nums strong {
  font-size: 5.8rem;
  line-height: 1;
  font-weight: 600;
}
.nums_container .nums strong i {
  font-size: 0.58em;
  color: var(--primary);
}
.nums_container .nums strong .m {
  margin-left: 0.29727em;
}
.nums_container .nums p {
  line-height: 2.8rem;
  color: var(--text);
  max-width: 18.1rem;
  margin: 1.5rem auto 0;
}
.page_news {
  padding: 9.5rem 0 12.3rem;
}
.page_news .nav {
  max-width: 100%;
  margin-bottom: 0.7rem;
}
.page_news .page_news_swiper {
  margin-top: 2.2rem;
}
.page_news .page_news_swiper .swiper-slide {
  max-width: 434px;
}
.page_news .swiper_con {
  position: static;
  margin-top: 2.5rem;
}
.page_news .swiper_con .right {
  text-align: right;
}
.page_news .swiper_btns.middle {
  top: 48.5%;
}
.page_banner {
  max-width: 256rem;
  margin: 0 auto;
  color: #fff;
}
.page_banner::before {
  position: absolute;
  width: 54.0625%;
  height: 100%;
  left: 0;
  top: 0;
  content: '';
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.7) -0.3854%, transparent);
  opacity: 0.74;
  pointer-events: none;
  z-index: -1;
}
.page_banner .flex {
  min-height: 69.6rem;
  padding: 4rem 0;
}
.page_banner .box {
  width: 56%;
  max-width: 65rem;
  padding-bottom: 2px;
}
.page_banner .breadcrumbs {
  background-color: rgba(58, 58, 58, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.18);
  display: inline-block;
  line-height: 1.5;
  font-size: 1.4rem;
  border-radius: 1.4286em;
  padding: 0.5357em 2.07143em;
}
.page_banner .breadcrumbs span span::before {
  content: ' / ';
  margin: 0 0.2143em;
}
.page_banner .breadcrumbs span span:first-child::before {
  display: none;
}
.page_banner .breadcrumbs span a {
  transition: all 0.3s;
  text-decoration: underline transparent;
}
.page_banner .breadcrumbs span a:hover {
  color: var(--primary);
  text-decoration-color: var(--primary);
}
.page_banner .head {
  margin-top: 3.1rem;
}
.page_banner p {
  max-width: 61.4rem;
  margin-top: 2.3rem;
}
.page_banner .nums {
  margin-top: 4rem;
}
.page_banner .nums ul {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem 6rem;
}
.page_banner .nums strong {
  font-size: 4rem;
  font-weight: 600;
}
.page_banner .nums p {
  font-size: 1.8rem;
  opacity: 0.84;
  margin-top: 0.6rem;
  letter-spacing: 0.005556em;
}
.page_banner .btns {
  display: flex;
  flex-wrap: wrap;
  gap: 2.4rem;
  margin-top: 2.5rem;
}
.page_banner .btns .btn {
  min-width: 24rem;
}
.page_banner .btns .btn_line {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 0 1em;
  min-width: 22.2rem;
  letter-spacing: 0.05em;
}
.page_banner .btns .btn_line::before {
  display: inline-block;
  content: '';
  flex-shrink: 0;
  width: 0.833em;
  height: 0.833em;
  filter: contrast(0) brightness(2);
  transition: all 0.3s;
  background: url("../images/icon-phone.svg") no-repeat center / contain;
}
.page_banner .btns .btn_line:hover::before {
  filter: unset;
}
.page_products {
  padding: 14rem 0 13.8rem;
}
.page_products .head .btn_i {
  margin-bottom: 1rem;
}
.page_products .nav {
  max-width: 100%;
  margin-bottom: 0.7rem;
}
.page_products .page_products_swiper {
  margin-top: 3.1rem;
}
.page_products .page_products_swiper .swiper-slide {
  max-width: 433px;
}
.page_products .swiper_btns.middle {
  top: 52.3%;
}
.page_products .swiper_con {
  position: static;
  margin-top: 2.4rem;
}
.page_products .swiper_con p.right {
  text-align: right;
}
.page_products .swiper_con .swiper_btns.middle {
  top: 47.6%;
}
.page_advantages2 {
  position: relative;
  background-image: linear-gradient(to bottom, #f4f4f4, #f7f7f7 71%, #f6f6f6);
  padding: 13.3rem 0 15.6rem;
}
.page_advantages2 h2 {
  max-width: 77.7rem;
}
.page_advantages2 p {
  max-width: 55.1rem;
  margin-top: 1.9rem;
}
.page_advantages2 .items {
  margin-top: 4.8rem;
}
.page_advantages2 .items ul {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(35rem, 100%), 1fr));
  gap: 3rem 2.31343284%;
}
.page_advantages2 .item {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: start;
  height: 100%;
  background-color: #fff;
  border-radius: 1.6rem;
  gap: 0.5rem 2rem;
  padding: 5.399061% 6.3380282% 11.5023474% 7.2769953%;
}
.page_advantages2 .item .order {
  font-size: 5.4rem;
  font-weight: 700;
  color: var(--primary);
  opacity: 0.1;
  white-space: nowrap;
}
.page_advantages2 .item h3 {
  order: -1;
  align-self: center;
  font-size: 2.6rem;
  font-weight: 600;
}
.page_advantages2 .item p {
  line-height: 2.6rem;
  color: rgba(96, 96, 96, 0.85);
  grid-column: -1/1;
  margin: 0;
}
.page_advantages2 .float_mask .img1 {
  left: -10.9375%;
  top: -1.5037594%;
}
.page_advantages2 .float_mask .img2 {
  right: -7.6041667%;
  bottom: -9.7744361%;
  max-width: 35.2rem;
}
.float_mask {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  overflow: hidden;
  pointer-events: none;
}
.float_mask ul {
  position: relative;
  max-width: 192rem;
  margin: 0 auto;
  height: 100%;
}
.float_mask .img {
  position: absolute;
  height: auto;
}
.float_mask .img1 {
  width: 20%;
  max-width: 37.8rem;
  left: -10.8854167%;
  top: -1.4783527%;
}
.float_mask .img2 {
  width: 21%;
  max-width: 38.9rem;
  right: -6.4583333%;
  bottom: -10.5596621%;
}
.nav_wrap .nav_list {
  display: flex;
  flex-wrap: wrap;
  gap: 1.7rem;
}
.nav_wrap .nav_list .nav_item:hover {
  background-color: rgba(238, 29, 35, 0.1);
  border-color: rgba(238, 29, 35, 0.1);
}
.nav_wrap .nav_list .nav_item.active {
  background-color: var(--primary);
  border-color: var(--primary);
  color: #fff;
}
.nav_wrap .nav_item {
  display: block;
  cursor: pointer;
  text-align: center;
  transition: all 0.3s;
  font-size: 1.8rem;
  line-height: 1.5;
  font-weight: 500;
  border-radius: 0.3888em;
  background-color: #f5f5f5;
  padding: 0.36111em 1.3em;
  min-width: 7em;
}
.nav_wrap.line .nav_list {
  gap: 2.5rem;
}
.nav_wrap.line .nav_item {
  border: 1px solid #c9c9c9;
  background-color: transparent;
  padding: 0.333em 1.5278em;
  min-width: 8.2778em;
}
nav.navigation {
  margin-top: 4.4rem;
}
nav.navigation .screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}
nav.navigation .nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
}
nav.navigation .page-numbers {
  transition: all 0.3s;
  font-size: 1.455rem;
  font-weight: 500;
  color: #171717;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.4124em;
  cursor: pointer;
  text-align: center;
  width: 2.749141em;
  height: 2.749141em;
  min-width: max-content;
  padding: 0 0.2em;
}
nav.navigation .page-numbers.current,
nav.navigation .page-numbers:hover {
  background-color: var(--primary);
  color: #fff;
}
nav.navigation .page-numbers.prev,
nav.navigation .page-numbers.next,
nav.navigation .page-numbers.omit {
  padding: 0;
  min-width: unset;
}
nav.navigation .page-numbers.omit {
  width: unset;
}
nav.navigation .prev,
nav.navigation .next {
  position: relative;
  overflow: hidden;
  text-indent: -999px;
  transition: all 0.3s;
}
nav.navigation .prev::after,
nav.navigation .next::after {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  content: '';
  background: url("../images/nav-l.svg") no-repeat center right 15%/17.5%;
  transition: all 0.3s;
  filter: contrast(0) brightness(0);
  opacity: 0.5;
}
nav.navigation .prev:hover::after,
nav.navigation .next:hover::after {
  filter: contrast(0) brightness(2);
  opacity: 1;
  background-position-x: center;
}
nav.navigation .next::after {
  transform: rotate(180deg);
}
nav.navigation .omit {
  margin: 0 0.4811em 0 0.344em;
}
nav.navigation span.page-numbers {
  pointer-events: none;
}
.product_list .active a::after {
  opacity: 1;
}
.product_list .active .btn_i::before {
  background-color: var(--primary) !important;
}
.product_list .active .btn_i::after {
  filter: contrast(0) brightness(2);
}
.product_list a {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: var(--radius);
  --radius: 1rem;
  border: 1px solid var(--border);
  background-color: #fff;
}
.product_list a::after {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  content: '';
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  border-radius: var(--radius);
  border: 2px solid var(--primary);
  transition: all 0.3s;
  opacity: 0;
  pointer-events: none;
  box-shadow: var(--shadow);
}
.product_list a:hover img {
  transform: scale(1.03);
}
.product_list .img {
  padding-bottom: 69.60556845%;
  border-radius: var(--radius) var(--radius) 0 0;
  background-image: linear-gradient(to bottom, #f0f1f2 3%, #fff 50%, #f0f1f2 98%);
  overflow: hidden;
}
.product_list .info {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 5.5684455% 6.9605568% 4.6403712%;
  min-height: 25.6rem;
}
.product_list .info .text {
  flex: 1;
  border-bottom: 1px solid var(--border);
  padding-bottom: 1.6rem;
}
.product_list .cat {
  font-size: 1.4rem;
  font-weight: 450;
  color: var(--secondary);
  text-transform: uppercase;
}
.product_list .title {
  font-size: 2.6rem;
  line-height: 1.2;
  font-weight: 600;
  margin-top: 1.4rem;
}
.product_list .desc {
  line-height: 1.625;
  color: rgba(96, 96, 96, 0.85);
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 3;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  margin-top: 1.3rem;
  margin-right: -2px;
}
.product_list ul {
  font-weight: 450;
  margin-top: 1.4rem;
  margin-right: -1rem;
  min-height: 8.2rem;
  padding-bottom: 3rem;
}
.product_list ul li + li {
  margin-top: 0.65rem;
}
.product_list ul li {
  position: relative;
  padding-left: 1.1875em;
}
.product_list ul li::before {
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 0.375em;
  height: 0.375em;
  border-radius: 50%;
  content: '';
  background-color: var(--primary);
}
.product_list .btn_i {
  margin-top: 1.6rem;
}
.news_list .active a::after {
  opacity: 1;
}
.news_list .active .btn_i::before {
  background-color: var(--primary) !important;
}
.news_list .active .btn_i::after {
  filter: contrast(0) brightness(2);
}
.news_list a {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  --radius: 1rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.news_list a::after {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  content: '';
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  border-radius: var(--radius);
  border: 2px solid var(--primary);
  transition: all 0.3s;
  opacity: 0;
  pointer-events: none;
  box-shadow: var(--shadow);
}
.news_list a:hover img {
  transform: scale(1.02);
}
.news_list .img {
  padding-bottom: 66.12529002%;
  margin: -1px;
  border-radius: var(--radius) var(--radius) 0 0;
}
.news_list .info {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 7.1847405% 6.7212089% 4.6353165%;
}
.news_list .info .text {
  flex: 1;
  border-bottom: 1px solid var(--border);
  padding-bottom: 3.1rem;
}
.news_list .metas {
  color: #606060;
}
.news_list .metas .cat {
  color: var(--primary);
  font-weight: 500;
}
.news_list .metas .date {
  margin-left: 1px;
}
.news_list .title {
  font-size: 2.4rem;
  line-height: 1.41666667;
  font-weight: 500;
  margin-top: 1.4rem;
  height: 6.8rem;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  max-width: 36rem;
}
.news_list .desc {
  line-height: 1.75;
  color: rgba(96, 96, 96, 0.85);
  margin-top: 1.2rem;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}
.news_list .btn_i {
  margin-top: 1.6rem;
}
.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;
}

/* Search Modal */
.search_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;
}
.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;
  clip-path: var(--polygon1);
  border-radius: 0.5rem;
}
.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;
  font-family: 'Outfit', sans-serif;
}
.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(--primary);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.3s;
  clip-path: var(--polygon1);
  border-radius: 0.8rem;
}
.search_modal_submit:hover {
  background-color: var(--secondary);
}
.search_modal_submit svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
}
body.search_modal_open {
  overflow: hidden;
}

.search .products_main .rt{
  max-width: unset;
}



.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 form{
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.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 form .label{
  display: block;
  margin-bottom: 1rem;
}
.quote_modal form .wpcf7-spinner{
  position: absolute;
  left: 0;
}
.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-radius: 1.2rem;
  padding: 4rem 3.6rem;
}
.quote_modal_inner .head {
  text-align: center;
  margin-bottom: 3rem;
}
.quote_modal_inner .head .subtitle {
  color: var(--primary);
  font-size: 1.4rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.8rem;
}
.quote_modal_inner .head h2 {
  color: var(--title);
  font-size: 2.2rem;
  line-height: 1.4;
}
.quote_modal_inner .head h2 span {
  color: var(--primary);
}
.quote_modal_inner .con {
  display: flex;
  flex-wrap: wrap;
  gap: 2.6rem 0;
  justify-content: space-between;
}
.quote_modal_inner .con > span {
  width: 100%;
}
.quote_modal_inner .con > span.col2 {
  width: 48.43%;
}
.quote_modal_inner .con .label {
  display: block;
  font-weight: 450;
  margin-bottom: 1.3rem;
}
.quote_modal_inner .con .label i {
  color: var(--primary);
}
.quote_modal_inner .con .label em {
  font-style: normal;
  opacity: 0.5;
  font-size: 0.875em;
}
.quote_modal_inner .con .tip {
  font-size: 1.4rem;
  opacity: 0.54;
  display: block;
  margin-top: 2px;
}
.quote_modal form input,
.quote_modal form textarea,
.quote_modal form select {
  width: 100%;
  display: block;
  background: #fff;
  border: 1px solid #dddddd;
  border-radius: 0.6rem;
  padding: 0 2.1rem;
  font-family: inherit;
  font-size: 1.4rem;
  color: var(--title);
  outline: none;
  transition: all 0.2s;
  height: 4.9rem;
}
.quote_modal form input::placeholder,
.quote_modal form textarea::placeholder,
.quote_modal form select::placeholder {
  color: var(--title);
  opacity: 0.5;
}
.quote_modal form input {
  height: 4.9rem;
}
.quote_modal form textarea {
  height: 12.7rem;
  padding: 1.8rem 2.1rem;
  resize: none;
}
.quote_modal form select {
  background: url("../images/icon-select.svg") no-repeat center right 2.1rem/1.1rem;
  padding-right: 4rem;
}
.quote_modal form input:focus,
.quote_modal form textarea:focus,
.quote_modal form select:focus {
  border-color: var(--primary);
}
.quote_modal form .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 4.9rem;
  padding: 0 3.6rem;
  background: var(--primary);
  color: #fff;
  border-radius: 0.6rem;
  font-size: 1.4rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
  margin-top: 0.5rem;
}
.quote_modal form .btn:hover {
  background-color: var(--title);
  transform: translateY(-1px);
}
.quote_modal form .btn input[type="submit"] {
  display: none;
}
body.quote_modal_open {
  overflow: hidden;
}
@media (max-width: 768px) {
  .quote_modal_inner {
    padding: 3rem 2rem;
  }
  .quote_modal_inner .con > span.col2 {
    width: 100%;
  }
}

@media screen and (max-width: 1024px) {
  .search_modal_close {
    top: 24px;
    right: 24px;
  }
}

@media screen and (min-width: 769px) and (max-width: 1440px) {
  header .logo,
  header .btns .btn {
    margin: 0;
  }
  header nav .menu {
    gap: 3rem;
  }
}
@media screen and (min-width: 769px) and (max-width: 1220px) {
  .content {
    padding: 0 3rem;
  }
  header .content {
    padding: 0;
  }
  header nav .menu > li > a {
    font-size: 16px;
  }
  header nav .sub-menu > li > a {
    font-size: 14px;
    padding: 10px 14px;
  }
  .nums_container .nums::before {
    left: -2rem;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .content,
  .swiper_content {
    max-width: 896px;
  }
  .head h1 {
    font-size: 6rem;
  }
  .page_industry .flex {
    align-items: center;
  }
  .nums_container .nums strong {
    font-size: 4rem;
  }
}
@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('../images/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(../images/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.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 .btns {
    gap: 2rem;
  }
  header .btns .btn_menu {
    display: block;
  }
  header .btns .btn_search,
  header .btns .btn {
    margin: 0;
  }
  header .mega_menu {
    display: none !important;
  }
}
@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;
  }
}
@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: 40px;
    padding: 0 20px;
  }
  .btn {
    gap: 10px;
  }
  .btn_i {
    font-size: 14px;
    gap: 10px;
  }
  .btn_s {
    width: 40px;
  }
  .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: translate(0);
    pointer-events: all;
    margin-top: 30px;
    padding: 0 20px;
  }
  div.head.flex .btn,
  div.head.flex .btn_line,
  div.head.flex .btn_i {
    margin: 0;
  }
  div.head.flex .text {
    padding: 0;
  }
  div.head .subtitle {
    font-size: 12px;
    margin-bottom: 8px;
  }
  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: 40px;
    padding: 0 20px;
  }
  div.head .btn,
  div.head .btn_line,
  div.head .btn_i {
    margin-top: 20px;
  }
  div.head .btns {
    margin-top: 20px;
    gap: 14px;
  }
  div.head .btns .btn,
  div.head .btns .btn_line {
    margin: 0;
  }
  header {
    top: 0;
  }
  header .content {
    width: 100%;
    padding: 0 20px;
  }
  header .logo img {
    height: 40px;
  }
  header .btns {
    gap: 16px;
    min-height: 64px;
  }
  header .btns::before {
    display: none;
  }
  header .btns .btn_search {
    width: 22px;
    height: 22px;
  }
  header .btns .btn_icon {
    width: 30px;
    height: 30px;
  }
  header .btns .btn {
    line-height: 40px;
    padding: 0 20px;
  }
  header .header_menu {
    display: none !important;
  }
  footer .main {
    padding: 50px 0;
  }
  footer .main .flex {
    display: block;
  }
  footer .main .foot_intro {
    padding-bottom: 20px;
  }
  footer .main .foot_intro .logo {
    max-width: 150px;
  }
  footer .main .foot_intro .social {
    gap: 16px;
  }
  footer .main .foot_intro .social a {
    width: 40px;
    height: 40px;
  }
  footer .main .foot_quote {
    width: 100%;
    margin: 0;
    padding: 30px 0 20px;
  }
  footer .main .foot_quote p {
    font-size: 16px;
    line-height: 1.5;
    max-width: unset;
  }
  footer .main .foot_quote .menu {
    margin-top: 20px;
  }
  footer .main .foot_quote .menu a {
    font-size: 14px;
    line-height: 40px;
    padding: 0 20px;
    gap: 10px;
  }
  footer .main .foot_nav {
    min-width: unset;
  }
  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(../images/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 strong {
    margin-bottom: 20px;
  }
  footer .main .foot_connect li + li {
    margin-top: 20px;
  }
  footer .main .foot_connect li {
    padding-left: 30px;
  }
  footer .main .foot_connect li::before {
    width: 16px;
    height: 16px;
    top: 5px;
  }
  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 .main .foot_connect .email::before {
    top: 5px;
  }
  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_category {
    padding: 50px 0 30px;
  }
  .page_category .head .subtitle {
    margin-bottom: 8px;
  }
  .page_category .head p {
    margin-top: 12px;
  }
  .page_category .list {
    margin-top: 10px;
  }
  .page_category .list > ul {
    display: flex;
    overflow-x: auto;
    width: calc(100% + 40px);
    padding: 20px;
    margin: 0 -20px;
    gap: 30px 16px;
  }
  .page_category .list > ul::-webkit-scrollbar {
    display: none;
  }
  .page_category .list > ul > li {
    flex: 0 0 282px;
  }
  .page_solutions {
    padding: 50px 0;
  }
  .page_solutions .lt {
    padding: 0;
  }
  .page_solutions .head .subtitle {
    margin-bottom: 8px;
  }
  .page_solutions .nav {
    margin-top: 20px;
  }
  .page_solutions .nav .nav_item {
    min-height: unset;
    padding: 14px 0;
    font-size: 16px;
    letter-spacing: unset;
  }
  .page_solutions .nav .nav_item.active {
    letter-spacing: unset;
  }
  .page_solutions .nav .nav_item.active::before {
    margin: 0 10px 0 0;
  }
  .page_solutions .nav .nav_item.active strong {
    margin: 0;
  }
  .page_solutions .nav .nav_item.active .order {
    margin-right: 10px;
    margin-bottom: 0;
  }
  .page_solutions .nav .nav_item .order {
    margin-right: 10px;
    min-width: 20px;
  }
  .page_solutions .nav .nav_item .tag {
    margin: 0;
  }
  .page_solutions .page_solutions_swiper .item {
    padding: 16px;
  }
  .page_solutions .page_solutions_swiper .info {
    padding: 20px 4px 4px;
  }
  .page_solutions .page_solutions_swiper .info .title {
    font-size: 18px;
  }
  .page_solutions .page_solutions_swiper .info .desc {
    line-height: 1.5;
    margin-top: 10px;
  }
  .page_solutions .page_solutions_swiper .info .tags {
    margin-top: 20px;
    font-size: 13px;
  }
  .page_solutions .page_solutions_swiper .info .tags span {
    padding: 0.3em 0.7em;
  }
  .page_solutions .page_solutions_swiper .info .btn {
    margin-top: 20px;
  }
  .page_advantages {
    padding: 50px 0;
  }
  .page_advantages .head {
    display: block;
  }
  .page_advantages .head .subtitle {
    margin-bottom: 8px;
  }
  .page_advantages .head p {
    margin-top: 12px;
  }
  .page_advantages .page_advantages_swiper {
    margin-top: 30px;
  }
  .page_advantages .item {
    padding: 20px;
    border-radius: 10px;
  }
  .page_advantages .item.even_item {
    transform: translateY(20px);
  }
  .page_advantages .item .icon {
    font-size: 40px;
  }
  .page_advantages .item .info {
    margin-top: 20px;
  }
  .page_advantages .item .info h3 {
    font-size: 18px;
  }
  .page_advantages .item .info p {
    font-size: 14px;
    line-height: 1.5;
    margin-top: 10px;
  }
  .page_advantages .swiper_btns {
    margin-top: 50px;
  }
  .page_industry {
    padding: 50px 0;
  }
  .page_industry .flex {
    align-items: center;
    gap: 30px 0;
  }
  .page_industry .lt {
    padding: 0 20px;
    gap: 20px;
  }
  .page_industry .page_industry_img_swiper {
    border-radius: 10px;
  }
  .page_industry .page_industry_swiper {
    border-radius: 10px 10px 0 0;
    margin: 0;
  }
  .page_industry .page_industry_swiper .img {
    border-radius: 10px;
  }
  .page_industry .page_industry_swiper .desc {
    font-size: 14px;
    line-height: 1.5;
    margin-top: 14px;
  }
  .page_industry .nav .nav_item {
    font-size: 14px;
    grid-template-columns: 32px 1fr 14px;
    padding: 12px 0;
    gap: 14px;
  }
  .page_industry .btn_i {
    margin-top: 20px;
  }
  .nums_container .watermark {
    font-size: 50px;
    margin-right: 0;
  }
  .nums_container .nums {
    padding: 30px 0;
  }
  .nums_container .nums::before {
    width: 200vw;
    left: -10px;
    border-radius: 67px;
  }
  .nums_container .nums ul {
    gap: 30px 16px;
  }
  .nums_container .nums li strong {
    font-size: 24px;
  }
  .nums_container .nums li p {
    line-height: 1.4;
    margin-top: 10px;
  }
  .page_news {
    padding: 50px 0;
  }
  .page_news .nav {
    margin: 0;
  }
  .page_news .page_news_swiper {
    margin-top: 20px;
  }
  .page_news .page_news_swiper .swiper-slide {
    max-width: 282px;
  }
  .page_news .swiper_con {
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
  }
  .page_news .swiper_con .swiper_btns.middle {
    padding: 0;
    margin: 0;
    width: auto;
  }
  .footer_contact {
    padding: 50px 0;
  }
  .footer_contact .head .btns {
    margin: 0;
  }
  .page_banner::before {
    width: 100%;
  }
  .page_banner .flex {
    min-height: unset;
    padding: 50px 0;
  }
  .page_banner .flex .box {
    padding: 0;
  }
  .page_banner .breadcrumbs {
    font-size: 14px;
    padding: 0.2em 1em;
  }
  .page_banner .head {
    margin-top: 14px;
  }
  .page_banner .head p {
    margin-top: 12px;
  }
  .page_banner .nums {
    margin-top: 20px;
  }
  .page_banner .nums ul {
    gap: 30px 20px;
  }
  .page_banner .nums strong {
    font-size: 24px;
  }
  .page_banner .nums p {
    font-size: 14px;
    margin-top: 5px;
  }
  .page_banner .btns .btn {
    min-width: unset;
  }
  .page_banner .btns .btn_line {
    min-width: unset;
    gap: 8px;
  }
  .page_advantages2 {
    padding: 50px 0;
  }
  .page_advantages2 .items {
    margin-top: 30px;
  }
  .page_advantages2 .items ul {
    display: flex;
    width: calc(100% + 40px);
    margin: 0 -20px;
    padding: 0 20px;
    overflow-x: auto;
    gap: 20px;
  }
  .page_advantages2 .items ul::-webkit-scrollbar {
    display: none;
  }
  .page_advantages2 .items li {
    flex: 0 0 260px;
  }
  .page_advantages2 .item {
    padding: 20px;
    border-radius: 10px;
    gap: 10px 16px;
  }
  .page_advantages2 .item .order {
    font-size: 30px;
  }
  .page_advantages2 .item h3 {
    font-size: 18px;
  }
  .page_advantages2 .item p {
    line-height: 1.5;
  }
  .page_products {
    padding: 50px 0;
  }
  .page_products .nav {
    margin: 0;
  }
  .page_products .page_products_swiper {
    margin-top: 20px;
  }
  .page_products .page_products_swiper .swiper-slide {
    max-width: 323px;
  }
  .page_products .swiper_btns.middle {
    margin-top: 20px;
  }
  .page_products .swiper_con {
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
  }
  .page_products .swiper_con .swiper_btns.middle {
    margin: 0;
    padding: 0;
    width: auto;
  }
  .nav_wrap .nav_list {
    width: calc(100% + 40px);
    padding: 0 20px;
    margin: 0 -20px;
    flex-wrap: nowrap;
    gap: 14px;
    overflow-x: auto;
  }
  .nav_wrap .nav_list::-webkit-scrollbar {
    display: none;
  }
  .nav_wrap .nav_list .nav_item {
    font-size: 14px;
    white-space: nowrap;
    min-width: max-content;
    width: 7em;
  }
  .nav_wrap.line .nav_list {
    gap: 14px;
  }
  .nav_wrap.line .nav_list .nav_item {
    min-width: max-content;
    width: 7em;
  }
  nav.navigation {
    margin-top: 40px;
  }
  nav.navigation .nav-links {
    gap: 2px;
  }
  nav.navigation .page-numbers {
    font-size: 14px;
  }
  .product_list .info {
    padding: 20px;
    min-height: unset;
  }
  .product_list .info .text {
    padding-bottom: 14px;
  }
  .product_list .info .text .cat {
    font-size: 13px;
  }
  .product_list .info .text .title {
    font-size: 18px;
    margin-top: 8px;
  }
  .product_list .info .text .desc {
    font-size: 14px;
    line-height: 1.5;
    margin-top: 10px;
    margin-right: 0;
  }
  .product_list .info .text .desc br {
    display: none;
  }
  .product_list .info .text ul {
    font-size: 14px;
    min-height: unset;
    padding: 0;
    margin-top: 10px;
  }
  .product_list .info .btn_i {
    margin-top: 14px;
  }
  .news_list .info {
    padding: 20px;
  }
  .news_list .info .text {
    padding-bottom: 14px;
  }
  .news_list .info .metas .date {
    margin-left: 0;
  }
  .news_list .info .title {
    font-size: 18px;
    height: 51px;
    margin-top: 10px;
  }
  .news_list .info .desc {
    margin-top: 10px;
  }
  .news_list .info .btn_i {
    margin-top: 14px;
  }
}
@media screen and (max-width: 576px) {
  header .btn {
    display: none;
  }
  .page_solutions .swiper_box {
    width: 100%;
  }
  .page_industry .image {
    width: 100%;
    padding: 0 20px;
  }
  .page_industry .lt .intro {
    width: 100%;
  }
  .nums_container .nums ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .footer_contact .head {
    display: block;
  }
  .footer_contact .head .btns {
    margin-top: 20px;
  }
  footer .main .foot_intro {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }
  footer .main .foot_intro .social {
    width: 100%;
    justify-content: space-around;
  }
  .page_banner::before {
    background: var(--title);
  }
  .page_banner .flex .box {
    width: 100%;
  }
  .nums_container .watermark {
    font-size: 30px;
  }
}
