* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --primary: #e71419;
  --secondary: #000;
  --title: #232323;
  --text: #4d4e4f;
  --text_op: rgba(77, 78, 79, 0.85);
  --text_w: rgba(255, 255, 255, 0.85);
  --bg: #f8f8f9;
}
html {
  scroll-behavior: smooth;
  font-size: clamp(7.5px, 0.520834vw, 10px);
}
.content {
  max-width: 144rem;
  margin: 0 auto;
  position: relative;
}
.content .content {
  padding: 0;
}
.swiper_box {
  position: relative;
}
.swiper_content {
  max-width: 147rem;
  margin: 0 auto;
  position: relative;
  padding: 1.5rem;
  overflow: hidden;
}
li {
  list-style: none;
}
li.swiper-slide {
  height: auto;
}
a {
  color: inherit;
  cursor: pointer;
  font-size: inherit;
  text-decoration: none;
}
i,
em {
  font-style: normal;
}
input,
button,
textarea {
  border: none;
  outline: none;
  font-family: unset;
  color: var(--title);
  background-color: transparent;
}
select {
  cursor: pointer;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  font-family: unset;
  color: var(--title);
}
textarea {
  resize: none;
}
button,
input[type="submit"] {
  cursor: pointer;
}
input[type="checkbox"] {
  cursor: pointer;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
}
input[type="number"] {
  appearance: textfield;
  -moz-appearance: textfield;
  -webkit-appearance: textfield;
}
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  margin: 0;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
}
table {
  width: 100%;
  border-collapse: collapse;
}
.flex {
  display: flex;
}
.wrap {
  flex-wrap: wrap;
}
.flex1 {
  flex: 1;
}
.flex2 {
  flex: 2;
}
.flex3 {
  flex: 3;
}
.between {
  justify-content: space-between;
}
.center {
  text-align: center;
}
.flex_start {
  justify-content: flex-start;
}
.flex_center {
  justify-content: center;
}
.flex_end {
  justify-content: flex-end;
}
.flex_top {
  align-items: flex-start;
}
.flex_middle {
  align-items: center;
}
.flex_bottom {
  align-items: flex-end;
}
.aligncenter {
  margin-left: auto;
  margin-right: auto;
}
.row_reverse {
  flex-direction: row-reverse;
}
body {
  font-size: 1.6rem;
  color: var(--title);
  font-family: "Inter", sans-serif;
}
body.fixed {
  overflow: hidden;
  padding-right: 15px;
}
body [data-wpr-lazyrender] {
  content-visibility: unset;
}
.only_mobile {
  display: none;
}
.gap {
  gap: 3rem;
}
.grecaptcha-badge {
  visibility: hidden;
}
#fullscreen-loader {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
}
#fullscreen-loader::after {
  content: '';
  display: block;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 8px solid var(--primary);
  animation: l20-1 0.8s infinite linear alternate, l20-2 1.6s infinite linear;
}
@keyframes l20-1 {
  0% {
    clip-path: polygon(50% 50%, 0 0, 50% 0%, 50% 0%, 50% 0%, 50% 0%, 50% 0%);
  }
  12.5% {
    clip-path: polygon(50% 50%, 0 0, 50% 0%, 100% 0%, 100% 0%, 100% 0%, 100% 0%);
  }
  25% {
    clip-path: polygon(50% 50%, 0 0, 50% 0%, 100% 0%, 100% 100%, 100% 100%, 100% 100%);
  }
  50% {
    clip-path: polygon(50% 50%, 0 0, 50% 0%, 100% 0%, 100% 100%, 50% 100%, 0% 100%);
  }
  62.5% {
    clip-path: polygon(50% 50%, 100% 0, 100% 0%, 100% 0%, 100% 100%, 50% 100%, 0% 100%);
  }
  75% {
    clip-path: polygon(50% 50%, 100% 100%, 100% 100%, 100% 100%, 100% 100%, 50% 100%, 0% 100%);
  }
  100% {
    clip-path: polygon(50% 50%, 50% 100%, 50% 100%, 50% 100%, 50% 100%, 50% 100%, 0% 100%);
  }
}
@keyframes l20-2 {
  0% {
    transform: scaleY(1) rotate(0deg);
  }
  49.99% {
    transform: scaleY(1) rotate(135deg);
  }
  50% {
    transform: scaleY(-1) rotate(0deg);
  }
  100% {
    transform: scaleY(-1) rotate(-135deg);
  }
}
.img.img_cv {
  overflow: hidden;
}
.img.img_cv img {
  object-fit: cover;
}
.img.img_ct img {
  object-fit: contain;
}
.img.img_ab {
  position: relative;
}
.img.img_ab img {
  position: absolute;
  left: 0;
  top: 0;
}
.img.img_aba {
  position: relative;
}
.img.img_aba::after {
  content: '';
  display: block;
  padding-bottom: var(--h);
}
.img.img_aba img {
  position: absolute;
  left: 0;
  top: 0;
}
.img img {
  width: 100%;
  height: 100%;
  display: block;
  transition: all 0.5s;
  aspect-ratio: inherit;
}
.img_bg {
  position: relative;
  z-index: 2;
}
.img_bg > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -2;
}
.icon.icon_ab {
  position: relative;
}
.icon.icon_ab img {
  position: absolute;
  left: 0;
  top: 0;
}
.icon img {
  display: block;
  object-fit: contain;
  width: 100%;
  height: 100%;
  transition: all 0.3s;
}
.custom-popup {
  --radius: 0px;
  position: absolute;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: var(--radius);
  z-index: 999;
  padding: 8px;
  font-size: 14px;
  opacity: 0;
  transform: scaleY(0);
  transform-origin: top;
  transition: all 0.2s ease;
}
.custom-popup.show {
  opacity: 1;
  transform: scaleY(1);
}
.custom-popup.up {
  transform-origin: bottom;
}
.custom-popup .popup-empty {
  padding: 12px;
  text-align: center;
  color: #999;
}
.custom-popup input.popup-input {
  display: block;
  width: 100%;
  padding: 11px 12px;
  font-size: 14px;
  border: 1px solid #ccc;
  background: #fff;
  color: var(--title);
  margin-bottom: 8px;
  border-radius: calc(var(--radius) - 2px);
}
.custom-popup input.popup-input::placeholder {
  color: #666;
}
.custom-popup input.popup-input:focus {
  border-color: var(--primary);
}
.custom-popup .popup-options {
  overflow: auto;
  max-height: 50vh;
}
.custom-popup .popup-option {
  padding: 12px;
  margin: 0 0 4px;
  cursor: pointer;
  transition: all 0.15s;
  border-radius: calc(var(--radius) - 2px);
}
.custom-popup .popup-option:hover,
.custom-popup .popup-option.selected {
  background-color: #f0f0f0;
}
.custom-popup .popup-option:last-child {
  margin-bottom: 0;
}
.btn {
  display: inline-block;
  cursor: pointer;
  text-align: center;
  transition: all 0.3s;
  border-radius: 100px;
  background-color: var(--primary);
  border: 1px solid var(--primary);
  color: #fff;
  font-size: 1.7rem;
  line-height: 3rem;
  font-weight: 600;
  padding: 1.5rem 3.6rem;
  min-width: 17.6rem;
}
.btn:hover {
  background-color: transparent;
  color: var(--primary);
}
.btn_line {
  display: inline-block;
  cursor: pointer;
  text-align: center;
  transition: all 0.3s;
  border-radius: 100px;
  background-color: transparent;
  border: 1px solid rgba(35, 35, 35, 0.6);
  color: var(--title);
  font-size: 1.8rem;
  line-height: 3.1rem;
  font-weight: 600;
  padding: 1.5rem 4rem;
  min-width: 23.2rem;
}
.btn_line:hover {
  background-color: var(--primary);
  border-color: var(--primary);
  color: #fff;
}
.btn_i {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: normal;
  gap: 1.4rem;
}
.btn_i::after {
  display: inline-block;
  flex-shrink: 0;
  content: '';
  width: 5.2rem;
  height: 5.2rem;
  border-radius: 50%;
  background: url("../img/arrow-r-w.svg") no-repeat center / 30.8% var(--primary);
  transition: all 0.3s;
}
.btn_i:hover {
  color: var(--primary);
}
.btn_i:hover::after {
  transform: translateX(20%);
}
.btn_circle {
  display: inline-block;
  cursor: pointer;
  border-radius: 50%;
  transition: all 0.3s;
  border: 1px solid #fff;
  background-color: #fff;
  width: 5.2rem;
}
.btn_circle::after {
  display: block;
  padding-bottom: 100%;
  content: '';
  background: url("../img/arrow-r.svg") no-repeat center / 34%;
  transition: all 0.3s;
  filter: contrast(0) brightness(0);
}
.btn_circle:hover {
  background-color: var(--primary);
  border-color: var(--primary);
}
.btn_circle:hover::after {
  filter: contrast(0) brightness(2);
}
.swiper_btns {
  gap: 1.9rem;
  display: flex;
}
.swiper_btns div {
  width: 7.1rem;
  cursor: pointer;
  transition: all 0.3s;
  border-radius: 50%;
  border: 1px solid var(--title);
  background-color: var(--title);
}
.swiper_btns div::after {
  content: '';
  display: block;
  width: 100%;
  padding-bottom: 100%;
  transition: all 0.3s;
  background: url(../img/arrow-r.svg) no-repeat center / 30.4%;
  filter: contrast(0) brightness(2);
}
.swiper_btns div:hover {
  border-color: var(--primary);
  background-color: var(--primary);
}
.swiper_btns .btn_prev::after {
  transform: rotate(180deg);
}
.swiper_btns .swiper-button-disabled {
  pointer-events: none;
  background-color: transparent;
  border-color: rgba(22, 22, 22, 0.5);
}
.swiper_btns .swiper-button-disabled::after {
  filter: contrast(0) brightness(0);
}
.swiper_btns:has(.swiper-button-lock) {
  opacity: 0;
}
.swiper_btns.middle {
  width: 98%;
  max-width: 168.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;
}
.swiper_btns.sm div {
  width: 5.2rem;
  background-color: rgba(113, 115, 119, 0.89);
  border: none;
}
.swiper_btns.sm div::after {
  background-size: 33%;
}
.swiper_btns.sm div:hover {
  background-color: var(--primary);
}
.swiper_btns.sm .swiper-button-disabled {
  background-color: rgba(113, 115, 119, 0.89);
}
.swiper_btns.sm .swiper-button-disabled::after {
  filter: contrast(0) brightness(2);
}
.head.white {
  color: #fff;
}
.head.white p,
.head.white .desc {
  color: var(--text_w);
  font-weight: 300;
  letter-spacing: 0.015rem;
}
.head.bn p,
.head.bn .desc {
  font-size: 2.4rem;
  line-height: 3rem;
  letter-spacing: 0.03rem;
}
.head.bn.white p,
.head.bn.white .desc {
  font-weight: 400;
}
.head.bn2 p,
.head.bn2 .desc {
  font-size: 2rem;
  line-height: 3rem;
}
.head.bn2.white p,
.head.bn2.white .desc {
  letter-spacing: 0.028rem;
}
.head.center h1,
.head.center h2,
.head.center p,
.head.center .desc {
  margin-left: auto;
  margin-right: auto;
}
.head h1 {
  font-size: 5.2rem;
  line-height: 1.11538462;
  font-weight: 700;
  letter-spacing: 0.11rem;
}
.head h2 {
  font-size: 4.8rem;
  line-height: 1.3125;
  font-weight: 700;
  letter-spacing: 0.095rem;
}
.head p,
.head .desc {
  font-size: 1.8rem;
  line-height: 3.2rem;
  color: var(--text_op);
}
header {
  position: sticky;
  left: 0;
  top: -124px;
  right: 0;
  z-index: 996;
  transition: all 0.3s;
  background-color: #fff;
  border-bottom: 1px solid #fff;
}
header.style {
  border-bottom-color: #bdbdbd;
}
header.opt {
  top: -40px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  border-bottom-color: #bdbdbd;
}
header .flex {
  gap: 5.8%;
}
header .header_top {
  background-color: #2e3133;
  color: #fff;
  padding: 10px 0;
}
header .header_top .lt,
header .header_top .rt {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
header .header_top .social {
  gap: 2.55rem;
  flex-wrap: nowrap;
}
header .header_top .social a {
  width: 15px;
  height: 15px;
}
header .header_top .notice {
  font-size: 14px;
  line-height: 20px;
  white-space: nowrap;
  font-weight: 300;
  letter-spacing: 0.001rem;
}
header .header_top .notice a {
  display: inline-flex;
  align-items: center;
  text-decoration: underline transparent;
  transition: all 0.3s;
  gap: 12px;
}
header .header_top .notice a::after {
  display: inline-block;
  content: '';
  width: 10px;
  height: 10px;
  flex-shrink: 0;
  background: url("../img/nav-r.svg") no-repeat center / contain;
  filter: contrast(0) brightness(2);
}
header .header_top .notice a:hover {
  color: var(--primary);
  text-decoration-color: var(--primary);
}
header .header_top .notice a:hover::after {
  filter: unset;
}
header .header_top .notice span {
  display: inline-flex;
  align-items: center;
  transform: translateY(1px);
  font-weight: 400;
  letter-spacing: 0.012rem;
}
header .header_top .notice span::after {
  display: inline-block;
  width: 1px;
  height: 12px;
  background: #fff;
  opacity: 0.16;
  content: '';
  margin: 0 13px;
}
header .logo {
  display: block;
  position: relative;
}
header .logo img {
  display: block;
  width: auto;
  height: 6.3rem;
}
header .logo p {
  width: 1px;
  height: 1px;
  overflow: hidden;
  position: absolute;
  clip: rect(1px, 1px, 1px, 1px);
}
header nav {
  margin-left: auto;
}
header nav .close {
  display: none;
}
header nav .menu {
  gap: 3.45rem;
  display: flex;
}
header nav .menu > li {
  position: relative;
  z-index: 2;
}
header nav .menu > li > a {
  display: block;
  font-size: 16px;
  line-height: 40px;
  padding-bottom: 4px;
  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 {
  color: var(--primary);
}
header nav .menu > li:hover > .sub-menu {
  transform: translate(0);
  pointer-events: all;
  opacity: 1;
}
header nav .menu > li.menu-item-has-children .sub-menu {
  display: none;
}
header nav .sub-menu {
  position: absolute;
  top: 100%;
  left: -24px;
  padding: 6px;
  transition: all 0.3s;
  transform: translateY(-10px);
  pointer-events: none;
  opacity: 0;
  min-width: 180px;
  border-radius: 5px;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
header nav .sub-menu > li > a {
  display: block;
  font-size: 16px;
  white-space: nowrap;
  padding: 12px 18px;
  transition: all 0.3s;
}
header nav .sub-menu > li > a:hover {
  color: var(--primary);
}
header .btns {
  gap: 2.3rem;
  display: flex;
  align-items: center;
  min-height: 83px;
  padding-top: 2px;
}
header .btn_search {
  display: block;
  width: 19px;
  height: 19px;
  overflow: hidden;
  text-indent: -999px;
  background: url(../img/icon-search.svg) no-repeat center / contain;
  filter: contrast(0) brightness(0);
  transition: all 0.3s;
  margin-bottom: 2px;
}
header .btn_search:hover {
  filter: unset;
}
header .btn_lang {
  position: relative;
  cursor: pointer;
  font-size: 12px;
  transition: all 0.3s;
  padding-left: 29px;
  margin-left: 1px;
  letter-spacing: -0.01rem;
}
header .btn_lang::before {
  position: absolute;
  left: 0;
  top: 49.5%;
  transform: translateY(-50%);
  content: '';
  width: 20px;
  height: 20px;
  background: url(../img/icon-lang.svg) no-repeat center / contain;
  filter: contrast(0) brightness(0);
  transition: all 0.3s;
}
header .btn_lang:hover {
  color: var(--primary);
}
header .btn_lang:hover::before {
  filter: unset;
}
header .btn_menu {
  display: none;
  width: 23px;
  height: 23px;
  overflow: hidden;
  text-indent: -999px;
  background: url(../img/nav-btn.svg) no-repeat center / contain;
}
header .btn {
  font-size: 16px;
  padding: 8px 29px;
  min-width: unset;
  margin-bottom: 3px;
}
footer {
  background-color: #1a1a1a;
  color: rgba(255, 255, 255, 0.68);
}
footer .main {
  font-size: 1.8rem;
  padding: 14rem 0 11.7rem;
  font-weight: 300;
  letter-spacing: 0.012rem;
}
footer .main strong {
  display: block;
  font-size: 2rem;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 2.6rem;
  font-weight: 500;
  letter-spacing: 0.01rem;
}
footer .main .flex {
  gap: 5.2rem 2.08333333%;
}
footer .main .foot_nav {
  min-width: 20.24305556%;
}
footer .main .foot_nav li a {
  transition: all 0.3s;
  vertical-align: top;
  text-decoration: underline transparent;
}
footer .main .foot_nav li a:hover {
  color: var(--primary);
  text-decoration-color: var(--primary);
}
footer .main .foot_nav li + li {
  margin-top: 2.1rem;
}
footer .main .foot_software strong {
  margin-bottom: 2.3rem;
}
footer .main .foot_software li a {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
}
footer .main .foot_software li a .logo {
  display: block;
  object-fit: cover;
  width: 4.3rem;
  height: 4.3rem;
  border-radius: 1.1rem;
  border: 2px solid #5a5a5b;
}
footer .main .foot_software li + li {
  margin-top: 0.95rem;
}
footer .main .foot_connect li {
  position: relative;
  padding-left: 2.9rem;
}
footer .main .foot_connect li::before {
  content: '';
  display: block;
  width: 1.6rem;
  height: 1.6rem;
  background: no-repeat center left / contain;
  position: absolute;
  left: 0;
  top: 0.5rem;
}
footer .main .foot_connect li a {
  color: #fff;
  font-weight: 500;
}
footer .main .foot_connect li .label {
  font-size: 1.5rem;
  margin-top: 1rem;
}
footer .main .foot_connect li + li {
  margin-top: 2.7rem;
}
footer .main .foot_connect .phone::before {
  background-image: url(../img/icon-phone.svg);
  top: 0.3rem;
}
footer .main .foot_connect .email::before {
  background-image: url(../img/icon-email.svg);
}
footer .main .foot_subscribe {
  width: 31.25%;
  min-width: 25rem;
  margin-left: auto;
}
footer .main .foot_subscribe form {
  display: grid;
  grid-template-columns: 1fr auto;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding-right: 0.7rem;
  margin-top: 3.2rem;
  transition: all 0.2s;
}
footer .main .foot_subscribe form:focus-within {
  border-color: var(--primary);
}
footer .main .foot_subscribe form input {
  display: block;
  width: 100%;
  font-size: 1.7rem;
  color: #fff;
  padding: 0 2.9rem 2px;
}
footer .main .foot_subscribe form input::placeholder {
  color: #fff;
}
footer .main .foot_subscribe form input[type=submit] {
  padding: 0;
  width: 5.1rem;
  height: 5.1rem;
  border-radius: 50%;
  text-indent: -999px;
  color: transparent;
  background: url("../img/icon-email-w.svg") no-repeat center / 43.14% var(--primary);
  transition: all 0.3s;
  margin: 0.5rem 0;
}
footer .main .foot_subscribe form input[type=submit]:hover {
  transform: scale(1.1);
}
footer .main .foot_subscribe .social {
  margin-top: 3.3rem;
}
footer .bottom {
  font-size: 1.4rem;
  padding: 2.2rem 0;
  font-weight: 300;
  letter-spacing: 0.002rem;
}
footer .bottom .flex {
  gap: 3rem 2px;
}
footer .bottom p,
footer .bottom a {
  color: #fff;
}
footer .bottom p {
  letter-spacing: -0.003rem;
}
footer .bottom a {
  opacity: 0.5;
  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.1rem;
  background-color: #fff;
  opacity: 0.15;
  display: inline-block;
  content: '';
  margin: 0 1.3rem;
}
footer .bottom .btn_lang {
  cursor: pointer;
  display: inline-grid;
  transition: all 0.3s;
  grid-template-columns: 2rem 1fr 1rem;
  align-items: center;
  text-align: left;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.68);
  gap: 0.6rem;
  min-width: 24rem;
  padding: 1.1rem 1.7rem 1rem 1.4rem;
  margin-left: auto;
  letter-spacing: 0.012rem;
}
footer .bottom .btn_lang::before,
footer .bottom .btn_lang::after {
  display: block;
  content: '';
  padding-bottom: 100%;
  transition: all 0.3s;
  background: no-repeat center / contain;
  filter: contrast(0) brightness(2);
}
footer .bottom .btn_lang::before {
  background-image: url(../img/icon-lang.svg);
}
footer .bottom .btn_lang::after {
  background-image: url("../img/icon-select-w.svg");
}
footer .bottom .btn_lang:hover {
  color: #fff;
  background-color: var(--primary);
  border-color: var(--primary);
}
footer #backtop {
  position: fixed;
  z-index: 99;
  right: 3.3rem;
  bottom: 1.9rem;
  width: 4.9rem;
  height: 4.9rem;
  border-radius: 50%;
  background: url("../img/arrow-t-w.svg") no-repeat center / 22% var(--primary);
  cursor: pointer;
  transition: all 0.3s;
  transform: translateY(100%);
  opacity: 0;
}
footer #backtop.show {
  transform: translateY(0);
  opacity: 1;
}
footer #backtop:hover {
  transform: scale(1.1);
}
.header_menu_overlay {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 991;
  width: 100%;
  height: 100%;
  transition: all 0.3s;
  background-color: rgba(0, 0, 0, 0.74);
  opacity: 0;
  pointer-events: none;
}
.header_menu_overlay.active {
  opacity: 1;
  pointer-events: all;
}
.header_menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 999;
  background-color: #fff;
  display: none;
  border-top: 1px solid #bdbdbd;
}
.header_menu .close_box {
  min-height: 70px;
  display: flex;
  align-items: center;
  margin-left: auto;
}
.header_menu .close_box .close {
  display: block;
  cursor: pointer;
  width: 24px;
  height: 24px;
  content: '';
  background: url("../img/hd-close.svg") no-repeat center / contain;
  filter: contrast(0) brightness(0.3);
  transition: all 0.3s;
}
.header_menu .close_box .close:hover {
  filter: unset;
  opacity: 1;
  transform: rotate(360deg);
}
.header_menu .hd_menu_top {
  background-color: #f3f3f3;
}
.header_menu .hd_menu_top .nav ul {
  display: flex;
  gap: 5.8rem;
}
.header_menu .hd_menu_top .nav li.active a,
.header_menu .hd_menu_top .nav a:hover {
  border-bottom-color: var(--primary);
}
.header_menu .hd_menu_top .nav a {
  display: block;
  transition: all 0.3s;
  font-size: 17px;
  font-weight: 600;
  color: #171717;
  line-height: 62px;
  padding-top: 4px;
  border-bottom: 4px solid transparent;
}
.header_menu .hd_menu_top .close {
  opacity: 0.74;
}
.header_menu .hd_menu_list {
  display: none;
  padding: 3.7rem 0 4rem;
  max-height: calc(100vh - 22rem);
  overflow-y: auto;
}
.header_menu .hd_menu_list.active {
  display: block;
}
.header_menu .hd_menu_list > ul > li > a {
  font-size: 18px;
  font-weight: 600;
}
.header_menu .hd_menu_list > ul > li + li {
  margin-top: 4.1rem;
}
.header_menu .hd_menu_list .hd_sub-menu {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(15rem, 100%), 1fr));
  gap: 4rem 4.66666667%;
  margin-top: 2.1rem;
}
.header_menu .hd_menu_list .hd_sub-menu a {
  display: block;
  height: 100%;
}
.header_menu .hd_menu_list .hd_sub-menu a:hover img {
  transform: scale(1.02);
}
.header_menu .hd_menu_list .hd_sub-menu a:hover strong {
  color: var(--primary);
  text-decoration-color: var(--primary);
}
.header_menu .hd_menu_list .hd_sub-menu a .img {
  padding-bottom: 100%;
  border-radius: 1.6rem;
  background-color: #f4f4f4;
  overflow: hidden;
}
.header_menu .hd_menu_list .hd_sub-menu a strong {
  display: block;
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  color: #4c4c4c;
  transition: all 0.3s;
  text-decoration: underline transparent;
  margin-top: 12px;
}
.header_menu .hd_menu {
  padding: 5.4rem 0 10rem;
  max-height: calc(100vh - 22rem);
  overflow-y: auto;
}
.header_menu .hd_menu > ul {
  display: flex;
  flex-wrap: wrap;
}
.header_menu .hd_menu > ul > li {
  flex: 1;
  max-width: 35.9rem;
  border-left: 1px solid #bdbdbd;
  padding-right: 2rem;
  padding-left: 3.8rem;
}
.header_menu .hd_menu > ul > li:first-child {
  border-left: none;
  padding-left: 0;
}
.header_menu .hd_menu > ul > li > a {
  font-size: 18px;
  font-weight: 600;
  transition: all 0.3s;
}
.header_menu .hd_menu > ul > li > a:hover {
  color: var(--primary);
}
.header_menu .hd_menu > ul ul {
  margin-top: 2.2rem;
}
.header_menu .hd_menu > ul ul .active a,
.header_menu .hd_menu > ul ul a:hover {
  color: var(--primary);
  text-decoration-color: var(--primary);
}
.header_menu .hd_menu > ul ul li + li {
  margin-top: 1rem;
}
.header_menu .hd_menu > ul ul a {
  font-size: 16px;
  color: #4c4c4c;
  vertical-align: top;
  transition: all 0.3s;
  text-decoration: underline transparent;
}
.page_cases {
  background-color: var(--bg);
  padding: 13.7rem 0 14.3rem;
  overflow: hidden;
}
.page_cases.black {
  background-color: #1a1a1a;
}
.page_cases p {
  max-width: 59rem;
}
.page_cases .btn_i {
  margin-top: 0.8rem;
}
.page_cases .page_cases_swiper {
  margin-top: 6.3rem;
}
.page_cases .page_cases_swiper .swiper-slide {
  max-width: 63.26388889%;
}
.page_cases .item {
  display: block;
  height: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 2.4rem;
}
.page_cases .item:hover img {
  transform: scale(1.02);
}
.page_cases .item .img {
  padding-bottom: 56.31174533%;
}
.page_cases .item .img::after {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 51.5625%;
  background-image: linear-gradient(to top, #000 7.2%, transparent);
  content: '';
  pointer-events: none;
}
.page_cases .item .info {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  color: #fff;
  padding: 5.7080132% 4.8298573%;
  max-height: 70%;
  overflow-y: auto;
}
.page_cases .item .info .title {
  font-size: 2.6rem;
  font-weight: 500;
  letter-spacing: 0.063rem;
}
.page_cases .item .info .desc {
  opacity: 0.85;
  margin-top: 1.4rem;
  font-weight: 300;
  letter-spacing: 0.005rem;
}
.page_cases .swiper_control {
  margin-top: 7.3rem;
}
.page_cases .swiper_btns.middle {
  max-width: 174.9rem;
  top: 37.7%;
}
.page_blog {
  padding: 12rem 0 13.6rem;
}
.page_blog .btn_line {
  margin-top: 0.6rem;
}
.page_blog .page_blog_swiper {
  overflow: hidden;
  border-radius: 2.3rem 2.3rem 0 0;
  margin-top: 4.7rem;
}
.page_blog .page_blog_swiper .swiper-slide {
  max-width: 460px;
}
.page_blog .swiper_btns.middle {
  top: 39.5%;
}
.page_banner {
  max-width: 256rem;
  margin: 0 auto;
}
.page_banner::before {
  position: absolute;
  width: 43.28125%;
  height: 100%;
  left: 0;
  top: 0;
  content: '';
  z-index: -1;
  pointer-events: none;
  background-image: linear-gradient(to right, #000 -5.17%, transparent);
  opacity: 0.57;
}
.page_banner .flex {
  min-height: 68rem;
  padding: 6rem 0;
}
.page_banner .head {
  width: 41%;
  padding-top: 0.4%;
}
.page_banner p {
  margin-top: 2.5rem;
}
.page_banner form {
  display: grid;
  grid-template-columns: 1fr auto;
  width: 100%;
  max-width: 48.4rem;
  border-radius: 100px;
  background-color: rgba(255, 255, 255, 0.22);
  border: 1px solid transparent;
  padding-right: 0.4rem;
  margin-top: 4.3rem;
  margin-bottom: 0.4rem;
  transition: all .2s;
}
.page_banner form:focus-within {
  border-color: var(--primary);
}
.page_banner form input {
  display: block;
  width: 100%;
  font-size: 1.8rem;
  color: #fff;
  padding: 0 3.1rem;
}
.page_banner form input::placeholder {
  color: #fff;
  opacity: 0.88;
}
.page_banner form input[type=submit] {
  text-indent: -999px;
  color: transparent;
  border-radius: 50%;
  width: 5.4rem;
  height: 5.4rem;
  background: url("../img/form-search.svg") no-repeat center / 35.2% #fff;
  transition: all 0.3s;
  margin: 0.4rem 0;
  padding: 0;
}
.page_banner form input[type=submit]:hover {
  background-color: rgba(255, 255, 255, 0.5);
}
.page_banner.support_banner .head {
  padding: 0;
}
.page_banner.support_banner::before {
  width: 62.1875%;
  background-image: linear-gradient(to right, #000 -3.6%, transparent);
  opacity: 0.74;
}
.page_banner.support_banner p {
  margin-top: 2.4rem;
}
.page_support {
  padding: 8.4rem 0;
}
.page_support .items {
  border-radius: 2.4rem;
  background-color: #e1e3e5;
  overflow: hidden;
}
.page_support .items ul {
  display: flex;
  flex-wrap: wrap;
  margin-left: -1px;
  gap: 3rem 0;
}
.page_support .items li {
  flex: 1;
  position: relative;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2.7777778% 2.0833333% 3.125% 2.2222222%;
}
.page_support .items li::before {
  position: absolute;
  width: 1px;
  height: 68.333%;
  background-color: rgba(0, 0, 0, 0.44);
  content: '';
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.page_support .items li:first-child .title {
  line-height: 1.57142857;
}
.page_support .items .title {
  font-size: 2.8rem;
  line-height: 1.28571429;
  font-weight: 600;
  width: 100%;
  max-width: 49rem;
  flex: 1;
  letter-spacing: 0.055rem;
}
.page_support .items .btn {
  font-size: 1.8rem;
  background-color: var(--title);
  border-color: var(--title);
  margin-top: 4.5rem;
  min-width: 53.5%;
}
.page_support .items .btn:hover {
  background-color: var(--primary);
  border-color: var(--primary);
  color: #fff;
}
.support_contact {
  padding: 6rem 0 14.2rem;
}
.support_contact .items {
  margin-top: 3.8rem;
}
.support_contact .items ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem 2.08333333%;
}
.support_contact .item {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  border-radius: 2.8rem;
  background-color: var(--bg);
  transition: all 0.3s;
  padding: 15% 6.5217391% 16.7391304%;
}
.support_contact .item:hover {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
}
.support_contact .item .icon {
  width: 6rem;
  height: 6rem;
}
.support_contact .item .info {
  flex: 1;
  text-align: center;
  margin-top: 2.1rem;
}
.support_contact .item .info .title {
  font-size: 2.8rem;
  font-weight: 600;
  letter-spacing: 0.05rem;
}
.support_contact .item .info .desc {
  font-size: 1.8rem;
  line-height: 2.5rem;
  color: var(--text_op);
  max-width: 25.3rem;
  margin: 1.4rem auto 0;
}
.support_contact .item .more {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s;
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--primary);
  gap: 0.8rem;
  margin-top: 3.4rem;
}
.support_contact .item .more::after {
  display: inline-block;
  flex-shrink: 0;
  content: '';
  width: 1.5rem;
  height: 1.5rem;
  transition: all 0.3s;
  background: url("../img/nav-r2.svg") no-repeat center / contain;
}
.support_contact .item .more:hover::after {
  transform: translateX(20%);
}
.page_video {
  overflow: hidden;
  padding: 6.5rem 0 11.1rem;
}
.page_video.black {
  background-color: #1a1a1a;
}
.page_video p {
  margin-top: 1.7rem;
}
.page_video .page_video_swiper {
  margin-top: 3.6rem;
}
.page_video .page_video_swiper .swiper-slide {
  max-width: 48rem;
  transform-origin: center right;
  transition: transform-origin 0.4s, transform 0.4s;
  transform: scale(0.89375) translateX(12%);
}
.page_video .page_video_swiper .swiper-slide-next,
.page_video .page_video_swiper .swiper-slide-prev {
  transform: scale(0.89375);
}
.page_video .page_video_swiper .swiper-slide-next ~ .swiper-slide {
  transform: scale(0.89375) translateX(-12%);
}
.page_video .page_video_swiper .swiper-slide-active {
  transform: scale(1);
  transform-origin: center center;
}
.page_video .page_video_swiper .swiper-slide-active ~ .swiper-slide {
  transform-origin: left center;
}
.page_video .item {
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: 2.3rem;
  background-color: var(--bg);
  cursor: pointer;
}
.page_video .item:hover img {
  transform: scale(1.02);
}
.page_video .item .img {
  border-radius: 2.3rem;
  padding-bottom: 56.50808333%;
}
.page_video .item .info {
  flex: 1;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
  padding: 6.875% 6.0416667% 7.2916667% 6.4583333%;
}
.page_video .item .info .title {
  font-size: 2.295rem;
  line-height: 1.18169935;
  font-weight: 600;
  color: #212121;
  flex: 1;
  max-width: 32.4rem;
  letter-spacing: 0.018rem;
}
.page_video .item .info .btn_play {
  display: block;
  flex-shrink: 0;
  content: '';
  width: 4.2rem;
  height: 4.2rem;
  background: url("../img/play-c-b.svg") no-repeat center / contain;
  transition: all 0.3s;
  cursor: pointer;
  margin-top: 4%;
}
.page_video .item .info .btn_play:hover {
  transform: scale(1.1);
}
.page_video div.swiper-pagination {
  position: static;
  margin-top: 3.8rem;
}
.page_video div.swiper-pagination .swiper-pagination-bullet {
  background: rgba(35, 35, 35, 0.37);
}
.page_products {
  padding: 12.9rem 0 8.1rem;
}
.page_products p {
  margin-top: 1.8rem;
}
.page_products .page_products_swiper {
  margin-top: 2.4rem;
}
.page_products .page_products_swiper .swiper-slide {
  max-width: 464px;
}
.page_products .product_list .active a {
  box-shadow: 0 0.7rem 0.5rem rgba(0, 0, 0, 0.08);
}
.page_products .product_list .active .info,
.page_products .product_list .active .img {
  transform: translateY(0);
}
.page_products .product_list .active .info .btn {
  opacity: 1;
}
.page_products .product_list a {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  border-radius: 1.7rem;
  background-color: var(--bg);
  transition: all 0.3s;
}
.page_products .product_list .img {
  display: flex;
  justify-content: center;
  padding-bottom: 71.27429806%;
  transform: translateY(1.8rem);
  transition: all 0.3s;
}
.page_products .product_list .img img {
  width: 71.27429806%;
  left: unset;
}
.page_products .product_list .info {
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 0 8.63315563% 8.63315563%;
  margin-top: -2px;
  transition: transform 0.4s;
  transform: translateY(4.5rem);
}
.page_products .product_list .info .text {
  flex: 1;
}
.page_products .product_list .info .title {
  font-size: 3rem;
  font-weight: 700;
  color: #161616;
  letter-spacing: 0.05rem;
}
.page_products .product_list .info p {
  font-size: 2rem;
  color: #4c4c4c;
  margin-top: 1rem;
  letter-spacing: 0.008rem;
}
.page_products .product_list .info ul {
  border-top: 1px solid #c9cfd3;
  font-size: 1.5rem;
  color: #707070;
  margin-top: 1.4rem;
  padding-top: 1.8rem;
  letter-spacing: -0.01rem;
}
.page_products .product_list .info ul li + li {
  margin-top: 0.333em;
}
.page_products .product_list .info ul li {
  position: relative;
  padding-left: 1.06667em;
}
.page_products .product_list .info ul li::before {
  position: absolute;
  width: 0.333em;
  height: 0.333em;
  left: 0;
  top: 0.46666em;
  content: '';
  border-radius: 50%;
  background-color: #707070;
}
.page_products .product_list .info .btn {
  font-size: 1.8rem;
  margin-top: 2rem;
  padding: 1.2rem 2rem;
  opacity: 0;
}
.page_products .swiper_btns.middle {
  top: 52%;
}
.social {
  gap: 2rem 4.1rem;
  display: flex;
  flex-wrap: wrap;
}
.social a {
  display: block;
  width: 2.5rem;
  height: 2.5rem;
  overflow: hidden;
  text-indent: -999px;
  position: relative;
  transition: all 0.3s;
}
.social a::after {
  content: '';
  display: block;
  position: absolute;
  inset: 0;
  background: no-repeat center / contain;
  filter: contrast(0) brightness(2);
  transition: all 0.3s;
}
.social a:hover {
  transform: scale(1.1);
}
.social a:hover::after {
  filter: unset;
}
.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);
}
div.swiper-pagination.swiper-pagination-bullets {
  display: flex;
  gap: 0.7rem;
  justify-content: center;
}
div.swiper-pagination.swiper-pagination-bullets .swiper-pagination-bullet {
  position: relative;
  flex: 1;
  max-width: 4.3rem;
  height: 3px;
  background: #d9d9d9;
  opacity: 1;
  margin: 0;
  border-radius: 10px;
  transition: all 0.3s;
}
div.swiper-pagination.swiper-pagination-bullets .swiper-pagination-bullet::after {
  position: absolute;
  width: 0;
  height: 100%;
  left: 0;
  top: 0;
  content: '';
  border-radius: 10px;
  background-color: var(--title);
}
div.swiper-pagination.swiper-pagination-bullets .swiper-pagination-bullet-active {
  max-width: 7.2rem;
}
div.swiper-pagination.swiper-pagination-bullets .swiper-pagination-bullet-active::after {
  width: 100%;
  transition: width 3s linear;
}
div.swiper-pagination.swiper-pagination-bullets.white .swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.37);
}
div.swiper-pagination.swiper-pagination-bullets.white .swiper-pagination-bullet::after {
  background-color: #fff;
}
.swiper_control {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.swiper_control div.swiper-pagination.swiper-pagination-bullets {
  position: static;
  flex: 1;
}
.swiper_control .swiper_btns.middle {
  padding: 0;
  margin: 0;
}
.nav_wrap .nav_list {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
}
.nav_wrap .nav_item {
  display: block;
  cursor: pointer;
  text-align: center;
  transition: all 0.3s;
  border-radius: 100px;
  border: 1px solid rgba(35, 35, 35, 0.6);
  color: var(--title);
  font-weight: 600;
  font-size: 1.8rem;
  line-height: 3.1rem;
  padding: 1rem 2rem;
  min-width: 18.5rem;
}
.nav_wrap .nav_item.active,
.nav_wrap .nav_item:hover {
  background-color: var(--primary);
  border-color: var(--primary);
  color: #fff;
}
.white .breadcrumbs span span::before,
.white .breadcrumbs span a {
  color: #fff;
}
.breadcrumbs {
  line-height: 2rem;
  min-height: 3.3rem;
}
.breadcrumbs span {
  font-weight: 600;
}
.breadcrumbs span span::before {
  content: ' - ';
  color: #777a7c;
  display: inline-block;
  margin: 0 0.9rem 0 0.4rem;
}
.breadcrumbs span span:first-child::before {
  display: none;
}
.breadcrumbs span span:not(:has(a)) {
  letter-spacing: -0.005rem;
}
.breadcrumbs span a {
  font-weight: 400;
  color: #777a7c;
  transition: all 0.3s;
  text-decoration: underline transparent;
}
.breadcrumbs span a:hover {
  color: var(--primary);
  text-decoration-color: var(--primary);
}
.blog_list a {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.blog_list a:hover img {
  transform: scale(1.02);
}
.blog_list a:hover .title {
  text-decoration-color: #212121;
}
.blog_list .img {
  border-radius: 2.3rem;
  padding-bottom: 100.86956522%;
}
.blog_list .info {
  flex: 1;
  margin-top: 2.8rem;
}
.blog_list .metas {
  font-size: 1.7rem;
  color: #3f3f3f;
  opacity: 0.85;
}
.blog_list .metas .cat {
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  margin-right: 3px;
}
.blog_list .title {
  font-size: 2.4rem;
  line-height: 1.25;
  font-weight: 600;
  color: #212121;
  text-decoration: underline transparent;
  transition: all 0.3s;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  max-width: 40rem;
  margin-top: 1.7rem;
  letter-spacing: 0.03rem;
}
.case_list a {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.case_list a:hover img {
  transform: scale(1.02);
}
.case_list a:hover .title {
  text-decoration-color: #212121;
}
.case_list a:hover .btn_circle {
  background-color: var(--primary);
  border-color: var(--primary);
}
.case_list a:hover .btn_circle::after {
  filter: contrast(0) brightness(2);
}
.case_list .img {
  border-radius: 2.3rem;
  padding-bottom: 101.08695652%;
}
.case_list .img::after {
  position: absolute;
  width: 100%;
  height: 32.9%;
  left: 0;
  bottom: 0;
  content: '';
  pointer-events: none;
  background-image: linear-gradient(to top, #000 -16.4%, transparent);
}
.case_list .btn_circle {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  margin: 4.3478261%;
}
.case_list .title {
  font-size: 2.4rem;
  line-height: 1.25;
  font-weight: 600;
  color: #212121;
  text-decoration: underline transparent;
  transition: all 0.3s;
  max-width: 40rem;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  margin-top: 2.3rem;
  letter-spacing: 0.03rem;
}
.faq_list .faq_item {
  border-radius: 1.2rem;
  background-color: var(--bg);
  margin-bottom: 1rem;
  border-bottom: 0.3rem solid transparent;
  transition: all 0.3s;
}
.faq_list .faq_item.active {
  margin-bottom: 3.3rem;
  border-bottom-color: rgba(231, 20, 25, 0.2);
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.faq_list .faq_item.active .question {
  padding-top: 5.2rem;
}
.faq_list .faq_item.active .question i {
  border-color: var(--primary);
  background-color: var(--primary);
}
.faq_list .faq_item.active .question i::before,
.faq_list .faq_item.active .question i::after {
  background-color: #fff;
}
.faq_list .faq_item.active .question i::after {
  transform: rotate(90deg);
  opacity: 0;
}
.faq_list .question {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  cursor: pointer;
  font-size: 2.2rem;
  font-weight: 700;
  color: #161616;
  transition: all 0.3s;
  gap: 2rem;
  padding: 3.3rem 3.9rem 3.2rem 4rem;
}
.faq_list .question i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border-radius: 50%;
  transition: all 0.3s;
  width: 2.6rem;
  height: 2.6rem;
  border: 2px solid #271c0b;
  margin-top: 2px;
}
.faq_list .question i::before,
.faq_list .question i::after {
  position: absolute;
  width: 54.54%;
  height: 2px;
  background-color: #271c0b;
  content: '';
  transition: all 0.3s;
}
.faq_list .question i::after {
  width: 2px;
  height: 54.54%;
}
.faq_list .answer {
  display: none;
  font-size: 1.8rem;
  line-height: 2.8rem;
  color: var(--text);
  margin-top: -0.4rem;
  padding: 0 4rem 7.8rem;
}
.faq_list .answer p {
  max-width: 118.1rem;
  margin: 0;
}

/*** global css ***/
.loading {
  position: relative;
}
.loading:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 8;
  background-color: rgba(255, 255, 255, 0.3);
}
.loading:after {
  content: '';
  display: block;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  border: 0.8rem solid #EFEFEF;
  border-top-color: var(--primary);
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 9;
  transition: all 0.3s;
  pointer-events: none;
  transform: translate(-50%, -50%);
  animation: loading 1s linear infinite;
}
@keyframes loading {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  80% {
    transform: translate(-50%, -50%) rotate(320deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

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

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

.video_pop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.8);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s;
  z-index: 9999;
  padding: 1.2rem;
}
.video_pop.active {
  opacity: 1;
  pointer-events: all;
}
.video_pop.active .pop_content {
  transform: translate(-50%, -50%);
}
.video_pop .mask {
  width: 100%;
  height: 100%;
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
}
.video_pop .mask .close {
  display: block;
  width: 1rem;
  height: 1rem;
  position: absolute;
  right: 2rem;
  top: 1rem;
  cursor: pointer;
}
.video_pop .pop_content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -70%);
  transition: all 0.3s;
  width: max-content;
  max-width: 90vw;
  height: 90vh;
  aspect-ratio: 1920/1080;
  display: flex;
  align-items: center;
  pointer-events: none;
}
.video_pop .pop_content iframe,
.video_pop .pop_content video {
  width: 100%;
  height: auto;
  max-height: 100%;
  object-fit: contain;
  pointer-events: all;
}
.video_pop .pop_content video[src=""],
.video_pop .pop_content video.init {
  aspect-ratio: 1920/1080;
}
.video_pop .pop_content iframe {
  aspect-ratio: 560/315;
}

.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: 144rem;
  margin: 5rem auto;
  padding: 2rem;
  border-radius: 1.8rem;
  background-color: #fff;
}
.quote_modal .contact_main .grid {
  gap: 2rem;
}

.post_main form#sytech-newsletter-subscription p.failed, .post_main form#sytech-newsletter-subscription p.success {
  bottom: unset;
  top: 10px;
}
.post_main form#sytech-newsletter-subscription p.failed.active, .post_main form#sytech-newsletter-subscription p.success.active {
  bottom: unset;
  top: 0;
}
/*** global css ***/

@media screen and (min-width: 769px) and (max-width: 1660px) {
  header .flex {
    gap: 3rem;
  }
}
@media screen and (min-width: 769px) and (max-width: 1220px) {
  .content {
    padding: 0 3rem;
  }
  header nav .menu,
  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 .logo,
  header .btns {
    margin: 0;
    padding: 0;
  }
  header nav {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    pointer-events: none;
    display: flex;
    --radius: 8px;
  }
  header nav.active {
    pointer-events: all;
  }
  header nav.active .close {
    opacity: 1;
  }
  header nav.active .con {
    transform: translate(0);
  }
  header nav > .close {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    opacity: 0;
    transition: all 0.3s;
    background-color: rgba(0, 0, 0, 0.75);
    display: block;
  }
  header nav .con {
    width: min(300px, 80%);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.3s;
    transform: translateX(-100%);
    background-color: #fff;
  }
  header nav .close_box {
    padding: 12px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }
  header nav .close_box .close {
    display: block;
    width: 40px;
    height: 40px;
    cursor: pointer;
    margin-left: auto;
    transition: all 0.3s;
    border-radius: var(--radius);
    background: url('../img/close.svg') no-repeat center / 12px;
  }
  header nav .close_box .close:hover {
    background-color: rgba(0, 0, 0, 0.05);
  }
  header nav .close_box + div {
    flex: 1;
    overflow: auto;
    padding: 12px 12px 30px;
  }
  header nav .menu {
    display: block;
  }
  header nav .menu > li {
    cursor: pointer;
  }
  header nav .menu > li + 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: all;
    transition: none;
    min-width: unset;
    border-radius: var(--radius);
    transform: translate(0);
    background-color: rgba(0, 0, 0, 0.02);
  }
  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 .btn_menu {
    display: block;
  }
  header .btn_search,
  header .btn_lang,
  header .btn {
    margin: 0;
  }
  header .header_menu {
    display: none !important;
  }
}
@media screen and (min-width: 769px) and (max-width: 896px) {
  .content,
  .swiper_content {
    max-width: 768px;
  }
  .head h1 {
    font-size: 5rem;
  }
  .head h2 {
    font-size: 4rem;
  }
  .page_support .items .title {
    font-size: 2.5rem;
  }
}
@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: 40px;
    padding: 0 20px;
    min-width: 120px;
  }
  .btn_i {
    font-size: 14px;
    gap: 12px;
  }
  .btn_i::after {
    width: 40px;
    height: 40px;
  }
  .btn_circle {
    width: 40px;
  }
  .swiper_btns {
    gap: 20px;
  }
  .swiper_btns div {
    width: 40px;
  }
  .swiper_btns.sm div {
    width: 40px;
  }
  .swiper_btns.middle:not(:has(.swiper-button-lock)) {
    position: static;
    width: 100%;
    max-width: unset;
    justify-content: flex-end;
    transform: translateX(0);
    margin-top: 30px;
    padding: 0 20px;
  }
  div.head.flex .text {
    padding: 0;
  }
  div.head.flex .btn,
  div.head.flex .btn_line,
  div.head.flex .btn_i {
    margin: 0;
  }
  div.head.white p,
  div.head.white .desc {
    letter-spacing: unset;
  }
  div.head.bn p,
  div.head.bn2 p,
  div.head.bn .desc,
  div.head.bn2 .desc {
    font-size: 14px;
    line-height: 1.5;
    margin-top: 12px;
    letter-spacing: unset;
  }
  div.head.bn.white p,
  div.head.bn2.white p,
  div.head.bn.white .desc,
  div.head.bn2.white .desc {
    letter-spacing: unset;
  }
  div.head h1 {
    font-size: 25px;
    line-height: 1.3;
    letter-spacing: unset;
    max-width: unset;
  }
  div.head h2 {
    font-size: 22px;
    line-height: 1.3;
    letter-spacing: unset;
    max-width: unset;
  }
  div.head .desc,
  div.head p {
    font-size: 14px;
    line-height: 1.5;
    letter-spacing: unset;
    max-width: unset;
    margin-top: 12px;
  }
  div.head .btn,
  div.head .btn_line {
    font-size: 14px;
    line-height: 40px;
    padding: 0 20px;
    min-width: 120px;
    margin-top: 20px;
  }
  div.head .btn_i {
    margin-top: 20px;
  }
  div.head p + p {
    margin-top: 12px;
  }
  header {
    padding: 0;
    top: -40px;
  }
  header.opt {
    top: -40px;
  }
  header .flex {
    gap: 20px;
  }
  header .header_top .social {
    gap: 16px;
  }
  header .header_top .social a {
    width: 14px;
    height: 14px;
  }
  header .header_top .notice {
    letter-spacing: unset;
  }
  header .header_top .notice a {
    gap: 10px;
  }
  header .header_top .notice span {
    letter-spacing: unset;
    transform: translateX(0);
  }
  header .header_top .notice span::after {
    margin: 0 10px;
    height: 10px;
  }
  header .logo img {
    height: 45px;
  }
  header .btns {
    gap: 22px;
    min-height: 64px;
  }
  header .btn_search {
    width: 22px;
    height: 22px;
  }
  header .btn {
    font-size: 14px;
    padding: 0 20px;
  }
  header .btn_lang {
    margin: 0;
    letter-spacing: unset;
  }
  footer .main {
    font-size: 14px;
    letter-spacing: unset;
    padding: 50px 0;
  }
  footer .main .flex {
    display: grid;
    align-items: unset;
    justify-content: unset;
    gap: 16px;
  }
  footer .main strong {
    font-size: 18px;
    margin-bottom: 20px;
    letter-spacing: unset;
  }
  footer .main .foot_nav:not(.foot_connect) {
    width: 100%;
    min-width: unset;
  }
  footer .main .foot_nav:not(.foot_connect) strong {
    font-size: 16px;
    line-height: 46px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 0 22px;
    position: relative;
    margin-bottom: 0;
  }
  footer .main .foot_nav:not(.foot_connect) strong::after {
    content: '';
    display: block;
    width: 12px;
    height: 12px;
    background: url(../img/select.svg) no-repeat center / contain;
    position: absolute;
    right: 22px;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s;
    filter: contrast(0) brightness(2);
  }
  footer .main .foot_nav:not(.foot_connect).active strong::after {
    transform: translateY(-50%) rotate(180deg);
  }
  footer .main .foot_nav:not(.foot_connect) > div {
    display: none;
    padding: 20px;
  }
  footer .main .foot_nav:not(.foot_connect) > div li + li {
    margin-top: 14px;
  }
  footer .main .foot_nav:not(.foot_connect) > div a {
    font-size: 14px;
    display: block;
    font-weight: normal;
  }
  footer .main .foot_nav:not(.foot_connect) > div p {
    font-size: 14px;
    line-height: 1.5;
  }
  footer .main .foot_nav:not(.foot_connect).foot_software li a {
    display: inline-flex;
    gap: 10px;
  }
  footer .main .foot_nav:not(.foot_connect).foot_software li a .logo {
    width: 32px;
    height: 32px;
    border-radius: 5px;
  }
  footer .main .foot_connect {
    width: 100%;
    padding-top: 20px;
  }
  footer .main .foot_connect strong {
    margin-bottom: 20px;
  }
  footer .main .foot_connect li + li {
    margin-top: 20px;
  }
  footer .main .foot_connect li {
    padding-left: 30px;
  }
  footer .main .foot_connect li::before {
    width: 16px;
    height: 16px;
    top: 5px;
  }
  footer .main .foot_connect li a {
    font-size: 16px;
  }
  footer .main .foot_connect li .label {
    font-size: 14px;
    line-height: 1.5;
    margin-top: 6px;
  }
  footer .main .foot_connect .email::before {
    top: 5px;
  }
  footer .main .foot_subscribe {
    display: grid;
    order: -1;
    width: 100%;
    min-width: unset;
    margin: 0;
  }
  footer .main .foot_subscribe div:has(form) {
    order: 4;
  }
  footer .main .foot_subscribe form {
    padding-right: 4px;
    margin-top: 40px;
  }
  footer .main .foot_subscribe form input {
    font-size: 14px;
    padding: 0 20px;
  }
  footer .main .foot_subscribe form input[type=submit] {
    width: 40px;
    height: 40px;
    margin: 4px 0;
  }
  footer .main .foot_subscribe .social {
    margin-top: 20px;
    justify-content: space-around;
  }
  footer .bottom {
    letter-spacing: unset;
    font-size: 14px;
    padding: 20px 0;
    text-align: center;
  }
  footer .bottom .flex {
    gap: 30px;
    flex-direction: column-reverse;
  }
  footer .bottom ul {
    gap: 1rem 0;
  }
  footer .bottom ul li::before {
    height: 10px;
    margin: 0 10px;
  }
  footer .bottom p {
    font-size: 13px;
    letter-spacing: unset;
  }
  footer .bottom a {
    font-size: 14px;
  }
  footer .bottom .btn_lang {
    margin: 0;
    min-width: unset;
    letter-spacing: unset;
    padding: 8px 14px 8px 8px;
    grid-template-columns: 22px 1fr 8px;
    gap: 10px;
  }
  footer #backtop {
    width: 40px;
    height: 40px;
    right: 20px;
    bottom: 20px;
  }
  .page_cases {
    padding: 50px 0;
  }
  .page_cases .head {
    align-items: center;
  }
  .page_cases .page_cases_swiper {
    margin-top: 30px;
  }
  .page_cases .item {
    border-radius: 10px;
  }
  .page_cases .item .img::after {
    height: 100%;
  }
  .page_cases .item .info {
    padding: 20px;
    max-height: 100%;
  }
  .page_cases .item .info .title {
    font-size: 18px;
    letter-spacing: unset;
  }
  .page_cases .item .info .desc {
    font-size: 14px;
    line-height: 1.5;
    letter-spacing: unset;
    margin-top: 10px;
  }
  .page_cases .swiper_control {
    padding: 0 20px;
    margin-top: 30px;
  }
  .page_blog {
    padding: 50px 0;
    overflow: hidden;
  }
  .page_blog .head {
    align-items: center;
  }
  .page_blog .page_blog_swiper {
    margin-top: 30px;
    overflow: unset;
  }
  .page_blog .page_blog_swiper .swiper-slide {
    max-width: 282px;
  }
  .page_banner .flex {
    min-height: unset;
    padding: 50px 0;
  }
  .page_banner .flex .head {
    width: 50%;
    padding: 0;
  }
  .page_banner form {
    max-width: 444px;
    margin-top: 20px;
    margin-bottom: 0;
    padding-right: 4px;
  }
  .page_banner form input {
    font-size: 14px;
    padding: 0 20px;
  }
  .page_banner form input[type=submit] {
    width: 40px;
    height: 40px;
    margin: 4px 0;
  }
  .support_contact {
    padding: 50px 0;
  }
  .support_contact .items {
    margin-top: 30px;
  }
  .support_contact .items ul {
    grid-template-columns: repeat(auto-fill, minmax(min(220px, 100%), 1fr));
    gap: 16px;
  }
  .support_contact .item {
    border-radius: 10px;
    padding: 30px 20px;
  }
  .support_contact .item .icon {
    width: 40px;
    height: 40px;
  }
  .support_contact .item .info {
    margin-top: 20px;
  }
  .support_contact .item .info .title {
    font-size: 18px;
    letter-spacing: unset;
  }
  .support_contact .item .info .desc {
    font-size: 14px;
    line-height: 1.5;
    letter-spacing: unset;
    margin-top: 10px;
  }
  .support_contact .item .more {
    font-size: 14px;
    gap: 8px;
    margin-top: 20px;
  }
  .support_contact .item .more::after {
    width: 12px;
    height: 12px;
  }
  .page_support {
    padding: 40px 0;
  }
  .page_support .items {
    border-radius: 10px;
  }
  .page_support .items li {
    padding: 30px 20px;
  }
  .page_support .items li:first-child .title {
    line-height: 1.5;
  }
  .page_support .items .title {
    font-size: 18px;
    line-height: 1.5;
    letter-spacing: unset;
    max-width: 320px;
  }
  .page_support .items .btn {
    font-size: 14px;
    margin-top: 20px;
    min-width: 80%;
    padding: 0 14px;
  }
  .page_video {
    padding: 50px 0;
  }
  .page_video .page_video_swiper {
    margin-top: 30px;
  }
  .page_video .page_video_swiper .swiper-slide {
    max-width: 350px;
  }
  .page_video .item {
    border-radius: 10px;
  }
  .page_video .item .img {
    border-radius: 10px;
  }
  .page_video .item .info {
    padding: 20px;
    gap: 14px;
    align-items: center;
  }
  .page_video .item .info .title {
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: unset;
  }
  .page_video .item .info .btn_play {
    width: 40px;
    height: 40px;
    margin: 0;
  }
  .page_video div.swiper-pagination {
    margin-top: 30px;
  }
  .page_products {
    padding: 50px 0;
    overflow: hidden;
  }
  .page_products .page_products_swiper {
    margin-top: 30px;
  }
  .page_products .page_products_swiper .swiper-slide {
    max-width: 282px;
  }
  .page_products .swiper_content {
    overflow: unset;
    padding: 0 20px;
  }
  .page_products .product_list a {
    border-radius: 10px;
  }
  .page_products .product_list .img {
    transform: translateY(0);
  }
  .page_products .product_list .info {
    transform: translateY(0);
  }
  .page_products .product_list .info .title {
    font-size: 18px;
    letter-spacing: unset;
  }
  .page_products .product_list .info p {
    font-size: 14px;
    margin-top: 10px;
    letter-spacing: unset;
  }
  .page_products .product_list .info ul {
    margin-top: 12px;
    padding-top: 12px;
    font-size: 14px;
    letter-spacing: unset;
  }
  .page_products .product_list .info .btn {
    padding: 0 20px;
    opacity: 1;
  }
  .social {
    gap: 16px;
  }
  .social a {
    width: 22px;
    height: 22px;
  }
  div.swiper-pagination.swiper-pagination-bullets {
    gap: 6px;
  }
  div.swiper-pagination.swiper-pagination-bullets .swiper-pagination-bullet {
    max-width: 35px;
  }
  div.swiper-pagination.swiper-pagination-bullets .swiper-pagination-bullet-active {
    max-width: 55px;
  }
  .nav_wrap .nav_list {
    width: calc(100% + 40px);
    margin: 0 -20px 0;
    padding: 0 20px;
    overflow-x: auto;
    flex-wrap: nowrap;
    gap: 14px;
    justify-content: unset;
  }
  .nav_wrap .nav_list::-webkit-scrollbar {
    display: none;
  }
  .nav_wrap .nav_list li:first-child {
    margin-left: auto;
  }
  .nav_wrap .nav_list li:last-child {
    margin-right: auto;
  }
  .nav_wrap .nav_list .nav_item {
    font-size: 14px;
    line-height: 38px;
    padding: 0 20px;
    min-width: unset;
    white-space: nowrap;
  }
  .breadcrumbs {
    line-height: 20px;
    min-height: 30px;
  }
  .breadcrumbs span span::before {
    margin: 0 6px;
  }
  .breadcrumbs span span:not(:has(a)) {
    letter-spacing: unset;
  }
  .swiper_control:has(.swiper_btns.middle) .swiper_btns.middle:not(:has(.swiper-button-lock)) {
    width: auto;
    padding: 0;
    margin: 0;
  }
  .swiper_control:has(.swiper_btns.middle) div.swiper-pagination {
    justify-content: flex-start;
  }
  .blog_list .img {
    border-radius: 10px;
  }
  .blog_list .info {
    margin-top: 20px;
  }
  .blog_list .metas {
    font-size: 14px;
  }
  .blog_list .metas .cat {
    margin-right: 0;
  }
  .blog_list .title {
    font-size: 18px;
    margin-top: 10px;
    letter-spacing: unset;
  }
  .case_list .img {
    border-radius: 10px;
  }
  .case_list .title {
    font-size: 18px;
    margin-top: 14px;
  }
  .faq_list .faq_item {
    border-radius: 10px;
    margin-bottom: 14px;
  }
  .faq_list .faq_item.active {
    margin-bottom: 14px;
  }
  .faq_list .faq_item.active .question {
    padding-top: 14px;
  }
  .faq_list .faq_item .question {
    font-size: 18px;
    padding: 14px 20px;
    gap: 14px;
  }
  .faq_list .faq_item .question i {
    width: 20px;
    height: 20px;
    margin: 0;
  }
  .faq_list .faq_item .answer {
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
    padding: 0 20px 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;
  }

  .video_pop .pop_content {
    max-width: 96vw;
    width: 96vw;
    height: auto;
  }

  .search_drawer .content {
    height: 100%;
  }
  .search_drawer .close {
    width: 20px;
    height: 20px;
    bottom: 30px;
    left: unset;
    right: 30px;
    transform: translate(0);
  }
  .search_drawer .close:hover {
    transform: translate(0);
  }
  .search_drawer form {
    display: grid;
    grid-template-columns: 1fr auto;
  }
  .search_drawer input[type="text"] {
    height: 46px;
    font-size: 16px;
  }
  .search_drawer input[type="submit"] {
    width: 46px;
    height: 46px;
    display: block;
    overflow: hidden;
    text-indent: -999px;
    background: url(../img/icon-search.svg) no-repeat center/20px;
  }

  .quote_modal .modal_content {
    border-radius: 10px;
  }

  .post_main form#sytech-newsletter-subscription p.failed, .post_main form#sytech-newsletter-subscription p.success {
    top: 0;
  }
  .post_main form#sytech-newsletter-subscription p.failed.active, .post_main form#sytech-newsletter-subscription p.success.active {
    top: -10px;
  }
  /*** global css ***/
}
@media screen and (max-width: 576px) {
  header .btn {
    display: none;
  }
  header .btn_lang {
    width: 22px;
    height: 22px;
    overflow: hidden;
    text-indent: -999px;
    white-space: nowrap;
    padding: 0;
  }
  header .btn_lang::before {
    width: 100%;
    height: 100%;
  }
  header .header_top .lt,
  header .header_top .rt {
    display: none;
  }
  header .header_top .notice {
    width: 100%;
    text-align: center;
  }
  .page_cases .page_cases_swiper .swiper-slide {
    max-width: 100%;
  }
  .page_banner::before {
    width: 100%;
    opacity: 1;
    background-color: rgba(0, 0, 0, 0.2);
  }
  .page_banner .flex .head {
    width: 100%;
  }
  .faq_list .faq_item .question {
    font-size: 16px;
  }
  .page_support .items ul {
    flex-direction: column;
  }

  .quote_modal .modal_content {
    padding: 15px;
  }
  .quote_modal .contact_main .grid {
    gap: 15px;
  }
}
