* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --primary: #1180E7;
  --secondary: #70B3E5;
  --title: #1D1D1F;
  --text: #474747;
}
html {
  scroll-behavior: smooth;
  font-size: clamp(7.5px, 0.520834vw, 10px);
}
.content {
  max-width: 128rem;
  margin: 0 auto;
  position: relative;
}
.content .content {
  padding: 0;
}
.swiper_box {
  position: relative;
}
.swiper_content {
  max-width: 131rem;
  margin: 0 auto;
  position: relative;
  padding: 1.5rem;
  overflow: hidden;
}
li {
  list-style: none;
}
li.swiper-slide {
  height: auto;
}
a {
  color: inherit;
  cursor: pointer;
  font-size: inherit;
  text-decoration: none;
}
i,
em {
  font-style: normal;
}
input,
button,
textarea {
  border: none;
  outline: none;
  font-family: unset;
  color: var(--title);
}
select {
  cursor: pointer;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  font-family: unset;
  color: var(--title);
}
textarea {
  resize: none;
}
button,
input[type="submit"] {
  cursor: pointer;
}
input[type="checkbox"] {
  cursor: pointer;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
}
input[type="number"] {
  appearance: textfield;
  -moz-appearance: textfield;
  -webkit-appearance: textfield;
}
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  margin: 0;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
}
table {
  width: 100%;
  word-break: normal;
  border-collapse: collapse;
}
.flex {
  display: flex;
}
.wrap {
  flex-wrap: wrap;
}
.flex1 {
  flex: 1;
}
.flex2 {
  flex: 2;
}
.flex3 {
  flex: 3;
}
.between {
  justify-content: space-between;
}
.center {
  text-align: center;
}
.flex_start {
  justify-content: flex-start;
}
.flex_center {
  justify-content: center;
}
.flex_end {
  justify-content: flex-end;
}
.flex_top {
  align-items: flex-start;
}
.flex_middle {
  align-items: center;
}
.flex_bottom {
  align-items: flex-end;
}
.aligncenter {
  margin-left: auto;
  margin-right: auto;
}
body {
  font-size: 1.6rem;
  word-break: break-word;
  color: var(--title);
  font-family: 'Geist', sans-serif;
}
body.fixed {
  overflow: hidden;
  padding-right: 17px;
}
body [data-wpr-lazyrender] {
  content-visibility: unset;
}
.only_mobile {
  display: none;
}
.gap {
  gap: 3rem;
}
.grecaptcha-badge {
  visibility: hidden;
}
#fullscreen-loader {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: linear-gradient(to top, #E8F3FD, #fff);
}
#fullscreen-loader::after {
  content: '';
  display: block;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 8px solid var(--primary);
  animation: l20-1 0.8s infinite linear alternate, l20-2 1.6s infinite linear;
}
@keyframes l20-1 {
  0% {
    clip-path: polygon(50% 50%, 0 0, 50% 0%, 50% 0%, 50% 0%, 50% 0%, 50% 0%);
  }
  12.5% {
    clip-path: polygon(50% 50%, 0 0, 50% 0%, 100% 0%, 100% 0%, 100% 0%, 100% 0%);
  }
  25% {
    clip-path: polygon(50% 50%, 0 0, 50% 0%, 100% 0%, 100% 100%, 100% 100%, 100% 100%);
  }
  50% {
    clip-path: polygon(50% 50%, 0 0, 50% 0%, 100% 0%, 100% 100%, 50% 100%, 0% 100%);
  }
  62.5% {
    clip-path: polygon(50% 50%, 100% 0, 100% 0%, 100% 0%, 100% 100%, 50% 100%, 0% 100%);
  }
  75% {
    clip-path: polygon(50% 50%, 100% 100%, 100% 100%, 100% 100%, 100% 100%, 50% 100%, 0% 100%);
  }
  100% {
    clip-path: polygon(50% 50%, 50% 100%, 50% 100%, 50% 100%, 50% 100%, 50% 100%, 0% 100%);
  }
}
@keyframes l20-2 {
  0% {
    transform: scaleY(1) rotate(0deg);
  }
  49.99% {
    transform: scaleY(1) rotate(135deg);
  }
  50% {
    transform: scaleY(-1) rotate(0deg);
  }
  100% {
    transform: scaleY(-1) rotate(-135deg);
  }
}
.img.img_cv {
  overflow: hidden;
}
.img.img_cv img {
  object-fit: cover;
}
.img.img_ct img {
  object-fit: contain;
}
.img.img_ab {
  position: relative;
}
.img.img_ab img {
  position: absolute;
  left: 0;
  top: 0;
}
.img.img_aba {
  position: relative;
}
.img.img_aba::after {
  content: '';
  display: block;
  padding-bottom: var(--h);
}
.img.img_aba img {
  position: absolute;
  left: 0;
  top: 0;
}
.img img {
  width: 100%;
  height: 100%;
  display: block;
  transition: all 0.5s;
  aspect-ratio: inherit;
}
.img_bg {
  position: relative;
  z-index: 2;
}
.img_bg > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -2;
}
.btn {
  display: inline-block;
  vertical-align: top;
  transition: all 0.3s;
  text-align: center;
  cursor: pointer;
  color: #fff;
  font-weight: 600;
  font-size: 1.8rem;
  line-height: 6.4rem;
  border-radius: 0.6rem;
  padding: 0 4rem;
  min-width: 18.2rem;
  background-color: var(--primary);
}
.btn:hover {
  background-color: var(--secondary);
}
.btn_cir {
  gap: 1.4rem;
  display: grid;
  align-items: center;
  grid-template-columns: auto 1fr;
  font-size: 1.8rem;
}
.btn_cir::before {
  content: '';
  display: block;
  width: 4.2rem;
  height: 4.2rem;
  border-radius: 50%;
  transition: all 0.3s;
  background: url(../img/arrow-line-r-w.svg) no-repeat center / 35% var(--primary) !important;
}
.btn_cir:hover::before {
  transform: scale(1.1);
}
.btn_more {
  display: inline-block;
  vertical-align: top;
  transition: all 0.3s;
  text-align: center;
  cursor: pointer;
  color: var(--title);
  font-weight: 600;
  font-size: 1.8rem;
  line-height: 6.2rem;
  border-radius: 0.6rem;
  padding: 0 4rem;
  min-width: 18.2rem;
  border: 1px solid rgba(29, 29, 31, 0.5);
  background-color: transparent;
}
.btn_more:hover {
  color: #fff;
  border-color: var(--primary);
  background-color: var(--primary);
}
.head.banner {
  color: #fff;
}
.head.banner .subtitle {
  font-weight: normal;
  font-size: 2.2rem;
  color: #fff;
  letter-spacing: 0;
  margin-bottom: 2.2rem;
}
.head.banner p {
  margin-top: 2.6rem;
  padding-top: 3rem;
  color: rgba(255, 255, 255, 0.85);
  font-size: 2rem;
  line-height: 2.9rem;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}
.head.banner .btn {
  margin-top: 4rem;
}
.head .subtitle {
  color: var(--primary);
  font-size: 1.8rem;
  letter-spacing: 3px;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}
.head h1,
.head .title {
  font-weight: 600;
  font-size: 5.8rem;
  line-height: 6.6rem;
}
.head h2 {
  font-weight: 600;
  font-size: 4.8rem;
  line-height: 5.8rem;
}
.head p {
  font-size: 1.8rem;
  line-height: 3rem;
}
.syedittext ul li {
  font-size: 2.2rem;
  line-height: 3rem;
  position: relative;
  padding-left: 5rem;
}
.syedittext ul li + li {
  margin-top: 2.4rem;
}
.syedittext ul li::before {
  content: '';
  display: block;
  width: 3rem;
  height: 3rem;
  position: absolute;
  left: 0;
  top: 0;
  background: url(../img/icon-gou-full.svg) no-repeat center / contain;
}
.swiper_btns {
  gap: 3.4rem;
  display: flex;
}
.swiper_btns.white .swiper-button-disabled {
  border-color: rgba(255, 255, 255, 0.5);
}
.swiper_btns.white .swiper-button-disabled::after {
  filter: contrast(0) brightness(2);
}
.swiper_btns.middle {
  width: 98%;
  max-width: 157.6rem;
  justify-content: space-between;
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  pointer-events: none;
  transform: translate(-50%, -50%);
}
.swiper_btns div {
  width: 7rem;
  height: 7rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  pointer-events: all;
  transition: all 0.3s;
  border: 1px solid var(--primary);
  background-color: var(--primary);
}
.swiper_btns div::after {
  content: '';
  display: block;
  width: 30%;
  height: 30%;
  transition: all 0.3s;
  filter: contrast(0) brightness(2);
  background: url(../img/arrow-line-l-b.svg) no-repeat center / contain;
}
.swiper_btns div:hover {
  border-color: var(--secondary);
  background-color: var(--secondary);
}
.swiper_btns .btn_next::after {
  transform: rotate(180deg);
}
.swiper_btns .swiper-button-disabled {
  border-color: rgba(22, 22, 22, 0.5);
  background-color: transparent;
  pointer-events: none;
}
.swiper_btns .swiper-button-disabled::after {
  filter: none;
}
.swiper_btns .swiper-button-lock {
  display: none;
}
.social {
  gap: 1rem;
  display: flex;
  flex-wrap: wrap;
}
.social .active a,
.social a:hover {
  border-color: var(--primary);
  background-color: var(--primary);
}
.social .active a::after,
.social a:hover::after {
  filter: contrast(0) brightness(2);
}
.social a {
  display: block;
  overflow: hidden;
  position: relative;
  text-indent: -999px;
  width: 4.6rem;
  height: 4.6rem;
  border-radius: 50%;
  transition: all 0.3s;
  border: 1px solid rgba(4, 4, 20, 0.15);
}
.social a::after {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  border-radius: 50%;
  transition: all 0.3s;
  background: no-repeat center / contain;
}
.social .facebook a::after {
  background-image: url(../img/social-facebook.svg);
}
.social .instagram a::after {
  background-image: url(../img/social-instagram.svg);
}
.social .youtube a::after {
  background-image: url(../img/social-youtube.svg);
}
.social .linkedin a::after {
  background-image: url(../img/social-linkedin.svg);
}
.social .twitter a::after {
  background-image: url(../img/social-twitter.svg);
}
.form form {
  gap: 2rem 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 8.235294% 7.352941% 7.352941%;
  border-radius: 1.8rem;
  background-color: #fff;
  box-shadow: 0.5rem 0.5rem 0.5rem rgba(177, 177, 177, 0.14);
}
.form span {
  width: 100%;
}
.form span.wpcf7-spinner{
  width: 24px !important;
  position: absolute;
  left: 5rem;
}
body .wpcf7 form .wpcf7-response-output{
  padding: 0;
  margin: 0;
  border: none;
}
.form input,
.form select,
.form textarea {
  width: 100%;
  height: 6rem;
  color: var(--title);
  font-size: 1.7rem;
  display: block;
  padding: 0 2rem;
  transition: all 0.3s;
  border-radius: 0.6rem;
  border: 1px solid #D6D6D6;
}
.form input::placeholder,
.form select::placeholder,
.form textarea::placeholder {
  color: #383838;
}
.form input:focus,
.form select:focus,
.form textarea:focus {
  border-color: var(--primary);
}
.form textarea {
  height: 18rem;
  padding: 1.6rem 2rem;
}
.form span:has(input[type="checkbox"]) {
  margin-top: 2rem;
}
.form input[type="checkbox"] {
  padding: 0;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 0.4rem;
  display: inline-block;
  vertical-align: top;
  position: relative;
  background: url(../img/icon-gou.svg) no-repeat center / 80%;
}
.form input[type="checkbox"]:checked {
  border-color: var(--primary);
  background-color: var(--primary);
}
.form input[type="checkbox"] ~ span {
  width: calc(100% - 3rem);
  display: inline-block;
  vertical-align: top;
  color: #383838;
  font-size: 1.7rem;
  line-height: 2.07rem;
  cursor: pointer;
  padding-left: 0.6rem;
  transform: translateY(0.3rem);
  max-width: 46.6rem;
}
.form span:has(input[type="submit"]) {
  margin-top: 2.2rem;
}
.form .btn {
  gap: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  line-height: 6.2rem;
}
.form .btn::after {
  content: '';
  display: block;
  width: 0.8rem;
  height: 1.2rem;
  transition: all 0.3s;
  transform: rotate(180deg);
  background: url(../img/arrow-l-w.svg) no-repeat center / contain;
}
.form .btn input[type="submit"] {
  display: none;
}
.form .btn:hover::after {
  transform: translateX(0.5rem) rotate(180deg);
}
.nav-links {
  gap: 4px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 1.679rem;
  font-weight: 500;
}
.nav-links .page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 5rem;
  height: 5rem;
  border-radius: 0.4rem;
  transition: all 0.3s;
}
.nav-links .dots {
  width: 1.8rem;
  text-align: left;
  justify-content: flex-start;
}
.nav-links .prev,
.nav-links .next {
  width: 4rem;
}
.nav-links .prev::after,
.nav-links .next::after {
  content: '';
  display: block;
  width: 26%;
  height: 26%;
  transition: all 0.3s;
  background: url(../img/arrow-l-g.svg) no-repeat center / contain;
}
.nav-links .prev:hover,
.nav-links .next:hover {
  background-color: transparent;
}
.nav-links .next::after {
  transform: rotate(180deg);
}
.nav-links a:hover,
.nav-links .current {
  color: #fff;
  background-color: var(--primary);
}
.nav-links a:hover::after,
.nav-links .current::after {
  filter: contrast(0) brightness(0);
}
.blog_list .active .info .btn_cir {
  transform: translate(0);
}
.blog_list a {
  display: block;
  position: relative;
}
.blog_list a:hover img {
  transform: scale(1.03);
}
.blog_list .img {
  border-radius: 1.6rem;
  padding-bottom: 67.487685%;
}
.blog_list .info .cat {
  position: absolute;
  left: 2.4rem;
  top: 2.4rem;
  z-index: 2;
  font-weight: 500;
  font-size: 1.4rem;
  border-radius: 0.9rem;
  background-color: #fff;
  padding: 1.2rem 2.5rem;
}
.blog_list .info .date {
  color: #5C5C5C;
  margin-top: 2.7rem;
}
.blog_list .info .title {
  font-weight: 600;
  font-size: 2.2rem;
  line-height: 3rem;
  margin-top: 1.3rem;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.blog_list .info .more {
  overflow: hidden;
}
.blog_list .info .btn_cir {
  margin-top: 3.6rem;
  transition: all 0.3s;
  transform: translateX(-5.6rem);
}
.product_list .active a {
  box-shadow: 0 0.6rem 0.6rem rgba(196, 203, 206, 0.4);
}
.product_list .active .info .title::after {
  width: 100%;
}
.product_list .active .more {
  color: #fff;
  background-color: var(--primary);
}
.product_list .active .more::after {
  filter: contrast(0) brightness(2);
}
.product_list a {
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.3s;
  border-radius: 1.6rem;
  border: 1px solid #E4E9ED;
  background-color: #fff;
}
.product_list a:hover img {
  transform: scale(1.03);
}
.product_list .img {
  margin: 1rem 8.333333% 0;
  --h: 89.939024%;
}
.product_list .info {
  padding: 0 8.333333% 2.8rem;
}
.product_list .info .cat {
  color: var(--text);
  font-size: 1.692rem;
}
.product_list .info .title {
  font-size: 2.418rem;
  font-weight: 600;
  margin-top: 0.8rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #E6EBED;
  position: relative;
}
.product_list .info .title::after {
  content: '';
  display: block;
  width: 0;
  height: 2px;
  position: absolute;
  left: 0;
  bottom: -1px;
  transition: all 0.3s;
  background-color: var(--primary);
}
.product_list .info .intro {
  color: var(--text);
  font-size: 1.813rem;
  margin-top: 0.4rem;
}
.product_list .info .intro li {
  position: relative;
  padding: 1.5rem 0 1rem 2.4rem;
}
.product_list .info .intro li::before {
  content: '';
  display: block;
  width: 1.2rem;
  height: 0.8rem;
  position: absolute;
  left: 0;
  top: 1.3em;
  background: url(../img/icon-gou-t.svg) no-repeat center / contain;
}
.product_list .info .intro li + li {
  border-top: 1px solid #E6EBED;
}
.product_list .more {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr auto;
  font-size: 1.813rem;
  font-weight: 500;
  transition: all 0.3s;
  background-color: #EBEDEC;
  border-radius: 0 0 1.6rem 1.6rem;
  width: calc(100% + 2px);
  margin: 0 -1px -1px;
  padding: 2.1rem 8.333333%;
  position: relative;
  z-index: 2;
  margin-top: auto;
}
.product_list .more::after {
  content: '';
  display: block;
  width: 1.4rem;
  height: 1.2rem;
  transition: all 0.3s;
  background: url(../img/arrow-line-r-b2.svg) no-repeat center / contain;
}
header {
  position: sticky;
  top: -10.8rem;
  left: 0;
  z-index: 996;
  width: 100%;
  transition: all 0.3s;
  background-color: #fff;
  box-shadow: 0 0 1.5rem rgba(0, 0, 0, 0.1);
}
header.sticky {
  top: 0;
}
header .top {
  padding: 1rem 0 1px;
}
header .top ul {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
header .top li {
  display: flex;
  align-items: center;
}
header .top li + li::before {
  content: '';
  display: block;
  width: 1px;
  height: 1.8rem;
  margin: 0 2.2rem;
  background-color: rgba(29, 29, 31, 0.16);
}
header .top a {
  gap: 0.7rem;
  display: grid;
  align-items: center;
  grid-template-columns: auto 1fr;
  font-size: 1.5rem;
  transition: all 0.3s;
}
header .top a::before {
  content: '';
  display: block;
  width: 1.4rem;
  height: 1.4rem;
  background: no-repeat center / contain;
}
header .top a:hover {
  color: var(--primary);
}
header .top .email a::before {
  width: 1.6rem;
  margin-top: 0.4rem;
  margin-right: 0.4rem;
  background-image: url(../img/icon-email1.svg);
}
header .top .phone a::before {
  background-image: url(../img/icon-phone.svg);
}
header .bot {
  gap: 5rem;
}
header .logo {
  display: block;
  position: relative;
  margin-right: auto;
  transform: translateY(-1rem);
}
header .logo img {
  display: block;
  width: auto;
  height: 5.8rem;
}
header .logo p {
  width: 1px;
  height: 1px;
  overflow: hidden;
  position: absolute;
  clip: rect(1px, 1px, 1px, 1px);
}
header nav .menu {
  gap: 5.8rem;
  display: flex;
}
header nav .menu > li {
  position: relative;
}
header nav .menu > li > a {
  display: block;
  font-weight: 500;
  font-size: 1.8rem;
  line-height: 7.8rem;
  transition: all 0.3s;
}
header nav .menu > li.current-menu-item > a,
header nav .menu > li.current-menu-parent > a,
header nav .menu > li:hover > a {
  color: var(--primary);
}
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;
  border-radius: 1rem;
  background-color: #fff;
  padding: 1.6rem 2.4rem 0;
  box-shadow: 0 0 1.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;
  position: relative;
}
header nav .sub-menu > li > a:hover {
  color: var(--primary);
}
header .btns {
  gap: 3rem;
  display: flex;
  align-items: center;
}
header .btn_search {
  width: 19px;
  height: 19px;
  cursor: pointer;
  background: url(../img/icon-search.svg) no-repeat center / contain;
}
header .btn_lang {
  width: 20px;
  height: 20px;
  cursor: pointer;
  background: url(../img/icon-lang.svg) no-repeat center / contain;
}
header .btn_menu {
  display: none;
}
footer {
  overflow: hidden;
}
footer .lt {
  width: 27.34375%;
}
footer .rt {
  flex: 1;
  padding-left: 8.75%;
}
footer .top {
  padding: 7rem 0 3.8rem;
}
footer .logo {
  display: block;
  position: relative;
  max-width: 25.6rem;
}
footer .logo img {
  display: block;
  width: 100%;
  height: auto;
}
footer .logo p {
  width: 1px;
  height: 1px;
  overflow: hidden;
  position: absolute;
  clip: rect(1px, 1px, 1px, 1px);
}
footer .intro {
  color: var(--text);
  font-weight: 500;
  font-size: 1.8rem;
  line-height: 3.2rem;
}
footer .main {
  position: relative;
  min-height: 50.4rem;
}
footer .main::before,
footer .main::after {
  content: '';
  display: block;
  width: 100vw;
  height: 1px;
  background-color: #EAEAEA;
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
}
footer .main::after {
  top: unset;
  bottom: 0;
}
footer .main .lt,
footer .main .rt {
  padding-top: 5.4rem;
  padding-bottom: 5.4rem;
}
footer .main .lt {
  padding-right: 2%;
  border-right: 1px solid #EAEAEA;
}
footer .main .rt {
  gap: 5rem 3rem;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
}
footer strong {
  display: block;
  font-weight: 500;
  font-size: 1.8rem;
  line-height: 3.2rem;
  text-transform: uppercase;
  margin-bottom: 3rem;
}
footer .cers {
  gap: 3.4rem;
  display: flex;
  flex-wrap: wrap;
}
footer .cers li {
  width: 5.6rem;
  height: 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
footer .cers li img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
footer .foot_nav li + li {
  margin-top: 1.8rem;
}
footer .foot_nav a {
  vertical-align: top;
  color: var(--text);
  font-size: 1.8rem;
  transition: all 0.3s;
}
footer .foot_nav a:hover {
  color: var(--primary);
}
footer .foot_contact {
  width: 27.5rem;
}
footer .foot_contact .contact li {
  position: relative;
  padding-left: 4.2rem;
}
footer .foot_contact .contact li::before {
  content: '';
  display: block;
  width: 1.6rem;
  height: 1.6rem;
  position: absolute;
  left: 0;
  top: 0.4rem;
  background: no-repeat center / contain;
}
footer .foot_contact .contact li + li {
  margin-top: 1.5rem;
}
footer .foot_contact .contact .phone::before {
  background-image: url(../img/icon-phone.svg);
}
footer .foot_contact .contact .email::before {
  width: 2rem;
  height: 2rem;
  background-image: url(../img/icon-email2.svg);
}
footer .foot_contact .contact a {
  vertical-align: top;
  font-weight: 500;
  font-size: 1.8rem;
  line-height: 2.7rem;
  transition: all 0.3s;
}
footer .foot_contact .contact a:hover {
  color: var(--primary);
}
footer .foot_contact .social {
  margin-top: 2.8rem;
}
footer .bot {
  font-size: 1.4rem;
  padding: 2.3rem 0 2rem;
}
footer .bot ul {
  gap: 1rem 3.2rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
footer .bot a {
  display: block;
  transition: all 0.3s;
  color: rgba(12, 12, 12, 0.68);
}
footer .bot a:hover {
  color: var(--primary);
}
.footer_contact {
  background: url(../img/cta.jpg) no-repeat center / cover;
}
.footer_contact .flex {
  padding: 4rem 0;
  min-height: 40rem;
}
.footer_contact .head {
  color: #fff;
  flex: 1;
  max-width: 61rem;
}
.footer_contact .head p {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 300;
  line-height: 2.8rem;
  max-width: 56.5rem;
  margin-top: 1.6rem;
}
.footer_contact .btn {
  min-width: 20rem;
  margin-top: 2rem;
}
.section_technology {
  color: #fff;
  padding: 12.2rem 0;
}
.section_technology .head {
  max-width: 94rem;
}
.section_technology .section_technology_swiper {
  margin: 4.6rem auto 0;
  max-width: 137.8rem;
  width: calc(100% - 40px);
  border-radius: 2rem;
  overflow: hidden;
  background-color: #233651;
  border: 1px solid #304763;
  padding: 4.6rem 4.8rem 5.4rem 7.2rem;
}
.section_technology .section_technology_swiper .swiper-slide {
  gap: 3rem;
  display: flex;
  justify-content: space-between;
}
.section_technology .section_technology_swiper .syedittext {
  flex: 1;
  max-width: 48rem;
  padding: 6.847134% 0 10rem;
}
.section_technology .section_technology_swiper .syedittext h3 {
  font-weight: 500;
  font-size: 3.8rem;
  line-height: 6.2rem;
}
.section_technology .section_technology_swiper .syedittext p {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 300;
  font-size: 1.8rem;
  line-height: 3.2rem;
  margin-top: 2.2rem;
}
.section_technology .section_technology_swiper .img {
  width: 50.955414%;
  --h: 71.875%;
  border-radius: 2rem;
  align-self: center;
}
.section_technology .section_technology_swiper .img:hover img {
  transform: scale(1.03);
}
.section_technology div.swiper-pagination {
  position: relative;
  z-index: 2;
  top: unset;
  bottom: unset;
  width: 36.305732%;
  gap: 2rem;
  display: flex;
  transform: translateY(3rem);
}
.section_technology div.swiper-pagination .swiper-pagination-bullet {
  flex: 1;
  height: 2px;
  margin: 0;
  opacity: 1;
  border-radius: 0;
  background-color: rgba(255, 255, 255, 0.2);
}
.section_technology div.swiper-pagination .swiper-pagination-bullet::after {
  content: '';
  display: block;
  width: 0;
  height: 100%;
  background-color: #fff;
}
.section_technology div.swiper-pagination .swiper-pagination-bullet-active::after {
  width: 100%;
  transition: all 3.3s linear;
}
.section_technology div.swiper-pagination .swiper-pagination-bullet-active:first-child::after {
  transition: all 3s linear;
}
.section_technology div.swiper-pagination .swiper-pagination-bullet-active:first-child.active::after {
  transition: all 3.3s linear;
}
.section_technology .swiper_btns {
  position: relative;
  z-index: 2;
  margin-top: -8.5rem;
  width: max-content;
}
.section_advantages {
  overflow: hidden;
  padding: 14.5rem 0 16.6rem;
  background-color: #F7F8FB;
}
.section_advantages .head {
  flex: 1;
  max-width: 94rem;
}
.section_advantages .section_advantages_swiper {
  margin-top: 8.2rem;
}
.section_advantages .section_advantages_swiper .swiper-slide {
  max-width: 37.4rem;
}
.section_advantages .section_advantages_swiper .active .item {
  border-color: var(--primary);
}
.section_advantages .section_advantages_swiper .active .img {
  opacity: 0;
  transform: translateY(-2rem);
}
.section_advantages .section_advantages_swiper .item {
  height: 100%;
  display: block;
  border-radius: 2.8rem;
  transition: all 0.3s;
  border: 2px solid #fff;
  background-color: #fff;
  padding: 3.4rem 3.8rem 4.8rem;
}
.section_advantages .section_advantages_swiper .img {
  width: 10rem;
  height: 10rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--secondary);
  transition: all 0.3s;
}
.section_advantages .section_advantages_swiper .img img {
  width: 50%;
  height: 50%;
  filter: contrast(0) brightness(2);
}
.section_advantages .section_advantages_swiper .syedittext {
  overflow: auto;
  height: 27.6rem;
  margin-top: -5.4rem;
  display: flex;
  justify-content: flex-end;
  flex-direction: column;
}
.section_advantages .section_advantages_swiper .syedittext h3 {
  font-weight: 600;
  font-size: 2.6rem;
  line-height: 3.4rem;
}
.section_advantages .section_advantages_swiper .syedittext p {
  color: #6D7077;
  font-size: 1.8rem;
  line-height: 3.2rem;
  padding: 2.4rem 0;
  display: none;
}
.section_blog {
  padding: 13.6rem 0 9rem;
}
.section_blog .head {
  margin-bottom: 0.8rem;
}
.section_blog .btn_more {
  min-width: 22.7rem;
}
.section_blog .swiper_box {
  margin-top: 5rem;
}
.section_blog .section_blog_swiper {
  overflow: hidden;
}

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;
}

.overlay_lang{
  display: block;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.8);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s;
}
.overlay_lang.active{
  opacity: 1;
  pointer-events: all;
}

.lang_popup{
  padding: 70px 53px;
  border-radius: 3px;
  background-color: white;
  /* position: absolute;
  left: calc(100% + 20px);
  bottom: -15px; */
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 900px;
  z-index: 1005;
  display: none;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}
.footer_sidebar .lang{
  position: relative;
}
.lang_popup ul + strong{
  margin-top: 2rem;
}
.lang_popup strong{
  display: block;
  font-size: 28px;
  margin-bottom: 30px;
  text-align: left;
}
.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: contain;
}
.lang_popup li{
  padding: 15px 24px;
  border-radius: 4px;
  border: 1px solid #e5e5e5;
  display: flex;
  transition: all 0.3s;
  align-items: center;
  cursor: pointer;
  
}
.lang_popup li:hover{
  border-color: var(--theme_color);
}

.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 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{
  border-color: var(--theme_color);
}
.lang_popup li.active .img{
  border-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);
}
.lang_popup ul.lang-list{
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1rem;
}

.lang_popup .gtranslate_wrapper{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.lang_popup .gtranslate_wrapper a{
  padding: 15px 24px;
  border-radius: 4px;
  border: 1px solid #e5e5e5;
  display: flex;
  transition: all 0.3s;
  align-items: center;
  cursor: pointer;
}
.lang_popup .gtranslate_wrapper a.gt-current-lang{
  border-color: var(--theme_color);
}
.lang_popup .gtranslate_wrapper a img{
  width: 41px;
  height: auto;
  /* border-radius: 50%; */
  overflow: hidden;
  margin-right: 19px;
  border: 1px solid transparent;
  display: inline-block;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}
.lang_popup .gtranslate_wrapper a span{
  font-size: 17px !important;
  font-weight: 600;
  display: block;
  margin-bottom: 0rem;
}
.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: '';
}


@media screen and (min-width: 769px) and (max-width: 1300px) {
    .about_market .content > .flex{
      flex-direction: column ;
    }
    .about_market .head{
      flex: unset !important;
      width: 100%;
      max-width: 100% !important;
    }
    .about_market .img{
      width: 100% !important;
      margin-right: 0 !important;
    }
}

@media screen and (min-width: 769px) and (max-width: 1024px) {
  .content {
    padding: 0 4rem;
  }
  .swiper_content {
    padding: 1.5rem 4rem;
  }
  .swiper_btns {
    gap: 3rem;
  }
  .swiper_btns div {
    width: 6rem;
    height: 6rem;
  }
}
@media screen and (max-width: 896px) {
  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 .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(--secondary);
  }
  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;
    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 .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: 769px) {
  ul::-webkit-scrollbar,
  div::-webkit-scrollbar {
    width: 4px;
  }
  ul::-webkit-scrollbar-thumb,
  div::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-color: #8b8b8b;
  }
}
@media screen and (max-width: 768px) {
  html {
    font-size: 10px !important;
  }
  body {
    font-size: 1.4rem;
  }
  .content {
    padding: 0 30px;
  }
  .swiper_content {
    padding: 10px 20px;
  }
  .only_mobile {
    display: block;
  }
  body.fixed {
    padding-right: 0;
  }
  .gap {
    gap: 20px;
  }
  .head.banner .subtitle {
    font-size: 16px;
    margin-bottom: 8px;
  }
  .head.banner p {
    font-size: 16px;
    line-height: 1.5;
    padding-top: 12px;
    margin-top: 12px;
  }
  .head.banner .btn {
    margin-top: 30px;
  }
  .head .subtitle {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 8px;
    letter-spacing: 1px;
  }
  .head h1,
  .head .title {
    font-size: 25px;
    line-height: 1.3;
  }
  .head h2 {
    font-size: 22px;
    line-height: 1.3;
  }
  .head p {
    font-size: 14px;
    line-height: 1.5;
    margin-top: 12px;
  }
  .btn {
    font-size: 14px;
    line-height: 42px;
    min-width: 120px;
    padding: 0 20px;
  }
  .btn_cir {
    gap: 8px;
    font-size: 14px;
  }
  .btn_cir::before {
    width: 30px;
    height: 30px;
  }
  .btn_more {
    font-size: 14px;
    line-height: 40px;
    padding: 0 20px;
  }
  .swiper_btns {
    gap: 20px;
  }
  .swiper_btns div {
    width: 42px;
    height: 42px;
  }
  .blog_list .info .cat {
    left: 15px;
    top: 15px;
    font-size: 12px;
    padding: 8px 12px;
    border-radius: 4px;
  }
  .blog_list .info .date {
    margin-top: 15px;
  }
  .blog_list .info .title {
    font-size: 16px;
    line-height: 1.3;
    margin-top: 8px;
  }
  .blog_list .info .btn_cir {
    margin-top: 15px;
    transform: translate(0);
  }
  header .logo img {
    height: 50px;
  }
  footer .top {
    padding: 50px 0 30px;
  }
  footer .intro {
    font-size: 16px;
    line-height: 1.5;
  }
  footer .rt {
    padding-left: 30px;
  }
  footer .logo {
    max-width: 160px;
  }
  footer .main {
    min-height: unset;
  }
  footer .main .lt,
  footer .main .rt {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  footer .main .rt {
    gap: 30px 20px;
  }
  footer strong {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 15px;
  }
  footer .cers {
    gap: 15px;
  }
  footer .cers li {
    width: 40px;
    height: 40px;
  }
  footer .foot_nav {
    min-width: 40%;
  }
  footer .foot_nav li + li {
    margin-top: 14px;
  }
  footer .foot_nav a {
    font-size: 14px;
  }
  footer .bot ul {
    gap: 15px;
  }
  .footer_contact .flex {
    min-height: unset;
  }
  .footer_contact .head {
    max-width: 400px;
  }
  .footer_contact .head p {
    font-size: 14px;
    margin-top: 12px;
    line-height: 1.5;
  }
  .footer_contact .btn {
    min-width: 120px;
  }
  .section_technology {
    padding: 50px 0;
  }
  .section_technology .section_technology_swiper {
    margin-top: 30px;
    padding: 20px;
    border-radius: 15px;
  }
  .section_technology .section_technology_swiper .syedittext {
    padding: 30px 0;
  }
  .section_technology .section_technology_swiper .syedittext h3 {
    font-size: 18px;
    line-height: 1.3;
  }
  .section_technology .section_technology_swiper .syedittext p {
    font-size: 14px;
    line-height: 1.5;
    margin-top: 12px;
  }
  .section_technology .section_technology_swiper .img {
    border-radius: 15px;
  }
  .section_technology div.swiper-pagination {
    transform: translate(0);
    margin-bottom: 15px;
  }
  .section_technology .swiper_btns {
    margin-top: -42px;
  }
  .section_advantages {
    padding: 50px 0;
  }
  .section_advantages .section_advantages_swiper {
    margin-top: 30px;
  }
  .section_advantages .section_advantages_swiper .swiper-slide {
    max-width: 260px;
  }
  .section_advantages .section_advantages_swiper .item,
  .section_advantages .section_advantages_swiper .active .item {
    padding: 20px;
    border-radius: 15px;
  }
  .section_advantages .section_advantages_swiper .item .img,
  .section_advantages .section_advantages_swiper .active .item .img {
    width: 50px;
    height: 50px;
    opacity: 1;
    transform: translate(0);
  }
  .section_advantages .section_advantages_swiper .item .syedittext,
  .section_advantages .section_advantages_swiper .active .item .syedittext {
    height: auto;
    margin-top: 20px;
  }
  .section_advantages .section_advantages_swiper .item .syedittext h3,
  .section_advantages .section_advantages_swiper .active .item .syedittext h3 {
    font-size: 18px;
    line-height: 1.3;
  }
  .section_advantages .section_advantages_swiper .item .syedittext p,
  .section_advantages .section_advantages_swiper .active .item .syedittext p {
    display: block;
    font-size: 14px;
    line-height: 1.5;
    padding: 12px 0 0;
    display: block !important;
  }
  .section_blog {
    padding: 50px 0;
  }
  .section_blog .head {
    margin: 0;
  }
  .section_blog .btn_more {
    min-width: 120px;
  }
  .section_blog .swiper_box {
    margin-top: 30px;
  }

  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/search.svg) no-repeat center;
      background-size: 1.4rem;
      display: inline-block;
      vertical-align: middle;
      transition: 0.3s all ease;
      cursor: pointer;
      border: none;
      outline: none;
      filter: brightness(0);
  }

  div.search-block div.content {
      position: unset;
  }

  div.search-block .searchform input[type='text'] {
      font-size: 20px;
      height: 70px;
  }

  .wd-action-btn {
      width: 25px;
      height: 25px;
      top: unset;
      right: 2rem;
      bottom: 2rem;
  }

  div.search-block {
      height: 100%;
      width: 100%;
      top: 120%;
      z-index: 9999;
      bottom: unset;
  }

  div.search-block.active {
    top: 0%;
    height: 100%;
    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;
  }
  .lang_popup{
    width: 100%;
    height: 80vh;
    padding: 1.5rem;
  }
  .lang_popup .gtranslate_wrapper{
    grid-template-columns: repeat(2,1fr);
    gap: 1rem;
  }
  .lang_popup .gtranslate_wrapper a{
    padding: 1rem;
  }
  .lang_popup .gtranslate_wrapper a img{
    width: 30px;
  }
  .lang_popup .gtranslate_wrapper a span{
    font-size: 14px !important;
  }
  .lang_popup strong{
    font-size: 20px;
  }
  .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: '';
  }
}
@media screen and (max-width: 576px) {
  .content {
    padding: 0 20px;
  }
  header .top {
    display: none;
  }
  header .logo {
    transform: translate(0);
  }
  header .logo img {
    height: 36px;
  }
  header .btns {
    min-height: 64px;
  }
  footer .top {
    display: block;
  }
  footer .lt,
  footer .rt {
    width: 100%;
  }
  footer .rt {
    padding: 0;
  }
  footer .logo {
    width: 100%;
  }
  footer .intro {
    margin-top: 15px;
  }
  footer .main {
    display: block;
  }
  footer .main .lt {
    padding-right: 0;
    padding-bottom: 0;
    border: none;
  }
  footer .main .rt {
    display: block;
  }
  footer strong {
    font-size: 18px;
  }
  footer .foot_nav strong {
    font-size: 16px;
    line-height: 46px;
    border: 1px solid rgba(22, 22, 22, 0.35);
    padding: 0 22px;
    position: relative;
    margin-bottom: 16px;
    border-radius: 6px;
  }
  footer .foot_nav strong::after {
    content: '';
    display: block;
    width: 12px;
    height: 12px;
    background: url(../img/icon-select.svg) no-repeat center / contain;
    position: absolute;
    right: 22px;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s;
  }
  footer .foot_nav.active strong::after {
    transform: translateY(-50%) rotate(180deg);
  }
  footer .foot_nav > div {
    display: none;
    padding: 0 20px 20px;
  }
  footer .foot_contact {
    width: 100%;
    padding-top: 10px;
  }
  footer .bot {
    gap: 20px;
    padding: 20px 0;
    align-items: flex-start;
    flex-direction: column-reverse;
  }
  .footer_contact .flex {
    display: block;
  }
  .section_technology .section_technology_swiper .swiper-slide {
    gap: 20px;
    flex-direction: column-reverse;
  }
  .section_technology .section_technology_swiper .syedittext {
    padding: 0;
  }
  .section_technology .section_technology_swiper .img {
    width: 100%;
  }
  .section_technology div.swiper-pagination {
    width: 100%;
  }
  .section_technology .swiper_btns {
    width: 100%;
    margin-top: 20px;
  }
  .section_blog {
    overflow: hidden;
  }
  .section_blog .section_blog_swiper {
    overflow: visible;
  }
  .section_blog .swiper_btns {
    display: none;
  }
  .product_list .info .cat{
    font-size: 1.3rem;
  }
  .product_list .info .title{
    font-size: 1.5rem;
  }
  .product_list .info .intro li{
    font-size: 1.4rem;
    padding: 0.7rem 0;
  }
  .product_list .info .intro li:before{
    display: none;
  }
  .product_list .more{
    display: none;
  }
}


@media screen and (max-width: 376px) {
  .products_banner .flex{
    flex-direction: column;
  }
}