* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --primary: #d30118;
  --secondary: #0a1838;
  --title: #14171d;
  --text: #6b6b6b;
  --bg: #f1f2f4;
  --border: #e2e2e2;
  --shadow: 0 1rem 1rem rgba(188, 188, 188, 0.35);
}
html {
  scroll-behavior: smooth;
  font-size: clamp(7.5px, 0.520834vw, 10px);
}
.content {
  max-width: 132.6rem;
  margin: 0 auto;
  position: relative;
}
.content .content {
  padding: 0;
}
.swiper_box {
  position: relative;
}
.swiper_content {
  max-width: 135.6rem;
  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: "Inter", sans-serif;
  animation: fadeIn 0.4s ease-in forwards;
}
body.fixed {
  overflow: hidden;
  padding-right: 15px;
}
body [data-wpr-lazyrender] {
  content-visibility: unset;
}
@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;
  text-align: center;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
  background-color: var(--primary);
  border: 1px solid var(--primary);
  color: #fff;
  border-radius: 0.6rem;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 5.4rem;
  gap: 1.2rem;
  padding: 0 2.5rem;
}
.btn::after {
  display: inline-block;
  flex-shrink: 0;
  content: '';
  width: 0.9375em;
  height: 0.9375em;
  transition: all 0.3s;
  filter: contrast(0) brightness(2);
  background: url("../img/arrow-r.svg") no-repeat center / contain;
}
.btn:hover {
  background-color: transparent;
  color: var(--primary);
}
.btn:hover::after {
  transform: translateX(20%);
  filter: none;
}
.btn.no_a::after {
  display: none;
}
.btn.sec {
  background-color: var(--secondary);
  border-color: var(--secondary);
  color: #fff;
}
.btn.sec::after {
  filter: contrast(0) brightness(2);
}
.btn.sec:hover {
  background-color: var(--primary);
  border-color: var(--primary);
}
.btn_i {
  display: inline-grid;
  grid-template-columns: 1fr 0.9375em;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s;
  font-size: 1.6rem;
  line-height: 1.3;
  font-weight: 600;
  color: var(--primary);
  gap: 0.8rem;
}
.btn_i::after {
  display: block;
  padding-bottom: 100%;
  content: '';
  background: url("../img/arrow-r.svg") no-repeat center / contain;
  transition: all 0.3s;
}
.btn_i:hover::after {
  transform: translateX(20%);
}
.swiper_btns {
  gap: 3.6rem;
  display: flex;
}
.swiper_btns div {
  width: 6.3rem;
  cursor: pointer;
  transition: all 0.3s;
  border-radius: 0.6rem;
  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 / 26.23%;
  filter: contrast(0) brightness(2);
}
.swiper_btns div:hover {
  border-color: var(--secondary);
  background-color: var(--secondary);
}
.swiper_btns .btn_next::after {
  transform: rotate(180deg);
}
.swiper_btns .swiper-button-disabled {
  pointer-events: none;
  background-color: transparent;
  border-color: rgba(14, 23, 38, 0.5);
}
.swiper_btns .swiper-button-disabled::after {
  filter: none;
}
.swiper_btns:has(.swiper-button-lock) {
  opacity: 0;
}
.swiper_btns.middle {
  width: 98%;
  max-width: 161.4rem;
  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.bn p,
.tcon.bn .desc {
  font-size: 2rem;
  line-height: 1.4;
  color: rgba(20, 23, 29, 0.8);
  letter-spacing: 0.005em;
}
.tcon em {
  font-style: normal;
  color: var(--primary);
}
.tcon h1 {
  font-size: 5.6rem;
  line-height: 1.10714286;
  font-weight: 700;
  letter-spacing: 0.0232143em;
}
.tcon h2 {
  font-size: 5rem;
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: 0.026em;
}
.tcon p,
.tcon .desc {
  line-height: 2.4rem;
  color: var(--text);
  letter-spacing: -0.0044em;
}
header {
  position: sticky;
  left: 0;
  top: -119px;
  right: 0;
  z-index: 996;
  transition: all 0.3s;
  background-color: #fff;
}
header.opt {
  top: -32px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}
header.opt .logo {
  transform: translateY(15%) scale(0.9);
}
header .flex {
  gap: 0 3.5%;
}
header .connect {
  width: 100%;
  padding: 9px 0 6px;
}
header .connect ul {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 2rem 5.3rem;
}
header .connect ul li {
  position: relative;
  font-size: 14px;
  padding-left: 1.5em;
  letter-spacing: -0.0086em;
}
header .connect ul li::before {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  content: '';
  width: 1em;
  height: 0.9286em;
  background: no-repeat center left / contain;
}
header .connect ul li a {
  vertical-align: top;
  transition: all 0.3s;
  text-decoration: underline transparent;
}
header .connect ul li a:hover {
  color: var(--primary);
  text-decoration-color: var(--primary);
}
header .connect ul .phone::before {
  background-image: url("../img/icon-phone.svg");
}
header .connect ul .email::before {
  background-image: url("../img/icon-email.svg");
}
header .logo {
  margin-right: auto;
  transition: all 0.3s;
  transform-origin: left bottom;
  margin-top: -2.2%;
}
header nav .close {
  display: none;
}
header nav .menu {
  gap: 3.27rem;
  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: #0e191d;
  line-height: 48px;
  padding-bottom: 2px;
  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 .sub-menu {
  position: absolute;
  top: 100%;
  left: -24px;
  padding: 6px;
  transition: all 0.3s;
  transform: translateY(-10px);
  pointer-events: none;
  opacity: 0;
  min-width: 180px;
  border-radius: 5px;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
header nav .sub-menu > li {
  position: relative;
}
header nav .sub-menu > li > a {
  display: block;
  font-size: 16px;
  white-space: nowrap;
  padding: 12px 18px;
  transition: all 0.3s;
  border-radius: 5px;
}
header nav .sub-menu > li > a:hover {
  background-color: rgba(0, 0, 0, 0.05);
}
header nav .sub-menu > li:hover > .sub-menu {
  transform: translate(0);
  pointer-events: auto;
  opacity: 1;
}
header nav .sub-menu .sub-menu {
  left: 100%;
  top: 0;
}
header .btns {
  gap: 2.7rem;
  display: flex;
  align-items: center;
  min-height: 87px;
}
header .btns .btn_search {
  display: block;
  flex-shrink: 0;
  width: 17px;
  height: 17px;
  overflow: hidden;
  text-indent: -999px;
  background: url(../img/icon-search.svg) no-repeat center / contain;
}
header .btns .btn_lang {
  display: block;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  overflow: hidden;
  text-indent: -999px;
  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;
  gap: 1rem;
  padding: 0 2.4rem;
  margin-left: 0.7rem;
}
footer {
  background-color: var(--title);
  color: #fff;
}
footer .flex1 {
  width: 100%;
  max-width: 88.2rem;
}
footer .main {
  padding: 4.3rem 0 10.5rem;
}
footer .main strong {
  display: block;
  font-size: 2rem;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 0.004em;
}
footer .main .flex1 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 5rem 3rem;
}
footer .foot_connect {
  padding-top: 8.8rem;
}
footer .foot_connect .logo .txt {
  color: #fff;
}
footer .foot_connect ul {
  border-bottom: 1px solid #191919;
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 3rem;
  max-width: 83.8rem;
  padding: 4rem 0;
}
footer .foot_connect ul li {
  position: relative;
  flex: 1;
  padding-left: 3.25em;
}
footer .foot_connect ul li::before {
  position: absolute;
  left: 0;
  top: 1px;
  width: 2.125em;
  height: 2.1875em;
  content: '';
  background: no-repeat center / contain;
}
footer .foot_connect ul li .label {
  font-size: 1.4rem;
  opacity: 0.6;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
footer .foot_connect ul li a,
footer .foot_connect ul li p {
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 0.01em;
}
footer .foot_connect ul li a {
  vertical-align: top;
  transition: all 0.3s;
  text-decoration: underline transparent;
}
footer .foot_connect ul li a:hover {
  color: var(--primary);
  text-decoration-color: var(--primary);
}
footer .foot_connect ul .phone::before {
  background-image: url("../img/conn-icon-phone.svg");
  background-size: 88.24%;
  background-position-y: bottom;
}
footer .foot_connect ul .email::before {
  background-image: url("../img/conn-icon-email.svg");
}
footer .foot_connect ul .locate::before {
  background-image: url("../img/conn-icon-locate.svg");
}
footer .foot_follow strong {
  margin-bottom: 2.8rem;
}
footer .foot_nav strong {
  margin-bottom: 2.7rem;
}
footer .foot_nav li a {
  font-size: 1.8rem;
  opacity: 0.56;
  transition: all 0.3s;
  vertical-align: top;
  text-decoration: underline transparent;
  letter-spacing: 0.00556em;
}
footer .foot_nav li a:hover {
  opacity: 1;
  color: var(--primary);
  text-decoration-color: var(--primary);
}
footer .foot_nav li + li {
  margin-top: 2rem;
}
footer .foot_intro strong {
  margin-bottom: 2.4rem;
}
footer .foot_intro p {
  line-height: 2.4rem;
  opacity: 0.6;
  hyphens: auto;
  max-width: 30.4rem;
  font-weight: 300;
  letter-spacing: 0.003125em;
}
footer .foot_intro .menu {
  margin-top: 2.7rem;
}
footer .foot_intro .menu li + li {
  margin-top: 1rem;
}
footer .foot_intro .menu a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
  background-color: var(--primary);
  border: 1px solid var(--primary);
  color: #fff;
  border-radius: 0.6rem;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 5.4rem;
  gap: 1.2rem;
  padding: 0 2.5rem;
}
footer .foot_intro .menu a::after {
  display: inline-block;
  flex-shrink: 0;
  content: '';
  width: 0.9375em;
  height: 0.9375em;
  transition: all 0.3s;
  filter: contrast(0) brightness(2);
  background: url("../img/arrow-r.svg") no-repeat center / contain;
}
footer .foot_intro .menu a:hover {
  background-color: transparent;
  color: var(--primary);
}
footer .foot_intro .menu a:hover::after {
  transform: translateX(20%);
  filter: none;
}
footer .bottom {
  border-top: 1px solid #191919;
  padding: 1.2rem 0 1.8rem;
  color: #b8b6b0;
  font-size: 1.4rem;
  letter-spacing: -0.007em;
}
footer .bottom a {
  font-size: 1.437rem;
  opacity: 0.68;
  transition: all 0.3s;
  text-decoration: underline transparent;
}
footer .bottom a:hover {
  opacity: 1;
  color: var(--primary);
  text-decoration-color: var(--primary);
}
footer .bottom ul {
  gap: 2rem 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
footer .bottom ul li {
  display: flex;
  align-items: center;
}
footer .bottom ul li::before {
  width: 1px;
  height: 1.3rem;
  background-color: #4b4f54;
  opacity: 0.15;
  display: inline-block;
  content: '';
  margin: 0 1.5rem;
}
footer .bottom ul li:first-child::before {
  display: none;
}
footer #backtop {
  position: fixed;
  z-index: 99;
  right: 3.2rem;
  bottom: 1.7rem;
  display: block;
  cursor: pointer;
  transition: all 0.3s;
  width: 5.2rem;
  height: 5.2rem;
  border-radius: 0.6rem;
  background: url("../img/arrow-t-w.svg") no-repeat center / 21.2% var(--primary);
  opacity: 0;
  transform: translateY(100%);
}
footer #backtop.show {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
footer #backtop:hover {
  transform: scale(1.1);
}
.page_news {
  padding: 16.2rem 0 11rem;
  overflow: hidden;
}
.page_news .head h2 {
  max-width: 50rem;
}
.page_news .head .img {
  width: 14.1rem;
  height: auto;
  margin-right: -3.31825038%;
}
.page_news .tcon {
  flex: 1;
  padding-bottom: 1.6rem;
}
.page_news .page_news_swiper {
  overflow: hidden;
  border-radius: 1rem;
  margin: 3.6rem -0.18854% 0;
}
.page_news .swiper_con {
  position: static;
  margin-top: 3.5rem;
}
.page_news .swiper_btns.middle {
  top: 41.8%;
}
.logo {
  position: relative;
  display: inline-grid;
  grid-template-columns: 5.8rem 1fr;
  align-items: end;
  gap: 2.2rem;
}
.logo img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}
.logo .txt {
  color: #1c1b1e;
  line-height: 1;
  text-transform: uppercase;
}
.logo .txt strong {
  font-size: 3.227rem;
  font-weight: 600;
  letter-spacing: 0.017em;
}
.logo .txt p {
  font-size: 1.635rem;
  margin-top: 4%;
  letter-spacing: -0.0031em;
}
.float_mask li.mask_logo {
  width: 37%;
  max-width: 69rem;
  right: -1.3020833%;
  top: -0.8333333%;
  opacity: 0.03;
}
.social {
  gap: 1.2rem;
  display: flex;
  flex-wrap: wrap;
}
.social a {
  opacity: 1;
  display: block;
  width: 4.7rem;
  height: 4.7rem;
  overflow: hidden;
  text-indent: -999px;
  position: relative;
  transition: all 0.3s;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.08);
}
.social a::after {
  content: '';
  display: block;
  position: absolute;
  inset: 0;
  background: no-repeat center / 46.81%;
}
.social a:hover {
  transform: scale(1.1);
  background-color: var(--primary);
}
.social .facebook a::after {
  background-image: url(../img/social-facebook.svg);
}
.social .twitter a::after {
  background-image: url(../img/social-twitter.svg);
}
.social .youtube a::after {
  background-image: url(../img/social-youtube.svg);
}
.social .instagram a::after {
  background-image: url(../img/social-instagram.svg);
}
.social .linkedin a::after {
  background-image: url(../img/social-linkedin.svg);
}
.breadcrumbs {
  line-height: 2.5rem;
  min-height: 2.5rem;
}
.breadcrumbs span {
  font-weight: 600;
  color: #222;
  letter-spacing: -0.002em;
}
.breadcrumbs span span::before {
  display: inline-block;
  content: '';
  width: 0.4375em;
  height: 0.4375em;
  margin: 0 17px 0 12px;
  background: url("../img/bread-nav.svg") no-repeat center / contain;
}
.breadcrumbs span span:first-child::before {
  display: none;
}
.breadcrumbs span a {
  color: #4a4a4a;
  font-weight: 400;
  vertical-align: top;
  text-decoration: underline transparent;
  transition: all 0.3s;
  letter-spacing: -0.0044em;
}
.breadcrumbs span a:hover {
  color: var(--primary);
  text-decoration-color: var(--primary);
}
.nav_wrap .nav_list {
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem;
}
.nav_wrap .nav_item {
  display: block;
  cursor: pointer;
  text-align: center;
  text-transform: uppercase;
  transition: all 0.3s;
  border-radius: 0.6rem;
  border: 1px solid #c1c1c1;
  color: #0a0a0a;
  font-weight: 600;
  line-height: 5.5rem;
  padding: 0 1em;
  min-width: 14.1875em;
}
.nav_wrap .nav_item:hover {
  background-color: var(--bg);
}
.nav_wrap .nav_item.active {
  background-color: var(--primary);
  border-color: var(--primary);
  color: #fff;
}
.news_list .active a::after {
  opacity: 1;
}
.news_list a {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: var(--rd);
  border: 1px solid #c1c1c1;
  --rd: 1rem;
}
.news_list a::after {
  position: absolute;
  left: -1.5px;
  top: -1.5px;
  bottom: -1.5px;
  right: -1.5px;
  content: '';
  border-radius: var(--rd);
  border: 2px solid var(--primary);
  transition: all 0.3s;
  opacity: 0;
  pointer-events: none;
  box-shadow: var(--shadow);
}
.news_list a:hover img {
  transform: scale(1.03);
}
.news_list .img {
  margin: -0.5px;
  border-radius: var(--rd) var(--rd) 0 0;
  padding-bottom: 60.14319809%;
}
.news_list .info {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 6.9212411% 6.2052506% 6.2052506%;
}
.news_list .info .text {
  flex: 1;
}
.news_list .info .cat {
  font-size: 1.3rem;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--primary);
  letter-spacing: 0.05em;
}
.news_list .info .title {
  font-size: 2.2rem;
  line-height: 1.2;
  color: #0a0a0a;
  font-weight: 600;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  height: 5.28rem;
  max-width: 35rem;
  margin-top: 1.2rem;
  letter-spacing: 0.00545em;
}
.news_list .info .desc {
  font-size: 1.5rem;
  line-height: 1.47933333;
  color: var(--text);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 3;
  max-width: 36rem;
  margin-top: 1.4rem;
  letter-spacing: -0.0067em;
}
.news_list .info .btn_i {
  text-transform: uppercase;
  margin-top: 2.2rem;
}

/*** mega menu css ***/
.btn_mega_menu .sub-menu {
  display: none;
}
.btn_mega_menu > a {
  position: relative;
}
.btn_mega_menu.mega_open > a,
.btn_mega_menu:hover > a {
  color: var(--primary);
}
.mega_menu_overlay {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 995;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}
.mega_menu_overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.mega_menu {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  z-index: 10;
  padding-top: 0.8rem;
  visibility: hidden;
  pointer-events: none;
  height: 0;
  overflow: hidden;
}
.mega_menu.active {
  visibility: visible;
  pointer-events: auto;
  height: auto;
  overflow: visible;
}
.mega_menu > .content {
  --mega-arrow-left: 20%;
  position: relative;
}
.mega_menu > .content::before {
  content: '';
  position: absolute;
  left: var(--mega-arrow-left);
  top: -0.9rem;
  z-index: 2;
  width: 0;
  height: 0;
  transform: translateX(-50%);
  border-style: solid;
  border-width: 0 0.9rem 0.9rem;
  border-color: transparent transparent #fff;
  filter: drop-shadow(0 -0.2rem 0.3rem rgba(10, 24, 56, 0.06));
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}
.mega_menu.active > .content::before {
  opacity: 1;
}
.mega_menu_inner {
  --mega-pad-t: 3.2rem;
  --mega-pad-b: 3.6rem;
  position: relative;
  max-height: calc(100vh - 16rem - 10px);
  max-height: calc(100dvh - 16rem - 10px);
  margin-bottom: 10px;
  border-radius: 1.2rem;
  background-color: #fff;
  box-shadow: 0 1.6rem 3.2rem rgba(10, 24, 56, 0.12);
  opacity: 0;
  transform: translateY(-1.2rem);
  transition: opacity 0.35s ease, transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  overflow-x: hidden;
  overflow-y: auto;
}
.mega_menu_inner::before,
.mega_menu_inner::after {
  content: '';
  position: sticky;
  left: 0;
  z-index: 5;
  display: block;
  pointer-events: none;
}
.mega_menu_inner::before {
  top: 0;
  height: calc(var(--mega-pad-t) + 1.6rem);
  margin-bottom: calc((var(--mega-pad-t) + 1.6rem) * -1);
  background: linear-gradient(to bottom, #fff 0%, #fff 42%, rgba(255, 255, 255, 0) 100%);
}
.mega_menu_inner::after {
  bottom: 0;
  height: calc(var(--mega-pad-b) + 1.6rem);
  margin-top: calc((var(--mega-pad-b) + 1.6rem) * -1);
  background: linear-gradient(to top, #fff 0%, #fff 42%, rgba(255, 255, 255, 0) 100%);
}
.mega_menu.active .mega_menu_inner {
  opacity: 1;
  transform: translateY(0);
}
.mega_menu_body {
  display: flex;
  gap: 0 4rem;
  padding: var(--mega-pad-t) 3.6rem var(--mega-pad-b);
}
.mega_menu_cats {
  width: 28rem;
  flex-shrink: 0;
  border-right: 1px solid var(--border);
  padding-right: 3.2rem;
}
.mega_menu_cat + .mega_menu_cat {
  border-top: 1px solid #eef1f4;
}
.mega_menu_cat .title {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 0.7em;
  align-items: center;
  gap: 1.2rem;
  padding: 1.5rem 0 1.5rem 1.4rem;
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--title);
  transition: color 0.3s;
}
.mega_menu_cat .title::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 3px;
  height: 1.4em;
  background-color: var(--primary);
  transform: translateY(-50%) scaleY(0);
  transform-origin: center;
  transition: transform 0.3s ease;
}
.mega_menu_cat .title::after {
  content: '';
  display: block;
  padding-bottom: 100%;
  background: url("../img/nav-r.svg") no-repeat center right / contain;
  opacity: 0.35;
  transition: opacity 0.3s, transform 0.3s;
}
.mega_menu_cat:not(:has(.sub)) .title {
  grid-template-columns: 1fr;
}
.mega_menu_cat:not(:has(.sub)) .title::after {
  display: none;
}
.mega_menu_cat.active .title,
.mega_menu_cat:hover .title {
  color: var(--primary);
}
.mega_menu_cat.active .title::before {
  transform: translateY(-50%) scaleY(1);
}
.mega_menu_cat.active .title::after {
  opacity: 1;
  transform: rotate(90deg);
}
.mega_menu_cat .sub {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.3s ease, margin 0.3s ease;
  margin: 0;
  padding: 1rem 0 0 1.4rem;
}
.mega_menu_cat.active .sub {
  max-height: 32rem;
  opacity: 1;
  margin-bottom: 1.2rem;
}
.mega_menu_cat .sub li + li {
  margin-top: 1.2rem;
}
.mega_menu_cat .sub a {
  display: block;
  font-size: 1.5rem;
  font-weight: 500;
  color: #161616;
  opacity: 0.58;
  transition: opacity 0.3s, color 0.3s, transform 0.3s;
}
.mega_menu_cat .sub li:hover a,
.mega_menu_cat .sub li.active a {
  opacity: 1;
  color: var(--primary);
}
.mega_menu_products {
  flex: 1;
  min-width: 0;
  display: grid;
  align-content: start;
}
.mega_menu_panel {
  grid-area: 1 / 1;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s;
  pointer-events: none;
}
.mega_menu_panel.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  z-index: 1;
}
.mega_menu_head {
  margin-bottom: 2rem;
}
.mega_menu_title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--title);
  letter-spacing: 0.01em;
}
.mega_menu_list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.6rem;
}
.mega_menu_list a {
  display: block;
  height: 100%;
  border: 1px solid var(--border);
  border-radius: 1rem;
  overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
  background: linear-gradient(180deg, #f7f8fa 0%, #fff 48%);
}
.mega_menu_list a:hover {
  border-color: rgba(211, 1, 24, 0.35);
  box-shadow: var(--shadow);
  transform: translateY(-0.3rem);
}
.mega_menu_list a:hover img {
  transform: translate(-50%, -50%) scale(1.04);
}
.mega_menu_list .img {
  --h: 72%;
  background: linear-gradient(to bottom, #edf0f2 4%, #fff 42%, #edf0f2 78%);
}
.mega_menu_list .img img {
  left: 50%;
  top: 50%;
  width: 78%;
  height: 78%;
  transform: translate(-50%, -50%);
  transition: transform 0.45s ease;
}
.mega_menu_list .title {
  padding: 1.4rem 1.6rem 1.6rem;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.35;
  color: var(--title);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  min-height: 5.5rem;
}
.mega_menu_empty {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 22rem;
  font-size: 1.6rem;
  color: var(--text);
}
/*** mega menu css ***/

/*** 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;
}
.quote_modal .quote_form form {
  border: none;
}

.quote_modal form {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  border: 2px solid var(--primary);
  background-color: #fff;
  box-shadow: var(--shadow);
  border-radius: 2rem;
  gap: 2.2rem 0;
  padding: 3.7084399% 5.6265985% 5.6265985% 5.2429668%;
}
.quote_modal form h2 {
  width: 100%;
  font-size: 3.2rem;
  font-weight: 600;
  padding-bottom: 2.7rem;
}
.quote_modal form span {
  width: 100%;
}
.quote_modal form .col-2 {
  width: 48.05194805%;
}
.quote_modal form .label {
  display: block;
  font-weight: 600;
  color: #0a0a0a;
  margin-bottom: 1.5rem;
}
.quote_modal form .label i {
  color: var(--primary);
}
.quote_modal form input,
.quote_modal form textarea,
.quote_modal form select {
  display: block;
  width: 100%;
  font-size: 1em;
  color: #0a0a0a;
  border: 1px solid #ddd;
  border-radius: 0.6rem;
  transition: all 0.2s;
  height: 5.3rem;
  padding: 0 2rem;
  letter-spacing: -0.0044em;
}
.quote_modal form input:focus,
.quote_modal form textarea:focus,
.quote_modal form select:focus {
  border-color: var(--primary);
}
.quote_modal form select {
  outline: none;
  background: url("../img/icon-select.svg") no-repeat center right 2rem/1.3rem;
  padding-right: 4rem;
}
.quote_modal form textarea {
  padding: 2rem;
  height: 13.3rem;
}
.quote_modal form .upload_area {
  border-radius: 0.6rem;
  border: 2px dashed #cdd3da;
  background-color: #f4f5f7;
  display: grid;
  grid-template-columns: 4.5rem auto;
  align-items: center;
  justify-content: center;
  padding: 3rem;
  min-height: 12.2rem;
  gap: 0 2.1rem;
  cursor: pointer;
}
.quote_modal form .upload_area::before {
  display: block;
  padding-bottom: calc(100% - 2px);
  border-radius: 1rem;
  border: 1px solid #e2e6ea;
  background: url("../img/icon-upload.svg") no-repeat center / 32.56% #fff;
  content: '';
}
.quote_modal form .upload_area .txt strong {
  display: block;
  font-size: 1.7rem;
  font-weight: 700;
  color: #23272d;
}
.quote_modal form .upload_area .txt p {
  font-size: 1.3rem;
  color: #6b7480;
  margin-top: 0.7rem;
  letter-spacing: -0.0077em;
}
.quote_modal form .upload_area input {
  display: none;
}
.quote_modal form span:has(input[type=checkbox]) {
  margin-top: 0.7rem;
}
.quote_modal form input[type=checkbox] {
  width: 1.8rem;
  height: 1.8rem;
  padding: 0;
  border: 2px solid var(--primary);
  vertical-align: top;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: url(../img/gou-w.svg) no-repeat center / 80%;
  border-radius: 0;
}
.quote_modal form input[type=checkbox]:checked {
  background-color: var(--primary);
}
.quote_modal form input[type=checkbox] ~ span {
  vertical-align: top;
  cursor: pointer;
  display: inline-block;
  font-size: 1.476rem;
  line-height: 2.2rem;
  color: var(--text);
  width: calc(100% - 2.3rem);
  padding-left: 0.9rem;
  margin-top: -0.3rem;
  max-width: 64rem;
  letter-spacing: -0.00677em;
}
.quote_modal form span:has(.btn) {
  margin-top: 2.7rem;
}
.quote_modal form .btn {
  width: 100%;
  line-height: 6.2rem;
}
.quote_modal form .btn input {
  display: none;
}

.quote_form .upload_area {
  position: relative;
  transition: all .3s;
}
.quote_form .upload_area .wpcf7-form-control-wrap {
  position: absolute;
  left: 0;
  bottom: 0;
  text-align: center;
}
.quote_form .upload_area:has(.wpcf7-not-valid-tip) {
  border-color: var(--primary);
}
.quote_form .upload_area.is-dragover {
  border-color: var(--primary);
  background-color: #eef4ff;
}
.quote_form .upload_area.has-file {
  border-style: solid;
  border-color: green;
}
.quote_form .upload_area.has-file .wpcf7-not-valid-tip {
  display: none;
}
.quote_form .upload_area.is-rejected {
  border-color: var(--primary);
  animation: upload_reject 0.45s ease;
}
@keyframes upload_reject {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-4px); }
  75% { transform: translateX(4px); }
}
.quote_form form span:has(.btn) {
  position: relative;
}
/*** global css ***/

@media screen and (min-width: 769px) and (max-width: 1500px) {
  header .flex {
    gap: 0 2%;
  }
  .page_news .head .img {
    margin-right: 0;
  }
}
@media screen and (min-width: 769px) and (max-width: 1220px) {
  .content {
    padding: 0 3rem;
  }
  header nav .menu {
    gap: 3rem;
  }
  header nav .menu > li > a {
    font-size: 15px;
  }
  header nav .sub-menu > li > a {
    font-size: 15px;
  }
  header .btns {
    gap: 2rem;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .content,
  .swiper_content {
    max-width: 896px;
  }
}
@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;
  }
  .mega_menu,
  .mega_menu_overlay {
    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;
  }
}
@media screen and (min-width: 769px) {
  ul::-webkit-scrollbar,
  div::-webkit-scrollbar {
    width: 4px;
    height: 4px;
  }
  ul::-webkit-scrollbar-thumb,
  div::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-color: #8b8b8b;
  }
}
@media screen and (max-width: 768px) {
  html {
    font-size: 10px;
  }
  body {
    font-size: 1.4rem;
  }
  .content {
    padding: 0 20px;
  }
  .swiper_content {
    padding: 10px 20px;
  }
  .only_mobile {
    display: block;
  }
  body.fixed {
    padding-right: 0;
  }
  .gap {
    gap: 20px;
  }
  .btn {
    font-size: 14px;
    line-height: 40px;
    padding: 0 20px;
    gap: 8px;
  }
  .btn_i {
    font-size: 14px;
    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 p,
  .tcon.bn .desc {
    font-size: 14px;
    line-height: 1.5;
  }
  .tcon h1 {
    font-size: 38px;
    line-height: 1.3;
  }
  .tcon h2 {
    font-size: 30px;
    line-height: 1.3;
  }
  .tcon .desc,
  .tcon p {
    font-size: 14px;
    line-height: 1.5;
    margin-top: 10px;
  }
  div.head.flex .tcon {
    padding: 0;
  }
  div.head.flex .btn {
    margin: 0;
  }
  div.head .desc,
  div.head p {
    margin-top: 10px;
  }
  div.head p + p {
    margin-top: 10px;
  }
  div.head .btn {
    font-size: 14px;
    line-height: 40px;
    padding: 0 20px;
    gap: 8px;
    margin-top: 20px;
  }
  div.head .btns {
    gap: 14px;
    margin-top: 20px;
  }
  div.head .btns .btn {
    margin: 0;
  }
  header {
    top: -33px;
  }
  header.opt {
    top: -33px;
  }
  header.opt .logo {
    transform: scale(1);
  }
  header .logo {
    margin: 0;
  }
  header .connect {
    padding: 8px 0;
  }
  header .connect ul {
    gap: 16px;
  }
  header .btns {
    gap: 20px;
    min-height: 64px;
  }
  header .btns .btn_search,
  header .btns .btn_lang {
    width: 22px;
    height: 22px;
  }
  header .btns .btn {
    line-height: 40px;
    gap: 8px;
    padding: 0 20px;
  }
  footer .foot_connect {
    flex-direction: column;
    align-items: center;
    padding-top: 50px;
  }
  footer .foot_connect .logo {
    grid-template-columns: 50px 1fr;
    gap: 14px;
  }
  footer .foot_connect ul {
    gap: 30px 16px;
    padding: 22px 0;
    max-width: unset;
  }
  footer .foot_connect ul li .label {
    font-size: 13px;
    margin-bottom: 6px;
  }
  footer .foot_connect ul li a,
  footer .foot_connect ul li p {
    font-size: 16px;
  }
  footer .main {
    padding: 20px 0 50px;
    flex-direction: column-reverse;
    align-items: unset;
  }
  footer .main strong {
    font-size: 18px;
  }
  footer .main .flex1 {
    display: grid;
    gap: 0;
  }
  footer .foot_nav {
    width: 100%;
  }
  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: 16px;
  }
  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: 0 20px 20px;
  }
  footer .foot_nav > div li + li {
    margin-top: 14px;
  }
  footer .foot_nav > div a {
    font-size: 14px;
    display: block;
  }
  footer .foot_nav > div p {
    font-size: 14px;
    line-height: 1.5;
  }
  footer .foot_intro {
    order: -1;
    padding-bottom: 20px;
  }
  footer .foot_intro strong {
    margin-bottom: 16px;
  }
  footer .foot_intro p {
    line-height: 1.5;
    max-width: unset;
  }
  footer .foot_intro .menu {
    margin-top: 25px;
  }
  footer .foot_intro .menu a {
    font-size: 16px;
    line-height: 40px;
    padding: 0 20px;
  }
  footer .foot_follow strong {
    margin-bottom: 20px;
  }
  footer .foot_follow .social {
    justify-content: space-around;
  }
  footer .bottom {
    font-size: 13px;
    padding: 20px 0;
  }
  footer .bottom a {
    font-size: 14px;
  }
  footer .bottom ul li::before {
    height: 10px;
    margin: 0 10px;
  }
  footer #backtop {
    width: 40px;
    height: 40px;
    right: 20px;
    bottom: 20px;
  }
  .page_news {
    padding: 50px 0;
  }
  .page_news .head .img {
    width: 80px;
    margin-right: 0;
  }
  .page_news .head h2 {
    max-width: 400px;
  }
  .page_news .page_news_swiper {
    overflow: unset;
    margin: 30px 0 0;
  }
  .page_news .swiper_con {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 30px;
  }
  .page_news .swiper_con .swiper_btns.middle {
    padding: 0;
    margin: 0;
    width: auto;
  }
  .logo {
    grid-template-columns: 40px 1fr;
    gap: 10px;
  }
  .logo .txt strong {
    font-size: 16px;
  }
  .logo .txt p {
    font-size: 12px;
  }
  .social {
    gap: 10px;
  }
  .social a {
    width: 40px;
    height: 40px;
  }
  .breadcrumbs {
    line-height: 20px;
    min-height: 20px;
  }
  .breadcrumbs span span::before {
    margin: 0 10px;
  }
  .nav_wrap .nav_list {
    width: calc(100% + 40px);
    padding: 0 20px;
    margin: 0 -20px;
    flex-wrap: nowrap;
    gap: 12px;
    overflow-x: auto;
  }
  .nav_wrap .nav_list::-webkit-scrollbar {
    display: none;
  }
  .nav_wrap .nav_list li {
    flex-shrink: 0;
  }
  .nav_wrap .nav_list .nav_item {
    font-size: 14px;
    padding: 0 20px;
    min-width: 120px;
    white-space: nowrap;
    line-height: 36px;
  }
  .news_list .info {
    padding: 20px;
  }
  .news_list .info .cat {
    font-size: 13px;
  }
  .news_list .info .title {
    font-size: 20px;
    margin-top: 5px;
    height: 48px;
  }
  .news_list .info .desc {
    font-size: 14px;
    line-height: 1.5;
    margin-top: 10px;
  }
  .news_list .info .btn_i {
    margin-top: 20px;
  }

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

  .quote_modal .modal_content {
    padding: 30px 20px;
  }
  .quote_modal form {
    gap: 16px 0;
    border-radius: 10px;
    padding: 30px 20px;
  }
  .quote_modal form h2 {
    font-size: 30px;
    padding-bottom: 10px;
  }
  .quote_modal form .label {
    margin-bottom: 10px;
  }
  .quote_modal form input,
  .quote_modal form textarea,
  .quote_modal form select {
    height: 46px;
    padding: 0 20px;
  }
  .quote_modal form select {
    background-size: 12px;
    padding-right: 40px;
  }
  .quote_modal form textarea {
    height: 120px;
    padding: 14px 20px;
  }
  .quote_modal form span:has(input[type=checkbox]) {
    margin-top: 0;
  }
  .quote_modal form input[type=checkbox] {
    width: 17px;
    height: 17px;
  }
  .quote_modal form input[type=checkbox] ~ span {
    width: calc(100% - 22px);
    padding-left: 10px;
    font-size: 14px;
    line-height: 1.5;
    margin-top: -2px;
  }
  .quote_modal form span:has(.btn) {
    margin-top: 10px;
  }
  .quote_modal form .btn {
    line-height: 44px;
  }
  .quote_modal form .upload_area {
    min-height: 100px;
    padding: 20px;
    grid-template-columns: 40px auto;
    gap: 14px;
  }
  .quote_modal form .upload_area::before {
    border-radius: 6px;
  }
  .quote_modal form .upload_area .txt strong {
    font-size: 15px;
  }
  .quote_modal form .upload_area .txt p {
    font-size: 12px;
    margin-top: 5px;
  }
  /*** global css ***/
}
@media screen and (max-width: 576px) {
  header {
    top: 0;
  }
  header.opt {
    top: 0;
  }
  header .connect {
    display: none;
  }
  header .btns .btn {
    display: none;
  }
  footer .foot_connect ul {
    flex-direction: column;
  }
  footer .bottom {
    flex-direction: column-reverse;
    text-align: center;
  }
  .quote_modal form .col-2 {
    width: 100%;
  }
}