* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --primary: #e00001;
  --secondary: #edb426;
  --tertiary: #f7c948;
  --title: #0a0a0a;
  --text: #63687a;
  --text_w: rgba(255, 255, 255, 0.8);
  --bg: #f6f5f2;
}
html {
  scroll-behavior: smooth;
  font-size: clamp(7.5px, 0.520834vw, 10px);
}
.content {
  max-width: 136rem;
  margin: 0 auto;
  position: relative;
}
.content .content {
  padding: 0;
}
.swiper_box {
  position: relative;
}
.swiper_content {
  max-width: 139rem;
  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;
}
.center p,
.center .desc,
.center h1,
.center h2 {
  margin-left: auto;
  margin-right: auto;
}
.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: "Saira", sans-serif;
  animation: fadeIn 0.4s ease-in forwards;
}
body.fixed {
  overflow: hidden;
  padding-right: 15px;
}
body [data-wpr-lazyrender] {
  content-visibility: unset;
}
.Inter,
p {
  font-family: "Inter", sans-serif;
}
.Saira {
  font-family: "Saira", sans-serif;
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@media (prefers-reduced-motion: reduce) {
  body {
    animation: none;
  }
}
.only_mobile {
  display: none;
}
.gap {
  gap: 3rem;
}
.grecaptcha-badge {
  visibility: hidden;
}
.img.img_cv {
  overflow: hidden;
}
.img.img_cv img,
.img.img_cv video,
.img.img_cv iframe {
  object-fit: cover;
}
.img.img_ct img {
  object-fit: contain;
}
.img.img_ab {
  position: relative;
}
.img.img_ab img,
.img.img_ab video,
.img.img_ab iframe {
  position: absolute;
  left: 0;
  top: 0;
}
.img.img_aba {
  --h: 100%;
  position: relative;
}
.img.img_aba::after {
  content: '';
  display: block;
  padding-bottom: var(--h);
}
.img.img_aba img,
.img.img_aba video,
.img.img_aba iframe {
  position: absolute;
  left: 0;
  top: 0;
}
.img.img_hv:hover img {
  transform: scale(1.03);
}
.img img,
.img video,
.img iframe {
  width: 100%;
  height: 100%;
  display: block;
  transition: all 0.5s;
  aspect-ratio: inherit;
}
.img_bg {
  position: relative;
  z-index: 2;
}
.img_bg > img,
.img_bg > video,
.img_bg > iframe {
  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;
  word-break: break-word;
  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-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
  background-color: var(--primary);
  border: 1px solid var(--primary);
  color: #fff;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 5.4rem;
  gap: 1.7rem;
  padding: 0 3.2rem;
}
.btn::after {
  display: inline-block;
  flex-shrink: 0;
  content: '';
  width: 0.875em;
  height: 0.875em;
  background: url("../img/arrow-r.svg") no-repeat center / contain;
  filter: contrast(0) brightness(2);
  transition: all 0.3s;
}
.btn:hover {
  background-color: transparent;
  color: var(--primary);
}
.btn:hover::after {
  filter: none;
  transform: translateX(20%);
}
.btn.no_a::after {
  display: none;
}
.btn.wt {
  background-color: #fff;
  border-color: #fff;
  color: var(--title);
}
.btn.wt::after {
  filter: contrast(0) brightness(0);
}
.btn.wt:hover {
  background-color: var(--primary);
  border-color: var(--primary);
  color: #fff;
}
.btn.wt:hover::after {
  filter: contrast(0) brightness(2);
}
.btn.bk {
  background-color: #15171e;
  border-color: #15171e;
  color: #fff;
}
.btn.bk::after {
  filter: contrast(0) brightness(2);
}
.btn.bk:hover {
  background-color: var(--primary);
  border-color: var(--primary);
}
.btn_l {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
  background-color: #fff;
  border: 1px solid #e6e9ee;
  color: var(--title);
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 5.5rem;
  gap: 1.7rem;
  padding: 0 3.1rem;
}
.btn_l::after {
  display: inline-block;
  flex-shrink: 0;
  content: '';
  width: 0.875em;
  height: 0.875em;
  background: url("../img/arrow-r.svg") no-repeat center / contain;
  filter: contrast(0) brightness(0);
  transition: all 0.3s;
}
.btn_l:hover {
  background-color: var(--primary);
  border-color: var(--primary);
  color: #fff;
}
.btn_l:hover::after {
  filter: contrast(0) brightness(2);
  transform: translateX(20%);
}
.btn_l.no_a::after {
  display: none;
}
.swiper_btns {
  gap: 2.1rem;
  display: flex;
}
.swiper_btns div {
  width: 6.1rem;
  cursor: pointer;
  transition: all 0.3s;
  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.51%;
  filter: contrast(0) brightness(2);
}
.swiper_btns div:hover {
  border-color: var(--title);
  background-color: var(--title);
}
.swiper_btns .btn_next::after {
  transform: rotate(180deg);
}
.swiper_btns .swiper-button-disabled {
  pointer-events: none;
  background-color: #fff;
  border-color: #b2b2b2;
}
.swiper_btns .swiper-button-disabled::after {
  filter: none;
}
.swiper_btns:has(.swiper-button-lock) {
  opacity: 0;
}
.swiper_btns.middle {
  width: 98%;
  max-width: 166.2rem;
  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;
}
.tcon.white {
  color: #fff;
}
.tcon.white > em {
  color: var(--tertiary);
}
.tcon.white p {
  color: var(--text_w);
  font-weight: 300;
  letter-spacing: 0.01em;
}
.tcon.bn > em {
  color: #fff;
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 0.06133em;
  gap: 0.733em;
  margin-bottom: 1.6rem;
}
.tcon.bn p {
  font-size: 1.8rem;
  letter-spacing: 0.01em;
}
.tcon em {
  font-style: normal;
}
.tcon > em {
  display: inline-grid;
  grid-template-columns: 2.7rem 1fr;
  align-items: center;
  text-transform: uppercase;
  font-size: 1.4rem;
  line-height: 1.2;
  font-weight: 500;
  color: var(--text);
  gap: 0.5em;
  margin-bottom: 1.8rem;
  letter-spacing: 0.057143em;
}
.tcon > em::before {
  display: block;
  padding-bottom: 33.333%;
  content: '';
  background-color: var(--primary);
  clip-path: polygon(22.2% 0, 100% 0, 77.8% 100%, 0 100%);
}
.tcon h1 {
  font-size: 7.6rem;
  line-height: 1.02631579;
  font-weight: 800;
}
.tcon h1 em {
  display: inline-block;
  background-image: linear-gradient(92.7953deg, #e00100, #e7a008);
  background-clip: text;
  color: transparent;
  margin-top: 2px;
}
.tcon h2 {
  font-size: 4.8rem;
  line-height: 1.2;
  font-weight: 600;
}
.tcon p {
  line-height: 2.6rem;
  color: var(--text);
  letter-spacing: -0.0044em;
}
header {
  position: sticky;
  left: 0;
  top: -94px;
  right: 0;
  z-index: 996;
  transition: all 0.3s;
  background-color: #fff;
}
header.opt {
  top: 0;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}
header .flex {
  gap: 7%;
}
header .logo {
  display: block;
  position: relative;
  margin-right: auto;
}
header .logo img {
  display: block;
  width: auto;
  height: 7.0962rem;
}
header .logo p {
  width: 1px;
  height: 1px;
  overflow: hidden;
  position: absolute;
  clip: rect(1px, 1px, 1px, 1px);
}
header nav {
  font-family: "Inter", sans-serif;
}
header nav .close {
  display: none;
}
header nav .menu {
  gap: 4.1rem;
  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: #252833;
  line-height: 48px;
  transition: all 0.3s;
}
header nav .menu > li > a:hover {
  color: var(--primary);
}
header nav .menu > li.current-menu-item > a,
header nav .menu > li.current-menu-parent > a,
header nav .menu > li:has(.current-menu-parent) > a {
  color: var(--primary);
}
header nav .menu > li:hover > .sub-menu {
  transform: translate(0);
  pointer-events: all;
  opacity: 1;
}
header nav .menu > li.btn_mega_menu .sub-menu {
  display: none;
}
header nav .sub-menu {
  position: absolute;
  top: 100%;
  left: -24px;
  padding: 6px;
  transition: all 0.3s;
  transform: translateY(-10px);
  pointer-events: none;
  opacity: 0;
  min-width: 180px;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
header nav .sub-menu > li {
  position: relative;
}
header nav .sub-menu > li > a {
  display: block;
  font-size: 16px;
  white-space: nowrap;
  padding: 12px 18px;
  transition: all 0.3s;
}
header nav .sub-menu > li > a:hover {
  background-color: rgba(0, 0, 0, 0.05);
}
header nav .sub-menu > li:hover > .sub-menu {
  transform: translate(0);
  pointer-events: auto;
  opacity: 1;
}
header nav .sub-menu .sub-menu {
  left: 100%;
  top: 0;
}
header .btns {
  gap: 2.1rem;
  display: flex;
  align-items: center;
  min-height: 94px;
}
header .btns .btn_search {
  display: block;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  overflow: hidden;
  text-indent: -999px;
  background: url(../img/icon-search.svg) no-repeat center / contain;
}
header .btns .btn_lang {
  position: relative;
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #252833;
  padding-left: 25px;
  text-transform: uppercase;
}
header .btns .btn_lang::before {
  position: absolute;
  width: 18px;
  height: 18px;
  content: '';
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background: url("../img/icon-lang.svg") no-repeat center / contain;
}
header .btns .btn_menu {
  display: none;
  flex-shrink: 0;
  width: 23px;
  height: 23px;
  overflow: hidden;
  text-indent: -999px;
  background: url(../img/nav-btn.svg) no-repeat center / contain;
}
header .btns .btn {
  line-height: 4.8rem;
  margin-left: 1.4rem;
}
footer {
  background-color: #15171e;
  color: #fff;
}
footer .nav {
  flex: 1;
  width: 100%;
  max-width: 75rem;
}
footer .foot_link {
  padding: 11rem 0 2.9rem;
}
footer .foot_link .logo {
  display: block;
  position: relative;
  width: 11rem;
}
footer .foot_link .logo img {
  display: block;
  width: 100%;
  height: auto;
}
footer .foot_link .logo p {
  width: 1px;
  height: 1px;
  overflow: hidden;
  position: absolute;
  clip: rect(1px, 1px, 1px, 1px);
}
footer .foot_link .menu {
  display: grid;
  counter-reset: num;
  gap: 1.2rem;
  margin-top: 3.4rem;
}
footer .foot_link .menu li:nth-child(-n+9) a::before {
  content: '0' counter(num);
}
footer .foot_link .menu a {
  display: grid;
  grid-template-columns: auto 1fr 0.85em;
  align-items: center;
  font-size: 2rem;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  background: linear-gradient(to right, #c31418 0 100%) no-repeat bottom left / 100% 0;
  transition: all 0.3s;
  gap: 1em;
  padding: 1.1rem 0;
  font-weight: 500;
  letter-spacing: 0.0025em;
}
footer .foot_link .menu a::before {
  display: block;
  font-size: 0.75em;
  opacity: 0.6;
  min-width: 3.26667em;
  counter-increment: num;
  content: counter(num);
}
footer .foot_link .menu a::after {
  display: block;
  padding-bottom: 100%;
  content: '';
  background: url("../img/arrow-r-w.svg") no-repeat center / contain;
  align-self: start;
  margin-top: -3px;
}
footer .foot_link .menu a:hover {
  background-size: 100% 1px;
  border-bottom-color: #c31418;
}
footer .main {
  padding: 2.9rem 0 9.6rem;
}
footer .main strong {
  display: block;
  font-size: 2rem;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 0.0025em;
}
footer .main .nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 5rem 4%;
}
footer .main .foot_nav {
  min-width: 28.8%;
}
footer .main .foot_nav strong {
  margin-bottom: 2.4rem;
}
footer .main .foot_nav li a {
  font-family: "Inter", sans-serif;
  font-size: 1.8rem;
  opacity: 0.7;
  transition: all 0.3s;
  vertical-align: top;
  text-decoration: underline transparent;
  font-weight: 300;
  letter-spacing: 0.01em;
}
footer .main .foot_nav li a:hover {
  opacity: 1;
  color: var(--primary);
  text-decoration-color: var(--primary);
}
footer .main .foot_nav li + li {
  margin-top: 1.6rem;
}
footer .main .foot_connect {
  width: 24rem;
}
footer .main .foot_connect strong {
  margin-bottom: 2.4rem;
}
footer .main .foot_connect li {
  position: relative;
  padding-left: 5.5rem;
}
footer .main .foot_connect li::before {
  content: '';
  display: block;
  width: 3.4rem;
  height: 3.4rem;
  background: no-repeat center left / contain;
  position: absolute;
  left: 0;
  top: -0.3rem;
}
footer .main .foot_connect li a {
  font-size: 1.84rem;
  vertical-align: top;
  text-decoration: underline transparent;
  transition: all 0.3s;
  font-weight: 500;
  letter-spacing: 0.005em;
}
footer .main .foot_connect li a:hover {
  text-decoration-color: var(--primary);
  color: var(--primary);
}
footer .main .foot_connect li .label {
  opacity: 0.5;
  font-size: 1.4rem;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
  font-weight: 300;
}
footer .main .foot_connect li + li {
  margin-top: 3.9rem;
}
footer .main .foot_connect .phone::before {
  background-image: url(../img/ft-icon-phone.svg);
  background-size: 88.24%;
  top: 0.4rem;
}
footer .main .foot_connect .email::before {
  background-image: url(../img/ft-icon-email.svg);
}
footer .bottom {
  font-size: 1.437rem;
  padding: 4.9rem 0;
  letter-spacing: -0.0084em;
}
footer .bottom a {
  opacity: 0.68;
  transition: all 0.3s;
  text-decoration: underline transparent;
  font-weight: 300;
  letter-spacing: -0.002784em;
}
footer .bottom a:hover {
  opacity: 1;
  color: var(--primary);
  text-decoration-color: var(--primary);
}
footer .bottom ul {
  gap: 2rem 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
footer .bottom ul li {
  display: flex;
  align-items: center;
}
footer .bottom ul li::before {
  width: 1px;
  height: 1.3rem;
  background-color: #fff;
  opacity: 0.15;
  display: inline-block;
  content: '';
  margin: 0 1.5rem;
}
footer .bottom ul li:first-child::before {
  display: none;
}
.contact_sidebar {
  position: fixed;
  right: 0;
  top: 50%;
  z-index: 98;
  transform: translateY(-50%);
}
.contact_sidebar ul {
  display: flex;
  flex-direction: column;
  background-color: #fff;
  border-radius: 0.8rem 0 0 0.8rem;
  box-shadow: 0 0.4rem 2.4rem rgba(0, 0, 0, 0.12);
  overflow: hidden;
}
.contact_sidebar li + li {
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}
.contact_sidebar a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4.8rem;
  height: 4.8rem;
  transition: all 0.3s;
}
.contact_sidebar a span {
  display: block;
  width: 2.4rem;
  height: 2.4rem;
  background: no-repeat center / contain;
  transition: filter 0.3s;
}
.contact_sidebar a:hover {
  background-color: var(--primary);
}
.contact_sidebar a:hover span {
  filter: brightness(0) invert(1);
}
.contact_sidebar .whatsapp span {
  background-image: url(../img/ft-icon-whatsapp.svg);
}
.contact_sidebar .phone span {
  background-image: url(../img/ft-icon-phone.svg);
  background-size: 88%;
}
.contact_sidebar .email span {
  background-image: url(../img/ft-icon-email.svg);
}
footer #backtop {
  position: fixed;
  z-index: 99;
  right: 1.6rem;
  bottom: 4.1rem;
  display: block;
  cursor: pointer;
  transition: all 0.3s;
  width: 4rem;
  height: 4rem;
  background: url("../img/arrow-t-w.svg") no-repeat center / 22.5% var(--primary);
  opacity: 0;
  transform: translateY(100%);
}
footer #backtop.show {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
footer #backtop:hover {
  transform: scale(1.1);
}
.mage-menu-overlay {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 991;
  width: 100%;
  height: 100%;
  transition: all 0.3s;
  background-color: rgba(0, 0, 0, 0.4);
  opacity: 0;
  pointer-events: none;
}
.mage-menu-overlay.active {
  opacity: 1;
  pointer-events: all;
}
.mega_menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 999;
  background-color: #fff;
  border-top: 1px solid #e6e9ee;
  padding: 5rem 0;
  display: none;
}
.mega_menu .flex {
  gap: 3rem;
}
.mega_menu .nav {
  width: 17%;
  max-height: calc(100vh - 22rem);
  overflow-y: auto;
  padding-right: 1rem;
  border-right: 1px solid #e6e9ee;
}
.mega_menu .nav li + li {
  margin-top: 5px;
}
.mega_menu .nav .active a {
  background-color: var(--bg);
}
.mega_menu .nav a {
  display: block;
  font-size: 18px;
  transition: all 0.3s;
  font-weight: 500;
  gap: 2rem;
  padding: 8px 16px;
}
.mega_menu .list {
  flex: 1;
  max-height: calc(100vh - 22rem);
  overflow-y: auto;
  display: none;
  padding-right: 1rem;
}
.mega_menu .list.active {
  display: block;
}
.mega_menu .list ul {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(25rem, 100%), 1fr));
  gap: 4rem 2rem;
}
.mega_menu .list ul a {
  display: block;
  height: 100%;
}
.mega_menu .list ul a:hover img {
  transform: scale(1.03);
}
.mega_menu .list .img.img_ab {
  background-color: #fbfbfb;
  display: flex;
  justify-content: center;
  padding-bottom: 85.75851393%;
  overflow: hidden;
}
.mega_menu .list .img.img_ab img {
  width: 85.75851393%;
  left: unset;
}
.mega_menu .list .title {
  font-size: 16px;
  font-weight: 600;
  margin-top: 10px;
  text-align: center;
}
.mega_menu .center:has(.btn_l) {
  margin-top: 5rem;
}
.page_news {
  padding: 11.9rem 0 18.2rem;
}
.page_news .tcon {
  padding-bottom: 0.6rem;
}
.page_news .page_news_swiper {
  overflow: hidden;
  margin-top: 5rem;
}
.page_news .swiper_btns.middle {
  top: 45.8%;
}
.footer_contact {
  overflow: hidden;
}
.footer_contact .flex {
  min-height: 73rem;
}
.footer_contact .head {
  flex: 1;
  max-width: 53.2rem;
  align-self: flex-end;
  padding: 4rem 0 1.4rem;
}
.footer_contact .tcon > em {
  margin-bottom: 1.5rem;
}
.footer_contact p {
  max-width: 47.9rem;
  margin-top: 2.5rem;
}
.footer_contact .img {
  margin-left: -3.383459%;
  height: auto;
  margin-top: 3.1rem;
}
.footer_contact .quote_form {
  position: relative;
  z-index: 2;
  width: 55%;
  max-width: 59.7rem;
  display: flex;
  align-items: center;
  padding: 6rem 0;
}
.footer_contact .quote_form::before,
.footer_contact .quote_form::after {
  position: absolute;
  width: 184.1%;
  height: 100%;
  left: -13.74%;
  top: 0;
  content: '';
  z-index: -1;
  background-color: var(--bg);
  clip-path: polygon(39.95% 0, 100% 0, 60.05% 100%, 0 100%);
}
.footer_contact .quote_form::after {
  background-color: var(--primary);
  left: 96.5%;
}
.quote_form form {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.7rem 0;
  margin-bottom: 0.6rem;
}
.quote_form form span {
  width: 100%;
}
.quote_form form .col-2 {
  width: 48.74371859%;
}
.quote_form form .label {
  display: block;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.quote_form form input,
.quote_form form textarea {
  display: block;
  width: 100%;
  background-color: #fff;
  border: 1px solid #e6e5e1;
  transition: border-color 0.2s;
  height: 4.5rem;
  font-size: 1em;
  padding: 0 20px;
}
.quote_form form input:focus,
.quote_form form textarea:focus {
  border-color: var(--primary);
}
.quote_form form textarea {
  height: 9.9rem;
  padding: 14px 20px;
  margin-top: 0.6rem;
}
.quote_form form span:has(.btn) {
  margin-top: 1.3rem;
  position: relative;
}
.quote_form form .btn {
  width: 100%;
  line-height: 5.2rem;
}
.quote_form form .btn input {
  display: none;
}
.nav_wrap .nav_list {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem 3rem;
}
.nav_wrap .nav_item {
  display: block;
  cursor: pointer;
  transition: all 0.3s;
  font-size: 1.8rem;
  font-weight: 500;
  color: #b2b2b2;
  border-bottom: 2px solid transparent;
  padding: 1px 0;
}
.nav_wrap .nav_item:hover {
  border-bottom-color: rgba(224, 0, 1, 0.2);
}
.nav_wrap .nav_item.active {
  border-bottom-color: var(--primary);
  color: var(--title);
  font-weight: 600;
}
.product_list .active a {
  box-shadow: 0 1rem 1rem rgba(188, 188, 188, 0.35);
}
.product_list a {
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: all 0.3s;
  background-color: #fff;
  border: 1px solid #e6e9ee;
  box-shadow: 0 0.8rem 0.8rem rgba(229, 229, 229, 0.35);
}
.product_list a:hover img {
  transform: scale(1.03);
}
.product_list .img.img_ab {
  background-color: #fbfbfb;
  display: flex;
  justify-content: center;
  padding-bottom: 85.75851393%;
  margin: -0.5px;
  overflow: hidden;
}
.product_list .img.img_ab img {
  width: 85.49382716%;
  left: unset;
}
.product_list .info {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 6.1919505% 7.7399381% 9.5975232%;
}
.product_list .info .cat {
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--secondary);
  text-transform: uppercase;
}
.product_list .info .title {
  font-size: 2.2rem;
  line-height: 1.22727273;
  font-weight: 600;
  color: #15171e;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  margin-bottom: auto;
  margin-top: 0.5rem;
}
.product_list .info .code {
  font-size: 1.4rem;
  color: var(--text);
  margin-top: 12.088%;
  letter-spacing: -0.0086em;
}
.news_list .active .info {
  border-bottom-color: transparent;
  background-size: 100% 2px;
}
.news_list a {
  display: flex;
  flex-direction: column;
  height: 100%;
  align-items: flex-start;
}
.news_list a:hover img {
  transform: scale(1.03);
}
.news_list .img {
  width: 100%;
  padding-bottom: 63.27944573%;
}
.news_list .info {
  flex: 1;
  width: 100%;
  border-bottom: 1px solid #e5e5e5;
  transition: all 0.3s, background-size 0.4s;
  background: linear-gradient(to right, #e00100, #e7a008) no-repeat bottom left / 0 2px;
  padding: 3.4642032% 0 5.5427252%;
}
.news_list .info .cat {
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--secondary);
  text-transform: uppercase;
}
.news_list .info .title {
  font-size: 2.2rem;
  line-height: 1.22727273;
  font-weight: 600;
  color: #15171e;
  max-width: 41.4rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  margin-top: 0.9rem;
}
.news_list .info .desc {
  font-size: 1.4rem;
  line-height: 2rem;
  color: var(--text);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  margin-top: 1.1rem;
  letter-spacing: -0.0086em;
}
.news_list .btn_i {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s;
  font-weight: 600;
  line-height: 1.2;
  gap: 1.1rem;
  margin-top: 2.3rem;
}
.news_list .btn_i::after {
  display: inline-block;
  flex-shrink: 0;
  content: '';
  width: 0.875em;
  height: 0.875em;
  transition: all 0.3s;
  background: url("../img/arrow-r.svg") no-repeat center / contain;
}
.news_list .btn_i:hover {
  color: var(--primary);
}
.news_list .btn_i:hover::after {
  transform: translateX(20%);
}
.application_item {
  display: block;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.application_item:hover img {
  transform: scale(1.03);
}
.application_item .img {
  padding-bottom: 137.26027397%;
}
.application_item .img::after {
  position: absolute;
  width: 100%;
  height: 90.42%;
  left: 0;
  bottom: 0;
  content: '';
  pointer-events: none;
  background-image: linear-gradient(to top, rgba(21, 23, 30, 0.9) 8%, rgba(21, 23, 30, 0.15) 55%, transparent);
}
.application_item .info {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  color: #fff;
  max-height: 55%;
  overflow-y: auto;
  padding: 8.2191781% 6.5753425%;
}
.application_item .info .cat {
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--tertiary);
  text-transform: uppercase;
}
.application_item .info .title {
  font-size: 2.2rem;
  font-weight: 500;
  letter-spacing: 0.00455em;
}
.application_item .info .desc {
  font-size: 1.4rem;
  line-height: 2rem;
  color: var(--text_w);
  max-width: 30.1rem;
  margin-top: 0.3rem;
  font-weight: 300;
  letter-spacing: -0.00143em;
}
nav.navigation {
  margin-top: 6rem;
}
nav.navigation .screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}
nav.navigation .nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
}
nav.navigation .page-numbers {
  transition: all 0.3s;
  font-size: 1.455rem;
  font-weight: 500;
  color: #171717;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.4124em;
  cursor: pointer;
  text-align: center;
  width: 2.749141em;
  height: 2.749141em;
  min-width: max-content;
  padding: 0 0.2em;
}
nav.navigation .page-numbers.current,
nav.navigation .page-numbers:hover {
  background-color: var(--primary);
  color: #fff;
}
nav.navigation .page-numbers.prev,
nav.navigation .page-numbers.next,
nav.navigation .page-numbers.omit {
  padding: 0;
  min-width: unset;
}
nav.navigation .page-numbers.omit {
  width: unset;
}
nav.navigation .prev,
nav.navigation .next {
  position: relative;
  overflow: hidden;
  text-indent: -999px;
  transition: all 0.3s;
}
nav.navigation .prev::after,
nav.navigation .next::after {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  content: '';
  background: url("../img/nav-l.svg") no-repeat center right 15%/17.5%;
  transition: all 0.3s;
  filter: contrast(0) brightness(0);
  opacity: 0.5;
}
nav.navigation .prev:hover::after,
nav.navigation .next:hover::after {
  filter: contrast(0) brightness(2);
  opacity: 1;
  background-position-x: center;
}
nav.navigation .next::after {
  transform: rotate(180deg);
}
nav.navigation .omit {
  margin: 0 0.4811em 0 0.344em;
}
nav.navigation span.page-numbers {
  pointer-events: none;
}

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

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

.gslide-image img {
  background-color: #fff;
}

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

.search_drawer {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 12vh 2rem 2rem;
  pointer-events: none;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.25s ease, visibility 0.25s;
}
.search_drawer.active {
  pointer-events: auto;
  visibility: visible;
  opacity: 1;
}
.search_drawer .drawer_backdrop {
  position: absolute;
  inset: 0;
  border: none;
  padding: 0;
  cursor: default;
  background: rgba(10, 12, 22, 0.42);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.search_drawer.active .drawer_backdrop {
  opacity: 1;
}
.search_drawer .drawer_content {
  position: relative;
  width: 100%;
  max-width: 68rem;
  transform: translateY(-1.6rem) scale(0.96);
  opacity: 0;
  transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.25s ease;
}
.search_drawer.active .drawer_content {
  transform: translateY(0) scale(1);
  opacity: 1;
}
.search_drawer .search_panel {
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(10px) saturate(1.85);
  -webkit-backdrop-filter: blur(48px) saturate(1.85);
  border-radius: 1.8rem;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.55) inset,
    0 2.8rem 7rem rgba(0, 0, 0, 0.2),
    0 1rem 2.4rem rgba(0, 0, 0, 0.08);
  overflow: hidden;
}
.search_drawer .search_field {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  padding: 2rem 2.2rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.search_drawer .search_icon {
  flex-shrink: 0;
  width: 2.4rem;
  height: 2.4rem;
  background: url(../img/icon-search.svg) no-repeat center / contain;
  opacity: 0.42;
}
.search_drawer .search_field input {
  flex: 1;
  min-width: 0;
  font-size: 2.2rem;
  line-height: 1.35;
  font-weight: 400;
  color: var(--title);
  background-color: transparent;
}
.search_drawer .search_field input::placeholder {
  color: rgba(90, 90, 104, 0.55);
}
.search_drawer .search_field input::-webkit-search-cancel-button,
.search_drawer .search_field input::-webkit-search-decoration {
  display: none;
}
.search_drawer .search_clear {
  flex-shrink: 0;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 50%;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s, background-color 0.2s;
  background: rgba(0, 0, 0, 0.08) url(../img/close.svg) no-repeat center / 1rem;
}
.search_drawer .search_clear.visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.search_drawer .search_clear:hover {
  background-color: rgba(0, 0, 0, 0.14);
}
.search_drawer .search_submit {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}
.search_drawer .search_footer {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 2.4rem;
  padding: 1.4rem 2.2rem;
  font-size: 1.25rem;
  color: rgba(90, 90, 104, 0.72);
}
.search_drawer .search_footer kbd {
  display: inline-block;
  min-width: 2.2rem;
  padding: 0.15rem 0.55rem;
  margin: 0 0.25rem;
  font-size: 1.1rem;
  font-family: inherit;
  text-align: center;
  border-radius: 0.45rem;
  background: rgba(0, 0, 0, 0.06);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.08);
}

.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: 76.8rem;
  margin: 5rem auto;
  padding: 5rem;
  background-color: #fff;
}
/*** global css ***/

@media screen and (min-width: 769px) and (max-width: 1220px) {
  .content {
    padding: 0 3rem;
  }
  .tcon h1 {
    font-size: 7rem;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .content,
  .swiper_content {
    max-width: 896px;
  }
  .tcon h1 {
    font-size: 6rem;
  }
}
@media screen and (max-width: 1024px) {
  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: auto;
  }
  header nav.active .close {
    opacity: 1;
  }
  header nav.active .con {
    transform: translate(0);
  }
  header nav > .close {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    opacity: 0;
    transition: all 0.3s;
    background-color: rgba(0, 0, 0, 0.75);
    display: block;
  }
  header nav .con {
    width: min(300px, 80%);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.3s;
    transform: translateX(-100%);
    background-color: #fff;
  }
  header nav .close_box {
    padding: 12px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }
  header nav .close_box .close {
    display: block;
    width: 40px;
    height: 40px;
    cursor: pointer;
    margin-left: auto;
    transition: all 0.3s;
    border-radius: var(--radius);
    background: url('../img/close.svg') no-repeat center / 12px;
  }
  header nav .close_box .close:hover {
    background-color: rgba(0, 0, 0, 0.05);
  }
  header nav .close_box + div {
    flex: 1;
    overflow: auto;
    padding: 12px 12px 30px;
  }
  header nav .menu {
    display: block;
  }
  header nav .menu > li {
    cursor: pointer;
  }
  header nav .menu > li + li {
    margin-top: 8px;
  }
  header nav .menu > li > a {
    color: var(--title);
    display: block;
    font-size: 16px;
    line-height: 26px;
    padding: 10px 12px;
    transition: all 0.3s;
    border-radius: var(--radius);
  }
  header nav .menu > li > a:hover {
    background-color: rgba(0, 0, 0, 0.05);
  }
  header nav .menu > li.current-menu-item > a,
  header nav .menu > li.current-menu-parent > a {
    background-color: rgba(0, 0, 0, 0.05);
  }
  header nav .menu .menu-item-has-children {
    position: relative;
  }
  header nav .menu .menu-item-has-children > a {
    margin-right: 46px;
  }
  header nav .menu .menu-item-has-children::before,
  header nav .menu .menu-item-has-children::after {
    content: '';
    display: block;
    position: absolute;
    top: 5px;
    right: 0;
    width: 36px;
    height: 36px;
    transition: all 0.3s;
    border-radius: var(--radius);
  }
  header nav .menu .menu-item-has-children::after {
    background: url(../img/select.svg) no-repeat center / 12px;
  }
  header nav .menu .menu-item-has-children.active::before {
    background-color: rgba(0, 0, 0, 0.05);
  }
  header nav .menu .menu-item-has-children.active::after {
    transform: rotate(180deg);
  }
  header nav .sub-menu {
    position: static;
    padding: 10px;
    margin: 12px 0;
    box-shadow: none;
    display: none;
    opacity: 1;
    pointer-events: auto;
    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);
  }
  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 .btns .btn_menu {
    display: block;
  }
  header .btns .btn {
    margin: 0;
  }
  header .mega_menu {
    display: none !important;
  }
}
@media screen and (min-width: 769px) and (max-width: 896px) {
  .content,
  .swiper_content {
    max-width: 768px;
  }
  .tcon h1 {
    font-size: 5rem;
  }
  .tcon h2 {
    font-size: 4rem;
  }
  footer .nav {
    max-width: 60rem;
  }
  footer .main .foot_nav {
    min-width: unset;
  }
}
@media screen and (min-width: 769px) {
  ul::-webkit-scrollbar,
  div::-webkit-scrollbar {
    width: 4px;
    height: 4px;
  }
  ul::-webkit-scrollbar-thumb,
  div::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-color: #8b8b8b;
  }
}
@media screen and (max-width: 768px) {
  html {
    font-size: 10px;
  }
  body {
    font-size: 1.4rem;
  }
  .content {
    padding: 0 20px;
  }
  .swiper_content {
    padding: 10px 20px;
  }
  .only_mobile {
    display: block;
  }
  body.fixed {
    padding-right: 0;
  }
  .gap {
    gap: 20px;
  }
  .btn,
  .btn_l {
    font-size: 14px;
    line-height: 40px;
    padding: 0 20px;
    gap: 8px;
  }
  .swiper_btns {
    gap: 20px;
  }
  .swiper_btns div {
    width: 40px;
  }
  .swiper_btns.middle:not(:has(.swiper-button-lock)) {
    position: static;
    width: 100%;
    max-width: unset;
    justify-content: flex-end;
    transform: translate(0);
    pointer-events: all;
    margin-top: 30px;
    padding: 0 20px;
  }
  .tcon.bn > em {
    font-size: 13px;
    margin-bottom: 8px;
  }
  .tcon.bn p {
    font-size: 14px;
  }
  .tcon > em {
    font-size: 13px;
    margin-bottom: 8px;
    grid-template-columns: 18px 1fr;
  }
  .tcon h1 {
    font-size: 38px;
  }
  .tcon h1 em {
    margin-top: 0;
  }
  .tcon h2 {
    font-size: 30px;
  }
  .tcon p {
    font-size: 14px;
    line-height: 1.5;
    margin-top: 10px;
  }
  div.head.flex .tcon {
    padding: 0;
  }
  div.head.flex .btn,
  div.head.flex .btn_l {
    margin: 0;
  }
  div.head p {
    margin-top: 10px;
  }
  div.head .btn,
  div.head .btn_l {
    margin-top: 20px;
    font-size: 14px;
    line-height: 40px;
    padding: 0 20px;
    gap: 8px;
  }
  header {
    top: 0;
  }
  header .logo img {
    height: 50px;
  }
  header .btns {
    gap: 20px;
    min-height: 64px;
  }
  header .btns .btn_search {
    width: 22px;
    height: 22px;
  }
  header .btns .btn {
    line-height: 40px;
  }
  footer .foot_link {
    padding: 50px 0 0;
    flex-direction: column;
    align-items: center;
  }
  footer .foot_link .logo {
    width: 100px;
  }
  footer .foot_link .menu {
    gap: 10px;
    margin-top: 0;
  }
  footer .foot_link .menu a {
    font-size: 16px;
    padding: 10px 0;
    gap: 10px;
  }
  footer .foot_link .menu a::after {
    align-self: center;
    margin-top: 0;
  }
  footer .foot_link .menu a::before {
    min-width: 2em;
  }
  footer .main {
    flex-direction: column-reverse;
    padding: 20px 0 50px;
  }
  footer .main .nav {
    display: block;
  }
  footer .main strong {
    font-size: 18px;
  }
  footer .main .foot_nav {
    width: 100%;
  }
  footer .main .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: 16px;
  }
  footer .main .foot_nav strong::after {
    content: '';
    display: block;
    width: 12px;
    height: 12px;
    background: url(../img/select.svg) no-repeat center / contain;
    position: absolute;
    right: 22px;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s;
    filter: contrast(0) brightness(2);
  }
  footer .main .foot_nav.active strong::after {
    transform: translateY(-50%) rotate(180deg);
  }
  footer .main .foot_nav > div {
    display: none;
    padding: 0 20px 20px;
  }
  footer .main .foot_nav > div li + li {
    margin-top: 14px;
  }
  footer .main .foot_nav > div a {
    font-size: 14px;
    display: block;
    font-weight: normal;
  }
  footer .main .foot_nav > div p {
    font-size: 14px;
    line-height: 1.5;
  }
  footer .main .foot_connect strong {
    margin-bottom: 16px;
  }
  footer .main .foot_connect li + li {
    margin-top: 16px;
  }
  footer .main .foot_connect li {
    padding-left: 40px;
  }
  footer .main .foot_connect li::before {
    width: 25px;
    height: 25px;
    top: 5px;
  }
  footer .main .foot_connect li a {
    font-size: 16px;
  }
  footer .main .foot_connect li p {
    font-size: 13px;
    margin-bottom: 3px;
  }
  footer .main .foot_connect .phone::before {
    top: 5px;
  }
  footer .bottom {
    padding: 20px 0;
    font-size: 13px;
  }
  footer .bottom ul {
    gap: 16px 0;
  }
  footer .bottom ul li::before {
    height: 10px;
    margin: 0 10px;
  }
  footer .bottom a {
    font-size: 14px;
  }
  .contact_sidebar a {
    width: 44px;
    height: 44px;
  }
  .contact_sidebar a span {
    width: 22px;
    height: 22px;
  }
  footer #backtop {
    right: 20px;
    bottom: 20px;
    width: 40px;
    height: 40px;
  }
  .page_news {
    padding: 50px 0;
    overflow: hidden;
  }
  .page_news .page_news_swiper {
    overflow: unset;
    margin-top: 30px;
  }
  .footer_contact .flex {
    min-height: unset;
  }
  .footer_contact .head {
    align-self: center;
    padding: 50px 0;
  }
  .footer_contact .tcon > em {
    margin-bottom: 8px;
  }
  .footer_contact .img {
    margin-top: 20px;
    margin-left: 0;
  }
  .footer_contact .quote_form {
    padding: 50px 0;
  }
  .quote_form form {
    gap: 10px 0;
  }
  .quote_form form .label {
    margin-bottom: 5px;
  }
  .quote_form form input {
    height: 44px;
  }
  .quote_form form textarea {
    height: 80px;
  }
  .quote_form form span:has(.btn) {
    margin-top: 10px;
  }
  .quote_form form .btn {
    line-height: 40px;
  }
  .nav_wrap .nav_list {
    width: calc(100% + 40px);
    padding: 0 20px;
    margin: 0 -20px;
    flex-wrap: nowrap;
    gap: 20px;
    overflow-x: auto;
  }
  .nav_wrap .nav_list::-webkit-scrollbar {
    display: none;
  }
  .nav_wrap .nav_list .nav_item {
    font-size: 16px;
    white-space: nowrap;
  }
  .product_list .info .code {
    font-size: 12px;
  }
  .product_list .info .title {
    font-size: 20px;
    margin-top: 5px;
  }
  .product_list .info .code {
    font-size: 13px;
  }
  .news_list .info .cat {
    font-size: 12px;
  }
  .news_list .info .title {
    font-size: 20px;
    margin-top: 5px;
  }
  .news_list .info .desc {
    font-size: 14px;
    line-height: 1.5;
    margin-top: 10px;
  }
  .news_list .btn_i {
    gap: 8px;
    margin-top: 20px;
  }
  .application_item .info {
    padding: 20px;
  }
  .application_item .info .cat {
    font-size: 12px;
  }
  .application_item .info .title {
    font-size: 20px;
  }
  .application_item .info .desc {
    font-size: 14px;
    line-height: 1.5;
    margin-top: 5px;
  }
  nav.navigation {
    margin-top: 40px;
  }
  nav.navigation .nav-links {
    gap: 2px;
  }
  nav.navigation .page-numbers {
    font-size: 14px;
  }

  /*** 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 {
    padding: max(7vh, env(safe-area-inset-top, 0px)) 1.6rem 1.6rem;
  }
  .search_drawer .drawer_content {
    max-width: none;
  }
  .search_drawer .search_panel {
    border-radius: 1.4rem;
  }
  .search_drawer .search_field {
    padding: 1.5rem 1.6rem;
    gap: 1rem;
  }
  .search_drawer .search_icon {
    width: 2rem;
    height: 2rem;
  }
  .search_drawer .search_field input {
    font-size: 1.6rem;
  }
  .search_drawer .search_clear {
    width: 3rem;
    height: 3rem;
    background-size: 1.1rem;
  }
  .search_drawer .search_footer {
    display: none;
  }
  /*** global css ***/
}
@media screen and (max-width: 576px) {
  header .btns .btn {
    display: none;
  }
  .footer_contact .head {
    padding-bottom: 0;
  }
  .footer_contact .quote_form {
    width: 100%;
  }
  footer .bottom {
    flex-direction: column-reverse;
    text-align: center;
  }
}
