:root {
  --theme_color: #e3ba6a;
  --subtheme_color: #c79f62;
  --hover_color: #000;
  --title_color: #000;
  --content_color: #3d3d3d;
  --bg_color: #fcf8ef;
}
html {
  font-size: clamp(7.5px, 0.522vw, 16px) !important;
}
ul {
  list-style: none;
}
a {
  color: inherit;
  font-size: inherit;
  text-decoration: none;
}
i {
  font-style: normal;
}
.swiper_box {
  position: relative;
}
.header_content {
  max-width: 172.1rem;
  margin: 0 auto;
  position: relative;
}
.swiper_content {
  max-width: 171rem;
  margin: 0 auto;
  position: relative;
  padding: 1.5rem;
  overflow: hidden;
}
button,
input,
textarea {
  outline: none;
  border: none;
  font-family: unset;
  color: var(--title_color);
}
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_color);
}
.center {
  text-align: center;
}
.flex_start {
  justify-content: flex-start;
}
.flex_center {
  justify-content: center;
}
.flex_end {
  justify-content: flex-end;
}
.flex_top {
  align-items: flex-start;
}
.flex_middle {
  align-items: center;
}
.flex_bottom {
  align-items: flex-end;
}
body {
  font-size: 1.6rem;
  word-break: break-word;
  color: var(--title_color);
  font-family: "Jost", sans-serif;
}
body.fixed {
  overflow: hidden;
  padding-right: 17px;
}
.only_mobile {
  display: none;
}
.content .content {
  padding: 0;
}
.gap {
  gap: 2rem;
}
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(--theme_color);
  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 img {
  position: absolute;
  left: 0;
  top: 0;
  object-fit: cover;
}
.img.img_ab.img_ct img {
  object-fit: contain;
}
.img img {
  width: 100%;
  height: 100%;
  display: block;
  transition: all 0.5s;
  aspect-ratio: inherit;
}
.head strong {
  font-size: 1.6rem;
  color: var(--theme_color);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 4px;
  display: block;
  margin-bottom: 1.3rem;
}
.head h2 {
  font-size: 4.6rem;
  line-height: 6.2rem;
  font-weight: 500;
}
.btn {
  display: inline-block;
  font-size: 1.7rem;
  font-weight: 600;
  text-align: center;
  border: 2px solid var(--theme_color);
  padding: 1.7rem 5.35rem;
  transition: all 0.3s;
  position: relative;
  z-index: 2;
  cursor: pointer;
  background-color: transparent;
}
.btn::before {
  width: 0;
  height: 100%;
  right: 0;
  top: 0;
  position: absolute;
  content: '';
  background-color: var(--theme_color);
  z-index: -1;
  transition: all 0.4s;
}
.btn:hover {
  color: #fff;
}
.btn:hover::before {
  width: 100%;
  right: unset;
  left: 0;
}
.btn_w {
  display: inline-block;
  font-size: 1.6rem;
  font-weight: 500;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.5);
  padding: 1.8rem 4.9rem;
  transition: all 0.3s;
  position: relative;
  z-index: 2;
  cursor: pointer;
  color: #fff;
  background-color: transparent;
}
.btn_w::before {
  width: 0;
  height: 100%;
  right: 0;
  top: 0;
  position: absolute;
  content: '';
  background-color: #fff;
  z-index: -1;
  transition: all 0.4s;
}
.btn_w:hover {
  color: #000;
}
.btn_w:hover::before {
  width: 100%;
  right: unset;
  left: 0;
}
.btn_full {
  display: inline-block;
  font-size: 1.8rem;
  font-weight: 500;
  text-align: center;
  border: 1px solid var(--theme_color);
  padding: 1.6rem 4.6rem;
  transition: all 0.3s;
  position: relative;
  z-index: 2;
  cursor: pointer;
  color: #fff;
  background-color: var(--theme_color);
}
.btn_full::before {
  width: 0;
  height: 100%;
  right: 0;
  top: 0;
  position: absolute;
  content: '';
  background-color: #fff;
  z-index: -1;
  transition: all 0.4s;
}
.btn_full:hover {
  color: var(--title_color);
}
.btn_full:hover::before {
  width: 100%;
  right: unset;
  left: 0;
}
.swiper_btns_line {
  display: flex;
  gap: 4rem;
}
.swiper_btns_line > div {
  width: 3.2rem;
}
.swiper_btns_line > div::after {
  width: 100%;
  padding-bottom: 45.89%;
  content: '';
  display: block;
  background: url("../img/arrow.svg") no-repeat center / contain;
  transition: all 0.3s;
  cursor: pointer;
  pointer-events: all;
}
.swiper_btns_line .btn_next::after {
  transform: rotate(180deg);
}
.swiper_btns_line .swiper-button-disabled {
  opacity: 0.5;
  pointer-events: none;
  background-color: transparent;
}
.swiper_btns_line .swiper-button-lock {
  opacity: 0;
  pointer-events: none;
}
.swiper_btns_line.middle {
  width: 98%;
  max-width: 177rem;
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  pointer-events: none;
  transform: translate(-50%, -50%);
  justify-content: space-between;
}
.swiper_btns_line.middle div {
  pointer-events: all;
}
.swiper_btns_line.middle .swiper-button-disabled,
.swiper_btns_line.middle .swiper-button-lock {
  pointer-events: none;
}
.swiper_btns {
  display: flex;
}
.swiper_btns > div {
  width: 6.5rem;
  height: 6.5rem;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--theme_color);
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.4s;
}
.swiper_btns > div::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: '';
  background: url("../img/arrow.svg") no-repeat center / 42.7%;
  filter: contrast(0) brightness(2);
  transition: all 0.4s;
}
.swiper_btns > div:hover {
  background-color: #fff;
  border-color: var(--theme_color);
}
.swiper_btns > div:hover::after {
  filter: unset;
}
.swiper_btns .btn_next::after {
  transform: rotate(180deg);
}
.swiper_btns .swiper-button-disabled {
  opacity: 0.5;
  pointer-events: none;
}
.swiper_btns .swiper-button-lock {
  opacity: 0;
  pointer-events: none;
}
.swiper_btns.middle {
  width: 98%;
  max-width: 177rem;
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  pointer-events: none;
  transform: translate(-50%, -50%);
  justify-content: space-between;
}
.swiper_btns.middle div {
  pointer-events: all;
}
.swiper_btns.middle .swiper-button-disabled,
.swiper_btns.middle .swiper-button-lock {
  pointer-events: none;
}
.swiper_control {
  font-size: 1.6rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 1.4rem;
}
.swiper_control div.swiper-scrollbar {
  position: static;
  width: 8.7rem;
  height: 1px;
  background: rgba(0, 0, 0, 0.3);
}
.swiper_control div.swiper-scrollbar .swiper-scrollbar-drag {
  background: #000;
  height: 1.5px;
}
.swiper_control.white {
  color: #fff;
}
.swiper_control.white div.swiper-scrollbar {
  background: rgba(255, 255, 255, 0.3);
}
.swiper_control.white div.swiper-scrollbar .swiper-scrollbar-drag {
  background: #fff;
}
.swiper_control.small {
  font-size: 1.7rem;
  gap: 1.1rem;
}
.swiper_control.small div.swiper-scrollbar {
  width: 5.5rem;
}
.swiper_control.theme {
  color: rgba(255, 255, 255, 0.5);
}
.swiper_control.theme .current {
  color: var(--theme_color);
}
.swiper_control.theme div.swiper-scrollbar {
  background: rgba(255, 255, 255, 0.54);
}
.swiper_control.theme div.swiper-scrollbar .swiper-scrollbar-drag {
  background: var(--theme_color);
}
header {
  position: fixed;
  width: 100%;
  z-index: 996;
  transition: all 0.3s;
  top: 0;
  padding-top: 1rem;
}
header.white .logo {
  filter: contrast(0) brightness(2);
}
header.white nav .menu > li > a {
  color: #fff;
}
header.white .btns .btn_search {
  filter: contrast(0) brightness(2);
}
header.sticky .logo {
  filter: none;
}
header.sticky nav .menu > li > a {
  color: var(--title_color);
}
header.sticky .btns .btn_search {
  filter: none;
}
header.sticky {
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  background-color: #fff;
  padding-top: 0;
}
header.sticky .left {
  padding: 0;
}
header .left {
  padding-bottom: 0.95%;
  transition: all 0.3s;
}
header .logo {
  display: block;
  overflow: hidden;
  position: relative;
  text-indent: -999px;
  transition: all 0.3s;
}
header .logo img {
  display: block;
  height: 8.4rem;
  width: auto;
}
header .logo p {
  position: absolute;
  z-index: -1;
  inset: 0;
}
header nav {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  padding-right: 1.37%;
}
header nav .menu {
  display: flex;
  gap: 5.95rem;
}
header nav .menu > li {
  position: relative;
  z-index: 2;
}
header nav .menu > li::after {
  content: '';
  display: block;
  width: 0;
  height: 2px;
  background-color: var(--subtheme_color);
  position: absolute;
  left: 50%;
  bottom: 30%;
  transform: translateX(-50%);
  transition: all 0.3s;
}
header nav .menu > li > a {
  display: block;
  font-size: 1.8rem;
  font-weight: 500;
  color: #161616;
  transition: all 0.3s;
  line-height: 10.5rem;
}
header nav .menu > li.current-menu-item::after,
header nav .menu > li.current-menu-parent::after,
header nav .menu > li:hover::after {
  width: 100%;
}
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.sub-menu {
  display: none;
}
header nav .sub-menu {
  left: -2.4rem;
  position: absolute;
  min-width: 20rem;
  background-color: #fff;
  padding: 1.6rem 2.4rem 0;
  box-shadow: 0 0.2rem 0.5rem rgba(0, 0, 0, 0.1);
  display: block;
  pointer-events: none;
  opacity: 0;
  transition: all 0.3s;
  z-index: -1;
}
header nav .sub-menu > li {
  margin-bottom: 0.5rem;
  transition: all 0.4s;
  transform: translateY(-1.6rem);
}
header nav .sub-menu > li > a {
  display: block;
  padding: 0.8rem 0;
  transition: all 0.3s;
  font-size: 1.5rem;
  position: relative;
}
header nav .sub-menu > li > a::after {
  content: '';
  display: block;
  width: 0;
  height: 1px;
  background-color: var(--subtheme_color);
  position: absolute;
  left: 0;
  bottom: 0;
  transition: all 0.3s;
}
header nav .sub-menu > li > a:hover::after {
  width: 100%;
}
header .btns {
  display: flex;
  align-items: center;
  gap: 2.2rem;
  min-height: 10.5rem;
}
header .btns a {
  font-size: 1.8rem;
  font-weight: 500;
  color: #fff;
  display: inline-block;
  background-color: var(--theme_color);
  position: relative;
  z-index: 2;
  overflow: hidden;
  padding: 1.5rem 4.65rem;
  transition: all 0.3s;
  border: 1px solid transparent;
  text-align: center;
}
header .btns a::before {
  width: 0;
  height: 100%;
  background-color: #fff;
  position: absolute;
  top: 0;
  right: 0;
  content: '';
  z-index: -1;
  transition: all 0.3s;
}
header .btns a:hover {
  color: var(--title_color);
}
header .btns a:hover::before {
  width: 100%;
  left: 0;
  right: unset;
}
header .btns .btn_search {
  width: 1.8rem;
  padding-bottom: 10%;
  content: '';
  display: block;
  background: url("../img/icon-search.svg") no-repeat center / contain;
  margin-bottom: 1px;
  transition: all 0.4s;
  cursor: pointer;
}
.footer_connect {
  padding: 16.4rem 0 20.4rem;
  background: url("../img/footer-bg.png") no-repeat center / cover rgba(246, 238, 225, 0.5);
  position: relative;
}
.footer_connect .box {
  position: relative;
  z-index: 2;
  padding: 0 3.5%;
}
.footer_connect .box::before {
  width: calc(100% - 5px);
  height: 100%;
  border: 2px solid #e5e5e5;
  background-color: #fefdf9;
  position: absolute;
  top: 0;
  right: 0;
  content: '';
  z-index: -1;
  pointer-events: none;
}
.footer_connect .head {
  position: relative;
  z-index: 2;
  padding: 2.8rem 0 8.1rem;
}
.footer_connect .head::before {
  width: calc(100% + 7% + 0.9rem);
  height: 100%;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background-color: #000000;
  content: '';
  z-index: -1;
  pointer-events: none;
}
section.footer_connect h2 {
  font-size: 3.6rem;
  color: #fff;
}
.footer_connect .desc {
  font-size: 1.8rem;
  line-height: 3.2rem;
  color: var(--content_color);
  border-bottom: 1px solid #e6e6e6;
  background-color: #fefdf9;
  position: relative;
  z-index: 2;
  padding: 2.3rem 1.9% 2rem;
  margin-top: -5.3rem;
}
.footer_connect .desc p {
  max-width: 94rem;
}
.footer_connect form {
  padding: 4.5rem 0 5.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2.6rem 0;
}
.footer_connect form span {
  width: 100%;
  position: relative;
}
.footer_connect form span i {
  width: 4rem;
  height: 4rem;
  position: absolute;
  top: 1.4rem;
  right: 3.1rem;
  background: no-repeat center / contain;
  content: '';
  display: inline-block;
}
.footer_connect form span i.name {
  background-image: url(../img/form-icon-name.svg);
}
.footer_connect form span i.phone {
  background-image: url(../img/form-icon-phone.svg);
}
.footer_connect form span i.email {
  background-image: url(../img/form-icon-email.svg);
}
.footer_connect form span i.country {
  background-image: url(../img/form-icon-country.svg);
}
.footer_connect form span i.quote {
  background-image: url(../img/form-icon-quote.svg);
}
.footer_connect form span i.msg {
  background-image: url(../img/form-icon-msg.svg);
}
.footer_connect form .col-2 {
  width: 49%;
}
.footer_connect form input,
.footer_connect form textarea,
.footer_connect form select {
  width: 100%;
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--content_color);
  border: 1px solid #bcbcbc;
  background-color: transparent;
  padding: 2rem 8rem 2rem 2.7rem;
}
.footer_connect form input::placeholder,
.footer_connect form textarea::placeholder,
.footer_connect form select::placeholder {
  color: var(--content_color);
}




.footer_connect form textarea {
  height: 20.1rem;
}
.footer_connect form select {
  background: url("../img/icon-select.svg") no-repeat center right 11.6rem/1.2rem;
  outline: none;
}
.footer_connect form select ~ i {
  pointer-events: none;
}
.footer_connect form span:has(input[type=checkbox]) {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
  /* margin-top: -0.8rem; */
}
.footer_connect form span:has(input[type=checkbox]) label {
  display: inline-flex;
  align-items: center;
  margin-top: auto;
}
.footer_connect form input[type=checkbox] {
  width: 3rem;
  height: 3rem;
  padding: 0;
  position: relative;
  display: inline-block;
}
.footer_connect form input[type=checkbox]::after {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: url("../img/gou.svg") no-repeat center / 80%;
  content: '';
  opacity: 0;
  transition: all 0.3s;
}
.footer_connect form input[type=checkbox]:checked::after {
  opacity: 1;
}
.footer_connect form input[type=checkbox] ~ span {
  font-size: 1.8rem;
  color: var(--content_color);
  display: inline-block;
  vertical-align: top;
  padding-left: 1.6rem;
  cursor: pointer;
  font-weight: 500;
}
.footer_connect form .upload {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  font-size: 1.8rem;
  color: var(--content_color);
  border: 1px solid #bcbcbc;
  font-weight: 500;
  padding: 1.3rem 3.55rem;
  background-color: transparent;
  position: relative;
  z-index: 2;
  transition: all 0.4s;
  cursor: pointer;
  white-space: nowrap;
}
.footer_connect form .upload .wpcf7-not-valid-tip {
  position: absolute;
  right: -20px;
  top: 22px;
  width: auto;
}
.footer_connect form .upload .wpcf7-form-control-wrap {
  /* display: none; */
  order: 9;

}
.footer_connect form .upload .wpcf7-form-control-wrap input{
  display: none;
}
.footer_connect form .upload::after {
  width: 2.4rem;
  min-width: 2.4rem;
  padding-bottom: 17%;
  content: '';
  background: url("../img/icon-upload.svg") no-repeat center / contain;
  display: inline-block;
  transition: all 0.4s;
}
.footer_connect form .upload::before {
  width: 100%;
  height: 0;
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #000;
  z-index: -1;
  content: '';
  transition: all 0.3s;
}
.footer_connect form .upload:hover {
  color: #fff;
}
.footer_connect form .upload:hover::before {
  height: 100%;
}
.footer_connect form .upload:hover::after {
  filter: contrast(0) brightness(2);
  transform: translateY(-15%);
}
.footer_connect form .btn {
  margin-top: -0.5rem;
}
.footer_connect form .btn input[type=submit] {
  display: none;
}
.footer_contact2 {
  background: url(../img/footerctbg.jpg) no-repeat center / cover;
  padding: 7.4rem 0 7rem;
}
.footer_contact2 .left {
  flex: 1;
  max-width: 85.6rem;
  display: flex;
  gap: 3.2rem;
}
.footer_contact2 .left i {
  display: block;
  width: 10.3rem;
  aspect-ratio: 103/100;
  flex-shrink: 0;
  background: no-repeat center / contain;
}
.footer_contact2 p {
  font-size: 1.8rem;
  color: #3d3d3d;
  line-height: 3.2rem;
  margin-top: 1.1rem;
}
.footer_contact2 .footer_btn {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  font-size: 1.6rem;
  font-weight: 500;
  color: #fff;
  background-color: #010000;
  gap: 1.4rem;
  padding: 1.8rem 6.3rem;
  transition: all 0.4s;
}
.footer_contact2 .footer_btn::before {
  content: '';
  display: block;
  width: 2.4rem;
  height: 2.4rem;
  transition: all 0.3s;
  background: url('../img/callicon.svg') no-repeat center / contain;
}
.footer_contact2 .footer_btn:hover {
  background-color: #fff;
  color: #161616;
}
.footer_contact2 .footer_btn:hover::before {
  filter: brightness(0);
}
footer {
  background-color: #030303;
  color: #fff;
  font-family: "Inter", serif;
  position: relative;
}
footer::after {
  width: 100%;
  height: 3px;
  position: absolute;
  bottom: 0;
  left: 0;
  content: '';
  background-image: linear-gradient(to right, #a28044, #fcfbf6 35%, #7a552b);
}
footer .footer_main {
  padding: 14rem 0 16.2rem;
  padding: 10rem 0 5rem;
}
footer .footer_main .flex {
  gap: 5rem 2rem;
}
footer .slide_intro {
  width: 31rem;
  margin-top: -4.2rem;
  margin-right: 3.55%;
}
footer .slide_intro .logo {
  display: block;
  overflow: hidden;
  position: relative;
  text-indent: -999px;
  max-width: 20rem;
}
footer .slide_intro .logo img {
  display: block;
  width: 100%;
  height: auto;
}
footer .slide_intro .logo p {
  position: absolute;
  z-index: -1;
  inset: 0;
}
footer .slide_intro p {
  opacity: 0.8;
  line-height: 2.5rem;
  margin-top: 2.7rem;
  font-weight: 300;
  font-size: 1.8rem;
}
footer .slide_intro .social {
  gap: 2rem;
  display: flex;
  flex-wrap: wrap;
  /* justify-content: space-between; */
  margin-top: 4.2rem;
}
footer .slide_intro .social a {
  opacity: 1;
  display: block;
  width: 2.6rem;
  height: 2.6rem;
  overflow: hidden;
  text-indent: -999px;
  position: relative;
  transition: all 0.3s;
}
footer .slide_intro .social a::after {
  content: '';
  display: block;
  position: absolute;
  inset: 0;
  background: no-repeat center / contain;
}
footer .slide_intro .social a:hover {
  transform: scale(1.1);
}
footer .slide_intro .social .facebook a::after {
  background-image: url(../img/facebook.svg);
}
footer .slide_intro .social .twitter a::after {
  background-image: url(../img/twitter.svg);
}
footer .slide_intro .social .youtube a::after {
  background-image: url(../img/youtube.svg);
}
footer .slide_intro .social .instagram a::after {
  background-image: url(../img/instagram.svg);
}
footer .slide_intro .social .pinterest a::after {
  background-image: url(../img/pinterest.svg);
}
footer .slide_intro .social .linkedin a::after {
  background-image: url(../img/linkedin.svg);
}
footer .slide_intro .social .tiktok a::after {
  background-image: url(../img/tiktok.svg);
}
footer .slide_intro .social .whatsapp a::after {
  background-image: url(../img/whatsapp.svg);
}
footer .slide_obj strong {
  display: block;
  font-weight: 400;
  margin-bottom: 2.7rem;
  opacity: 0.44;
  font-size: 2rem;
  text-transform: uppercase;
}
footer .slide_obj li {
  margin-bottom: 1.6rem;
}
footer .slide_obj li:last-child {
  margin-bottom: 0;
}
footer .slide_obj li a {
  opacity: 0.85;
  font-weight: 300;
  transition: all 0.3s;
  vertical-align: top;
  font-size: 1.8rem;
}
footer .slide_obj li a:hover {
  opacity: 1;
  color: var(--theme_color);
  /* text-decoration: underline; */
}
footer .slide_connect {
  width: 30.6rem;
}
footer .slide_connect li {
  position: relative;
  padding-left: 3rem;
  margin-bottom: 2.4rem;
}
footer .slide_connect li::before {
  content: '';
  display: block;
  width: 2rem;
  padding-bottom: 10%;
  border-radius: 50%;
  box-sizing: border-box;
  background: no-repeat center / contain;
  position: absolute;
  left: 0;
  top: -1px;
}
footer .slide_connect li a {
  opacity: 1;
  font-size: 1.8rem;
  font-weight: 500;
}
footer .slide_connect li .label {
  opacity: 0.46;
  font-size: 1.6rem;
  line-height: 2.2rem;
  margin-top: 1rem;
  font-weight: 300;
  padding-right: 15%;
}
footer .slide_connect li:last-child {
  margin-bottom: 0;
}
footer .slide_connect .phone::before {
  background-size: 1.8rem;
  background-image: url(../img/icon-phone.svg);
}
footer .slide_connect .email::before {
  background-image: url(../img/icon-email.svg);
}
footer .copyright {
  padding: 2.8rem 0;
}
footer .copyright p,
footer .copyright a {
  font-size: 1.8rem;
  opacity: 0.8;
}
footer .copyright a {
  display: block;
  transition: all 0.3s;
}
footer .copyright a:hover {
  opacity: 1;
  color: var(--theme_color);
  /* text-decoration: underline; */
}
footer .copyright ul {
  gap: 2rem 5.2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.product_item {
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
}
.product_item.active,
.product_item:hover {
  box-shadow: 0 8px 10px rgba(141, 146, 163, 0.45);
}
.product_item.active::before,
.product_item:hover::before {
  opacity: 1;
}
.product_item.active .pd_swiper,
.product_item:hover .pd_swiper {
  transform: translateY(0);
}
.product_item.active div.swiper-pagination,
.product_item:hover div.swiper-pagination {
  transform: translate(-50%, 0);
  opacity: 1;
}
.product_item.active h3,
.product_item:hover h3 {
  font-size: 2.2rem;
  transform: translateY(0);
}
.product_item.active .btn,
.product_item:hover .btn,
.product_item.active .btn_full,
.product_item:hover .btn_full {
  transform: translateY(0);
  opacity: 1;
}
.product_item::before {
  height: calc(100% - 2px);
  width: calc(100% - 2px);
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.4s;
  border: 1px solid var(--theme_color);
  box-shadow: 0 8px 10px rgba(141, 146, 163, 0.45);
  opacity: 0;
  content: '';
  z-index: 2;
  pointer-events: none;
}
.product_item a {
  height: 100%;
  display: flex;
  flex-direction: column;
  /* background-color: #fff; */
  border: 1px solid #cec6be;
  overflow: hidden;
}
.product_item .pd_swiper {
  overflow: hidden;
  transform: translateY(6.9rem);
  transition: all 0.4s;
  padding-bottom: 65.415%;
}
.product_item .pd_swiper .swiper-slide {
  width: 100%;
  padding-bottom: 65.415%;
  position: absolute;
  left: 0;
  top: 0;
  transition: all .3s;
}
.product_item .pd_swiper .swiper-slide:nth-child(2) {
  opacity: 0;
}
/* .product_item .pd_swiper .swiper-slide:nth-child(2) img {
  object-fit: cover;
} */
.product_item.active .pd_swiper .swiper-slide:nth-child(1) {
  opacity: 0;
}
.product_item.active .pd_swiper .swiper-slide:nth-child(2) {
  opacity: 1;
}
.product_item .pd_swiper img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: inherit;
  transition: all 0.5s;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: contain;
}
.product_item div.swiper-pagination {
  bottom: 0;
  background-color: #efefef;
  border-radius: 100px;
  width: auto;
  transform: translate(-50%, 4rem);
  left: 50%;
  display: flex;
  align-items: center;
  height: 3rem;
  padding: 0 2.6rem;
  gap: 1.9rem;
  transition: transform 0.4s, opacity 0.3s;
  opacity: 0;
  display: none;
}
.product_item div.swiper-pagination .swiper-pagination-bullet {
  width: 5px;
  height: 5px;
  background: #1b1b1b;
  opacity: 1;
  transition: all 0.3s;
  position: relative;
  margin: 0;
}
.product_item div.swiper-pagination .swiper-pagination-bullet::before {
  width: 100%;
  height: 100%;
  background-color: transparent;
  border: 1px solid #1b1b1b;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  content: '';
  transition: all 0.4s;
  border-radius: 50%;
  opacity: 0;
}
.product_item div.swiper-pagination .swiper-pagination-bullet-active {
  background: transparent;
}
.product_item div.swiper-pagination .swiper-pagination-bullet-active::before {
  width: 180%;
  height: 180%;
  opacity: 1;
}
.product_item .info {
  padding: 2.3rem 2.8% 3.3rem;
  margin-top: auto;
}
.product_item h3 {
  font-size: 2.4rem;
  line-height: 3.2rem;
  font-weight: 500;
  color: #171717;
  transition: all 0.4s;
  text-align: center;
  transform: translateY(6.9rem);
}
.product_item .btn_full,
.product_item .btn {
  display: block;
  width: 100%;
  max-width: 39.4rem;
  padding: 1.3rem 4.6rem;
  margin: 2rem auto 0;
  transform: translateY(6.9rem);
  opacity: 0;
}
.product_item .btn {
  padding: 1.4rem 4.6rem;
}
.section_banner {
  background: url("../img/products-banner.jpg") no-repeat center / cover;
}
.section_banner .flex {
  min-height: 74.5rem;
  padding: 4rem 0;
}
.section_banner .head {
  max-width: 72.3rem;
  padding-top: 3.4%;
}
.section_banner .subtitle {
  font-size: 1.7rem;
  font-weight: 500;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  letter-spacing: 1.7px;
  gap: 1.3rem;
  color: var(--subtheme_color);
  margin-bottom: 1.4rem;
}
.section_banner .subtitle::before {
  width: 2.7rem;
  height: 1px;
  background-color: var(--subtheme_color);
  content: '';
  display: inline-block;
}
.section_banner h1 {
  color: #fff;
  font-size: 8.6rem;
  line-height: 8.8rem;
  font-weight: 600;
}
.section_banner .btn_full {
  margin-top: 4rem;
}





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

.wpcf7 .wpcf7-not-valid-tip {
  margin-top: 5px;
}
.wpcf7 form.wpcf7-form span.wpcf7-spinner {
  width: 24px;
  position: absolute;
  left: 100%;
  top: 50%;
  z-index: 2;
  transform: translateY(-50%);
}
.wpcf7 form.wpcf7-form .wpcf7-response-output {
  padding: 0;
  margin: 0;
  border: none;
}
span.wpcf7-list-item {
  margin: 0;
}
form span {
  position: relative;
}

div form#sytech-newsletter-subscription {
  display: grid;
}
div form#sytech-newsletter-subscription p {
  font-size: 12px;
  line-height: 1.5;
  font-weight: 500;
}
div form#sytech-newsletter-subscription p.success.active {
  top: -3rem;
}
div form#sytech-newsletter-subscription p.success,
div form#sytech-newsletter-subscription p.failed {
  background-color: var(--theme_color);
}
div form#sytech-newsletter-subscription p.success::before,
div form#sytech-newsletter-subscription p.failed::before {
  top: 0.9rem;
  filter: contrast(0) brightness(2);
}
div form#sytech-newsletter-subscription p.success::after,
div form#sytech-newsletter-subscription p.failed::after {
  bottom: unset;
  top: 100%;
  border-top-color: var(--theme_color);
}
.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;
  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;
  display: flex;
  align-items: center;
  justify-content: center;
}
.video_pop .pop_content iframe, .video_pop .pop_content video {
  width: 100%;
  height: auto;
  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;
}

.quote_modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999999;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  pointer-events: none;
  opacity: 0;
}
.quote_modal span:has([type="file"]) {
  display: none;
}
/*** global css ***/


section.home_about .nums .title i {
  min-width: 6.6rem;
}

.service_section .item .img img {
  object-fit: cover;
}

.home_banner .con .social {
  display: none !important;
}


.social_sidebar {
  position: fixed;
  z-index: 999;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
  padding: 15px;
  background-color: #fdfaf5;
  border-radius: 100px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}
.social_sidebar .social {
  gap: 2.2rem;
  display: flex;
  flex-direction: column;
}
.social_sidebar .social a {
  opacity: 1;
  display: block;
  width: 2.6rem;
  height: 2.6rem;
  overflow: hidden;
  text-indent: -999px;
  position: relative;
  transition: all 0.3s;
}
.social_sidebar .social a::after {
  content: '';
  display: block;
  position: absolute;
  inset: 0;
  background: no-repeat center / contain;
  filter: contrast(0) brightness(0);
}
.social_sidebar .social a:hover {
  transform: scale(1.1);
}
.social_sidebar .social .facebook a::after {
  background-image: url(../img/facebook.svg);
}
.social_sidebar .social .twitter a::after {
  background-image: url(../img/twitter.svg);
}
.social_sidebar .social .youtube a::after {
  background-image: url(../img/youtube.svg);
}
.social_sidebar .social .instagram a::after {
  background-image: url(../img/instagram.svg);
}
.social_sidebar .social .linkedin a::after {
  background-image: url(../img/linkedin.svg);
}
.social_sidebar .social .tiktok a::after {
  background-image: url(../img/tiktok.svg);
}
.social_sidebar .social .whatsapp a::after {
  background-image: url(../img/whatsapp.svg);
}
.social_sidebar .social .pinterest a::after {
  background-image: url(../img/pinterest.svg);
}
.social_sidebar .social .form a::after {
  background-image: url(../img/icon-form.svg);
}


.single-product .section_banner {
  display: none;
}
section.about_advantages .items .active {
  border-color: #dfcba7;
  background-color: #dfcba7;
}
.custom_design .custom_design_swiper .img img {
  /* object-fit: contain; */
  object-fit: cover !important;
}
.section_breadcrumbs {
  padding: 13rem 0 2rem;
  background-color: #fcf8ef;
  text-align: center;
  border-bottom: 1px solid rgba(0,0,0,0.24);
  text-align: left;
}



.nav-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-top: 9.2rem;
}
.nav-links .page-numbers {
  width: 5.5rem;
  height: 5.5rem;
  border: 1px solid transparent;
  font-size: 1.8rem;
  font-weight: 500;
  color: #171717;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1rem;
  min-width: max-content;
  cursor: pointer;
}
.nav-links .page-numbers.current,
.nav-links .page-numbers:hover {
  color: var(--subtheme_color);
  border-color: var(--subtheme_color);
}
.nav-links .page-numbers.current {
  pointer-events: none;
}
.nav-links .prev,
.nav-links .next {
  background: url("../img/arrow-b.svg") no-repeat center / 0.8rem;
  width: 2.2rem;
  opacity: 0.5;
  border: none;
  margin-left: 1rem;
  padding: 0;
  display: block;
}
.nav-links .prev:hover,
.nav-links .next:hover {
  opacity: 1;
}
.nav-links .prev {
  transform: rotate(180deg);
  margin-left: 0;
}
.nav-links .dots {
  width: 2.5rem;
  margin-right: 0.5rem;
  border: none;
  padding: 0;
}

@media screen and (min-width: 769px) {
  section.home_about .flex {
    min-height: unset;
    padding: 10rem 0;
  }
  .product_section .btn {
    font-size: 2rem;
  }
  section.service_section {
    padding: 12rem 0;
  }
  section.service_section .item {
    margin-bottom: 10rem;
  }
  section.service_exhibition {
    padding: 9rem 0 10rem;
  }
  section.about_solution {
    padding-top: 10rem;
  }
  section.about_solution .datas ul {
    margin-top: 12rem;
  }
  .about_solution .flex {
    align-items: center;
  }
  section.about_solution .right {
    margin-top: 0;
  }
  section.about_awards {
    padding: 10rem 0;
  }
  section.about_advantages {
    padding-top: 10rem;
  }
  section.about_advantages .items .item:not(.active) {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
  section.about_advantages .items {
    padding: 0 0 5rem;
  }
  section.about_history {
    padding-top: 4rem;
  }
  section.custom_service .list > ul {
    gap: 1rem;
    display: flex;
  }
  section.custom_service .list .nav_item {
    flex: 1;
  }
  section.custom_service {
    padding-top: 9rem;
  }
  section.custom_guidelines {
    padding: 10rem 0;
  }
  section.custom_stories {
    padding: 10rem 0;
  }
  section.news_list {
    padding-top: 8rem;
    padding-bottom: 12rem;
  }
  section.footer_contact2 {
    padding: 5rem 0;
  }
  section.footer_contact2 .left {
    max-width: 92rem;
  }
  section.custom_design {
    padding-bottom: 12rem;
  }
  section.custom_design .custom_design_thumb_swiper {
    max-width: 30rem;
  }
  section.product_section {
    padding: 8rem 0 10rem;
  }
  .breadcrumbs a {
    font-size: 1.8rem;
    transition: all .3s;
  }
  .breadcrumbs span {
    font-size: 1.8rem;
  }
  .breadcrumbs a:hover {
    color: var(--theme_color);
  }
}

.home_custom .home_custom_swiper h3{
  text-transform: capitalize !important;
}


#back-to-top {
  display: none; /* 默认隐藏 */
  position: fixed;
  bottom: 5rem;
  right: 2rem;
  z-index: 99;
  font-size: 18px;
  border: none;
  outline: none;
  background: url('../img/gotop.svg') no-repeat center/50%;
  background-color: #fdfaf5;
  color: white;
  cursor: pointer;
  padding: 15px;
  border-radius: 0;
  text-indent: -9999px;
  transition: background-color 0.3s;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  width: 5.6rem;
  height: 5.6rem;
}

.service_section .nav_list{
  display: none !important;
}
section.service_section{
  padding-top: 0 !important;
}
.product_faqs .item:first-child strong{
  font-size: 2.6rem !important;
}

.home_custom .hand_line{
  background-color: transparent !important;
}

section.home_banner .head .title {
  color: #fff;
}
.home_banner .con .pagination {
  filter: contrast(0) brightness(2);
}

section.section_banner .flex {
  min-height: 50rem;
}




.footer_bottombar {
  width: 100%;
  position: sticky;
  left: 0;
  bottom: 0;
  z-index: 99;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, .1);
}

.footer_bottombar ul {
  display: flex;
}
.footer_bottombar li {
  flex: 1;
  display: flex;
  justify-content: center;
}

.footer_bottombar a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 8px;
  font-size: 13px;
}

.footer_bottombar a::before {
  content: '';
  display: block;
  width: 20px;
  height: 20px;
  filter: contrast(0) brightness(0);
  background: no-repeat center/contain;
}

.footer_bottombar .home a::before {
  background-image: url(../img/mobile-menu/menu-home.svg);
}

.footer_bottombar .product a::before {
  background-image: url(../img/mobile-menu/menu-product.svg);
}

.footer_bottombar .form a::before {
  background-image: url(../img/icon-form.svg);
}

.footer_bottombar .about a::before {
  background-image: url(../img/mobile-menu/menu-about.svg);
}

.footer_bottombar .whatsapp a::before {
  background-image: url(../img/whatsapp.svg);
}

.footer_bottombar .phone a::before {
  background-image: url(../img/mobile-menu/menu-contact.svg);
}

.footer_bottombar .email a::before {
  background-image: url(../img/mobile-menu/menu-default.svg);
}



.jst-language-switcher{
  filter: contrast(0) brightness(100) !important;
}
header.sticky .jst-language-switcher{
  filter: contrast(0) brightness(0) !important;
}
.my-jst-lang_popup li p{
  text-transform: capitalize;
}



.rll-youtube-player{
  padding-bottom: 69% !important;
}
.contact_main form span.notice{
    flex-flow: wrap;
}
.contact_main form span.notice>span{
    display: block;
    width: 100% !important;
    font-size: 1.7rem;
}


