* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --primary: #6ca425;
  --secondary: #c2cf03;
  --title: #333;
  --text: #555;
}
html {
  scroll-behavior: smooth;
  font-size: clamp(7.5px, 0.520834vw, 14px);
}
ul {
  list-style: none;
}
a {
  color: inherit;
  cursor: pointer;
  font-size: inherit;
  text-decoration: none;
}
i {
  font-style: normal;
}
.content {
  max-width: 140rem;
  margin: 0 auto;
  position: relative;
}
.content .content {
  padding: 0;
}
.swiper_box {
  position: relative;
}
.swiper_content {
  max-width: 143rem;
  margin: 0 auto;
  position: relative;
  padding: 1.5rem;
  overflow: hidden;
}
button,
input,
textarea {
  outline: none;
  border: none;
  font-family: unset;
  color: var(--title);
}
input::placeholder {
  color: #858585;
}
input[type="submit"],
button {
  cursor: pointer;
}
textarea {
  resize: none;
}
input[type="checkbox"] {
  cursor: pointer;
  appearance: none;
}
input[type="number"] {
  -moz-appearance: textfield;
}
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
select {
  cursor: pointer;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  font-family: unset;
  color: var(--title);
}
.flex {
  display: flex;
}
.wrap {
  flex-wrap: wrap;
}
.flex1 {
  flex: 1;
}
.flex2 {
  flex: 2;
}
.flex3 {
  flex: 3;
}
.between {
  justify-content: space-between;
}
.center {
  text-align: center;
}
.flex_start {
  justify-content: flex-start;
}
.flex_center {
  justify-content: center;
}
.flex_end {
  justify-content: flex-end;
}
.flex_top {
  align-items: flex-start;
}
.flex_middle {
  align-items: center;
}
.flex_bottom {
  align-items: flex-end;
}
.aligncenter {
  margin-left: auto;
  margin-right: auto;
}
body {
  line-height: 1.5;
  font-weight: 600;
  font-size: 1.6rem;
  letter-spacing: -0.1px;
  color: var(--title);
  font-family: 'Montserrat', sans-serif;
}
body.fixed {
  overflow: hidden;
  padding-right: 0.8rem;
}
.only_mobile {
  display: none;
}
.gap {
  gap: 3rem;
}
li.swiper-slide {
  height: auto;
}
.grecaptcha-badge {
  visibility: hidden;
}
#fullscreen-loader {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999999;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
#fullscreen-loader::after {
  content: '';
  display: block;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 8px solid var(--primary);
  animation: l20-1 0.8s infinite linear alternate, l20-2 1.6s infinite linear;
}
@keyframes l20-1 {
  0% {
    clip-path: polygon(50% 50%, 0 0, 50% 0%, 50% 0%, 50% 0%, 50% 0%, 50% 0%);
  }
  12.5% {
    clip-path: polygon(50% 50%, 0 0, 50% 0%, 100% 0%, 100% 0%, 100% 0%, 100% 0%);
  }
  25% {
    clip-path: polygon(50% 50%, 0 0, 50% 0%, 100% 0%, 100% 100%, 100% 100%, 100% 100%);
  }
  50% {
    clip-path: polygon(50% 50%, 0 0, 50% 0%, 100% 0%, 100% 100%, 50% 100%, 0% 100%);
  }
  62.5% {
    clip-path: polygon(50% 50%, 100% 0, 100% 0%, 100% 0%, 100% 100%, 50% 100%, 0% 100%);
  }
  75% {
    clip-path: polygon(50% 50%, 100% 100%, 100% 100%, 100% 100%, 100% 100%, 50% 100%, 0% 100%);
  }
  100% {
    clip-path: polygon(50% 50%, 50% 100%, 50% 100%, 50% 100%, 50% 100%, 50% 100%, 0% 100%);
  }
}
@keyframes l20-2 {
  0% {
    transform: scaleY(1) rotate(0deg);
  }
  49.99% {
    transform: scaleY(1) rotate(135deg);
  }
  50% {
    transform: scaleY(-1) rotate(0deg);
  }
  100% {
    transform: scaleY(-1) rotate(-135deg);
  }
}
div[data-wpr-lazyrender] {
  content-visibility: unset;
}
.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;
}
.btn {
  display: inline-block;
  vertical-align: top;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 5rem;
  min-width: 26rem;
  padding: 0 2rem;
  background-size: 200%;
  background-image: linear-gradient(to right, var(--primary), var(--primary), var(--secondary));
}
.btn:hover {
  background-position: right;
}
.head {
  font-size: 2rem;
  font-weight: 500;
}
.head h1,
.head h2 {
  overflow: hidden;
  opacity: 1 !important;
  transform: translate(0) !important;
}
.head h2 {
  font-size: 4.4rem;
  font-weight: 700;
}
.head p {
  color: var(--text);
}
header {
  position: sticky;
  z-index: 996;
  top: 0;
  transition: all 0.4s;
  background-color: #fff;
}
header.sticky {
  top: -6rem;
}
header .header_notice {
  display: none;
  position: relative;
  background-image: linear-gradient(to right, #deca67, #32b2a5);
}
header .header_notice.active {
  display: block;
}
header .header_notice .close {
  width: 5.5rem;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
header .header_notice .close::after {
  content: '';
  display: block;
  width: 1.4rem;
  height: 1.4rem;
  transition: all 0.3s;
  background: url(../img/close.png) no-repeat center / contain;
}
header .header_notice .close:hover::after {
  transform: rotate(180deg);
}
header .header_notice a {
  display: block;
  text-align: center;
  color: #fff;
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 1.3;
  padding: 1rem 6rem;
  height: 6rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
header .header_notice a em {
  font-style: normal;
  text-decoration: underline;
}
header .header_notice a p {
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
header .header_bar {
  color: #fff;
  background-color: #1c262f;
}
header .header_bar .flex {
  gap: 6rem;
}
header .header_bar .social {
  gap: 4px;
  display: flex;
}
header .header_bar .social a {
  width: 4rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-indent: -999px;
  transition: all 0.3s;
}
header .header_bar .social a:hover {
  background-color: #fff;
}
header .header_bar .social a:hover::after {
  filter: none;
}
header .header_bar .social a::after {
  content: '';
  display: block;
  width: 50%;
  height: 50%;
  transition: all 0.3s;
  filter: contrast(0) brightness(2);
  background: no-repeat center / contain;
}
header .header_bar .social .linkedin a::after {
  background-image: url(../img/social-linkedin.svg);
}
header .header_bar .social .facebook a::after {
  background-image: url(../img/social-facebook.svg);
}
header .header_bar .social .twitter a::after {
  background-image: url(../img/social-twitter.svg);
}
header .header_bar .social .youtube a::after {
  background-image: url(../img/social-youtube.svg);
}
header .header_bar .header_search {
  flex: 1;
  max-width: 50rem;
  margin-left: auto;
}
header .header_bar .header_search form {
  border-radius: 4px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr auto;
  background-color: #fff;
}
header .header_bar .header_search input[type="text"] {
  width: 100%;
  display: block;
  padding: 0 1rem;
  font-size: 1.4rem;
  font-weight: 500;
}
header .header_bar .header_search input[type="submit"] {
  width: 3rem;
  height: 3rem;
  display: block;
  overflow: hidden;
  text-indent: -999px;
  background: url(../img/search.svg) no-repeat center / 2rem;
}
header .header_bar .contact {
  gap: 6rem;
  display: flex;
  align-items: center;
  font-size: 12px;
}
header .header_bar .contact a {
  gap: 1rem;
  display: flex;
  align-items: center;
  transition: all 0.3s;
}
header .header_bar .contact a:hover {
  color: var(--primary);
}
header .header_bar .contact .email a::before {
  content: '';
  display: block;
  width: 1.8rem;
  height: 1.8rem;
  background: url(../img/email.png) no-repeat center / contain;
}
header .header_bar .language {
  position: relative;
  z-index: 2;
  font-size: 1.4rem;
}
header .header_bar .language:hover .lang_popup {
  opacity: 1;
  pointer-events: all;
}
header .header_bar .language img {
  display: block;
  width: 3.4rem;
  height: 2rem;
  object-fit: cover;
  margin-right: 1rem;
}
header .header_bar .language .btn_lang {
  color: var(--primary);
  cursor: pointer;
  display: flex;
  align-items: center;
  min-height: 4rem;
}
header .header_bar .language .btn_lang::before {
  content: '';
  display: block;
  width: 2rem;
  height: 2rem;
  margin-right: 1rem;
  background: url(../img/lang.png) no-repeat center / contain;
}
header .header_bar .language .btn_lang::after {
  content: '';
  display: block;
  width: 1rem;
  height: 1rem;
  margin: 0 1rem 0 0.4rem;
  background: url(../img/down.png) no-repeat center / contain;
}
header .header_bar .language .lang_popup {
  position: absolute;
  top: 100%;
  left: 0;
  padding: 1rem;
  transition: all 0.5s;
  background-color: #fff;
  box-shadow: 0 2px 3px #999;
  opacity: 0;
  pointer-events: none;
}
header .header_bar .language .lang_popup .item {
  color: #333;
  cursor: pointer;
  padding: 0.6rem 0 0.6rem 1.9rem;
  display: flex;
  align-items: center;
  white-space: nowrap;
  position: relative;
  transition: all 0.3s;
}
header .header_bar .language .lang_popup .item:hover {
  color: var(--primary);
}
header .header_bar .language .lang_popup .item:hover::before {
  border-left-color: var(--primary);
}
header .header_bar .language .lang_popup .item::before {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  transition: all 0.3s;
  transform: translateY(-50%);
  border-top: 0.5rem solid transparent;
  border-left: 0.8rem solid #666;
  border-bottom: 0.5rem solid transparent;
}
header .header_main .logo {
  display: block;
  position: relative;
}
header .header_main .logo img {
  display: block;
  width: auto;
  height: 4rem;
}
header .header_main .logo p {
  width: 1px;
  height: 1px;
  overflow: hidden;
  position: absolute;
  clip: rect(1px, 1px, 1px, 1px);
}
header .header_main .right {
  display: flex;
  align-items: center;
}
header .header_main nav .menu {
  display: flex;
}
header .header_main nav .menu > li {
  padding: 0 3rem;
  position: relative;
}
header .header_main nav .menu > li::after {
  content: '';
  display: block;
  width: 0;
  height: 3px;
  transition: all 0.5s;
  background-color: var(--primary);
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
}
header .header_main nav .menu > li > a {
  display: block;
  line-height: 10rem;
  font-weight: 500;
  letter-spacing: -0.15px;
  transition: all 0.3s;
}
header .header_main nav .menu > li.current-menu-item::after,
header .header_main nav .menu > li.current-menu-parent::after,
header .header_main nav .menu > li:hover::after {
  width: 6rem;
}
header .header_main nav .menu > li.current-menu-item > a,
header .header_main nav .menu > li.current-menu-parent > a,
header .header_main nav .menu > li:hover > a {
  color: var(--primary);
}
header .header_main nav .menu > li:hover > .sub-menu {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-10%);
}
header .header_main nav .sub-menu {
  position: absolute;
  left: 10%;
  top: 100%;
  opacity: 0;
  pointer-events: none;
  transition: all 0.5s;
  transform: translate(-10%, -1rem);
  background-color: #fff;
  box-shadow: inset 0px 1px 0px 0px #e5e5e5;
  padding: 1.5rem 1rem;
}
header .header_main nav .sub-menu > li > a {
  display: block;
  white-space: nowrap;
  padding: 0.5rem 1.5rem;
  line-height: 2.6rem;
  font-size: 1.4rem;
  transition: all 0.3s;
}
header .header_main nav .sub-menu > li > .sub-menu{
  left: calc(100% + 2rem);
  top: 0;
  opacity: 0;
  pointer-events: none;
  box-sizing: 0 0 15px rgba(0,0,0,0.1);
}

header .header_main nav .sub-menu > li:hover > .sub-menu{
  left: 100%;
  top: 0;
  opacity: 1;
  pointer-events: all;
}
header .header_main nav .sub-menu > li > a:hover {
  color: var(--primary);
}
header .header_main .btn_contact {
  color: #fff;
  font-size: 1.4rem;
  text-align: center;
  min-height: 10rem;
  min-width: 18rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 2px;
  margin-left: 3rem;
  transition: all 0.3s;
  background-size: 200%;
  background-image: linear-gradient(to right, var(--primary), var(--primary), var(--secondary));
}
header .header_main .btn_contact:hover {
  background-position: right;
}
header .header_main .btn_contact span {
  font-size: 1.2rem;
}
footer {
  color: #fff;
  padding: 5rem 0 6rem;
  background-color: #0a141d;
}
footer .flex {
  gap: 5rem 3rem;
}
footer .intro .logo {
  display: block;
  position: relative;
  max-width: 18.5rem;
}
footer .intro .logo img {
  display: block;
  width: 100%;
  height: auto;
}
footer .intro .logo p {
  width: 1px;
  height: 1px;
  overflow: hidden;
  position: absolute;
  clip: rect(1px, 1px, 1px, 1px);
}
footer .intro .title {
  margin-top: 5rem;
  font-size: 2rem;
  font-weight: 700;
}
footer .intro .social {
  gap: 2rem 3rem;
  display: flex;
  margin-top: 2rem;
}
footer .intro .social a {
  width: 2.4rem;
  height: 2.4rem;
  display: block;
  overflow: hidden;
  text-indent: -999px;
  transition: all 0.3s;
  filter: contrast(0) brightness(2);
  background: no-repeat center / contain;
}
footer .intro .social a:hover {
  filter: none;
}
footer .intro .social .linkedin a {
  background-image: url(../img/social-linkedin.svg);
}
footer .intro .social .facebook a {
  background-image: url(../img/social-facebook.svg);
}
footer .intro .social .twitter a {
  background-image: url(../img/social-twitter.svg);
}
footer .intro .social .youtube a {
  background-image: url(../img/social-youtube.svg);
}
footer .intro .copyright {
  font-size: 2rem;
  font-weight: 700;
  margin-top: 2rem;
}
footer .intro .copyright span,
footer .intro .copyright a {
  color: #ccc;
  margin-right: 5px;
}
footer .intro .copyright a {
  transition: all 0.3s;
}
footer .intro .copyright a:hover {
  color: var(--primary);
}
footer .foot_nav a {
  display: block;
  font-size: 2rem;
  transition: all 0.3s;
  padding: 0.5rem 0 0.5rem 2rem;
  position: relative;
  line-height: 4.1rem;
}
footer .foot_nav a::before {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  transition: all 0.3s;
  transform: translateY(-50%);
  border-top: 0.5rem solid transparent;
  border-left: 0.8rem solid #fff;
  border-bottom: 0.5rem solid transparent;
}
footer .foot_nav a:hover {
  color: var(--primary);
}
footer .foot_nav a:hover::before {
  background-color: var(--primary);
}
footer .newsletter {
  width: 36rem;
}
footer .newsletter .title {
  font-size: 2.4rem;
  font-weight: 700;
}
footer .newsletter form {
  gap: 1rem;
  display: grid;
  margin-top: 2rem;
}
footer .newsletter form input[type="email"] {
  width: 100%;
  height: 5rem;
  display: block;
  padding: 0 1rem;
  font-size: 1.6rem;
  font-weight: 500;
  border: 2px solid #fff;
  background-color: #fff;
  transition: all 0.3s;
}
footer .newsletter form input[type="email"]:focus {
  border-color: var(--primary);
}
footer .newsletter form label {
  cursor: pointer;
  gap: 1rem;
  width: 100%;
  height: 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  max-width: 22.8rem;
  padding: 0 1rem;
  font-weight: normal;
  transition: all 0.3s;
  background-size: 200%;
  background-image: linear-gradient(to right, var(--primary), var(--primary), var(--secondary));
}
footer .newsletter form label:hover {
  background-position: right;
}
footer .newsletter form label::before {
  content: '';
  display: block;
  width: 2.4rem;
  height: 2.4rem;
  background: url(../img/send.png) no-repeat center / contain;
}
footer .newsletter form label input[type="submit"] {
  display: none;
}
#sidebar {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 995;
}
#sidebar li {
  padding-right: 1rem;
  position: relative;
  border-radius: 1rem 0 0 1rem;
  box-shadow: 0 0 10px #a1a1a1;
  background-color: var(--primary);
  transition: all 0.4s;
  transform: translateX(1rem);
}
#sidebar li:hover {
  transform: translate(0);
}
#sidebar li + li {
  margin-top: 14px;
}
#sidebar li > a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 7rem;
  height: 7rem;
  overflow: hidden;
  text-indent: -999px;
}
#sidebar li > a::after {
  content: '';
  display: block;
  width: 60%;
  height: 60%;
  filter: contrast(0) brightness(2);
  background: no-repeat center / contain;
}
#sidebar .rfq > a::after {
  width: 50%;
  height: 50%;
  background-image: url(../img/rfq.svg);
}
#sidebar .bom > a::after {
  background-image: url(../img/bom.svg);
}
#sidebar .api > a::after {
  background-image: url(../img/api.svg);
}
#sidebar .sell > a::after {
  background-image: url(../img/sell.svg);
}
#contact {
  position: fixed;
  right: 4rem;
  bottom: 4rem;
  z-index: 995;
}
#contact li {
  position: relative;
  border-radius: 50%;
}
#contact li + li {
  margin-top: 14px;
}
#contact li > a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
  overflow: hidden;
  text-indent: -999px;
  box-shadow: 0 0 10px #a1a1a1;
  background-color: var(--primary);
}
#contact li > a::after {
  content: '';
  display: block;
  width: 53%;
  height: 53%;
  filter: contrast(0) brightness(2);
  background: no-repeat center / contain;
}
#contact li:hover .siderbar_popup {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}
#contact .siderbar_popup {
  position: absolute;
  right: 100%;
  bottom: 0;
  padding-right: 2.4rem;
  transition: all 0.4s;
  opacity: 0;
  transform: translateY(-2rem);
  pointer-events: none;
}
#contact .siderbar_popup .wrap {
  width: 24rem;
  padding: 2rem 1.6rem;
  border-radius: 10px;
  border-top: 1rem #f1f143 solid;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
#contact .siderbar_popup .logo {
  max-width: 12.2rem;
}
#contact .siderbar_popup .logo img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}
#contact .siderbar_popup .time {
  margin-top: 2rem;
}
#contact .siderbar_popup .list {
  color: var(--primary);
}
#contact .siderbar_popup .list p {
  margin-top: 2rem;
}
#contact .siderbar_popup .list a:hover {
  text-decoration: underline;
}
#contact .rfq > a::after {
  background-image: url(../img/rfq.svg);
}
#contact .bom > a::after {
  background-image: url(../img/bom.svg);
}
#contact .api > a::after {
  background-image: url(../img/api.svg);
}
#contact .sell > a::after {
  background-image: url(../img/sell.svg);
}
#contact .skype > a::after {
  background-image: url(../img/social-skype.svg);
}
#contact .whatsapp > a::after {
  width: 60%;
  height: 60%;
  background-image: url(../img/social-whatsapp.svg);
}
.form_modal {
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: auto;
  display: none;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.5);
}
.form_modal::-webkit-scrollbar {
  display: none;
}
.form_modal .modal_content {
  margin: 40px auto;
  width: calc(100% - 20px);
  max-width: 67rem;
  padding: 6rem 6rem 4.6rem;
  background-color: #f7f7f5;
  position: relative;
}
.form_modal .modal_content .close {
  width: 1.5rem;
  height: 1.5rem;
  cursor: pointer;
  position: absolute;
  right: 2rem;
  top: 2rem;
  transition: all 0.3s;
  background: url(../img/close.svg) no-repeat center / contain;
}
.form_modal .modal_content .close:hover {
  transform: rotate(180deg);
}
.form_modal .title {
  text-align: center;
  font-size: 2.5rem;
  line-height: 4.6rem;
}
.form_modal .form {
  margin-top: 4rem;
}
.form form,
.form > div {
  gap: 2rem 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.form span {
  width: 100%;
}
.form .w58 {
  width: 58%;
}
.form .w38 {
  width: 38%;
}
.form .col2 {
  width: 47.5%;
}
.form .col3 {
  width: 32.5%;
}
.form input,
.form select,
.form textarea {
  width: 100%;
  display: block;
  border: 1px solid #e5e5e3;
  outline: 1px solid transparent;
  transition: all 0.3s;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 2rem;
  padding: 1.4rem 2.5rem;
}
.form input::placeholder,
.form select::placeholder,
.form textarea::placeholder {
  color: #888;
}
.form input:focus,
.form select:focus,
.form textarea:focus {
  border-color: var(--primary);
  outline-color: var(--primary);
}
.form span:has(select) {
  position: relative;
}
.form span:has(select)::after {
  content: '';
  display: block;
  width: 5rem;
  height: calc(100% - 2px);
  position: absolute;
  right: 0;
  top: 0;
  border-left: 1px solid #e6e6e3;
  background: url(../img/sjx.png) no-repeat center / 9px;
}
.form textarea {
  height: 120px;
  resize: vertical;
}
.form span:has(input[type="submit"]) {
  margin-top: 2rem;
}
.form input[type="submit"] {
  max-width: 29.6rem;
  margin: 0 auto;
  font-weight: normal;
  outline: none;
  border: none;
  padding: 1.5rem 2.5rem;
}
.form .rt input[type="submit"] {
  margin-right: 0;
}
.jst-language-switcher{
    display: none;
}
.form .label {
  cursor: pointer;
  line-height: 1;
  margin-bottom: 6px;
  max-width: max-content;
}
.section_banner {
  background: no-repeat center / cover;
}
.section_banner .flex {
  padding: 2rem 0;
  min-height: 35.3rem;
}
.section_banner .head {
  color: #fff;
}
.section_banner .head h1 {
  font-size: 6.8rem;
  font-weight: 800;
}
.section_head {
  margin: 8rem 0 6rem;
}
.section_head .head {
  overflow: hidden;
}
.section_head .head h2 {
  font-size: 3.6rem;
}
.section_head .head p {
  color: #555;
  margin-top: 3rem;
}
.section_contact {
  padding: 8rem 0;
  background: url(../img/service-bg.jpg) no-repeat center / cover;
}
.section_contact .flex {
  margin-top: 4.2rem;
}
.section_contact .syedittext {
  flex: 1;
  max-width: 56.5rem;
  font-size: 2rem;
}
.section_contact .syedittext li {
  color: var(--text);
  position: relative;
  padding-left: 5.6rem;
}
.section_contact .syedittext li + li {
  margin-top: 2.3rem;
}
.section_contact .syedittext li::before {
  content: '';
  display: block;
  width: 3.6rem;
  height: 3.6rem;
  position: absolute;
  left: 0;
  top: -0.3rem;
  background: url(../img/service-gou.png) no-repeat center / contain;
}
.section_contact .img {
  width: 46.428571%;
}
.section_contact .img:hover img {
  transform: scale(1.03);
}
.section_contact .btn {
  margin-top: 6rem;
}
.section_keyword {
  padding: 8rem 0;
  background-color: #f7f7f5;
}
.section_keyword .head p {
  color: var(--title);
  font-style: italic;
  margin-top: 4.2rem;
  line-height: 1;
}
.section_keyword .wrap {
  margin-top: 6rem;
  background-color: #fff;
  padding: 1.5rem 5rem 5rem;
}
.section_keyword .tab {
  border-bottom: 1px #e6e6e6 solid;
}
.section_keyword .tab ul {
  display: flex;
  justify-content: space-between;
}
.section_keyword .tab li {
  cursor: pointer;
  font-size: 2.8rem;
  line-height: 1;
  padding: 1.5rem 4rem;
  transition: all 0.3s;
  border-bottom: 2px solid transparent;
  position: relative;
}
.section_keyword .tab li:hover::after,
.section_keyword .tab li.active::after {
  width: 100%;
}
.section_keyword .tab li.active {
  color: var(--primary);
}
.section_keyword .tab li::after {
  content: '';
  display: block;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  transition: all 0.5s;
}
.section_keyword .tab li span {
  font-weight: 800;
  background-image: linear-gradient(-40deg, #c2cf03 0%, #6ca425 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}
.section_keyword .section_keyword_swiper {
  margin-top: 5rem;
  overflow: hidden;
}
.section_keyword .section_keyword_swiper .swiper-slide {
  gap: 3rem;
  display: flex;
  justify-content: space-between;
}
.section_keyword .section_keyword_swiper .img {
  width: 30.769231%;
}
.section_keyword .section_keyword_swiper .syedittext {
  flex: 1;
  max-width: 86rem;
  padding: 3rem 0;
}
.section_keyword .section_keyword_swiper .syedittext h3 {
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1;
}
.section_keyword .section_keyword_swiper .syedittext p {
  font-size: 2rem;
  margin-top: 1rem;
  line-height: 3.4rem;
  color: #666;
}
.nav-links {
  gap: 1rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin-top: 6rem;
}
.nav-links .page-numbers {
  color: #7e8c8d;
  border-radius: 100px;
  background-color: #e6e6e6;
  line-height: 4.2rem;
  min-width: 4.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}
.nav-links .current,
.nav-links a:hover {
  color: #fff;
  background-color: var(--primary);
}
.form span.wpcf7-spinner{
  width: 24px !important;
}
body .wpcf7 form .wpcf7-response-output{
  padding: 0;
  margin: 0;
  border: none;
}

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

.default_body h2 {
  font-size: 2.6rem;
  line-height: 3.4rem;
  font-weight: 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 p a{
  color: var(--primary);
}
.default_body p a:hover{
  text-decoration: underline;
}
.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: '';
}

.gt_switcher .gt_option{
  position: absolute !important;
  top: 100%;
}


.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: 450px;
  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(1, 1fr);
  gap: 2rem;
  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;
}
.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;
}


@media screen and (min-width: 769px) and (max-width: 1600px) {
  header .header_bar .flex,
  header .header_bar .contact {
    gap: 4rem;
  }
}
@media screen and (min-width: 769px) and (max-width: 1440px) {
  header .header_bar .flex,
  header .header_bar .contact {
    gap: 3rem;
  }
}
@media screen and (min-width: 769px) and (max-width: 1220px) {
  .content {
    padding: 0 2rem;
  }
  .swiper_content {
    padding: 1.5rem 2rem;
  }
  header .header_main nav .menu > li {
    padding: 0 2.5rem;
  }
  header .header_main .btn_contact {
    margin-left: 2rem;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .content,
  .swiper_content {
    max-width: 896px;
  }
}
@media screen and (max-width: 1024px) {
  header .header_notice.active ~ .header_main .right {
    height: calc(100vh - 10rem - 50px);
  }
  header.sticky .header_notice ~ .header_main .right {
    height: calc(100vh - 4rem - 50px);
  }
  header .content {
    position: static;
  }
  header .header_bar .header_search {
    margin-left: auto;
  }
  header .header_bar .contact {
    display: none;
  }
  header .header_main .content {
    padding-right: 0;
  }
  header .header_main .left {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  header .header_main .logo img {
    height: 25px;
  }
  header .header_main .btn_menu {
    display: block;
    width: 50px;
    height: 50px;
    cursor: pointer;
    background: url(../img/menu.svg) no-repeat center / 70%;
  }
  header .header_main .btn_menu.active {
    background: url(../img/close.svg) no-repeat center / 40%;
  }
  header .header_main .right {
    position: absolute;
    left: 0;
    top: 100%;
    width: 100%;
    background-color: #fff;
    height: calc(100vh - 4rem - 50px);
    transition: all 0.3s;
    padding-bottom: 50px;
    flex-direction: column;
    justify-content: space-around;
    overflow: auto;
    transform: translateX(-100%);
    will-change: transform;
  }
  header .header_main .right.active {
    transform: translate(0);
  }
  header .header_main nav {
    width: 100%;
  }
  header .header_main nav .menu {
    display: block;
    border-top: 1px solid #eee;
  }
  header .header_main nav .menu > li {
    padding: 0;
    cursor: pointer;
    display: grid;
    grid-template-columns: 1fr auto;
    border-bottom: 1px solid #eee;
  }
  header .header_main nav .menu > li::after {
    display: none;
  }
  header .header_main nav .menu > li > a {
    font-size: 16px;
    line-height: 50px;
    padding: 0 20px;
    font-weight: 600;
  }
  header .header_main nav .menu > li.menu-item-has-children.active::after {
    background-image: url(../img/reduce.svg);
  }
  header .header_main nav .menu > li.menu-item-has-children::after {
    display: block;
    width: 50px;
    height: 50px;
    position: static;
    transform: translate(0);
    border-left: 1px solid #eee;
    transition: all 0.3s;
    background: url(../img/add.svg) no-repeat center / 11px;
  }
  header .header_main nav .menu > li:hover .sub-menu {
    transform: translate(0);
  }
  header .header_main nav .sub-menu {
    position: static;
    opacity: 1;
    pointer-events: all;
    transform: translate(0);
    order: 3;
    grid-column: 1/-1;
    transition: none;
    padding: 0;
    display: none;
  }
  header .header_main nav .sub-menu > li + li {
    border-top: 1px dashed #eee;
  }
  header .header_main nav .sub-menu > li > a {
    font-size: 16px;
    line-height: 50px;
    padding: 0 20px 0 30px;
    font-weight: 600;
  }
  header .header_main .btn_contact {
    margin: 0;
    width: 100%;
    min-height: 100px;
    font-size: 14px;
  }
  header .header_main .btn_contact span {
    font-size: 12px;
  }
}
@media screen and (min-width: 769px) and (max-width: 896px) {
  .content,
  .swiper_content {
    max-width: 768px;
  }
  .section_keyword .tab li {
    padding: 1rem;
    font-size: 1.6rem;
  }
  .section_keyword .tab li span {
    font-size: 2.8rem;
  }
}
@media screen and (min-width: 769px) {
  div::-webkit-scrollbar,
  ul::-webkit-scrollbar {
    width: 4px;
  }
  div::-webkit-scrollbar-thumb,
  ul::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-color: #8b8b8b;
  }
}
@media screen and (min-width: 1025px) {
  body::-webkit-scrollbar,
  div::-webkit-scrollbar,
  ul::-webkit-scrollbar {
    width: 0.8rem;
  }
  body::-webkit-scrollbar-thumb,
  div::-webkit-scrollbar-thumb,
  ul::-webkit-scrollbar-thumb {
    border-radius: 1.6rem;
    background-color: var(--primary);
  }
  body::-webkit-scrollbar-track,
  div::-webkit-scrollbar-track,
  ul::-webkit-scrollbar-track {
    background-color: #eee;
  }
}
@media screen and (max-width: 768px) {
  html {
    font-size: 10px;
  }
  .content {
    padding: 0 30px;
  }
  .swiper_content {
    padding: 10px 20px;
  }
  .only_mobile {
    display: block;
  }
  body {
    word-break: break-word;
  }
  body.fixed {
    padding-right: 0;
  }
  .gap {
    gap: 1rem;
  }
  .head {
    font-size: 16px;
  }
  .head h2 {
    font-size: 20px;
  }
  .btn {
    min-width: 260px;
    line-height: 50px;
  }
  header .header_notice.active ~ .header_main .right {
    height: calc(100vh - 140px);
  }
  header.sticky {
    top: -50px;
  }
  header.sticky .header_notice ~ .header_main .right {
    height: calc(100vh - 90px);
  }
  header .header_notice .close {
    width: 50px;
    height: 100%;
  }
  header .header_notice .close::after {
    width: 14px;
    height: 14px;
  }
  header .header_notice a {
    height: 50px;
    font-size: 12px;
    padding: 10px 40px;
  }
  header .header_notice a .content {
    padding: 0;
  }
  header .header_notice a br {
    display: none;
  }
  header .header_bar .flex {
    gap: 20px;
  }
  header .header_bar .social a {
    width: 40px;
    height: 40px;
  }
  header .header_bar .header_search {
    max-width: 300px;
  }
  header .header_bar .header_search input[type="text"] {
    font-size: 14px;
    padding: 0 10px;
  }
  header .header_bar .header_search input[type="submit"] {
    width: 30px;
    height: 30px;
    background-size: 20px;
  }
  header .header_bar .language img {
    width: 34px;
    height: 20px;
    margin-right: 10px;
  }
  header .header_bar .language .btn_lang {
    min-height: 40px;
  }
  header .header_bar .language .btn_lang::before,
  header .header_bar .language .btn_lang span {
    display: none;
  }
  header .header_bar .language .btn_lang::after {
    width: 10px;
    height: 6px;
    margin: 0 10px 0 4px;
  }
  header .header_bar .language .lang_popup {
    left: unset;
    right: 0;
    padding: 10px;
  }
  header .header_bar .language .lang_popup .item {
    padding: 6px 0 6px 19px;
    font-size: 14px;
  }
  header .header_bar .language .lang_popup .item::before {
    border-left-width: 8px;
    border-top-width: 5px;
    border-bottom-width: 5px;
  }
  header .header_main .right {
    height: calc(100vh - 90px);
  }
  footer {
    padding: 50px 0 60px;
  }
  footer .flex {
    gap: 3rem 20px;
  }
  footer .intro .logo {
    max-width: 185px;
  }
  footer .intro .title {
    margin-top: 2rem;
    font-size: 20px;
  }
  footer .intro .social {
    gap: 2rem;
  }
  footer .intro .social a {
    width: 24px;
    height: 24px;
  }
  footer .intro .copyright {
    font-size: 20px;
  }
  footer .foot_nav a {
    font-size: 16px;
    line-height: 41px;
    padding: 5px 0 5px 15px;
  }
  footer .foot_nav a::before {
    border-top: 4px solid transparent;
    border-left: 5px solid #fff;
    border-bottom: 4px solid transparent;
  }
  footer .newsletter {
    width: 100%;
    max-width: 360px;
  }
  footer .newsletter .title {
    font-size: 20px;
  }
  footer .newsletter form {
    gap: 10px;
    display: grid;
    margin-top: 20px;
  }
  footer .newsletter form input[type="email"] {
    height: 40px;
    padding: 0 10px;
  }
  footer .newsletter form label {
    gap: 10px;
    height: 40px;
    max-width: 228px;
    padding: 0 10px;
  }
  footer .newsletter form label::before {
    width: 24px;
    height: 24px;
  }
  #sidebar li + li {
    margin-top: 8px;
  }
  #contact {
    right: 10px;
    bottom: 10px;
  }
  #contact li + li {
    margin-top: 5px;
  }
  .form_modal .modal_content {
    padding: 2rem;
  }
  .form_modal .title {
    font-size: 1.6rem;
    line-height: 3rem;
  }
  .form_modal .form {
    margin-top: 3rem;
  }
  .form .w58,
  .form .w38,
  .form .col2,
  .form .col3 {
    width: 100%;
  }
  .form input,
  .form select,
  .form textarea {
    font-size: 1.6rem;
    padding: 1.4rem 1rem;
  }
  .form input[type="submit"] {
    max-width: 20rem;
    min-width: unset;
    font-size: 1.8rem;
    padding: 1.5rem 2rem;
  }
  .form .label {
    font-size: 1.4rem;
  }
  .section_banner .flex {
    min-height: 153px;
  }
  .section_banner .head h1 {
    font-size: 28px;
  }
  .section_head {
    margin: 4rem 0 2rem;
  }
  .section_head .head h2 {
    font-size: 2rem;
  }
  .section_head .head p {
    margin-top: 2rem;
  }
  .section_contact {
    padding: 4rem 0;
  }
  .section_contact .flex {
    margin-top: 3rem;
  }
  .section_contact .btn {
    margin-top: 2rem;
  }
  .section_keyword {
    padding: 4rem 0;
  }
  .section_keyword .head p {
    margin-top: 2rem;
  }
  .section_keyword .wrap {
    padding: 2rem;
    margin-top: 2rem;
  }
  .section_keyword .tab ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .section_keyword .tab li {
    padding: 1rem;
    font-size: 1.6rem;
    text-align: center;
  }
  .section_keyword .tab li span {
    font-size: 2.8rem;
  }
  .section_keyword .section_keyword_swiper {
    margin-top: 2rem;
  }
  .section_keyword .section_keyword_swiper .swiper-slide {
    display: block;
  }
  .section_keyword .section_keyword_swiper .img {
    width: 100%;
  }
  .section_keyword .section_keyword_swiper .syedittext {
    padding-bottom: 0;
  }

  .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: '';
  }

  header .header_main nav .sub-menu > li > .sub-menu{
    opacity: 1;
    pointer-events: all;
    left: unset;
    position: unset;
    padding-left: 1.5rem;
  }


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


}
@media screen and (max-width: 576px) {
  .content {
    padding: 0 15px;
  }
  header .header_bar .header_search {
    position: absolute;
    left: 0;
    top: 100%;
    width: 100%;
    max-width: unset;
    padding: 10px 15px;
    background-color: #fff;
    transition: all 0.3s;
    opacity: 0;
    pointer-events: none;
  }
  header .header_bar .header_search.active {
    opacity: 1;
    pointer-events: all;
  }
  header .header_bar .header_search form {
    border: 1px solid var(--primary);
  }
  header .header_main .btn_search {
    display: block;
    width: 50px;
    height: 50px;
    margin-left: auto;
    background: url(../img/search.svg) no-repeat center / 26px;
  }
  footer .flex {
    gap: 2rem;
  }
  footer .foot_nav {
    width: 100%;
  }
  footer .foot_nav ul {
    gap: 0 25px;
    display: flex;
    flex-wrap: wrap;
  }
  footer .newsletter form label {
    max-width: 200px;
  }
  .section_contact .flex {
    display: block;
  }
  .section_contact .syedittext li {
    font-size: 1.6rem;
  }
  .section_contact .img {
    width: 100%;
    margin-top: 2rem;
  }
}
