* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --primary: #1d457e;
  --secondary: #0069b9;
  --title: #111827;
  --text: #4c5159;
  --bg: #f9fafb;
}
@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-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;
}
html {
  scroll-behavior: smooth;
  font-size: clamp(7.5px, 0.520834vw, 10px);
}
.content {
  max-width: 142.8rem;
  margin: 0 auto;
  position: relative;
}
.content .content {
  padding: 0;
}
.swiper_box {
  position: relative;
}
.swiper_content {
  max-width: 145.8rem;
  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;
  cursor: pointer;
  transition: all 0.3s;
  border: 1px solid var(--primary);
  background-color: var(--primary);
  color: #fff;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 5.6rem;
  padding: 0 4.2rem;
  gap: 1.5rem;
}
.btn::after {
  display: inline-block;
  content: '';
  flex-shrink: 0;
  background: url("../img/arrow-line.svg") no-repeat center / contain;
  width: 0.88889em;
  height: 0.88889em;
  filter: contrast(0) brightness(2);
  transition: all 0.3s;
}
.btn:hover {
  background-color: transparent;
  color: var(--primary);
}
.btn:hover::after {
  filter: none;
  transform: translateX(20%);
}
.btn.no_a::after {
  display: none;
}
.btn.sec {
  background-color: var(--secondary);
  border-color: var(--secondary);
}
.btn.sec:hover {
  background-color: var(--primary);
  border-color: var(--primary);
  color: #fff;
}
.btn.sec:hover::after {
  filter: contrast(0) brightness(2);
}
.btn_i {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s;
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--title);
  gap: 0.61111em;
}
.btn_i::after {
  display: inline-block;
  content: '';
  flex-shrink: 0;
  width: 0.8889em;
  height: 0.8889em;
  background: url("../img/arrow.svg") no-repeat center / contain;
  transition: all 0.3s;
}
.btn_i:hover {
  color: var(--primary);
}
.btn_i:hover::after {
  transform: translateX(20%);
}
.btn_i.wt {
  color: #fff;
  gap: 0.5em;
  font-weight: 500;
  letter-spacing: 0.000833em;
}
.btn_i.wt::after {
  filter: contrast(0) brightness(2);
}
.btn_i.btn_more {
  color: var(--primary);
  font-size: 2rem;
  gap: 0.6em;
}
.btn_i.btn_more::after {
  width: 0.75em;
  height: 0.75em;
  background-image: url("../img/nav-r.svg");
}
.swiper_btns {
  gap: 2.5rem;
  display: flex;
}
.swiper_btns div {
  width: 7rem;
  cursor: pointer;
  transition: all 0.3s;
  border-radius: 50%;
  border: 1px solid var(--primary);
  background-color: var(--primary);
}
.swiper_btns div::after {
  content: '';
  display: block;
  width: 100%;
  padding-bottom: 100%;
  transition: all 0.3s;
  background: url(../img/nav-l.svg) no-repeat center / 13.24%;
  filter: contrast(0) brightness(2);
}
.swiper_btns div:hover {
  border-color: var(--title);
  background-color: var(--title);
}
.swiper_btns .btn_next::after {
  transform: rotate(180deg);
}
.swiper_btns .swiper-button-disabled {
  pointer-events: none;
  background-color: transparent;
  border-color: rgba(17, 24, 39, 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 .subtitle {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 300;
  letter-spacing: 0.075em;
}
.head.white p,
.head.white .desc {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 300;
  letter-spacing: 0.00222em;
}
.head.bn p,
.head.bn .desc {
  line-height: 3.5rem;
}
.head.bn.white p,
.head.bn.white .desc {
  color: rgba(255, 255, 255, 0.85);
}
.head .subtitle {
  font-size: 1.6rem;
  line-height: 1.5;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.0625em;
  margin-bottom: 1.4rem;
}
.head h1 {
  font-size: 5.4rem;
  font-weight: 500;
}
.head h2 {
  font-size: 5rem;
  line-height: 1.2;
  font-weight: 500;
}
.head p,
.head .desc {
  font-size: 1.8rem;
  line-height: 3.2rem;
  color: var(--text);
}
header {
  position: sticky;
  left: 0;
  top: -85px;
  right: 0;
  z-index: 996;
  transition: all 0.3s;
  background-color: #fff;
}
header.opt {
  top: 0;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}
header.opt.sticky-header {
  top: -85px;
}
header .logo {
  display: block;
  position: relative;
  margin-right: 5.5%;
  padding-top: 2px;
}
header .logo img {
  display: block;
  width: auto;
  height: 4.444444rem;
}
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: 3.9rem;
  display: flex;
}
header nav .menu > li {
  position: relative;
  z-index: 2;
}
header nav .menu > li > a {
  display: block;
  font-size: 18px;
  font-weight: 500;
  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 .menu > li.menu-item-has-children > .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: 85px;
  padding-top: 4px;
}
header .btns::before {
  display: inline-block;
  width: 1px;
  height: 21px;
  background-color: var(--title);
  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("../img/icon-email.svg");
}
header .btns .btn_icon.whatsapp::after {
  background-image: url("../img/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(../img/icon-search.svg) no-repeat center / contain;
  flex-shrink: 0;
  order: -1;
  margin-bottom: 2px;
}
header .btns .btn {
  line-height: 5rem;
  padding: 0 4.15rem;
  margin-left: 1.7rem;
  flex-shrink: 0;
}
header .btns .btn_menu {
  display: none;
  width: 23px;
  height: 23px;
  overflow: hidden;
  text-indent: -999px;
  background: url(../img/nav-btn.svg) no-repeat center / contain;
  flex-shrink: 0;
}
footer {
  position: relative;
  background-color: #1a1a1a;
  color: #fff;
  max-width: 256rem;
  margin: 0 auto;
  overflow: hidden;
}
footer .main {
  padding: 8rem 0 2.3rem;
}
footer .foot_social {
  width: 100%;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1.9rem 3rem;
}
footer .foot_social strong {
  position: relative;
  display: block;
  width: 100%;
  font-size: 2.1rem;
  color: rgba(255, 255, 255, 0.8);
  padding-left: 2.142857em;
  font-weight: 400;
  letter-spacing: 0.004762em;
}
footer .foot_social strong::before {
  position: absolute;
  width: 1.3809524em;
  height: 1.3809524em;
  content: '';
  left: 0;
  top: -0.096em;
  background: url("../img/ft-email-w.svg") no-repeat center / contain;
}
footer .foot_social .quote_form {
  width: 70%;
  max-width: 94.6rem;
}
footer .foot_social .quote_form form {
  display: grid;
  grid-template-columns: 1fr 1fr 5.4rem;
  gap: 2rem;
}
footer .foot_social .quote_form form span {
  width: 100%;
}
footer .foot_social .quote_form form .col2 {
  grid-column: span 2;
}
footer .foot_social .quote_form form input,
footer .foot_social .quote_form form textarea {
  display: block;
  width: 100%;
  height: 5.4rem;
  font-size: 1.6rem;
  color: #000000;
  background-color: #f1f1f3;
  transition: border-color 0.3s;
  padding: 0 2rem;
  letter-spacing: -0.05em;
}
footer .foot_social .quote_form form input::placeholder,
footer .foot_social .quote_form form textarea::placeholder {
  color: #000000;
  opacity: 0.74;
}
footer .foot_social .quote_form form input:focus,
footer .foot_social .quote_form form textarea:focus {
  border-color: var(--primary);
}
footer .foot_social .quote_form form textarea {
  height: 9rem;
  padding: 1.6rem 2rem;
}
footer .foot_social .quote_form form span:has(input[type=submit]) {
  position: relative;
}
footer .foot_social .quote_form form .wpcf7-spinner {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 24px;
  margin: 0;
}
footer .foot_social .quote_form form input[type=submit] {
  text-indent: -999px;
  padding: 0;
  background: url("../img/icon-subscribe.svg") no-repeat center / 44.44% var(--primary);
  transition: all 0.3s;
}
footer .foot_social .quote_form form input[type=submit]:hover {
  transform: scale(1.1);
}
footer .foot_social .partners {
  width: 100%;
  margin-top: 2.6rem;
}
footer .foot_social .partners ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 85rem;
  gap: 3rem;
}
footer .foot_social .partners .img {
  height: 4rem;
  width: auto;
}
footer .foot_social .social {
  display: flex;
  flex-wrap: wrap;
  gap: 2.2rem;
}
footer .foot_social .social li {
  position: relative;
}
footer .foot_social .social a,
footer .foot_social .social span {
  position: relative;
  z-index: 2;
  display: block;
  width: 5.4rem;
  height: 5.4rem;
  border-radius: 50%;
  background-color: #383838;
  transition: all 0.3s;
  cursor: pointer;
  text-indent: -999px;
  overflow: hidden;
}
footer .foot_social .social a::after,
footer .foot_social .social span::after {
  content: '';
  display: block;
  position: absolute;
  inset: 0;
  background: no-repeat center / 48.15%;
}
footer .foot_social .social a:hover,
footer .foot_social .social span:hover {
  background-color: var(--primary);
}
footer .foot_social .social a:hover + .qrcode,
footer .foot_social .social span:hover + .qrcode {
  transform: translate(-50%, 0);
  opacity: 1;
  pointer-events: all;
}
footer .foot_social .social .qrcode {
  position: absolute;
  width: 12rem;
  height: 12rem;
  left: 50%;
  top: 100%;
  margin: 1rem;
  background-color: #fff;
  padding: 5px;
  transform: translate(-50%, -10%);
  opacity: 0;
  transition: all 0.4s, opacity 0.3s;
  pointer-events: none;
}
footer .foot_social .social .qrcode img {
  display: block;
  object-fit: cover;
  width: 100%;
  height: 100%;
}
footer .foot_social .social .wechat a::after,
footer .foot_social .social .wechat span::after {
  background-image: url("../img/social-wechat.svg");
}
footer .foot_social .social .weibo a::after,
footer .foot_social .social .weibo span::after {
  background-image: url("../img/social-weibo.svg");
}
footer .foot_social .social .douyin a::after,
footer .foot_social .social .douyin span::after {
  background-image: url("../img/social-tiktok.svg");
}
footer .grid {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 39.27068724%;
  border: 1px solid #3d3d3d;
  margin-top: 4.5rem;
}
footer .foot_intro {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2.7rem;
  padding: 4.0415704% 5.0808314% 5.1963048%;
}
footer .foot_intro .logo {
  display: block;
  position: relative;
  width: 100%;
  pointer-events: none;
}
footer .foot_intro .logo img {
  display: block;
  width: 100%;
  max-width: 33.8rem;
  height: auto;
  pointer-events: auto;
}
footer .foot_intro .logo p {
  width: 1px;
  height: 1px;
  overflow: hidden;
  position: absolute;
  clip: rect(1px, 1px, 1px, 1px);
}
footer .foot_intro .connect {
  flex: 1;
}
footer .foot_intro .connect strong {
  font-size: 1.85rem;
  display: block;
  margin-bottom: 2.7rem;
  font-weight: 500;
  letter-spacing: 0.00811em;
}
footer .foot_intro .connect ul {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.74);
  font-weight: 300;
}
footer .foot_intro .connect ul li + li {
  margin-top: 0.8rem;
}
footer .foot_intro .connect ul a {
  vertical-align: top;
  transition: all 0.3s;
  text-decoration: underline transparent;
}
footer .foot_intro .connect ul a:hover {
  color: #fff;
  text-decoration-color: #fff;
}
footer .foot_intro .foot_nav {
  min-width: 40.87403599%;
  margin-top: 2.6rem;
}
footer .foot_intro .foot_nav strong {
  display: none;
}
footer .foot_intro .foot_nav ul {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  max-height: 15rem;
  gap: 1.7rem 10.063%;
}
footer .foot_intro .foot_nav a {
  font-size: 1.7rem;
  opacity: 0.8;
  vertical-align: top;
  transition: all 0.3s;
  text-decoration: underline transparent;
  font-weight: 400;
  letter-spacing: 0.023529em;
}
footer .foot_intro .foot_nav a:hover {
  opacity: 1;
  text-decoration-color: #fff;
}
footer .foot_subscribe {
  display: flex;
  align-items: center;
  justify-content: center;
  border-left: 1px solid #3d3d3d;
  padding: 4rem;
}
footer .foot_subscribe form {
  display: grid;
  grid-template-columns: 1fr auto;
  flex: 1;
  max-width: 39rem;
  gap: 2.1rem 0;
  padding-bottom: 0.4rem;
}
footer .foot_subscribe form span {
  width: 100%;
}
footer .foot_subscribe form input {
  display: block;
  width: 100%;
  height: 5.4rem;
  background-color: #fff;
  font-size: 1.4rem;
  color: #000000;
  padding: 0 2.1rem;
  letter-spacing: 0.04px;
}
footer .foot_subscribe form input::placeholder {
  color: #000000;
  opacity: 0.74;
}
footer .foot_subscribe form input[type=submit] {
  font-size: 1.75rem;
  font-weight: 500;
  text-align: center;
  background-color: var(--primary);
  color: #fff;
  transition: all 0.3s;
  min-width: 10.3rem;
}
footer .foot_subscribe form input[type=submit]:hover {
  background-color: #3884ef;
}
footer .foot_subscribe form span:has(input[type=checkbox]) {
  grid-column: -1/1;
}
footer .foot_subscribe form span:has(input[type=checkbox]) + span:has(input[type=checkbox]) {
  margin-top: -1.4rem;
}
footer .foot_subscribe form input[type=checkbox] {
  width: 1.5rem;
  height: 1.5rem;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.31);
  border-radius: 2px;
  vertical-align: top;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  transition: all 0.3s;
}
footer .foot_subscribe form input[type=checkbox]::after {
  content: '';
  display: block;
  width: 80%;
  height: 80%;
  background: url(../img/gou.svg) no-repeat center / contain;
  transition: all 0.3s;
  opacity: 0;
}
footer .foot_subscribe form input[type=checkbox]:checked {
  background-color: #fff;
  border-color: #fff;
}
footer .foot_subscribe form input[type=checkbox]:checked::after {
  opacity: 1;
}
footer .foot_subscribe form input[type=checkbox] ~ span {
  vertical-align: top;
  cursor: pointer;
  font-size: 1.2rem;
  opacity: 0.74;
  display: inline-block;
  width: calc(100% - 2.1rem);
  padding-left: 0.6rem;
  margin-top: -1px;
  letter-spacing: -0.025em;
}
footer .bottom {
  padding: 1.8rem 0;
}
footer .bottom .flex {
  padding-right: 12.81512605%;
}
footer .bottom p,
footer .bottom a {
  font-size: 1.5rem;
  opacity: 0.7;
  font-weight: 300;
  letter-spacing: 0.006667em;
}
footer .bottom a {
  opacity: 0.68;
  transition: all 0.3s;
  text-decoration: underline transparent;
}
footer .bottom a:hover {
  opacity: 1;
  text-decoration-color: #fff;
}
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.1rem;
  background-color: #fff;
  opacity: 0.15;
  display: inline-block;
  content: '';
  margin: 0 1.8rem;
}
footer .bottom ul li:first-child::before {
  display: none;
}
footer .bg {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 20.5%;
  max-width: 38.8rem;
  height: auto;
  pointer-events: none;
}
#header_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;
}
#header_overlay.active {
  opacity: 1;
  pointer-events: all;
}
.header_menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 999;
  background-color: #fff;
  border-top: 1px solid #eee;
  display: none;
  padding: 4rem 0;
}
.header_menu .list ul {
  max-height: calc(100vh - 33rem);
  overflow-y: auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(25rem, 100%), 1fr));
  padding-right: 15px;
  gap: 3rem 1.5%;
}
.header_menu .list li a {
  text-align: center;
  display: block;
}
.header_menu .list li a:hover img {
  transform: scale(1.03);
}
.header_menu .list li a .img {
  width: 100%;
  padding-bottom: 79.12087912%;
}
.header_menu .list li a .title {
  font-size: 18px;
  font-weight: 600;
  margin-top: 2rem;
}
.header_menu .list .center:has(.btn) {
  margin-top: 4rem;
}
.conn_side {
  position: fixed;
  z-index: 99;
  right: 0;
  padding-right: 5.5rem;
  padding-left: 2rem;
  bottom: 4rem;
  overflow: hidden;
  pointer-events: none;
}
.conn_side.show ul {
  transform: translateX(0);
  opacity: 1;
}
.conn_side.show a,
.conn_side.show span {
  box-shadow: 0 0 1.2rem rgba(255, 255, 255, 0.1);
}
.conn_side ul {
  display: grid;
  gap: 1rem;
  transform: translateX(100%);
  opacity: 0;
  transition: all 0.3s;
  pointer-events: all;
}
.conn_side a,
.conn_side span {
  position: relative;
  display: block;
  cursor: pointer;
  width: 4.8rem;
  height: 4.8rem;
  transition: all 0.3s;
  overflow: hidden;
  text-indent: -999px;
  border-radius: 1.2rem;
  background-color: #1f2937;
}
.conn_side a:hover,
.conn_side span:hover {
  background-color: var(--primary);
}
.conn_side a::after,
.conn_side span::after {
  content: '';
  display: block;
  position: absolute;
  inset: 0;
  background: no-repeat center / 37.5%;
  filter: contrast(0) brightness(2);
}
.conn_side .email a::after,
.conn_side .email span::after {
  background-image: url("../img/icon-email.svg");
}
.conn_side .whatsapp a::after,
.conn_side .whatsapp span::after {
  background-image: url("../img/icon-whatsapp.svg");
}
.conn_side .msg a::after,
.conn_side .msg span::after {
  background-image: url("../img/icon-msg.svg");
  background-size: 35.42%;
}
.conn_side .backtop a::after,
.conn_side .backtop span::after {
  background-image: url("../img/nav-t-w.svg");
  background-size: 20.8%;
}
.quote_model {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  overflow-y: auto;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.93);
  z-index: 999;
  display: none;
}
.quote_model.active {
  display: grid;
}
.quote_model .quote_box {
  position: relative;
  width: calc(100% - 6rem);
  max-width: 113.8rem;
  margin: 5rem auto;
  display: grid;
  grid-template-columns: 53.77855888% 1fr;
  background-color: #fff;
  box-shadow: 0 1rem 1rem rgba(200, 202, 206, 0.45);
}
.quote_model .close {
  position: absolute;
  z-index: 3;
  right: 2.2rem;
  top: 2.4rem;
  width: 1.3rem;
  height: 1.3rem;
  cursor: pointer;
  transition: all 0.3s;
  background: url("../img/close.svg") no-repeat center / contain;
}
.quote_model .close:hover {
  transform: rotate(360deg) scale(1.1);
}
.quote_model .image {
  position: relative;
}
.quote_model .image .bg {
  padding-bottom: 85.13071895%;
}
.quote_model .image .bg img {
  filter: blur(2px);
}
.quote_model .image .wrap {
  position: absolute;
  width: 61.7647%;
  height: 77.7351%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border: 2px solid #fff;
  border-bottom-width: 0;
  overflow: hidden;
  display: flex;
  box-shadow: 0 1rem 1rem rgba(45, 49, 56, 0.45);
}
.quote_model .image .wrap .logo {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 15%;
  max-height: 5.1rem;
  margin-top: auto;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 2px;
}
.quote_model .image .wrap .logo img {
  height: 41.24%;
  width: auto;
  display: block;
  object-fit: contain;
}
.quote_model .image .wrap .img {
  position: absolute;
  width: 163.6451%;
  height: 129.2868%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.quote_model .info {
  display: flex;
  flex-direction: column;
  padding: 13.6882129% 14.8288973% 7.9847909% 14.6387833%;
}
.quote_model .info .subtitle {
  font-size: 1.4rem;
  color: #838384;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  letter-spacing: 0.05714286em;
}
.quote_model .info .title {
  font-size: 4rem;
  line-height: 1.325;
  font-weight: 500;
  max-width: 24rem;
}
.quote_model .info .line {
  width: 100%;
  max-width: 26.9rem;
  height: auto;
  margin-left: auto;
  margin-top: -1rem;
  margin-bottom: auto;
}
.quote_model .info .desc {
  line-height: 2.7rem;
  color: var(--text);
  margin-top: 2rem;
}
.quote_model .info .btn {
  font-size: 1.6rem;
  line-height: 5.2rem;
  margin-top: 3.4rem;
}
.quote_model2 {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  overflow-y: auto;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.93);
  z-index: 999;
  display: none;
}
.quote_model2.active {
  display: grid;
}
.quote_model2 .quote_box {
  position: relative;
  width: calc(100% - 6rem);
  max-width: 113.8rem;
  margin: 5rem auto;
  display: grid;
  grid-template-columns: 54.6572935% 1fr;
  box-shadow: 0 1rem 1rem rgba(200, 202, 206, 0.45);
  /* overflow: hidden; */
}
.quote_model2 .close {
  position: absolute;
  z-index: 3;
  right: 2.2rem;
  top: 2.4rem;
  width: 1.3rem;
  height: 1.3rem;
  cursor: pointer;
  transition: all 0.3s;
  background: url("../img/close.svg") no-repeat center / contain;
  filter: contrast(0) brightness(2);
}
.quote_model2 .close:hover {
  transform: rotate(360deg) scale(1.1);
}
.quote_model2 .image {
  position: relative;
  padding-bottom: 83.76205788%;
}
.quote_model2 .image .logo {
  position: absolute;
  z-index: 2;
  width: 100%;
  max-width: 16.4rem;
  left: 0;
  top: 0;
  margin: 4.8231511% 6.1093248%;
}
.quote_model2 .image .logo img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}
.quote_model2 .info {
  position: relative;
  z-index: 2;
  background-color: rgba(21, 30, 47, 0.71);
  backdrop-filter: blur(7px);
  display: flex;
  flex-direction: column;
  color: #fff;
  padding: 13.9534884% 15.1162791% 8.1395349% 14.9224806%;
}
.quote_model2 .info .subtitle {
  font-size: 1.4rem;
  opacity: 0.56;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  letter-spacing: 0.05714286em;
}
.quote_model2 .info .title {
  font-size: 4rem;
  line-height: 1.325;
  font-weight: 500;
  max-width: 24rem;
}
.quote_model2 .info .line {
  width: 100%;
  max-width: 26.9rem;
  height: auto;
  margin-left: auto;
  margin-top: -1rem;
  margin-bottom: auto;
}
.quote_model2 .info .desc {
  line-height: 2.7rem;
  opacity: 0.8;
  margin-top: 2rem;
}
.quote_model2 .info .btn {
  font-size: 1.6rem;
  line-height: 5.2rem;
  margin-top: 3.4rem;
}
.quote_model3 {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  overflow-y: auto;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.93);
  z-index: 999;
  display: none;
}
.quote_model3.active {
  display: grid;
}
.quote_model3 .quote_box {
  position: relative;
  width: calc(100% - 6rem);
  max-width: 113.8rem;
  margin: 5rem auto;
  box-shadow: 0 1rem 1rem rgba(200, 202, 206, 0.45);
  /* overflow: hidden; */
}
.quote_model3 .close {
  position: absolute;
  z-index: 3;
  right: 2.2rem;
  top: 2.4rem;
  width: 1.3rem;
  height: 1.3rem;
  cursor: pointer;
  transition: all 0.3s;
  background: url("../img/close.svg") no-repeat center / contain;
  filter: contrast(0) brightness(2);
}
.quote_model3 .close:hover {
  transform: rotate(360deg) scale(1.1);
}
.quote_model3 .image {
  position: relative;
  padding-bottom: 35.76449912%;
}
.quote_model3 .image .logo {
  position: absolute;
  z-index: 2;
  width: 100%;
  max-width: 19.7rem;
  left: 0;
  top: 0;
  margin: 2.6362039% 3.3391916%;
}
.quote_model3 .image .logo img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}
.quote_model3 .info {
  position: relative;
  z-index: 2;
  background-color: rgba(50, 69, 99, 0.86);
  backdrop-filter: blur(7px);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 3rem;
  color: #fff;
  padding: 2.0210896% 7.1177504% 3.5149385% 5.6239016%;
}
.quote_model3 .info .lt {
  flex: 1;
  width: 100%;
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 1.6rem 2.1rem;
}
.quote_model3 .info .rt {
  width: 40%;
  max-width: 30.8rem;
}
.quote_model3 .info .subtitle {
  font-size: 1.4rem;
  opacity: 0.24;
  text-transform: uppercase;
  margin-top: 0.5rem;
  letter-spacing: 0.05714286em;
}
.quote_model3 .info .title {
  width: 100%;
  font-size: 5.201rem;
  line-height: 1.32493751;
  font-weight: 500;
  margin-top: -5.4rem;
}
.quote_model3 .info .line {
  flex: 1;
  max-width: 26.9rem;
  height: auto;
}
.quote_model3 .info .desc {
  line-height: 2.7rem;
  opacity: 0.8;
}
.quote_model3 .info .btn {
  width: 100%;
  font-size: 1.6rem;
  line-height: 5.2rem;
  margin-top: 2.5rem;
}
.page_application {
  padding: 8.3rem 0 17.8rem;
}
.page_application p {
  margin-top: 2.5rem;
}
.page_application .page_application_swiper {
  overflow: hidden;
  margin-top: 4.7rem;
}
.page_application .page_application_swiper .swiper-slide {
  max-width: 325px;
}
.page_application .item {
  display: block;
  height: 100%;
}
.page_application .item:hover img {
  transform: scale(1.03);
}
.page_application .item .img {
  padding-bottom: 100%;
}
.page_application .item .title {
  font-size: 2.4rem;
  font-weight: 600;
  margin-top: 2.4rem;
}
.page_faqs {
  background-color: var(--bg);
  padding: 12.6rem 0 13rem;
}
.page_faqs .faqs {
  max-width: 103.5rem;
  margin: 4.6rem auto 0;
}
.page_faqs .faq_list .faq_item {
  background-color: #fff;
  border: 1px solid #e8ecf0;
  transition: all 0.3s;
  margin-bottom: 1.5rem;
}
.page_faqs .faq_list .faq_item.active {
  margin-bottom: 3.2rem;
  box-shadow: 0 1.5rem 1.5rem rgba(224, 224, 224, 0.55);
}
.page_faqs .faq_list .faq_item.active .question {
  padding-top: 2.7rem;
}
.page_faqs .faq_list .faq_item.active .question::before {
  background-color: var(--primary);
}
.page_faqs .faq_list .faq_item.active .question::after {
  filter: contrast(0) brightness(2);
  transform: rotate(45deg);
}
.page_faqs .faq_list .faq_item:last-child {
  margin-bottom: 0;
}
.page_faqs .faq_list .question {
  display: flex;
  align-items: center;
  cursor: pointer;
  font-size: 2.2rem;
  font-weight: 600;
  transition: all 0.3s;
  padding: 2.7rem 3.1818em 2.8rem 3.2rem;
}
.page_faqs .faq_list .question::before,
.page_faqs .faq_list .question::after {
  position: absolute;
  width: 1.63636em;
  height: 1.63636em;
  border-radius: 50%;
  content: '';
  transition: all 0.3s;
  background-color: rgba(29, 69, 126, 0.1);
  right: 1.4545em;
}
.page_faqs .faq_list .question::after {
  background: url("../img/add.svg") no-repeat center / 41.67%;
}
.page_faqs .faq_list .answer {
  display: none;
  font-size: 1.7rem;
  line-height: 2.8rem;
  color: rgba(65, 75, 86, 0.7);
  max-width: 92rem;
  padding: 1.6rem 3.2rem 4.8rem;
}
.fabric_list .active .info::after {
  width: 71%;
}
.fabric_list .active .btn_i {
  transform: translateX(0);
}
.fabric_list .active .btn_i::after {
  filter: none;
}
.fabric_list a {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  height: 100%;
  overflow: hidden;
}
.fabric_list a:hover img {
  transform: scale(1.03);
}
.fabric_list .img {
  width: 100%;
  padding-bottom: 79.12087912%;
}
.fabric_list .info {
  position: relative;
  flex: 1;
  width: 100%;
  border-bottom: 2px solid #dae1e5;
  padding: 2.4rem 0 3.5rem;
}
.fabric_list .info::after {
  position: absolute;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  content: '';
  left: 0;
  bottom: -2px;
  transition: all 0.4s;
}
.fabric_list .info .title {
  font-size: 2.6rem;
  line-height: 1.46153846;
  font-weight: 600;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}
.fabric_list .info .desc {
  font-size: 1.7rem;
  line-height: 2.8rem;
  color: var(--text);
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  margin-top: 3.5rem;
}
.fabric_list .btn_i {
  color: var(--primary);
  font-weight: 600;
  margin-top: 1.9rem;
  transform: translateX(calc(-100% + 0.8889em));
}
.fabric_list .btn_i::after {
  filter: contrast(0) brightness(0);
}
.directory_blog {
  background-color: var(--bg);
  padding: 10.8rem 0 14rem;
}
.directory_blog .list {
  margin-top: 4.5rem;
}
.directory_blog .list ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6rem 2.83613445%;
}
.directory_blog .blog_list .active .info .btn_i {
  transform: translateX(0);
  color: var(--primary);
}
.directory_blog .blog_list a {
  display: flex;
  flex-direction: column;
  height: 100%;
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 0 0.8rem rgba(0, 0, 0, 0.04);
  border-radius: 2.4rem;
  padding: 0.9rem;
}
.directory_blog .blog_list a:hover img {
  transform: scale(1.03);
}
.directory_blog .blog_list .img {
  padding-bottom: 82.05128205%;
  margin-left: 1px;
  border-radius: 2.4rem;
}
.directory_blog .blog_list .info {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  overflow: hidden;
  padding: 11.4219114% 0 8.8578089%;
  margin: 0 6.7599068%;
}
.directory_blog .blog_list .info .text {
  flex: 1;
}
.directory_blog .blog_list .info .title {
  font-size: 2.4rem;
  font-weight: 600;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}
.directory_blog .blog_list .info .desc {
  font-size: 1.7rem;
  line-height: 2.8rem;
  color: var(--text);
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  margin-top: 2.1rem;
}
.directory_blog .blog_list .info .btn_i {
  transform: translateX(calc(-100% + 0.8889em));
  margin-top: 3.1rem;
}
.directory_blog p.center:has(.btn_i) {
  margin-top: 5.1rem;
  min-height: 2.7rem;
}

/*** global css ***/
.loading {
  position: relative;
}
.loading:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 8;
  background-color: rgba(255, 255, 255, 0.3);
}
.loading:after {
  content: '';
  display: block;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  border: 0.8rem solid #EFEFEF;
  border-top-color: var(--primary);
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 9;
  transition: all 0.3s;
  pointer-events: none;
  transform: translate(-50%, -50%);
  animation: loading 1s linear infinite;
}
@keyframes loading {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  80% {
    transform: translate(-50%, -50%) rotate(320deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.wpcf7 form.wpcf7-form .wpcf7-spinner {
  width: 24px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.wpcf7 form.wpcf7-form .wpcf7-not-valid-tip {
  font-size: 1.4rem;
  line-height: 1.5;
  margin-top: .5rem;
}
.wpcf7 form.wpcf7-form .wpcf7-response-output {
  margin: 12px 0 0;
  padding: 0;
  border: none;
  width: 100%;
}
.wpcf7 form.wpcf7-form .wpcf7-list-item {
  margin: 0;
}

.video_pop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.8);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s;
  z-index: 9999;
  padding: 1.2rem;
}
.video_pop.active {
  opacity: 1;
  pointer-events: all;
}
.video_pop.active .pop_content {
  transform: translate(-50%, -50%);
}
.video_pop .mask {
  width: 100%;
  height: 100%;
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
}
.video_pop .mask .close {
  display: block;
  width: 1rem;
  height: 1rem;
  position: absolute;
  right: 2rem;
  top: 1rem;
  cursor: pointer;
}
.video_pop .pop_content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -70%);
  transition: all 0.3s;
  width: max-content;
  max-width: 90vw;
  height: 90vh;
  aspect-ratio: 1920/1080;
  display: flex;
  align-items: center;
  pointer-events: none;
}
.video_pop .pop_content iframe,
.video_pop .pop_content video {
  width: 100%;
  height: auto;
  max-height: 100%;
  object-fit: contain;
  pointer-events: all;
}
.video_pop .pop_content video[src=""],
.video_pop .pop_content video.init {
  aspect-ratio: 1920/1080;
}
.video_pop .pop_content iframe {
  aspect-ratio: 560/315;
}

.search_pop {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 10rem 2rem 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.search_pop.active {
  opacity: 1;
  pointer-events: all;
}
.search_pop .mask {
  position: absolute;
  inset: 0;
  background-color: rgba(17, 24, 39, 0.45);
}
.search_pop .search_box {
  position: relative;
  width: 100%;
  max-width: 64rem;
  background-color: #fff;
  border-radius: 1rem;
  box-shadow: 0 1.6rem 4.8rem rgba(17, 24, 39, 0.16);
  padding: 2rem;
  z-index: 1;
  transform: translateY(-1.6rem);
  transition: transform 0.3s;
}
.search_pop.active .search_box {
  transform: translateY(0);
}
.search_pop .search_form {
  display: flex;
  gap: 1rem;
  padding: 0.6rem 0.6rem 0.6rem 2rem;
  border: 1px solid #e5e7eb;
  border-radius: 999px;
  background-color: var(--bg);
  transition: border-color 0.3s, box-shadow 0.3s;
}
.search_pop .search_form:focus-within {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(29, 69, 126, 0.12);
}
.search_pop .search_label {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.search_pop .search_form input[type="search"] {
  flex: 1;
  min-width: 0;
  border: none;
  background: none;
  font-size: 1.6rem;
  line-height: 1.5;
  color: var(--title);
  font-family: inherit;
  outline: none;
}
.search_pop .search_form input[type="search"]::placeholder {
  color: rgba(76, 81, 89, 0.55);
}
.search_pop .search_form input[type="search"]::-webkit-search-cancel-button {
  -webkit-appearance: none;
}
.search_pop .search_form button[type="submit"] {
  flex-shrink: 0;
  width: 4.4rem;
  height: 4.4rem;
  padding: 0;
  border: none;
  border-radius: 50%;
  background-color: var(--primary);
  color: #fff;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.3s;
}
.search_pop .search_form button[type="submit"]:hover {
  background-color: var(--secondary);
  transform: scale(1.05);
}
.search_pop .search_form button[type="submit"] svg {
  display: block;
  width: 1.8rem;
  height: 1.8rem;
  margin: 0 auto;
}

.quote_modal {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  background-color: rgba(0, 0, 0, 0.75);
  display: none;
  align-items: center;
  overflow: auto;
}
.quote_modal::-webkit-scrollbar {
  display: none;
}
.quote_modal .modal_content {
  width: calc(100% - 4rem);
  max-width: 122rem;
  margin: 5rem auto;
  padding: 0;
  background-color: #f6f6f6;
}
.quote_modal .contact_form:after {
  display: none;
}
.quote_modal .contact_form .left {
  width: 45%;
  background: var(--primary);
}
.quote_modal .contact_form .right {
  width: 55%;
  padding: 5rem;
  align-self: center;
}
.quote_modal .contact_form .form form span.col2 {
  width: 100%;
}
/*** global css ***/

div:has(.about_nav) {
  position: sticky;
  top: -3.8rem;
  z-index: 99;
}

@media screen and (min-width: 769px) and (max-width: 1620px) {
  header .logo {
    margin-right: 0;
  }
}
@media screen and (min-width: 769px) and (max-width: 1440px) {
  footer .bottom .flex {
    padding-right: 19%;
  }
}
@media screen and (min-width: 769px) and (max-width: 1220px) {
  .content {
    padding: 0 3rem;
  }
  header nav .menu > li > a {
    font-size: 16px;
  }
  .header_menu .list li a .title {
    font-size: 16px;
  }
  .conn_side {
    padding-right: 3rem;
  }
}
@media screen and (min-width: 769px) and (max-width: 1100px) {
  header nav .menu > li > a {
    font-size: 14px;
  }
  .header_menu .list li a .title {
    font-size: 14px;
  }
  header .btns .btn {
    margin: 0;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .content,
  .swiper_content {
    max-width: 896px;
  }
}
@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.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: 2.5rem;
  }
  header .btns .btn_menu {
    display: block;
  }
  header .btns .btn_search,
  header .btns .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;
  }
}
@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 {
    font-size: 14px;
    line-height: 40px;
    padding: 0 20px;
    gap: 0.5em;
  }
  .btn_i {
    font-size: 14px;
  }
  .btn_i.btn_more {
    font-size: 14px;
  }
  .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 .text {
    padding: 0;
  }
  div.head.flex .btn,
  div.head.flex .btn_i {
    margin: 0;
  }
  div.head .subtitle {
    font-size: 13px;
    margin-bottom: 8px;
  }
  div.head.bn p,
  div.head.bn .desc {
    line-height: 1.5;
  }
  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 .btn,
  div.head .btn_i {
    margin-top: 20px;
  }
  header {
    top: 0;
  }
  header.sticky-header.opt {
    top: 0;
  }
  header .logo img {
    height: 30px;
  }
  header .btns {
    gap: 20px;
    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 0;
  }
  footer .foot_social {
    grid-template-columns: 1fr;
    gap: 0;
  }
  footer .foot_social strong {
    font-size: 16px;
  }
  footer .foot_social .quote_form {
    width: 100%;
    margin-top: 16px;
  }
  footer .foot_social .quote_form form {
    grid-template-columns: 1fr 1fr 46px;
    gap: 16px;
  }
  footer .foot_social .quote_form form input,
  footer .foot_social .quote_form form textarea {
    height: 46px;
    padding: 0 20px;
    font-size: 14px;
  }
  footer .foot_social .quote_form form textarea {
    height: 100px;
    padding: 14px 20px;
  }
  footer .foot_social .partners {
    margin-top: 30px;
  }
  footer .foot_social .partners ul {
    gap: 20px;
    justify-content: flex-start;
  }
  footer .foot_social .partners .img {
    height: 30px;
  }
  footer .foot_social .social {
    gap: 16px;
    order: 5;
    width: 100%;
    margin-top: 30px;
  }
  footer .foot_social .social a,
  footer .foot_social .social span {
    width: 40px;
    height: 40px;
  }
  footer .foot_social .social .qrcode {
    width: 80px;
    height: 80px;
    margin: 8px;
    padding: 2px;
  }
  footer .grid {
    grid-template-columns: 1fr;
    margin-top: 30px;
  }
  footer .foot_intro {
    padding: 30px 20px;
    gap: 20px;
  }
  footer .foot_intro .logo img {
    max-width: 220px;
  }
  footer .foot_intro .connect strong {
    font-size: 16px;
    margin-bottom: 10px;
  }
  footer .foot_intro .connect ul {
    font-size: 14px;
  }
  footer .foot_intro .connect ul li + li {
    margin-top: 5px;
  }
  footer .foot_intro .foot_nav {
    margin: 0;
    align-self: flex-end;
  }
  footer .foot_intro .foot_nav ul {
    gap: 14px;
    max-height: 120px;
  }
  footer .foot_intro .foot_nav a {
    font-size: 14px;
  }
  footer .foot_subscribe {
    border-left: none;
    border-top: 1px solid #3d3d3d;
    padding: 30px 20px;
  }
  footer .foot_subscribe form {
    max-width: unset;
    gap: 16px 0;
    padding: 0;
  }
  footer .foot_subscribe form input {
    height: 46px;
    padding: 0 20px;
    font-size: 14px;
  }
  footer .foot_subscribe form input[type=submit] {
    font-size: 14px;
    min-width: 90px;
  }
  footer .foot_subscribe form span:has(input[type=checkbox]) + span:has(input[type=checkbox]) {
    margin-top: -6px;
  }
  footer .foot_subscribe form input[type=checkbox] {
    width: 16px;
    height: 16px;
  }
  footer .foot_subscribe form input[type=checkbox] ~ span {
    font-size: 14px;
    width: calc(100% - 22px);
    padding-left: 5px;
    margin-top: -2px;
  }
  footer .bottom {
    padding: 20px 0;
  }
  footer .bottom .flex {
    padding-right: 20%;
  }
  footer .bottom p {
    font-size: 13px;
  }
  footer .bottom a {
    font-size: 14px;
  }
  footer .bottom ul {
    gap: 16px 0;
  }
  footer .bottom ul li::before {
    height: 10px;
    margin: 0 10px;
  }
  .conn_side {
    padding: 0 20px;
    bottom: 20px;
  }
  .conn_side ul {
    transform: translateX(0);
    opacity: 1;
  }
  .conn_side a,
  .conn_side span {
    width: 40px;
    height: 40px;
    border-radius: 8px;
  }
  .quote_model .quote_box,
  .quote_model2 .quote_box {
    width: calc(100% - 40px);
    margin: 40px auto;
    grid-template-columns: 50% 1fr;
  }
  .quote_model .close,
  .quote_model2 .close {
    width: 12px;
    height: 12px;
    right: 20px;
    top: 20px;
  }
  .quote_model .info,
  .quote_model2 .info {
    padding: 30px 20px;
  }
  .quote_model .info .subtitle,
  .quote_model2 .info .subtitle {
    font-size: 13px;
    margin-bottom: 8px;
  }
  .quote_model .info .title,
  .quote_model2 .info .title {
    font-size: 22px;
  }
  .quote_model .info .line,
  .quote_model2 .info .line {
    margin-top: -5px;
  }
  .quote_model .info .desc,
  .quote_model2 .info .desc {
    line-height: 1.5;
    margin-top: 10px;
  }
  .quote_model .info .btn,
  .quote_model2 .info .btn {
    line-height: 40px;
    font-size: 14px;
    margin-top: 20px;
  }
  .quote_model3 .quote_box {
    width: calc(100% - 40px);
    margin: 40px auto;
  }
  .quote_model3 .close {
    width: 12px;
    height: 12px;
    right: 20px;
    top: 20px;
  }
  .quote_model3 .image .logo {
    max-width: 140px;
  }
  .quote_model3 .info {
    padding: 30px 20px;
    gap: 20px;
  }
  .quote_model3 .info .lt {
    gap: 16px;
  }
  .quote_model3 .info .subtitle {
    font-size: 13px;
  }
  .quote_model3 .info .title {
    font-size: 22px;
    margin-top: 0;
  }
  .quote_model3 .info .desc {
    line-height: 1.5;
  }
  .quote_model3 .info .btn {
    line-height: 40px;
    font-size: 14px;
    margin-top: 20px;
  }
  .page_application {
    padding: 50px 0;
    overflow: hidden;
  }
  .page_application .page_application_swiper {
    overflow: unset;
    margin-top: 30px;
  }
  .page_application .page_application_swiper .swiper-slide {
    max-width: 232px;
  }
  .page_application .item .title {
    font-size: 18px;
    margin-top: 14px;
  }
  .page_faqs {
    padding: 50px 0;
  }
  .page_faqs .faqs {
    margin-top: 30px;
  }
  .page_faqs .faq_list .faq_item {
    margin-bottom: 14px;
  }
  .page_faqs .faq_list .faq_item.active {
    margin-bottom: 14px;
  }
  .page_faqs .faq_list .faq_item.active .question {
    padding-top: 14px;
  }
  .page_faqs .faq_list .question {
    font-size: 18px;
    padding-top: 14px;
    padding-left: 20px;
    padding-bottom: 14px;
  }
  .page_faqs .faq_list .answer {
    font-size: 14px;
    line-height: 1.5;
    padding: 0 20px 20px;
  }
  .fabric_list .info {
    padding: 14px 0 22px;
  }
  .fabric_list .info .title {
    font-size: 18px;
  }
  .fabric_list .info .desc {
    font-size: 14px;
    line-height: 1.5;
    margin-top: 10px;
  }
  .fabric_list .btn_i {
    transform: translateX(0);
    margin-top: 20px;
  }
  .fabric_list .btn_i::after {
    filter: unset;
  }
  .directory_blog {
    padding: 50px 0;
  }
  .directory_blog .list {
    margin-top: 30px;
  }
  .directory_blog .list ul {
    grid-template-columns: repeat(auto-fill, minmax(min(250px, 100%), 1fr));
    gap: 20px;
  }
  .directory_blog .blog_list a {
    border-radius: 10px;
    padding: 10px;
  }
  .directory_blog .blog_list .img {
    border-radius: 10px;
  }
  .directory_blog .blog_list .info {
    padding: 20px 10px 10px;
    margin: 0;
  }
  .directory_blog .blog_list .info .title {
    font-size: 18px;
  }
  .directory_blog .blog_list .info .desc {
    font-size: 14px;
    line-height: 1.5;
    margin-top: 10px;
  }
  .directory_blog .blog_list .info .btn_i {
    transform: translate(0);
    margin-top: 20px;
    color: var(--primary);
  }
  .directory_blog p.center:has(.btn_i) {
    margin-top: 40px;
    min-height: 19px;
  }

  /*** global css ***/
  .wpcf7 form.wpcf7-form .wpcf7-not-valid-tip {
    font-size: 12px;
    margin-top: 5px;
  }
  .wpcf7 form.wpcf7-form .wpcf7-response-output {
    font-size: 14px;
    line-height: 1.5;
  }

  .video_pop .pop_content {
    max-width: 96vw;
    width: 96vw;
    height: auto;
  }

  .search_pop {
    padding: 80px 20px 20px;
  }
  .search_pop .search_box {
    max-width: none;
    border-radius: 12px;
    padding: 12px;
  }
  .search_pop .search_form {
    gap: 8px;
    padding: 4px 4px 4px 16px;
  }
  .search_pop .search_form input[type="search"] {
    font-size: 16px;
  }
  .search_pop .search_form button[type="submit"] {
    width: 36px;
    height: 36px;
  }
  .search_pop .search_form button[type="submit"] svg {
    width: 16px;
    height: 16px;
  }
  .quote_modal .contact_form .flex {
    flex-direction: row;
    gap: 0;
  }
  .quote_modal .contact_form .right {
    padding: 30px 20px;
  }
  /*** global css ***/

  div:has(.about_nav) {
    top: 64px;
  }
}
@media screen and (max-width: 576px) {
  header .btns {
    gap: 12px;
  }
  header .btns .btn {
    display: none;
  }
  .quote_model .quote_box {
    grid-template-columns: 1fr;
  }
  .quote_model .close {
    filter: contrast(0) brightness(2);
  }
  .quote_model2 .quote_box {
    grid-template-columns: 1fr;
  }
  .quote_model3 .info {
    display: block;
  }
  .quote_model3 .info .lt {
    flex-direction: column;
    gap: 0;
  }
  .quote_model3 .info .subtitle {
    order: -1;
    margin-bottom: 8px;
  }
  .quote_model3 .info .line {
    margin-left: auto;
    margin-top: -5px;
  }
  .quote_model3 .info .rt {
    width: 100%;
  }
  .quote_model3 .info .desc {
    margin-top: 10px;
  }
  footer .main {
    padding: 40px 0;
  }
  footer .main .content {
    display: flex;
    flex-direction: column-reverse;
    gap: 30px;
  }
  footer .main .grid {
    margin: 0;
  }
  footer .bottom .flex {
    flex-direction: column-reverse;
    align-items: flex-start;
    padding: 0;
  }
  footer .foot_social .quote_form form {
    grid-template-columns: 1fr 46px;
  }
  footer .foot_social .quote_form form span:not(:has(input[type=email], input[type=submit])),
  footer .foot_social .quote_form form .col2 {
    grid-column: -1/1;
  }
  footer .foot_intro {
    flex-direction: column;
    gap: 30px;
  }
  footer .foot_intro .logo {
    max-width: max-content;
  }
  footer .foot_intro .foot_nav {
    min-width: unset;
    width: 100%;
    align-self: unset;
  }
  footer .foot_intro .foot_nav strong {
    display: block;
    font-size: 16px;
    line-height: 46px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    padding: 0 22px;
    position: relative;
    margin-bottom: 16px;
  }
  footer .foot_intro .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;
    filter: contrast(0) brightness(2);
  }
  footer .foot_intro .foot_nav.active strong::after {
    transform: translateY(-50%) rotate(180deg);
  }
  footer .foot_intro .foot_nav > div {
    display: none;
    padding: 0 20px 20px;
  }
  footer .foot_intro .foot_nav > div ul {
    display: block;
    max-height: unset;
  }
  footer .foot_intro .foot_nav > div li + li {
    margin-top: 14px;
  }
  footer .foot_intro .foot_nav > div a {
    font-size: 14px;
    display: block;
    font-weight: normal;
  }
  footer .foot_intro .foot_nav > div p {
    font-size: 14px;
    line-height: 1.5;
  }
  .page_application .item .title {
    font-size: 16px;
  }
  .page_faqs .faq_list .question {
    font-size: 16px;
  }

  .quote_modal .contact_form .left {
    display: none;
  }
  .quote_modal .contact_form .right {
    width: 100%;
  }
}
