* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --primary: #000;
  --secondary: #000;
  --title: #000;
  --text: #4b4b4b;
  --bg: #f5f6f7;
  --shadow: 0 0.7rem 0.5rem rgba(214, 214, 214, 0.55);
}
html {
  scroll-behavior: smooth;
  font-size: clamp(7.5px, 0.520834vw, 10px);
}
.content {
  max-width: 121rem;
  margin: 0 auto;
  position: relative;
}
.content .content {
  padding: 0;
}
.swiper_box {
  position: relative;
}
.swiper_content {
  max-width: 124rem;
  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);
}
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%;
  word-break: normal;
  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;
  word-break: break-word;
  color: var(--title);
  font-family: "Lato", 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 {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999999;
  background-color: rgba(155, 155, 155, 0.66);
  background-color: #efefef;
  display: flex;
  align-items: center;
  justify-content: center;
}
#fullscreen-loader::after {
  content: '';
  display: block;
  box-sizing: border-box;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  border: 2px solid;
  border-color: transparent red transparent red;
  animation: rotate 2s linear infinite;
  background: url(../img/404-2.png) no-repeat center / contain #fff;
}
@keyframes rotate {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
.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,
.img.img_ab .bg_pc,
.img.img_ab .bg_mobile {
  position: absolute;
  left: 0;
  top: 0;
}
.img.img_aba {
  position: relative;
}
.img.img_aba::after {
  content: '';
  display: block;
  padding-bottom: var(--h);
}
.img.img_aba img {
  position: absolute;
  left: 0;
  top: 0;
}
.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;
}
.img_bg > .bg_pc,
.img_bg > .bg_mobile {
  position: absolute;
  height: 100%;
  left: 0;
  top: 0;
}
.img_bg > .bg_pc img,
.img_bg > .bg_mobile img {
  height: 100%;
}
.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;
}
.bg_pc,
.bg_mobile {
  width: 100%;
  height: auto;
}
.bg_pc img,
.bg_mobile img {
  width: 100%;
  height: auto;
  display: block;
}
.bg_pc {
  display: block;
}
.bg_mobile {
  display: none;
}
.btn {
  display: inline-block;
  cursor: pointer;
  text-align: center;
  transition: all 0.3s;
  border-radius: 100px;
  background-color: var(--primary);
  border: 1px solid var(--primary);
  color: #fff;
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 4.3rem;
  padding: 0 3.3rem;
  min-width: 14.2rem;
}
.btn:hover {
  background-color: transparent;
  color: var(--primary);
}
.btn_i {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s;
  background-color: transparent;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--title);
  line-height: normal;
  gap: 0.9rem;
}
.btn_i::after {
  display: inline-block;
  width: 1.6rem;
  height: 1.5rem;
  content: '';
  background: url("../img/arrow-r.svg") no-repeat center bottom / contain;
  flex-shrink: 0;
  transition: all 0.3s;
}
.btn_i:hover {
  text-decoration: underline;
}
.btn_i:hover::after {
  transform: translateX(20%);
}
.btn_w {
  display: inline-block;
  cursor: pointer;
  text-align: center;
  transition: all 0.3s;
  border-radius: 100px;
  background-color: #fff;
  color: var(--title);
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 4.6rem;
  padding: 0 2.3rem;
}
.btn_w:hover {
  background-color: var(--title);
  color: #fff;
}
.btn_line {
  display: inline-block;
  cursor: pointer;
  text-align: center;
  transition: all 0.3s;
  border-radius: 100px;
  background-color: transparent;
  border: 1px solid var(--primary);
  color: var(--title);
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 4.4rem;
  padding: 0 2rem;
  min-width: 14.3rem;
}
.btn_line:hover {
  background-color: var(--title);
  color: #fff;
}
.swiper_btns {
  gap: 3.6rem;
  display: flex;
}
.swiper_btns div {
  width: 6.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/arrow.svg) no-repeat center / 30.77%;
  filter: contrast(0) brightness(2);
}
.swiper_btns div:hover {
  background-color: transparent;
}
.swiper_btns div:hover::after {
  filter: unset;
}
.swiper_btns .btn_next::after {
  transform: rotate(180deg);
}
.swiper_btns .swiper-button-disabled {
  pointer-events: none;
  background-color: transparent;
  border-color: rgba(22, 22, 22, 0.4);
}
.swiper_btns .swiper-button-disabled::after {
  filter: none;
}
.swiper_btns .swiper-button-lock {
  display: block;
  opacity: 0;
  pointer-events: none;
}
.swiper_btns.middle {
  width: 98%;
  max-width: 144.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;
}
.syedittext p,
.syedittext .desc {
  line-height: 2.4rem;
  color: var(--text);
}
.head.bn p {
  font-size: 2rem;
  line-height: 3rem;
  color: rgba(75, 75, 75, 0.85);
}
.head.white {
  color: #fff;
}
.head.white p {
  color: rgba(255, 255, 255, 0.85);
}
.head h1 {
  font-size: 4.8rem;
  line-height: 1.2083333;
  font-weight: 700;
}
.head h2 {
  font-size: 4rem;
  line-height: 1.3;
  font-weight: 700;
}
.head p,
.head .desc {
  line-height: 2.4rem;
  color: var(--text);
}
header {
  position: sticky;
  top: -6.4rem;
  left: 0;
  z-index: 996;
  width: 100%;
  transition: all 0.3s;
  background-color: var(--primary);
}
header.bg {
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}
header.opt {
  top: 0;
}
header .lt {
  display: flex;
  align-items: center;
  margin-right: auto;
  padding-top: 0.2%;
}
header .lt .logo {
  display: block;
  position: relative;
}
header .lt .logo img {
  display: block;
  width: auto;
  height: 2.30367rem;
}
header .lt .logo p {
  width: 1px;
  height: 1px;
  overflow: hidden;
  position: absolute;
  clip: rect(1px, 1px, 1px, 1px);
}
header nav .menu {
  display: flex;
  gap: 3.7rem;
}
header nav .menu > li {
  position: relative;
  z-index: 2;
}
header nav .menu > li > a {
  display: block;
  font-size: 16px;
  color: #fff;
  transition: all 0.3s;
  line-height: 6.2rem;
  padding-top: 2px;
}
header nav .menu > li.current-menu-item > a,
header nav .menu > li.current-menu-parent > a,
header nav .menu > li:hover > a {
  color: rgba(255, 255, 255, 0.8);
}
header nav .menu > li:hover ul {
  opacity: 1;
  pointer-events: all;
  padding: 1.6rem;
}
header nav .menu > li:hover ul li {
  transform: translate(0);
}
header nav .menu > li.btn_mega_menu .sub-menu {
  display: none;
}
header nav .sub-menu {
  left: -2.4rem;
  position: absolute;
  min-width: 20rem;
  background-color: var(--primary);
  padding: 1.6rem 1.6rem 0;
  box-shadow: 0 0.2rem 0.5rem rgba(255, 255, 255, 0.1);
  display: block;
  pointer-events: none;
  opacity: 0;
  transition: all 0.3s;
  z-index: -1;
  width: calc(100% + 4.8rem);
}
header nav .sub-menu > li {
  margin-bottom: 5px;
  transition: all 0.4s;
  transform: translateY(-1.6rem);
}
header nav .sub-menu > li > a {
  display: block;
  font-size: 16px;
  color: #fff;
  padding: 0.8rem 0;
  transition: all 0.3s;
  opacity: 0.8;
}
header nav .sub-menu > li > a:hover {
  opacity: 1;
}
header .btns {
  gap: 3.4rem;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-height: 6.4rem;
  margin-left: 2.6rem;
  padding-top: 2px;
}
header .btns .btn_search {
  width: 19px;
  height: 19px;
  cursor: pointer;
  background: url(../img/icon-search.svg) no-repeat center / contain;
  filter: contrast(0) brightness(2);
}
header .btns .btn_lang {
  width: 20px;
  height: 20px;
  cursor: pointer;
  background: url(../img/icon-lang.svg) no-repeat center / contain;
  margin-top: 1px;
}
header .btns .btn_menu {
  display: none;
}
footer {
  background-color: #171717;
  color: #fff;
}
footer .main {
  padding: 10.2rem 0 1.5rem;
}
footer .main strong {
  display: block;
  font-weight: 400;
  text-transform: uppercase;
  opacity: 0.6;
  margin-bottom: 2.7rem;
}
footer .main .flex {
  gap: 11.2rem 2rem;
}
footer .main .foot_intro {
  width: 20rem;
  margin-top: -1.7rem;
  margin-right: 1.2%;
}
footer .main .foot_intro .logo {
  display: block;
  position: relative;
  max-width: 18.3rem;
}
footer .main .foot_intro .logo img {
  display: block;
  width: 100%;
  height: auto;
}
footer .main .foot_intro .logo p {
  width: 1px;
  height: 1px;
  overflow: hidden;
  position: absolute;
  clip: rect(1px, 1px, 1px, 1px);
}
footer .main .foot_intro p {
  opacity: 0.85;
  margin-top: 3.1rem;
}
footer .main .foot_nav li a {
  font-size: 1.8rem;
  transition: all 0.3s;
  vertical-align: top;
  opacity: 0.85;
}
footer .main .foot_nav li a:hover {
  opacity: 1;
  text-decoration: underline;
}
footer .main .foot_nav li + li {
  margin-top: 1.4rem;
}
footer .main .foot_social {
  width: 26.2rem;
}
footer .main .foot_social .social {
  gap: 2rem 2.5rem;
  display: flex;
  flex-wrap: wrap;
  margin-top: 2.9rem;
}
footer .main .foot_social .social a {
  opacity: 1;
  display: block;
  width: 2.2rem;
  height: 2.2rem;
  overflow: hidden;
  text-indent: -999px;
  position: relative;
  transition: all 0.3s;
}
footer .main .foot_social .social a::after {
  content: '';
  display: block;
  position: absolute;
  inset: 0;
  background: no-repeat center / contain;
}
footer .main .foot_social .social a:hover {
  transform: scale(1.1);
}
footer .main .foot_social .social .facebook a::after {
  background-image: url(../img/facebook.svg);
}
footer .main .foot_social .social .twitter a::after {
  background-image: url(../img/twitter.svg);
}
footer .main .foot_social .social .youtube a::after {
  background-image: url(../img/youtube.svg);
}
footer .main .foot_social .social .instagram a::after {
  background-image: url(../img/instagram.svg);
}
footer .main .foot_social .social .linkedin a::after {
  background-image: url(../img/linkedin.svg);
}
footer .main .foot_social .social .tiktok a::after {
  background-image: url(../img/tiktok.svg);
}
footer .main .foot_legal {
  margin-top: 1px;
}
footer .main .foot_legal strong {
  display: none;
}
footer .main .foot_legal ul {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}
footer .main .foot_legal ul li {
  display: flex;
  align-items: center;
}
footer .main .foot_legal ul li::before {
  width: 1px;
  height: 1.1rem;
  background-color: #fff;
  opacity: 0.5;
  display: inline-block;
  content: '';
  margin: 0 1.8rem 0 1.6rem;
}
footer .main .foot_legal ul li:first-child::before {
  display: none;
}
footer .main .foot_legal li + li {
  margin-top: 0;
}
footer .main .foot_legal li a {
  font-size: 1.4rem;
  opacity: 1;
}
footer .main .btn_lang {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  font-size: 1.4rem;
  gap: 0.9rem;
}
footer .main .btn_lang::before {
  width: 1.9rem;
  height: 1.9rem;
  display: inline-block;
  content: '';
  flex-shrink: 0;
  background: url("../img/icon-lang.svg") no-repeat center / contain;
}
footer .copyright {
  padding: 1.3rem 0 1.6rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
footer .copyright p {
  font-size: 1.4rem;
  opacity: 0.6;
}
.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;
  font-weight: 600;
  border-top: 1px solid rgba(211, 215, 218, 0.5);
  padding: 5rem 0;
  display: none;
}
.mega_menu .flex {
  gap: 3rem;
}
.mega_menu .nav {
  width: 20%;
  max-height: calc(100vh - 20rem);
  overflow-y: auto;
}
.mega_menu .nav .active a {
  background-color: var(--bg);
}
.mega_menu .nav .active a::after {
  opacity: 1;
}
.mega_menu .nav a {
  display: grid;
  grid-template-columns: 1fr 14px;
  align-items: center;
  font-size: 16px;
  transition: all 0.3s;
  border-radius: 0.4rem;
  gap: 2rem;
  padding: 2rem;
}
.mega_menu .nav a::after {
  padding-bottom: 100%;
  display: block;
  content: '';
  background: url("../img/arrow.svg") no-repeat center / contain;
  transform: rotate(180deg);
  filter: contrast(0) brightness(0);
  opacity: 0;
  transition: all 0.3s;
}
.mega_menu .list {
  flex: 1;
  max-height: calc(100vh - 20rem);
  overflow-y: auto;
  display: none;
  padding: 1px;
}
.mega_menu .list.active {
  display: block;
}
.mega_menu .list ul {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(20rem, 100%), 1fr));
  gap: 4rem 2rem;
}
.mega_menu .list ul a {
  overflow: hidden;
}
.mega_menu .list ul a:hover {
  box-shadow: var(--shadow);
}
.mega_menu .list .title {
  font-size: 16px;
}
.mega_menu p.center:has(.btn_line) {
  margin-top: 5rem;
}
.float_connect {
  position: fixed;
  z-index: 99;
  right: 2.91667vw;
  bottom: 5rem;
}
.float_connect.active .info {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}
.float_connect .icon {
  width: 6.2rem;
  height: 6.2rem;
  border-radius: 50%;
  border: 1px solid #d1d1d1;
  background-color: #fff;
  box-shadow: 1rem 1rem 0.8rem rgba(202, 208, 216, 0.4);
  cursor: pointer;
}
.float_connect .icon img {
  transform: scale(0.5);
}
.float_connect .info {
  position: absolute;
  min-width: 26.4rem;
  background-color: #fff;
  right: calc(100% + 0.6rem);
  bottom: 66%;
  border-radius: 0.7rem;
  box-shadow: 1rem 1rem 0.8rem rgba(202, 208, 216, 0.4);
  pointer-events: none;
  transform: translateY(2rem);
  opacity: 0;
  transition: all 0.4s, opacity 0.3s;
  padding: 1.5rem 2.6rem 2.4rem 2.5rem;
}
.float_connect .info::after {
  position: absolute;
  width: 0.9rem;
  height: 0.7rem;
  background-color: #fff;
  right: 6.1%;
  top: 100%;
  clip-path: polygon(0 0, 100% 0, 100% 100%);
  content: '';
}
.float_connect .info ul li {
  border-bottom: 1px solid #dbdbdb;
  padding: 1.4rem 0;
}
.float_connect .info ul li:last-of-type {
  border-bottom: none;
}
.float_connect .info ul li .label {
  font-size: 1.7rem;
  font-weight: 700;
  position: relative;
  margin-bottom: 0.6rem;
  padding-left: 2.2rem;
}
.float_connect .info ul li .label::before {
  position: absolute;
  width: 1.6rem;
  height: 1.6rem;
  left: 0;
  top: 2px;
  content: '';
  background: no-repeat bottom left / contain;
}
.float_connect .info ul li a {
  font-size: 1.7rem;
  color: #008cff;
  vertical-align: top;
  transition: all 0.3s;
}
.float_connect .info ul li a:hover {
  text-decoration: underline;
}
.float_connect .info ul li p {
  font-size: 1.4rem;
  color: var(--text);
  margin-top: 0.3rem;
}
.float_connect .info ul .phone .label::before {
  background-image: url("../img/icon-phone-line.svg");
}
.float_connect .info ul .email .label::before {
  background-image: url("../img/icon-email-line.svg");
  background-size: 93.75%;
}
.float_connect .info .btn {
  width: 100%;
  font-size: 1.5rem;
  line-height: 4.1rem;
  margin-top: 0.5rem;
}
.page_banner {
  max-width: 2560px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
.page_banner picture,
.page_banner img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page_banner .wrap {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 4rem 0;
  overflow-y: auto;
}
.page_banner .content {
  display: flex;
  align-items: center;
  height: 100%;
}
.page_banner .head {
  flex: 1;
  padding-bottom: 4.5%;
}
.page_banner p {
  margin-top: 1.7rem;
}
.page_banner .search_box {
  margin-top: 2.5rem;
  max-width: 52.4rem;
}
.page_banner select {
  display: block;
  width: 100%;
  border-radius: 100px;
  border: 1px solid rgba(216, 216, 216, 0.95);
  background: url("../img/icon-select.svg") no-repeat center right 2.4rem/1.3rem rgba(255, 255, 255, 0.95);
  font-size: 1.6rem;
  color: #3a3a3a;
  height: 6.4rem;
  padding: 0 5rem 2px 3.1rem;
}
.guide_box {
  border-radius: 1.8rem;
  overflow: hidden;
  position: relative;
}
.guide_box picture,
.guide_box img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.guide_box .head {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  height: 100%;
  max-width: 39.7rem;
  position: absolute;
  left: 8.18%;
  top: 0;
  z-index: 2;
}
.guide_box .head .title,
.guide_box .head h2 {
  font-size: 3.4rem;
  line-height: 1.353;
  font-weight: 700;
}
.guide_box .head .btn_w {
  margin-top: 3.2rem;
}
.page_service {
  padding: 4.3rem 0 10.3rem;
}
.page_service .head {
  margin-bottom: 4.3rem;
}
.page_service p {
  font-size: 1.8rem;
  margin-top: 1.7rem;
}
.page_service .items ul {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(30rem, 100%), 1fr));
  gap: 2rem 2.02896%;
}
.page_service .items .active .item::before {
  opacity: 1;
}
.page_service .items .active .item .icon {
  background-color: var(--primary);
}
.page_service .items .active .item .icon img {
  filter: contrast(0) brightness(2);
}
.page_service .item {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: var(--radius);
  background-color: var(--bg);
  --radius: 1.8rem;
  transition: all 0.3s;
  padding: 5.4rem 3rem 4.5rem;
}
.page_service .item::before {
  position: absolute;
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  content: '';
  border-radius: var(--radius);
  border: 2px solid var(--primary);
  background-color: #fff;
  box-shadow: var(--shadow);
  z-index: -1;
  pointer-events: none;
  transition: all 0.3s;
  opacity: 0;
}
.page_service .item .icon {
  width: 8rem;
  height: 8rem;
  margin: 0 auto;
  border-radius: 50%;
  background-color: #fff;
  transition: all 0.3s;
}
.page_service .item .icon img {
  transform: scale(0.625);
}
.page_service .item .info {
  flex: 1;
  display: flex;
  flex-direction: column;
  text-align: center;
  margin-top: 2.5rem;
}
.page_service .item .info .title {
  font-size: 2.2rem;
  font-weight: 700;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}
.page_service .item .info .desc {
  max-width: 29.8rem;
  margin: 1.1rem auto auto;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 3;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}
.page_service .item .info i {
  display: block;
  width: 1.6rem;
  height: 1.5rem;
  content: '';
  background: url("../img/arrow-r.svg") no-repeat center bottom / contain;
  transition: all 0.3s;
  margin: 2.3rem auto 0;
}
.page_faqs {
  padding: 4.8rem 0 11.5rem;
}
.page_faqs .head {
  width: 30%;
  padding-top: 1.3%;
}
.page_faqs .head h2 {
  line-height: 1.575;
}
.page_faqs .head p {
  font-size: 1.8rem;
  line-height: 3rem;
  margin-top: 1.6rem;
  max-width: 32rem;
}
.page_faqs .head .btn {
  margin-top: 2.6rem;
}
.page_faqs .faqs {
  flex: 1;
  width: 100%;
  max-width: 79.5rem;
}
.page_faqs p.center:has(.btn_line) {
  margin-top: 4.2rem;
  min-height: 4.6rem;
}
.page_faqs .faq_item .answer ol {
  max-width: 67.4rem;
}
.page_banner2 {
  background-color: var(--bg);
  padding: 1.9rem 0;
}
.page_banner2 .img {
  width: 24.7934%;
  --h: 100%;
  align-self: center;
  margin-right: -1.57%;
}
.page_banner2 .img:hover img {
  transform: scale(1.02);
}
.page_banner2 .head {
  flex: 1;
  /* max-width: 64rem; */
  width: 100%;
  padding-top: 0.9%;
}
.page_banner2 h1 a {
  font-size: 2rem;
  line-height: normal;
  font-weight: 400;
  color: #222222;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  vertical-align: bottom;
  transition: all 0.3s;
  display: inline-block;
  margin-left: 0.9rem;
  margin-bottom: 0.7rem;
}
.page_banner2 h1 a:hover {
  color: #000;
  text-decoration-color: transparent;
}
.page_banner2 p {
  margin-top: 1.9rem;
}
.page_guide {
  padding: 4.7rem 0 3.4rem;
}
.page_help {
  padding: 10.9rem 0 9.8rem;
}
.page_help .flex {
  background-color: var(--bg);
  border-radius: 2.4rem;
  padding: 3.3rem 3.8rem;
}
.page_help .info {
  flex: 1;
  width: 100%;
  max-width: 63rem;
}
.page_help .info strong {
  font-size: 2.3rem;
  font-weight: 700;
}
.page_help .info p {
  line-height: 3rem;
  margin-top: 1.1rem;
}
.page_help .btns {
  display: flex;
  align-items: center;
  gap: 1.8rem;
  margin-right: 5.5%;
  padding-top: 0.6%;
}
.nav_box {
  max-width: 100%;
  width: max-content;
  border-radius: 3rem;
  background-color: #fff;
  padding: 0.7rem 1.2rem;
  pointer-events: all;
}
.nav_box .nav_list {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
  gap: 2rem 1.1rem;
}
.nav_box .nav_list::before {
  position: absolute;
  width: var(--w);
  height: var(--h);
  left: var(--l);
  top: var(--t);
  background-color: var(--primary);
  z-index: -1;
  content: '';
  border-radius: 2.3rem;
  transition: all 0.3s;
}
.nav_box .nav_item {
  color: var(--text);
  text-align: center;
  cursor: pointer;
  display: block;
  height: 100%;
  transition: all 0.3s;
  padding: 1.2rem 2.3rem 1.4rem;
  border-radius: 100px;
  min-width: 10.9rem;
}
.nav_box .nav_item.active {
  color: #fff;
}
.search_box form {
  display: grid;
  grid-template-columns: 1fr 5.4rem;
  background-color: rgba(255, 255, 255, 0.95);
  border: 1px solid #ffffff;
  border-radius: 100px;
  height: 6.4rem;
}
.search_box form input {
  display: block;
  width: 100%;
  font-size: 1.6rem;
  color: #3a3a3a;
  background-color: transparent;
  padding: 0 3rem 0.3rem;
}
.search_box form input::placeholder {
  color: #3a3a3a;
}
.search_box form input[type=submit] {
  display: block;
  width: 100%;
  background: url("../img/icon-search.svg") no-repeat center left / 40%;
  text-indent: -999px;
  color: transparent;
  padding: 0;
}
.breadcrumbs {
  line-height: 3rem;
  min-height: 3rem;
}
.breadcrumbs span {
  font-size: 2rem;
  color: rgba(75, 75, 75, 0.85);
}
.breadcrumbs span span::before {
  display: inline-block;
  content: '';
  background: url("../img/bread-nav.svg") no-repeat center / contain;
  width: 0.9rem;
  height: 0.9rem;
  margin: 0 1.3rem 0 1.2rem;
}
.breadcrumbs span span:first-child::before {
  display: none;
}
.breadcrumbs span a {
  transition: all 0.3s;
  text-decoration: underline transparent;
}
.breadcrumbs span a:hover {
  color: var(--primary);
  text-decoration-color: var(--primary);
}
.pd_box {
  border-radius: 2.2rem;
  border: 1px solid #dddddd;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 1.4rem 3.4rem;
}
.pd_box .info {
  flex: 1;
  width: 100%;
  max-width: 63rem;
}
.pd_box .info .title {
  font-size: 3.34rem;
  line-height: normal;
  font-weight: 700;
  color: var(--title);
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}
.pd_box .info .desc {
  margin-top: 1.5rem;
  line-height: 1.875;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}
.pd_box .info .btn {
  margin-top: 2.2rem;
}
.pd_box .img {
  width: 21.1%;
  --h: 100%;
}
.pd_box .img:hover img {
  transform: scale(1.02);
}
.product_list > li.active a::before,
.product_list > li.active .nav_item::before {
  opacity: 1;
}
.product_list > li.active .title,
.product_list > li .nav_item .title {
  text-decoration: underline;
}
.product_list > li > a,
.product_list > li > .nav_item {
  position: relative;
  z-index: 2;
  display: block;
  height: 100%;
  border-radius: var(--radius);
  background-color: var(--bg);
  --radius: 2.4rem;
  transition: all 0.3s;
  cursor: pointer;
}
.product_list > li > a::before,
.product_list > li > .nav_item::before {
  position: absolute;
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  content: '';
  border-radius: var(--radius);
  border: 2px solid var(--primary);
  background-color: #fff;
  box-shadow: var(--shadow);
  z-index: -1;
  pointer-events: none;
  transition: all 0.3s;
  opacity: 0;
}
.product_list > li > a:hover img,
.product_list > li > .nav_item:hover img {
  transform: scale(1.02);
}
.product_list > li > a .img,
.product_list > li > .nav_item .img {
  padding-bottom: 100%;
}
.product_list > li > a .title,
.product_list > li > .nav_item .title {
  text-align: center;
  font-weight: 700;
  transition: all 0.3s;
  padding: 11.6% 2rem 14.5%;
}
.product_l2_list a:hover::before,
.product_l2_list .active a::before {
  opacity: 1;
}
.product_l2_list a:hover .title,
.product_l2_list .active a .title {
  text-decoration: underline;
}
.product_l2_list a {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 6rem 1fr auto;
  height: 100%;
  align-items: center;
  background-color: var(--bg);
  border-radius: var(--radius);
  --radius: 2.4rem;
  padding: 1.25rem 3rem 1.25rem 2.3rem;
  gap: 2.2rem;
}
.product_l2_list a::before {
  position: absolute;
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  content: '';
  border-radius: var(--radius);
  border: 2px solid var(--primary);
  z-index: -1;
  pointer-events: none;
  transition: all 0.3s;
  opacity: 0;
}
.product_l2_list a:hover img {
  transform: scale(1.02);
}
.product_l2_list .img {
  padding-bottom: 100%;
}
.product_l2_list .title {
  font-weight: 700;
  transition: all 0.3s;
}
.product_l2_list .btn_i {
  gap: 1.5rem;
}
.faq_cat_item.active a::before {
  opacity: 1;
}
.faq_cat_item a {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: var(--radius);
  background-color: var(--bg);
  --radius: 1.8rem;
  transition: all 0.3s;
  padding: 13.18% 7.75% 10.85%;
}
.faq_cat_item a::before {
  position: absolute;
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  content: '';
  border-radius: var(--radius);
  border: 2px solid var(--primary);
  background-color: #fff;
  box-shadow: var(--shadow);
  z-index: -1;
  pointer-events: none;
  transition: all 0.3s;
  opacity: 0;
}
.faq_cat_item .info {
  flex: 1;
  text-align: center;
}
.faq_cat_item .info .title {
  font-size: 2.2rem;
  font-weight: 700;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}
.faq_cat_item .info .desc {
  max-width: 29.8rem;
  margin: 1.1rem auto 0;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 3;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}
.faq_cat_item i {
  display: block;
  content: '';
  width: 1.7rem;
  height: 1.7rem;
  background: url("../img/arrow-r.svg") no-repeat center / contain;
  margin: 2.4rem auto 0;
}
.video_item a {
  display: block;
  height: 100%;
}
.video_item .img {
  border-radius: 1.8rem;
  padding-bottom: 65.3747%;
  padding-bottom: 56.25%;
  background-color: var(--bg);
}
.video_item .img::after {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 20.7%;
  padding-bottom: 20.7%;
  border-radius: 50%;
  background: url("../img/play.svg") no-repeat center / contain #171717;
  content: '';
  transition: all 0.3s;
}
.video_item .img:hover img {
  transform: scale(1.02);
}
.video_item .img:hover::after {
  transform: translate(-50%, -50%) scale(1.1);
}
.video_item .title {
  font-size: 2.2rem;
  line-height: 1.3113636;
  font-weight: 700;
  text-align: center;
  max-width: 35.7rem;
  margin: 1.7rem auto 0;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}
.repair_item {
  display: block;
  height: 100%;
  background-color: var(--bg);
  min-height: 33.9rem;
  border-radius: 1.8rem;
  padding: 1.8rem 1.8rem 3rem;
}
.repair_item::before {
  font-size: 1.4rem;
  color: var(--text);
  display: block;
  counter-increment: num;
  content: counter(num);
}
.repair_item .icon {
  width: 8.7rem;
  height: 8.7rem;
  border-radius: 50%;
  background-color: #fff;
  margin: 2.6rem auto 0;
}
.repair_item .icon img {
  transform: scale(0.574713);
}
.repair_item .info {
  text-align: center;
  margin-top: 2.3rem;
}
.repair_item .info .title {
  font-size: 2.4rem;
  line-height: 1.20208;
  font-weight: 700;
}
.repair_item .info .desc {
  max-width: 21.9rem;
  margin: 1.2rem auto 0;
}
.faq_list .faq_item {
  border-bottom: 1px solid #eaeaea;
  transition: all 0.3s;
}
.faq_list .faq_item.active {
  border-bottom-color: #212121;
}
.faq_list .faq_item.active .question::after {
  transform: rotate(180deg);
}
.faq_list .question {
  cursor: pointer;
  display: grid;
  grid-template-columns: 1fr 2.8rem;
  align-items: center;
  gap: 2rem;
}
.faq_list .question::after {
  display: block;
  padding-bottom: 100%;
  border-radius: 50%;
  background: url("../img/icon-select-w.svg") no-repeat center / 43% var(--primary);
  content: '';
  transition: all 0.3s;
}
.faq_list .answer {
  display: none;
}
.faq_item .question {
  font-size: 2.3rem;
  font-weight: 700;
  padding: 2.6rem 0 2.9rem;
}
.faq_item .answer {
  line-height: 1.5;
  color: var(--text);
  padding: 0.8rem 7.221% 3.9rem 0;
}
.faq_item .answer > *:first-child {
  margin-top: 0;
}
.faq_item .answer > *:last-child {
  margin-bottom: 0;
}
.faq_item .answer strong {
  display: block;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--title);
  margin: 1.6rem 0 0.5rem;
}
.faq_item .answer p {
  margin: 0.5rem 0;
}
.faq_item .answer a {
  color: #000;
  text-decoration: underline;
  vertical-align: top;
  transition: all 0.3s;
}
.faq_item .answer a:hover {
  text-decoration-color: transparent;
}
.faq_item .answer ol {
  margin: 1.7rem 0;
  counter-reset: num;
}
.faq_item .answer ol li + li {
  margin-top: 1.3rem;
}
.faq_item .answer ol li {
  position: relative;
  padding-left: 4rem;
}
.faq_item .answer ol li::before {
  position: absolute;
  left: 0;
  top: 0.4rem;
  min-width: 2.2rem;
  line-height: 2.2rem;
  border-radius: 1.2rem;
  background-color: var(--primary);
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
  white-space: nowrap;
  text-align: center;
  counter-increment: num;
  content: counter(num);
}
.faq_item .answer ul {
  margin: 1.7rem 0;
}
.faq_item .answer ul li + li {
  margin-top: 1.3rem;
}
.faq_item .answer ul li {
  position: relative;
  padding-left: 2rem;
}
.faq_item .answer ul li::before {
  content: '';
  display: block;
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 50%;
  background-color: var(--primary);
  position: absolute;
  left: 0;
  top: 1rem;
}
.faq_item .answer .sup_box {
  border-radius: 2.4rem;
  background-color: var(--bg);
  margin: 3.6rem 0;
  padding: 2rem 4rem 3rem;
  min-height: 20.6rem;
}
.faq_item .answer .sup_box:last-child {
  margin-bottom: 0;
}
.faq_item .answer .sup_box > *:first-child {
  margin-top: 0;
}
.faq_item .answer .sup_box > *:last-child {
  margin-bottom: 0;
}
.faq_item .answer .sup_box strong {
  font-size: 2.3rem;
}
.faq_item .answer .sup_box p {
  line-height: 1.375;
  margin: 1.1rem 0 1.5rem;
}

/*** 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: 3rem;
  height: 3rem;
  border-radius: 50%;
  border: 0.6rem 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);
  }
}

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

.search_drawer {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  display: flex;
  align-items: flex-end;
  transition: all .3s;
  pointer-events: none;
}
.search_drawer.active {
  pointer-events: all;
  background-color: rgba(0, 0, 0, 0.75);
}
.search_drawer.active .drawer_content {
  transform: translateY(0);
}
.search_drawer .drawer_content {
  width: 100%;
  height: 80%;
  padding: 2rem 0;
  transition: all .3s;
  transform: translateY(100%);
  background-color: #fff;
}
.search_drawer .close {
  width: 2.5rem;
  height: 2.5rem;
  cursor: pointer;
  position: absolute;
  bottom: 50%;
  right: 0;
  transition: all .3s;
  transform: translateY(50%);
  filter: contrast(0) brightness(0);
  background: url(../img/close.svg) no-repeat center/contain;
}
.search_drawer .close:hover {
  transform: translateY(50%) rotate(180deg);
}
.search_drawer form {
  transition: all .3s;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.search_drawer form:focus-within {
  border-bottom-color: var(--primary);
}
.search_drawer input[type="text"] {
  width: 100%;
  height: 10rem;
  display: block;
  text-align: center;
  font-size: 3.5rem;
}
.search_drawer input[type="submit"] {
  display: none;
}

div.wpforms-container-full .wpforms-confirmation-container-full, div[submit-success]>.wpforms-confirmation-container-full:not(.wpforms-redirection-message) {
  border-radius: 6px !important;
  background: var(--bg) !important;
  border-color: var(--primary) !important;
}
/*** global css ***/

@media screen and (min-width: 769px) and (max-width: 1220px) {
  .page_banner .content .head {
    padding: 0;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .content {
    padding: 0 3rem;
  }
  .page_banner2 .img {
    margin: 0;
  }
}
@media screen and (max-width: 1024px) {
  header .lt {
    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);
  }
  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::after {
    display: none;
  }
  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);
    letter-spacing: unset;
    font-weight: normal;
  }
  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,
  header nav .menu > li:hover > a {
    background-color: rgba(0, 0, 0, 0.05);
    color: var(--title);
  }
  header nav .menu > li:hover ul {
    padding: 10px;
  }
  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::after,
  header nav .menu .menu-item-has-children::before {
    content: '';
    display: block;
    position: absolute;
    top: 5px;
    left: unset;
    right: 0;
    width: 36px;
    height: 36px;
    transition: all 0.3s;
    border-radius: var(--radius);
    opacity: 1;
  }
  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::after {
    transform: rotate(180deg);
    background-color: rgba(0, 0, 0, 0.05);
  }
  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);
    width: auto;
  }
  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);
    color: var(--title);
    opacity: 1;
  }
  header nav .sub-menu > li > a:hover {
    background-color: rgba(0, 0, 0, 0.05);
    color: var(--title);
  }
  header nav .sub-menu > li.current-menu-item > a {
    background-color: rgba(0, 0, 0, 0.05);
  }
  header nav .sub-menu .menu-item-has-children > a {
    margin-right: 42px;
  }
  header nav .sub-menu .menu-item-has-children::after,
  header nav .sub-menu .menu-item-has-children::before {
    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;
    color: var(--title);
  }
  header .btns {
    padding: 0;
    margin: 0;
  }
  header .btns .btn_search,
  header .btns .btn_lang {
    width: 22px;
    height: 22px;
    margin: 0;
  }
  header .btns .btn_menu {
    display: block;
    width: 23px;
    height: 23px;
    cursor: pointer;
    transition: all 0.3s;
    background: url(../img/icon-menu.svg) no-repeat center / contain;
  }
  header .mega_menu {
    display: none !important;
  }
}
@media screen and (min-width: 769px) and (max-width: 896px) {
  .content,
  .swiper_content {
    max-width: 768px;
  }
  .page_faqs .head h2 {
    line-height: 1.3;
  }
}
@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 34px;
  }
  .swiper_content {
    padding: 10px 34px;
  }
  .only_mobile {
    display: block;
  }
  .only_pc {
    display: none;
  }
  body.fixed {
    padding-right: 0;
  }
  .gap {
    gap: 20px;
  }
  .btn,
  .btn_line,
  .btn_w {
    font-size: 14px;
    line-height: 40px;
    padding: 0 20px;
  }
  .btn_w {
    line-height: 42px;
  }
  .btn_line,
  .btn {
    min-width: 145px;
  }
  .btn_i {
    font-size: 14px;
    gap: 5px;
  }
  .btn_i::after {
    width: 14px;
    height: 14px;
  }
  .swiper_btns {
    gap: 15px;
  }
  .swiper_btns div {
    width: 34px;
  }
  .swiper_btns.middle:not(:has(.swiper-button-lock)) {
    position: static;
    width: 100%;
    max-width: unset;
    justify-content: flex-start;
    transform: translate(0);
    padding: 0 34px;
    margin-top: 35px;
  }
  .syedittext p,
  .syedittext .desc {
    line-height: 1.5;
  }
  div.head.bn p {
    font-size: 16px;
    line-height: 1.5;
  }
  div.head .subtitle {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 8px;
    word-spacing: unset;
    letter-spacing: 1px;
  }
  div.head h1 {
    font-size: 25px;
    line-height: 1.2083333;
    letter-spacing: unset;
    max-width: unset;
    word-spacing: unset;
  }
  div.head h2 {
    font-size: 22px;
    line-height: 1.18069;
    letter-spacing: unset;
    max-width: unset;
    word-spacing: unset;
  }
  div.head .desc,
  div.head p {
    font-size: 14px;
    line-height: 1.5;
    margin-top: 12px;
  }
  div.head .btn,
  div.head .btn_line,
  div.head .btn_w {
    margin-top: 10px;
  }
  header {
    top: 0;
  }
  header .lt .logo img {
    height: 16px;
  }
  header .btns {
    gap: 20px;
    min-height: 45px;
  }
  header .btns .btn_menu {
    width: 25px;
    height: 25px;
  }
  header .btns .btn_search {
    width: 20px;
    height: 20px;
  }
  header .btns .btn_lang {
    display: none;
  }
  footer .main {
    padding: 48px 0 19px;
  }
  footer .main .flex {
    flex-direction: column;
    align-items: unset;
    justify-content: unset;
    gap: 13px;
  }
  footer .main strong {
    font-size: 16px;
    margin-bottom: 0;
  }
  footer .main .foot_intro {
    width: 100%;
    margin: 0 0 39px;
  }
  footer .main .foot_intro .logo {
    max-width: 98px;
    margin: 0 auto;
  }
  footer .main .foot_intro p {
    display: none;
  }
  footer .main .foot_nav:not(.foot_connect) {
    width: 100%;
    border-radius: 7px;
    border: 1px solid rgba(255, 255, 255, 0.5);
  }
  footer .main .foot_nav:not(.foot_connect) strong {
    display: block;
    font-size: 16px;
    line-height: 46px;
    padding: 0 17px 0 20px;
    position: relative;
    opacity: 1;
  }
  footer .main .foot_nav:not(.foot_connect) strong::after {
    content: '';
    display: block;
    width: 11px;
    height: 11px;
    background: url(../img/icon-select-w.svg) no-repeat center / contain;
    position: absolute;
    right: 19px;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s;
  }
  footer .main .foot_nav:not(.foot_connect).active strong::after {
    transform: translateY(-50%) rotate(180deg);
  }
  footer .main .foot_nav:not(.foot_connect) > div {
    display: none;
    border-top: 1px solid rgba(255, 255, 255, 0.5);
    margin: 0 17px 0 20px;
    padding: 24px 0 31px;
  }
  footer .main .foot_nav:not(.foot_connect) > div ul {
    display: block;
  }
  footer .main .foot_nav:not(.foot_connect) > div ul li::before {
    display: none;
  }
  footer .main .foot_nav:not(.foot_connect) > div li + li {
    margin-top: 17px;
  }
  footer .main .foot_nav:not(.foot_connect) > div a {
    font-size: 15px;
    display: block;
    font-weight: normal;
  }
  footer .main .foot_nav:not(.foot_connect) > div p {
    font-size: 14px;
    line-height: 1.5;
  }
  footer .main .btn_lang {
    border-radius: 7px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    flex-direction: row-reverse;
    justify-content: space-between;
    font-size: 16px;
    line-height: 46px;
    padding: 0 20px;
  }
  footer .main .btn_lang::before {
    width: 23px;
    height: 23px;
  }
  footer .main .foot_social {
    width: 100%;
    text-align: center;
    order: 10;
    padding-top: 35px;
  }
  footer .main .foot_social .social {
    margin-top: 21px;
    gap: 16px 24px;
    justify-content: center;
  }
  footer .main .foot_social .social a {
    width: 22px;
    height: 22px;
  }
  footer .copyright {
    padding: 13px 0;
    border-top: none;
  }
  footer .copyright p {
    text-align: center;
    font-size: 10px;
  }
  .float_connect {
    bottom: 20px;
    right: 34px;
  }
  .float_connect .icon {
    width: 40px;
    height: 40px;
  }
  .float_connect .info {
    min-width: 250px;
    right: calc(100% + 5px);
    padding: 10px 20px 20px;
  }
  .float_connect .info ul li {
    padding: 10px 0;
  }
  .float_connect .info ul li .label {
    font-size: 16px;
    padding-left: 20px;
    margin-bottom: 5px;
  }
  .float_connect .info ul li .label::before {
    width: 14px;
    height: 14px;
    top: 2px;
    background-position: center left;
  }
  .float_connect .info ul li a {
    font-size: 16px;
  }
  .float_connect .info ul li p {
    font-size: 14px;
    margin-top: 2px;
  }
  .float_connect .info .btn {
    font-size: 14px;
    line-height: 36px;
    margin-top: 10px;
  }
  .products_model {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.75);
    z-index: 999;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s;
  }
  .products_model.active {
    opacity: 1;
    pointer-events: all;
  }
  .products_model.active .products_box {
    transform: translateY(0);
    opacity: 1;
  }
  .products_model .products_box {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 73.2%;
    max-height: 178.1rem;
    border-radius: 14px 14px 0 0;
    background-color: #fff;
    overflow-y: auto;
    padding: 25px 0;
    margin-top: auto;
    transform: translateY(50%);
    opacity: 0;
    transition: all 0.4s, opacity 0.3s;
    max-width: 576px;
    margin: 0 auto;
  }
  .products_model .list {
    margin-top: 18px;
  }
  .products_model .list > ul {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(170px, 100%), 1fr));
    gap: 12px;
  }
  .products_model .list .col-full {
    display: none;
    grid-column: -1/1;
  }
  .products_model .list .col-full .list_l2 {
    margin: -2px;
    padding: 2px;
  }
  .products_model .list .col-full ul {
    display: grid;
    gap: 9px;
  }
  .products_model p.center:has(.btn_line) {
    margin-top: 30px;
    min-height: 42px;
  }
  .products_model .first_list {
    display: none;
  }
  .products_model .first_list.active {
    display: block;
  }
  .products_model .first_list .list {
    margin-top: 0;
  }
  .products_model .second_list {
    display: none;
  }
  .products_model .second_list.active {
    display: block;
  }
  .current_cat {
    cursor: pointer;
    display: flex;
    align-items: center;
    border-radius: 8px;
    border: 1px solid var(--primary);
    gap: 7px;
    padding: 1px 0 5px;
    min-height: 60px;
  }
  .current_cat::before {
    display: block;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    content: '';
    background: url("../img/nav-full.svg") no-repeat center / contain;
    margin-left: 12px;
    margin-top: 2px;
  }
  .current_cat .info {
    flex: 1;
    margin-top: 1px;
  }
  .current_cat .info .title {
    font-size: 18px;
    font-weight: 700;
  }
  .current_cat .info .cag {
    font-size: 12px;
    color: var(--text);
    text-decoration: underline;
    display: block;
    margin-top: 6px;
  }
  .current_cat .img {
    width: 64px;
    --h: 81.152%;
  }
  .page_banner .wrap {
    padding: 30px 0;
  }
  .page_banner .wrap .head {
    padding: 0;
    color: var(--title);
  }
  .page_banner .search_box {
    margin-top: 20px;
    max-width: 400px;
  }
  .page_banner select {
    height: 46px;
    font-size: 16px;
    padding: 0 40px 0 20px;
    background-size: 12px;
    background-position-x: right 20px;
  }
  .guide_box {
    border-radius: 10px;
  }
  .guide_box .head {
    left: 30px;
    padding: 0;
    max-width: 236px;
  }
  .guide_box .head .title,
  .guide_box .head h2 {
    font-size: 20px;
    line-height: 1.18069;
  }
  .guide_box .head .btn_w {
    margin-top: 20px;
  }
  .page_service {
    padding: 50px 0;
  }
  .page_service .head {
    margin-bottom: 30px;
  }
  .page_service .items ul {
    grid-template-columns: repeat(auto-fill, minmax(min(270px, 100%), 1fr));
    gap: 20px;
  }
  .page_service .item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 25px;
    --radius: 6px;
    padding: 5.06% 5.73%;
  }
  .page_service .item::before {
    border-width: 1px;
  }
  .page_service .item .icon {
    width: 50px;
    height: 50px;
    align-self: start;
  }
  .page_service .item .info {
    margin: 0;
    display: flex;
    flex-direction: column;
    text-align: left;
  }
  .page_service .item .info .title {
    font-size: 18px;
    -webkit-line-clamp: 1;
  }
  .page_service .item .info .desc {
    margin: 10px 0 auto;
    -webkit-line-clamp: 2;
  }
  .page_service .item .info i {
    width: 14px;
    height: 14px;
    margin: 20px 0 0;
  }
  .page_guide {
    padding: 50px 0;
  }
  .page_faqs {
    padding: 50px 0;
  }
  .page_faqs p.center:has(.btn_line) {
    min-height: 32px;
    margin-top: 30px;
  }
  .page_breadcrumbs {
    background-color: var(--bg);
    padding: 10px 0;
  }
  .page_banner2 {
    background-color: transparent;
    padding: 30px 0;
  }
  .page_banner2 .head {
    padding: 0;
  }
  .page_banner2 .head h1 a {
    font-size: 14px;
    margin-left: 5px;
    margin-bottom: 5px;
  }
  .page_help {
    padding: 30px 0 50px;
  }
  .page_help .flex {
    padding: 20px;
    border-radius: 8px;
    flex-direction: column;
    align-items: flex-start;
  }
  .page_help .info strong {
    font-size: 18px;
  }
  .page_help .info p {
    line-height: 1.25;
    margin-top: 10px;
  }
  .page_help .btns {
    margin-right: 0;
    gap: 12px;
    padding: 0;
  }
  .page_help .btns .btn,
  .page_help .btns .btn_line {
    border-radius: 8px;
  }
  .search_box form {
    height: 46px;
    grid-template-columns: 1fr 46px;
  }
  .search_box form input {
    font-size: 16px;
    padding: 0 20px;
  }
  .breadcrumbs {
    line-height: 20px;
    min-height: 20px;
  }
  .breadcrumbs span {
    font-size: 14px;
  }
  .breadcrumbs span span::before {
    margin: 0 10px;
  }
  .pd_box {
    border-radius: 8px;
    padding: 14px;
    gap: 10px;
  }
  .pd_box .info .title {
    font-size: 18px;
  }
  .pd_box .info .desc {
    line-height: 1.25;
    margin-top: 10px;
  }
  .pd_box .info .btn {
    margin-top: 14px;
  }
  .nav_box {
    padding: 5px;
    border-radius: 10px;
  }
  .nav_box .nav_list {
    overflow-x: auto;
    flex-wrap: nowrap;
    white-space: nowrap;
    gap: 10px;
  }
  .nav_box .nav_list::before {
    border-radius: 8px;
  }
  .nav_box .nav_list::-webkit-scrollbar {
    display: none;
  }
  .nav_box .nav_item {
    font-size: 14px;
    padding: 8px 20px;
    min-width: unset;
  }
  .product_list > li > a,
  .product_list > li > .nav_item {
    --radius: 8px;
  }
  .product_list > li > a::before,
  .product_list > li > .nav_item::before {
    border-width: 1px;
  }
  .product_list > li > a .title,
  .product_list > li > .nav_item .title {
    font-size: 14px;
    padding: 7px 10px 21px;
  }
  .category_select {
    margin-top: 30px;
  }
  .category_select ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  .product_l2_list a {
    --radius: 8px;
    grid-template-columns: 47px 1fr;
    gap: 17px;
    padding: 10px 18px;
  }
  .product_l2_list a::before {
    border-width: 1px;
  }
  .product_l2_list .btn_i {
    display: none;
  }
  .product_l2_list .title {
    font-size: 14px;
  }
  .repair_item {
    min-height: unset;
    padding: 20px;
    border-radius: 6px;
  }
  .repair_item .icon {
    display: none;
  }
  .repair_item::before {
    width: max-content;
    min-width: 28px;
    line-height: 28px;
    border-radius: 2rem;
    text-align: center;
    color: #fff;
    font-size: 12px;
    background-color: #000;
    margin: 0 auto;
  }
  .repair_item .info {
    margin-top: 20px;
  }
  .repair_item .info .title {
    font-size: 18px;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
  }
  .repair_item .info .desc {
    margin-top: 10px;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
  }
  .faq_cat_item a {
    --radius: 6px;
  }
  .faq_cat_item a::before {
    border-width: 1px;
  }
  .faq_cat_item .info .title {
    font-size: 18px;
  }
  .faq_cat_item .info .desc {
    margin-top: 10px;
  }
  .faq_cat_item i {
    width: 14px;
    height: 14px;
    margin-top: 20px;
  }
  .faq_list .question {
    grid-template-columns: 1fr 13px;
    gap: 12px;
  }
  .faq_list .question::after {
    background: url("../img/icon-select.svg") no-repeat center / contain;
    border-radius: unset;
  }
  .faq_item .question {
    font-size: 18px;
    padding: 14px 0;
  }
  .faq_item .answer {
    padding: 0 0 20px;
    line-height: 1.4125;
  }
  .faq_item .answer strong {
    font-size: 16px;
    margin: 5px 0;
  }
  .faq_item .answer p {
    margin: 5px 0;
  }
  .faq_item .answer ol {
    line-height: 1.25;
    margin: 8px 0;
  }
  .faq_item .answer ol li + li {
    margin-top: 10px;
  }
  .faq_item .answer ol li {
    padding-left: 30px;
  }
  .faq_item .answer ol li::before {
    min-width: 20px;
    line-height: 20px;
    font-size: 12px;
    top: 0;
  }
  .faq_item .answer ul {
    line-height: 1.25;
    margin: 8px 0;
  }
  .faq_item .answer ul li + li {
    margin-top: 10px;
  }
  .faq_item .answer .sup_box {
    border-radius: 6px;
    padding: 14px;
    margin: 16px 0;
    min-height: unset;
  }
  .faq_item .answer .sup_box strong {
    font-size: 18px;
  }
  .faq_item .answer .sup_box p {
    line-height: 1.25;
    margin: 5px 0;
  }
  .video_item .img {
    border-radius: 6px;
  }
  .video_item .title {
    font-size: 18px;
    line-height: 1.34375;
    margin-top: 10px;
  }

  /*** global css ***/
  .search_drawer .content {
    height: 100%;
  }
  .search_drawer .close {
    width: 20px;
    height: 20px;
    bottom: 30px;
    right: 30px;
    transform: translate(0);
  }
  .search_drawer .close:hover {
    transform: translate(0);
  }
  .search_drawer form {
    display: grid;
    grid-template-columns: 1fr auto;
  }
  .search_drawer input[type="text"] {
    height: 46px;
    font-size: 16px;
  }
  .search_drawer input[type="submit"] {
    width: 46px;
    height: 46px;
    display: block;
    overflow: hidden;
    text-indent: -999px;
    background: url(../img/icon-search.svg) no-repeat center/20px;
  }
  /*** global css ***/
}
@media screen and (max-width: 576px) {
  .content {
    padding: 0 17px;
  }
  .swiper_content {
    padding: 10px 17px;
  }
  .bg_pc {
    display: none;
  }
  .bg_mobile {
    display: block;
  }
  .swiper_btns.middle:not(:has(.swiper-button-lock)) {
    padding: 0 17px;
    margin-top: 17px;
  }
  .btn,
  .btn_line,
  .btn_w,
  .btn_i {
    font-size: 12px;
  }
  .btn,
  .btn_line {
    line-height: 29px;
    min-width: 94px;
  }
  .btn_w {
    line-height: 32px;
  }
  .btn_i::after {
    width: 9px;
    height: 8px;
  }
  .syedittext p,
  .syedittext .desc {
    font-size: 12px;
    line-height: 1.43;
  }
  div.head.bn p {
    font-size: 12px;
    line-height: 1.43;
  }
  div.head h1 {
    font-size: 24px;
  }
  div.head h2 {
    font-size: 20px;
  }
  div.head p,
  div.head .desc {
    font-size: 12px;
    line-height: 1.43;
    margin-top: 2px;
  }
  footer .main .flex {
    gap: 4px;
  }
  .float_connect .info {
    right: 0;
    bottom: calc(100% + 10px);
  }
  .float_connect .info ul li .label,
  .float_connect .info ul li a,
  .float_connect .info ul li p {
    font-size: 12px;
  }
  .float_connect .info ul li .label::before {
    top: 0;
  }
  .float_connect .info .btn {
    font-size: 12px;
  }
  .page_banner .search_box {
    margin-top: 9px;
    max-width: 258px;
  }
  .page_banner select {
    height: 32px;
    font-size: 12px;
    padding-left: 15px;
    background-size: 10px;
    background-position-x: right 14px;
  }
  .guide_box .head {
    width: auto;
    height: auto;
    text-align: center;
    padding: 30px 0;
    max-width: unset;
    left: 20px;
    right: 20px;
  }
  .guide_box .head h2,
  .guide_box .head .title {
    font-size: 21px;
    line-height: 1.35292;
  }
  .guide_box .head .btn_w {
    display: none;
  }
  .page_service {
    padding: 20px 0 68px;
  }
  .page_service .head {
    margin-bottom: 18px;
  }
  .page_service .items ul {
    gap: 15px;
  }
  .page_service .item {
    padding: 17px 20px 19px;
  }
  .page_service .item .info {
    padding-top: 3px;
  }
  .page_service .item .info .title {
    font-size: 14px;
  }
  .page_service .item .info .desc {
    margin-top: 6px;
  }
  .page_service .item .info i {
    width: 9px;
    height: 9px;
    margin-top: 7px;
  }
  .page_guide {
    padding: 22px 0;
  }
  .page_faqs {
    padding: 28px 0;
  }
  .page_breadcrumbs {
    padding: 9px 0 6px;
  }
  .page_banner2 {
    padding: 28px 0 10px;
  }
  .page_banner2 .head h1 a {
    font-size: 12px;
    margin-bottom: 2px;
    margin-left: 2px;
  }
  .page_help {
    padding: 18px 0 60px;
  }
  .page_help .flex {
    gap: 14px;
    padding: 23px 22px 19px;
  }
  .page_help .btns .btn,
  .page_help .btns .btn_line {
    min-width: 99px;
  }
  .page_help .info strong {
    font-size: 16px;
  }
  .page_help .info p {
    margin-top: 5px;
  }
  .products_model .products_box {
    padding: 15px 0;
  }
  .products_model .list > ul {
    grid-template-columns: repeat(2, 1fr);
  }
  .products_model p.center:has(.btn_line) {
    min-height: 31px;
  }
  .category_select {
    margin-top: 23px;
  }
  .category_select ul {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .search_box form {
    height: 32px;
    grid-template-columns: 1fr 25px;
  }
  .search_box form input {
    font-size: 12px;
    padding: 0 15px;
  }
  .search_box form input[type=submit] {
    background-size: 50%;
  }
  .breadcrumbs span {
    font-size: 12px;
  }
  .breadcrumbs span span::before {
    width: 5px;
    height: 5px;
    margin: 0 8px 0 6px;
  }
  .pd_box {
    padding: 20px 11px 23px 20px;
  }
  .pd_box .img {
    width: 31.168832%;
  }
  .pd_box .info .title {
    font-size: 16px;
  }
  .pd_box .info .desc {
    margin-top: 5px;
  }
  .pd_box .info .btn {
    line-height: 2.4rem;
    margin-top: 12px;
  }
  .nav_box {
    padding: 4px 7px;
  }
  .nav_box .nav_list {
    gap: 6px;
  }
  .nav_box .nav_item {
    font-size: 12px;
    line-height: 26px;
    padding: 0 10px;
    min-width: 63px;
  }
  .product_list > li > a .img,
  .product_list > li > .nav_item .img {
    padding-bottom: 80.972%;
  }
  .product_list > li > a .title,
  .product_list > li > .nav_item .title {
    font-size: 12px;
  }
  .product_l2_list .title {
    font-size: 12px;
  }
  .repair_item {
    padding: 11px 10px 13px;
  }
  .repair_item .info {
    margin-top: 6px;
  }
  .repair_item .info .title {
    font-size: 12px;
    -webkit-line-clamp: 1;
  }
  .repair_item .info .desc {
    margin-top: 0;
  }
  .faq_cat_item a {
    padding: 22px 10px 18px;
  }
  .faq_cat_item .info .title {
    font-size: 12px;
    -webkit-line-clamp: 1;
  }
  .faq_cat_item .info .desc {
    margin-top: 2px;
    -webkit-line-clamp: 2;
  }
  .faq_cat_item i {
    width: 9px;
    height: 9px;
    margin-top: 5px;
  }
  .faq_list .question {
    grid-template-columns: 1fr 9px;
  }
  .faq_item .question {
    font-size: 13px;
    padding: 12px 0;
  }
  .faq_item .answer {
    font-size: 12px;
  }
  .faq_item .answer strong {
    font-size: 13px;
  }
  .faq_item .answer ol li + li {
    margin-top: 6px;
  }
  .faq_item .answer ol li {
    padding-left: 19px;
  }
  .faq_item .answer ol li::before {
    font-size: 8px;
    min-width: 11px;
    line-height: 11px;
    top: 3px;
  }
  .faq_item .answer ul li + li {
    margin-top: 6px;
  }
  .faq_item .answer .sup_box strong {
    font-size: 14px;
  }
  .video_item .title {
    font-size: 12px;
    margin-top: 5px;
  }
}
