* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --primary: #cc0e17;
  --secondary: #000;
  --title: #222;
  --text: #444;
  --bg: #f2f2f2;
}
html {
  scroll-behavior: smooth;
  font-size: clamp(7.5px, 0.520834vw, 10px);
}
.content {
  max-width: 150rem;
  margin: 0 auto;
  position: relative;
}
.content .content {
  padding: 0;
}
.small_content {
  max-width: 125.7rem;
  margin: 0 auto;
  position: relative;
}
.swiper_box {
  position: relative;
}
.swiper_content {
  max-width: 153rem;
  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: 'Poppins', sans-serif;
}
body.fixed {
  overflow: hidden;
  padding-right: 15px;
}
body [data-wpr-lazyrender] {
  content-visibility: unset;
}
.only_mobile {
  display: none;
}
.gap {
  gap: 3rem;
}
.grecaptcha-badge {
  visibility: hidden;
}
#fullscreen-loader {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
}
#fullscreen-loader::after {
  content: '';
  display: block;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 8px solid var(--primary);
  animation: l20-1 0.8s infinite linear alternate, l20-2 1.6s infinite linear;
}
@keyframes l20-1 {
  0% {
    clip-path: polygon(50% 50%, 0 0, 50% 0%, 50% 0%, 50% 0%, 50% 0%, 50% 0%);
  }
  12.5% {
    clip-path: polygon(50% 50%, 0 0, 50% 0%, 100% 0%, 100% 0%, 100% 0%, 100% 0%);
  }
  25% {
    clip-path: polygon(50% 50%, 0 0, 50% 0%, 100% 0%, 100% 100%, 100% 100%, 100% 100%);
  }
  50% {
    clip-path: polygon(50% 50%, 0 0, 50% 0%, 100% 0%, 100% 100%, 50% 100%, 0% 100%);
  }
  62.5% {
    clip-path: polygon(50% 50%, 100% 0, 100% 0%, 100% 0%, 100% 100%, 50% 100%, 0% 100%);
  }
  75% {
    clip-path: polygon(50% 50%, 100% 100%, 100% 100%, 100% 100%, 100% 100%, 50% 100%, 0% 100%);
  }
  100% {
    clip-path: polygon(50% 50%, 50% 100%, 50% 100%, 50% 100%, 50% 100%, 50% 100%, 0% 100%);
  }
}
@keyframes l20-2 {
  0% {
    transform: scaleY(1) rotate(0deg);
  }
  49.99% {
    transform: scaleY(1) rotate(135deg);
  }
  50% {
    transform: scaleY(-1) rotate(0deg);
  }
  100% {
    transform: scaleY(-1) rotate(-135deg);
  }
}
.img.img_cv {
  overflow: hidden;
}
.img.img_cv img {
  object-fit: cover;
}
.img.img_ct img {
  object-fit: contain;
}
.img.img_ab {
  position: relative;
}
.img.img_ab img {
  position: absolute;
  left: 0;
  top: 0;
}
.img.img_aba {
  position: relative;
  --h: 100%;
}
.img.img_aba::after {
  content: '';
  display: block;
  padding-bottom: var(--h);
}
.img.img_aba img {
  position: absolute;
  left: 0;
  top: 0;
}
.img.img_hv:hover img {
  transform: scale(1.03);
}
.img img {
  width: 100%;
  height: 100%;
  display: block;
  transition: all 0.5s;
  aspect-ratio: inherit;
}
.img_bg {
  position: relative;
  z-index: 2;
}
.img_bg > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -2;
}
.icon.icon_ab {
  position: relative;
}
.icon.icon_ab img {
  position: absolute;
  left: 0;
  top: 0;
}
.icon img {
  display: block;
  object-fit: contain;
  width: 100%;
  height: 100%;
  transition: all 0.3s;
}
.custom-popup {
  --radius: 0px;
  position: absolute;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: var(--radius);
  z-index: 999;
  padding: 8px;
  font-size: 14px;
  opacity: 0;
  transform: scaleY(0);
  transform-origin: top;
  transition: all 0.2s ease;
}
.custom-popup.show {
  opacity: 1;
  transform: scaleY(1);
}
.custom-popup.up {
  transform-origin: bottom;
}
.custom-popup .popup-empty {
  padding: 12px;
  text-align: center;
  color: #999;
}
.custom-popup input.popup-input {
  display: block;
  width: 100%;
  padding: 11px 12px;
  font-size: 14px;
  border: 1px solid #ccc;
  background: #fff;
  color: var(--title);
  margin-bottom: 8px;
  border-radius: calc(var(--radius) - 2px);
}
.custom-popup input.popup-input::placeholder {
  color: #666;
}
.custom-popup input.popup-input:focus {
  border-color: var(--primary);
}
.custom-popup .popup-options {
  overflow: auto;
  max-height: 50vh;
}
.custom-popup .popup-option {
  padding: 12px;
  margin: 0 0 4px;
  cursor: pointer;
  transition: all 0.15s;
  border-radius: calc(var(--radius) - 2px);
}
.custom-popup .popup-option:hover,
.custom-popup .popup-option.selected {
  background-color: #f0f0f0;
}
.custom-popup .popup-option:last-child {
  margin-bottom: 0;
}
.btn {
  display: inline-block;
  cursor: pointer;
  text-align: center;
  transition: all 0.3s;
  border-radius: 100px;
  text-transform: uppercase;
  background-color: var(--primary);
  border: 1px solid var(--primary);
  color: #fff;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 4rem;
  padding: 0 1.7rem;
  min-width: 11.5rem;
}
.btn::after {
  display: none;
  flex-shrink: 0;
  content: '';
  width: 1.5rem;
  height: 1.5rem;
  transition: all 0.3s;
  filter: contrast(0) brightness(2);
  background: url("../img/arrow-r.png") no-repeat center / contain;
}
.btn:hover {
  background-color: transparent;
  color: var(--primary);
}
.btn:hover::after {
  filter: unset;
  transform: translateX(20%);
}
.btn.has_a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1.4rem;
}
.btn.has_a::after {
  display: inline-block;
}
.btn_line {
  display: inline-block;
  cursor: pointer;
  text-align: center;
  transition: all 0.3s;
  border-radius: 100px;
  text-transform: uppercase;
  background-color: transparent;
  border: 1px solid #333;
  color: #333;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 4rem;
  padding: 0 1.7rem;
}
.btn_line::after {
  display: none;
  flex-shrink: 0;
  content: '';
  width: 1.5rem;
  height: 1.5rem;
  transition: all 0.3s;
  filter: contrast(0) brightness(0);
  background: url("../img/arrow-r.png") no-repeat center / contain;
}
.btn_line:hover {
  background-color: var(--primary);
  border-color: var(--primary);
  color: #fff;
}
.btn_line:hover::after {
  filter: contrast(0) brightness(2);
  transform: translateX(20%);
}
.btn_line.has_a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1.4rem;
}
.btn_line.has_a::after {
  display: inline-block;
}
.btn_line.wt {
  border-color: #fff;
  background-color: rgba(255, 255, 255, 0.6);
  color: #121212;
}
.btn_line.wt:hover {
  background-color: var(--primary);
  border-color: var(--primary);
  color: #fff;
}
.swiper_btns {
  gap: 3.6rem;
  display: flex;
}
.swiper_btns .btn_prev,
.swiper_btns .btn_next {
  position: relative;
  width: 5.1rem;
  cursor: pointer;
  transition: all 0.3s;
  border-radius: 50%;
}
.swiper_btns .btn_prev::before,
.swiper_btns .btn_next::before {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-image: linear-gradient(to right, #e71425, #f65741);
  content: '';
  z-index: -1;
  pointer-events: none;
  transition: all 0.3s;
}
.swiper_btns .btn_prev::after,
.swiper_btns .btn_next::after {
  content: '';
  display: block;
  width: 100%;
  padding-bottom: 100%;
  transition: all 0.3s;
  background: url(../img/arrow.png) no-repeat center / 31.4%;
  filter: contrast(0) brightness(2);
}
.swiper_btns .btn_prev:hover,
.swiper_btns .btn_next:hover {
  background-color: var(--title);
}
.swiper_btns .btn_prev:hover::before,
.swiper_btns .btn_next:hover::before {
  opacity: 0;
}
.swiper_btns .btn_next::after {
  transform: rotate(180deg);
}
.swiper_btns .swiper-button-disabled {
  pointer-events: none;
  background-color: #e5e5e5;
}
.swiper_btns .swiper-button-disabled::before {
  opacity: 0;
}
.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.white {
  color: #fff;
}
.head.white p,
.head.white .desc {
  color: #fff;
}
.head.white h1 {
  font-weight: 500;
}
.head.center h1,
.head.center h2,
.head.center p,
.head.center .desc {
  margin-left: auto;
  margin-right: auto;
}
.head.mid p,
.head.mid .desc {
  font-weight: 500;
  letter-spacing: -0.004rem;
}
.head h1 {
  font-size: 5rem;
  line-height: 1.4;
  text-transform: uppercase;
  font-weight: 600;
}
.head h2 {
  font-size: 5rem;
  line-height: 1.2;
  font-weight: 600;
}
.head p,
.head .desc {
  line-height: 2.4rem;
  color: var(--text);
  letter-spacing: -0.001rem;
}
header {
  position: sticky;
  left: 0;
  top: -96px;
  right: 0;
  z-index: 996;
  transition: all 0.3s;
  background-color: #fff;
  border-bottom: 1px solid transparent;
}
header.opt {
  top: 0;
  box-shadow: 0 0 1rem rgba(0, 0, 0, 0.1);
  border-bottom-color: rgba(51, 51, 51, 0.08);
}
header.style {
  border-bottom-color: rgba(51, 51, 51, 0.08);
}
header .content {
  width: calc(100% - 4rem);
  max-width: 172.2rem;
}
header .flex {
  gap: 3.42624855%;
}
header .logo {
  display: block;
  position: relative;
  margin-top: 3px;
}
header .logo img {
  display: block;
  width: auto;
  height: 6.3rem;
}
header .logo p {
  width: 1px;
  height: 1px;
  overflow: hidden;
  position: absolute;
  clip: rect(1px, 1px, 1px, 1px);
}
header nav {
  text-transform: uppercase;
  margin-left: auto;
}
header nav .close {
  display: none;
}
header nav .menu {
  gap: 4.46rem;
  display: flex;
}
header nav .menu > li {
  position: relative;
  z-index: 2;
}
header nav .menu > li > a {
  display: block;
  font-size: 16px;
  font-weight: 500;
  color: #333;
  line-height: 89px;
  padding-top: 6px;
  transition: all 0.3s;
}
header nav .menu > li::after {
  position: absolute;
  width: 2.7rem;
  height: 0.4rem;
  left: 50%;
  bottom: -1px;
  content: '';
  background-color: var(--primary);
  transform: translateX(-50%);
  transition: all 0.3s;
  opacity: 0;
}
header nav .menu > li.current-menu-item::after,
header nav .menu > li.current-menu-parent::after,
header nav .menu > li:hover::after {
  opacity: 1;
}
header nav .menu > li:hover > .sub-menu {
  transform: translate(0);
  pointer-events: all;
  opacity: 1;
}
header nav .sub-menu {
  position: absolute;
  top: 100%;
  left: -24px;
  transition: all 0.3s;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  transform: translateY(-10px);
  pointer-events: none;
  opacity: 0;
  min-width: 200px;
  border-bottom: 2px solid var(--primary);
}
header nav .sub-menu > li {
  position: relative;
  padding: 0 6px;
}
header nav .sub-menu > li:first-child {
  padding-top: 6px;
}
header nav .sub-menu > li:last-child {
  padding-bottom: 6px;
}
header nav .sub-menu > li + li {
  margin-top: 4px;
}
header nav .sub-menu > li > a {
  display: block;
  font-size: 16px;
  white-space: nowrap;
  padding: 10px 18px;
  transition: all 0.2s;
}
header nav .sub-menu > li > a:hover {
  background-color: #f9f9f7;
  color: var(--primary);
}
header nav .sub-menu > li:hover > .sub-menu {
  transform: translate(0);
  pointer-events: auto;
  opacity: 1;
}
header nav .sub-menu .sub-menu {
  left: 100%;
  top: 0;
}
header .btns {
  gap: 4.2rem;
  display: flex;
  align-items: center;
  min-height: 95px;
  padding-top: 2px;
}
header .btn_search {
  display: block;
  width: 18px;
  height: 18px;
  overflow: hidden;
  text-indent: -999px;
  background: url(../img/icon-search.png) no-repeat center / contain;
  margin-top: 2px;
}
header .btn_lang {
  position: relative;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  color: #333;
  text-transform: uppercase;
  padding-left: 28px;
  margin-left: 6px;
  margin-top: 3px;
}
header .btn_lang::before {
  position: absolute;
  width: 21px;
  height: 21px;
  content: '';
  left: 0;
  top: 48%;
  transform: translateY(-50%);
  background: url("../img/icon-lang.png") no-repeat center / contain;
}
header .btn_menu {
  display: none;
  width: 23px;
  height: 23px;
  overflow: hidden;
  text-indent: -999px;
  background: url(../img/nav-btn.svg) no-repeat center / contain;
}
footer {
  background-color: #0e0001;
  color: rgba(185, 185, 185, 0.7);
  font-size: 1.4rem;
  line-height: 2.6rem;
  font-weight: 500;
  padding: 6.4rem 0 5.5rem;
  letter-spacing: 0.06rem;
}
footer strong {
  display: block;
  font-weight: 400;
  color: #fff;
  font-size: 1.6rem;
  line-height: normal;
  letter-spacing: 0.07rem;
}
footer .flex {
  gap: 3.8rem 2rem;
}
footer .foot_social {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 3rem;
  border-bottom: 1px solid rgba(255, 172, 176, 0.1);
  padding-bottom: 4rem;
}
footer .foot_social .logo {
  display: block;
  position: relative;
  margin-bottom: 0.5rem;
}
footer .foot_social .logo img {
  display: block;
  width: auto;
  height: 7.6rem;
}
footer .foot_social .logo p {
  width: 1px;
  height: 1px;
  overflow: hidden;
  position: absolute;
  clip: rect(1px, 1px, 1px, 1px);
}
footer .foot_social .social {
  gap: 1.4rem;
  display: flex;
  flex-wrap: wrap;
  margin-top: 3rem;
}
footer .foot_social .social .active a {
  background-color: var(--primary);
}
footer .foot_social .social .active a::after {
  background-size: 61.4%;
}
footer .foot_social .social a {
  opacity: 1;
  display: block;
  width: 5.7rem;
  height: 5.7rem;
  overflow: hidden;
  text-indent: -999px;
  position: relative;
  transition: all 0.3s;
  border-radius: 50%;
  background-color: rgba(133, 159, 225, 0.1);
}
footer .foot_social .social a::after {
  content: '';
  display: block;
  position: absolute;
  inset: 0;
  background: no-repeat center / 52.6%;
  transition: all 0.3s;
}
footer .foot_social .social .facebook a::after {
  background-image: url(../img/social-facebook.png);
}
footer .foot_social .social .twitter a::after {
  background-image: url(../img/social-twitter.png);
}
footer .foot_social .social .youtube a::after {
  background-image: url(../img/social-youtube.png);
}
footer .foot_social .social .whatsapp a::after {
  background-image: url(../img/social-whatsapp.png);
}
footer .foot_social .social .linkedin a::after {
  background-image: url(../img/social-linkedin.png);
}
footer .foot_intro strong {
  font-size: 2rem;
  letter-spacing: -0.04rem;
}
footer .foot_intro p {
  line-height: 2.4rem;
  max-width: 35.9rem;
  margin-top: 1.6rem;
  letter-spacing: 0.087rem;
}
footer .foot_nav {
  margin-top: 0.6rem;
}
footer .foot_nav strong {
  margin-bottom: 1.7rem;
}
footer .foot_nav li a {
  line-height: normal;
  transition: all 0.3s;
  vertical-align: top;
  text-decoration: underline transparent;
}
footer .foot_nav li a:hover {
  opacity: 1;
  color: var(--primary);
  text-decoration-color: var(--primary);
}
footer .foot_nav li + li {
  margin-top: 0.4rem;
}
footer .foot_connect {
  color: #b9b9b9;
  width: 27rem;
  margin-top: 1.2rem;
}
footer .foot_connect strong {
  margin-bottom: 3rem;
}
footer .foot_connect li a {
  font-size: 1.8rem;
  transition: all 0.3s;
  vertical-align: top;
  text-decoration: underline transparent;
  letter-spacing: 0.02rem;
}
footer .foot_connect li a:hover {
  opacity: 1;
  color: var(--primary);
  text-decoration-color: var(--primary);
}
footer .foot_connect .address {
  margin-top: 1.7rem;
  letter-spacing: 0.014rem;
}
footer .bottom {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 172, 176, 0.1);
  padding-top: 1.9rem;
  margin-top: 3.2rem;
}
footer .foot_links {
  flex: 1;
  margin-top: 0;
}
footer .foot_links strong {
  margin-bottom: 1.6rem;
}
footer .foot_links ul {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.4rem 2.5rem;
}
footer .foot_links li + li {
  margin-top: 0;
}
footer .copyright {
  color: #b9b9b9;
  max-width: 34.4rem;
  text-align: right;
  margin-top: 2.8rem;
  letter-spacing: 0.012rem;
}
.footer_contact .flex {
  min-height: 43rem;
  padding: 6rem 0;
}
.footer_contact .head {
  flex: 1;
  padding-top: 3%;
}
.footer_contact .head h2 {
  font-size: 4.8rem;
  line-height: 1.25;
  max-width: 93rem;
}
.footer_contact .btn {
  font-size: 1.759rem;
  line-height: 5.1rem;
  margin-top: 3.7rem;
  min-width: 26.7rem;
  letter-spacing: 0.01rem;
}
.page_about {
  padding: 8.6rem 0;
}
.page_about.bg {
  position: relative;
  border: 1px solid #f8f8f8;
  background-color: #f8fafc;
}
.page_about.bg > img {
  position: absolute;
  display: block;
  object-fit: contain;
  width: 41%;
  max-width: 77.1rem;
  left: -1.61458333%;
  bottom: 3.13953488%;
  pointer-events: none;
  z-index: 1;
}
.page_about .head {
  flex: 1;
  width: 100%;
  max-width: 64.2rem;
}
.page_about .head h2 i {
  display: inline-block;
  content: '';
  background: url("../img/ico-sub.png") no-repeat center bottom / contain;
  width: 1.04em;
  height: 1.04em;
  margin-left: 0.66em;
  margin-bottom: 0.4rem;
}
.page_about .head h3 {
  font-size: 2.4rem;
  line-height: 3rem;
  font-weight: 600;
  color: #333;
  max-width: 55.7rem;
  margin-top: 2.2rem;
}
.page_about .head h3::after {
  display: block;
  width: 6rem;
  height: 0.4rem;
  background-color: var(--primary);
  content: '';
  margin-top: 2.9rem;
}
.page_about .head p {
  hyphens: auto;
  line-height: 2.8rem;
}
.page_about .head h2,
.page_about .head h3,
.page_about .head p {
  position: relative;
  z-index: 2;
}
.page_about p {
  margin-top: 3.4rem;
}
.page_about .btn {
  margin-top: 3.6rem;
}
.page_about .img {
  width: 51.2%;
  --h: 59.89583333%;
  z-index: 2;
  margin-top: 2.1%;
}
.page_about .nums {
  overflow: hidden;
  margin-top: 11.6rem;
}
.page_about .nums ul {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem 0;
  margin-left: -1px;
}
.page_about .nums li {
  display: flex;
  justify-content: center;
  flex: 1;
  color: #333;
  max-width: 37.6rem;
  border-left: 1px solid rgba(210, 27, 35, 0.3);
  padding: 0 2.4rem;
}
.page_about .nums li:first-child {
  color: #121212;
  justify-content: flex-start;
}
.page_about .nums strong {
  font-size: 4.8rem;
  font-weight: 600;
  white-space: nowrap;
  line-height: 1;
  display: block;
}
.page_about .nums strong i {
  color: #121212;
  font-size: 0.5em;
  margin-left: 0.125em;
}
.page_about .nums p {
  font-weight: 500;
  margin-top: 0.5rem;
}
.page_banner {
  position: relative;
  max-width: 256rem;
  margin: 0 auto;
  background-color: #0e0001;
}
.page_banner .img {
  padding-bottom: 25.05208333%;
}
.page_banner .wrap {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  z-index: 2;
  padding: 6rem 0;
}
.page_banner .wrap .content {
  height: 100%;
  display: flex;
  align-items: center;
}
.page_banner .head {
  flex: 1;
  padding-top: 0.7%;
}
.page_banner .head p {
  line-height: 3rem;
  font-weight: 500;
  letter-spacing: 0.005rem;
}
.page_banner p {
  max-width: 39.4rem;
  margin-top: 2px;
  margin-bottom: 2.4rem;
}
.page_banner .seg {
  display: block;
  width: 5.2rem;
  height: 5.2rem;
  background: url("../img/ico-sub-w.png") no-repeat center / contain;
  content: '';
  margin: 1px auto 0.8rem;
}
div.swiper-pagination.swiper-pagination-bullets {
  position: static;
  display: flex;
  gap: 0.8rem;
  justify-content: center;
}
div.swiper-pagination.swiper-pagination-bullets .swiper-pagination-bullet {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.1rem;
  height: 2.1rem;
  background: transparent;
  border: 1px solid transparent;
  opacity: 1;
  margin: 0;
  transition: all 0.3s;
  transform: scale(0.47619048);
}
div.swiper-pagination.swiper-pagination-bullets .swiper-pagination-bullet::after {
  display: block;
  width: 100%;
  height: 100%;
  content: '';
  border-radius: 50%;
  background-color: #bfbfbf;
  transition: all 0.3s;
}
div.swiper-pagination.swiper-pagination-bullets .swiper-pagination-bullet-active {
  transform: scale(1);
  border-color: var(--primary);
  margin: 0 2px;
}
div.swiper-pagination.swiper-pagination-bullets .swiper-pagination-bullet-active::after {
  transform: scale(0.47619048);
  background-color: var(--primary);
}
.nav_wrap .nav_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}
.nav_wrap .nav_item {
  display: block;
  cursor: pointer;
  text-transform: uppercase;
  text-align: center;
  border-radius: 100px;
  transition: all 0.3s;
  font-size: 1.4rem;
  font-weight: 500;
  color: #121212;
  border: 1px solid #121212;
  background-color: #fff;
  line-height: 4rem;
  padding: 0 2rem;
  min-width: 20.4rem;
  letter-spacing: 0.008rem;
}
.nav_wrap .nav_item:hover,
.nav_wrap .nav_item.active {
  background-color: var(--primary);
  border-color: transparent;
  color: #fff;
}
.breadcrumbs {
  line-height: 1.5;
  min-height: 3rem;
}
.breadcrumbs span {
  font-weight: 600;
  color: #eb3a48;
}
.breadcrumbs span span::before {
  display: inline-block;
  content: '';
  background: url("../img/bread-nav.png") no-repeat center / contain;
  width: 0.6875em;
  height: 0.6875em;
  margin: 0 0.8rem 0 0.6rem;
}
.breadcrumbs span span:first-child::before {
  display: none;
}
.breadcrumbs span span:first-child a::before {
  display: inline-block;
  content: '';
  width: 0.8125em;
  height: 0.8125em;
  background: url("../img/ico-home.png") no-repeat center / contain;
  filter: contrast(0) brightness(0.45);
  transition: all 0.3s;
  margin-right: 0.375em;
}
.breadcrumbs span span:first-child a:hover::before {
  filter: unset;
}
.breadcrumbs span span:last-child::before {
  margin: 0 0.4375em 0 0.1875em;
}
.breadcrumbs span a {
  font-weight: 500;
  color: #00000c;
  transition: all 0.3s;
  text-decoration: underline transparent;
}
.breadcrumbs span a:hover {
  color: var(--primary);
  text-decoration-color: var(--primary);
}
.white .breadcrumbs span {
  color: #e71425;
  font-weight: 600;
  letter-spacing: 0.01rem;
}
.white .breadcrumbs span span::before {
  filter: contrast(0) brightness(2);
}
.white .breadcrumbs span span:first-child a::before {
  filter: contrast(0) brightness(2);
  margin-right: 0.25em;
}
.white .breadcrumbs span span:first-child a:hover::before {
  filter: unset;
}
.white .breadcrumbs span span:last-child::before {
  margin-right: 0.25em;
}
.white .breadcrumbs span a {
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.01rem;
}
.white .breadcrumbs span a:hover {
  color: var(--primary);
}
.product_list a {
  display: flex;
  flex-direction: column;
  height: 100%;
  background-color: #fff;
  border: 1px solid var(--bg);
}
.product_list a:hover img {
  transform: scale(1.03);
}
.product_list .img {
  margin: -1px;
  background-color: var(--bg);
  padding-bottom: 82.69230769%;
}
.product_list .hot {
  display: block;
  position: absolute;
  object-fit: contain;
  background: url("../img/ico-hot.png") no-repeat left top / contain;
  width: 5.9rem;
  height: 5.9rem;
  left: 8.721%;
  top: 6.255%;
  z-index: 2;
  overflow: hidden;
  text-indent: -999px;
  color: transparent;
}
.product_list .info {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 11.0497238% 4.9723757% 9.1160221%;
}
.product_list .info .text {
  flex: 1;
}
.product_list .info .title {
  font-size: 2.4rem;
  line-height: 3rem;
  font-weight: 600;
  color: #121212;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}
.product_list .info .desc {
  line-height: 2.8rem;
  color: var(--text);
  hyphens: auto;
  margin-top: 1.9rem;
  max-width: 30.2rem;
  letter-spacing: -0.005rem;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 3;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}
.product_list .info .link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 600;
  color: var(--primary);
  gap: 2rem;
  margin-top: 3.2rem;
}
.product_list .info .link i {
  width: 2.8rem;
  height: 2.8rem;
  display: block;
  content: '';
  flex-shrink: 0;
  cursor: pointer;
  transition: all 0.3s;
  background: url("../img/nar-r-w.png") no-repeat center / 32% var(--primary);
}
.product_list .info .link i:hover {
  background-color: var(--title);
}
.product_list .info .link span {
  margin-bottom: 0.4rem;
}
nav.navigation {
  margin-top: 12.2rem;
}
nav.navigation .screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}
nav.navigation .nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}
nav.navigation .page-numbers {
  transition: all 0.3s;
  font-size: 1.4rem;
  color: #333333;
  cursor: pointer;
  text-align: center;
  white-space: nowrap;
  border: 1px solid rgba(0, 76, 172, 0.1);
  border-radius: 50%;
  min-width: 4rem;
  line-height: 3.8rem;
  padding: 0 2px;
}
nav.navigation .page-numbers.current,
nav.navigation .page-numbers:hover {
  background-color: var(--primary);
  border-color: var(--primary);
  color: #fff;
}
nav.navigation .prev,
nav.navigation .next {
  position: relative;
  overflow: hidden;
  text-indent: -999px;
  color: transparent;
  border-color: var(--primary);
}
nav.navigation .prev::after,
nav.navigation .next::after {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: url("../img/nav.png") no-repeat center / 21.1%;
  transition: all 0.3s;
  content: '';
}
nav.navigation .prev:hover::after,
nav.navigation .next:hover::after {
  filter: contrast(0) brightness(2);
}
nav.navigation .prev::after {
  transform: rotate(180deg);
}
nav.navigation span.page-numbers {
  pointer-events: none;
}

/*** 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);
  }
}

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

.wpcf7 form.wpcf7-form .wpcf7-spinner {
  width: 24px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -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;
}

.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%;
  left: 100%;
  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;
}

.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: 110rem;
  margin: 5rem auto;
  padding: 0;
  border-radius: 1rem;
  background-color: #fff;
}
.quote_modal .inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.quote_modal .img {
  position: relative;
  border-radius: 1rem;
}
.quote_modal .img img {
  height: auto;
  position: absolute;
  left: 0;
  top: 0;
  min-height: 100%;
}
.quote_modal .contact_main .quote_form {
  width: 100%;
  align-self: center;
  padding: 5rem 3rem;
}
.quote_modal .contact_main .head {
  margin-bottom: 2rem;
}
.quote_modal .contact_main .head .title {
  font-size: 3rem;
  line-height: 1.2;
  font-weight: 600;
}
.quote_modal .contact_main .head p {
  margin-top: 12px;
  font-size: 14px;
  line-height: 1.5;
}
.quote_modal .contact_main form {
  padding: 0;
}
.quote_modal .contact_main form .label {
  padding-left: 0;
}
.quote_modal .contact_main form textarea {
  height: 12rem;
}
.quote_modal .contact_main form span:has(.code) {
  flex: unset;
}
/*** global css ***/

@media screen and (min-width: 769px) and (max-width: 1440px) {
  header nav {
    margin-left: 0;
  }
  header nav .menu {
    gap: 2.5rem;
  }
  header nav .menu > li > a {
    font-size: 15px;
  }
  header nav .sub-menu > li > a {
    font-size: 15px;
  }
  header .btns {
    gap: 2.5rem;
  }
  header .btn_lang {
    font-size: 15px;
  }
}
@media screen and (min-width: 769px) and (max-width: 1220px) {
  .content {
    padding: 0 3rem;
  }
}
@media screen and (max-width: 1220px) {
  header .content {
    width: 100%;
  }
  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::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);
  }
  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);
    opacity: 1;
    transform: translate(0);
    left: unset;
  }
  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);
    border-bottom: none;
  }
  header nav .sub-menu > li {
    cursor: pointer;
    transform: translate(0);
    padding: 0;
  }
  header nav .sub-menu > li:first-child,
  header nav .sub-menu > li:last-child {
    padding: 0;
  }
  header nav .sub-menu > li + li {
    margin-top: 6px;
  }
  header nav .sub-menu > li > a {
    display: block;
    font-size: 14px;
    line-height: 20px;
    white-space: normal;
    padding: 10px;
    transition: all 0.3s;
    border-radius: var(--radius);
  }
  header nav .sub-menu > li > a:hover {
    background-color: rgba(0, 0, 0, 0.05);
  }
  header nav .sub-menu > li.current-menu-item > a {
    background-color: rgba(0, 0, 0, 0.05);
  }
  header nav .sub-menu .menu-item-has-children > a {
    margin-right: 42px;
  }
  header nav .sub-menu .menu-item-has-children::before,
  header nav .sub-menu .menu-item-has-children::after {
    top: 2px;
    width: 36px;
    height: 36px;
    background-size: 10px;
  }
  header nav .sub-menu .sub-menu {
    margin: 10px 0;
  }
  header nav .sub-menu .sub-menu > li + li {
    margin-top: 0;
  }
  header nav .sub-menu .sub-menu > li > a {
    font-size: 12px;
  }
  header .btn_menu {
    display: block;
  }
  header .btn_search,
  header .btn_lang,
  header .btn {
    margin: 0;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .content,
  .swiper_content {
    max-width: 896px;
  }
  .page_about .nums strong {
    font-size: 4rem;
  }
  .small_content {
    padding: 0 3rem;
  }
}
@media screen and (min-width: 769px) and (max-width: 896px) {
  .content,
  .swiper_content,
  .small_content {
    max-width: 768px;
  }
  .head h1,
  .head h2 {
    font-size: 4rem;
  }
  .footer_contact .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,
  .small_content {
    padding: 0 20px;
  }
  .swiper_content {
    padding: 10px 20px;
  }
  .only_mobile {
    display: block;
  }
  body.fixed {
    padding-right: 0;
  }
  .gap {
    gap: 20px;
  }
  .btn,
  .btn_line {
    font-size: 14px;
    line-height: 40px;
    padding: 0 20px;
    min-width: unset;
  }
  .btn::after,
  .btn_line::after {
    width: 13px;
    height: 13px;
  }
  .btn.has_a,
  .btn_line.has_a {
    gap: 10px;
  }
  .swiper_btns {
    gap: 20px;
  }
  .swiper_btns .btn_next,
  .swiper_btns .btn_prev {
    width: 40px;
  }
  div.head.flex .text {
    padding: 0;
  }
  div.head.flex .btn,
  div.head.flex .btn_line {
    margin: 0;
  }
  div.head.mid p,
  div.head.mid .desc {
    letter-spacing: unset;
  }
  div.head h1 {
    font-size: 25px;
    line-height: 1.3;
    letter-spacing: unset;
    max-width: unset;
  }
  div.head h2 {
    font-size: 22px;
    line-height: 1.3;
    letter-spacing: unset;
    max-width: unset;
  }
  div.head .desc,
  div.head p {
    font-size: 14px;
    line-height: 1.5;
    letter-spacing: unset;
    max-width: unset;
    margin-top: 12px;
  }
  div.head p + p {
    margin-top: 12px;
  }
  div.head .btn,
  div.head .btn_line {
    font-size: 14px;
    line-height: 40px;
    padding: 0 20px;
    min-width: unset;
    margin-top: 20px;
  }
  div.head .btn::after,
  div.head .btn_line::after {
    width: 13px;
    height: 13px;
  }
  div.head .btn.has_a,
  div.head .btn_line.has_a {
    gap: 10px;
  }
  header {
    padding: 0;
    top: 0;
    border-bottom-color: rgba(51, 51, 51, 0.08);
  }
  header .logo img {
    height: 45px;
  }
  header .btns {
    gap: 26px;
    min-height: 64px;
  }
  header .btn_search {
    width: 22px;
    height: 22px;
  }
  header .btn_lang {
    font-size: 14px;
  }
  footer {
    font-size: 14px;
    line-height: 1.5;
    padding: 50px 0 30px;
    letter-spacing: unset;
  }
  footer strong {
    font-size: 16px;
    letter-spacing: unset;
  }
  footer .flex {
    display: grid;
    gap: 16px;
    justify-content: unset;
    align-items: unset;
  }
  footer .foot_social {
    flex-direction: column;
    align-items: center;
    gap: 0;
    padding: 0;
    border-bottom: none;
  }
  footer .foot_social .logo img {
    height: 70px;
  }
  footer .foot_social .social {
    width: 100%;
    gap: 16px;
    justify-content: space-around;
    margin-top: 30px;
  }
  footer .foot_social .social a {
    width: 40px;
    height: 40px;
  }
  footer .foot_intro {
    padding-top: 20px;
  }
  footer .foot_intro strong {
    font-size: 16px;
    letter-spacing: unset;
  }
  footer .foot_intro p {
    max-width: unset;
    line-height: 1.5;
    letter-spacing: unset;
    margin-top: 16px;
  }
  footer .foot_nav {
    width: 100%;
  }
  footer .foot_nav:not(.foot_links) {
    order: 4;
  }
  footer .foot_nav strong {
    font-size: 16px;
    line-height: 46px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    padding: 0 22px;
    position: relative;
    margin-bottom: 0;
  }
  footer .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_nav.active strong::after {
    transform: translateY(-50%) rotate(180deg);
  }
  footer .foot_nav > div {
    display: none;
    padding: 16px 20px 20px;
  }
  footer .foot_nav > div ul {
    display: block;
  }
  footer .foot_nav > div li + li {
    margin-top: 14px;
  }
  footer .foot_nav > div a {
    font-size: 14px;
    display: block;
    font-weight: normal;
  }
  footer .foot_nav > div p {
    font-size: 14px;
    line-height: 1.5;
  }
  footer .foot_connect {
    width: 100%;
    margin: 0 0 20px;
  }
  footer .foot_connect strong {
    margin-bottom: 16px;
  }
  footer .foot_connect li a {
    font-size: 14px;
    letter-spacing: unset;
  }
  footer .foot_connect .address {
    margin-top: 12px;
    letter-spacing: unset;
  }
  footer .bottom {
    padding: 0;
    margin: 0;
    display: block;
    order: 8;
  }
  footer .copyright {
    max-width: unset;
    text-align: center;
    margin-top: 50px;
    letter-spacing: unset;
    font-size: 13px;
  }
  .page_about {
    padding: 50px 0;
  }
  .page_about .head h2 i {
    margin-bottom: 0;
  }
  .page_about .head h3 {
    font-size: 18px;
    line-height: 1.5;
    margin-top: 12px;
  }
  .page_about .head h3::after {
    width: 40px;
    height: 2px;
    margin-top: 10px;
  }
  .page_about .head p {
    line-height: 1.5;
  }
  .page_about .img {
    margin: 0;
  }
  .page_about .nums {
    margin-top: 30px;
  }
  .page_about .nums strong {
    font-size: 24px;
  }
  .page_about .nums p {
    margin-top: 10px;
  }
  .footer_contact .flex {
    min-height: unset;
    padding: 40px 0;
  }
  .footer_contact .head {
    padding: 0;
  }
  .footer_contact .head h2 {
    font-size: 22px;
    line-height: 1.3;
  }
  .page_banner .wrap {
    padding: 20px 0;
  }
  .page_banner .wrap .head {
    padding: 0;
  }
  .page_banner .wrap .head p {
    line-height: 1.5;
    letter-spacing: unset;
    margin: 5px 0 0;
  }
  .page_banner .wrap .head .seg {
    width: 30px;
    height: 30px;
    margin: 6px auto;
  }
  .page_banner:has(p) .img {
    min-height: 200px;
  }
  div.swiper-pagination.swiper-pagination-bullets {
    gap: 5px;
  }
  div.swiper-pagination.swiper-pagination-bullets .swiper-pagination-bullet {
    width: 18px;
    height: 18px;
  }
  div.swiper-pagination.swiper-pagination-bullets .swiper-pagination-bullet-active {
    margin: 0;
  }
  .nav_wrap .nav_list {
    width: calc(100% + 40px);
    margin: 0 -20px 0;
    padding: 0 20px;
    overflow-x: auto;
    flex-wrap: nowrap;
    justify-content: unset;
    gap: 14px;
  }
  .nav_wrap .nav_list li:first-child {
    margin-left: auto;
  }
  .nav_wrap .nav_list li:last-child {
    margin-right: auto;
  }
  .nav_wrap .nav_list::-webkit-scrollbar {
    display: none;
  }
  .nav_wrap .nav_list .nav_item {
    font-size: 14px;
    line-height: 40px;
    white-space: nowrap;
    padding: 0 20px;
    letter-spacing: unset;
    min-width: unset;
  }
  .breadcrumbs {
    min-height: 25px;
  }
  .breadcrumbs span span::before {
    margin: 0 5px;
  }
  .breadcrumbs span span:last-child::before {
    margin: 0 5px;
  }
  .white .breadcrumbs span {
    letter-spacing: unset;
  }
  .white .breadcrumbs span span:last-child::before {
    margin: 0 5px;
  }
  .white .breadcrumbs span a {
    letter-spacing: unset;
  }
  .product_list .hot {
    width: 40px;
    height: 40px;
  }
  .product_list .info {
    padding: 20px;
  }
  .product_list .info .title {
    font-size: 18px;
    line-height: 1.5;
  }
  .product_list .info .desc {
    line-height: 1.5;
    margin-top: 10px;
    letter-spacing: unset;
  }
  .product_list .info .link {
    gap: 14px;
    margin-top: 20px;
  }
  .product_list .info .link i {
    width: 25px;
    height: 25px;
  }
  .product_list .info .link span {
    margin: 0;
  }
  nav.navigation {
    margin-top: 40px;
  }

  /*** 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;
  }

  .search_drawer .content {
    height: 100%;
  }
  .search_drawer .close {
    width: 20px;
    height: 20px;
    bottom: 30px;
    left: unset;
    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.png) no-repeat center/20px;
  }

  .quote_modal .modal_content {
    border-radius: 10px;
  }
  /*** global css ***/
}
@media screen and (max-width: 576px) {
  header .btn {
    display: none;
  }
  .page_about .img {
    width: 100%;
    order: -1;
  }
  .page_about .nums ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .page_banner .wrap {
    position: static;
    padding: 30px 0;
  }
  .page_banner:has(p) .img {
    min-height: unset;
  }
  nav.navigation .nav-links {
    gap: 12px;
  }
  nav.navigation .page-numbers {
    font-size: 14px;
    min-width: 36px;
    line-height: 34px;
  }
}
