* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --primary: #0097d8;
  --secondary: #6bb34a;
  --title: #141414;
  --text: #4d4e4f;
  --bg: #f7f7f7;
  --shadow: 0 1rem 1.5rem rgba(165, 165, 165, 0.35);
}
html {
  scroll-behavior: smooth;
  font-size: clamp(7.5px, 0.520834vw, 10px);
}
.content {
  max-width: 128rem;
  margin: 0 auto;
  position: relative;
}
.content .content {
  padding: 0;
}
.swiper_box {
  position: relative;
}
.swiper_content {
  max-width: 131rem;
  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%;
  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: "Manrope", 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;
}
.btn {
  display: inline-block;
  text-align: center;
  vertical-align: top;
  cursor: pointer;
  transition: all 0.3s;
  border-radius: 100px;
  background-color: var(--primary);
  border: 1px solid var(--primary);
  color: #fff;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 6rem;
  padding: 0 3.9rem;
}
.btn:hover {
  background-color: var(--secondary);
  border-color: var(--secondary);
}
.btn.sub {
  background-color: var(--secondary);
  border-color: var(--secondary);
}
.btn.sub:hover {
  background-color: transparent;
  color: var(--secondary);
}
.btn_line {
  display: inline-block;
  text-align: center;
  vertical-align: top;
  cursor: pointer;
  transition: all 0.3s;
  border-radius: 100px;
  background-color: transparent;
  border: 1px solid rgba(20, 20, 20, 0.5);
  color: var(--title);
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 6.1rem;
  padding: 0 3.9rem;
}
.btn_line:hover {
  background-color: var(--secondary);
  border-color: var(--secondary);
  color: #fff;
}
.btn_i {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  background-color: transparent;
  transition: all 0.3s;
  font-size: 1.8rem;
  line-height: normal;
  font-weight: 700;
  color: var(--primary);
  gap: 1.6rem;
}
.btn_i::after {
  display: inline-block;
  content: '';
  width: 1.6rem;
  height: 1.6rem;
  background: url("../img/arrow-r.svg") no-repeat center right / contain;
  transition: all 0.3s;
}
.btn_i:hover::after {
  transform: translateX(20%);
}
.swiper_btns {
  gap: 3.1rem;
  display: flex;
}
.swiper_btns .btn_next,
.swiper_btns .btn_prev {
  width: 6.6rem;
  cursor: pointer;
  transition: all 0.3s;
  border-radius: 50%;
  border: 1px solid var(--primary);
  background-color: var(--primary);
}
.swiper_btns .btn_next::after,
.swiper_btns .btn_prev::after {
  content: '';
  display: block;
  width: 100%;
  padding-bottom: 100%;
  transition: all 0.3s;
  background: url(../img/arrow.svg) no-repeat center / 29.6875%;
  filter: contrast(0) brightness(2);
}
.swiper_btns .btn_next:hover,
.swiper_btns .btn_prev:hover {
  border-color: var(--secondary);
  background-color: var(--secondary);
}
.swiper_btns .btn_next::after {
  transform: rotate(180deg);
}
.swiper_btns .swiper-button-disabled {
  pointer-events: none;
  background-color: transparent;
  border-color: rgba(22, 22, 22, 0.4);
}
.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: 149.2rem;
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  pointer-events: none;
  transform: translate(-50%, -50%);
  justify-content: space-between;
}
.swiper_btns.middle div {
  pointer-events: all;
}
.swiper_btns.middle .swiper-button-disabled,
.swiper_btns.middle .swiper-button-lock {
  pointer-events: none;
}
.head.white {
  color: #fff;
}
.head.white p {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 300;
  letter-spacing: 0.015rem;
}
.head.white.bn p {
  color: rgba(255, 255, 255, 0.85);
}
.head.bn p {
  line-height: 3rem;
}
.head h1 {
  font-size: 5.4rem;
  line-height: 1.12963;
  font-weight: 800;
}
.head h2 {
  /*font-size: 4.2rem;
    line-height: 1.2857143; //54*/
  font-weight: 700;
  font-size: 3.6rem;
  line-height: 1.5;
}
.head p,
.head .desc {
  font-size: 1.8rem;
  line-height: 3.2rem;
  color: var(--text);
}
header {
  position: sticky;
  left: 0;
  top: -8.2rem;
  right: 0;
  z-index: 996;
  transition: all 0.3s;
  background-color: #fff;
  border-bottom: 1px solid #e9ebec;
}
header.opt {
  top: 0;
}
header .logo {
  display: block;
  position: relative;
  margin-right: 5%;
}
header .logo img {
  display: block;
  width: auto;
  height: 7rem;
}
header .logo p {
  width: 1px;
  height: 1px;
  overflow: hidden;
  position: absolute;
  clip: rect(1px, 1px, 1px, 1px);
}
header nav .close {
  display: none;
}
header nav .menu {
  gap: 4.9rem;
  display: flex;
}
header nav .menu > li {
  position: relative;
  z-index: 2;
}
header nav .menu > li > a {
  display: block;
  font-size: 18px;
  line-height: 34px;
  padding-top: 2px;
  transition: all 0.3s;
  border-bottom: 0.3rem solid transparent;
  font-weight: 600;
  letter-spacing: -0.04rem;
}
header nav .menu > li > a:hover {
  border-bottom-color: var(--secondary);
}
header nav .menu > li.current-menu-item > a,
header nav .menu > li.current-menu-parent > a {
  border-bottom-color: var(--secondary);
}
header nav .menu > li:hover > .sub-menu {
  transform: translate(0);
  pointer-events: all;
  opacity: 1;
}
header nav .menu > li.btn_mega_menu > .sub-menu {
  display: none;
}
header nav .sub-menu {
  position: absolute;
  top: 100%;
  left: -24px;
  padding: 6px;
  transition: all 0.3s;
  transform: translateY(-10px);
  pointer-events: none;
  opacity: 0;
  min-width: 180px;
  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: 4.3rem;
  display: flex;
  align-items: center;
  min-height: 81px;
}
header .btn_search {
  display: block;
  width: 20px;
  height: 20px;
  overflow: hidden;
  text-indent: -999px;
  background: url(../img/icon-search.svg) no-repeat center / contain;
  margin-top: 2px;
}
header .btn_lang {
  display: flex;
  align-items: center;
  font-size: 17px;
  color: #232323;
  background-color: transparent;
  gap: 9px;
  margin-top: 2px;
  font-weight: 500;
}
header .btn_lang::before,
header .btn_lang::after {
  display: inline-block;
  content: '';
  background: no-repeat center / contain;
  flex-shrink: 0;
}
header .btn_lang::before {
  background-image: url("../img/icon-lang.svg");
  width: 20px;
  height: 20px;
  margin-right: 9px;
}
header .btn_lang::after {
  background-image: url("../img/icon-select.svg");
  width: 10px;
  height: 10px;
}
header .btn_menu {
  display: none;
  width: 23px;
  height: 23px;
  overflow: hidden;
  text-indent: -999px;
  background: url(../img/nav-btn.svg) no-repeat center / contain;
}
footer {
  background-image: linear-gradient(to right, rgba(240, 248, 255, 0.24), rgba(207, 229, 249, 0.24) 35.6386%);
}
footer .main {
  padding: 9.4rem 0 9.6rem;
}
footer .main .flex {
  gap: 5rem 2rem;
}
footer .main .foot_intro {
  margin-top: -1.5rem;
  margin-right: 4.3%;
}
footer .main .foot_intro .logo {
  display: block;
  position: relative;
  max-width: 12.7rem;
}
footer .main .foot_intro .logo img {
  display: block;
  width: 100%;
  height: auto;
}
footer .main .foot_intro .logo p {
  width: 1px;
  height: 1px;
  overflow: hidden;
  position: absolute;
  clip: rect(1px, 1px, 1px, 1px);
}
footer .main .foot_intro p {
  font-size: 1.8rem;
  font-weight: 600;
  color: #1c1c1c;
  margin-top: 2.3rem;
}
footer .main .foot_intro .connect {
  margin-top: 4.2rem;
}
footer .main .foot_intro .connect li + li {
  margin-top: 1.6rem;
}
footer .main .foot_intro .connect .whatsapp {
  margin-top: 2.5rem;
}
footer .main .foot_intro .connect li {
  position: relative;
  padding-left: 3.3rem;
}
footer .main .foot_intro .connect li::before {
  width: 2rem;
  height: 2rem;
  position: absolute;
  left: 0;
  top: 1px;
  content: '';
  background: no-repeat center / contain;
}
footer .main .foot_intro .connect li a {
  vertical-align: top;
  transition: all 0.3s;
  font-size: 1.8rem;
  color: #0c0c0c;
  text-decoration: underline transparent;
}
footer .main .foot_intro .connect li a:hover {
  color: var(--secondary);
  text-decoration-color: var(--secondary);
}
footer .main .foot_intro .connect .phone::before {
  background-image: url("../img/icon-phone.svg");
  background-size: 80%;
}
footer .main .foot_intro .connect .email::before {
  background-image: url("../img/icon-email.svg");
}
footer .main .foot_intro .connect .whatsapp::before {
  background-image: url("../img/whatsapp.svg");
  top: 5px;
}
footer .main .foot_intro .social {
  gap: 2rem 1.1rem;
  display: flex;
  flex-wrap: wrap;
  margin-top: 3.2rem;
}
footer .main .foot_intro .social a {
  opacity: 1;
  display: block;
  width: 5.5rem;
  height: 5.5rem;
  overflow: hidden;
  text-indent: -999px;
  position: relative;
  transition: all 0.3s;
  border-radius: 50%;
  background-color: #fff;
}
footer .main .foot_intro .social a::after {
  content: '';
  display: block;
  position: absolute;
  inset: 0;
  background: no-repeat center / 40%;
  transition: all 0.3s;
}
footer .main .foot_intro .social a:hover {
  transform: scale(1.1);
  background-color: var(--primary);
}
footer .main .foot_intro .social a:hover::after {
  filter: contrast(0) brightness(2);
}
footer .main .foot_intro .social .facebook a::after {
  background-image: url(../img/facebook.svg);
}
footer .main .foot_intro .social .youtube a::after {
  background-image: url(../img/youtube.svg);
}
footer .main .foot_intro .social .linkedin a::after {
  background-image: url(../img/linkedin.svg);
}
footer .main .foot_nav {
  max-width: 22rem;
}
footer .main .foot_nav strong {
  display: block;
  font-size: 1.8rem;
  font-weight: 600;
  color: #1c1c1c;
  text-transform: uppercase;
  margin-bottom: 2.1rem;
}
footer .main .foot_nav li a {
  line-height: 2.4rem;
  color: #505050;
  transition: all 0.3s;
  vertical-align: top;
  text-decoration: underline transparent;
}
footer .main .foot_nav li a:hover {
  color: var(--secondary);
  text-decoration-color: var(--secondary);
}
footer .main .foot_nav li + li {
  margin-top: 1.6rem;
}
footer .main .foot_nav button {
  font-size: 1.6rem;
  font-weight: 500;
  color: #1c1c1c;
  text-decoration: underline;
  background-color: transparent;
  transition: all 0.3s;
  margin-top: 1.9rem;
}
footer .main .foot_nav button:hover {
  color: var(--primary);
  text-decoration-color: transparent;
}
footer .bottom {
  padding: 2.5rem 0;
}
footer .bottom p,
footer .bottom a {
  color: #161616;
  font-size: 1.4rem;
}
footer .bottom a {
  opacity: 0.68;
  transition: all 0.3s;
  text-decoration: underline transparent;
}
footer .bottom a:hover {
  opacity: 1;
  color: var(--secondary);
  text-decoration-color: var(--secondary);
}
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: #cbcfd1;
  display: inline-block;
  content: '';
  margin: 0 1.4rem 0 1.5rem;
}
footer .bottom ul li:first-child::before {
  display: none;
}
.mage-menu-overlay {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 991;
  width: 100%;
  height: 100%;
  transition: all 0.3s;
  background-color: rgba(35, 35, 35, 0.5);
  opacity: 0;
  pointer-events: none;
}
.mage-menu-overlay.active {
  opacity: 1;
  pointer-events: all;
}
.mega_menu {
  position: absolute;
  top: calc(100% + 1px);
  left: 0;
  right: 0;
  z-index: 999;
  background-color: #fff;
  color: #0a1126;
  padding-top: 4.6rem;
  display: none;
}
.mega_menu .flex {
  gap: 3rem;
}
.mega_menu .nav {
  width: 29.0625%;
  border-right: 1px solid rgba(35, 35, 35, 0.14);
  max-height: calc(100vh - 28rem);
  overflow-y: auto;
  padding-bottom: 4rem;
}
.mega_menu .nav ul {
  min-height: 33.7rem;
  padding-right: 16.2%;
}
.mega_menu .nav li + li {
  margin-top: 1.6rem;
}
.mega_menu .nav .active a {
  color: var(--primary);
}
.mega_menu .nav .active a::after {
  filter: unset;
}
.mega_menu .nav a {
  vertical-align: top;
  display: grid;
  grid-template-columns: 1fr 13px;
  align-items: center;
  font-size: 18px;
  line-height: 1.3333;
  font-weight: 700;
  color: #232323;
  transition: all 0.3s;
  gap: 2rem;
}
.mega_menu .nav a::after {
  padding-bottom: 100%;
  display: block;
  content: '';
  background: url("../img/nav-r.svg") no-repeat center right / contain;
  transition: all 0.3s;
  filter: contrast(0) brightness(0);
}
.mega_menu .list {
  flex: 1;
  max-width: 84.8rem;
  max-height: calc(100vh - 28rem);
  overflow-y: auto;
  display: none;
  padding-bottom: 4rem;
}
.mega_menu .list.active {
  display: block;
}
.mega_menu .list ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem 2rem;
  max-width: 78.7rem;
}
.mega_menu .list a {
  font-size: 16px;
  vertical-align: top;
  color: var(--text);
  transition: all 0.3s;
}
.mega_menu .list a:hover {
  color: var(--primary);
  font-weight: 700;
}
.mega_menu p.center:has(.btn) {
  margin-top: 3.6rem;
}
.float_contact {
  position: fixed;
  right: 2rem;
  bottom: 5rem;
  z-index: 99;
  transform: translateY(100%);
  opacity: 0;
  transition: all 0.4s;
}
.float_contact.active {
  transform: translateY(0);
  opacity: 1;
}
.float_contact li {
  position: relative;
  cursor: pointer;
}
.float_contact li:hover a,
.float_contact li.active a,
.float_contact li:hover span,
.float_contact li.active span {
  background-color: var(--secondary);
  border-color: var(--secondary);
}
.float_contact li:hover a::after,
.float_contact li.active a::after,
.float_contact li:hover span::after,
.float_contact li.active span::after {
  filter: contrast(0) brightness(2);
}
.float_contact li:hover .qrcode {
  transform: translate(-50%, -1rem);
}
.float_contact ul {
  gap: 0.9rem;
  display: grid;
}
.float_contact a,
.float_contact span {
  display: block;
  overflow: hidden;
  position: relative;
  text-indent: -999px;
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  transition: all 0.3s;
  border: 1px solid rgba(20, 20, 20, 0.5);
  background-color: #fff;
}
.float_contact a::after,
.float_contact span::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  border-radius: 50%;
  transition: all 0.3s;
  background: no-repeat center / 40%;
  filter: contrast(0) brightness(0);
}
.float_contact .qrcode {
  position: absolute;
  right: 20%;
  top: 50%;
  transition: all 0.3s;
  transform-origin: center bottom;
  transform: translateY(-50%) scale(0);
  padding: 1rem;
  border-radius: 0.8rem;
  background-color: #fff;
  box-shadow: 0 0 1.5rem rgba(0, 0, 0, 0.1);
}
.float_contact .qrcode .img {
  width: 8rem;
  height: 8rem;
}
.float_contact .phone a::after,
.float_contact .phone span::after {
  background-image: url("../img/icon-phone.svg");
  background-size: 32%;
}
.float_contact .email a::after,
.float_contact .email span::after {
  background-image: url("../img/icon-email.svg");
}
.float_contact .whatsapp a::after,
.float_contact .whatsapp span::after {
  background-image: url("../img/whatsapp.svg");
}
.float_contact .wechat a::after,
.float_contact .wechat span::after {
  background-image: url("../img/wechat.svg");
  background-size: 42%;
}
.float_contact .backtop a::after,
.float_contact .backtop span::after {
  background-image: url("../img/arrow-top-w.svg");
  background-size: 22%;
  filter: contrast(0) brightness(2);
}
.float_contact .backtop s,
.float_contact .backtop span {
  background-color: var(--primary);
  border-color: var(--primary);
}
.float_contact .backtop s:hover,
.float_contact .backtop span:hover {
  background-color: var(--secondary);
  border-color: var(--secondary);
}
.quote_model {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 999;
  overflow-y: auto;
  display: none;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.5);
}
.quote_model .quote_box {
  width: calc(100% - 4rem);
  max-width: 105.3rem;
  margin: 4rem auto;
  background-color: #fff;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem 3.53%;
  border-radius: 1.2rem;
  padding: 1.1rem 2rem 1.2rem 1.2rem;
}
.quote_model .img {
  width: 50.5387%;
  border-radius: 1.2rem;
  --h: 119.767442%;
}
.quote_model .img:hover img {
  transform: scale(1.02);
}
.quote_model .rt {
  flex: 1;
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 1rem 0 1.8rem;
}
.quote_model .rt .close {
  width: 1.5rem;
  height: 1.5rem;
  display: block;
  margin-left: auto;
  cursor: pointer;
  transition: all 0.3s;
  opacity: 0.5;
  background: url("../img/icon-close.svg") no-repeat center / contain;
}
.quote_model .rt .close:hover {
  opacity: 1;
  transform: rotate(360deg);
}
.quote_model .rt .title {
  font-size: 3.4rem;
  line-height: 1.29412;
  font-weight: 700;
  color: #1e120d;
  max-width: 39rem;
  margin-top: 1.2rem;
}
.quote_model .rt .tip {
  position: relative;
  font-size: 1.4rem;
  line-height: 1.4286;
  color: #271c0b;
  font-weight: 300;
  opacity: 0.75;
  max-width: 42.2rem;
  margin-top: 2rem;
  padding-left: 0.9rem;
}
.quote_model .rt .tip::before {
  display: inline-block;
  content: '* ';
  position: absolute;
  left: 0;
}
.quote_model form {
  display: grid;
  gap: 2rem;
  max-width: 45rem;
  margin-top: 3.6rem;
  margin-bottom: auto;
}
.quote_model form span {
  width: 100%;
}
.quote_model form label {
  background-color: var(--bg);
  border: 1px solid var(--bg);
  border-radius: 0.4rem;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
}
.quote_model form label:focus-within {
  border-color: var(--secondary);
}
.quote_model form .line {
  border-color: #b0b3b5;
  background-color: transparent;
  padding-bottom: 1px;
}
.quote_model form .number {
  position: relative;
  grid-template-columns: auto 12.6rem 1fr;
}
.quote_model form .number input {
  padding: 0 1.3rem;
}
.quote_model form .label {
  display: block;
  font-size: 1.7rem;
  font-weight: 600;
  white-space: nowrap;
  padding-left: 1.3rem;
}
.quote_model form input,
.quote_model form select {
  display: block;
  width: 100%;
  border: none;
  background-color: transparent;
  font-size: 1.6rem;
  color: #081528;
  height: 5.4rem;
  padding: 0 3.7rem;
}
.quote_model form input::placeholder,
.quote_model form select::placeholder {
  color: #7c7d7f;
}
.quote_model form input:disabled,
.quote_model form select:disabled {
  color: #7c7d7f;
}
.quote_model form select,
.quote_model form .selected-flag {
  font-weight: 500;
}
.quote_model form .selected-flag {
  font-size: 1.6rem;
  padding-left: 3.1rem;
}
.quote_model form span:has(input[type=submit]) {
  margin-top: 1px;
}
.quote_model form input[type=submit] {
  width: auto;
  font-weight: 700;
  border-radius: 100px;
  background-color: var(--primary);
  color: #fff;
  transition: all 0.3s;
  height: 4.7rem;
  padding: 0 3.1rem;
}
.quote_model form input[type=submit]:hover {
  background-color: var(--secondary);
}
.page_products {
  padding: 3.9rem 0 6.3rem;
}
.page_products p {
  margin-top: 1.3rem;
}
.page_products .page_products_swiper {
  margin-top: 2.1rem;
  padding-bottom: 1rem;
}
.page_products .page_products_swiper .swiper-slide {
  max-width: 302px;
}
.page_products .swiper_btns {
  top: 51%;
}
.page_products .parameters {
  margin-top: 4.1rem;
}
.page_products .parameters h3 {
  font-size: 2.4rem;
  font-weight: 700;
  color: #232323;
}
.page_products .nav {
  margin-top: 1.6rem;
}
.page_products .nav .nav_list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(20rem, 100%), 1fr));
  gap: 2rem 1.77523%;
}
.page_products .nav .nav_item {
  display: block;
  cursor: pointer;
  position: relative;
  z-index: 2;
  border-radius: var(--radius);
  background-color: #fff;
  --radius: 3.4rem;
  padding: 1.2rem 2rem;
}
.page_products .nav .nav_item::before {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  content: '';
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  border-radius: var(--radius);
  border: 2px solid var(--primary);
  box-shadow: 0 0.6rem 0.8rem rgba(165, 165, 165, 0.14);
  z-index: -1;
  pointer-events: none;
  transition: all 0.3s;
  opacity: 0;
}
.page_products .nav .nav_item.active::before,
.page_products .nav .nav_item:hover::before {
  opacity: 1;
}
.page_products .nav .icon {
  width: 6rem;
  height: 6rem;
  margin: 0 auto;
}
.page_products .nav .title {
  font-size: 1.778rem;
  font-weight: 600;
  text-align: center;
  margin-top: 0.6rem;
}
.page_free::before {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  content: '';
  background-color: #1267a7;
  opacity: 0.84;
  z-index: -1;
  pointer-events: none;
}
.page_free > img:nth-of-type(2) {
  z-index: -1;
}
.page_free .flex {
  min-height: 35.9rem;
  padding: 4rem 0;
}
.page_free .head {
  max-width: 54.7rem;
}
.page_free .head h2 {
  line-height: 1.3888888;
}
.page_free p {
  max-width: 51.4rem;
  margin-top: 1rem;
}
.page_free .btns {
  display: grid;
  gap: 2rem;
}
.page_banner::before {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  content: '';
  z-index: -1;
  pointer-events: none;
  background-color: #000000;
  opacity: 0.06;
}
.page_banner .flex {
  min-height: 34rem;
  padding: 4rem 0;
}
.page_banner .head {
  width: 66.5625%;
  max-width: 80.7rem;
}
.page_banner p {
  margin-top: 1.3rem;
}
.page_banner .btn {
  margin-top: 2.6rem;
}
.swiper_con {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.swiper_con div.swiper-scrollbar {
  flex: 1;
  max-width: 106.1rem;
}
div.swiper-scrollbar.swiper-scrollbar-horizontal {
  position: static;
  width: 100%;
  height: 3px;
  background: #d8e0ea;
}
div.swiper-scrollbar.swiper-scrollbar-horizontal .swiper-scrollbar-drag {
  background: var(--primary);
}
.breadcrumbs {
  line-height: 3rem;
  min-height: 3rem;
}
.breadcrumbs span {
  font-weight: 500;
  color: #161616;
}
.breadcrumbs span span::before {
  display: inline-block;
  content: '';
  width: 1px;
  height: 1.3rem;
  background-color: rgba(77, 78, 79, 0.67);
  transform: rotate(27deg);
  margin: 0 1.3rem 0 1.2rem;
}
.breadcrumbs span span:first-child::before {
  display: none;
}
.breadcrumbs span span:first-child a {
  overflow: hidden;
  display: inline-block;
  width: 1.7rem;
  height: 1.7rem;
  background: url("../img/home.svg") no-repeat center / contain;
  text-indent: -999px;
  color: transparent;
  filter: contrast(0) brightness(0.9);
  transform: translateY(1px);
  margin-right: 1px;
}
.breadcrumbs span span:first-child a:hover {
  filter: unset;
}
.breadcrumbs span a {
  font-weight: 400;
  color: #4d4e4f;
  transition: all 0.3s;
  text-decoration: underline transparent;
}
.breadcrumbs span a:hover {
  color: var(--primary);
  text-decoration-color: var(--primary);
}
/*
.flag-container {
  width: 100%;
}
.flag-container.dropup .country-list {
  bottom: calc(100% + 1px);
  border-top-width: 1px;
  border-bottom-width: 0;
  top: unset;
}
.flag-container.active .country-list {
  opacity: 1;
  pointer-events: all;
}
.flag-container .selected-flag {
  font-weight: 500;
  position: relative;
  display: flex;
  align-items: center;
  cursor: pointer;
  font-size: 1.7rem;
  color: #081528;
  height: 100%;
  gap: 0.6rem;
  padding: 0 1.4rem 0 2rem;
}
.flag-container .selected-flag::after {
  position: absolute;
  right: 0;
  height: 44.44%;
  width: 2px;
  background-color: #081528;
  opacity: 0.24;
  content: '';
}
.flag-container .selected-flag .iti-arrow {
  display: inline-block;
  flex-shrink: 0;
  background: url("../img/icon-select.svg") no-repeat center / contain;
  width: 1rem;
  height: 1rem;
  content: '';
}
 .flag-container .iti-flag {
  width: 2.9rem;
  height: 2.9rem;
  border-radius: 50%;
  border: 1px solid #898989;
  display: inline-block;
  flex-shrink: 0;
}
.flag-container .iti-flag img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  transform: scale(0.7037);
} */
/* .flag-container .country-list {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 1px);
  background-color: #fff;
  border: 1px solid #b0b3b5;
  max-height: 20rem;
  overflow-y: auto;
  opacity: 0;
  pointer-events: none;
  border-top-width: 0;
}
.flag-container .country-list .country {
  display: flex;
  align-items: center;
  cursor: pointer;
  transition: all 0.2s;
  font-weight: 500;
  gap: 1rem;
  padding: 1rem 1.3rem;
}
.flag-container .country-list .country.active,
.flag-container .country-list .country:hover {
  background-color: var(--bg);
}
.flag-container .country-list .country .dial-code {
  color: #7c7d7f;
} */

body span.wpcf7-spinner{
  width: 24px !important;
  margin-left: 0;
  margin-top: 1.5rem;
}
body .wpcf7 form .wpcf7-response-output{
  padding: 0;
  margin: 0;
  border: none;
}
.wpcf7-form-control-wrap[data-name="file-799"]{
  display: none;
}
.quote_form form {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 3.2rem 0;
}
.quote_form span {
  width: 100%;
}
.quote_form .col-2 {
  width: 48.88305%;
}
.quote_form .label {
  display: block;
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 1.4rem;
}
.quote_form input,
.quote_form textarea,
.quote_form select,
.quote_form .number {
  display: block;
  width: 100%;
  font-size: 1.7rem;
  color: #081528;
  border: 1px solid transparent;
  background-color: var(--bg);
  border-radius: 0.4rem;
  height: 5.6rem;
  padding: 0 1.9rem;
}
.quote_form input::placeholder,
.quote_form textarea::placeholder,
.quote_form select::placeholder,
.quote_form .number::placeholder {
  color: #7c7d7f;
}
.quote_form input:focus,
.quote_form textarea:focus,
.quote_form select:focus,
.quote_form .number:focus {
  border-color: var(--primary);
}
.quote_form textarea {
  padding: 1.5rem 1.9rem;
  height: 13.1rem;
}
.quote_form textarea::placeholder {
  opacity: 0.5;
}
.quote_form .number {
  position: relative;
  display: grid;
  grid-template-columns: 11.3rem 1fr;
  padding: 0;
  height: auto;
}
.quote_form .number input {
  border: none;
  height: 5.4rem;
}
.quote_form .number:focus-within {
  border-color: var(--primary);
}
.quote_form span:has(.upload) {
  margin-top: -2px;
}
.quote_form .upload {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(8, 21, 40, 0.14);
  padding-bottom: 1.3rem;
}
.quote_form .upload .label {
  margin: 0;
  width: auto;
}
.quote_form .upload .btn_line {
  font-size: 1.6rem;
  color: #0c0c0c;
  line-height: 4.3rem;
  padding: 0 2.7rem;
}
.quote_form .upload .btn_line:hover {
  color: #fff;
}
.quote_form .upload input {
  display: none;
}
.quote_form span:has(input[type=checkbox]) {
  margin-top: 1px;
}
.quote_form input[type=checkbox] {
  width: 2.1rem;
  height: 2.1rem;
  padding: 0;
  border-color: #c9c9c9;
  vertical-align: top;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--bg);
  border-radius: 0;
}
.quote_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;
}
.quote_form input[type=checkbox]:checked::after {
  opacity: 1;
}
.quote_form input[type=checkbox] ~ span {
  vertical-align: top;
  cursor: pointer;
  color: #4f5154;
  line-height: 1.75;
  display: inline-block;
  width: calc(100% - 2.5rem);
  padding-left: 1rem;
  margin-top: -0.4rem;
}
.quote_form input[type=checkbox] ~ span a {
  color: var(--primary);
  text-decoration: underline;
  transition: all 0.3s;
}
.quote_form input[type=checkbox] ~ span a:hover {
  color: var(--secondary);
  text-decoration-color: transparent;
}
.quote_form span:has(input[type=submit]) {
  margin-top: 0.4rem;
}
.quote_form input[type=submit] {
  transition: all 0.3s;
  text-align: center;
  border-radius: 100px;
  background-color: var(--primary);
  border: 1px solid var(--primary);
  color: #fff;
  font-size: 1.8rem;
  font-weight: 700;
  width: auto;
  min-width: 21.9rem;
  height: 6.2rem;
}
.quote_form input[type=submit]:hover {
  background-color: var(--secondary);
  border-color: var(--secondary);
}
nav.navigation .screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}
nav.navigation .nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.7rem;
}
nav.navigation .page-numbers {
  transition: all 0.3s;
  font-weight: 500;
  color: #171717;
  cursor: pointer;
  text-align: center;
  border-radius: 0.6rem;
  min-width: 4.4rem;
  line-height: 4.4rem;
  padding: 0 1rem;
}
nav.navigation .page-numbers.current,
nav.navigation .page-numbers:hover {
  background-color: var(--primary);
  color: #fff;
}
nav.navigation .page-numbers.prev,
nav.navigation .page-numbers.next,
nav.navigation .page-numbers.omit {
  min-width: unset;
  padding: 0;
}
nav.navigation .prev,
nav.navigation .next {
  background: url("../img/nav-r.svg") no-repeat center / contain;
  width: 0.7rem;
  white-space: nowrap;
  overflow: hidden;
  text-indent: -999px;
  transition: all 0.3s;
  filter: contrast(0) brightness(0);
  opacity: 0.5;
  margin: 0 1.2rem;
}
nav.navigation .prev:hover,
nav.navigation .next:hover {
  opacity: 1;
  filter: unset;
  background-color: transparent;
}
nav.navigation .prev {
  transform: rotate(180deg);
}
nav.navigation .omit {
  margin: 0 0.6rem 0 0.8rem;
}
nav.navigation span.page-numbers {
  pointer-events: none;
}
.video {
  position: relative;
  width: 100%;
  padding-bottom: 42.265625%;
  border-radius: 3.4rem;
  overflow: hidden;
  cursor: pointer;
}
.video .rll-youtube-player,
.video .flying-press-youtube {
  padding: 0;
  position: static;
}
.video video,
.video img,
.video iframe,
.video div:not(.btn_play) {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  position: absolute;
  left: 0;
  top: 0;
}
.video .btn_play {
  position: absolute;
  width: 6.25%;
  padding-bottom: 6.25%;
  left: 50%;
  top: 50%;
  z-index: 2;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: url("../img/play.svg") no-repeat center / 26.25% var(--primary);
  transition: all 0.4s, opacity 0.3s;
  cursor: pointer;
}
.video .btn_play:hover {
  transform: translate(-50%, -50%) scale(1.1);
}
.video.active .btn_play {
  opacity: 0;
}
.category_list .active a::before {
  opacity: 1;
}
.category_list .active .img,
.category_list .active .syedittext,
.category_list .active .btn {
  transform: translateY(0);
}
.category_list .active .btn {
  opacity: 1;
}
.category_list a {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  height: 100%;
  --radius: 3rem;
  border-radius: var(--radius);
  background-color: #fff;
}
.category_list a::before {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  content: '';
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  border-radius: var(--radius);
  border: 2px solid var(--primary);
  box-shadow: var(--shadow);
  z-index: -1;
  pointer-events: none;
  transition: all 0.3s;
  opacity: 0;
}
.category_list .img {
  padding-bottom: 100%;
  transition: all 0.4s;
  transform: translateY(10.63%);
}
.category_list .info {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  overflow: hidden;
  padding: 1.33% 9.3% 14.29%;
}
.category_list .syedittext {
  flex: 1;
  transition: all 0.4s;
  line-height: 1.5;
  color: #6f6f6f;
  transform: translateY(6.4rem);
}
.category_list .syedittext ul {
  margin-top: 1.4rem;
}
.category_list .syedittext ul + .desc {
  margin-top: 0.4rem;
}
.category_list .cat {
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 1px;
}
.category_list .title {
  font-size: 2rem;
  line-height: 1.3;
  font-weight: 700;
  color: var(--title);
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  height: 5.2rem;
  max-width: 24rem;
}
.category_list .desc {
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 4;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  margin-top: 0.7rem;
}
.category_list strong {
  font-weight: 600;
  color: var(--title);
}
.category_list .btn {
  margin-top: 1.4rem;
  font-size: 1.6rem;
  line-height: 4.5rem;
  padding: 0 3.5rem;
  transform: translateY(6.4rem);
  opacity: 0;
  transition: all 0.3s, transform 0.4s;
}
.faq_list .faq_item.active .question {
  background-color: var(--primary);
  color: #fff;
}
.faq_list .faq_item.active .question::after {
  filter: contrast(0) brightness(2);
  transform: rotate(45deg);
}
.faq_list .question {
  display: grid;
  grid-template-columns: 1fr 1.8rem;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s;
  border-radius: 0.8rem;
  background-color: var(--bg);
  color: #232323;
  font-size: 2rem;
  line-height: 1.4;
  font-weight: 600;
  gap: 2rem;
  padding: 2.39% 4.46% 2.07% 4.3%;
}
.faq_list .question::after {
  display: block;
  padding-bottom: 100%;
  background: url("../img/add.svg") no-repeat center / contain;
  content: '';
  transition: all 0.3s;
}
.faq_list .answer {
  display: none;
  font-size: 1.7rem;
  line-height: 2.8rem;
  color: #515151;
  padding: 2.9% 4.3% 3.45%;
}
.product_list .active a::after {
  opacity: 1;
}
.product_list .active .btn_line {
  background-color: var(--secondary);
  border-color: var(--secondary);
  color: #fff;
}
.product_list a {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  --radius: 1.6rem;
  border-radius: var(--radius);
  border: 1px solid #c4c9ce;
  background-color: #fff;
  position: relative;
  height: 100%;
}
.product_list a::after {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  content: '';
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  border-radius: var(--radius);
  border: 2px solid var(--primary);
  box-shadow: var(--shadow);
  pointer-events: none;
  transition: all 0.3s;
  opacity: 0;
}
.product_list a:hover img {
  transform: scale(1.02);
}
.product_list .img {
  --h: 100%;
  max-width: 30.3rem;
  width: 27.9874214%;
}
.product_list .info {
  flex: 1;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: start;
  padding: 2.1% 2.2% 2.31% 1.47%;
}
.product_list .title {
  font-size: 2rem;
  font-weight: 700;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}
.product_list .desc {
  line-height: 1.5;
  color: var(--text);
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  max-width: 41.7rem;
  margin-top: 0.8rem;
}
.product_list .btn_line {
  font-size: 1.6rem;
  line-height: 4.6rem;
  padding: 0 3.4rem;
  margin-top: 15.1%;
  flex-shrink: 0;
}
.product_list .spec {
  display: grid;
  grid-template-columns: 50.4% 1fr;
  gap: 1.9rem;
  overflow: hidden;
  max-width: 58.2rem;
  margin-top: 1.4rem;
}
.product_list .spec .tm {
  border-right: 1px solid rgba(0, 0, 0, 0.14);
  margin-right: -1px;
  padding-right: 2rem;
}
.product_list .spec strong {
  font-weight: 600;
  display: block;
  margin-top: 1.1rem;
  margin-bottom: 2px;
}
.product_list .spec strong:first-child {
  margin-top: 0;
}
.product_list .spec strong + p {
  margin-top: 3px;
}
.product_list .spec span {
  display: block;
  font-size: 1.3rem;
  font-weight: 600;
  color: #242424;
  margin-bottom: 2px;
}
.product_list .spec p {
  font-size: 1.2rem;
  line-height: 1.333333;
  color: #6f6f6f;
  font-weight: 300;
}
.product_list .spec ul li + li {
  margin-top: 1.8rem;
}
.product_list .spec ul li {
  position: relative;
  padding-left: 1.2rem;
}
.product_list .spec ul li span {
  margin-bottom: 0;
}
.product_list .spec ul li::before {
  position: absolute;
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 50%;
  background-color: var(--secondary);
  content: '';
  left: 0;
  top: 0.7rem;
}
.download_item {
  position: relative;
  z-index: 2;
  --radius: 1.4rem;
  border-radius: var(--radius);
  border: 1px solid #c4c9ce;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.download_item::before {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  content: '';
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  border-radius: var(--radius);
  border: 2px solid var(--primary);
  box-shadow: var(--shadow);
  pointer-events: none;
  z-index: -1;
  transition: all 0.3s;
  opacity: 0;
}
.download_item.active::before {
  opacity: 1;
}
.download_item .info {
  position: relative;
  flex: 1;
  border-bottom: 1px solid rgba(20, 20, 20, 0.14);
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  font-size: 1.7rem;
  line-height: 1.411765;
  gap: 2.9rem 2.1rem;
  padding: 4.3% 4.94% 4.3% 6.36943%;
}
.download_item .metas {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.download_item .metas .icon {
  font-size: 1.4rem;
  font-weight: 700;
  text-align: center;
  margin-top: -2px;
}
.download_item .metas .icon img {
  width: 2.6rem;
  height: 3.6rem;
}
.download_item .metas .cat {
  display: inline-block;
  font-size: 1.4rem;
  font-weight: 500;
  border-radius: 1.5rem;
  background-color: #e6eaed;
  padding: 0.5rem 1.95rem;
  margin-bottom: 1%;
}
.download_item .syedittext h3 {
  font-size: 2.4rem;
  line-height: normal;
  font-weight: 700;
}
.download_item .syedittext .vs {
  font-size: 1.8rem;
  line-height: normal;
  margin-top: 0.4rem;
}
.download_item .syedittext p {
  color: var(--text);
  margin-top: 3rem;
}
.download_item .syedittext ul {
  color: var(--text);
  margin-top: 1rem;
}
.download_item .syedittext ul strong {
  font-weight: 600;
  color: #333333;
}
.download_item .btns {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 2rem 2.8rem;
  padding: 2.39% 4.94% 2.55%;
}
.download_item .btns .icon_item {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s;
  font-size: 1.8rem;
  font-weight: 700;
  gap: 1.4rem;
}
.download_item .btns .icon_item::before {
  display: inline-block;
  width: 3.3rem;
  height: 3.3rem;
  border-radius: 0.8rem;
  content: '';
  background: no-repeat center / 54.5455%;
  transition: all 0.3s;
}
.download_item .btns .icon_item:hover {
  color: var(--primary);
}
.download_item .btns .share::before {
  background-image: url("../img/icon-share.svg");
  background-size: 78.78%;
  filter: contrast(0) brightness(0);
}
.download_item .btns .share:hover::before {
  filter: unset;
}
.download_item .btns .download {
  color: var(--primary);
}
.download_item .btns .download::before {
  background-image: url("../img/icon-download-w.svg");
  background-color: var(--primary);
}
.download_item .btns .download:hover {
  color: var(--secondary);
}
.download_item .btns .download:hover::before {
  background-color: var(--secondary);
}

.blog_list a {
  display: block;
  height: 100%;
}
.blog_list a:hover img {
  transform: scale(1.02);
}
.blog_list .img {
  border-radius: 0.6rem;
  padding-bottom: 75.573%;
}
.blog_list .info {
  margin-top: 2.6rem;
}
.blog_list .info .cat {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--primary);
  text-transform: uppercase;
}
.blog_list .info .title {
  font-size: 2.4rem;
  line-height: 1.25;
  font-weight: 600;
  color: #25292d;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  margin-top: 1.3rem;
}
.blog_list .info .date {
  color: #9d9d9d;
  margin-top: 0.9rem;
}

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.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;
}
.wd-action-btn:hover{
  transform: rotate(180deg);
}
div.search-block .searchform {
  border-bottom: 1px solid rgba(119, 119, 119, 0.2);
  /* opacity: 0; */
  transition: opacity 0.35s ease 0.2s;
  --wd-form-color: #333;
  --wd-form-placeholder-color: #333;
  text-align: center;
  transition: 0.75s all ease;
}
div.search-block.active .searchform {
  opacity: 1;
}
div.search-block .searchform input[type='text'] {
  padding: 0;
  height: 110px;
  border: none;
  text-align: center;
  font-size: 35px;
  outline: none;
}
header div.main-menu div.main div.right {
  display: none;
}
div.search-block .searchform ::-webkit-input-placeholder {
  color: #333333;
}
div.jst-language-switcher {
  display: none;
}

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

.default_body h2 {
  font-size: 2.6rem;
  line-height: 3.4rem;
  font-weight: 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;
}




@media screen and (min-width: 769px) and (max-width: 1024px) {
  .content {
    padding: 0 3rem;
  }
}
@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);
    border-bottom: none;
  }
  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_lang,
  header .btn_search {
    margin: 0;
  }
  header .btn_menu {
    display: block;
  }
}
@media screen and (min-width: 769px) and (max-width: 896px) {
  .content,
  .swiper_content {
    max-width: 768px;
    padding: 0 3rem;
  }
  .head h1 {
    font-size: 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;
  }
  .btn_i {
    font-size: 14px;
    gap: 12px;
  }
  .btn_i::after {
    width: 12px;
    height: 12px;
  }
  .swiper_btns {
    gap: 20px;
  }
  .swiper_btns .btn_next,
  .swiper_btns .btn_prev {
    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.white p {
    letter-spacing: unset;
  }
  div.head.bn p {
    line-height: 1.5;
  }
  div.head.flex .syedittext {
    padding: 0;
  }
  div.head.flex .btn,
  div.head.flex .btn_line,
  div.head.flex .btn_i {
    margin: 0;
  }
  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,
  div.head .btn_i {
    margin-top: 20px;
  }
  div.head .btn,
  div.head .btn_line {
    font-size: 14px;
    line-height: 40px;
    padding: 0 20px;
  }
  header {
    padding: 0;
    top: 0;
  }
  header .logo img {
    height: 50px;
  }
  header .btns {
    gap: 26px;
    min-height: 64px;
  }
  header .btn_search {
    width: 22px;
    height: 22px;
  }
  header .btn_lang {
    font-size: 14px;
    gap: 5px;
  }
  header .btn_lang::before {
    width: 22px;
    height: 22px;
  }
  header .btn_lang::after {
    width: 8px;
    height: 8px;
  }
  footer .main {
    padding: 50px 0;
  }
  footer .main .foot_intro {
    margin: 0;
  }
  footer .main .foot_intro .logo {
    max-width: 100px;
  }
  footer .main .foot_intro p {
    font-size: 14px;
    margin-top: 20px;
  }
  footer .main .foot_intro .connect {
    margin-top: 20px;
  }
  footer .main .foot_intro .connect li + li {
    margin-top: 20px;
  }
  footer .main .foot_intro .connect li {
    padding-left: 25px;
  }
  footer .main .foot_intro .connect li::before {
    width: 16px;
    height: 16px;
    top: 0;
  }
  footer .main .foot_intro .connect li a {
    font-size: 14px;
  }
  footer .main .foot_intro .connect .whatsapp {
    margin-top: 20px;
  }
  footer .main .foot_intro .connect .whatsapp::before {
    top: 0;
  }
  footer .main .foot_intro .social {
    margin-top: 30px;
    gap: 16px;
    justify-content: space-around;
  }
  footer .main .foot_intro .social a {
    width: 40px;
    height: 40px;
  }
  footer .main .foot_nav {
    max-width: unset;
  }
  footer .main .foot_nav strong {
    font-size: 16px;
    margin-bottom: 16px;
  }
  footer .main .foot_nav li + li {
    margin-top: 14px;
  }
  footer .main .foot_nav li a {
    font-size: 14px;
    line-height: normal;
    display: block;
    font-weight: normal;
  }
  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 .bottom {
    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;
  }
  footer .bottom a {
    font-size: 14px;
  }
  .quote_model .quote_box {
    padding: 10px;
    border-radius: 10px;
    gap: 20px;
  }
  .quote_model .img {
    width: 40%;
    border-radius: 10px;
  }
  .quote_model .rt {
    padding: 10px 10px 10px 0;
  }
  .quote_model .rt .close {
    width: 12px;
    height: 12px;
  }
  .quote_model .rt .title {
    font-size: 22px;
    line-height: 1.3;
    margin-top: 10px;
  }
  .quote_model .rt .tip {
    font-size: 13px;
    line-height: 1.5;
    margin-top: 10px;
  }
  .quote_model form {
    margin-top: 20px;
    gap: 10px;
  }
  .quote_model form input,
  .quote_model form select {
    font-size: 14px;
    padding: 0 20px;
    height: 44px;
  }
  .quote_model form .line {
    padding-bottom: 0;
  }
  .quote_model form .number {
    grid-template-columns: auto 100px 1fr;
    height: 46px;
  }
  .quote_model form .number input {
    padding: 0 10px;
  }
  .quote_model form .number .selected-flag {
    font-size: 14px;
    padding-left: 12px;
  }
  .quote_model form .label {
    font-size: 14px;
    padding-left: 10px;
  }
  .quote_model form span:has(input[type=submit]) {
    margin-top: 0;
  }
  .quote_model form input[type=submit] {
    height: 46px;
    padding: 0 20px;
  }
  .page_products {
    padding: 50px 0;
    overflow: hidden;
  }
  .page_products .swiper_content {
    overflow: unset;
    padding: 0 20px;
  }
  .page_products .page_products_swiper {
    margin-top: 30px;
    padding-bottom: 0;
  }
  .page_products .page_products_swiper .swiper-slide {
    max-width: 282px;
  }
  .page_products .parameters {
    margin-top: 30px;
  }
  .page_products .parameters h3 {
    font-size: 18px;
  }
  .page_products .nav {
    margin-top: 10px;
  }
  .page_products .nav .nav_list {
    width: calc(100% + 40px);
    margin: 0 -20px 0;
    padding: 10px 20px;
    overflow-x: auto;
    display: flex;
    gap: 20px;
  }
  .page_products .nav .nav_list::-webkit-scrollbar {
    display: none;
  }
  .page_products .nav .nav_list li {
    flex: 1 0 120px;
  }
  .page_products .nav .nav_item {
    --radius: 10px;
    padding: 15px 20px;
  }
  .page_products .nav .nav_item .icon {
    width: 50px;
    height: 50px;
  }
  .page_products .nav .nav_item .title {
    font-size: 14px;
    margin-top: 5px;
  }
  .page_free .flex {
    min-height: auto;
    padding: 50px 0;
  }
  .page_free .head h2 {
    line-height: 1.3;
  }
  .page_free .btns {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }
  .page_banner::before {
    opacity: 0.3;
  }
  .page_banner .flex {
    min-height: unset;
    padding: 50px 0;
  }
  .page_banner .flex .head {
    padding: 0;
  }
  .float_contact {
    right: 20px;
    bottom: 20px;
  }
  .float_contact ul {
    gap: 10px;
  }
  .float_contact a,
  .float_contact span {
    width: 40px;
    height: 40px;
  }
  .float_contact .qrcode {
    padding: 5px;
    right: 50%;
  }
  .float_contact .qrcode .img {
    width: 50px;
    height: 50px;
  }
  .video {
    border-radius: 10px;
  }
  .breadcrumbs {
    line-height: 20px;
    min-height: 20px;
  }
  .breadcrumbs span span::before {
    height: 12px;
    margin: 0 10px;
  }
  nav.navigation .nav-links {
    gap: 5px;
  }
  nav.navigation .page-numbers {
    min-width: 36px;
    line-height: 36px;
    padding: 0 2px;
  }
  nav.navigation .prev,
  nav.navigation .next {
    width: 5px;
    margin: 0;
  }
  nav.navigation .omit {
    margin: 0;
  }
  .quote_form form {
    gap: 16px 0;
  }
  .quote_form form .label {
    font-size: 14px;
    margin-bottom: 10px;
  }
  .quote_form form input,
  .quote_form form textarea,
  .quote_form form select {
    font-size: 14px;
    height: 46px;
    padding: 0 20px;
  }
  .quote_form form select {
    background-size: 12px;
    background-position: right 20px center;
    padding-right: 40px;
  }
  .quote_form form textarea {
    height: 120px;
    padding: 14px 20px;
  }
  .quote_form form .number {
    font-size: 14px;
    height: 46px;
    grid-template-columns: 100px 1fr;
  }
  .quote_form form .number input {
    height: 44px;
  }
  .quote_form form span:has(input[type=checkbox]) {
    margin-top: 0;
  }
  .quote_form form input[type=checkbox] {
    width: 20px;
    height: 20px;
  }
  .quote_form form input[type=checkbox] ~ span {
    width: calc(100% - 24px);
    padding-left: 12px;
    font-size: 14px;
    line-height: 1.5;
    margin-top: 0;
  }
  .quote_form form span:has(input[type=submit]) {
    margin-top: 10px;
  }
  .quote_form form input[type=submit] {
    min-width: 120px;
    font-size: 14px;
    padding: 0 20px;
    height: 46px;
  }
  .quote_form form span:has(.upload) {
    margin-top: 10px;
  }
  .quote_form form .upload {
    padding-bottom: 10px;
  }
  .quote_form form .upload .btn_line {
    font-size: 14px;
    line-height: 40px;
    padding: 0 20px;
  }
  .flag-container .selected-flag {
    font-size: 14px;
    padding: 0 14px;
    gap: 7px;
  }
  .flag-container .selected-flag .iti-arrow {
    width: 6px;
    height: 6px;
    margin-left: auto;
  }
  .flag-container .iti-flag {
    width: 25px;
    height: 25px;
  }
  .flag-container .country-list .country {
    padding: 5px 14px;
  }
  .category_list a {
    --radius: 10px;
  }
  .category_list .img {
    transform: translateY(0);
  }
  .category_list .img img {
    height: 100%;
  }
  .category_list .syedittext {
    transform: translateY(0);
  }
  .category_list .info {
    padding: 10px 20px 20px;
  }
  .category_list .info .syedittext .cat {
    font-size: 14px;
    margin-bottom: 5px;
  }
  .category_list .info .syedittext .title {
    font-size: 18px;
    line-height: 1.5;
    height: 54px;
  }
  .category_list .info .syedittext .desc {
    font-size: 14px;
    line-height: 1.5;
    margin-top: 5px;
  }
  .category_list .info .syedittext ul {
    margin-top: 10px;
  }
  .category_list .info .btn {
    margin-top: 20px;
    opacity: 1;
    font-size: 14px;
    line-height: 40px;
    transform: translateY(0);
  }
  .download_item {
    --radius: 10px;
  }
  .download_item .info {
    padding: 20px;
    font-size: 14px;
    line-height: 1.5;
    gap: 14px;
    grid-template-columns: 1fr;
  }
  .download_item .info .metas .icon {
    font-size: 13px;
    margin-top: 0;
  }
  .download_item .info .metas .icon img {
    width: 25px;
    height: 25px;
  }
  .download_item .info .metas .cat {
    font-size: 13px;
    padding: 4px 14px;
  }
  .download_item .info .syedittext h3 {
    font-size: 18px;
  }
  .download_item .info .syedittext .vs {
    font-size: 15px;
    margin-top: 5px;
  }
  .download_item .info .syedittext p {
    margin-top: 10px;
  }
  .download_item .info .syedittext ul {
    margin-top: 10px;
  }
  .download_item .btns {
    padding: 14px 20px;
    gap: 14px;
  }
  .download_item .btns .icon_item {
    font-size: 14px;
    gap: 12px;
  }
  .download_item .btns .icon_item::before {
    width: 25px;
    height: 25px;
    border-radius: 4px;
  }
  .faq_list .question {
    font-size: 18px;
    padding: 14px 20px;
    gap: 14px;
    grid-template-columns: 1fr 14px;
  }
  .faq_list .answer {
    font-size: 14px;
    line-height: 1.5;
    padding: 10px 20px 20px;
  }
  .product_list a {
    --radius: 10px;
  }
  .product_list .info {
    padding: 20px;
    display: block;
  }
  .product_list .info .title {
    font-size: 18px;
  }
  .product_list .info .desc {
    margin-top: 10px;
  }
  .product_list .info .btn_line {
    font-size: 14px;
    line-height: 40px;
    padding: 0 20px;
    margin-top: 20px;
    white-space: nowrap;
  }
  .product_list .info .spec {
    grid-template-columns: 1fr 1fr;
    margin-top: 10px;
    gap: 15px;
  }
  .product_list .info .spec .tm {
    padding-right: 14px;
  }
  .product_list .info .spec strong {
    margin-top: 15px;
    margin-bottom: 5px;
  }
  .product_list .info .spec strong:first-child {
    margin-top: 0;
  }
  .product_list .info .spec strong + p {
    margin-top: 0;
  }
  .product_list .info .spec span {
    font-size: 14px;
    margin-bottom: 0;
  }
  .product_list .info .spec p {
    font-size: 14px;
    line-height: 1.5;
  }
  .product_list .info .spec ul {
    margin-top: 0;
  }
  .product_list .info .spec ul li + li {
    margin-top: 10px;
  }
  .product_list .info .spec ul li {
    padding-left: 14px;
  }
  .product_list .info .spec ul li::before {
    width: 5px;
    height: 5px;
    top: 7px;
  }
  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-block input[type="submit"]:not(:disabled):hover {
    background-size: 1.4rem;
    border: none;
  }

  .default_head{
      padding: 10rem 0 5rem;
  }
  .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) {
  footer .main .flex {
    display: block;
  }
  footer .main .foot_intro {
    width: 100%;
    margin-bottom: 20px;
  }
  footer .main .foot_intro .logo {
    margin: 0 auto;
  }
  footer .main .foot_intro p {
    text-align: center;
  }
  footer .main .foot_nav {
    width: 100%;
  }
  footer .main .foot_nav strong {
    line-height: 46px;
    border: 1px solid rgba(22, 22, 22, 0.35);
    padding: 0 22px;
    position: relative;
  }
  footer .main .foot_nav strong::after {
    content: '';
    display: block;
    width: 12px;
    height: 12px;
    background: url(../img/select.svg) no-repeat center / contain;
    position: absolute;
    right: 22px;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s;
  }
  footer .main .foot_nav.active strong::after {
    transform: translateY(-50%) rotate(180deg);
  }
  footer .main .foot_nav > div {
    display: none;
    padding: 0 20px 20px;
  }
  footer .main .foot_nav > div p {
    font-size: 14px;
    line-height: 1.5;
  }
  .page_banner .head {
    width: 100%;
  }
  .quote_form form .col-2 {
    width: 100%;
  }
  .quote_model .quote_box {
    flex-direction: column-reverse;
    padding: 20px;
    gap: 20px;
  }
  .quote_model .rt {
    padding: 0;
  }
  .quote_model .img {
    width: 100%;
  }
  .product_list .img {
    width: 100%;
  }
  .product_list .info .spec {
    grid-template-columns: 1fr;
  }
}

/* Copy Toast */
.download_item .btns {
  position: relative;
}
.copy-toast {
  position: absolute;
  background: #333;
  color: #fff;
  padding: 8px 16px;
  border-radius: 4px;
  font-size: 14px;
  z-index: 9999;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s, transform 0.3s;
  pointer-events: none;
  white-space: nowrap;
}
.copy-toast.show {
  opacity: 1;
  transform: translateY(0);
}



