* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --primary: #e3241b;
  --secondary: #000;
  --title: #111214;
  --text: #4b4d52;
}
html {
  scroll-behavior: smooth;
  font-size: clamp(7.5px, 0.520834vw, 10px);
}
.content {
  max-width: 138rem;
  margin: 0 auto;
  position: relative;
}
.content .content {
  padding: 0;
}
.swiper_box {
  position: relative;
}
.swiper_content {
  max-width: 141rem;
  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;
  }
}
.Saira,
h1,
h2,
h3,
.head_h1,
.head_h2 {
  font-family: 'Saira', sans-serif;
}
.Inter {
  font-family: 'Inter', sans-serif;
}
.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,
.img.img_cv picture {
  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,
.img.img_ab picture {
  position: absolute;
  left: 0;
  top: 0;
}
.img.img_aba {
  position: relative;
}
.img.img_aba::after {
  content: '';
  display: block;
  padding-bottom: var(--h);
}
.img.img_aba img,
.img.img_aba video,
.img.img_aba iframe,
.img.img_aba picture {
  position: absolute;
  left: 0;
  top: 0;
}
.img.img_hv:hover img {
  transform: scale(1.03);
}
.img img,
.img video,
.img iframe,
.img picture {
  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,
.img_bg > picture {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -2;
}
.img_bg > picture img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.icon.icon_ab {
  position: relative;
  padding-bottom: 100%;
}
.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;
  display: flex;
  flex-direction: column;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: var(--radius);
  z-index: 10000;
  padding: 8px;
  font-size: var(--font-size, 14px);
  opacity: 0;
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.custom-popup.show {
  opacity: 1;
  transform: scaleY(1);
}
.custom-popup.up {
  transform-origin: bottom;
}
.custom-popup.up .popup-input {
  order: 3;
  margin-bottom: 0;
  margin-top: 8px;
}
.custom-popup.up .popup-options {
  order: 1;
}
.custom-popup.up .popup-empty {
  order: 2;
}
.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: inherit;
  border: 1px solid #ccc;
  background: #fff;
  color: var(--title);
  margin-bottom: 8px;
  border-radius: calc(var(--radius) - 2px);
  flex-shrink: 0;
}
.custom-popup input.popup-input::placeholder {
  color: #666;
}
.custom-popup input.popup-input:focus {
  border-color: var(--primary);
}
.custom-popup .popup-options {
  flex: 0 1 auto;
  min-height: 0;
  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 {
  font-family: 'Saira', sans-serif;
  gap: 1.4rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: top;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s;
  color: #fff;
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 5.4rem;
  border-radius: 10rem;
  padding: 0 3rem;
  border: 1px solid var(--primary);
  background-color: var(--primary);
}
.btn::after {
  content: '';
  display: block;
  width: 0.875em;
  height: 0.625em;
  transition: all 0.3s;
  filter: contrast(0) brightness(2);
  background: url(../img/arrow-l-r.svg) no-repeat center / contain;
}
.btn.l {
  color: var(--title);
  border-color: #3a3b3d;
  background-color: transparent;
}
.btn.l::after {
  filter: contrast(0) brightness(0);
}
.btn.l:hover {
  color: #fff;
  border-color: var(--primary);
  background-color: var(--primary);
}
.btn.l:hover::after {
  filter: contrast(0) brightness(2);
}
.btn.w {
  color: #fff;
}
.btn.w::after {
  filter: contrast(0) brightness(2);
}
.btn.a::after {
  display: none;
}
.btn:hover {
  color: var(--primary);
  background-color: transparent;
}
.btn:hover::after {
  filter: none;
  transform: translateX(5px);
}
.btn_line {
  font-family: 'Saira', sans-serif;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  vertical-align: top;
  cursor: pointer;
  transition: all 0.3s;
  border: 1px solid #dcdee2;
  background-color: transparent;
  color: #0a0a0a;
  font-weight: 600;
  font-size: 1.6rem;
  line-height: 5.5rem;
  border-radius: 10rem;
  padding: 0 3.2rem;
  gap: 1.6rem;
}
.btn_line::after {
  content: '';
  display: block;
  flex-shrink: 0;
  width: 0.875em;
  height: 0.625em;
  transition: all 0.3s;
  filter: contrast(0) brightness(0);
  background: url(../img/arrow-l-r.svg) no-repeat center / contain;
}
.btn_line:hover {
  background-color: var(--primary);
  border-color: var(--primary);
  color: #fff;
}
.btn_line:hover::after {
  transform: translateX(20%);
  filter: contrast(0) brightness(2);
}
.btn_a {
  gap: 1.4rem;
  display: inline-flex;
  align-items: center;
  vertical-align: top;
  font-weight: 600;
  font-size: 1.8rem;
  transition: all 0.3s;
}
.btn_a::after {
  content: '';
  display: block;
  width: 1.4rem;
  height: 1.2rem;
  transition: all 0.3s;
  background: url(../img/arrow-l-r.svg) no-repeat center / contain;
}
.btn_a:hover {
  color: var(--primary);
}
.btn_a:hover::after {
  transform: translateX(5px);
}
.swiper_btns {
  gap: 3.6rem;
  display: flex;
}
.swiper_btns div {
  width: 5.9rem;
  cursor: pointer;
  transition: all 0.3s;
  border-radius: 50%;
  border: 1px solid var(--primary);
  background-color: var(--primary);
}
.swiper_btns div::after {
  content: '';
  display: block;
  width: 100%;
  padding-bottom: 100%;
  transition: all 0.3s;
  background: url(../img/arrow.svg) no-repeat center / 31.6%;
  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 {
  cursor: default;
  pointer-events: none;
  background-color: transparent;
  border-color: rgba(10, 10, 10, 0.5);
}
.swiper_btns .swiper-button-disabled::after {
  filter: none;
}
.swiper_btns .swiper-button-disabled:hover {
  background-color: transparent;
}
.swiper_btns:has(.swiper-button-lock) {
  opacity: 0;
}
.swiper_btns.middle {
  width: 98%;
  max-width: 167rem;
  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 > em {
  font-family: 'Saira', sans-serif;
  color: #63687a;
  font-weight: 500;
  font-size: 1.4rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  gap: 1.2rem;
  display: inline-flex;
  align-items: center;
  vertical-align: top;
  margin-bottom: 1.5rem;
}
.tcon > em::before {
  content: '';
  display: block;
  width: 3.6rem;
  height: 0.6rem;
  background: url(../img/head.svg) no-repeat center / contain;
}
.tcon h1,
.tcon .head_h1 {
  font-weight: 700;
  font-size: 6.4rem;
  line-height: 1.0625;
}
.tcon h2,
.tcon .head_h2 {
  font-weight: 600;
  line-height: 1.2;
  font-size: 4.8rem;
}
.tcon p,
.tcon .desc {
  color: var(--text);
  line-height: 1.625;
  letter-spacing: -0.0044em;
}
.tcon.white {
  color: #fff;
}
.tcon.white p,
.tcon.white .desc {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 300;
  letter-spacing: 0.003125em;
}
.tcon.white.bn > em {
  font-weight: normal;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.9rem;
}
.tcon.white.bn p,
.tcon.white.bn .desc {
  letter-spacing: 0.01em;
}
.tcon.bn p,
.tcon.bn .desc {
  font-size: 1.8rem;
  line-height: 1.555556;
}
header {
  position: sticky;
  top: 0;
  z-index: 996;
  transition: all 0.4s;
  background-color: #fff;
}
header.shadow {
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.08);
}
header.hide {
  top: -94px;
}
header .lt,
header .rt {
  flex: 1;
  gap: 2.2rem;
  display: flex;
  align-items: center;
  min-height: 94px;
}
header .rt {
  justify-content: flex-end;
}
header .logo {
  display: block;
  position: relative;
}
header .logo img {
  display: block;
  width: auto;
  height: 5.5rem;
}
header .logo p {
  width: 1px;
  height: 1px;
  overflow: hidden;
  position: absolute;
  clip: rect(1px, 1px, 1px, 1px);
}
header nav .close_box {
  display: none;
}
header nav .menu {
  gap: 3.8rem;
  display: flex;
}
header nav .menu > li {
  position: relative;
  z-index: 2;
}
header nav .menu > li > a {
  display: block;
  color: #0e191d;
  font-size: 16px;
  font-weight: 500;
  line-height: 50px;
  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: max-content;
  width: calc(100% + 48px);
  border-radius: 1rem;
  background-color: #fff;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.08);
}
header nav .sub-menu > li {
  position: relative;
}
header nav .sub-menu > li + li {
  margin-top: 4px;
}
header nav .sub-menu > li > a {
  display: block;
  font-size: 15px;
  font-weight: 500;
  white-space: nowrap;
  padding: 12px 18px;
  transition: all 0.2s;
  border-radius: 0.8rem;
}
header nav .sub-menu > li > a:hover {
  background-color: #fdebeb;
}
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: 10px;
}
header .btn_search {
  width: 18px;
  height: 18px;
  overflow: hidden;
  text-indent: -999px;
  background: url(../img/icon-search.svg) no-repeat center / contain;
}
header .btn_lang {
  font-size: 15px;
  line-height: 50px;
  font-weight: 500;
  padding-left: 25px;
  text-transform: uppercase;
  background: url(../img/icon-lang.svg) no-repeat left center / 18px;
}
header .btn_menu {
  display: none;
}
header .btn {
  font-size: 16px;
  line-height: 48px;
  padding: 0 3.4rem;
  margin-left: 1.4rem;
}
footer {
  padding: 7rem 0 2.1rem;
}
footer .top {
  padding-bottom: 1.9rem;
  border-bottom: 1px solid #e8e8e8;
}
footer .logo {
  display: block;
  position: relative;
  width: 21.2rem;
  padding-bottom: 0.6rem;
}
footer .logo img {
  display: block;
  width: 100%;
  height: auto;
}
footer .logo p {
  width: 1px;
  height: 1px;
  overflow: hidden;
  position: absolute;
  clip: rect(1px, 1px, 1px, 1px);
}
footer .mid {
  margin-top: 5.4rem;
}
footer .foot_intro {
  width: 33.7rem;
  margin-right: 6%;
  margin-top: 1px;
}
footer .foot_intro p {
  font-weight: 500;
  font-size: 2rem;
  line-height: 1.5;
}
footer .foot_intro .btn_line {
  border-color: #63687a;
  margin-top: 2.3rem;
}
footer .foot_intro .btn_line:hover {
  border-color: var(--primary);
}
footer .foot_nav {
  min-width: 14.42029%;
}
footer .foot_nav strong {
  display: block;
  font-weight: 600;
  font-size: 2rem;
  text-transform: uppercase;
  margin-bottom: 1.9rem;
}
footer .foot_nav li + li {
  margin-top: 1.3rem;
}
footer .foot_nav a {
  color: #63687a;
  font-size: 1.8rem;
  vertical-align: top;
  transition: all 0.3s;
}
footer .foot_nav a:hover {
  color: var(--primary);
}
footer .bot {
  font-size: 1.437rem;
  margin-top: 12.3rem;
}
footer .bot ul {
  gap: 1.5rem;
  display: flex;
  align-items: center;
}
footer .bot ul li {
  gap: 1.5rem;
  display: flex;
  align-items: center;
}
footer .bot ul li::after {
  content: '';
  display: block;
  width: 1px;
  height: 1.3rem;
  background-color: #dddddd;
}
footer .bot ul li:last-child::after {
  display: none;
}
footer .bot ul a {
  display: block;
  color: #656565;
  transition: all 0.3s;
}
footer .bot ul a:hover {
  color: var(--primary);
}
footer #backtop {
  cursor: pointer;
  width: 4.8rem;
  height: 4.8rem;
  border-radius: 50%;
  background: url(../img/arrow-l-r-w.svg) no-repeat center / 30% var(--primary);
  position: fixed;
  right: 2.6rem;
  bottom: 1.2rem;
  z-index: 99;
  transition: all 0.4s;
  transform: translateX(calc(100% + 2.4rem)) rotate(-90deg);
}
footer #backtop.show {
  transform: translate(0) rotate(-90deg);
}
footer #backtop:hover {
  background-color: var(--title);
  transform: translate(0) rotate(-90deg) scale(1.1);
}
.mage-menu-overlay {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 990;
  background-color: rgba(0, 0, 0, 0.15);
  transition: all 0.3s;
  opacity: 0;
  pointer-events: none;
}
.mage-menu-overlay.active {
  opacity: 1;
  pointer-events: all;
}
.mega_menu {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  z-index: 999;
  border-top: 1px solid #eee;
  background-color: #fff;
  padding: 5rem 0;
  display: none;
}
.mega_menu .nav {
  width: 22%;
  border-right: 1px solid #eee;
  max-height: calc(100vh - 24rem);
  overflow-y: auto;
  padding-right: 2rem;
}
.mega_menu .nav li + li {
  margin-top: 1rem;
}
.mega_menu .nav .active a,
.mega_menu .nav a:hover {
  background-color: rgba(0, 0, 0, 0.05);
}
.mega_menu .nav a {
  display: grid;
  grid-template-columns: 1fr 0.7em;
  align-items: center;
  transition: all 0.3s;
  font-size: 16px;
  font-weight: 500;
  border-radius: 4px;
  padding: 12px 16px;
  gap: 0.7em;
}
.mega_menu .nav a::after {
  display: block;
  padding-bottom: 100%;
  content: '';
  background: url("../img/nav-r.svg") no-repeat center / contain;
}
.mega_menu .list {
  flex: 1;
  display: none;
  flex-direction: column;
  max-height: calc(100vh - 24rem);
  overflow: hidden;
}
.mega_menu .list.active {
  display: flex;
}
.mega_menu .list ul {
  flex: 1;
  overflow-y: auto;
  padding-right: 1rem;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(20rem, 100%), 1fr));
  gap: 4rem 2rem;
}
.mega_menu .list ul a:hover .img.img_ct img {
  transform: translate(-50%, -50%) scale(1.05);
}
.mega_menu .list ul .img.img_ct {
  padding-bottom: 90.2778%;
  background-image: radial-gradient(circle, #fdfcfd, #e1e3e4);
  border-radius: 8px;
  overflow: hidden;
}
.mega_menu .list ul .img.img_ct img {
  width: 69.44445%;
  height: 76.9231%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.mega_menu .list ul .title {
  font-size: 16px;
  text-align: center;
  font-weight: 500;
  margin-top: 1.5rem;
}
.mega_menu .list p.center:has(.btn_line) {
  margin-top: 5rem;
}
.footer_contact {
  padding: 3rem 0;
  background-color: #f5f5f7;
}
.footer_contact .inner {
  max-width: 256rem;
  margin: 0 auto;
  position: relative;
}
.footer_contact .head {
  flex: 1;
  max-width: 55.8rem;
  padding: 2rem 0;
}
.footer_contact .head p {
  margin-top: 2rem;
}
.footer_contact .head .btn {
  margin-top: 2.3rem;
}
.footer_contact .img {
  width: 39.710145%;
}
.footer_contact .block1 {
  width: min(12rem, 6.25%);
  position: absolute;
  top: -5.6rem;
  right: 0;
}
.footer_contact .block2 {
  width: 7.463768%;
  position: absolute;
  left: -19.565217%;
  bottom: -3rem;
}
.section_nums {
  padding: 3.3rem 0 3.6rem;
  border-top: 1px solid #e1e1df;
  border-bottom: 1px solid #e1e1df;
}
.section_nums.bg {
  padding: 6.4rem 0 6.8rem;
  border-color: #f5f5f7;
  background-color: #f5f5f7;
}
.section_nums ul {
  display: flex;
}
.section_nums li {
  flex: 1;
  padding: 0 3rem;
  border-right: 1px solid #e1e1df;
}
.section_nums li:first-child {
  padding-left: 0;
}
.section_nums li:last-child {
  padding-right: 0;
  border-right: none;
}
.section_nums strong {
  font-weight: 700;
  font-size: 4.8rem;
}
.section_nums em {
  display: inline-block;
  color: var(--primary);
  font-weight: 700;
  font-size: 2.8rem;
  vertical-align: top;
  margin-left: 1rem;
  transform: translateY(0.8rem);
}
.section_nums p {
  color: var(--text);
  font-size: 1.4rem;
  text-transform: uppercase;
  margin-top: 0.7rem;
}
.page_advantage {
  padding: 13.3rem 0 13.9rem;
  background-color: #f5f5f7;
}
.page_advantage .head .lt {
  width: 53.985507%;
}
.page_advantage .head .rt {
  flex: 1;
  max-width: 56rem;
  margin-top: 3.188406%;
}
.page_advantage .main {
  margin-top: 4.5rem;
}
.page_advantage .main .lt {
  width: 53.913043%;
}
.page_advantage .main .rt {
  flex: 1;
  max-width: 58.8rem;
}
.page_advantage .page_advantage_swiper {
  overflow: hidden;
  border-radius: 1.4rem;
}
.page_advantage .page_advantage_swiper .img {
  padding-bottom: 76.747312%;
}
.page_advantage .items {
  border-radius: 1.4rem;
  border: 1px solid #e1e1df;
  background-color: #fff;
  padding: 1.5rem 0 2.7rem;
}
.page_advantage .items ul {
  counter-reset: item;
}
.page_advantage .items li {
  counter-increment: item;
  transition: all 0.3s;
  padding: 0 7.337884%;
  border-top: 1px solid transparent;
  border-bottom: 1px solid transparent;
}
.page_advantage .items li:first-child {
  border-top: none;
}
.page_advantage .items li:last-child {
  border-bottom: none;
}
.page_advantage .items .active {
  margin-bottom: 2rem;
  border-color: #e1e1df;
}
.page_advantage .items .active .title {
  border-color: #e1e1df;
}
.page_advantage .items .active .title h3 {
  color: var(--primary);
}
.page_advantage .items .title {
  cursor: pointer;
  transition: all 0.3s;
  border-bottom: 1px dashed transparent;
  padding: 0.9rem 0 0.4rem;
}
.page_advantage .items .title h3 {
  font-weight: 500;
  font-size: 1.8rem;
  transition: all 0.3s;
  gap: 2rem;
  display: grid;
  align-items: center;
  grid-template-columns: 1fr auto;
}
.page_advantage .items .title h3::after {
  content: counter(item, decimal-leading-zero);
  color: #b3b3b0;
  font-size: 1.6rem;
  font-weight: normal;
}
.page_advantage .items .detail {
  display: none;
  padding: 1.2rem 0 3rem;
}
.page_advantage .items .detail strong {
  color: var(--title);
  font-weight: 700;
  font-size: 5.2rem;
}
.page_advantage .items .detail em {
  color: var(--primary);
  font-weight: 700;
  font-size: 2.8rem;
}
.page_advantage .items .detail p {
  color: var(--text);
  line-height: 1.625;
}
.page_products {
  padding: 16rem 0 13rem;
}
.page_products .tcon {
  padding-bottom: 0.5rem;
}
.page_products .page_products_swiper {
  padding-bottom: 2rem;
  margin-top: 2.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.9rem;
}
nav.navigation .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.3s;
  font-size: 1.613rem;
  font-weight: 600;
  color: #15171d;
  border: 1px solid #e8eaee;
  border-radius: 0.372em;
  width: 3.04em;
  height: 3.04em;
  min-width: max-content;
  padding: 0 0.2em;
}
nav.navigation .page-numbers.current,
nav.navigation .page-numbers:hover {
  background-color: var(--primary);
  border-color: var(--primary);
  color: #fff;
}
nav.navigation .prev,
nav.navigation .next {
  position: relative;
  white-space: nowrap;
  overflow: hidden;
  min-width: unset;
  text-indent: -999px;
}
nav.navigation .prev::after,
nav.navigation .next::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  content: '';
  background: url("../img/arrow-r.svg") no-repeat center / 23.45%;
  filter: contrast(0) brightness(0);
}
nav.navigation .prev:hover::after,
nav.navigation .next:hover::after {
  filter: contrast(0) brightness(2);
}
nav.navigation .prev::after {
  transform: rotate(180deg);
}
nav.navigation .omit {
  margin: 0 0.8rem;
}
nav.navigation span.page-numbers {
  pointer-events: none;
}
.social {
  gap: 1rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.social a {
  display: block;
  width: 5.2rem;
  height: 5.2rem;
  border-radius: 50%;
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
  text-indent: -999px;
  background-color: #f5f5f7;
}
.social a::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  transition: all 0.3s;
  background: no-repeat center / contain;
}
.social a:hover {
  background-color: var(--primary);
}
.social a:hover::after {
  filter: contrast(0) brightness(2);
}
.social .linkedin a::after {
  background-image: url(../img/social-linkedin.svg);
}
.social .whatsapp a::after {
  background-image: url(../img/social-whatsapp.svg);
}
.social .facebook a::after {
  background-image: url(../img/social-facebook.svg);
}
.social .youtube a::after {
  background-image: url(../img/social-youtube.svg);
}
.social .instagram a::after {
  background-image: url(../img/social-instagram.svg);
}
.product_list .active a {
  box-shadow: 0 2rem 2rem rgba(208, 211, 221, 0.45);
}
.product_list a {
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.3s;
  border-radius: 1.4rem;
  border: 1px solid #dcdee2;
  padding: 1.8rem 1.85rem 2.1rem;
}
.product_list a:hover img {
  transform: scale(1.03);
}
.product_list a:hover .img_ct img {
  transform: translate(-50%, -50%) scale(1.03);
}
.product_list .img {
  z-index: 2;
  overflow: hidden;
  border-radius: 1rem;
  padding-bottom: 90.277778%;
  background-image: radial-gradient(circle, #fdfcfd, #e1e3e4);
}
.product_list .img.img_ct img {
  width: 69.44445%;
  height: 76.9231%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.product_list .info {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 2.9rem 0 0 1rem;
}
.product_list .info .title {
  font-weight: 600;
  font-size: 2.2rem;
  line-height: 1.2;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.product_list .info .desc {
  color: var(--text);
  font-size: 1.5rem;
  line-height: 2.2rem;
  margin-top: 1.4rem;
  margin-bottom: auto;
  -webkit-line-clamp: 3;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.product_list .info .attrs {
  margin: 3.9rem 0 -1.5rem;
  padding-top: 1.4rem;
  border-top: 1px solid #ebebeb;
}
.product_list .info .attrs ul {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 15.107914%;
}
.product_list .info .attrs .label {
  color: #9ca3af;
  font-size: 1.3rem;
}
.product_list .info .attrs .value {
  font-weight: 700;
  margin-top: 0.6rem;
}
.product_list .info .btn_a {
  margin-top: 3.1rem;
  max-width: max-content;
}
.blog_list .active a {
  box-shadow: 0 2rem 2rem rgba(208, 211, 221, 0.45);
}
.blog_list a {
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.3s;
  border-radius: 2.2rem;
  border: 1px solid #d4dae3;
  position: relative;
}
.blog_list a:hover img {
  transform: scale(1.03);
}
.blog_list .img {
  margin: -0.5px;
  padding-bottom: 62.55605381%;
  border-radius: 2.2rem 2.2rem 0 0;
}
.blog_list .img .btn_play {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 5.6rem;
  height: 5.6rem;
  border-radius: 50%;
  background-color: #fff;
  position: absolute;
  right: 8.216433%;
  bottom: 8.992806%;
  z-index: 2;
  transition: all 0.3s;
}
.blog_list .img .btn_play::after {
  content: '';
  display: block;
  width: 25%;
  height: 25%;
  transition: all 0.3s;
  background: url(../img/icon-play.svg) no-repeat center / contain;
}
.blog_list .img .btn_play:hover {
  transform: scale(1.1);
  background-color: var(--primary);
}
.blog_list .img .btn_play:hover::after {
  filter: contrast(0) brightness(2);
}
.blog_list .info {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 2.7rem 3.6rem 3.1rem;
}
.blog_list .info .cat {
  position: absolute;
  left: 2.1rem;
  top: 2rem;
  z-index: 2;
  color: #fff;
  font-weight: 600;
  font-size: 1.5rem;
  line-height: 1.2;
  text-transform: uppercase;
  background-color: var(--primary);
  border-radius: 0.8rem;
  padding: 0.6333em 1em;
}
.blog_list .info .date {
  color: #63687a;
  font-size: 1.5rem;
  text-transform: uppercase;
}
.blog_list .info .title {
  font-weight: 600;
  font-size: 2.4rem;
  line-height: 1.1583333;
  margin-top: 1rem;
  -webkit-line-clamp: 3;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.blog_list .info .desc {
  color: #63687a;
  font-size: 1.7rem;
  line-height: 2.6rem;
  margin-top: 1.1rem;
  margin-bottom: auto;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  letter-spacing: -0.0024em;
}
.blog_list .info .btn_a {
  font-size: 1.6rem;
  margin-top: 5.2rem;
  max-width: max-content;
  gap: 1rem;
}
.contact_main .right .form .btn{
  position: relative;
}
body .btn .wpcf7-spinner{
  width: 24px !important;
  position: absolute;
  left: 2rem;
  top: 2rem;
}
body .wpcf7 form .wpcf7-response-output{
  margin: 0;
  padding: 0;
  border: none;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  margin-top: 2rem;
}

.default_head{
  padding: 9rem 0;
  background-color: #eee;
}
.default_head h1{
  font-size: 4.5rem;
}
.default_body{
  padding: 5rem 0;
  font-size: 1.8rem;
  line-height: 3.2rem;
  color: #171717;
}

.default_body h2 {
  font-size: 2.6rem;
  line-height: 3.4rem;
  font-weight: 700;
  margin: 3.5rem 0 3.3rem;
}
.default_body h3 {
  font-size: 2rem;
  line-height: 3.4rem;
  font-weight: 700;
  margin: 1.6rem 0 1rem;
}
.default_body p {
  margin: 1rem 0;
}
.default_body img {
  border-radius: 8px;
  width: 100%;
  display: block;
  object-fit: cover;
  margin: 4.7rem 0;
}
.default_body ul {
  margin: 1rem 0;
}
.default_body ul li {
  position: relative;
  padding-left: 2.4rem;
  margin-bottom: 1rem;
}
.default_body ul li:last-child {
  margin-bottom: 0;
}
.default_body ul li::before {
  width: 1.4rem;
  height: 1.4rem;
  position: absolute;
  left: 0;
  top: 0.8rem;
  border-radius: 50%;
  
  content: '';
}


@media screen and (min-width: 769px) and (max-width: 1600px) {
  header .lt,
  header .rt {
    flex: unset;
  }
}
@media screen and (min-width: 769px) and (max-width: 1220px) {
  .content {
    padding: 0 3rem;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .content,
  .swiper_content {
    max-width: 896px;
  }
  .product_list .info .attrs {
    margin-top: 15px;
  }
  .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;
    display: block;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    opacity: 0;
    transition: all 0.3s;
    background-color: rgba(0, 0, 0, 0.75);
  }
  header nav .close_box {
    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: 44px;
    height: 44px;
    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: 100%;
  }
  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 .lt,
  header .rt {
    gap: 10px;
  }
  header .btn_search {
    width: 44px;
    height: 44px;
    background-size: 18px;
  }
  header .btn_menu {
    display: block;
    width: 44px;
    height: 44px;
    overflow: hidden;
    text-indent: -999px;
    background: url(../img/nav-btn.svg) no-repeat center / 23px;
  }
  header .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;
  }
}
@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_line {
    font-size: 14px;
    line-height: 42px;
    padding: 0 20px;
    gap: 10px;
  }
  .btn_a {
    font-size: 14px;
    gap: 8px;
  }
  .btn_a::after {
    width: 12px;
    height: 12px;
  }
  .swiper_btns {
    gap: 20px;
  }
  .swiper_btns div {
    width: 44px;
  }
  .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 > em {
    gap: 10px;
    font-size: 14px;
    margin-bottom: 8px;
  }
  .tcon > em::before {
    width: 30px;
    height: 4px;
  }
  .tcon h1,
  .tcon .head_h1 {
    font-size: 38px;
  }
  .tcon h2,
  .tcon .head_h2 {
    font-size: 30px;
  }
  .tcon p,
  .tcon .desc {
    font-size: 14px;
    line-height: 1.5;
    margin-top: 10px;
  }
  .tcon.bn p,
  .tcon.bn .desc {
    font-size: 14px;
    line-height: 1.5;
  }
  .tcon.bn.white > em {
    margin-bottom: 8px;
  }
  div.head.flex .tcon {
    padding: 0;
  }
  div.head.flex .btn,
  div.head.flex .btn_line {
    margin: 0;
  }
  div.head .desc,
  div.head p {
    margin-top: 12px;
  }
  div.head p + p {
    margin-top: 12px;
  }
  div.head .btn,
  div.head .btn_line {
    font-size: 14px;
    line-height: 42px;
    padding: 0 20px;
    gap: 10px;
    margin-top: 20px;
  }
  div.head .btns {
    gap: 14px;
    margin-top: 20px;
  }
  div.head .btns .btn,
  div.head .btns .btn_line {
    margin: 0;
  }
  header .lt,
  header .rt {
    min-height: 64px;
  }
  header .logo img {
    height: 40px;
  }
  header .btn {
    font-size: 14px;
    line-height: 42px;
    padding: 0 20px;
  }
  footer {
    padding: 50px 0 20px;
  }
  footer .top {
    padding-bottom: 20px;
  }
  footer .logo {
    width: 150px;
    padding: 0;
  }
  footer .mid {
    display: block;
    margin-top: 20px;
  }
  footer .foot_intro {
    width: 100%;
    margin: 0 0 20px;
  }
  footer .foot_intro p {
    font-size: 16px;
  }
  footer .foot_intro .btn_line {
    margin-top: 20px;
  }
  footer .foot_nav strong {
    font-size: 16px;
    line-height: 46px;
    border: 1px solid rgba(22, 22, 22, 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/icon-select.svg) no-repeat center / contain;
    position: absolute;
    right: 22px;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s;
  }
  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;
    font-weight: normal;
  }
  footer .foot_nav > div p {
    font-size: 14px;
    line-height: 1.5;
  }
  footer .bot {
    font-size: 13px;
    margin-top: 50px;
  }
  footer .bot ul {
    gap: 14px;
  }
  footer .bot ul li {
    gap: 14px;
  }
  footer .bot ul a {
    font-size: 14px;
  }
  .section_nums {
    padding: 20px 0;
  }
  .section_nums.bg {
    padding: 30px 0;
  }
  .section_nums li {
    padding: 0 15px;
  }
  .section_nums strong {
    font-size: 30px;
    line-height: 1;
  }
  .section_nums em {
    font-size: 20px;
    margin-left: 0;
    line-height: 1;
    transform: translateY(2px);
  }
  .section_nums p {
    font-size: 12px;
    margin-top: 12px;
  }
  .page_advantage {
    padding: 50px 0;
  }
  .page_advantage .main {
    margin-top: 30px;
  }
  .page_advantage .page_advantage_swiper {
    border-radius: 10px;
  }
  .page_advantage .items {
    padding: 15px 0;
    border-radius: 10px;
  }
  .page_advantage .items li {
    padding: 0 15px;
  }
  .page_advantage .items .title {
    padding: 6px 0;
  }
  .page_advantage .items .detail {
    padding: 6px 0 20px;
  }
  .page_advantage .items .detail strong {
    font-size: 30px;
  }
  .page_advantage .items .detail em {
    font-size: 20px;
  }
  .footer_contact {
    padding: 0;
  }
  .footer_contact .flex {
    flex-wrap: wrap;
    padding: 30px 0;
  }
  .footer_contact .head {
    padding: 0;
  }
  .footer_contact .head p {
    margin-top: 12px;
  }
  .footer_contact .head .btn {
    margin-top: 20px;
  }
  .footer_contact .block1 {
    top: -10px;
    width: 48px;
  }
  .footer_contact .block2 {
    width: 48px;
    left: -20px;
    bottom: 0;
    transform: translateY(82%);
  }
  .page_products {
    padding: 50px 0;
    overflow: hidden;
  }
  .page_products .swiper_content {
    overflow: unset;
    padding: 0 20px;
  }
  .page_products .page_products_swiper {
    margin-top: 30px;
    padding: 0;
  }
  nav.navigation .nav-links {
    gap: 8px;
  }
  nav.navigation .page-numbers {
    font-size: 14px;
  }
  .social {
    gap: 8px;
  }
  .social a {
    width: 44px;
    height: 44px;
  }
  .product_list a {
    padding: 6px;
    border-radius: 8px;
  }
  .product_list .img {
    border-radius: 6px;
  }
  .product_list .info {
    padding: 12px 6px;
  }
  .product_list .info .title {
    font-size: 15px;
  }
  .product_list .info .desc {
    font-size: 13px;
    line-height: 1.5;
    margin-top: 6px;
    -webkit-line-clamp: 2;
  }
  .product_list .info .attrs {
    margin-top: 12px;
    padding-top: 6px;
    margin-bottom: 0;
  }
  .product_list .info .attrs ul {
    gap: 12px;
  }
  .product_list .info .attrs .label {
    font-size: 12px;
  }
  .product_list .info .attrs .value {
    font-size: 13px;
  }
  .product_list .info .btn_a {
    margin-top: 15px;
  }
  .blog_list a {
    border-radius: 10px;
  }
  .blog_list .img {
    border-radius: 10px 10px 0 0;
  }
  .blog_list .img .btn_play {
    width: 40px;
    height: 40px;
  }
  .blog_list .info {
    padding: 20px;
  }
  .blog_list .info .cat {
    left: 16px;
    top: 16px;
    font-size: 13px;
    border-radius: 4px;
  }
  .blog_list .info .date {
    font-size: 14px;
  }
  .blog_list .info .title {
    font-size: 20px;
    margin-top: 5px;
  }
  .blog_list .info .desc {
    font-size: 14px;
    line-height: 1.5;
    margin-top: 10px;
  }
  .blog_list .info .btn_a {
    font-size: 14px;
    margin-top: 20px;
    gap: 8px;
  }
}
@media screen and (max-width: 576px) {
  .tcon h1,
  .tcon .head_h1 {
    font-size: 36px;
  }
  .tcon h2,
  .tcon .head_h2 {
    font-size: 28px;
  }
  header .btn {
    display: none;
  }
  .footer_contact .flex .img {
    width: 100%;
    order: -1;
  }
  .section_nums ul {
    width: calc(100% + 40px);
    padding: 0 20px;
    margin: 0 -20px;
    overflow: auto;
  }
  .section_nums ul::-webkit-scrollbar {
    display: none;
  }
  .section_nums li {
    flex: 1 0 166px;
  }
  .page_advantage .flex {
    display: block;
  }
  .page_advantage .flex .lt {
    width: 100%;
  }
  .page_advantage .items {
    margin-top: 30px;
  }
  footer .top {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }
  footer .top .social {
    width: 100%;
    justify-content: space-around;
  }
  footer .bot {
    flex-direction: column-reverse;
    text-align: center;
  }
  footer #backtop {
    width: 44px;
    height: 44px;
    right: 20px;
    bottom: 20px;
  }
}

/* === btn_lang === */
.jst-language-switcher {
      display: none;
  }
/* === /btn_lang === */

/* === btn_quote === */
/* quote modal */
.quote_modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(12, 12, 12, 0.88);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.quote_modal.active {
  opacity: 1;
  visibility: visible;
}
.quote_modal_close {
  position: absolute;
  top: 2.4rem;
  right: 2.4rem;
  width: 3.6rem;
  height: 3.6rem;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1;
}
.quote_modal_close::before,
.quote_modal_close::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2.4rem;
  height: 2px;
  background-color: #fff;
  transition: background-color 0.2s ease;
}
.quote_modal_close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.quote_modal_close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.quote_modal_close:hover::before,
.quote_modal_close:hover::after {
  background-color: var(--primary);
}
.quote_modal_inner {
  width: 92%;
  max-width: 680px;
  max-height: 90vh;
  overflow-y: auto;
  background: #fff;
  border: 1px solid #e8e5f0;
  border-radius: 1.2rem;
  padding: 3.6rem 3.2rem;
}
.quote_modal .form form {
  display: flex;
  justify-content: space-between;
  flex-flow: wrap;
  gap: 1.5rem;
}
.quote_modal .form form strong.title,
.quote_modal .form form > .head {
  display: none;
}
.quote_modal_inner .head {
  text-align: center;
  margin-bottom: 2.4rem;
}
.quote_modal_inner .head .subtitle {
  display: block;
  text-align: center;
  color: #000000;
  font-size: 1.4rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 0.8rem;
}
.quote_modal_inner .head .subtitle:before {
  display: none;
}
.quote_modal_inner .head .subtitle + h2 {
  margin-top: 0;
}
.quote_modal_inner .head h2 {
  color: var(--title);
  font-size: 2rem;
  line-height: 1.4;
  font-weight: 600;
  margin: 0;
}
.quote_modal_inner .head h2 span {
  color: var(--primary);
}
.quote_modal_inner .con {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.quote_modal_inner .con > span {
  width: 100%;
}
.quote_modal_inner .con > span.col2 {
  width: calc(50% - 0.75rem);
}
.quote_modal .form form br {
  display: none;
}
.quote_modal .form form .hidden-fields-container {
  display: none;
}
.quote_modal .form form .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}
.quote_modal .form form span.col2 > label,
.quote_modal .form form span.col_file > label,
.quote_modal .form form span.col_textarea > label,
.quote_modal .form form > span > label {
  display: flex;
  align-items: center;
  font-size: 1.4rem;
  color: #303030;
  font-weight: 600;
  text-transform: capitalize;
  margin-bottom: 0.8rem;
}
.quote_modal .form form span label i {
  color: var(--primary);
  margin-left: 0.4rem;
}
.quote_modal .form form span {
  display: block;
  width: 100%;
}
.quote_modal .form form span.col2 {
  width: calc(50% - 0.75rem);
}
.quote_modal .form form span input:not([type="checkbox"]),
.quote_modal .form form .wpcf7-form-control-wrap input:not([type="checkbox"]) {
  height: 5rem;
  line-height: 5rem;
  padding: 0 1.5rem;
  border: 1px solid #dddddd;
  border-radius: 0.6rem;
  width: 100%;
  color: #111;
  font-size: 1.5rem;
  transition: all 0.3s;
  box-sizing: border-box;
  background: #fff;
}
.quote_modal .form form span input:not([type="checkbox"]):focus,
.quote_modal .form form .wpcf7-form-control-wrap input:not([type="checkbox"]):focus,
.quote_modal .form form textarea:focus,
.quote_modal .form form span select:focus,
.quote_modal .form form .wpcf7-form-control-wrap select:focus {
  border-color: var(--primary);
  outline: none;
}
.quote_modal .form form span select,
.quote_modal .form form .wpcf7-form-control-wrap select {
  height: 5rem;
  line-height: 5rem;
  padding: 0 1.5rem;
  border: 1px solid #dddddd;
  border-radius: 0.6rem;
  width: 100%;
  font-size: 1.5rem;
  color: #60686d;
  background: #fff url('../img/select.svg') no-repeat right 1.5rem center/1.2rem;
  box-sizing: border-box;
  appearance: none;
}
.quote_modal .form form .upload_con {
  padding: 1.8rem;
  border-radius: 0.6rem;
  border: 2px dashed #dddddd;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s;
}
.quote_modal .form form .upload_con:hover {
  border-color: var(--primary);
}
.quote_modal .form form .upload_con.has-file {
  border-color: var(--primary);
  background: rgba(var(--primary-rgb, 0, 0, 0), 0.04);
}
.quote_modal .form form .upload_con.dragover {
  border-color: var(--primary);
  background: rgba(var(--primary-rgb, 0, 0, 0), 0.06);
}
.quote_modal .form form .upload_filename {
  display: block;
  margin-top: 0.8rem;
  font-size: 1.4rem;
  color: var(--primary);
  font-weight: 600;
}
.quote_modal .form form .upload_con .upload_hint {
  font-weight: 400;
}
.quote_modal .form form .upload_con .icon {
  width: 3.6rem;
  height: 3.6rem;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0.8rem;
}
.quote_modal .form form .upload_con p {
  font-size: 1.4rem;
  color: #666666;
}
.quote_modal .form form .upload_con p strong {
  font-weight: 600;
  color: #111111;
}
.quote_modal .form form .upload_con span {
  font-size: 1.4rem;
  color: #888888;
  margin-top: 0.5rem;
}
.quote_modal .form form span.col_file,
.quote_modal .form form span.col_textarea {
  margin-top: 0;
}
.quote_modal .form form textarea,
.quote_modal .form form .wpcf7-form-control-wrap textarea {
  padding: 1.4rem 1.5rem;
  border: 1px solid #dddddd;
  border-radius: 0.6rem;
  width: 100%;
  font-size: 1.5rem;
  color: #111;
  height: 14rem;
  box-sizing: border-box;
  resize: none;
  background: #fff;
}
.quote_modal .form form input[type="file"],
.quote_modal .form form .wpcf7-file {
  display: none !important;
}
.quote_modal .form form > p,
.quote_modal .form form > p.agree_row {
  font-size: 1.3rem;
  color: #60686d;
  width: 100%;
  margin: 0;
  padding: 0;
}
.quote_modal .form form > p.agree_row .wpcf7-form-control-wrap,
.quote_modal .form form .wpcf7-acceptance {
  width: 100%;
}
.quote_modal .form form > p input[type="checkbox"],
.quote_modal .form form .wpcf7-acceptance input[type="checkbox"] {
  width: 1.8rem;
  height: 1.8rem;
  min-width: 1.8rem;
  margin: 0.15rem 0 0;
  border: 2px solid #333;
  border-radius: 0.2rem;
  flex-shrink: 0;
  appearance: none;
  -webkit-appearance: none;
  background: #fff;
  cursor: pointer;
  grid-column: 1;
  grid-row: 1;
  align-self: start;
}
.quote_modal .form form .wpcf7-acceptance .wpcf7-list-item {
  margin: 0;
  display: block;
}
.quote_modal .form form .wpcf7-acceptance label {
  display: grid;
  grid-template-columns: 1.8rem 1fr;
  column-gap: 1rem;
  row-gap: 0;
  align-items: start;
  font-size: 1.3rem;
  font-weight: 400;
  text-transform: none;
  color: #60686d;
  margin-bottom: 0;
  cursor: pointer;
}
.quote_modal .form form .wpcf7-acceptance .wpcf7-list-item-label {
  grid-column: 2;
  line-height: 1.6;
  margin: 0;
  padding: 0;
}
.quote_modal .form form .btn {
  width: 100%;
  height: 5rem;
  line-height: 5rem;
  padding: 0 3rem;
  justify-content: center;
  font-size: 1.5rem;
  margin-top: 0.5rem;
  cursor: pointer;
  position: relative;
}
.quote_modal .form form .btn:not(.is-ready) {
  opacity: 0.55;
  cursor: not-allowed;
  filter: none;
}
.quote_modal .form form .btn.is-ready {
  opacity: 1;
  cursor: pointer;
}
.quote_modal .form form .btn.is-ready:hover {
  filter: brightness(120%);
}
.quote_modal .form form .btn > p {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.quote_modal .form form > p.agree_row.needs-attention {
  color: #c0392b;
}
.quote_modal .form form .btn:after {
  width: 1.45rem;
  height: 1.45rem;
  margin-left: 1.2rem;
}
.quote_modal .form form .btn input[type="submit"] {
  display: none;
}
.quote_modal .form form .btn input[type="submit"]:disabled {
  display: none;
}
.quote_modal .form form > p input:checked,
.quote_modal .form form .wpcf7-acceptance input:checked {
  background: url('../img/correct.svg') no-repeat center/100%;
  background-color: var(--primary);
  border-color: var(--primary);
}
.quote_modal .form .wpcf7-spinner {
  position: absolute;
  right: 1rem;
  width: 24px;
}
.quote_modal .form .wpcf7-response-output {
  width: 100%;
  margin: 1rem 0 0;
  padding: 0.8rem 1.2rem;
  border-radius: 0.6rem;
  font-size: 1.3rem;
}
.quote_modal .form .wpcf7-not-valid-tip {
  font-size: 1.2rem;
  color: #c0392b;
  margin-top: 0.4rem;
}
body.quote_modal_open {
  overflow: hidden;
}

@media (max-width: 768px) {
  .quote_modal_inner {
    padding: 3rem 2rem;
    border-radius: 1.2rem;
  }
  .quote_modal .form form {
    gap: 1.2rem;
  }
  .quote_modal .form form strong.title,
  .quote_modal_inner .head h2 {
    font-size: 1.8rem;
  }
  .quote_modal .form form span.col2,
  .quote_modal_inner .con > span.col2 {
    width: 100%;
  }
  .quote_modal .form form span input:not([type="checkbox"]),
  .quote_modal .form form .wpcf7-form-control-wrap input:not([type="checkbox"]) {
    line-height: 4rem;
    font-size: 1.4rem;
  }
  .quote_modal .form form span select,
  .quote_modal .form form .wpcf7-form-control-wrap select {
    line-height: 4rem;
    font-size: 1.4rem;
  }
  .quote_modal .form form textarea,
  .quote_modal .form form .wpcf7-form-control-wrap textarea {
    height: 12rem;
    font-size: 1.4rem;
  }
  .quote_modal .form form span.col2 > label,
  .quote_modal .form form span.col_file > label,
  .quote_modal .form form span.col_textarea > label,
  .quote_modal .form form > span > label {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
  }
  .quote_modal .form form > p,
  .quote_modal .form form > p.agree_row {
    font-size: 1.3rem;
  }
  .quote_modal .form form .upload_con p {
    font-size: 1.5rem;
  }
  .quote_modal .form form .upload_con span {
    font-size: 1.4rem;
  }
  .quote_modal .form form > p input[type="checkbox"],
  .quote_modal .form form .wpcf7-acceptance input[type="checkbox"] {
    width: 2rem;
    height: 2rem;
    min-width: 2rem;
  }
  .quote_modal .form form .btn {
    font-size: 1.5rem;
  }
}
/* === /btn_quote === */

/* === btn_search === */
div.search-block {
    position: fixed;
    z-index: 998;
    background-color: #fff;
    box-shadow: 0 0 15px rgba(0, 55, 96, 0.12);
    width: 100%;
    bottom: -100vh;
    height: 100vh;
    transition: 0.3s ease;
  }
  div.search-block.active {
    bottom: 0;
    opacity: 1;
    transform: translateY(150px);
  }
  div.search-block div.content {
    position: relative;
    display: block;
  }
  .wd-action-btn {
    display: inline-flex;
    vertical-align: middle;
    background: url(../../global/img/cloes.svg) no-repeat center;
    background-size: contain;
    position: absolute;
    top: 38px;
    right: 0;
    z-index: 1;
    width: 28px;
    height: 28px;
    transition: all 0.3s;
    cursor: pointer;
  }
  .wd-action-btn:hover {
    transform: rotate(180deg);
  }
  div.search-block .searchform {
    border-bottom: 1px solid rgba(119, 119, 119, 0.2);
    /* opacity: 0; */
    transition: opacity 0.35s ease 0.2s;
    --wd-form-color: #333;
    --wd-form-placeholder-color: #333;
    text-align: center;
    transition: 0.75s all ease;
  }
  div.search-block.active .searchform {
    opacity: 1;
  }
  div.search-block .searchform input[type='text'] {
    padding: 0;
    height: 110px;
    border: none;
    text-align: center;
    font-size: 35px;
    outline: none;
  }
  header div.main-menu div.main div.right {
    display: none;
  }
  div.search-block .searchform ::-webkit-input-placeholder {
    color: #333333;
  }
  
  @media (max-width: 768px) { 
    div.search-block div.content {
      height: 100%;
    }
    div.search-block {
      height: calc(100vh - 150px);
    }
    div.search-block.active {
      transform: translate(0);
    }
    div.search-block .searchform {
      padding-top: 2rem;
      display: grid;
      align-items: center;
      grid-template-columns: 1fr auto;
      gap: 12px;
    }
    div.search-block .searchform input[type='text'] {
      height: 42px;
      min-width: unset;
      width: 100%;
      font-size: 22px;
    }
    div.search-block .searchform input[type='submit'] {
      display: block;
      width: 20px;
      filter: contrast(0) brightness(0);
      height: 20px;
      background: url(../img/icon-search.svg) no-repeat center/contain;
    }
    .wd-action-btn {
      right: 2rem;
      bottom: 2rem;
      top: unset;
    }
  }
/* === /btn_search === */

/* === search === */
.no-results {
  text-align: center;
  padding: 6rem 0;
}
.no-results p {
  font-size: 1.8rem;
  color: var(--text);
  margin-bottom: 3rem;
}
.no-results .search-form {
  display: flex;
  max-width: 50rem;
  margin: 0 auto;
  border: 1px solid #dcdee2;
  border-radius: 1rem;
  overflow: hidden;
}
.no-results .search-form .search-field {
  flex: 1;
  height: 5rem;
  padding: 0 1.5rem;
  border: none;
  outline: none;
  font-size: 1.5rem;
  background: transparent;
}
.no-results .search-form .search-submit {
  padding: 0 2.4rem;
  border: none;
  background: var(--primary);
  color: #fff;
  font-size: 1.5rem;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.3s;
}
.no-results .search-form .search-submit:hover {
  opacity: 0.85;
}
@media screen and (max-width: 768px) {
  .no-results {
    padding: 30px 0;
  }
  .no-results p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
  }
  .no-results .search-form {
    flex-direction: column;
    border: none;
    gap: 1rem;
  }
  .no-results .search-form .search-field {
    border: 1px solid #dcdee2;
    border-radius: 1rem;
    height: 4.4rem;
  }
  .no-results .search-form .search-submit {
    height: 4.4rem;
    border-radius: 1rem;
  }
}
/* === /search === */
