:root {
  --theme_color: #2f81ff;
  --title_color: #242424;
  --content_color: #808080;
  --bg_color: linear-gradient(to right, #0b6cf8, #2f81ff);
}
ul {
  list-style: none;
}
a {
  color: var(--title_color);
  text-decoration: none;
  font-size: 1rem;
}
i {
  font-style: normal;
}
.swiper_box {
  position: relative;
}
.swiper_content {
  max-width: 1460px;
  margin: 0 auto;
  position: relative;
  padding: 10px;
  overflow: hidden;
}
button,
input,
textarea {
  outline: none;
  border: none;
  font-family: unset;
}
input[type="submit"],
button {
  cursor: pointer;
}
textarea {
  resize: 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 {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  font-family: unset;
}
.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 {
  color: var(--title_color);
  font-family: 'Plus Jakarta Sans', sans-serif;
}
body.fixed {
  overflow: hidden;
  padding-right: 17px;
}
.only_mobile {
  display: none;
}
.content .content {
  padding: 0;
}
.gap {
  gap: 1.25rem;
}
li.swiper-slide {
  height: auto;
}
.grecaptcha-badge {
  visibility: hidden;
}
.head h2 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 75px;
}
.head h2 span {
  color: var(--theme_color);
}
.btn {
  display: inline-block;
  vertical-align: top;
  border-radius: 10px;
  border: 2px solid var(--theme_color);
  background-color: var(--theme_color);
  color: #fff;
  text-align: center;
  cursor: pointer;
  line-height: 2;
  padding: 8px 22px;
  min-width: 194px;
  font-size: 18px;
  font-weight: 500;
  transition: all 0.3s;
}
.btn:hover {
  color: var(--theme_color);
  background-color: transparent;
}
.btn_more {
  display: inline-block;
  vertical-align: top;
  border: 1px solid #c8c8c8;
  border-radius: 10px;
  color: #25292d;
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  background-color: transparent;
  transition: all 0.3s;
  line-height: 2;
  padding: 9px 22px;
  min-width: 196px;
}
.btn_more:hover {
  color: #fff;
  border-color: var(--theme_color);
  background-color: var(--theme_color);
}
.swiper_btns_thin {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 98%;
  max-width: 1816px;
}
.swiper_btns_thin div {
  width: 1rem;
  height: 30px;
  background: url(../img/arrow-w.svg) no-repeat center / contain;
  transition: all 0.3s;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
}
.swiper_btns_thin .btn_next {
  left: unset;
  right: 0;
  transform: translateY(-50%) rotate(180deg);
}
.swiper_btns_thin .swiper-button-disabled {
  pointer-events: none;
  opacity: 0.5;
}
.swiper_btns_full {
  display: flex;
  gap: 26px;
}
.swiper_btns_full div {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--theme_color);
  box-shadow: 0 0 10px rgba(128, 128, 128, 0.3);
}
.swiper_btns_full div::after {
  content: '';
  display: block;
  width: 36.66667%;
  height: 36.66667%;
  background: url(../img/arrow-b.svg) no-repeat center / contain;
  transition: all 0.3s;
  filter: contrast(0) brightness(2);
}
.swiper_btns_full div:hover {
  filter: brightness(1.2);
}
.swiper_btns_full .btn_next {
  transform: rotate(180deg);
}
.swiper_btns_full .swiper-button-disabled {
  pointer-events: none;
  background-color: #eaeaea;
  box-shadow: none;
}
.swiper_btns_full .swiper-button-disabled:hover {
  filter: none;
}
.swiper_btns_full .swiper-button-disabled::after {
  filter: none;
}
.swiper_btns_full.middle {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 98%;
  max-width: 1686px;
  z-index: 2;
}
.swiper_btns_full.middle div {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.swiper_btns_full.middle .btn_next {
  left: unset;
  right: 0;
  transform: translateY(-50%) rotate(180deg);
}
div.swiper-pagination {
  position: static;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 18px;
  gap: 20px;
}
div.swiper-pagination .swiper-pagination-bullet {
  opacity: 1;
  transition: all 0.3s;
  width: 18px;
  height: 18px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
}
div.swiper-pagination .swiper-pagination-bullet::before {
  content: '';
  display: block;
  position: absolute;
  inset: 0;
  border-radius: 50%;
  transition: all 0.3s;
  box-sizing: border-box;
  border: 1px solid var(--title_color);
  transform: scale(0.5);
}
div.swiper-pagination .swiper-pagination-bullet::after {
  content: '';
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--title_color);
  transition: all 0.3s;
}
div.swiper-pagination .swiper-pagination-bullet-active::before {
  transform: scale(1);
}
div.swiper-pagination .swiper-pagination-bullet-active::after {
  opacity: 0;
  transform: scale(2);
}
.content_b {
  max-width: 1600px;
  margin: 0 auto;
  position: relative;
}
header {
  position: sticky;
  top: -2rem;
  z-index: 997;
  transition: all 0.3s;
}
header.sticky {
  top: 0;
}
header.sticky .header_menu > .close {
  height: calc(100vh - 112px);
}
header .header_top {
  padding: 9px 0 4px;
  color: #fff;
  background-color: #111111;
}
header .header_top .gap {
  gap: 2.917%;
  padding: 0 10px;
}
header .header_top .lang {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  transition: all 0.3s;
  color: #fff;
  font-size: 12px;
  opacity: 0.8;
}
header .header_top .lang::before {
  content: '';
  display: block;
  width: 17px;
  height: 17px;
  background: url(../img/lang.svg) no-repeat center / contain;
}
header .header_top .lang:hover {
  opacity: 1;
}
header .header_top .contact {
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s;
  color: #fff;
  font-size: 12px;
  opacity: 0.8;
}
header .header_top .contact::before {
  content: '';
  display: block;
  width: 19px;
  height: 19px;
  background: url(../img/contact.svg) no-repeat center / contain;
}
header .header_top .contact:hover {
  opacity: 1;
}
header .header_main {
  background-color: #fff;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}
header .header_main .logo {
  display: block;
  overflow: hidden;
  position: relative;
  text-indent: -999px;
}
header .header_main .logo img {
  display: block;
  width: 266px;
  height: auto;
}
header .header_main .logo p {
  position: absolute;
  inset: 0;
}
header .header_main nav .menu {
  display: flex;
  gap: 36px;
}
header .header_main nav .menu > li {
  position: relative;
}
header .header_main nav .menu > li::before {
  content: '';
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--theme_color);
  transition: all 0.3s;
  position: absolute;
  left: 0;
  bottom: 0;
  opacity: 0;
}
header .header_main nav .menu > li > a {
  font-weight: 500;
  display: block;
  line-height: 80px;
  font-size: 16px;
}
header .header_main nav .menu > li:hover::before {
  opacity: 1;
}
header .header_main nav .menu > li:hover > a {
  color: var(--theme_color);
}
header .header_main nav .menu > li:hover .sub-menu {
  opacity: 1;
  transform: translate(0);
  pointer-events: all;
}
header .header_main nav .menu .current-menu-item::before,
header .header_main nav .menu .current-menu-parent::before,
header .header_main nav .menu .active::before {
  opacity: 1;
}
header .header_main nav .menu .current-menu-item > a,
header .header_main nav .menu .current-menu-parent > a,
header .header_main nav .menu .active > a {
  color: var(--theme_color);
}
.menu-item-has-children{
  position: relative;
}
header .header_main nav .sub-menu {
  left: -25px;
  position: absolute;
  min-width: 160px;
  background-color: #fff;
  border-radius:10px;
  top: 64px;
  padding: 16px 12px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  display: block;
  pointer-events: none;
  opacity: 0;
  transition: none;
  z-index: 10;
}
header .header_main nav .sub-menu li {
  margin-bottom: 5px;
}
header .header_main nav .sub-menu li a {
  white-space: nowrap;
  display: block;
  padding: 8px 0;
  transition: all 0.3s;
  font-size: 15px;
  font-weight: 500;

  display: block;
  padding: .8rem 1.5rem;
  transition: all 0.2s ease;
  border-radius: 20rem;
}
header .header_main nav .sub-menu li a:hover {
  color: var(--theme_color);
  background-color: #eee;
}
header .header_main .btns {
  min-width: 266px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 22px;
}

header .header_main .btns .search {
  width: 18px;
  height: 18px;
  cursor: pointer;
  background: url(../img/search.svg) no-repeat center / contain;
}
header .header_main .btns .pcenter {
  margin-right: 4px;
  width: 20px;
  height: 20px;
  cursor: pointer;
  background: url(../img/pcenter.svg) no-repeat center / contain;

  display: none;
}
header .header_main .btns .store {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  color: #fff;
  line-height: 2;
  padding: 5px 30px;
  gap: 7px;
  transition: all 0.3s;
  position: relative;
  z-index: 2;
  font-size: 16px;
}
header .header_main .btns .store::before {
  content: '';
  display: block;
  width: 13px;
  height: 1rem;
  background: url(../img/store.svg) no-repeat center / contain;
  transition: all 0.3s;
  filter: contrast(0) brightness(2);
}
header .header_main .btns .store.no-icon:before{
  display: none;
}
header .header_main .btns .store.tm::before {
  width: 1rem;
  background-image: url(../img/tm.svg);
}
header .header_main .btns .store.jd::before {
  width: 1rem;
  background-image: url(../img/jd.svg);
}
header .header_main .btns .store::after {
  content: '';
  display: block;
  position: absolute;
  z-index: -1;
  inset: 0;
  background-image: var(--bg_color);
  transition: all 0.3s;
  border-radius: 10px;
}
header .header_main .btns .store:hover {
  box-shadow: 0 5px 8px rgba(47, 129, 255, 0.5);
}
header .header_main .btns .store:hover::after {
  filter: brightness(1.2);
}
header .header_main .btns .store:active {
  opacity: 0.8;
  transform: scale(0.96);
  box-shadow: none;
}
header .header_main .btns .store:active::after {
  filter: none;
}
header .header_menu {
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  z-index: 2;
  pointer-events: none;
  
}
header .header_menu.active {
  pointer-events: all;
}
header .header_menu.active > .close {
  opacity: 1;
}
header .header_menu > .close {
  width: 100%;
  height: calc(100vh - 5rem);
  background-color: rgba(0, 0, 0, 0.6);
  transition: opacity 0.3s;
  opacity: 0;
}
header .header_menu .con {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 2;
  background-color: #fff;
  border-top: 1px solid #e2e2e2;
  padding: 22px 0 0;
  max-height: calc(100vh - 130px);
  overflow: auto;
  max-height: 560px;
  display: none;
}
header .header_menu .con::-webkit-scrollbar {
  width: 5px;
}
header .header_menu .con::-webkit-scrollbar-thumb {
  background: #888888;
  border-radius: 10px;
}
header .header_menu .con .close {
  width: 1rem;
  height: 1rem;
  cursor: pointer;
  background: url(../img/close.svg) no-repeat center / contain;
  margin: 0 6px 0 auto;
  transition: all 0.3s;
}
header .header_menu .con .close:hover {
  opacity: 0.5;
}
header .header_menu .con .title {
  font-size: 22px;
  font-weight: 700;
  padding: 5px 0;
}
header .header_menu .con .inner {
  margin-top: 24px;
}
header .header_menu .con .btc {
  padding: 26px 0;
  background-color: #f6f6f6;
}
header .header_menu .con .btc .store {
  display: flex;
  align-items: center;
  gap: 15px;
  font-weight: 500;
  transition: all 0.3s;
  font-size: 16px;
}
header .header_menu .con .btc .store::before {
  content: '';
  display: block;
  width: 23px;
  height: 30px;
  background: url(../img/store.svg) no-repeat center / contain;
}
header .header_menu .con .btc .store.tm::before {
  background-image: url(../img/tm.svg);
}
header .header_menu .con .btc .store.jd::before {
  background-image: url(../img/jd.svg);
}
header .header_menu .con .btc .store:hover {
  color: var(--theme_color);
}
header .menu_product .main {
  max-width: 1374px;
  margin-top: -42px;
  padding-bottom: 36px;
}
header .menu_product .main .items {
  padding: 4rem 0 36px;
  flex: 1;
  max-width: 40rem;
  display: grid;
  gap: 36px 6.66667%;
  grid-template-columns: repeat(4, 1fr);
}
header .menu_product .main .items .item i {
  display: block;
  width: 100%;
  max-width: 66px;
  aspect-ratio: 1/1;
  background: no-repeat center / contain;
  margin: 0 auto;
}
header .menu_product .main .items .item:not(:last-of-type) i{
  filter: brightness(0);
}
header .menu_product .main .items .item.active i{
  filter: brightness(1);
}
header .menu_product .main .items .item p {
  text-align: center;
  font-weight: 500;
  line-height: 21px;
  transition: all 0.2s;
  margin-top: 22px;
}
header .menu_product .main .items .item a:hover p {
  color: var(--theme_color);
  text-decoration: underline;
}
header .menu_product .main .items .item.active a p {
  color: var(--theme_color);
  text-decoration: underline;
}
header .menu_product .main .items .all i {
  border-radius: 50%;
  background-color: #f6f6f6;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}
header .menu_product .main .items .all i::after {
  content: '';
  display: block;
  width: 7px;
  height: 13px;
  background: url(../img/arrow-r.svg) no-repeat center / contain;
  transition: all 0.3s;
}
header .menu_product .main .items .all a:hover i {
  background-color: var(--theme_color);
}
header .menu_product .main .items .all a:hover i::after {
  filter: contrast(0) brightness(2);
}
header .menu_product .main .imgs {
  position: relative;
  overflow: hidden;
  width: 40.757%;
  padding-bottom: 28.23872%;
  border-radius: 12px;
  background-color: #f6f6f6;
}
header .menu_product .main .imgs .img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transition: all 0.3s;
  opacity: 0;
  pointer-events: none;
  display: block;
}
header .menu_product .main .imgs .img.active {
  opacity: 1;
  pointer-events: all;
}
header .menu_product .main .imgs .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  vertical-align: top;
  transition: all 0.5s;
}
header .menu_product .main .imgs .img:hover img {
  transform: scale(1.03);
}

header .menu_solution .inner {
  display: grid;
  gap: 22px 1.602%;
  grid-template-columns: 1fr 3fr;
  padding-bottom: 5rem;
}
header .menu_solution .nav ul {
  display: grid;
  gap: 1rem;
  margin-left: -3px;
}
header .menu_solution .nav ul li {
  opacity: .8;
  transition: all .3s;
  background-color: #fff;
  border-left: 3px solid transparent;
  cursor: pointer;
  font-size: 16px;
}
header .menu_solution .nav ul li.active {
  border-color: var(--theme_color);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}
header .menu_solution .nav ul li.active a {
  padding: 12px 20px;
}
.menu_solution .item p{
  font-size: 16px;
}
header .menu_solution .nav ul li a {
  display: block;
  padding: 12px 20px 12px 0;
  font-weight: 600;
  transition: all .3s;
  pointer-events: none;
  font-size: 16px;
}
header .menu_solution .items {
  max-width: 1374px;
  display: none;
  gap: 22px 1.602%;
  grid-template-columns: repeat(3, 1fr);
}
header .menu_solution .items .empty_img {
  object-fit: contain;
  aspect-ratio: 100/93.578;
}
header .menu_solution .items.active {
  display: grid;
}
header .menu_solution .items .item {
  padding-bottom: 93.578%;
  position: relative;
}
header .menu_solution .items .item a {
  border-radius: 10px;
  overflow: hidden;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  color: #fff;
  font-weight: 500;
  line-height: 21px;
  padding: 23px 20px;
}
header .menu_solution .items .item a::before {
  content: '';
  display: block;
  width: 100%;
  height: 39.543%;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -2;
  background-image: linear-gradient(to bottom, transparent 0%, #000 65%, #000 100%);
}
header .menu_solution .items .item a::after {
  content: '';
  display: block;
  width: 100%;
  height: 65.687%;
  background-image: linear-gradient(to bottom, transparent, #0b6cf6);
  transition: all 0.3s;
  opacity: 0;
  position: absolute;
  z-index: -1;
  left: 0;
  bottom: 0;
}
header .menu_solution .items .item a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  vertical-align: top;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -3;
  transition: all 0.5s;
}
header .menu_solution .items .item a:hover::after {
  opacity: 0.76;
}
header .menu_solution .items .item a:hover img {
  transform: scale(1.05);
}

footer {
  color: #fff;
  background-color: #262626;
}
footer .footer_main {
  padding: 114px 0 60px;
}
footer .footer_main .gap {
  gap: 3rem 20px;
}
footer .footer_main .slide_obj {
  max-width: 238px;
}
footer .footer_main .slide_obj strong {
  display: block;
  font-size: 24px;
  font-weight: 500;
  line-height: 29px;
  margin-bottom: 2rem;
}
footer .footer_main .slide_obj li {
  margin-bottom: 10px;
}
footer .footer_main .slide_obj li:last-child {
  margin-bottom: 0;
}
footer .footer_main .slide_obj li a {
  font-weight: 200;
  opacity: 0.8;
  color: #fff;
  font-size: 17px;
  line-height: 24px;
  transition: all 0.3s;
  position: relative;
}
footer .footer_main .slide_obj li a:after{
  content: "";
  width: 0%;
  position: absolute;
  bottom: -3px;
  left: 0;
  height: 1px;
  background: white;
  transition: all 0.4s;
}
footer .footer_main .slide_obj li a:hover:after{
  width: 100%;
}
footer .footer_main .slide_obj li a:hover {
  opacity: 1;
}
footer .footer_main .slide_contact {
  width: 252px;
  max-width: unset;
}
footer .footer_main .slide_contact li {
  padding-left: 30px;
  position: relative;
  margin-bottom: 24px;
}
footer .footer_main .slide_contact li::before {
  content: '';
  display: block;
  width: 18px;
  height: 21px;
  background: no-repeat center / contain;
  position: absolute;
  left: 0;
  top: 2px;
}
footer .footer_main .slide_contact li a,
footer .footer_main .slide_contact li span {
  opacity: 1;
  font-size: 18px;
  font-weight: normal;
}
footer .footer_main .slide_contact li a:hover {
  opacity: 0.8;
}
footer .footer_main .slide_contact li p {
  font-size: 15px;
  font-weight: 200;
  line-height: 22px;
  opacity: 0.8;
  margin-top: 7px;
  max-width: 205px;
}
footer .footer_main .slide_contact .email::before {
  background-image: url(../img/email.svg);
}
footer .footer_main .slide_contact .pos::before {
  background-image: url(../img/pos.svg);
}
footer .footer_bottom {
  padding: 27px 0;
}
footer .footer_bottom .logo {
  display: block;
  overflow: hidden;
  position: relative;
  text-indent: -999px;
  filter: contrast(0) brightness(2);
}
footer .footer_bottom .logo img {
  display: block;
  width: 217px;
  height: auto;
}
footer .footer_bottom .logo p {
  position: absolute;
  inset: 0;
}
footer .footer_bottom .social {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
footer .footer_bottom .social a, footer .footer_bottom .social span {
  transition: all 0.3s;
  display: block;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: no-repeat center / contain;
  background-color: rgba(255, 255, 255, 0.14);
  overflow: hidden;
  text-indent: -999px;
  position: relative;
}
footer .footer_bottom .social .gongzhonghao {
  position: relative;
}
footer .footer_bottom .social .gongzhonghao:hover span {
  background-color: var(--theme_color);
}
footer .footer_bottom .social .gongzhonghao:hover .qrcode {
  opacity: 1;
  transform: translateX(-50%);
}
footer .footer_bottom .social .gongzhonghao .qrcode {
  position: absolute;
  left: 50%;
  bottom: 120%;
  transform-origin: center bottom;
  width: 120px;
  aspect-ratio: 1;
  border-radius: 4px;
  overflow: hidden;
  background-color: #fff;
  padding: 2px;
  opacity: 0;
  transform: translateX(-50%) scale(0);
  transition: all .3s;
}
footer .footer_bottom .social .gongzhonghao .qrcode img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
footer .footer_bottom .social a:hover {
  background-color: var(--theme_color);
}
footer .footer_bottom .social .facebook a {
  background-image: url(../img/facebook.svg);
}
footer .footer_bottom .social .instagram a {
  background-image: url(../img/instagram.svg);
}
footer .footer_bottom .social .youtube a {
  background-image: url(../img/youtube.svg);
}
footer .footer_bottom .social .twitter a {
  background-image: url(../img/twitter.svg);
}
footer .footer_bottom .social .linkin a {
  background-image: url(../img/linkedin.svg);
  background-size: 45%;
}
footer .footer_bottom .social .gongzhonghao span {
  background-image: url(../img/gongzhonghao.svg);
}
footer .footer_bottom .social .xiaohongshu a {
  background-image: url(../img/xiaohongshu.svg);
}
footer .footer_bottom .social .weibo a {
  background-image: url(../img/weibo.svg);
}
footer .footer_bottom .social .bilibili a {
  background-image: url(../img/bilibili.svg);
}
footer .footer_bottom .social .douyin a {
  background-image: url(../img/douyin.svg);
}
footer .footer_bottom .social .active a {
  background-color: var(--theme_color);
}
footer .copyright .flex {
  padding: 1rem 0 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}
footer .copyright p,
footer .copyright a {
  font-size: 13px;
  line-height: 25px;
  font-weight: 200;
  opacity: 0.8;
  color: #fff;
}
footer .copyright a {
  transition: all 0.3s;
}
footer .copyright a:hover {
  opacity: 1;
}
footer .copyright ul {
  display: flex;
  gap: 38px;
}
.posts .post a {
  height: 100%;
  display: flex;
  flex-direction: column;
  background-color: #f7f7f7;
  border-radius: 8px;
  overflow: hidden;
}
.posts .post a:hover img {
  transform: scale(1.03);
}
.posts .post a:hover .more {

  /* text-decoration: underline; */
}
.posts .post a .more{
  position: relative;
}
.posts .post a .more:before{
  content: "";
  width: 0;
  height: 1px;
  position: absolute;
  background-color: var(--theme_color);
  left: 0;
  bottom: 0;
  transition: all 0.3s;
}
.posts .post a:hover .more:before{
  width: 100%;
}

.posts .post a:hover .more::after {
  transform: translate(5px, -5px);
}
.posts .post .img {
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  padding-bottom: 64.3777%;
}
.posts .post .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  vertical-align: top;
  position: absolute;
  left: 0;
  top: 0;
  transition: all 0.5s;
}
.posts .post .img .cat {
  position: absolute;
  left: 30px;
  top: 22px;
  z-index: 2;
  color: #fff;
  font-size: 14px;
  background-color: var(--theme_color);
  border-radius: 6px;
  padding: 8px 1rem;
  text-align: center;
  min-width: 94px;
}
.posts .post .info {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 26px 6.867% 42px;
}
.posts .post .info .title {
  color: #25292d;
  font-size: 24px;
  font-weight: 600;
  line-height: 36px;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.posts .post .info .meta {
  color: #333333;
  font-size: 14px;
  font-weight: 500;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 18px;
  gap: 8px 12.9354%;
  width: 100%;
}
.posts .post .info .meta .pos {
  display: flex;
  align-items: center;
  gap: 6px;
}
.posts .post .info .meta .pos::before {
  content: '';
  display: block;
  width: 13px;
  height: 18px;
  background: url(../img/pos-thin.svg) no-repeat center / contain;
}
.posts .post .info .meta .date {
  display: flex;
  align-items: center;
  gap: 6px;
}
.posts .post .info .meta .date::before {
  content: '';
  display: block;
  width: 1rem;
  height: 1rem;
  background: url(../img/date-thin.svg) no-repeat center / contain;
}
.posts .post .info .desc {
  margin-top: 22px;
  color: #727272;
  line-height: 26px;
  -webkit-line-clamp: 3;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.posts .post .info .more {
  margin-top: 20px;
  flex: 1;
  display: flex;
  align-items: flex-end;
  color: var(--theme_color);
  font-weight: 600;
  gap: 8px;
}
.posts .post .info .more::after {
  content: '';
  display: block;
  width: 1rem;
  height: 11px;
  background: url(../img/arrow-line-r.svg) no-repeat center / contain;
  transition: all 0.3s;
  transform: translateY(-5px);
}
.search_banner {
  padding: 100px 0 414px;
  background: no-repeat bottom center / cover;
}
.search_banner .flex {
  min-height: 456px;
}
.search_banner .head {
  color: #fff;
  width: 100%;
  max-width: 923px;
}
.search_banner .head h1 {
  font-size: 65px;
  font-weight: 800;
  line-height: 83px;
}
.search_banner .head form {
  margin: 2rem auto 0;
  position: relative;
  max-width: 644px;
}
.search_banner .head form:focus-within .con {
  display: block;
}
.search_banner .head form input[type="text"] {
  width: 100%;
  height: 58px;
  border-radius: 7px;
  border: 1px solid #dbdbdb;
  background-color: #fff;
  color: var(--title_color);
  font-size: 18px;
  font-weight: 600;
  padding: 0 82px 0 25px;
}
.search_banner .head form input[type="text"]::placeholder {
  color: #727272;
}
.search_banner .head form input[type="submit"] {
  display: block;
  width: 58px;
  height: 58px;
  border-radius: 7px;
  background: url(../img/btn_search.svg) no-repeat center / cover;
  background-color: var(--theme_color);
  overflow: hidden;
  text-indent: -999px;
  position: absolute;
  right: 0;
  top: 0;
  transition: all 0.3s;
}
.search_banner .head form input[type="submit"]:hover {
  filter: brightness(1.1);
  box-shadow: 0 5px 8px rgba(47, 129, 255, 0.5);
}
.search_banner .head form input[type="submit"]:active {
  transform: scale(0.9);
  box-shadow: none;
  filter: none;
}
.search_banner .head form .con {
  border: 1px solid #dbdbdb;
  position: absolute;
  left: 0;
  top: 100%;
  background-color: #fff;
  width: 100%;
  border-radius: 7px;
  text-align: left;
  padding: 0 1rem;
  display: none;
}
.search_banner .head form .con ul {
  margin: 10px 0 15px;
  max-height: 366px;
  overflow: auto;
  padding: 0 10px;
}
.search_banner .head form .con ul::-webkit-scrollbar {
  width: 5px;
}
.search_banner .head form .con ul::-webkit-scrollbar-thumb {
  background: #888888;
  border-radius: 10px;
}
.search_banner .head form .con li:last-child a {
  border-bottom: none;
}
.search_banner .head form .con a {
  display: block;
  border-bottom: 1px solid #dbdbdb;
  padding: 10px 0 15px;
}
.search_banner .head form .con a:hover span {
  text-decoration: underline;
}
.search_banner .head form .con .title {
  color: #25292d;
  font-size: 21px;
  font-weight: 600;
  line-height: 36px;
  -webkit-line-clamp: 1;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.search_banner .head form .con .desc {
  color: #727272;
  line-height: 26px;
  -webkit-line-clamp: 1;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-top: 6px;
}
.search_banner .head form .con .btc {
  margin-top: 7px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.search_banner .head form .con .date {
  color: #727272;
  font-size: 14px;
}
.search_banner .head form .con span {
  color: var(--theme_color);
  font-weight: 600;
}
.support_intro {
  padding: 142px 0 136px;
}
.support_intro .support_intro_swiper .swiper-slide {
  max-width: 458px;
}
.support_intro .support_intro_swiper .swiper-slide.active a {
  background-color: #1c222e;
}
.support_intro .support_intro_swiper .swiper-slide.active a::before {
  background-color: #2c333e;
  transform: translate(-49.9819%, -40%);
}
.support_intro .support_intro_swiper .swiper-slide.active .icon {
  background-color: #fff;
}
.support_intro .support_intro_swiper .swiper-slide.active .icon i {
  filter: none;
}
.support_intro .support_intro_swiper .swiper-slide.active strong {
  color: #fff;
}
.support_intro .support_intro_swiper .swiper-slide.active p {
  color: #fff;
  opacity: 0.8;
}
.support_intro .support_intro_swiper .swiper-slide a {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  text-align: center;
  padding: 54px 12.22708% 50px;
  transition: all 0.3s;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(148, 148, 148, 0.25);
  z-index: 2;
}
.support_intro .support_intro_swiper .swiper-slide a::before {
  content: '';
  display: block;
  width: 120.0874%;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: #f9f9f9;
  transition: background-color 0.3s, transform 0.6s;
  position: absolute;
  z-index: -1;
  left: 0;
  top: 0;
  transform: translate(-60%, -50%);
}
.support_intro .support_intro_swiper .swiper-slide .icon {
  width: 100%;
  max-width: 134px;
  border-radius: 50%;
  background-color: var(--theme_color);
  margin: 0 auto;
  transition: all 0.3s;
}
.support_intro .support_intro_swiper .swiper-slide .icon i {
  display: block;
  width: 100%;
  aspect-ratio: 1/1;
  background: no-repeat center / contain;
  filter: contrast(0) brightness(2);
  transition: all 0.3s;
}
.support_intro .support_intro_swiper .swiper-slide strong {
  display: block;
  margin-top: 28px;
  font-size: 28px;
  font-weight: 700;
  line-height: 42px;
  transition: all 0.3s;
}
.support_intro .support_intro_swiper .swiper-slide p {
  margin-top: 1rem;
  color: #606060;
  font-size: 18px;
  line-height: 29px;
  transition: all 0.3s;
  flex: 1;
}
.support_intro .support_intro_swiper .swiper-slide span {
  color: var(--theme_color);
  font-size: 18px;
  font-weight: 600;
  display: flex;
  align-items: center;
  max-width: max-content;
  margin: 4rem auto 0;
  text-transform: uppercase;
  gap: 8px;
}
.support_intro .support_intro_swiper .swiper-slide span::after {
  content: '';
  display: block;
  transition: all 0.3s;
  width: 19px;
  height: 12px;
  background: url(../img/arrow-line-r.svg) no-repeat center / contain;
  transform: translateY(1px);
}
.support_intro .support_intro_swiper .swiper-slide span:hover::after {
  transform: translate(5px, 1px);
}
.cases .case a:hover img {
  transform: scale(1.05);
}
.cases .case .img {
  padding-bottom: 100%;
  position: relative;
  overflow: hidden;
}
.cases .case .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  vertical-align: top;
  transition: all 0.5s;
  position: absolute;
  left: 0;
  top: 0;
}
.cases .case .info .title {
  font-size: 26px;
  font-weight: 600;
  margin-top: 17px;
  -webkit-line-clamp: 1;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.cases .case .info .desc {
  color: #666666;
  font-size: 17px;
  line-height: 31px;
  margin-top: 12px;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.cases .case .info span {
  color: var(--theme_color);
  font-weight: 500;
  display: block;
  margin-top: 35px;
}
.head2 h1 {
  font-size: 59px;
  line-height: 83px;
  margin-bottom: 16px;
  font-weight: 800;
}
.head2 p {
  font-size: 18px;
  line-height: 21px;
  color: #4F4F4F;
}
.head2 h2 {
  font-size: 48px;
}
.breadcrumbs, .breadcrumbs a {
  line-height: 19px;
  color: #777A7C;
}
.breadcrumbs a:hover{
  color: #0b6cf6;
}
.breadcrumbs span.breadcrumb_last {
  color: #242424;
  font-weight: 600;
}
.sy_breadcrumb {
  padding-top: 60px;
  padding-bottom: 32px;
}
.learn_btn {
  padding: 16px 50px;
  border-radius: 10px;
  color: white;
  font-size: 18px;
  display: inline-block;
  border: 1px solid var(--theme_color);
  position: relative;
  transition: all 0.3s;
  overflow: hidden;
  cursor: pointer;
  z-index: 1;
}
.morebtn {
  padding: 16px 33px;
  border-radius: 10px;
  color: #25292D;
  font-size: 18px;
  font-weight: 600;
  display: inline-block;
  border: 1px solid #C4C4C4;
  position: relative;
  transition: all 0.3s;
  overflow: hidden;
  cursor: pointer;
  z-index: 1;
}
.morebtn:hover:after {
  transform: translateX(75%);
}
.morebtn:after {
  content: "";
  width: 400%;
  height: 100%;
  transition: all 0.5s;
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
  background: linear-gradient(to right, var(--theme_color), var(--theme_color), #fff, #fff);
}
.morebtn:hover {
  color: #fff;
  border-color: transparent;
}
.learn_btn:hover:after {
  transform: translateX(75%);
}
.learn_btn:after {
  content: "";
  width: 400%;
  height: 100%;
  transition: all 0.5s;
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
  background: linear-gradient(to right, rgba(255,255,255,0), rgba(255,255,255,0), var(--theme_color), var(--theme_color));
}
.learn_btn:hover {
  color: var(--theme_color);
  border-color: var(--theme_color);
}
body.gray_bg {
  background-color: #fafafa;
}
.head2.white h1,
.head2.white p {
  color: white;
}
.category_banner {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.category_banner .head2 {
  height: 763px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding-bottom: 10rem;
  width: 38%;
}
.partner_banner {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.partner_banner .head2 h1 {
  font-size: 68px;
  line-height: 83px;
  margin-bottom: 26px;
}
.partner_banner .head2 {
  height: 763px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding-bottom: 7rem;
}
.partner_banner .head2 h1 span {
  font-weight: 400;
  display: block;
}
ul.grid_products {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 23px;
}
ul.grid_products.swiper-wrapper {
  display: flex;
  gap: unset;
}
ul.grid_products.swiper-wrapper li.grid_product {
  width: 342px;
  margin-right: 23px;
}
ul.grid_products li.grid_product.grid_guide{
  position: relative;
}
ul.grid_products li.grid_product.grid_guide:after{
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  position: absolute;
  left: 0%;
  top: 0;
  z-index: 1;
}
ul.grid_products li.grid_product.grid_guide a{
  z-index: 5;
}
ul.grid_products li.grid_product {
  border-radius: 14px;
  overflow: hidden;
  text-align: center;
  transition: all 0.3s;
  background-color: white;
}
ul.grid_products li.grid_product .img {
  width: 100%;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transform: scale(0.9);
}
ul.grid_products li.grid_product .img img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: all 0.3s;
}
ul.grid_products li.grid_product:hover {
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}
ul.grid_products li.grid_product strong {
  font-size: 20px;
  color: #242424;
  display: inline-block;
  margin-top: 0.5rem;
  transition: all 0.3s;
  margin-bottom: 0.9rem;
}
ul.grid_products li.grid_product .infos {
  padding-left: 1rem;
  padding-right: 1rem;
}
ul.grid_products li.grid_product p {
  font-size: 15px;
  color: #626466;
}
ul.grid_products li.grid_product.grid_guide p{
  color: white;
}
ul.grid_products li.grid_product > a {
  display: block;
  height: 100%;
  padding-bottom: 50px;
}
ul.grid_products li.grid_product.grid_guide a {
  padding: 36px 30px;
  padding-right: 80px;
  text-align: left;
  position: relative;
}
ul.grid_products li.grid_product.grid_guide strong {
  font-size: 22px;
  line-height: 26px;
  color: #fff;
}
ul.grid_products li.grid_product.grid_guide .icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: inline-block;
  margin-top: 3px;
  transition: all 0.3s;
  background: url('../img/circle-right.svg') no-repeat center / cover;
}
ul.grid_products li.grid_product.grid_guide img {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: -30px;
  z-index: -1;
}
ul.grid_products li.grid_product:hover .img img {
  transform: scale(1.03);
}
ul.grid_products li.grid_product:hover strong {
  color: var(--theme_color);
}
ul.grid_products li.grid_product:hover .icon {
  transform: rotate(90deg);
}
.square_btns {
  width: 100%;
  max-width: 88%;
  position: absolute;
  top: 50%;
  left: 50%;
  display: flex;
  height: 0;
  justify-content: space-between;
  transform: translate(-50%, -50%);
  z-index: 5;
}
.square_btns > div {
  width: 60px;
  height: 60px;
  cursor: pointer;
  position: relative;
  border-radius: 9px;
  transform: translateY(-50%);
  transition: all 0.3s;
  background-color: var(--theme_color);
}
.square_btns > div:hover {
  /* transform: scale(1.03); */
}
.square_btns > div.next {
  margin-left: auto;
}
.square_btns > div:after {
  content: "";
  width: 13px;
  height: 23px;
  position: absolute;
  left: 50%;
  top: 50%;
  transition: all 0.3s;
  transform: translate(-50%, -50%);
  background: url('../img/right-white.svg') no-repeat center / contain;
}
.square_btns > div.prev:after {
  background-image: url('../img/left-white.svg');
}
.square_btns > div.swiper-button-disabled {
  background-color: #e6e6e6;
}
.square_btns > div.swiper-button-disabled:after {
  filter: brightness(0);
}
.black_bottom {
  position: relative;
}
.black_bottom:after {
  content: "";
  width: 100%;
  height: 330px;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0), #000000);
}
.black_top,
.white_top {
  position: relative;
}
.black_top:after {
  content: "";
  width: 100%;
  height: 330px;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  background: linear-gradient(to top, rgba(0, 0, 0, 0), #000000);
}
.white_top:after {
  content: "";
  width: 100%;
  height: 330px;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  background: linear-gradient(to top, rgba(255, 255, 255, 0), #ffffff);
}
.white_bottom{
  position: relative;
}
.white_bottom:before {
  content: "";
  width: 100%;
  height: 200px;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
  background: linear-gradient(to top,#ffffff,rgba(255, 255, 255, 0));
}



.loading{
  position: relative;
}

.loading:before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../img/load.gif') no-repeat center;
  background-size: 45px;
  background-color: rgba(255, 255, 255, 0.3);
  z-index: 9;
}


div.loader {
  border: 7px solid #f2f5f9;
  border-top: 7px solid #fff;
  border-radius: 50%;
  width: 3rem;
  height: 3rem;
  position: absolute;
  left: 50%;
  margin-left: -1.75rem;
  animation: spin 1s linear infinite;
  margin-top: 0;
  text-align: center;
}
@keyframes spin {
  0% {
      transform: rotate(0deg);
  }

  100% {
      transform: rotate(360deg);
  }
}


body .wpcf7-spinner{
  width: 24px !important;
  margin-left: 1rem;
  margin-top: 1rem;
}
body .wpcf7 form .wpcf7-response-output{
  padding: 0;
  border: none;
  margin: 0;
}
.empty_img{
  width: 500px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
}



.video_pop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.8);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s;
  z-index: 9999;
  padding: 1.2rem;
}
.video_pop.active {
  opacity: 1;
  pointer-events: all;
}
.video_pop.active .pop_content {
  transform: translate(-50%, -50%);
}
.video_pop .mask {
  width: 100%;
  height: 100%;
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
}
.video_pop .mask .close {
  display: block;
  width: 1rem;
  height: 1rem;
  background: url(../img/close.svg) no-repeat center / contain;
  position: absolute;
  right: 2rem;
  top: 1rem;
  cursor: pointer;
}
.video_pop .pop_content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -70%);
  transition: all 0.3s;
  width: max-content;
  max-width: 90vw;
  height: 80vh;
  aspect-ratio: 1920/1080;
}
.video_pop .pop_content iframe {
  width: 100%;
  height: 100%;
  object-fit: contain;
}



div.search-block {
  position: fixed;
  z-index: 999;
  background-color: #fff;
  box-shadow: 0 0 15px rgba(0, 55, 96, 0.12);
  width: 100%;
  bottom: -100vh;
  height: 100vh;
  transition: 0.3s ease;
}
div.search-block.active {
  bottom: 0;
  opacity: 1;
  transform: translateY(150px);
}
div.search-block div.content {
  position: relative;
  display: block;
}
.wd-action-btn {
  display: inline-flex;
  vertical-align: middle;
  background: url(../../global/img/cloes.svg) no-repeat center;
  background-size: contain;
  position: absolute;
  top: 38px;
  right: 0;
  z-index: 1;
  width: 28px;
  height: 28px;
  transition: all 0.3s;
  cursor: pointer;
}
.wd-action-btn:hover {
  transform: rotate(180deg);
}
div.search-block .searchform {
  border-bottom: 1px solid rgba(119, 119, 119, 0.2);
  /* opacity: 0; */
  transition: opacity 0.35s ease 0.2s;
  --wd-form-color: #333;
  --wd-form-placeholder-color: #333;
  text-align: center;
  transition: 0.75s all ease;
}
div.search-block.active .searchform {
  opacity: 1;
}
div.search-block .searchform input[type='text'] {
  padding: 0;
  height: 110px;
  border: none;
  text-align: center;
  font-size: 35px;
  outline: none;
}
header div.main-menu div.main div.right {
  display: none;
}
div.search-block .searchform ::-webkit-input-placeholder {
  color: #333333;
}






.modal{
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 999;
  visibility: hidden;
  /* transition: all 0.3s; */
}
.modal-q .modal{
  visibility: visible;
}
.modal .modalcontent{
  width: 1000px;
  height: auto;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  background-color: white;
  z-index: 4;
  overflow: hidden;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  top: -150%;
  transition: all 0.4s;
}
.modal-q .modal .modalcontent{
  top: 50%;
}
.modal .overlay{
  position: fixed;
  z-index: 3;
  width: 100%;
  height: 100%;
  left: 0;
  /* display: none; */
  top: 0;
  opacity: 0;
  background-color: rgba(0, 0, 0, 0.6);
  transition: all 0.3s;
}
.modal-q .modal .overlay{
  display: block;
  opacity: 1;
}
.quote-content .form form{
  gap: 0;
}
.quote-content>.flex{
  align-items:stretch;
}
.quote-content .left{
  width: 48%;
  display: flex;
  align-items: center;
  justify-content: left;
  padding: 3.5rem;
  background: url(../img/category-banner.jpg) no-repeat 62% center/cover; 
}
.quote-content .left .logo{
  width: 200px;
  display: inline-block;
  height: 70px;
  position: absolute;
  bottom: 2rem;
  filter: contrast(0) brightness(100);
  left: 1.5rem;
  background: url('../img/logo.svg') no-repeat center/contain;
}
.quote-content .left strong{
  font-size: 45px;
  color: #fff;
  font-weight: 600;
  display: inline-block;
}
.quote-content .right{
  width: 52%;
  padding: 4rem 3rem 4rem 0rem;
  padding-left: 4%;
  position: relative;
  max-height: 670px;
  overflow: auto;
}
.quote-content form label, .quote-content form>p{
  width: 100%;
  display: block;
}
.quote-content form label{
  font-size: 15px;
  display: flex;
  flex-flow: wrap;
}
.quote-content form .wpcf7-form-control-wrap{
  display: block;
  width: 100%;
  margin-bottom: .5rem;
}
/* form.wpcf7-form.submitting{
  position: relative;
}
form.wpcf7-form.submitting:after{
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: url('../img/load.gif') no-repeat center/45px;
  background-color: #f2ede783;
} */
.quote-content form input:not([type="checkbox"]){
  border: 1px solid rgba(0,0,0,.1);
}
.quote-content form input:not([type="checkbox"]), .quote-content form select{
  width: 100%;
  font-size: 0.875rem;
  padding: 0.8rem 1.25rem;
  border-radius: 0.3125rem;
  font-size: 15px;
  margin-bottom: 0.6rem;
}
.quote-content form .wpcf7-not-valid-tip{
    margin-top: 0rem;
    margin-bottom: .6rem;
    font-size: 13px;
}


.quote-content form select{
  border: 1px solid rgba(0, 0, 0, 0.1);
  font-family: inherit;
  color: #777;
}

.quote-content form textarea{
  width: 100%;
  font-size: 15px;
  padding: 0.8rem 1.25rem;
  height: 130px;
  border: 1px solid rgba(0,0,0,.1);

  border-radius: 0.3125rem;
}
.quote-content form .flex2{
  display: flex;
  gap: 1rem;
  align-items: center;
}
.quote-content form input[type="submit"]{
  background-color: var(--theme_color);
  color: white;
  border: none;
  padding: 1rem;
  cursor: pointer;
  margin-top: 1rem;
  margin-bottom: 0rem;
  transition: all 0.3s;
}
.quote-content form input[type="submit"]:hover{
  filter: brightness(1.1);
}
.quote-content p.tip{
  font-size: 12px;
  margin-top: -0.5rem;
  margin-bottom: 1rem;
}
.quote-content .wpcf7-spinner{
  position: absolute;
  right: 2rem;
  bottom: 2rem;
}
body .quote-content .wpcf7 form.invalid .wpcf7-response-output, body .quote-content .wpcf7 form.unaccepted .wpcf7-response-output, body .quote-content .wpcf7 form.payment-required .wpcf7-response-output{
  padding: 0;
  font-size: 14px;
  border: none;
  margin-top: 0;
}
body .quote-content .wpcf7 form .wpcf7-response-output{
  padding: 0;
  font-size: 14px;
  border: none;
  margin-top: 0;
  margin: 0;
  position: absolute;
  left: 0;
  transition: all 0.3s;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  transform: scale(0);
  text-align: center;
  z-index: 9;
}


header .header_main nav .menu-item-product .sub-menu{
  display: none;
}

.partners_process .processmain .flex::before {
  
  background: url(../img/dot-line.svg) no-repeat center / contain !important;
}
.partners_process .processmain .flex::after{
  background: url(../img/dot-line.svg) no-repeat center / contain !important;
}

@keyframes jump {
  0%{
    transform: translateY(0px);
  }
  50%{
    transform: translateY(-15px);
  }
  100%{
    transform: translateY(0px);
  }
  

}
.partners_process .processmain .flex .item.active .img{
  animation: jump 1s linear infinite;
}

.cases_list .list p.center, .blog_new p.center{
  min-height: 56px;
}

@media screen and (min-width: 786px) {
  body:not(.toplevel_page_sytech_fronteditor) section[data-parallax="scroll"] {
    background-image: none !important;
    background-color: rgba(0, 0, 0, 0.5);
  }
  body:not(.toplevel_page_sytech_fronteditor) section[data-parallax="scroll"].bg_tran {
    background-color: transparent !important;
  }
}


.desc_text{
  text-indent: -9999px;
  display: inline-block;
  opacity: 0;
  position: absolute;
}

.support_contact{
  margin-top: 0 !important;
}


.pattnerpolicymain .summary li a{
  font-size: 17px;
  font-weight: 500;
  color: #232323;
  line-height: 47px;
  padding-left: 35px;
  position: relative;
}

.partners_benefits .head p {
  color: var(--content_color);
  font-size: 17px;
  line-height: 30px;
  margin-top: 25px;
}
section.installer_intro.installer_intro_r {
  margin: 90px 0;
}

.menu-item-solution .nolink {
  pointer-events: none;
}
header .header_main nav .menu-item-solution .sub-menu{
  display: none;
}

.lang_popup{
  padding: 70px 53px;
  border-radius: 12px;
  background-color: white;
  /* position: absolute;
  left: calc(100% + 20px);
  bottom: -15px; */
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  display: none;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  z-index: 1005;
}
.lang_popup ul {
  overflow: auto;
  max-height: 60vh;
  &::-webkit-scrollbar {
    width: 5px;
}
&::-webkit-scrollbar-thumb {
    background: rgb(136, 136, 136);
    border-radius: 10px;
}
}
.footer_sidebar .lang{
  position: relative;
}
.lang_popup strong{
  display: block;
  font-size: 32px;
  margin-bottom: 45px;
}
.lang_popup div.img{
  width: 41px;
  height: 41px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 19px;
  border: 1px solid transparent;
}
.lang_popup div.img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.lang_popup div.img{
  display: none;
}
.lang_popup li{
  padding: 19px 24px;
  border-radius: 4px;
  border: 1px solid #e5e5e5;
  display: flex;
  transition: all 0.3s;
  align-items: center;
  cursor: pointer;
  
}
.lang_popup:before{
  content: "";
  display: inline-block;
  border-width: 10px;
  border-color: transparent #fff transparent transparent;
  position: absolute;
  right: 100%;
  bottom: 38px;
  border-style: solid;
  display: none;
}
.lang_popup li + li{
  /* margin-top: 16px; */
}
.lang_popup li p{
  font-size: 17px;
  font-weight: 600;
  display: block;
  margin-bottom: 0rem;
}
.lang_popup li span{
  font-size: 14px;
  color: #686868;
}
.lang_popup li:after{
  content: "";
  width: 10px;
  height: 16px;
  display: inline-block;
  margin-left: auto;
  background: url('../img/arrow-lang.svg') no-repeat center/contain;
  transition: all 0.3s;
}
.lang_popup li.active{
  background-color: var(--theme_color);
  border-color: var(--theme_color);
}
.lang_popup li.active .img{
  border-color: white;
}
.lang_popup li.active p, .lang_popup li.active span{
  color: white;
}
.lang_popup li.active:after{
  filter: brightness(100);
}

.lang_popup .close{
  width: 11px;
  display: inline-block;
  height: 11px;
  position: absolute;
  right: 32px;
  top: 30px;
  cursor: pointer;
  transition: all 0.5s;
  background: url('../img/lang-close.svg') no-repeat center/contain;
}
.lang_popup .close:hover{
  transform: rotate(360deg);
}
.over_lang{
  position: fixed;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s;
}
.over_lang.active{
  opacity: 1;
  pointer-events: all;
}
.box_cur_lang{
  display: none !important;
}

.about_award .main.hide{
  display: none;
}

header .stores {
  position: relative;
}
header .stores .store {
  cursor: pointer;
}
header .stores .pop {
  left: 50%;
  top: 120%;
  position: absolute;
  transform: translateX(-50%);
  white-space: nowrap;
  background-color: #fff;
  padding: 12px;
  border-radius: 8px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  display: none;
}
header .stores .pop .store {
  margin-bottom: 12px;
}
header .stores .pop .store:last-child {
  margin-bottom: 0;
}

.special_link{
  margin-right: 36px;
}

.zoho_form iframe{
  margin-left: auto;
  margin-right: auto;
  display: block;
}


.notice_modal {
  position: fixed;
  /* width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none; */
  transition: all .3s;
  z-index: 1999;
  right: 2rem;
  bottom: 2rem;
  opacity: 0;
  pointer-events: none;
  transform: translateX(calc(100% + 4rem));
}
.notice_modal.active {
  opacity: 1;
  pointer-events: all;
  transform: translateX(0);
}
.notice_modal > .close {
  /* position: absolute;
  z-index: -1;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5); */
}
.notice_modal .top {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr auto;
  gap: 20px;
  padding: 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
}
.notice_modal .title {
  font-size: 20px;
  font-weight: 700;
}
.notice_modal .top .close {
  display: block;
  width: 18px;
  aspect-ratio: 1;
  cursor: pointer;
  filter: contrast(0) brightness(0);
  background: url(../img/mobile-menu/close.svg);
}
.notice_modal .modal_content {
  width: calc(100% - 40px);
  width: 100%;
  max-width: 468px;
  background-color: #fff;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}
.notice_modal .con {
  max-height: 50vh;
  overflow: auto;
  padding: 20px;
  &::-webkit-scrollbar {
    width: 5px;
  }
  &::-webkit-scrollbar-thumb {
    background: rgb(136, 136, 136);
    border-radius: 10px;
  }
}
.notice_modal .con p {
  margin: 20px 0;
}
.notice_modal .con ul {
  margin-left: 20px;
}
.notice_modal .con li {
  list-style: disc;
  margin: 12px 0;
}
.notice_modal .con img {
  max-width: 100%;
}
.notice_modal .con a {
  color: var(--theme_color);
  text-decoration: underline;
}
.btn_notice_modal {
  position: fixed;
  z-index: 999;
  right: 2rem;
  bottom: 2rem;
  cursor: pointer;
  transition: all .3s;
  border-radius: 50%;
  width: 3rem;
  height: 3rem;
  background: url(../img/notice-w.svg) no-repeat center/20px var(--theme_color);
}
.btn_notice_modal:hover {
  background-color: #000;
}


.show_en_de{
  display: none !important;
}
html[lang="en"] .show_en_de, html[lang="de"] .show_en_de{
  display: block !important;
}


.default_text, .default_head p{
  margin: 20px auto 0px;
  font-size: 17px;
  line-height: 30px;
  color: var(--content_color);
}

.default_head{
  margin: 2rem 0;
}
.default_head>ul li{
  list-style: disc;
  margin-left: 20px;
  margin-top: 0.5rem;
  font-size: 17px;
  line-height: 30px;
  color: var(--content_color);
}
.product_preview .learn_btn{
  margin-top: 2rem;
}

.lang_popup ul{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
}


.home2_solutions .swiper_btns_full div{
  width: 45px;
  height: 45px;
}
.account-bluetti ul.grid_products{
  padding: 0 !important;
}