* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --primary: #feb703;
  --secondary: #013176;
  --title: #221e1f;
  --text: #606060;
}
html {
  scroll-behavior: smooth;
  font-size: clamp(7.5px, 0.522vw, 10px);
}
ul {
  list-style: none;
}
a {
  color: inherit;
  cursor: pointer;
  font-size: inherit;
  text-decoration: none;
}
i {
  font-style: normal;
}
.content {
  max-width: 140rem;
  margin: 0 auto;
  position: relative;
}
.content .content {
  padding: 0;
}
.swiper_box {
  position: relative;
}
.swiper_content {
  max-width: 143rem;
  margin: 0 auto;
  position: relative;
  padding: 1.5rem;
  overflow: hidden;
}
button,
input,
textarea {
  outline: none;
  border: none;
  font-family: unset;
  color: var(--title);
}
input[type="submit"],
button {
  cursor: pointer;
}
textarea {
  resize: none;
}
input[type="checkbox"] {
  cursor: pointer;
  appearance: none;
}
input[type="number"] {
  -moz-appearance: textfield;
}
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
select {
  cursor: pointer;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  font-family: unset;
  color: var(--title);
}
.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;
}
body {
  font-size: 1.6rem;
  word-break: break-word;
  color: var(--title);
  font-family: 'Poppins', sans-serif;
}
body.fixed {
  overflow: hidden;
  padding-right: 17px;
}
.only_mobile {
  display: none;
}
.gap {
  gap: 3rem;
}
li.swiper-slide {
  height: auto;
}
.grecaptcha-badge {
  visibility: hidden;
}
#fullscreen-loader {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999999;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
#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;
}
.icon img {
  object-fit: contain;
  width: 100%;
  height: 100%;
  display: block;
  transition: all 0.5s;
  aspect-ratio: inherit;
}
.btn {
  display: inline-block;
  cursor: pointer;
  transition: all 0.3s;
  text-align: center;
  text-transform: uppercase;
  border-radius: 4px;
  background-color: var(--primary);
  border: 1px solid var(--primary);
  color: var(--title);
  font-size: 2rem;
  line-height: normal;
  font-weight: 500;
  padding: 1.9rem 3rem 1.7rem;
  min-width: 21.8rem;
}
.btn:hover {
  background-color: transparent;
  color: var(--primary);
}
.btn_i {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s;
  font-size: 1.8rem;
  line-height: normal;
  font-weight: 500;
  color: var(--title);
  position: relative;
  gap: 1.9rem;
}
.btn_i::after {
  width: 4.5rem;
  height: 4.5rem;
  display: inline-block;
  flex-shrink: 0;
  content: '';
  border-radius: 50%;
  background-color: var(--secondary);
  transition: all 0.3s;
}
.btn_i::before {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4.5rem;
  height: 4.5rem;
  content: '';
  background: url("../img/arrow-r.svg") no-repeat center / 28.8888%;
  transition: all 0.3s;
  filter: contrast(0) brightness(2);
}
.btn_i:hover {
  color: var(--primary);
}
.btn_i:hover::after {
  background-color: var(--primary);
}
.btn_i:hover::before {
  filter: unset;
}
.btn_circle {
  display: inline-block;
  width: 4.4rem;
  border-radius: 50%;
  background-color: var(--secondary);
  transition: all 0.3s;
  cursor: pointer;
}
.btn_circle::after {
  display: block;
  width: 100%;
  padding-bottom: 100%;
  background: url("../img/arrow-r.svg") no-repeat center / 29.545%;
  transition: all 0.3s;
  content: '';
  filter: contrast(0) brightness(2);
}
.btn_circle:hover {
  background-color: var(--primary);
}
.btn_circle:hover::after {
  filter: unset;
}
.swiper_btns {
  gap: 3rem;
  display: flex;
}
.swiper_btns div {
  width: 6.2rem;
  height: 6.2rem;
  cursor: pointer;
  transition: all 0.3s;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #efefef;
}
.swiper_btns div::after {
  content: '';
  display: block;
  width: 2rem;
  height: 2rem;
  transition: all 0.3s;
  background: url(../img/arrow.svg) no-repeat center / contain;
  filter: contrast(0) brightness(0);
}
.swiper_btns div:hover {
  background-color: var(--primary);
}
.swiper_btns .btn_next::after {
  transform: rotate(180deg);
}
.swiper_btns .swiper-button-disabled {
  pointer-events: none;
  background-color: rgba(239, 239, 239, 0.64);
}
.swiper_btns .swiper-button-disabled::after {
  filter: none;
}
.swiper_btns .swiper-button-lock {
  opacity: 0;
  pointer-events: none;
}
.swiper_btns.middle {
  width: 98%;
  max-width: 165.8rem;
  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.has_subtitle strong {
  font-size: 2.2rem;
  display: block;
  text-transform: uppercase;
  font-weight: normal;
  margin-bottom: 2.2rem;
}
.head h1 {
  font-size: 6.4rem;
  line-height: 7.8rem;
  font-weight: 700;
}
.head h2 {
  font-size: 5.2rem;
  line-height: 6.4rem;
  font-weight: 700;
}
header {
  position: sticky;
  top: 0;
  left: 0;
  z-index: 996;
  width: 100%;
  transition: all 0.3s;
  background-color: #fff;
}
header::after {
  position: absolute;
  right: 0;
  top: 0;
  height: 3.8rem;
  width: calc(100% - 2rem);
  max-width: 58.8rem;
  border-bottom-left-radius: 6px;
  background-color: var(--secondary);
  content: '';
}
header .content {
  max-width: 173.2rem;
}
header.sticky {
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}
header .left {
  display: flex;
  align-items: center;
  margin-right: auto;
  padding-top: 2px;
}
header .left .logo {
  display: block;
  overflow: hidden;
  position: relative;
  text-indent: -999px;
}
header .left .logo img {
  display: block;
  width: auto;
  height: 7.15rem;
}
header .left .logo p {
  position: absolute;
  z-index: -1;
  inset: 0;
}
header .main {
  flex: 1;
  padding-top: 3.8rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  justify-content: flex-end;
}

header .header_menu .main{
  justify-content: left;
  align-items: unset;
}
header nav .menu {
  display: flex;
  gap: 6.8rem;
}
header nav .menu > li {
  position: relative;
  z-index: 2;
}
header nav .menu > li:first-child::after {
  background-color: var(--primary);
}
header nav .menu > li:first-child.current-menu-item > a,
header nav .menu > li:first-child.current-menu-parent > a,
header nav .menu > li:first-child:hover > a {
  color: #161616;
}
header nav .menu > li::after {
  width: 0;
  height: 3px;
  position: absolute;
  left: 50%;
  bottom: 22.5%;
  content: '';
  background-color: #1346af;
  transform: translateX(-50%);
  transition: all 0.3s;
}
header nav .menu > li > a {
  display: block;
  font-size: 2.2rem;
  font-weight: 500;
  color: #161616;
  transition: all 0.3s;
  line-height: 8.2rem;
  padding-bottom: 2px;
}
header nav .menu > li.current-menu-item > a,
header nav .menu > li.current-menu-parent > a,
header nav .menu > li:hover > a {
  color: #1346af;
}
header nav .menu > li.current-menu-item::after,
header nav .menu > li.current-menu-parent::after,
header nav .menu > li:hover::after {
  width: calc(100% + 0.7rem);
}
header nav .menu > li:hover ul {
  opacity: 1;
  pointer-events: all;
  padding: 1.6rem 2.4rem;
}
header nav .menu > li:hover ul li {
  transform: translate(0);
}
header nav .menu > li.btn_mega_menu .sub-menu {
  display: none;
}
header nav .sub-menu {
  left: -2.4rem;
  position: absolute;
  min-width: 20rem;
  background-color: #fff;
  padding: 1.6rem 2.4rem 0;
  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;
}
header nav .sub-menu > li {
  margin-bottom: 0.5rem;
  transition: all 0.4s;
  transform: translateY(-1.6rem);
}
header nav .sub-menu > li > a {
  display: block;
  padding: 0.8rem 0;
  transition: all 0.3s;
  font-size: 1.5rem;
  position: relative;
}
header nav .sub-menu > li > a::after {
  width: 0;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: 0;
  content: '';
  background-color: var(--secondary);
  transition: all 0.3s;
}
header nav .sub-menu > li > a:hover::after {
  width: 100%;
}
header .btns {
  gap: 4rem;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-height: 8.4rem;
  margin-left: 3.85%;
}
header .btns .btn_search {
  width: 2.5rem;
  height: 2.5rem;
  cursor: pointer;
  background: url(../img/icon-search.svg) no-repeat center / contain;
  margin-bottom: 2px;
}
header .btns .btn_menu {
  display: none;
}
footer {
  background-color: #021827;
  color: #fff;
}
footer .footer_main {
  padding: 9.6rem 0 1rem;
}
footer .footer_main .flex {
  gap: 8.2rem 2rem;
}
footer .slide_intro {
  width: 33.9rem;
  margin-top: -1px;
}
footer .slide_intro .logo {
  display: block;
  overflow: hidden;
  position: relative;
  text-indent: -999px;
  max-width: 32.2rem;
}
footer .slide_intro .logo img {
  display: block;
  width: 100%;
  height: auto;
}
footer .slide_intro .logo p {
  position: absolute;
  z-index: -1;
  inset: 0;
}
footer .slide_intro p {
  line-height: 2.8rem;
  margin-top: 2.4rem;
  font-weight: 300;
  letter-spacing: 0.08px;
}
footer .slide_intro .menu {
  gap: 1rem;
  display: grid;
  margin-top: 2.5rem;
  max-width: 33.2rem;
}
footer .slide_intro .menu a {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr 4.3rem;
  gap: 1rem;
  font-size: 1.7rem;
  font-weight: 500;
  color: var(--title);
  padding: 0.9rem 1.7rem 0.9rem 1.8rem;
  min-height: 6.4rem;
  border-radius: 4px;
  background-color: #ededed;
  transition: all 0.3s;
  position: relative;
  z-index: 2;
  overflow: hidden;
}
footer .slide_intro .menu a::after {
  content: '';
  display: block;
  width: 100%;
  padding-bottom: 100%;
  background: url("../img/arrow-r.svg") no-repeat center / 30.233% var(--primary);
  border-radius: 50%;
  transition: all 0.3s;
}
footer .slide_intro .menu a:hover {
  color: #fff;
  background-color: var(--primary);
}
footer .slide_intro .menu a:hover::after {
  background-color: #fff;
}
footer .slide_obj strong {
  display: block;
  text-transform: uppercase;
  font-size: 2.2rem;
  font-weight: 500;
  margin-bottom: 1.9rem;
}
footer .slide_obj li a {
  opacity: 0.75;
  transition: all 0.3s;
  vertical-align: top;
  font-weight: 300;
}
footer .slide_obj li a:hover {
  opacity: 1;
  color: var(--primary);
}
footer .slide_obj li + li {
  margin-top: 1.5rem;
}
footer .slide_obj button {
  font-weight: 500;
  color: var(--primary);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  transition: all 0.3s;
  font-size: 1.6rem;
  background-color: transparent;
  margin-top: 1.4rem;
  font-weight: 400;
}
footer .slide_obj button:hover {
  text-decoration-color: transparent;
}
footer .slide_connect {
  width: 29.1rem;
}
footer .slide_connect li {
  position: relative;
  padding-left: 6.5rem;
}
footer .slide_connect li::before {
  content: '';
  display: block;
  width: 5.2rem;
  height: 5.2rem;
  background: no-repeat center / contain var(--primary);
  position: absolute;
  left: 0;
  top: 2px;
  border-radius: 50%;
}
footer .slide_connect li a {
  display: inline-block;
  opacity: 1;
  font-weight: 500;
  font-weight: 400;
}
footer .slide_connect li .label {
  font-size: 1.4rem;
  text-transform: uppercase;
  opacity: 0.75;
  margin-bottom: 0.3rem;
  font-weight: 300;
}
footer .slide_connect li a + a {
  margin-top: 0.4rem;
}
footer .slide_connect li + li {
  margin-top: 3rem;
}
footer .slide_connect .whatsapp::before {
  background-image: url(../img/icon-phone2.svg);
}
footer .slide_connect .email::before {
  top: -3px;
  background-image: url(../img/icon-email2.svg);
}
footer .slide_social {
  width: 100%;
  display: flex;
  justify-content: flex-end;
}
footer .slide_social .social {
  gap: 2rem 4.2rem;
  display: flex;
  flex-wrap: wrap;
}
footer .slide_social .social a {
  opacity: 1;
  display: block;
  width: 2.6rem;
  height: 2.6rem;
  overflow: hidden;
  text-indent: -999px;
  position: relative;
  transition: all 0.3s;
}
footer .slide_social .social a::after {
  content: '';
  display: block;
  position: absolute;
  inset: 0;
  background: no-repeat center / contain;
}
footer .slide_social .social a:hover {
  transform: scale(1.1);
}
footer .slide_social .social .facebook a::after {
  background-image: url(../img/facebook.svg);
}
footer .slide_social .social .youtube a::after {
  background-image: url(../img/youtube.svg);
}
footer .slide_social .social .instagram a::after {
  background-image: url(../img/instagram.svg);
}
footer .slide_social .social .linkedin a::after {
  background-image: url(../img/linkedin.svg);
}
footer .copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding: 1.5rem 0 1.9rem;
}
footer .copyright p,
footer .copyright a {
  font-size: 1.4rem;
  font-weight: 300;
  opacity: 0.54;
}
footer .copyright a {
  display: block;
  transition: all 0.3s;
}
footer .copyright a:hover {
  opacity: 1;
  color: var(--primary);
}
footer .copyright ul {
  gap: 2rem 3rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.footer_sidelinks {
  position: fixed;
  bottom: 3rem;
  right: 4.7rem;
  z-index: 9;
}
.footer_sidelinks .active a {
  box-shadow: 10px 10px 8px rgba(255, 198, 141, 0.3);
}
.footer_sidelinks .active a::before {
  opacity: 1;
}
.footer_sidelinks .active a::after {
  filter: contrast(0) brightness(2);
}
.footer_sidelinks .active a span {
  transform: translateY(0);
  opacity: 1;
}
.footer_sidelinks li + li {
  margin-top: 0.8rem;
}
.footer_sidelinks a {
  width: 6.2rem;
  height: 6.2rem;
  display: block;
  position: relative;
  z-index: 2;
  transition: all 0.3s;
  background-color: #fff;
  border-radius: 50%;
  border: 1px solid #d1d1d1;
  text-indent: -99999px;
  
}
.footer_sidelinks a::before {
  position: absolute;
  left: -1px;
  top: -1px;
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  background-image: linear-gradient(139.3045deg, #f96f2b, #feb703);
  content: '';
  z-index: -1;
  pointer-events: none;
  transition: all 0.3s;
  opacity: 0;
  border-radius: 50%;
}
.footer_sidelinks .phone a::before{
  background: rgb(38, 217, 116);
}
.footer_sidelinks a::after {
  width: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  content: '';
  background: no-repeat center / contain;
  transition: all 0.3s;
}
.footer_sidelinks a span {
  position: absolute;
  right: calc(100% + 3px);
  bottom: calc(100% + 6px);
  z-index: 2;
  background-color: #fff;
  font-size: 1.8rem;
  font-weight: 500;
  color: #242526;
  letter-spacing: 0.6px;
  border-radius: 7px;
  text-align: center;
  min-width: 15.5rem;
  padding: 1.4rem 1rem 1.2rem;
  transition: all 0.3s, transform 0.4s;
  transform: translateY(2rem);
  opacity: 0;
  pointer-events: none;
}
.footer_sidelinks a span::after {
  background-color: #fff;
  width: 0.9rem;
  height: 0.7rem;
  clip-path: polygon(100% 0, 0 0, 100% 100%);
  position: absolute;
  top: 100%;
  right: 10%;
  content: '';
}
.footer_sidelinks .phone a::after {
  background-image: url("../img/icon-phone2.svg");
}
.footer_sidelinks .email a::after {
  background-image: url("../img/icon-email2.svg");
  background-size: 90%;
}
.footer_sidelinks .contact a::after {
  background-image: url("../img/icon-contact2.svg");
  background-size: 40.67%;
}
.footer_contact {
  padding: 6.6rem 0 13.1rem;
}
.footer_contact .flex {
  margin-top: 2.3rem;
}
.footer_contact .faqs {
  flex: 1;
  max-width: 82.5rem;
}
.footer_contact .faqs .faq_item:first-child .answer {
  display: block;
}
.footer_contact .items {
  width: 35.714286%;
  padding-top: 0.8rem;
}
.footer_contact .items ul {
  display: grid;
  gap: 1.8rem;
}
.footer_contact .item.active a::before {
  opacity: 1;
}
.footer_contact .item.active .icon {
  filter: contrast(0) brightness(2);
}
.footer_contact .item.active .info {
  color: #fff;
}
.footer_contact .item.active .info p {
  opacity: 0.75;
}
.footer_contact .item.active .btn_circle {
  background-color: var(--primary);
}
.footer_contact .item.active .btn_circle::after {
  filter: contrast(0) brightness(2);
}
.footer_contact .item a {
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  z-index: 2;
  border-radius: 6px;
  overflow: hidden;
  background: url("../img/faq-mask1.svg") no-repeat center / cover #fbaf33;
  padding: 2.6rem 4.1% 2.1rem 6%;
}
.footer_contact .item a::before {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  content: '';
  background: url("../img/faq-mask2.svg") no-repeat center / cover var(--secondary);
  z-index: -1;
  pointer-events: none;
  transition: all 0.3s;
  opacity: 0;
}
.footer_contact .item .icon {
  width: 5.6rem;
  height: 5.6rem;
  transition: all 0.3s;
}
.footer_contact .item .info {
  flex: 1;
  margin-top: 2.2rem;
  color: #021827;
}
.footer_contact .item .info h3 {
  font-size: 2.8rem;
  font-weight: 600;
  transition: all 0.3s;
}
.footer_contact .item .info p {
  font-size: 1.7rem;
  line-height: 2.6rem;
  opacity: 0.85;
  transition: all 0.3s;
  margin-top: 0.9rem;
}
.footer_contact .item .btn_circle {
  background-color: #fff;
  margin-top: 1.2rem;
  margin-left: auto;
}
.footer_contact .item .btn_circle::after {
  filter: unset;
}
.page_video {
  overflow: hidden;
  padding-bottom: 4.4rem;
}
.page_video .inner {
  position: relative;
}
.page_video .inner::before {
  width: 56.6666667%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  content: '';
  z-index: -1;
  border-radius: 6px 1.6rem 0 6px;
  pointer-events: none;
  background: url("../img/vedio-mask.svg") no-repeat left bottom / contain var(--secondary);
}
.page_video .head {
  color: #ffff;
  flex: 1;
  max-width: 54.5rem;
  padding: 6rem 0 11.2rem;
}
.page_video p {
  font-size: 1.8rem;
  line-height: 2.8rem;
  color: rgba(255, 255, 255, 0.75);
  margin-top: 3rem;
  font-weight: 300;
  letter-spacing: 0.1px;
}
.page_video .video {
  position: relative;
  width: 72.857%;
  --h: 67.451%;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  margin-right: -18.57%;
  transform: translateY(4.4rem);
}
.page_video .video video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  position: absolute;
  left: 0;
  top: 0;
}
.page_video .video .btn_play {
  position: absolute;
  width: 11rem;
  height: 11rem;
  left: 50%;
  top: 50%;
  z-index: 2;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background-color: rgba(254, 183, 3, 0.19);
  transition: all 0.4s, opacity 0.3s;
  cursor: pointer;
}
.page_video .video .btn_play::after {
  width: 73.63636%;
  height: 73.63636%;
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  transform: translate(-50%, -50%);
  content: '';
  background: url("../img/play.svg") no-repeat center / contain var(--primary);
  border-radius: 50%;
}
.page_video .video .btn_play:hover {
  transform: translate(-50%, -50%) scale(1.1);
}
.page_video .video.active .btn_play {
  opacity: 0;
}
.page_blog {
  padding: 5.75rem 0 6.6rem;
}
.page_blog .nav_list {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem 4.7rem;
  margin-bottom: -1px;
}
.page_blog .nav_list .nav_item {
  display: block;
  cursor: pointer;
  font-size: 2.4rem;
  font-weight: 500;
  color: #b2b2b2;
  transition: all 0.3s;
  border-bottom: 2px solid transparent;
  padding: 0.4rem 0;
}
.page_blog .nav_list .nav_item.active,
.page_blog .nav_list .nav_item:hover {
  color: #161616;
  border-bottom-color: var(--primary);
}
.page_blog .page_blog_swiper {
  margin-top: 2.5rem;
}
.page_blog .page_blog_swiper .swiper-slide {
  width: 44.8rem;
}
.page_blog .swiper_btns {
  top: 55%;
}
.page_blog p.center:has(.btn) {
  margin-top: 3.5rem;
}
.page_blog p.center:has(.btn) .btn {
  min-width: unset;
}
.page_certify {
  padding: 5.7rem 0 11.3rem;
}
.page_certify .page_certify_swiper {
  overflow: hidden;
  margin-top: 4.5rem;
  height: 10rem;
}
.page_certify .page_certify_swiper .swiper-wrapper {
  transition: linear;
}
.page_certify .page_certify_swiper .swiper-slide {
  height: 10rem;
  width: auto;
  max-width: 19.2rem;
}
.page_certify .page_certify_swiper .swiper-slide img {
  height: 100%;
  width: auto;
  display: block;
  object-fit: contain;
  margin: 0 auto;
}
.page_download {
  background-color: var(--secondary);
  margin-bottom: 6.7rem;
}
.page_download .head {
  flex: 1;
  max-width: 80.1rem;
  color: #ffff;
  padding: 4rem 0;
}
.page_download .btn {
  min-width: unset;
  margin-top: 2.8rem;
}
.page_download .img {
  width: 24.357%;
  --h: 131.085%;
  margin-bottom: -6.7rem;
}
.page_download .img:hover img {
  transform: scale(1.02);
}
.page_download .mask {
  position: absolute;
  right: 7.43%;
  top: 0;
  height: 100%;
  width: 36%;
}
.page_download .mask::before,
.page_download .mask::after {
  width: 64.881%;
  height: 100%;
  position: absolute;
  top: 0;
  background-color: #1253a0;
  clip-path: polygon(53.52% 0%, 100% 0%, 53.52% 100%, 0% 100%);
  content: '';
}
.page_download .mask::before {
  left: 0;
  opacity: 0.14;
}
.page_download .mask::after {
  right: 0;
  opacity: 0.24;
}
.page_banner {
  overflow: hidden;
  padding-bottom: 3rem;
}
.page_banner .inner {
  background-color: #f0f6fc;
}
.page_banner .head {
  padding: 9.6rem 0 4rem;
  max-width: 60%;
}
.page_banner h1 {
  color: #021827;
  text-transform: uppercase;
}
.page_banner .right {
  width: 54.286%;
  margin-right: -18.57%;
  position: relative;
  --deg: 6rem;
  --top: 3rem;
  --left: 2rem;
}
.page_banner .right::before,
.page_banner .right::after {
  position: absolute;
  width: 89.61%;
  height: 100%;
  top: var(--top);
  left: 0;
  content: '';
  z-index: -1;
  background-color: #fbe9bc;
  clip-path: polygon(var(--deg) 0%, 100% 0, 100% 100%, 0% 100%);
}
.page_banner .right::after {
  background-color: #feb703;
  left: var(--left);
}
.page_banner .right .bg {
  position: absolute;
  right: 0;
  top: var(--top);
  width: 92.10526%;
  height: 100%;
  background-color: #1862d8;
  clip-path: polygon(var(--deg) 0%, 100% 0, 100% 100%, 0% 100%);
}
.page_banner .right .img {
  position: relative;
  z-index: 2;
  width: 86.84%;
  --h: 36.363636%;
  clip-path: polygon(var(--deg) 0%, 100% 0, 100% 100%, 0% 100%);
  margin-left: auto;
}
.page_banner .right .img:hover img {
  transform: scale(1.02);
}
.page_faqs {
  padding: 10.7rem 0 12rem;
}
.page_faqs .faqs {
  margin-top: 2.2rem;
}
.page_faqs .faqs .faq_item:first-child .answer {
  display: block;
}
.page_faqs .faq_item .question {
  font-size: 2.6rem;
  padding: 2.5rem 0 2.8rem;
}
.page_faqs .faq_item .answer {
  max-width: 96.6rem;
  padding-bottom: 3.3rem;
  margin-top: -1rem;
  padding-top: 0;
}
.page_banner2 {
  position: relative;
  background: no-repeat center / cover;
}
.page_banner2::before {
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  background-image: linear-gradient(to right, #000000 -4.4137%, transparent);
  opacity: 0.6;
  content: '';
}
.page_banner2 .flex {
  min-height: 63rem;
  padding: 6rem 0;
}
.page_banner2 .head {
  flex: 1;
  max-width: 73.5rem;
  color: #fff;
  padding-bottom: 0.5%;
}
.page_banner2 p {
  font-size: 2rem;
  line-height: 3.6rem;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 0.5rem;
  font-weight: 300;
  letter-spacing: 0.1px;
}
.page_banner2 .btn {
  margin-top: 1.4rem;
}
.page_breadcrumbs {
  background-color: #fff;
  padding: 2.4rem 0;
}
.page_breadcrumbs .breadcrumbs {
  min-height: 2.5rem;
  line-height: 2.5rem;
}
.page_breadcrumbs .breadcrumbs span {
  font-size: 1.8rem;
  font-weight: 600;
  color: #161616;
}
.page_breadcrumbs .breadcrumbs span span::before {
  content: '>';
  opacity: 0.75;
  font-weight: 400;
  display: inline-block;
  margin-right: 0.5rem;
}
.page_breadcrumbs .breadcrumbs span span:first-child::before {
  display: none;
}
.page_breadcrumbs .breadcrumbs span a {
  opacity: 0.75;
  font-weight: 400;
  transition: all 0.3s;
  text-decoration: underline transparent;
}
.page_breadcrumbs .breadcrumbs span a:hover {
  opacity: 1;
  color: var(--primary);
  text-decoration-color: var(--primary);
}
.page_tools {
  padding: 3.7rem 0 16.2rem;
}
.page_tools .flex {
  border-radius: 6px;
  background-color: #021827;
}
.page_tools .img {
  width: 48.786%;
  --h: 87.8477%;
  border-radius: 6px;
}
.page_tools .img:hover img {
  transform: scale(1.02);
}
.page_tools .head {
  flex: 1;
  font-size: 1.7rem;
  line-height: 2.8rem;
  color: rgba(255, 255, 255, 0.75);
  padding: 4rem 4.75%;
  font-weight: 500;
  letter-spacing: 0.05px;
}
.page_tools .head h2 {
  font-size: 3.4rem;
  line-height: 5.4rem;
  font-weight: 600;
  color: #fff;
  font-weight: 500;
  letter-spacing: 0.16px;
}
.page_tools p {
  margin-top: 1.4rem;
}
.page_tools ol {
  list-style: none;
  counter-reset: li;
}
.page_tools ol li {
  position: relative;
  padding-left: 1.8rem;
  font-weight: 300;
  letter-spacing: 0.7px;
}
.page_tools ol li::before {
  position: absolute;
  left: 0;
  top: 0;
  counter-increment: li;
  content: counter(li) '.';
}
.page_tools ul {
  margin-top: 2.2rem;
}
.page_tools ul li {
  position: relative;
  padding-left: 3.6rem;
}
.page_tools ul li::before {
  width: 2rem;
  height: 2rem;
  position: absolute;
  left: 0;
  top: 0.5rem;
  content: '';
  background: url("../img/gou.svg") no-repeat center / contain;
}
.page_tools ul li + li {
  margin-top: 1.3rem;
}
.blog_list .active a::before {
  opacity: 1;
}
.blog_list .active .metas .cat {
  color: var(--primary);
}
.blog_list .active .btn_i::after {
  background-color: var(--primary);
}
.blog_list .active .btn_i::before {
  filter: unset;
}
.blog_list a {
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: 6px;
  border: 1px solid #eaeaea;
  background-color: #fff;
  position: relative;
  z-index: 2;
}
.blog_list a::before {
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border: 2px solid var(--primary);
  border-radius: 6px;
  z-index: -1;
  content: '';
  pointer-events: none;
  box-shadow: 10px 10px 10px rgba(226, 226, 226, 0.55);
  transition: all 0.3s;
  opacity: 0;
  background: url("../img/item-mask2.svg") no-repeat right bottom / 40.848%;
}
.blog_list a:hover img {
  transform: scale(1.02);
}
.blog_list .img {
  padding-bottom: 60.6264%;
  border-radius: 6px 6px 0 0;
}
.blog_list .info {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 2.7rem 6.5% 2.7rem;
}
.blog_list .metas {
  font-size: 1.79rem;
  color: rgba(63, 63, 63, 0.85);
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}
.blog_list .metas .cat {
  font-weight: 500;
  color: var(--secondary);
  transition: all 0.3s;
  text-transform: uppercase;
}
.blog_list .title {
  font-size: 2.4rem;
  line-height: 3.48rem;
  font-weight: 600;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  flex: 1;
  margin-top: 1.5rem;
}
.blog_list .btn_i {
  font-size: 2rem;
  margin-top: 9rem;
  text-transform: uppercase;
}
.faq_item {
  border-bottom: 1px solid #c6c6c6;
  transition: all 0.3s;
}
.faq_item.active {
  border-bottom-color: #212121;
}
.faq_item.active .question::after {
  transform: rotate(180deg);
}
.faq_item .question {
  display: grid;
  grid-template-columns: 1fr 1.6rem;
  align-items: center;
  font-size: 2.2rem;
  font-weight: 600;
  cursor: pointer;
  gap: 2rem;
  padding: 2.6rem 0 2.2rem;
}
.faq_item .question::after {
  width: 100%;
  padding-bottom: 100%;
  display: block;
  content: '';
  background: url("../img/icon-select.svg") no-repeat center / contain;
  transition: all 0.3s;
}
.faq_item .answer {
  display: none;
  font-size: 1.8rem;
  line-height: 2.6rem;
  color: #4c4c4c;
  max-width: 71.7rem;
  padding-bottom: 2.8rem;
  padding-top: 2px;
}

.swiper_box.hide{
  display: none;
}



div.loader {
  border: 7px solid #f2f5f9;
  border-top: 7px solid #fff;
  border-radius: 50%;
  width: 4.8rem;
  height: 4.8rem;
  position: absolute;
  left: 50%;
  margin-left: -2.4rem;
  animation: spin 1s linear infinite;
  margin-top: 0;
  text-align: center;
}
@keyframes spin {
  0% {
      transform: rotate(0deg);
  }

  100% {
      transform: rotate(360deg);
  }
}


.loading {
  position: relative;
}
.loading:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../../global/img/loading.gif') no-repeat center;
  background-size: 45px;
  background-color: rgba(255, 255, 255, 0.3);
  z-index: 9;
}


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: -100vh;
  height: 100vh;
  transition: 0.3s ease;
}
div.search-block.active {
  bottom: 0;
  opacity: 1;
  transform: translateY(122px);
}
div.search-block div.content {
  position: relative;
  display: block;
}
.wd-action-btn {
  display: inline-flex;
  vertical-align: middle;
  background: url(../../global/img/cloes.svg) no-repeat center;
  background-size: contain;
  position: absolute;
  top: 38px;
  right: 0;
  z-index: 1;
  width: 28px;
  height: 28px;
  transition: all 0.3s;
  cursor: pointer;
}
.wd-action-btn:hover{
  transform: rotate(180deg);
}
div.search-block .searchform {
  border-bottom: 1px solid rgba(119, 119, 119, 0.2);
  /* opacity: 0; */
  transition: opacity 0.35s ease 0.2s;
  --wd-form-color: #333;
  --wd-form-placeholder-color: #333;
  text-align: center;
  transition: 0.75s all ease;
}
div.search-block.active .searchform {
  opacity: 1;
}
div.search-block .searchform input[type='text'] {
  padding: 0;
  height: 110px;
  border: none;
  text-align: center;
  font-size: 35px;
  outline: none;
}
header div.main-menu div.main div.right {
  display: none;
}
div.search-block .searchform ::-webkit-input-placeholder {
  color: #333333;
}


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

.default_body h2 {
  font-size: 2.6rem;
  line-height: 3.4rem;
  font-weight: 700;
  margin: 3.5rem 0 3.3rem;
}
.default_body h3 {
  font-size: 2rem;
  line-height: 3.4rem;
  font-weight: 700;
  margin: 1.6rem 0 1rem;
}
.default_body p {
  margin: 1rem 0;
}
.default_body img {
  border-radius: 8px;
  width: 100%;
  display: block;
  object-fit: cover;
  margin: 4.7rem 0;
}
.default_body ul {
  margin: 1rem 0;
}
.default_body ul li {
  position: relative;
  padding-left: 2.4rem;
  margin-bottom: 1rem;
}
.default_body ul li:last-child {
  margin-bottom: 0;
}
.default_body ul li::before {
  width: 1.4rem;
  height: 1.4rem;
  position: absolute;
  left: 0;
  top: 0.8rem;
  border-radius: 50%;
  background-color: var(--theme_color);
  content: '';
}
.home_categories{
  position: relative;
}
.home_categories:after{
  content: "";
  width: 6.8rem;
  height: 6.4rem;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%,50%);
  z-index: 9;
  background: url('../img/category-icon.svg') no-repeat center/contain;
}


.header_menu {
  display: none;
  position: absolute;
  
  top: 100%;
  left: 0;
  
  width: 100%;
  height: 660px;
  background-color: #fff;
  box-shadow: 0 20px 20px rgba(0, 0, 0, 0.3);
  padding: 40px 0 2rem;
  z-index: 9;
  overflow: auto;
}
.header_menu .submenu {
  width: 300px;
  padding-right: 3px;
  max-height: calc(100vh - 20rem - 14px);
  overflow: auto;
  transition: all 0.3s;
  margin-top: 14px;
}
.header_menu .submenu li a {
  display: flex;
  align-items: center;
  transition: all 0.3s;
  padding: 6px 1rem;
  gap: 20px;
  min-height: 50px;
}
.header_menu .submenu li a .img {
  width: 38px;
  height: 38px;
}
.header_menu .submenu li a .img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.header_menu .submenu li a span {
  color: #595959;
  transition: all 0.3s;
}
.header_menu .submenu li.active a {
  background-color: #f2f2f2;
}
.header_menu .submenu li.active a span {
  color: var(--theme_color);
}
.header_menu .submenu::-webkit-scrollbar {
  width: 5px;
}
.header_menu .submenu::-webkit-scrollbar-track {
  background: #b3b1b1;
  border-radius: 10px;
}
.header_menu .submenu::-webkit-scrollbar-thumb {
  background: #888888;
  border-radius: 10px;
}
.header_menu .submenu::-webkit-scrollbar-thumb:hover {
  background: #646464;
  border-radius: 10px;
}
.header_menu .submenu::-webkit-scrollbar-thumb:active {
  background: #444444;
  border-radius: 10px;
}
.header_menu .submenu_child {
  flex: 1;
  max-width: 1380px;
  max-height: calc(100vh - 20rem);
  max-height: unset;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
  display: none;
  overflow: auto;
}
.header_menu .submenu_child.active{
  display: flex;
}
.header_menu .submenu_child .title {
  display: flex;
  align-items: center;
  gap: 18px;
}
.header_menu .submenu_child .title strong {
  color: #282828;
  font-size: 22px;
  font-weight: 600;
}
.header_menu .submenu_child .title a {
  color: var(--theme_color);
  font-size: 14px;
  position: relative;
  padding-right: 12px;
  top: 2px;
}
.header_menu .submenu_child .title a::after {
  content: '';
  display: block;
  width: 10px;
  height: 5px;
  background: url(../img/select.svg) no-repeat center / contain;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
  transition: all 0.3s;
}
.header_menu .submenu_child .title a:hover::after {
  transform: translate(5px, -50%) rotate(-90deg);
}
.header_menu .submenu_child .main {
  flex: 1;
  overflow: auto;
  padding-right: 10px;
  margin-top: 30px;
}
.header_menu .submenu_child .main ul {
  display: flex;
  flex-wrap: wrap;
  
  justify-content: flex-start;
  gap: 30px 2.19%;
  width: 100%;
}
.header_menu .submenu_child .main ul li a {
  display: block;
  height: 100%;
  background-color: #f8f8f8;
  border-radius: 6px;
  transition: all 0.3s;
  padding: 24px 1rem 1rem;
  width: 190px;
  min-height: 264px;
  position: relative;
}
.header_menu .submenu_child .main ul li a:hover {
  background-color: #fff;
}
.header_menu .submenu_child .main ul li a:hover::after {
  opacity: 1;
}
.header_menu .submenu_child .main ul li a:hover img {
  transform: scale(1.05);
}
.header_menu .submenu_child .main ul li a:hover p {
  color: var(--theme_color);
}
.header_menu .submenu_child .main ul li a::after {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  border-radius: 6px;
  border: 1px solid var(--theme_color);
  transition: all 0.3s;
  pointer-events: none;
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}
.header_menu .submenu_child .main ul li a .img {
  width: 100%;
  aspect-ratio: 1/1;
  margin: 0% auto 0;
}
.header_menu .submenu_child .main ul li a .img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: all 0.5s;
}
.header_menu .submenu_child .main ul li a p {
  color: #282828;
  font-weight: 500;
  line-height: 19px;
  text-align: center;
  transition: all 0.3s;
  margin-top: 35px;
}
.header_menu .submenu_child .main::-webkit-scrollbar {
  width: 5px;
}
.header_menu .submenu_child .main::-webkit-scrollbar-track {
  background: #b3b1b1;
  border-radius: 10px;
}
.header_menu .submenu_child .main::-webkit-scrollbar-thumb {
  background: #888888;
  border-radius: 10px;
}
.header_menu .submenu_child .main::-webkit-scrollbar-thumb:hover {
  background: #646464;
  border-radius: 10px;
}
.header_menu .submenu_child .main::-webkit-scrollbar-thumb:active {
  background: #444444;
  border-radius: 10px;
}

header .social {
  gap: 2rem 3rem;
  display: flex;
  flex-wrap: wrap;
  margin-left: 3rem;
}
header .social a {
  opacity: 1;
  display: block;
  width: 2rem;
  height: 2rem;
  overflow: hidden;
  text-indent: -999px;
  position: relative;
  transition: all 0.3s;
}
header .social a::after {
  content: '';
  display: block;
  position: absolute;
  inset: 0;
  background: no-repeat center / contain;
}
header .social a:hover {
  transform: scale(1.1);
}
header .social .facebook a::after {
  background-image: url(../img/facebook.svg);
}
header .social .youtube a::after {
  background-image: url(../img/youtube.svg);
}
header .social .instagram a::after {
  background-image: url(../img/instagram.svg);
}
header .social .linkedin a::after {
  background-image: url(../img/linkedin.svg);
}
.header_infos{
  position: absolute;
  right: 10rem;
  top: 0.8rem;
  
  z-index: 9;
}
.header_infos p{
  color: white;
  display: flex;
  align-items: center;
  gap: 1.2rem;
}
.header_infos p:before{
  content: "";
  width: 1.5rem;
  height: 1.5rem;
  background: url('../img/icon-phone.svg') no-repeat center/contain;
  display: inline-block;
  filter: brightness(100);
}

.product_main .item .info strong{
  font-size: 2rem;
  line-height: 2.6rem;
  font-weight: 600;
  color: rgb(22, 22, 22);
}

@media screen and (min-width: 768px) and (max-width: 1440px) {
  header .content {
    padding: 0 2rem;
  }
  .page_video .video {
    margin-right: -8.6%;
  }
}
@media screen and (min-width: 768px) and (max-width: 1220px) {
  .content {
    padding: 0 2rem;
  }
  .swiper_content {
    padding: 1.5rem 2rem;
  }
  .page_banner .right {
    margin-right: -5%;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .content,
  .swiper_content {
    max-width: 896px;
  }
}
@media screen and (max-width: 1024px) {
  header .left {
    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-color: #fff;
    box-shadow: rgba(0 0 0/10%) 0 0 24px;
    transition: all 0.3s;
    opacity: 0;
    transform: translateX(-100%);
  }
  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;
    filter: brightness(0);
    background: url('../img/mobile-menu/close.svg') no-repeat center / contain;
    cursor: pointer;
    transition: all 0.3s;
  }
  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;
  }
  header nav .con .menu > li > a {
    color: var(--title);
    line-height: 64px;
    padding: 0 0 0 32px;
    font-size: 18px;
  }
  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;
  }
  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: #f8f8f8;
    margin: 0 32px;
    box-shadow: none;
    border-radius: 8px;
    display: none;
    opacity: 1;
    pointer-events: all;
    transition: none;
    transform: translate(0);
    min-width: unset;
  }
  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;
    color: var(--title);
  }
  header nav .con .sub-menu li a::after {
    display: none;
  }
  header nav .con .sub-menu li a:hover {
    color: var(--primary);
  }
  header .btns {
    padding: 0;
    margin: 0;
  }
  header .btns .btn_search {
    width: 22px;
    height: 22px;
    margin: 0;
  }
  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;
  }
}
@media screen and (min-width: 768px) and (max-width: 896px) {
  .content,
  .swiper_content {
    max-width: 768px;
  }
}
@media screen and (min-width: 769px) {
  div::-webkit-scrollbar {
    width: 4px;
  }
  div::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-color: #8b8b8b;
  }
}
@media screen and (max-width: 768px) {
  html {
    font-size: 16px !important;
  }
  body {
    font-size: 1rem;
  }
  .content {
    padding: 0 20px;
  }
  .swiper_content {
    padding: 10px 20px;
  }
  .only_mobile {
    display: block;
  }
  body.fixed {
    padding-right: 0;
  }
  .gap {
    gap: 1rem;
  }
  div.head.has_subtitle strong {
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 8px;
    letter-spacing: unset;
    word-spacing: unset;
    max-width: unset;
  }
  div.head h1 {
    font-size: 34px;
    line-height: 1.5;
    letter-spacing: unset;
    word-spacing: unset;
    max-width: unset;
  }
  div.head h2 {
    font-size: 28px;
    line-height: 1.5;
    letter-spacing: unset;
    word-spacing: unset;
    max-width: unset;
  }
  div.head .desc,
  div.head p {
    font-size: 1rem;
    line-height: 1.5;
    margin-top: 10px;
    letter-spacing: unset;
    word-spacing: unset;
    max-width: unset;
  }
  div.head .btn {
    margin-top: 20px;
  }
  .video_pop .pop_content {
    height: auto;
    width: 90vw;
  }
  .btn {
    font-size: 14px;
    line-height: 1.5;
    padding: 10px 20px;
    min-width: 120px;
  }
  .btn_i {
    font-size: 14px;
    gap: 12px;
  }
  .btn_i::after,
  .btn_i::before {
    width: 40px;
    height: 40px;
  }
  .btn_circle {
    width: 40px;
  }
  .swiper_btns {
    gap: 1rem;
  }
  .swiper_btns div {
    width: 40px;
    height: 40px;
  }
  .swiper_btns div::after {
    width: 14px;
    height: 14px;
  }
  header {
    width: 100%;
    left: 0;
    top: 0;
    transform: translate(0);
    position: sticky;
  }
  header::after {
    height: 1rem;
  }
  header .left {
    padding-top: 1rem;
  }
  header .left .logo img {
    height: 35px;
  }
  header .main {
    padding-top: 1rem;
  }
  header .btns {
    gap: 26px;
    min-height: 4rem;
  }
  header .btns .btn {
    display: none;
  }
  footer .footer_main {
    padding: 4rem 0 1rem;
  }
  footer .footer_main .flex {
    display: block;
  }
  footer .slide_intro {
    margin: 0;
    width: 100%;
    display: grid;
  }
  footer .slide_intro .logo {
    max-width: 200px;
    margin: 0 auto;
  }
  footer .slide_intro p {
    font-size: 0.9rem;
    line-height: 1.5rem;
    text-align: center;
    margin: 20px 0 0;
  }
  footer .slide_intro div {
    order: 2;
    margin: 3rem 0 1rem;
  }
  footer .slide_intro .menu {
    margin: 0;
    max-width: unset;
  }
  footer .slide_intro .menu a {
    font-size: 1rem;
    padding: 3px 22px;
    min-height: 3rem;
    grid-template-columns: 1fr 40px;
  }
  footer .slide_obj:not(.slide_connect) {
    width: 100%;
  }
  footer .slide_obj:not(.slide_connect) strong {
    font-size: 1rem;
    line-height: 46px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    padding: 0 22px;
    position: relative;
    margin-bottom: 1rem;
  }
  footer .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 .slide_obj:not(.slide_connect).active strong::after {
    transform: translateY(-50%) rotate(180deg);
  }
  footer .slide_obj:not(.slide_connect) > div {
    display: none;
    padding: 0 1.2rem 1.2rem;
  }
  footer .slide_obj:not(.slide_connect) > div li + li {
    margin-top: 14px;
  }
  footer .slide_obj:not(.slide_connect) > div a {
    font-size: 14px;
    display: block;
    font-weight: normal;
  }
  footer .slide_obj:not(.slide_connect) > div p {
    font-size: 0.9rem;
    line-height: 1.5rem;
  }
  footer .slide_obj:not(.slide_connect) button {
    display: none;
  }
  footer .slide_connect {
    width: 100%;
    padding-top: 20px;
  }
  footer .slide_connect strong {
    font-size: 18px;
    margin-bottom: 20px;
  }
  footer .slide_connect li + li {
    margin-top: 20px;
  }
  footer .slide_connect li {
    padding-left: 4rem;
  }
  footer .slide_connect li::before {
    width: 40px;
    height: 40px;
    top: 5px;
  }
  footer .slide_connect li a {
    font-size: 1rem;
  }
  footer .slide_connect li a + a {
    margin-top: 0;
  }
  footer .slide_connect li .label {
    font-size: 14px;
    margin-bottom: 4px;
  }
  footer .slide_connect .email::before {
    top: 5px;
  }
  footer .slide_social {
    margin-top: 4rem;
    display: block;
  }
  footer .slide_social .social {
    gap: 1rem;
    justify-content: space-between;
  }
  footer .slide_social .social a {
    width: 22px;
    height: 22px;
  }
  footer .copyright {
    padding: 20px 0;
  }
  footer .copyright .flex {
    gap: 2rem;
    flex-direction: column-reverse;
  }
  footer .copyright ul {
    gap: 1rem;
  }
  footer .copyright p {
    font-size: 13px;
  }
  footer .copyright a {
    font-size: 14px;
  }
  .footer_sidelinks {
    right: 1rem;
  }
  .footer_sidelinks li + li {
    margin-top: 10px;
  }
  .footer_sidelinks a {
    width: 40px;
    height: 40px;
  }
  .header_infos{
    display: none;
  }
  .footer_sidelinks a span {
    font-size: 14px;
    min-width: 120px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.13);
    padding: 10px;
  }
  .page_video {
    padding-bottom: 2rem;
  }
  .page_video .inner::before {
    width: 100%;
    border-radius: 0;
    top: 0;
  }
  .page_video .flex {
    flex-direction: column;
  }
  .page_video .head {
    width: 100%;
    max-width: unset;
    padding: 3rem 0 1rem;
  }
  .page_video .video {
    width: 100%;
    transform: translateY(0);
    margin: 0 0 -2rem;
  }
  .page_video .video .btn_play {
    width: 3rem;
    height: 3rem;
  }
  .page_blog {
    padding: 3rem 0;
    overflow: hidden;
  }
  .page_blog .flex {
    display: block;
  }
  .page_blog .nav_list {
    width: calc(100% + 38px);
    margin: 20px -19px 0;
    padding: 0 19px;
    flex-wrap: nowrap;
    gap: 1.2rem;
    white-space: nowrap;
  }
  .page_blog .nav_list .nav_item {
    font-size: 1rem;
    padding: 6px 0;
  }
  .page_blog .swiper_content {
    padding: 0 20px;
    overflow: unset;
  }
  .page_blog .page_blog_swiper {
    margin-top: 2rem;
  }
  .page_blog .page_blog_swiper .swiper-slide {
    width: 322px;
  }
  .page_blog .swiper_btns.middle {
    position: static;
    width: 100%;
    padding: 0 20px;
    transform: translate(0);
    justify-content: flex-end;
    margin-top: 2rem;
  }
  .page_blog p.center:has(.btn) {
    margin-top: 2rem;
  }
  .footer_contact {
    padding: 3rem 0 4rem;
  }
  .footer_contact .flex {
    margin-top: 2rem;
    display: block;
  }
  .footer_contact .faqs {
    max-width: unset;
  }
  .footer_contact .items {
    width: 100%;
    padding: 0;
    margin-top: 2rem;
  }
  .footer_contact .items ul {
    gap: 1rem;
    grid-template-columns: repeat(2, 1fr);
  }
  .footer_contact .item a {
    padding: 1.5rem 20px 1.2rem;
  }
  .footer_contact .item .icon {
    width: 3rem;
    height: 3rem;
  }
  .footer_contact .item .info {
    margin-top: 1rem;
  }
  .footer_contact .item .info h3 {
    font-size: 18px;
  }
  .footer_contact .item .info p {
    font-size: 0.9rem;
    line-height: 1.5;
    margin-top: 10px;
  }
  .footer_contact .item .btn_circle {
    margin-top: 20px;
  }
  .page_banner {
    padding-bottom: 1rem;
  }
  .page_banner .head {
    padding: 2rem 0;
  }
  .page_banner .right {
    margin-right: -20px;
    --deg: 30px;
    --top: 15px;
    --left: 10px;
  }
  .page_certify {
    padding: 3rem 0 4rem;
    overflow: hidden;
  }
  .page_certify .page_certify_swiper {
    overflow: unset;
    margin-top: 2rem;
    height: 50px;
  }
  .page_certify .page_certify_swiper .swiper-slide {
    height: 50px;
    max-width: 100px;
  }
  .page_download {
    margin-bottom: 5rem;
  }
  .page_download .head {
    width: 100%;
    max-width: unset;
    padding: 3rem 0 2rem;
  }
  .page_download .img {
    margin-bottom: -5rem;
  }
  .page_faqs {
    padding: 4rem 0;
  }
  .page_faqs .faqs {
    margin-top: 2rem;
  }
  .page_faqs .faq_item .question {
    font-size: 18px;
    padding: 14px 0;
  }
  .page_faqs .faq_item .answer {
    max-width: unset;
    padding-bottom: 1.2rem;
    margin-top: 0;
  }
  .page_banner2::before {
    width: 100%;
  }
  .page_banner2 .flex {
    min-height: unset;
    padding: 3rem 0 4rem;
  }
  .page_banner2 .head {
    max-width: unset;
    padding: 0;
  }
  .page_tools {
    padding: 2rem 0 4rem;
  }
  .page_tools .head {
    max-width: unset;
    font-size: 0.9rem;
    line-height: 1.5;
    padding: 2rem 20px;
    letter-spacing: unset;
  }
  .page_tools .head h2 {
    font-size: 22px;
    line-height: 1.5;
    letter-spacing: unset;
  }
  .page_tools .head ol {
    margin-top: 10px;
  }
  .page_tools .head ol li {
    padding-left: 1.5rem;
    letter-spacing: unset;
  }
  .page_tools .head ul {
    margin-top: 10px;
  }
  .page_tools .head ul li {
    padding-left: 1.5rem;
  }
  .page_tools .head ul li::before {
    width: 14px;
    height: 14px;
    top: 5px;
  }
  .page_tools .head ul li + li {
    margin-top: 10px;
  }
  .blog_list .info {
    padding: 1rem 20px;
  }
  .blog_list .metas {
    font-size: 14px;
    gap: 8px;
  }
  .blog_list .title {
    font-size: 18px;
    line-height: 1.5;
    margin-top: 10px;
  }
  .blog_list .btn_i {
    margin-top: 2rem;
    font-size: 14px;
  }
  .faq_item .question {
    font-size: 18px;
    grid-template-columns: 1fr 14px;
    gap: 1rem;
    padding: 14px 0;
  }
  .faq_item .answer {
    font-size: 0.9rem;
    line-height: 1.5;
    margin-top: 0;
    padding-top: 0;
    padding-bottom: 1.2rem;
    max-width: unset;
  }
  .page_breadcrumbs {
    padding: 20px 0;
  }
  .page_breadcrumbs .breadcrumbs {
    min-height: 20px;
    line-height: 20px;
  }
  .page_breadcrumbs .breadcrumbs span {
    font-size: 14px;
  }
  .page_breadcrumbs .breadcrumbs span span::before {
    margin: 0 10px;
  }

  
  .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;
    padding-left: 2.4rem;
    margin-bottom: 1rem;
  }
  .default_body ul li:last-child {
    margin-bottom: 0;
  }
  .default_body ul li::before {
    width: 1.4rem;
    height: 1.4rem;
    position: absolute;
    left: 0;
    top: 0.8rem;
    border-radius: 50%;
    background-color: var(--theme_color);
    content: '';
  }
  .home_categories:after{
    width: 50px;
    height: 50px;
  }
  .faq_item .question{
    font-size: 15px !important;
  }

  
   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-size: 1.4rem;
        display: inline-block;
        vertical-align: middle;
        transition: 0.3s all ease;
        display: none;
        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;
        display: none;
      }
    
      div.search-block.active {
        top: 20%;
        display: block;
        height: 80%;
        transform: translateY(0);
      }
    
      .search-block input[type="submit"]:not(:disabled):hover {
        /* background: url(../img/page_home-header_search.svg) no-repeat center; */
        background-size: 1.4rem;
        border: none;
      }
  .product_main .item .info strong{
      font-size: 18px;
      line-height: 1.5;
  }

}
@media screen and (max-width: 576px) {
  div.head.has_subtitle strong {
    font-size: 14px;
  }
  div.head h1 {
    font-size: 25px;
  }
  div.head h2 {
    font-size: 22px;
  }
  div.head .desc,
  div.head p {
    font-size: 0.9rem;
  }
  .footer_contact .items ul {
    grid-template-columns: 1fr;
  }
  .page_banner .head {
    width: 100%;
    padding: 3rem 0 1rem;
  }
  .page_banner .right {
    width: calc(100% + 20px);
  }
  .page_download .flex {
    flex-direction: column;
  }
  .page_download .img {
    width: 65%;
    margin: 0 auto -5rem;
  }
  .page_tools .img {
    width: 100%;
  }
}




.quote_modal form input[type="submit"]{
  display: none !important;
}

.single-product .page_banner2 .btn{
  display: none !important;
} 

.product_advantage_swiper ul{
  display: grid !important;
  grid-template-columns: repeat(2,1fr) !important;
  transform: none !important;
}
.product_advantage_swiper ul li{
  width: auto !important;
}
.product_advantage .content > .flex{
  /* flex-direction: column;
  align-items: flex-start; */
}
.product_advantage .content > .flex>*{
  /* width: 100% !important; */
}

.footer_sidelinks li.contact{
  display: none;
}


 /* 返回顶部按钮样式 */
        .go-top {
            position: fixed;
            bottom: 173px;
            right: 50px;
            width: 60px;
            height: 60px;
            background: #013176;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
            transition: all 0.3s ease;
            opacity: 0;
            visibility: hidden;
            z-index: 1000;
        }
        
        .go-top.show {
            opacity: 1;
            visibility: visible;
        }
        
        .go-top:hover {
            background: #2980b9;
            transform: translateY(-5px);
            box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2);
        }
        
        .go-top:active {
            transform: translateY(0);
        }
        
        .arrow {
            width: 20px;
            height: 20px;
            border-top: 3px solid white;
            border-left: 3px solid white;
            transform: rotate(45deg);
            margin-top: 5px;
        }
        
        @media (max-width: 768px) {
            .go-top {
                bottom: 20px;
                right: 20px;
                width: 50px;
                height: 50px;
            }
        }