* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --primary: #1b85c9;
  --secondary: #68c7f0;
  --tertiary: #1b84c8;
  --title: #1c1c1c;
  --text: #666;
  --text_w: rgba(255, 255, 255, 0.8);
  --border: #3e82c0;
  --border2: #3e83c1;
  --bg_w: #f2f4f6;
  --bg_w2: #f3f5f7;
  --bg: rgba(28, 93, 150, 0.74);
  --bg2: rgba(28, 93, 149, 0.74);
  --border_w: rgba(255, 255, 255, 0.14);
}
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);
}
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%;
  word-break: normal;
  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;
}
.flex_column {
  flex-direction: column;
}
body {
  font-size: 1.6rem;
  word-break: break-word;
  color: #fff;
  font-family: "Manrope", sans-serif;
  background: linear-gradient(to right,#3678AD,#13335F);
}
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;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999999;
  background: linear-gradient(to right,#3678AD,#13335F);
  display: flex;
  align-items: center;
  justify-content: center;
}
#fullscreen-loader::after {
  content: '';
  display: block;
  width: 40px;
  height: 40px;
  background: url('../img/favicon.svg') no-repeat center center;
  background-size: contain;
  animation: l20-2 1.6s infinite linear;
  filter: contrast(0) brightness(100);
}
/* @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;
  pointer-events: none;
}
.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;
}
.btn_line {
  display: inline-block;
  cursor: pointer;
  text-align: center;
  transition: all 0.3s;
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 1rem;
  font-size: 1.8rem;
  color: #fff;
  line-height: 6.3rem;
  padding: 0 4rem;
  font-weight: 600;
  letter-spacing: 0.012rem;
}
.btn_line:hover {
  border-color: #fff;
  background-color: #fff;
  color: var(--primary);
}
.btn_line.black {
  color: #161616;
  border-color: rgba(28, 28, 28, 0.5);
  font-weight: 700;
  letter-spacing: unset;
}
.btn_line.black:hover {
  background-color: var(--primary);
  border-color: var(--primary);
  color: #fff;
}
.btn {
  display: inline-block;
  cursor: pointer;
  text-align: center;
  transition: all 0.3s;
  background-color: var(--primary);
  border: 1px solid var(--primary);
  border-radius: 1rem;
  font-size: 1.8rem;
  color: #fff;
  line-height: 6.2rem;
  padding: 0 3rem;
  min-width: 18.8rem;
  font-weight: 600;
  letter-spacing: 0.012rem;
}
.btn:hover {
  background-color: transparent;
  color: var(--primary);
}
.btn_more {
  display: inline-grid;
  grid-template-columns: 2.6rem 1fr;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s;
  font-size: 1.8rem;
  line-height: normal;
  font-weight: 700;
  gap: 1.5rem;
}
.btn_more::before {
  display: inline-block;
  padding-bottom: 61.54%;
  content: '';
  background: url("../img/nav-r.svg") no-repeat center / contain;
  transition: all 0.3s;
  margin-top: 0.4rem;
}
.btn_more:hover {
  color: var(--secondary);
  gap: 2rem;
}
.btn_i {
  display: inline-grid;
  align-items: center;
  cursor: pointer;
  text-transform: uppercase;
  background-color: transparent;
  transition: all 0.3s;
  grid-template-columns: 5rem 1fr;
  font-size: 1.8rem;
  font-weight: 700;
  gap: 1.6rem;
}
.btn_i::before {
  display: block;
  padding-bottom: 100%;
  border-radius: 1.2rem;
  content: '';
  background: url("../img/arrow-r-w.svg") no-repeat center / 34% var(--tertiary);
  transition: all 0.3s;
}
.btn_i:hover {
  color: var(--primary);
  gap: 2rem;
}
.btn_single {
  display: inline-block;
  content: '';
  cursor: pointer;
  transition: all 0.3s;
  background-color: var(--primary);
  border-radius: 1.2rem;
  width: 6rem;
}
.btn_single::after {
  display: block;
  padding-bottom: 100%;
  background: url("../img/arrow-r-w.svg") no-repeat center / 28.3333%;
  content: '';
  transition: all 0.3s;
}
.btn_single:hover {
  background-color: var(--title);
}
.swiper_btns {
  gap: 2rem;
  display: flex;
}
.swiper_btns div {
  width: 6.6rem;
  cursor: pointer;
  transition: all 0.3s;
  border-radius: 1.2rem;
  border: 1px solid var(--bg_w);
  background-color: var(--bg_w);
}
.swiper_btns div::after {
  content: '';
  display: block;
  width: 100%;
  padding-bottom: 100%;
  transition: all 0.3s;
  background: url(../img/arrow.svg) no-repeat center / 34.375%;
  filter: contrast(0) brightness(0);
}
.swiper_btns div:hover {
  border-color: var(--primary);
  background-color: var(--primary);
}
.swiper_btns div:hover::after {
  filter: contrast(0) brightness(2);
}
.swiper_btns .btn_next::after {
  transform: rotate(180deg);
}
.swiper_btns .swiper-button-disabled {
  pointer-events: none;
  border-color: rgba(255, 255, 255, 0.4);
  background-color: transparent;
}
.swiper_btns .swiper-button-disabled::after {
  filter: contrast(0) brightness(2);
}
.swiper_btns .swiper-button-lock {
  display: block;
  opacity: 0;
  pointer-events: none;
}
.swiper_btns.middle {
  width: 98%;
  max-width: 168.9rem;
  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;
}
.syedittext p,
.syedittext .desc {
  font-size: 1.8rem;
  line-height: 3rem;
  color: var(--text_w);
  font-weight: 300;
  letter-spacing: 0.012rem;
}
.head.bn p {
  font-size: 2.2rem;
  line-height: 3.2rem;
  letter-spacing: 0.018rem;
}
.head .subtitle {
  display: inline-grid;
  grid-template-columns: 1.7rem 1fr;
  align-items: center;
  font-size: 1.8rem;
  line-height: normal;
  text-transform: uppercase;
  gap: 1.3rem;
  margin-bottom: 1rem;
  color: var(--text_w);
  font-weight: 300;
  letter-spacing: 0.012rem;
}
.head .subtitle::before {
  display: block;
  padding-bottom: 100%;
  content: '';
  background: url("../img/icon-subtitle.svg") no-repeat center / contain;
  background-image: url('../img/favicon.svg') !important;
  filter: contrast(0) brightness(100);
}
.head .subtitle.w_icon {
  gap: 1.5rem;
}
.head .subtitle.w_icon::before {
  background-image: url("../img/icon-subtitle-w.svg");
}
.head h1 {
  font-size: 5.8rem;
  line-height: 1.18965517;
  font-weight: 700;
  letter-spacing: 0.04rem;
}
.head h2 {
  font-size: 4.8rem;
  line-height: 1.29166667;
  font-weight: 700;
  letter-spacing: 0.03rem;
}
.head h2 span {
  color: var(--primary);
}
.head p {
  font-size: 1.8rem;
  line-height: 3rem;
  color: var(--text_w);
  font-weight: 300;
  letter-spacing: 0.015rem;
}
header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 996;
  width: 100%;
  transition: all 0.3s;
  border-bottom: 1px solid rgba(255, 255, 255, 0.19);
  backdrop-filter: blur(6px);
}
header::before {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  content: '';
  background-image: linear-gradient(to bottom, #000 -35.42%, transparent 132.1%);
  opacity: 0.74;
  z-index: -1;
  pointer-events: none;
}
header > .content {
  /* width: calc(100% - 4rem);
  max-width: 180rem; */
}
header.opt {
  top: -9.6rem;
}
header .lt {
  display: flex;
  align-items: center;
  padding-bottom: 0.2%;
  margin-right: 2.1%;
}
header .lt .logo {
  display: block;
  position: relative;
}
header .lt .logo img {
  display: block;
  width: auto;
  height: 3.68536rem;
  filter: contrast(0) brightness(100);
}
header .lt .logo p {
  width: 1px;
  height: 1px;
  overflow: hidden;
  position: absolute;
  clip: rect(1px, 1px, 1px, 1px);
}
header nav .menu {
  display: flex;
  gap: 4.1rem;
}
header nav .menu > li {
  position: relative;
  z-index: 2;
}
header nav .menu > li::after {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  content: '';
  background-color: var(--primary);
  transition: all 0.3s;
  opacity: 0;
}
header nav .menu > li > a {
  display: block;
  font-size: 17px;
  transition: all 0.3s;
  line-height: 9.6rem;
  font-weight: 400;
  letter-spacing: 0.012rem;
}
header nav .menu > li.current-menu-item::after,
header nav .menu > li.current-menu-parent::after,
header nav .menu > li:hover::after {
  opacity: 1;
}
header nav .menu > li:hover ul {
  opacity: 1;
  pointer-events: all;
}
header nav .menu > li:hover ul li {
  transform: translate(0);
}
header nav .menu > li.menu-item .sub-menu {
  /* display: none; */
}
header nav .sub-menu {
  left: -2.4rem;
  position: absolute;
  min-width: 20rem;
  background-color: rgba(0, 0, 0, 0.74);
  backdrop-filter: blur(6px);
  box-shadow: 0 0.2rem 0.5rem rgba(0, 0, 0, 0.1);
  display: block;
  pointer-events: none;
  opacity: 0;
  transition: all 0.3s;
  z-index: -1;
  width: calc(100% + 4.8rem);
}
header nav .sub-menu > li {
  transition: all 0.4s;
  transform: translateY(-1.6rem);
}
header nav .sub-menu > li:last-child a {
  border-bottom: none;
}
header nav .sub-menu > li > a {
  display: block;
  padding: 1.6rem;
  transition: all 0.3s;
  border-bottom: 1px solid rgba(255, 255, 255, 0.19);
  font-size: 16px;
}
header nav .sub-menu > li > a:hover {
  color: #fff;
  background-color: var(--primary);
  border-bottom-color: var(--primary);
}
header .btns {
  gap: 3rem;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-height: 9.6rem;
}
header .btns .btn_search {
  width: 20px;
  height: 20px;
  cursor: pointer;
  background: url(../img/icon-search.svg) no-repeat center / contain;
}
header .btns .btn_lang {
  width: 23px;
  height: 23px;
  cursor: pointer;
  background: url(../img/icon-lang.svg) no-repeat center / contain;
  margin-left: 1.1rem;
}
header .btns .btn_compare {
  position: relative;
  width: 23px;
  height: 23px;
  cursor: pointer;
  background: url(../img/icon-compare.svg) no-repeat center / contain;
  margin-top: 2px;
}
header .btns .btn_compare i {
  position: absolute;
  right: 0;
  top: 0;
  border-radius: 2rem;
  text-align: center;
  padding: 0 2px;
  background-color: #006ab4;
  font-size: 12px;
  font-weight: 500;
  line-height: 15px;
  min-width: 15px;
  white-space: nowrap;
  transform: translate(42%, -25%);
}
header .btns .btn_compare.pulse {
  animation: comparePulse 0.6s ease 2;
}
@keyframes comparePulse {
  0% { transform: scale(1); }
  40% { transform: scale(1.35); }
  100% { transform: scale(1); }
}
/* Compare Toast */
.compare-toast {
  position: fixed;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 6px 24px rgba(0,0,0,0.15);
  opacity: 0;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 14px;
  max-width: 360px;
}
.compare-toast.show {
  opacity: 1;
}
.compare-toast-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  flex-shrink: 0;
}
.compare-toast.success .compare-toast-icon {
  background: #10b981 url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E") no-repeat center / 14px;
}
.compare-toast.info .compare-toast-icon {
  background: #6b7280 url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1 15h-2v-6h2v6zm0-8h-2V7h2v2z'/%3E%3C/svg%3E") no-repeat center / 14px;
}
.compare-toast.warning .compare-toast-icon {
  background: #f59e0b url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M1 21h22L12 2 1 21zm12-3h-2v-2h2v2zm0-4h-2v-4h2v4z'/%3E%3C/svg%3E") no-repeat center / 14px;
}
.compare-toast-text {
  color: #333;
  font-weight: 500;
  white-space: nowrap;
}
.compare-toast-btn {
  display: none;
  padding: 5px 12px;
  background: #006ab4;
  color: #fff;
  border-radius: 4px;
  font-size: 12px;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s;
}
.compare-toast-btn:hover {
  background: #005290;
}
header .btns .btn_menu {
  display: none;
}
header .btns .btn {
  font-size: 1.6rem;
  line-height: 5.8rem;
  min-width: 19.8rem;
  margin-left: 2.1rem;
  margin-bottom: 2px;
}
footer {
  background-color: #161617;
}
footer:not(:has(.footer_contact)) .main {
  padding-top: 11.4rem;
}
footer .main {
  padding: 10.9rem 0 7.8rem;
}
footer .main strong {
  display: block;
  font-size: 1.8rem;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 0.018rem;
}
footer .main .flex {
  gap: 5rem 0.4rem;
}
footer .main .slide_intro {
  width: 31rem;
  margin-top: -1.6rem;
  margin-right: auto;
}
footer .main .slide_intro .logo {
  display: block;
  position: relative;
  max-width: 29.1rem;
}
footer .main .slide_intro .logo img {
  display: block;
  width: 100%;
  height: auto;
  filter: contrast(0) brightness(100);
}
footer .main .slide_intro .logo p {
  width: 1px;
  height: 1px;
  overflow: hidden;
  position: absolute;
  clip: rect(1px, 1px, 1px, 1px);
}
footer .main .slide_intro p {
  font-size: 1.7rem;
  line-height: 3rem;
  opacity: 0.75;
  hyphens: auto;
  margin-top: 2.7rem;
  font-weight: 300;
  letter-spacing: 0.015rem;
}
footer .main .nav {
  display: grid;
  grid-template-columns: auto auto;
  gap: 5.2rem 2rem;
  width: 64rem;
}
footer .main .slide_obj strong {
  margin-bottom: 2.6rem;
}
footer .main .slide_obj li a {
  font-size: 1.7rem;
  opacity: 0.75;
  transition: all 0.3s;
  vertical-align: top;
  text-decoration: underline transparent;
  font-weight: 300;
  letter-spacing: 0.015rem;
}
footer .main .slide_obj li a:hover {
  opacity: 1;
  color: var(--primary);
  text-decoration-color: var(--primary);
}
footer .main .slide_obj li + li {
  margin-top: 1.3rem;
}
footer .main .slide_connect {
  width: 36.1rem;
}
footer .main .slide_connect strong {
  margin-bottom: 2.4rem;
}
footer .main .slide_connect .connect li + li {
  margin-top: 2.4rem;
}
footer .main .slide_connect .connect li {
  position: relative;
  padding-left: 8rem;
}
footer .main .slide_connect .connect li::before {
  content: '';
  display: block;
  width: 6rem;
  height: 4.1rem;
  background: no-repeat center left / contain;
  position: absolute;
  left: 0;
  top: 0.8rem;
  border-right: 2px solid #68c8f1;
}
footer .main .slide_connect .connect li a {
  font-size: 2.145rem;
  transition: all 0.3s;
  vertical-align: top;
  text-decoration: underline transparent;
  font-weight: 500;
  letter-spacing: 0.014rem;
}
footer .main .slide_connect .connect li a:hover {
  color: var(--primary);
  text-decoration-color: var(--primary);
}
footer .main .slide_connect .connect li .label {
  color: rgba(255, 255, 255, 0.5);
  font-size: 1.43rem;
  font-weight: 500;
  letter-spacing: 0.012rem;
  margin-top: 0.4rem;
}
footer .main .slide_connect .connect .phone::before {
  background-image: url(../img/ft-phone.svg);
}
footer .main .slide_connect .connect .email::before {
  background-image: url(../img/ft-email.svg);
}
footer .main .slide_connect .connect .whatsapp::before {
  background-image: url(../img/ft-whatsapp.svg);
}
footer .main .slide_connect .social {
  gap: 2rem 1rem;
  display: flex;
  flex-wrap: wrap;
  margin-top: 4.6rem;
}
footer .main .slide_connect .social a {
  opacity: 1;
  display: block;
  width: 4.9rem;
  height: 4.9rem;
  overflow: hidden;
  text-indent: -999px;
  position: relative;
  transition: all 0.3s;
  border-radius: 0.7rem;
  background-color: #242425;
}
footer .main .slide_connect .social a::after {
  content: '';
  display: block;
  position: absolute;
  inset: 0;
  background: no-repeat center / contain;
}
footer .main .slide_connect .social .active a {
  background-color: var(--primary);
}
footer .main .slide_connect .social a:hover {
  transform: scale(1.1);
}
footer .main .slide_connect .social .facebook a::after {
  background-image: url(../img/facebook.svg);
}
footer .main .slide_connect .social .twitter a::after {
  background-image: url(../img/twitter.svg);
}
footer .main .slide_connect .social .youtube a::after {
  background-image: url(../img/youtube.svg);
}
footer .main .slide_connect .social .instagram a::after {
  background-image: url(../img/instagram.svg);
}
footer .main .slide_connect .social .linkedin a::after {
  background-image: url(../img/linkedin.svg);
}
footer .bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 4.3rem 16.5rem 5.4rem 0;
}
footer .bottom p,
footer .bottom a {
  font-size: 1.4rem;
  opacity: 0.71;
  font-weight: 300;
  letter-spacing: 0.012rem;
}
footer .bottom a {
  opacity: 0.68;
  display: block;
  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::after {
  width: 1px;
  height: 1.1rem;
  background-color: #aaaaaa;
  opacity: 0.15;
  display: inline-block;
  content: '';
  margin: 0 1.5rem 0 1.6rem;
}
footer .bottom ul li:last-child::after {
  margin-right: 0;
  margin-left: 1.4rem;
}
footer .footer_float {
  position: fixed;
  left: 0;
  right: 0;
  z-index: 99;
  pointer-events: none;
  bottom: 3.7rem;
}
footer .footer_float #backtop {
  position: relative;
  width: 4.9rem;
  display: block;
  margin-left: auto;
  transition: all 0.3s;
  pointer-events: all;
  cursor: pointer;
  transform: translateY(100%);
  opacity: 0;
}
footer .footer_float #backtop span {
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  right: 0;
  opacity: 0;
  transition: all 0.3s;
  white-space: nowrap;
  pointer-events: none;
  z-index: -1;
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.71);
  font-weight: 300;
  letter-spacing: 0.012rem;
}
footer .footer_float #backtop.active {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}
footer .footer_float #backtop i {
  padding-bottom: 100%;
  display: block;
  content: '';
  transition: all 0.3s;
  background: url("../img/icon-top.svg") no-repeat center / contain var(--primary);
  border-radius: 0.7rem;
}
footer .footer_float #backtop:hover i {
  transform: scale(1.1);
}
footer .footer_float #backtop:hover span {
  right: 153.1%;
  opacity: 1;
}
.header_menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 999;
  backdrop-filter: blur(2px);
  padding: 7rem 0 9.7rem;
  display: none;
}
.header_menu .flex {
  gap: 3rem;
  justify-content: space-between;
}
.header_menu .list {
  width: 29.1666667%;
  display: none;
  max-height: calc(100vh - 28rem);
  overflow-y: auto;
  padding-top: 0.4rem;
}
.header_menu .list.active {
  display: block !important;
}
.header_menu .list li {
  display: none;
}
.header_menu .list li.active {
  display: block;
}
.header_menu .list a {
  display: block;
  position: relative;
  border-radius: 2rem;
  overflow: hidden;
  background-image: radial-gradient(circle, #fff, #bfd4ec);
}
.header_menu .list a:hover img {
  transform: scale(1.02);
}
.header_menu .list .img {
  padding-bottom: 80.9524%;
}
.header_menu .list .btn_single {
  position: absolute;
  left: 2rem;
  bottom: 2rem;
  z-index: 2;
}
.header_menu .nav {
  flex: 1;
  max-width: 89.8rem;
  max-height: calc(100vh - 28rem);
  overflow-y: auto;
}
.header_menu .nav > ul {
  display: flex;
}
.header_menu .nav > ul > li {
  flex: 1;
}
.header_menu .nav > ul > li > a {
  font-size: 20px;
  font-weight: 800;
  padding-right: 2rem;
}
.header_menu .nav div {
  border-top: 1px solid rgba(255, 255, 255, 0.24);
  padding-top: 2.7rem;
  margin-top: 2.4rem;
  padding-right: 2rem;
  padding-left: 1rem;
}
.header_menu .nav div li + li {
  margin-top: 3.1rem;
}
.header_menu .nav div .active a {
  text-decoration: underline;
  color: #68c8f1;
}
.header_menu .nav div .active a::before {
  filter: unset;
}
.header_menu .nav div a {
  position: relative;
  vertical-align: top;
  transition: all 0.3s;
  font-size: 17px;
  padding-left: 2.4rem;
  font-weight: 400;
  letter-spacing: 0.03rem;
}
.header_menu .nav div a::before {
  position: absolute;
  left: 0;
  top: 0.6rem;
  width: 1.4rem;
  height: 1.4rem;
  background: url("../img/nav-r2.svg") no-repeat center left / contain;
  content: '';
  transition: all 0.3s;
  filter: contrast(0) brightness(2);
}
.header_menu.header_app_menu {
  padding-bottom: 8.3rem;
}
.header_menu.header_app_menu .list {
  width: 44.375%;
}
.header_menu.header_app_menu .list a {
  background-image: unset;
}
.header_menu.header_app_menu .list .img {
  padding-bottom: 51.6319%;
}
.header_menu.header_app_menu .nav {
  max-width: 62rem;
}
.header_menu.header_app_menu .nav div {
  padding-top: 3.2rem;
}
.header_menu.header_cat_menu .nav div ul{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3.1rem 1rem;
}
.header_menu.header_cat_menu .nav div li + li{
  margin-top: 0;
}
.header_menu.header_app_menu .nav div ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3.1rem 1rem;
}
.header_menu.header_app_menu .nav div ul li + li {
  margin-top: 0;
}
.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.3);
  opacity: 0;
  pointer-events: none;
}
.header-menu-overlay.active {
  opacity: 1;
  pointer-events: all;
}
.footer_contact {
  width: calc(100% - 4rem);
  max-width: 163.2rem;
  margin: -15.7rem auto 0;
}
.footer_contact > img {
  border-radius: 2rem;
}
.footer_contact .flex {
  padding: 4.2rem 0;
  gap: 2rem 3.4rem;
}
.footer_contact .img {
  width: 31.944444%;
  margin-left: -4.0277778%;
  --h: 74.78261%;
  margin-top: -8.7rem;
}
.footer_contact .img:hover img {
  transform: scale(1.02);
}
.footer_contact .head {
  flex: 1;
  width: 100%;
}
.footer_contact .head p {
  color: rgba(255, 255, 255, 0.75);
}
.footer_contact p {
  margin-top: 1.9rem;
}
.footer_contact .btn_line {
  padding: 0 3.8rem;
  margin-top: 0.3rem;
}
.page_blog {
  padding: 8.7rem 0 31.8rem;
  position: relative;
  z-index: 9;
}
.page_blog .page_blog_swiper {
  margin-top: 4.9rem;
  border-radius: 2rem;
  overflow: hidden;
}
.page_blog .page_blog_swiper .swiper-slide {
  max-width: 455px;
}
.page_blog .swiper_btns {
  top: 45.6%;
}
.page_banner {
  z-index: 3;
}
.page_banner::after,
.page_banner::before {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 33.8295%;
  background-image: linear-gradient(to top, #1458a8 -8%, transparent);
  content: '';
  z-index: 2;
  pointer-events: none;
  opacity: 0.74;
}
.page_banner::before {
  height: 44.655%;
  opacity: 1;
  background-image: linear-gradient(to top, #00040c -25.454545%, transparent);
  z-index: 1;
}
.page_banner .bn_mask {
  height: 107.7%;
  pointer-events: none;
  z-index: 3;
}
.page_banner .flex {
  min-height: 73.9rem;
  padding: 12rem 0 8.4rem;
}
.page_banner .img {
  width: 58.333333%;
  --h: 59.52380952%;
  margin-right: -7.7777778%;
  margin-left: -10%;
}
.page_banner .img:hover img {
  transform: scale(1.02);
}
.page_banner .head {
  position: relative;
  z-index: 3;
  flex: 1;
  width: 100%;
  padding-bottom: 3.2%;
}
.page_banner p {
  margin-top: 2.5rem;
}
.page_banner .bn_arrow {
  position: absolute;
  bottom: 12.2rem;
  right: 2.75%;
  z-index: 2;
  width: 1rem;
  background: url("../img/bn-line.svg") no-repeat center / contain;
}
.page_banner .bn_arrow::after {
  padding-bottom: 1920%;
  content: '';
  display: block;
}
.sec_bg ~ section .content,
.sec_bg ~ section .swiper_box {
  z-index: 2;
}
.unit_toggle ul {
  display: flex;
  align-items: center;
  gap: 2.8rem;
}
.unit_toggle li {
  cursor: pointer;
  position: relative;
  font-size: 1.8rem;
  padding-left: 3.5rem;
  font-weight: 500;
  letter-spacing: 0.04rem;
}
.unit_toggle li.active::before {
  border-color: var(--primary);
}
.unit_toggle li::before {
  position: absolute;
  left: 0;
  top: 1px;
  width: 0.9rem;
  height: 0.9rem;
  border-radius: 50%;
  background-color: var(--bg_w2);
  border: 0.7rem solid var(--bg_w2);
  content: '';
  transition: all 0.3s;
}
.parameter_table {
  border: 1px solid var(--border2);
  border-radius: var(--radius);
  --radius: 2.3rem;
}
.parameter_table table {
  position: relative;
  z-index: 2;
  table-layout: fixed;
  text-align: center;
}
.parameter_table table::before {
  position: absolute;
  left: 0;
  bottom: 0;
  height: calc(100% - var(--h));
  width: var(--w);
  content: '';
  border-bottom-left-radius: var(--radius);
  z-index: -1;
  background-color: #1e669b;
}
.parameter_table table thead tr {
  background-color: var(--primary);
}
.parameter_table table thead tr th:first-child {
  border-top-left-radius: var(--radius);
}
.parameter_table table thead tr th:last-child {
  border-top-right-radius: var(--radius);
}
.parameter_table table tbody tr:last-child td::before {
  display: none;
}
.parameter_table table tbody:nth-of-type(even) {
  background-color: rgba(27, 133, 201, 0.2);
}
.parameter_table table tbody:last-child th {
  border-bottom-left-radius: var(--radius);
}
.parameter_table table tbody th {
  vertical-align: top;
}
.parameter_table table tbody tr:first-child td {
  padding-top: 2.5rem;
}
.parameter_table table tbody tr:last-child td {
  padding-bottom: 2.4rem;
}
.parameter_table table td,
.parameter_table table th {
  padding: 2.3rem 2rem;
}
.parameter_table table td:first-child,
.parameter_table table th:first-child {
  width: 16.666667%;
}
.parameter_table table th {
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 0.015rem;
}
.parameter_table table td {
  position: relative;
  font-size: 1.8rem;
  color: rgba(255, 255, 255, 0.74);
  padding-top: 0.7rem;
  padding-bottom: 1.3rem;
  letter-spacing: 0.012rem;
}
.parameter_table table td::before {
  position: absolute;
  width: 100%;
  bottom: 0;
  content: '';
  left: 0;
  border-bottom: 1px solid var(--border_w);
}
.parameter_table table td:last-child::before {
  width: calc(100% - 3rem);
}
.page_vlog {
  padding: 5.4rem 0 5.5rem;
}
.page_vlog .page_vlog_swiper {
  overflow: hidden;
  margin-top: 5.1rem;
  border-radius: 2rem 2rem 0 0;
}
.page_vlog .page_vlog_swiper .swiper-slide {
  max-width: 455px;
}
.page_nav {
  padding: 15rem 0 14.9rem;
}
.page_nav .nav .nav_list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(30rem, 100%), 1fr));
  gap: 2.5rem 1.66666667%;
}
.page_nav .nav .nav_item {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  transition: all 0.3s;
  cursor: pointer;
  border-radius: 2rem;
  border: 1px solid var(--border);
  background-color: rgba(28, 98, 154, 0.74);
  padding: 3.3rem 2rem 2.9rem;
}
.page_nav .nav .nav_item.active,
.page_nav .nav .nav_item:hover {
  background-color: var(--bg_w);
  border-color: var(--bg_w);
}
.page_nav .nav .nav_item.active .icon,
.page_nav .nav .nav_item:hover .icon {
  background-color: var(--tertiary);
  transform: translateY(0);
}
.page_nav .nav .nav_item.active .title,
.page_nav .nav .nav_item:hover .title {
  color: var(--title);
  transform: translateY(0);
  font-weight: 600;
  letter-spacing: unset;
}
.page_nav .nav .nav_item.active i,
.page_nav .nav .nav_item:hover i {
  opacity: 1;
  transform: translateY(0);
}
.page_nav .nav .nav_item .icon {
  width: 8.4rem;
  height: 8.4rem;
  border-radius: 50%;
  transition: all 0.3s, transform 0.4s;
  transform: translateY(0.7rem);
}
.page_nav .nav .nav_item .title {
  font-size: 2.112rem;
  text-align: center;
  transition: all 0.3s, transform 0.4s;
  margin-bottom: auto;
  margin-top: 1.9rem;
  transform: translateY(1.9rem);
  font-weight: 500;
  letter-spacing: 0.02rem;
}
.page_nav .nav .nav_item i {
  display: block;
  width: 1.4rem;
  height: 1.4rem;
  content: '';
  background: url("../img/arrow-down.svg") no-repeat center / contain;
  transition: all 0.3s, transform 0.4s;
  opacity: 0;
  margin-top: 1.1rem;
  transform: translateY(1.9rem);
}
.con_form form {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  border-radius: 1.9rem;
  background-color: var(--bg_w);
  padding: 3.194% 3.194% 3.542% 3.125%;
  gap: 1.2rem 0;
}
.con_form form span {
  width: 100%;
}
.con_form form .col-2 {
  width: 49.0007402%;
}
.con_form form .label {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: #081528;
  margin-bottom: 2px;
  margin-top: 1.7rem;
}
.con_form form .label:first-child {
  margin-top: 0;
}
.con_form form input,
.con_form form textarea,
.con_form form select {
  display: block;
  width: 100%;
  font-size: 1.7rem;
  font-weight: 500;
  color: #4f5154;
  border-radius: 0.4rem;
  border: 1px solid rgba(162, 164, 164, 0.5);
  background-color: transparent;
  height: 5.6rem;
  padding: 0 2rem 0.3rem;
}
.con_form form input::placeholder,
.con_form form textarea::placeholder,
.con_form form select::placeholder {
  color: #4f5154;
}
.con_form form input:focus,
.con_form form textarea:focus,
.con_form form select:focus {
  border-color: var(--primary);
}
.con_form form select {
  background: url("../img/icon-select.svg") no-repeat center right 1.9rem/1.2rem;
  padding-right: 4rem;
}
.con_form form textarea {
  padding: 1.4rem 2rem;
  height: 13.1rem;
  margin-top: -0.4rem;
}
.con_form form span:has(input[type=checkbox]) {
  margin-top: 1.5rem;
}
.con_form form input[type=checkbox] {
  width: 2.6rem;
  height: 2.6rem;
  padding: 0;
  border-radius: 0;
  vertical-align: top;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  -webkit-appearance: none;
}
.con_form form input[type=checkbox]::after {
  content: '';
  display: block;
  width: 80%;
  height: 80%;
  background: url(../img/gou.svg) no-repeat center / contain;
  transition: all 0.3s;
  opacity: 0;
}
.con_form form input[type=checkbox]:checked {
  background-color: transparent;
}
.con_form form input[type=checkbox]:checked::after {
  opacity: 1;
}
.con_form form input[type=checkbox] ~ span {
  vertical-align: top;
  cursor: pointer;
  font-size: 1.7rem;
  line-height: 2.8rem;
  color: #4f5154;
  display: inline-block;
  width: calc(100% - 3rem);
  padding-left: 1.8rem;
  max-width: 71rem;
}
.con_form form input[type=checkbox] ~ span a {
  font-weight: 500;
  color: var(--tertiary);
  text-decoration: underline;
  transition: all 0.3s;
}
.con_form form input[type=checkbox] ~ span a:hover {
  color: var(--secondary);
  text-decoration-color: transparent;
}
.con_form form span:has(input[type=submit]) {
  margin-top: 2.3rem;
}
.con_form form input[type=submit] {
  transition: all 0.3s;
  text-align: center;
  background-color: var(--tertiary);
  border-color: var(--tertiary);
  cursor: pointer;
  border-radius: 1rem;
  color: #fff;
  width: auto;
  font-size: 1.8rem;
  font-weight: 700;
  height: 6.4rem;
  padding: 0 4.1rem;
}
.con_form form input[type=submit]:hover {
  background-color: transparent;
  color: var(--primary);
}
.blog_list .active a {
  border-color: var(--bg_w);
  background-color: var(--bg_w);
}
.blog_list .active .info {
  color: var(--title);
}
.blog_list .active .info .date {
  opacity: 1;
  color: #636363;
}
.blog_list .active .info .btn_i {
  transform: translateX(0);
  color: var(--tertiary);
}
.blog_list .active .info .btn_i::before {
  opacity: 1;
}
.blog_list a {
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: 2rem;
  transition: all 0.3s;
  background-color: var(--bg2);
  border: 1px solid var(--border);
}
.blog_list a:hover img {
  transform: scale(1.02);
}
.blog_list .img {
  padding-bottom: 58.2%;
  margin: -1px;
  border-radius: 2rem 2rem 0 0;
}
.blog_list .cat {
  position: absolute;
  bottom: -1px;
  right: 6%;
  z-index: 2;
  display: inline-block;
  background-color: var(--tertiary);
  border-radius: 0.7rem 0.7rem 0 0;
  font-size: 1.8rem;
  font-weight: 500;
  text-align: center;
  line-height: 4.2rem;
  padding: 0 1.5rem;
}
.blog_list .info {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 6.6519% 7.9823%;
  overflow: hidden;
  transition: all 0.3s;
}
.blog_list .info .date {
  font-size: 1.8rem;
  opacity: 0.74;
}
.blog_list .info .title {
  font-size: 2.4rem;
  line-height: 3rem;
  font-weight: 700;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 3;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  margin-top: 1.6rem;
  margin-bottom: auto;
}
.blog_list .info .btn_i {
  transform: translateX(-6.6rem);
  margin-top: 5.4rem;
}
.blog_list .info .btn_i::before {
  opacity: 0;
}
.category_list .active a {
  background-color: var(--bg_w2);
  border-color: var(--bg_w2);
  color: var(--title);
}
.category_list .active .img::before {
  opacity: 1;
}
.category_list .active .info .desc {
  color: #797c7a;
  opacity: 0.8;
}
.category_list .active .info .btn_line {
  background-color: var(--primary);
  border-color: var(--primary);
}
.category_list .active .info .btn_line::after {
  opacity: 1;
  margin-right: 0;
}
.category_list a {
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: 1.9rem;
  border: 1px solid var(--border2);
  background-color: var(--bg);
  transition: all 0.3s;
}
.category_list a:hover img {
  transform: scale(1.02);
}
.category_list .img {
  padding-bottom: 41.7142857%;
}
.category_list .img::before {
  width: 100%;
  height: 63%;
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 1.9rem;
  background-image: radial-gradient(circle, #fff, #bfd4ec 150%);
  content: '';
  transition: all 0.3s;
  pointer-events: none;
  opacity: 0;
}
.category_list .info {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 0 5.43633763% 5.7225%;
}
.category_list .info .syedittext {
  flex: 1;
}
.category_list .info .title {
  font-size: 3rem;
  font-weight: 800;
}
.category_list .info .desc {
  opacity: 0.75;
  margin-top: 1.9rem;
  transition: all 0.3s;
}
.category_list .info .btn_line {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 3.6rem;
  gap: 1rem;
  line-height: normal;
  padding: 1.7rem 2rem 1.8rem;
  color: #fff;
}
.category_list .info .btn_line::after {
  width: 2.3rem;
  height: 2.3rem;
  display: inline-block;
  content: '';
  flex-shrink: 0;
  background: url("../img/arrow-r-w.svg") no-repeat center / contain;
  transition: all 0.3s;
  margin-right: -3rem;
  opacity: 0;
}
.category_list .info .btn_line:hover::after {
  transform: translateX(20%);
}
.products_list .active a {
  background-color: var(--bg_w2);
  border-color: var(--bg_w2);
}
.products_list .active a::before {
  opacity: 1;
}
.products_list .active .info::after {
  opacity: 1;
}
.products_list .active .info .cat {
  color: var(--primary);
  opacity: 1;
  font-weight: 600;
  letter-spacing: unset;
}
.products_list .active .info .title {
  color: var(--title);
}
.products_list .active .info ul li {
  color: #707070;
  border-bottom-color: rgba(112, 112, 112, 0.14);
  font-weight: 600;
  letter-spacing: unset;
}
.products_list .active .info ul li span:last-child {
  font-weight: 400;
}
.products_list .active .btns .btn_line {
  border-color: #8d8d8d;
  color: #161616;
  background-color: var(--bg_w2);
  bottom: calc(100% + 1.5rem);
}
.products_list .active .btns .btn_line::before {
  filter: unset;
}
.products_list .active .btns .btn_line:hover {
  border-color: var(--primary);
  color: #fff;
  background-color: var(--primary);
}
.products_list .active .btns .btn_line:hover::before {
  filter: contrast(0) brightness(2);
}
.products_list .active .btns .btn {
  opacity: 1;
}
.products_list a {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: 1.9rem;
  border: 1px solid var(--border2);
  background-color: var(--bg);
  transition: all 0.3s;
  overflow: hidden;
}
.products_list a::before {
  width: 100%;
  height: 26.55123%;
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 1.9rem;
  background-image: radial-gradient(circle, #fff, #bfd4ec 150%);
  content: '';
  transition: all 0.3s;
  pointer-events: none;
  opacity: 0;
}
.products_list a:hover img {
  transform: scale(1.02);
}
.products_list .img {
  max-width: 56rem;
  margin: 0 auto;
  width: 100%;
  --h: 61.7857143%;
}
.products_list .info {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 0.5rem 4.2rem 2.9rem;
}
.products_list .info::after {
  width: 100%;
  height: 80.925%;
  position: absolute;
  left: 0;
  bottom: 0;
  content: '';
  pointer-events: none;
  background-image: linear-gradient(to top, var(--bg_w2) 50%, transparent);
  opacity: 0;
  transition: all 0.3s;
}
.products_list .info .syedittext {
  flex: 1;
}
.products_list .info .cat {
  font-size: 1.8rem;
  opacity: 0.85;
  transition: all 0.3s;
  text-align: right;
  font-weight: 500;
  letter-spacing: 0.013rem;
}
.products_list .info .title {
  transition: all 0.3s;
  font-size: 3rem;
  font-weight: 800;
  margin-top: 0.6rem;
}
.products_list .info ul {
  margin-top: 1.4rem;
}
.products_list .info ul li {
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--border_w);
  transition: all 0.3s;
  color: rgba(255, 255, 255, 0.75);
  padding: 0.5rem 0 0.8rem;
  font-weight: 500;
  letter-spacing: 0.012rem;
}
.products_list .info ul li:last-child {
  border-bottom: none;
}
.products_list .info ul span {
  flex: 1;
}
.products_list .info ul span:last-child {
  text-align: right;
  font-weight: 300;
}
.products_list .btns {
  position: relative;
  z-index: 2;
  margin-top: 2.3rem;
  height: 6.1rem;
}
.products_list .btns .btn,
.products_list .btns .btn_line {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
}
.products_list .btns .btn {
  line-height: 5.8rem;
  bottom: 0;
  opacity: 0;
}
.products_list .btns .btn_line {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 5.9rem;
  padding: 0 2rem;
  gap: 1.2rem;
  z-index: 2;
}
.products_list .btns .btn_line::before {
  width: 1.7rem;
  height: 1.7rem;
  display: inline-block;
  content: '';
  flex-shrink: 0;
  background: url("../img/icon-change.svg") no-repeat center / contain;
  transition: all 0.3s;
  filter: contrast(0) brightness(2);
}
.products_list .btns .btn_line.in_compare::before{
  background-image: url('../img/icon_correct.svg');
  background-size: 120%;
}
.products_list .btns .btn_line:hover::after {
  transform: translateX(20%);
}
.vlog_item {
  display: block;
  height: 100%;
  cursor: pointer;
}
.vlog_item:hover img {
  transform: scale(1.02);
}
.vlog_item .img {
  border-radius: 2rem;
  padding-bottom: 73.4054474%;
}
.vlog_item .btn_play {
  position: absolute;
  left: 3.974%;
  bottom: 5.71%;
  z-index: 2;
  width: 5.1rem;
  border-radius: 1rem;
  background: url("../img/icon-play.svg") no-repeat center / 27.5% var(--primary);
  cursor: pointer;
  transition: all 0.3s;
}
.vlog_item .btn_play::after {
  padding-bottom: 86.27451%;
  display: block;
  content: '';
}
.vlog_item .btn_play:hover {
  background-color: var(--secondary);
  transform: scale(1.1);
}
.vlog_item .title {
  font-size: 2rem;
  line-height: 1.3;
  max-width: 35rem;
  margin-top: 2rem;
  font-weight: 500;
  letter-spacing: 0.04rem;
}
.intro_item {
  border-top: 1px solid var(--border_w);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 3rem;
  padding-bottom: 13.2rem;
}
.intro_item .lt {
  flex: 1;
  max-width: 36rem;
  padding: 5.7rem 0;
}
.intro_item .lt .title {
  font-size: 3.9rem;
  line-height: 4.6rem;
  font-weight: 600;
}
.intro_item .lt .icon {
  width: 11.4rem;
  height: 11.4rem;
  margin-left: -2.1rem;
  margin-top: 1px;
}
.intro_item .lt .desc {
  font-size: 2.4rem;
  line-height: 4rem;
  opacity: 0.74;
  margin-top: 6.1rem;
  max-width: 24.6rem;
  font-weight: 300;
  letter-spacing: 0.02rem;
}
.intro_item .rt {
  width: 65.9722222%;
}
.intro_item .rt .desc {
  font-size: 1.8rem;
  line-height: 3rem;
  opacity: 0.74;
  margin-top: 2.3rem;
  font-weight: 300;
  letter-spacing: 0.012rem;
}
.intro_item .swiper_box .intro_gallery_swiper {
  overflow: hidden;
}
.intro_item .swiper_box .intro_gallery_swiper .img {
  padding-bottom: 50.5263158%;
  border-radius: 0.6rem;
}
.intro_item .swiper_box .intro_gallery_swiper .img:hover img {
  transform: scale(1.02);
}
.intro_item .swiper_box .intro_thumbs_swiper {
  overflow: hidden;
  margin-top: 2rem;
  border-radius: 0.6rem;
}
.intro_item .swiper_box .intro_thumbs_swiper .swiper-slide {
  max-width: 303px;
  cursor: pointer;
}
.intro_item .swiper_box .intro_thumbs_swiper .swiper-slide-thumb-active .img {
  opacity: 1;
}
.intro_item .swiper_box .intro_thumbs_swiper .img {
  padding-bottom: 64.51613861%;
  border-radius: 0.6rem;
  transition: all 0.3s;
  opacity: 0.5;
}
.intro_item .swiper_box .intro_thumbs_swiper .img:hover img {
  transform: scale(1.02);
}
.intro_item .swiper_box .thumbs {
  position: relative;
}
.intro_item .swiper_box .swiper_btns {
  width: 105.684%;
  top: 49%;
}
.intro_item .swiper_box .swiper_btns div {
  width: 5.4rem;
  border-color: var(--tertiary);
  background-color: var(--tertiary);
}
.intro_item .swiper_box .swiper_btns div::after {
  filter: contrast(0) brightness(2);
}
.intro_item .swiper_box .swiper_btns div:hover {
  border-color: var(--secondary);
  background-color: var(--secondary);
}
.intro_item .swiper_box .swiper_btns .swiper-button-disabled {
  border-color: #fff;
  background-color: #fff;
}
.intro_item .swiper_box .swiper_btns .swiper-button-disabled::after {
  filter: contrast(0) brightness(0);
}
.intro_item .ad_lis {
  margin-top: 3.1rem;
  padding-bottom: 0.8rem;
}
.intro_item .ad_lis strong {
  display: block;
  font-size: 2.3rem;
  margin-bottom: 2.5rem;
  font-weight: 500;
  letter-spacing: 0.02rem;
}
.intro_item .ad_lis ul {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(35rem, 100%), 1fr));
  gap: 2.6rem 2px;
}
.intro_item .ad_lis li {
  display: grid;
  grid-template-columns: 8.5rem 1fr;
  align-items: start;
  gap: 3.2rem;
}
.intro_item .ad_lis .icon {
  padding-bottom: 100%;
  border-radius: 1.4rem;
  background-color: var(--tertiary);
  margin-top: 0.4rem;
}
.intro_item .ad_lis p {
  font-size: 2rem;
  line-height: 2.8rem;
  opacity: 0.85;
  max-width: 30.2rem;
  font-weight: 300;
  letter-spacing: 0.012rem;
  margin: 0;
}
.page_banner.img_bg{
  z-index: 9;
}
.company_gallery{
  position: relative;
  z-index: 9;
}

.con_form form span.wpcf7-spinner{
  width: 24px !important;
  margin: 0;
  margin-top: 1.5rem;
}

body .wpcf7 form .wpcf7-response-output{
  padding: 0;
  margin: 0;
  border: none;
  color: #000;
}
body .country-select .country-list .country-name{
  color: #000 !important;
}
.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;
}

.video_pop .pop_content iframe,
.video_pop .pop_content video {
  width: 100%;
  height: auto;
  max-height: 100%;
  object-fit: contain;
}

.video_pop .pop_content iframe {
  aspect-ratio: 560/315;
}


div.search-block {
  position: fixed;
  /* visibility: hidden; */
  z-index: 400;
  background-color: #fff;
  box-shadow: 0 0 15px rgb(0 55 96 / 12%);
  transition: 0.3s ease;
  /* opacity: 0; */
  width: 100%;
  bottom: -200vh;
  height: 100vh;
  transition: 0.3s ease;
  opacity: 0;
}
div.search-block{
  background: url('../img/home-bg4.jpg') no-repeat center/cover;
}
div.search-block.active {
  bottom: 0;
  opacity: 1;
  transform: translateY(135px);
}
div.search-block div.content {
  position: relative;
  display: block;
}
.wd-action-btn {
  display: inline-flex;
  vertical-align: middle;
  background: url(../img/close-black.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;
  filter: contrast(0) brightness(100);
}
.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']::placeholder{
  color: white;
}
div.search-block .searchform input[type='text'] {
  padding: 0;
  height: 110px;
  border: none;
  text-align: center;
  font-size: 35px;
  outline: none;
  background-color: transparent;
  color: white;
}
header div.main-menu div.main div.right {
  display: none;
}
div.search-block .searchform ::-webkit-input-placeholder {
  color: #333333;
}
.search-suggestions {
  text-align: center;
  margin-top: 30px;
  opacity: 0;
  transition: opacity 0.4s ease 0.3s;
}
div.search-block.active .search-suggestions {
  opacity: 1;
}
.search-suggestions-label {
  display: block;
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 15px;
  letter-spacing: 0.5px;
}
.search-suggestions-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.search-suggestions-tags .search-tag {
  display: inline-block;
  padding: 8px 20px;
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 30px;
  color: #fff;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
  backdrop-filter: blur(4px);
  background: rgba(255,255,255,0.08);
}
.search-suggestions-tags .search-tag:hover {
  background: rgba(255,255,255,0.2);
  border-color: rgba(255,255,255,0.7);
  transform: translateY(-2px);
}
.btn_mega_menu>.sub-menu{
  display: none;
}
.default_head{
  padding: 9rem 0;
  background-color: #333;
}
.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: 500;
  margin: 3.5rem 0 3.3rem;
}
.default_body h3 {
  font-size: 2rem;
  line-height: 3.4rem;
  font-weight: 500;
  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: 0;
  margin-bottom: 1rem;
  list-style: disc;
  margin-left: 2rem;
}
.default_body ul li:last-child {
  margin-bottom: 0;
}

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

.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: linear-gradient(145deg, rgba(24, 78, 126, 0.97), rgba(20, 65, 105, 0.97));
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 1.2rem;
  padding: 4rem 3.6rem;
}
.quote_modal_inner .head {
  text-align: center;
  margin-bottom: 3rem;
}
.quote_modal_inner .head .subtitle {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.4rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.8rem;
}
.quote_modal_inner .head h2 {
  color: #fff;
  font-size: 2.2rem;
  line-height: 1.4;
}
.quote_modal_inner .head h2 span {
  color: var(--secondary);
}
.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 input,
.quote_modal form textarea,
.quote_modal form select {
  width: 100%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0.6rem;
  padding: 0 2rem;
  font-family: inherit;
  font-size: 1.5rem;
  color: #fff;
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.quote_modal form input::placeholder,
.quote_modal form textarea::placeholder,
.quote_modal form select::placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.quote_modal form input {
  height: 5rem;
}
.quote_modal form textarea {
  height: 14rem;
  padding: 1.4rem 2rem;
  resize: none;
}
.quote_modal form select {
  height: 5rem;
  cursor: pointer;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  background: rgba(255, 255, 255, 0.1) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.6)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E") no-repeat center right 1.6rem/1.4rem;
  padding-right: 4rem;
}
.quote_modal form select option {
  background: rgba(24, 78, 126, 0.97);
  color: #fff;
}
.quote_modal form input:focus,
.quote_modal form textarea:focus,
.quote_modal form select:focus {
  border-color: var(--secondary);
  box-shadow: 0 0 0 3px rgba(104, 199, 240, 0.15);
}
.quote_modal form .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 5rem;
  padding: 0 3.6rem;
  background: var(--primary);
  color: #fff;
  border-radius: 0.6rem;
  font-size: 1.5rem;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid var(--primary);
  transition: all 0.3s ease;
}
.quote_modal form{
  display: flex;
  gap: 2rem 0;
  justify-content: space-between;
  flex-flow: wrap;
}
.quote_modal form span{
  width: 100%;
  display: block;
  
}
.quote_modal form span.wpcf7-spinner{
  width: 24px !important;
  margin-top: 1rem;
  margin-left: 0 !important;
}
.quote_modal form span.col-2{
  width: 48%;
}
.quote_modal form span
.quote_modal form .btn:hover {
  background: transparent;
  color: var(--secondary);
  border-color: var(--secondary);
  transform: translateY(-2px);
}
.quote_modal form .btn input[type="submit"] {
  display: none;
}
body.quote_modal_open {
  overflow: hidden;
}
body .quote_modal .wpcf7 form .wpcf7-response-output{
  color: white;
}


.breadcrumbs {
  line-height: 2.4rem;
  min-height: 2.4rem;
}
.breadcrumbs span {
  font-size: 1.421rem;
  color: var(--text_w);
  font-weight: 500;
  letter-spacing: 0.012rem;
}
.breadcrumbs span span::before {
  display: inline-block;
  content: '';
  background: url("../img/bread-nav.svg") no-repeat center / contain;
  width: 1.1rem;
  height: 1.1rem;
  margin: 0 1.4rem 0;
}
.breadcrumbs span span:first-child::before {
  display: none;
}
.breadcrumbs span a {
  display: inline-block;
  transition: all 0.3s;
  vertical-align: top;
  text-transform: capitalize;
  border-radius: 1.2rem;
  background-color: var(--primary);
  padding: 0 2rem;
}
.breadcrumbs span a:hover {
  background-color: var(--secondary);
}

@media (max-width: 768px) {
  .quote_modal_inner {
    padding: 3rem 2rem;
  }
  .quote_modal_inner .con > span.col2 {
    width: 100%;
  }

  .breadcrumbs {
    line-height: 26px;
    min-height: 26px;
  }
  .breadcrumbs span {
    font-size: 14px;
    letter-spacing: unset;
  }
  .breadcrumbs span span::before {
    width: 8px;
    height: 8px;
    margin: 0 10px;
  }
  .breadcrumbs span a {
    padding: 0 14px;
  }
}

@media screen and (min-width: 769px) and (max-width: 1750px) {
  header nav .menu > li > a{
    font-size: 15px;
  }
  header nav .menu{
    gap: 2rem;
  }

}

@media screen and (min-width: 769px) and (max-width: 1440px) {
  header .lt {
    margin-right: 0;
  }
  header .btns .btn_lang,
  header .btns .btn_search,
  header .btns .btn_compare,
  header .btns .btn {
    margin: 0;
  }
  header nav .menu {
    gap: 3rem;
  }
  header nav .menu > li > a {
    font-size: 16px;
  }
  .page_banner .flex .img {
    margin: 0;
    width: 55%;
  }
}
@media screen and (min-width: 769px) and (max-width: 1220px) {
  .content {
    padding: 0 3rem;
    max-width: 1220px;
  }
  .swiper_content {
    padding: 1.5rem 3rem;
    max-width: 1220px;
  }
  /*  header {

      .content {
        width: 100%;
      }

      nav {
        .menu, .sub-menu {
          & > li > a {
            font-size: 14px;
          }
        }
      }

      .btns{
        gap: 2rem;

        .btn_lang,.btn_search,.btn_compare{
          width: 20px;
          height: 20px;
        }

        .btn{
          padding: 0 2rem;
          min-width: unset;
          white-space: nowrap;
        }
      }
    }*/
}
@media screen and (max-width: 1220px) {
  header .content {
    width: 100%;
  }
  header .lt {
    margin: 0;
    padding: 0;
  }
  header nav {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 999;
    width: 100%;
    height: 100vh;
    pointer-events: none;
    transition: all 0.3s;
  }
  header nav.active {
    pointer-events: all;
  }
  header nav.active .close {
    opacity: 1;
  }
  header nav.active .con {
    opacity: 1;
    transform: translate(0);
  }
  header nav .close {
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    transition: all 0.3s;
    opacity: 0;
  }
  header nav .con {
    position: absolute;
    left: 0;
    top: 0;
    width: min(300px, 80vw);
    height: 100%;
    display: flex;
    flex-direction: column;
    background: url("../img/menu-bg.png") no-repeat center / cover;
    box-shadow: rgba(0 0 0/10%) 0 0 24px;
    transition: all 0.3s;
    opacity: 0;
    transform: translateX(-100%);
    backdrop-filter: blur(10px);
  }
  header nav .con .close_box {
    padding: 32px 20px 20px;
    border-bottom: 1px solid #eee;
    text-align: right;
  }
  header nav .con .close_box .close {
    display: inline-block;
    width: 15px;
    height: 15px;
    background: url('../img/mobile-menu/close.svg') no-repeat center / contain;
    cursor: pointer;
    transition: all 0.3s;
    filter: contrast(0) brightness(2);
  }
  header nav .con .close_box .close:hover {
    transform: rotate(180deg);
  }
  header nav .con .close_box + div {
    flex: 1;
    overflow: auto;
  }
  header nav .con .close_box + div::-webkit-scrollbar {
    width: 5px;
  }
  header nav .con .close_box + div::-webkit-scrollbar-thumb {
    background: #888888;
    border-radius: 10px;
  }
  header nav .con .menu {
    display: block;
  }
  header nav .con .menu > li {
    cursor: pointer;
  }
  header nav .con .menu > li::after {
    display: none;
    opacity: 1;
  }
  header nav .con .menu > li > a {
    line-height: 64px;
    padding: 0 0 0 32px;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: unset;
  }
  header nav .con .menu > li > a:hover {
    color: var(--primary);
  }
  header nav .con .menu > li.menu-item-has-children > a {
    margin-right: 52px;
  }
  header nav .con .menu > li.menu-item-has-children::after {
    content: '';
    display: block;
    width: 12px;
    height: 12px;
    background: url(../img/mobile-menu/select.svg) no-repeat center / contain;
    position: absolute;
    left: calc(100% - 32px);
    top: 26px;
    transition: all 0.3s;
    filter: contrast(0) brightness(2);
  }
  header nav .con .menu > li.active::after {
    transform: rotate(180deg);
  }
  header nav .con .menu > li:hover ul {
    padding: 16px 24px;
  }
  header nav .con .menu .current-menu-item > a,
  header nav .con .menu .current-menu-parent > a {
    color: var(--primary);
  }
  header nav .con .sub-menu {
    position: static;
    padding: 16px 24px;
    background-color: rgba(28, 98, 154, 0.74);
    margin: 0 32px;
    box-shadow: none;
    border-radius: 8px;
    display: none;
    opacity: 1;
    pointer-events: all;
    transition: none;
    transform: translate(0);
    min-width: unset;
    width: auto;
  }
  header nav .con .sub-menu li {
    transform: translate(0);
  }
  header nav .con .sub-menu li a {
    padding: 8px 0;
    word-break: break-word;
    font-size: 14px;
    border-bottom: none;
  }
  header nav .con .sub-menu li a:hover {
    color: var(--primary);
    background-color: transparent;
  }
  header .btns {
    padding: 0;
    margin: 0;
  }
  header .btns .btn_search,
  header .btns .btn_lang,
  header .btns .btn_compare {
    width: 22px;
    height: 22px;
    margin: 0;
  }
  header .btns .btn_search i,
  header .btns .btn_lang i,
  header .btns .btn_compare i {
    font-size: 12px;
    line-height: 15px;
    min-width: 15px;
    padding: 0 2px;
  }
  header .btns .btn_menu {
    display: block;
    width: 23px;
    height: 23px;
    cursor: pointer;
    transition: all 0.3s;
    background: url(../img/mobile-menu/nav-btn.svg) no-repeat center / contain;
    filter: contrast(0) brightness(2);
  }
  header .mega_menu {
    display: none !important;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .content,
  .swiper_content {
    max-width: 896px;
  }
  .head h1 {
    font-size: 5rem;
  }
  .head h2 {
    font-size: 4rem;
  }
  .btn,
  .btn_line {
    padding: 0 3rem;
  }
}
@media screen and (min-width: 769px) and (max-width: 896px) {
  .content,
  .swiper_content {
    max-width: 768px;
  }
  .category_list .info {
    padding-top: 1rem;
  }
  .category_list .info .title {
    font-size: 2.5rem;
  }
}
@media screen and (min-width: 769px) {
  ul::-webkit-scrollbar,
  div::-webkit-scrollbar {
    width: 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 30px;
  }
  .swiper_content {
    padding: 10px 30px;
  }
  .only_mobile {
    display: block;
  }
  body.fixed {
    padding-right: 0;
  }
  .gap {
    gap: 20px;
  }
  .btn,
  .btn_line {
    font-size: 14px;
    padding: 0 20px;
    line-height: 40px;
    min-width: 120px;
    border-radius: 5px;
    letter-spacing: unset;
  }
  .btn_more {
    font-size: 14px;
    grid-template-columns: 18px 1fr;
    gap: 12px;
  }
  .btn_i {
    font-size: 14px;
    grid-template-columns: 40px 1fr;
    gap: 12px;
  }
  .btn_i::before {
    border-radius: 6px;
  }
  .swiper_btns {
    gap: 20px;
  }
  .swiper_btns div {
    width: 40px;
    border-radius: 6px;
  }
  .swiper_btns.middle:not(:has(.swiper-button-lock)) {
    position: static;
    width: 100%;
    max-width: unset;
    justify-content: flex-end;
    transform: translate(0);
    padding: 0 30px;
    margin-top: 30px;
  }
  .syedittext p,
  .syedittext .desc {
    font-size: 14px;
    line-height: 1.5;
    letter-spacing: unset;
  }
  div.head.flex .syedittext {
    padding: 0;
  }
  div.head.flex .btn,
  div.head.flex .btn_line,
  div.head.flex .btn_more,
  div.head.flex .btn_i {
    margin: 0;
  }
  div.head.bn p {
    font-size: 14px;
    line-height: 1.5;
  }
  div.head .subtitle {
    grid-template-columns: 14px 1fr;
    line-height: 1.5;
    font-size: 14px;
    gap: 10px;
    margin-bottom: 8px;
    letter-spacing: unset;
  }
  div.head .subtitle.w_icon {
    gap: 10px;
  }
  div.head h1 {
    font-size: 25px;
    line-height: 1.3;
    letter-spacing: unset;
    max-width: unset;
    word-spacing: unset;
  }
  div.head h2 {
    font-size: 22px;
    line-height: 1.3;
    letter-spacing: unset;
    max-width: unset;
    word-spacing: unset;
  }
  div.head .desc,
  div.head p {
    font-size: 14px;
    line-height: 1.5;
    letter-spacing: unset;
    max-width: unset;
    word-spacing: unset;
    margin-top: 12px;
  }
  div.head .btn,
  div.head .btn_line {
    margin-top: 20px;
    padding: 0 20px;
    line-height: 40px;
    min-width: 120px;
  }
  div.head .btn_more,
  div.head .btn_i {
    margin-top: 20px;
  }
  header.opt {
    top: 0;
  }
  header .lt .logo img {
    height: 30px;
  }
  header .btns {
    gap: 20px;
    min-height: 64px;
  }
  header .btns .btn {
    display: none;
  }
  footer:not(:has(.footer_contact)) .main {
    padding-top: 50px;
  }
  footer .main {
    padding: 50px 0;
  }
  footer .main .flex {
    display: block;
  }
  footer .main strong {
    font-size: 18px;
    letter-spacing: unset;
  }
  footer .main .slide_intro {
    margin: 0 0 30px;
    width: 100%;
  }
  footer .main .slide_intro .logo {
    max-width: 180px;
    margin: 0 auto;
  }
  footer .main .slide_intro p {
    font-size: 14px;
    line-height: 1.5;
    text-align: center;
    letter-spacing: unset;
    margin-top: 20px;
  }
  footer .main .nav {
    display: block;
    width: 100%;
  }
  footer .main .slide_obj:not(.slide_connect) {
    width: 100%;
  }
  footer .main .slide_obj:not(.slide_connect) strong {
    font-size: 16px;
    line-height: 46px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    padding: 0 22px;
    position: relative;
    margin-bottom: 16px;
  }
  footer .main .slide_obj:not(.slide_connect) strong::after {
    content: '';
    display: block;
    width: 12px;
    height: 12px;
    background: url(../img/mobile-menu/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 .slide_obj:not(.slide_connect).active strong::after {
    transform: translateY(-50%) rotate(180deg);
  }
  footer .main .slide_obj:not(.slide_connect) > div {
    display: none;
    padding: 0 20px 20px;
  }
  footer .main .slide_obj:not(.slide_connect) > div li + li {
    margin-top: 14px;
  }
  footer .main .slide_obj:not(.slide_connect) > div a {
    font-size: 14px;
    display: block;
    font-weight: normal;
    letter-spacing: unset;
  }
  footer .main .slide_obj:not(.slide_connect) > div p {
    font-size: 14px;
    line-height: 1.5;
  }
  footer .main .slide_connect {
    width: 100%;
    padding-top: 20px;
  }
  footer .main .slide_connect strong {
    margin-bottom: 20px;
  }
  footer .main .slide_connect .connect li + li {
    margin-top: 20px;
  }
  footer .main .slide_connect .connect li {
    padding-left: 70px;
  }
  footer .main .slide_connect .connect li::before {
    width: 50px;
    height: 46px;
    top: 0;
    background-size: 30px;
  }
  footer .main .slide_connect .connect li a {
    font-size: 16px;
    letter-spacing: unset;
  }
  footer .main .slide_connect .connect li .label {
    font-size: 14px;
    margin-top: 5px;
    letter-spacing: unset;
  }
  footer .main .slide_connect .social {
    margin-top: 30px;
    gap: 16px;
    justify-content: space-around;
  }
  footer .main .slide_connect .social a {
    width: 40px;
    height: 40px;
  }
  footer .bottom {
    padding: 20px 0;
  }
  footer .bottom .flex {
    gap: 30px;
    flex-direction: column-reverse;
  }
  footer .bottom ul {
    gap: 1rem 0;
  }
  footer .bottom ul li::after {
    height: 10px;
    margin: 0 10px;
  }
  footer .bottom ul li:last-child::after {
    display: none;
  }
  footer .bottom p {
    font-size: 13px;
    letter-spacing: unset;
  }
  footer .bottom a {
    font-size: 14px;
    letter-spacing: unset;
  }
  footer .footer_float {
    bottom: 20px;
  }
  footer .footer_float #backtop {
    width: 40px;
  }
  footer .footer_float #backtop span {
    display: none;
  }
  .footer_contact {
    width: 100%;
    margin: 0;
  }
  .footer_contact > img {
    border-radius: 0;
  }
  .footer_contact .flex {
    padding: 30px 0;
  }
  .footer_contact .img {
    margin-top: -50px;
  }
  .footer_contact .btn_line {
    padding: 0 20px;
    margin: 0;
  }
  .page_blog {
    padding: 50px 0;
    overflow: hidden;
  }
  .page_blog .page_blog_swiper {
    overflow: unset;
    margin-top: 30px;
  }
  .page_blog .page_blog_swiper .swiper-slide {
    max-width: 314px;
  }
  .page_banner::before,
  .page_banner::after {
    height: 100%;
    z-index: -1;
  }
  .page_banner .flex {
    min-height: unset;
    padding: 100px 0 50px;
  }
  .page_banner .flex .head {
    padding: 0;
  }
  .page_banner .flex .img {
    margin: 0;
    width: 50%;
  }
  .page_banner .bn_arrow {
    bottom: 20px;
    width: 5px;
    right: 10px;
  }
  .page_banner .bn_mask {
    display: none;
  }
  .page_nav {
    padding: 50px 0;
  }
  .page_nav .nav .nav_list {
    width: calc(100% + 60px);
    margin: 0 -30px;
    padding: 0 30px;
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 20px;
  }
  .page_nav .nav .nav_list::-webkit-scrollbar {
    display: none;
  }
  .page_nav .nav .nav_list li {
    flex: 1 0 160px;
  }
  .page_nav .nav .nav_item {
    padding: 20px;
    border-radius: 10px;
  }
  .page_nav .nav .nav_item.active i,
  .page_nav .nav .nav_item:hover i {
    filter: unset;
  }
  .page_nav .nav .nav_item .icon {
    width: 50px;
    height: 50px;
    transform: translateY(0);
  }
  .page_nav .nav .nav_item .title {
    font-size: 14px;
    margin-top: 12px;
    letter-spacing: unset;
    transform: translateY(0);
  }
  .page_nav .nav .nav_item i {
    width: 14px;
    height: 14px;
    margin-top: 20px;
    transform: translateY(0);
    opacity: 1;
    filter: contrast(0) brightness(2);
  }
  .page_vlog {
    padding: 50px 0;
    overflow: hidden;
  }
  .page_vlog .page_vlog_swiper {
    overflow: unset;
    margin-top: 30px;
  }
  .page_vlog .page_vlog_swiper .swiper-slide {
    max-width: 314px;
  }
  .unit_toggle ul {
    gap: 20px;
  }
  .unit_toggle li {
    font-size: 14px;
    letter-spacing: unset;
    padding-left: 25px;
  }
  .unit_toggle li::before {
    width: 6px;
    height: 6px;
    border-width: 4px;
    top: 3px;
  }
  .parameter_table {
    --radius: 10px;
    overflow-x: auto;
  }
  .parameter_table::-webkit-scrollbar {
    display: none;
  }
  .parameter_table table {
    min-width: 700px;
  }
  .parameter_table table tbody tr:first-child td,
  .parameter_table table tbody tr:last-child td {
    padding: 14px 10px;
  }
  .parameter_table table td,
  .parameter_table table th {
    font-size: 14px;
    padding: 14px 10px;
    letter-spacing: unset;
  }
  .parameter_table table th {
    font-size: 15px;
  }
  .con_form form {
    gap: 10px;
    padding: 20px;
    border-radius: 10px;
  }
  .con_form form .col-2 {
    width: 100%;
  }
  .con_form form .label {
    font-size: 16px;
    margin: 10px 0 0;
  }
  .con_form form input,
  .con_form form textarea,
  .con_form form select {
    font-size: 14px;
    height: 46px;
    padding: 0 20px;
  }
  .con_form form select {
    background-size: 12px;
    background-position: right 20px center;
    padding-right: 40px;
  }
  .con_form form textarea {
    height: 120px;
    padding: 10px 20px;
    margin: 0;
  }
  .con_form form span:has(input[type=checkbox]) {
    margin-top: 0;
  }
  .con_form form input[type=checkbox] {
    width: 20px;
    height: 20px;
  }
  .con_form form input[type=checkbox] ~ span {
    width: calc(100% - 24px);
    padding-left: 12px;
    font-size: 14px;
    line-height: 1.5;
    margin-top: 0;
  }
  .con_form form span:has(input[type=submit]) {
    margin-top: 10px;
  }
  .con_form form input[type=submit] {
    min-width: 120px;
    font-size: 14px;
    padding: 0 20px;
    height: 42px;
    border-radius: 5px;
  }
  .blog_list a {
    border-radius: 10px;
  }
  .blog_list .img {
    border-radius: 10px 10px 0 0;
  }
  .blog_list .cat {
    font-size: 14px;
    line-height: 2;
    padding: 0 14px;
    border-radius: 3px 3px 0 0;
  }
  .blog_list .info {
    padding: 20px;
  }
  .blog_list .info .date {
    font-size: 14px;
  }
  .blog_list .info .title {
    font-size: 18px;
    line-height: 1.5;
    margin-top: 10px;
  }
  .blog_list .info .btn_i {
    margin-top: 20px;
    transform: translateX(0);
  }
  .blog_list .info .btn_i::before {
    opacity: 1;
  }
  .intro_item {
    padding-bottom: 50px;
    gap: 20px;
  }
  .intro_item:last-child {
    padding-bottom: 0;
  }
  .intro_item .lt {
    padding: 40px 0;
  }
  .intro_item .lt .title {
    font-size: 20px;
    line-height: 1.5;
  }
  .intro_item .lt .icon {
    width: 50px;
    height: 50px;
    margin-left: 0;
    margin-top: 12px;
  }
  .intro_item .lt .desc {
    font-size: 14px;
    line-height: 1.5;
    margin-top: 10px;
    letter-spacing: unset;
    max-width: unset;
  }
  .intro_item .rt .desc {
    font-size: 14px;
    line-height: 1.5;
    margin-top: 20px;
    letter-spacing: unset;
  }
  .intro_item .swiper_box .intro_thumbs_swiper .swiper-slide {
    max-width: 145px;
  }
  .intro_item .swiper_box .swiper_btns.middle {
    padding: 0;
    margin-top: 20px;
  }
  .intro_item .swiper_box .swiper_btns.middle div {
    width: 40px;
  }
  .intro_item .ad_lis {
    margin-top: 20px;
    padding-bottom: 0;
  }
  .intro_item .ad_lis strong {
    font-size: 18px;
    margin-bottom: 20px;
    letter-spacing: unset;
  }
  .intro_item .ad_lis ul {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .intro_item .ad_lis li {
    grid-template-columns: 40px 1fr;
    gap: 14px;
  }
  .intro_item .ad_lis .icon {
    margin: 0;
    border-radius: 10px;
  }
  .intro_item .ad_lis p {
    font-size: 14px;
    line-height: 1.5;
    letter-spacing: unset;
  }
  .vlog_item .img {
    border-radius: 10px;
  }
  .vlog_item .img .btn_play {
    width: 40px;
    left: 20px;
    bottom: 20px;
    border-radius: 5px;
  }
  .vlog_item .title {
    font-size: 16px;
    line-height: 1.5;
    margin-top: 14px;
    letter-spacing: unset;
  }
  .category_list a,
  .category_list .img::before {
    border-radius: 10px;
  }
  .category_list .info {
    padding: 10px 20px 20px;
  }
  .category_list .info .title {
    font-size: 18px;
  }
  .category_list .info .desc {
    margin-top: 10px;
  }
  .category_list .info .btn_line {
    margin-top: 20px;
    padding: 10px 20px;
    gap: 12px;
  }
  .category_list .info .btn_line::after {
    margin: 0;
    opacity: 1;
    width: 14px;
    height: 14px;
  }
  .products_list a {
    border-radius: 10px;
  }
  .products_list a::before {
    border-radius: 10px;
  }
  .products_list .info {
    padding: 10px 20px 20px;
  }
  .products_list .info::after {
    display: none;
  }
  .products_list .info .cat {
    font-size: 14px;
    letter-spacing: unset;
  }
  .products_list .info .title {
    font-size: 18px;
    margin-top: 10px;
  }
  .products_list .info ul {
    margin-top: 12px;
  }
  .products_list .info ul li {
    letter-spacing: unset;
    padding: 6px 0;
  }
  .products_list .btns {
    position: static;
    height: auto;
    margin-top: 20px;
    display: grid;
    gap: 12px;
  }
  .products_list .btns .btn,
  .products_list .btns .btn_line {
    position: static;
    opacity: 1;
    line-height: 40px;
  }
  .products_list .btns .btn_line {
    gap: 10px;
  }
  .products_list .btns .btn_line::before {
    width: 14px;
    height: 14px;
  }
  .video_pop .pop_content {
    width: 90vw;
    height: auto;
  }

  div.search-block .searchform {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  div.search-block input[type='text'] {
    flex: 1;
  }
  div.search-block input[type='submit'] {
    width: 1.5rem;
    height: 1.5rem;
    margin: 0 2.2vw 0 1.2vw;
    /* background: url(../img/page_home-header_search.svg) no-repeat center; */
    background: url(../img/search.svg) no-repeat center / contain;
    background-size: 1.4rem;
    display: inline-block;
    vertical-align: middle;
    transition: 0.3s all ease;
    cursor: pointer;
    border: none;
    outline: none;
  }
  div.search-block div.content {
    position: unset;
  }
  div.search-block .searchform input[type='text'] {
    font-size: 22px;
    height: 70px;
  }
  .wd-action-btn {
    width: 25px;
    height: 25px;
    top: unset;
    right: 2rem;
    bottom: 2rem;
  }
  div.search-block {
    height: 100%;
    width: 100%;
    top: 120%;
    bottom: unset;
    visibility: hidden;
  }
  div.search-block.active {
    top: 20%;
    visibility: visible;
    height: 80%;
    transform: translateY(0);
    bottom: unset;
  }
  .search-suggestions {
    margin-top: 20px;
  }
  .search-suggestions-label {
    font-size: 12px;
    margin-bottom: 10px;
  }
  .search-suggestions-tags {
    gap: 8px;
  }
  .search-suggestions-tags .search-tag {
    padding: 6px 14px;
    font-size: 12px;
  }
  .search-block input[type="submit"]:not(:disabled):hover {
    background-size: 1.4rem;
    border: none;
  }

  .default_head{
      padding: 5rem 0;
  }
  .default_head h1{
    font-size: 2rem;
  }
  .default_body{
    padding: 3rem 0;
    font-size: 0.9rem;
    line-height: 1.5rem;
  }
  
  .default_body h2 {
    font-size: 1.2rem;
    line-height: 1.5;
    font-weight: 700;
    margin: 1rem 0 1rem;
  }
  .default_body h3 {
    font-size: 1.1rem;
    line-height: 1.5;
    font-weight: 700;
    margin: 1rem 0;
  }
  .default_body p {
    margin: 1rem 0;
  }
  
  
  .default_body ul li {
    position: relative;
    margin-bottom: 1rem;
  }
  .default_body ul li:last-child {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 576px) {
  .content {
    padding: 0 20px;
  }
  .swiper_content {
    padding: 10px 20px;
  }
  .swiper_btns.middle:not(:has(.swiper-button-lock)) {
    padding: 0 20px;
  }
  .footer_contact .flex {
    flex-direction: column;
    text-align: center;
  }
  .footer_contact .img {
    width: 100%;
    margin-left: 0;
  }
  .footer_contact .head {
    width: 100%;
    flex: unset;
  }
  .page_nav .nav .nav_list {
    width: calc(100% + 40px);
    margin: 0 -20px;
    padding: 0 20px;
  }
  .intro_item .lt {
    padding-bottom: 0;
  }
  .intro_item .rt {
    width: 100%;
  }
  .page_banner .flex .img {
    width: 100%;
    order: -1;
  }
}
