@charset "UTF-8";
@import "./vendors/slick.css";
@import "./vendors/lenis.css";
@import "../iconfont/style.css";
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;1,200;1,300;1,400;1,500;1,600;1,700&display=swap");
:root {
  --color-white: 255, 255, 255;
  --color-black: 24, 22, 23;
  --color-grey: 240, 240, 240;
  --color-red: 230, 0, 19;
  --color-font: var(--color-black);
  --color-opposite: var(--color-white);
}

:root {
  font-size: 10px !important;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
  font-weight: normal;
  font-size: 1.6rem;
  line-height: 1.5;
  color: rgb(var(--color-font));
}

[font-scheme=light] {
  --color-font: var(--color-white);
  --color-opposite: var(--color-black);
}

body,
html,
div {
  margin: 0;
  padding: 0;
}

body {
  -webkit-font-smoothing: antialiased;
  --moz-osx-font-smoothing: grayscale;
  --font-smoothing: antialiased;
  -webkit-overflow-scrolling: touch;
}

.body-hidden {
  overflow: hidden !important;
}

section {
  overflow-x: hidden;
  position: relative;
  padding: 96px 0;
}
@media (max-width: 991.98px) {
  section {
    padding: 72px 0;
  }
}
@media (max-width: 767.98px) {
  section {
    padding: 64px 0;
  }
}
@media (max-width: 575.98px) {
  section {
    padding: 48px 0;
  }
}

.container {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 50px;
}
@media (max-width: 767.98px) {
  .container {
    padding: 0 20px;
  }
}

a,
a:hover,
a:focus {
  outline: none;
  -moz-outline: none;
  transition: all 0.3s;
}

a:hover {
  color: rgba(var(--color-font), 0.7);
}

button:focus {
  outline: none;
  -moz-outline: none;
}

*:focus-visible {
  outline: 1px solid rgb(var(--color-font)) !important;
}

img {
  border: none;
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  line-height: 1.3;
  margin: 3.2rem 0;
}
h1:first-child,
h2:first-child,
h3:first-child,
h4:first-child,
h5:first-child,
h6:first-child {
  margin-top: 0;
}
h1:last-child,
h2:last-child,
h3:last-child,
h4:last-child,
h5:last-child,
h6:last-child {
  margin-bottom: 0;
}

h1,
.h1 {
  font-size: 4.8rem;
}
@media (max-width: 991.98px) {
  h1,
  .h1 {
    font-size: 4rem;
  }
}
@media (max-width: 575.98px) {
  h1,
  .h1 {
    font-size: 3.2rem;
  }
}

h2,
.h2 {
  font-size: 3.6rem;
}
@media (max-width: 991.98px) {
  h2,
  .h2 {
    font-size: 3rem;
  }
}
@media (max-width: 575.98px) {
  h2,
  .h2 {
    font-size: 2.6rem;
  }
}

h3,
.h3,
blockquote {
  font-size: 2.4rem;
}
@media (max-width: 575.98px) {
  h3,
  .h3,
  blockquote {
    font-size: 2rem;
  }
}

h4,
.h4 {
  font-size: 2rem;
}
@media (max-width: 575.98px) {
  h4,
  .h4 {
    font-size: 1.8rem;
  }
}

h5,
.h5 {
  font-size: 1.8rem;
}

h6,
.h6 {
  font-size: 1.6rem;
}

p {
  margin-bottom: 1.25em;
}
p:first-child {
  margin-top: 0;
}
p:last-child {
  margin-bottom: 0;
}

ul,
li,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

ul,
ol {
  margin: 1.25em 0;
}
ul ul,
ul ol,
ol ul,
ol ol {
  margin: 0;
}

li {
  padding-left: 1.5em;
}

ul > li {
  position: relative;
}
ul > li:before {
  content: "";
  display: inline-block;
  width: 0.4em;
  height: 0.4em;
  background-color: rgb(var(--color-font));
  border-radius: 50%;
  position: absolute;
  left: 0.55em;
  top: 0.55em;
}

ol {
  counter-reset: sectioncounter;
}
ol > li {
  position: relative;
}
ol > li:before {
  content: counter(sectioncounter) ".";
  counter-increment: sectioncounter;
  display: inline-block;
  width: 1.5em;
  text-align: center;
  position: absolute;
  left: 0;
  top: 0;
}

h1:first-child,
h2:first-child,
h3:first-child,
h4:first-child,
h5:first-child,
h6:first-child,
p:first-child,
ul:first-child,
ol:first-child {
  margin-top: 0;
}
h1:last-child,
h2:last-child,
h3:last-child,
h4:last-child,
h5:last-child,
h6:last-child,
p:last-child,
ul:last-child,
ol:last-child {
  margin-bottom: 0;
}

em,
i,
b,
strong,
u,
span,
a {
  font-family: inherit;
  font-weight: inherit;
  font-size: inherit;
  line-height: inherit;
  color: inherit;
  margin: 0;
  padding: 0;
}

b,
strong {
  font-weight: 600;
}

blockquote p {
  all: inherit;
}

input,
input:focus,
textarea {
  outline: none;
  transition: all 0.3s;
}

.slick-slider {
  -webkit-user-select: text;
  -moz-user-select: text;
  user-select: text;
}
.slick-slider:focus {
  outline: none;
}

.slick-slider * {
  -webkit-user-select: text;
  -moz-user-select: text;
  user-select: text;
}
.slick-slider *:focus {
  outline: none;
}

.slick-track {
  cursor: grab;
}

[class^=icon-]:before,
[class*=" icon-"]:before {
  color: inherit !important;
}

.icon-wechat:before {
  color: #00de6d !important;
}

.icon-whatsapp:before {
  color: #28d366 !important;
}

html.show-c .wowo {
  opacity: 0;
}
html.show-c .wowo.animated {
  animation-duration: 0.7s;
  visibility: visible;
  animation-fill-mode: both;
}
html .wowo {
  opacity: 0;
}
html .wowo.animated {
  animation-duration: 0.7s;
  visibility: visible;
  animation-fill-mode: both;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translate3d(0, 30px, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translate3d(0, -30px, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translate3d(-30%, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translate3d(30%, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes zoomOut {
  0% {
    opacity: 0;
    transform: translate(0, 0) scale(1.2);
  }
  to {
    opacity: 1;
    transform: translate(0, 0) scale(1);
  }
}
.fadeInLeft.animated {
  animation-name: fadeInLeft;
}

.fadeInRight.animated {
  animation-name: fadeInRight;
}

.fadeIn.animated {
  animation-name: fadeIn;
}

.fadeInUp.animated {
  animation-name: fadeInUp;
}

.fadeInDown.animated {
  animation-name: fadeInDown;
}

.zoomOut.animated {
  animation-name: zoomOut;
}

.delay-in-1 {
  animation-delay: 0.1s;
}

.delay-in-2 {
  animation-delay: 0.2s;
}

.delay-in-3 {
  animation-delay: 0.3s;
}

.delay-in-4 {
  animation-delay: 0.4s;
}

.delay-in-5 {
  animation-delay: 0.5s;
}

.delay-in-6 {
  animation-delay: 0.6s;
}

.delay-in-7 {
  animation-delay: 0.7s;
}

@keyframes loading {
  0% {
    transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
  }
}
.line-animation-text {
  opacity: 1 !important;
}
.line-animation-text .line-wrapper {
  font-family: inherit;
  font-weight: inherit;
  font-size: inherit;
  line-height: inherit;
  letter-spacing: inherit;
  overflow: hidden;
  margin: 0;
  /* 如果文字被切
  padding: 0.2em 0;
  + .line-wrapper {
    margin-top: -0.4em;
  }
  &:first-child {
    padding-top: 0;
  }
  &:last-child {
    padding-bottom: 0;
  } */
}
.line-animation-text .line-inner {
  display: inline-block;
  transform: translateY(100%) translateZ(0);
  transition: transform 0.8s cubic-bezier(0.26, 1, 0.48, 1) 0.16s;
}
.line-animation-text.animated .line-inner {
  transform: translateY(0) translateZ(0);
}

.word-animation-text {
  opacity: 1 !important;
}
.word-animation-text .word-outer {
  display: inline-flex;
  font-family: inherit;
  font-weight: inherit;
  font-size: inherit;
  line-height: inherit;
  letter-spacing: inherit;
  overflow: hidden;
}
.word-animation-text .word-inner {
  display: inline-block;
  transform: translateY(100%) translateZ(0);
  transition: transform 0.25s;
}
.word-animation-text.animated .word-inner {
  transform: translateY(0) translateZ(0);
}

header ul {
  margin: 0;
  padding: 0;
}
header ul li {
  margin: 0;
  padding: 0;
}
header ul li:before {
  display: none;
}
header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  transition: transform 0.3s;
}
header a {
  text-decoration: none;
}
header .hamburger {
  all: unset;
  display: none;
  box-sizing: border-box;
  width: 40px;
  height: 40px;
  padding: 8px;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  position: relative;
  z-index: 12;
}
header .hamburger span {
  display: block;
  height: 2px;
  background-color: rgb(var(--color-black));
  border-radius: 2px;
  transition: all 0.3s;
  transform-origin: center;
}
header .hamburger span:nth-child(2) {
  margin: 6px 0;
}
@media (max-width: 991.98px) {
  header .hamburger {
    display: inline-flex;
  }
}
header .hamburger.active span:nth-child(1) {
  transform: rotate(45deg);
}
header .hamburger.active span:nth-child(2) {
  opacity: 0;
  margin: -2px 0;
}
header .hamburger.active span:nth-child(3) {
  transform: rotate(-45deg);
}
header .header-row {
  background-color: rgb(var(--color-white));
  padding: 12px 0;
}
@media (max-width: 991.98px) {
  header .header-row {
    padding: 8px 0;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
  }
}
header .header-row .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
header .header-row .logo {
  display: inline-block;
}
header .header-row .logo img {
  width: auto;
  height: 64px;
}
@media (max-width: 991.98px) {
  header .header-row .logo img {
    height: 48px;
  }
}
header .header-row .contacts {
  display: flex;
  align-items: center;
  gap: 64px;
}
@media (max-width: 1199.98px) {
  header .header-row .contacts {
    gap: 32px;
  }
}
@media (max-width: 991.98px) {
  header .header-row .contacts {
    display: none;
  }
}
header .header-row .contacts .item p {
  font-size: 1.8rem;
  font-weight: 600;
  color: rgb(var(--color-red));
  margin: 0;
}
header .header-row .contacts .item a {
  display: flex;
  align-items: center;
}
header .header-row .contacts .item a span {
  margin-right: 8px;
  font-size: 1.8rem;
}
@media (max-width: 991.98px) {
  header .header-row .search-bar {
    display: none;
  }
}
header .header-row .search-bar form {
  position: relative;
}
header .header-row .search-bar input {
  width: 240px;
  height: 40px;
  background-color: transparent;
  border: 1px solid rgb(var(--color-black));
  border-radius: 4px;
  outline: none;
  box-shadow: unset;
  padding: 0 32px 0 8px;
  font-size: 1.4rem;
}
header .header-row .search-bar button {
  background-color: transparent;
  border-radius: 4px;
  border: none;
  outline: none;
  box-shadow: unset;
  display: inline-flex;
  position: absolute;
  top: 50%;
  right: 8px;
  transform: translateY(-50%);
  cursor: pointer;
  transition: all 0.3s;
}
header .header-row .search-bar button:hover {
  opacity: 0.7;
}
header nav {
  --color-font: var(--color-white);
  background-color: rgb(var(--color-black));
}
@media (max-width: 991.98px) {
  header nav {
    position: fixed;
    top: 64px;
    right: 0;
    bottom: 0;
    width: 100%;
    max-width: 320px;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.3s ease;
  }
}
@media (max-width: 575.98px) {
  header nav {
    max-width: unset;
  }
}
header nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 991.98px) {
  header nav .container {
    padding: 0;
  }
}
header nav .main-menu {
  display: flex;
  align-items: center;
}
@media (max-width: 991.98px) {
  header nav .main-menu {
    display: block;
    width: 100%;
  }
}
header nav .main-menu > li {
  font-weight: 600;
  font-size: 2rem;
  position: relative;
}
@media (max-width: 991.98px) {
  header nav .main-menu > li {
    font-size: 1.6rem;
    border-bottom: 1px solid rgba(var(--color-white), 0.1);
  }
}
header nav .main-menu > li a {
  display: inline-flex;
  align-items: center;
  padding: 13px 24px;
}
@media (max-width: 991.98px) {
  header nav .main-menu > li a {
    display: flex;
    padding: 14px 20px;
  }
}
header nav .main-menu > li.active a {
  background-color: rgb(var(--color-red));
}
header nav .main-menu > li.menu-item-has-children > a:after {
  font-family: "icomoon";
  content: "\e902";
  display: inline-block;
  transform: rotate(90deg);
  margin-left: 8px;
  transition: transform 0.3s;
}
header nav .main-menu > li.menu-item-has-children ul {
  background-color: rgb(var(--color-black));
  position: absolute;
  bottom: 0;
  left: 0;
  transform: translateY(100%);
}
@media (max-width: 991.98px) {
  header nav .main-menu > li.menu-item-has-children ul {
    position: static;
    transform: none;
    display: none;
    background-color: rgba(var(--color-white), 0.05);
  }
}
header nav .main-menu > li.menu-item-has-children ul li {
  font-weight: 500;
  font-size: 1.5rem;
  position: relative;
}
header nav .main-menu > li.menu-item-has-children ul li.menu-item-has-children > a {
  justify-content: space-between;
}
header nav .main-menu > li.menu-item-has-children ul li.menu-item-has-children > a:after {
  font-family: "icomoon";
  content: "\e902";
  display: inline-block;
  margin-left: 8px;
  transition: transform 0.3s;
}
@media (max-width: 991.98px) {
  header nav .main-menu > li.menu-item-has-children ul li.menu-item-has-children > a:after {
    transform: rotate(90deg);
  }
}
header nav .main-menu > li.menu-item-has-children ul li a {
  min-width: 160px;
  display: flex;
  background-color: rgb(var(--color-black));
  padding: 8px 20px;
}
@media (max-width: 991.98px) {
  header nav .main-menu > li.menu-item-has-children ul li a {
    background-color: transparent;
    min-width: 0;
    padding: 10px 32px;
  }
}
header nav .main-menu > li.menu-item-has-children ul li a:hover {
  background-color: rgb(var(--color-red));
}
header nav .main-menu > li.menu-item-has-children ul li ul {
  position: absolute;
  top: 0;
  right: 0;
  transform: translateX(100%);
}
@media (max-width: 991.98px) {
  header nav .main-menu > li.menu-item-has-children ul li ul {
    position: static;
    transform: none;
  }
}
header nav .main-menu > li.menu-item-has-children ul li ul li {
  display: block;
  font-weight: 400;
  font-size: 1.4rem;
}
@media (max-width: 991.98px) {
  header nav .main-menu > li.menu-item-has-children ul li ul li a {
    padding-left: 44px;
    white-space: normal;
  }
}
header nav .main-menu > li.menu-item-has-children.active > a:after {
  transform: rotate(-90deg);
}
header nav .main-menu .menu-item-has-children ul {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s;
}
@media (max-width: 991.98px) {
  header nav .main-menu .menu-item-has-children ul {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    transition: none;
  }
}
header nav .main-menu .menu-item-has-children:hover > ul {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}
@media (max-width: 991.98px) {
  header.menu-open nav {
    transform: translateX(0);
  }
}
header.sticky {
  transform: translateY(-88px);
}
@media (max-width: 991.98px) {
  header.sticky {
    transform: none;
  }
}

footer ul {
  margin: 0;
  padding: 0;
}
footer ul li {
  margin: 0;
  padding: 0;
}
footer ul li:before {
  display: none;
}
footer {
  background-color: rgb(var(--color-black));
  --color-font: var(--color-white);
}
footer a {
  text-decoration: none;
}
footer .footer-main {
  display: flex;
  flex-wrap: wrap;
  gap: 48px 32px;
}
footer .footer-main > * {
  width: calc((100% - 96px) / 4);
}
footer .footer-main {
  padding: 72px 0;
}
@media (max-width: 991.98px) {
  footer .footer-main {
    display: flex;
    flex-wrap: wrap;
    gap: 40px 32px;
  }
  footer .footer-main > * {
    width: calc((100% - 32px) / 2);
  }
  footer .footer-main {
    padding: 48px 0;
  }
}
@media (max-width: 575.98px) {
  footer .footer-main {
    display: flex;
    flex-wrap: wrap;
    gap: 32px 0px;
  }
  footer .footer-main > * {
    width: calc((100% - 0px) / 1);
  }
  footer .footer-main {
    padding: 40px 0;
  }
}
footer .footer-main .h3 {
  margin: 32px 0 20px;
}
footer .footer-main .h3:first-child {
  margin-top: 0;
}
footer .footer-main ul li + li {
  margin-top: 0.5em;
}
footer .footer-main p {
  font-size: 1.5rem;
}
footer .footer-main .contact-text {
  display: flex;
  align-items: flex-start;
}
footer .footer-main .contact-text .icon {
  font-size: 1.8rem;
  flex-shrink: 0;
  margin: 3px 8px 0 0;
  color: rgb(var(--color-red));
}
footer .footer-main .social-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}
footer .footer-main .social-bar a {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid rgb(var(--color-red));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  line-height: 1;
  color: rgb(var(--color-red));
}
footer .footer-main .social-bar a:hover {
  color: rgb(var(--color-font));
  background-color: rgb(var(--color-red));
}
footer .footer-main form input {
  display: block;
  width: 100%;
  background-color: transparent;
  outline: none !important;
  border: none;
  box-shadow: unset;
  border-radius: 0 !important;
  font-size: 1.5rem;
}
footer .footer-main form input[type=email] {
  flex: 1;
  height: 40px;
  border-bottom: 1px solid rgb(var(--color-font));
}
footer .footer-main form input[type=submit] {
  height: 40px;
  background-color: rgb(var(--color-red));
  color: rgb(var(--color-white));
  padding: 0 8px;
  cursor: pointer;
  transition: all 0.3s;
  margin-top: 16px;
}
footer .footer-main form input[type=submit]:hover {
  background-color: rgb(var(--color-white));
  color: rgb(var(--color-red));
}
footer .footer-bottom {
  text-align: center;
  padding: 32px 0 64px;
  border-top: 1px solid rgb(var(--color-font));
}
@media (max-width: 767.98px) {
  footer .footer-bottom {
    padding: 24px 0 72px;
  }
}
footer .footer-bottom p {
  margin: 0;
}
footer .footer-bottom .term-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 12px;
}

.online-service {
  background-color: rgb(var(--color-white));
  width: 100%;
  max-width: 264px;
  position: fixed;
  top: 50%;
  right: 0;
  transform: translate(100%, -50%);
  z-index: 5;
  opacity: 0.7;
  transition: transform 0.3s, opacity 0.3s;
}
.online-service a {
  text-decoration: none;
}
.online-service .title-row {
  background-color: rgb(var(--color-red));
  --color-font: var(--color-white);
  padding: 16px 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  transform: rotate(90deg);
  transform-origin: top left;
  border-radius: 0 0 8px 8px;
}
.online-service .title-row svg {
  transform: rotate(-90deg);
}
.online-service .title-row h2 {
  margin: 0 0 0 8px;
}
.online-service .contacts {
  padding: 24px;
  border: 2px solid rgb(var(--color-red));
}
.online-service .contact-text {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  margin: 0;
}
.online-service .contact-text + .contact-text {
  margin-top: 12px;
}
.online-service .contact-text .icon {
  font-size: 1.8rem;
  flex-shrink: 0;
  margin: 3px 8px 0 0;
  color: rgb(var(--color-red));
}
.online-service .contact-text .icon-email {
  color: #2196f3;
}
.online-service .contact-text .icon-wechat {
  font-size: 1.4rem;
  margin-top: 5px;
}
.online-service .contact-text .qr-code {
  width: 100%;
  margin-top: 8px;
}
.online-service .contact-text .qr-code img {
  width: 100%;
  max-width: 200px;
}
.online-service:hover {
  opacity: 1;
}
.online-service.active {
  opacity: 1;
  transform: translate(0, -50%);
}
@media (max-width: 767.98px) {
  .online-service {
    display: none;
  }
}

.chat-now-popup {
  background-color: rgb(var(--color-white));
  width: 100%;
  max-width: 400px;
  position: fixed;
  bottom: 0;
  right: 0;
  transform: translateY(calc(100% - 58px));
  z-index: 5;
  opacity: 0.7;
  transition: transform 0.3s, opacity 0.3s;
}
@media (max-width: 575.98px) {
  .chat-now-popup {
    max-width: 100%;
  }
}
.chat-now-popup .title-row {
  background-color: rgb(var(--color-red));
  --color-font: var(--color-white);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}
.chat-now-popup .title-row h2 {
  margin: 0;
}
.chat-now-popup .title-row .btn-toggle {
  width: 24px;
  height: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.chat-now-popup .title-row .btn-toggle span {
  width: 100%;
  height: 1px;
  background-color: rgb(var(--color-font));
  transition: all 0.3s;
}
.chat-now-popup .title-row .btn-toggle span:nth-child(2) {
  margin-top: -1px;
  transform: rotate(90deg);
}
.chat-now-popup .form-box {
  padding: 16px 24px;
}
.chat-now-popup .form-box .submit-box {
  margin: 0;
}
.chat-now-popup:hover {
  opacity: 1;
}
.chat-now-popup.active {
  transform: translateY(0);
  opacity: 1;
}
.chat-now-popup.active .btn-toggle span {
  transform: rotate(-45deg);
}
.chat-now-popup.active .btn-toggle span:nth-child(2) {
  transform: rotate(45deg);
}

.btn {
  text-decoration: none;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: unset;
  font-size: 2rem;
  line-height: 1.2;
  padding: 12px 24px;
  border-radius: 8px;
  background-color: rgb(var(--color-red));
  color: rgb(var(--color-white));
  transition: all 0.3s;
  cursor: pointer;
  min-width: 192px;
}
@media (max-width: 991.98px) {
  .btn {
    font-size: 1.6rem;
    min-width: 160px;
    padding: 10px 20px;
  }
}
.btn:after {
  font-family: "icomoon";
  content: "\e90a";
  margin-left: 8px;
  transform: rotate(-45deg);
  transition: all 0.3s;
}
.btn:hover {
  background-color: rgb(var(--color-black));
  color: rgb(var(--color-white));
}
.btn:hover:after {
  transform: rotate(0);
}

.media-box,
.img-box {
  font-size: 0;
  line-height: 1;
}
.media-box img,
.media-box video,
.img-box img,
.img-box video {
  width: 100%;
}

.btn-row {
  margin-top: 32px;
}
@media (max-width: 575.98px) {
  .btn-row {
    margin-top: 24px;
  }
}

.desc-box {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}
@media (max-width: 767.98px) {
  .desc-box {
    margin-bottom: 40px;
  }
}
@media (max-width: 575.98px) {
  .desc-box {
    margin-bottom: 32px;
  }
}
.desc-box h2 {
  position: relative;
  padding-bottom: 16px;
}
.desc-box h2:before, .desc-box h2:after {
  content: "";
  display: inline-block;
  width: 128px;
  height: 3px;
  background-color: rgb(var(--color-red));
  position: absolute;
  bottom: 1px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0.3;
}
.desc-box h2:after {
  width: 48px;
  height: 5px;
  bottom: 0;
  opacity: 1;
}

.wallpaper {
  display: inline-block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.card-list {
  display: flex;
  flex-wrap: wrap;
  gap: 40px 24px;
}
.card-list > * {
  width: calc((100% - 48px) / 3);
}
@media (max-width: 991.98px) {
  .card-list {
    display: flex;
    flex-wrap: wrap;
    gap: 32px 24px;
  }
  .card-list > * {
    width: calc((100% - 24px) / 2);
  }
}
@media (max-width: 575.98px) {
  .card-list {
    display: flex;
    flex-wrap: wrap;
    gap: 24px 0px;
  }
  .card-list > * {
    width: calc((100% - 0px) / 1);
  }
}

.acc-list .acc-item {
  border-bottom: 1px solid #000000;
}
.acc-list .acc-item .acc-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  padding: 24px 0;
}
.acc-list .acc-item .acc-head h3 {
  transition: color 0.3s, opacity 0.3s;
}
.acc-list .acc-item .acc-head:after {
  font-family: "icomoon";
  content: "\e902";
  flex-shrink: 0;
  font-size: 2rem;
  margin-left: 20px;
  transform: rotate(90deg);
  transition: all 0.3s;
}
.acc-list .acc-item .acc-head:hover h3 {
  opacity: 0.7;
}
.acc-list .acc-item .acc-body {
  padding-bottom: 24px;
  display: none;
}
.acc-list .acc-item.active .acc-head:after {
  transform: rotate(-90deg);
}

.parallax-inner {
  overflow: hidden;
}
.parallax-inner img {
  transform-origin: bottom;
  scale: 1.25;
  translate: 0 0;
}

.pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 48px;
}
@media (max-width: 575.98px) {
  .pagination {
    margin-top: 32px;
  }
}
.pagination .page-item {
  all: unset;
  width: 32px;
  height: 32px;
  box-sizing: border-box;
  border: 1px solid rgb(var(--color-black));
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  transition: all 0.3s;
  cursor: pointer;
}
.pagination .page-item.disabled {
  pointer-events: none;
}
.pagination .page-item:hover {
  background-color: rgb(var(--color-black));
  color: rgb(var(--color-white));
}
.pagination .page-item.active {
  border-color: rgb(var(--color-red));
  background-color: rgb(var(--color-red));
  color: rgb(var(--color-white));
}

.tags-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.tags-list .tag-item {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px;
  background-color: rgb(var(--color-grey));
  border-radius: 4px;
}
.tags-list .tag-item:before {
  font-family: "icomoon";
  content: "\e910";
  color: rgb(var(--color-red));
  transition: all 0.3s;
}
.tags-list .tag-item:hover {
  background-color: rgb(var(--color-red));
  color: rgb(var(--color-white));
}
.tags-list .tag-item:hover:before {
  color: rgb(var(--color-white));
}

.product-item {
  text-decoration: none;
  position: relative;
  padding: 20px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
}
.product-item h3 {
  margin-bottom: 0;
}
.product-item p {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
.product-item .img-box {
  margin: 16px 0;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(var(--color-font), 0.1);
  position: relative;
}
.product-item .img-box img {
  width: 100%;
  aspect-ratio: 1;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.3s;
}
.product-item .img-box img.hover {
  display: inline-block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
.product-item .btn-row {
  margin-top: 16px;
}
.product-item .btn-row .btn {
  width: 100%;
  justify-content: space-between;
  background-color: rgb(var(--color-black));
}
.product-item .btn-row .btn:before {
  content: "";
  display: inline-block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.product-item:hover img {
  transform: scale(1.05);
}
.product-item:hover img.default {
  opacity: 0;
}
.product-item:hover img.hover {
  opacity: 1;
}
.product-item:hover .btn-row .btn {
  background-color: rgb(var(--color-red));
}

.news-item {
  display: block;
  text-decoration: none;
  position: relative;
  background-color: rgb(var(--color-white));
  border-radius: 0 0 16px 0;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
}
.news-item h3 {
  margin-bottom: 16px;
  transition: color 0.3s;
}
.news-item p {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
.news-item .img-box {
  overflow: hidden;
}
.news-item .img-box img {
  width: 100%;
  aspect-ratio: 1.6666666667;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.3s;
}
.news-item .text-box {
  padding: 16px;
}
.news-item .text-box .date {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(var(--color-font), 0.5);
}
.news-item .text-box .date:after {
  font-family: "icomoon";
  content: "\e90a";
  color: rgb(var(--color-font));
  transform: rotate(-45deg);
  transition: all 0.3s;
}
.news-item:hover img {
  transform: scale(1.05);
}
.news-item:hover h3 {
  color: rgb(var(--color-red));
}
.news-item:hover .date:after {
  transform: rotate(0);
}

.solution-item {
  display: block;
  text-decoration: none;
  position: relative;
  background-color: rgb(var(--color-white));
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
}
.solution-item h3 {
  margin-bottom: 16px;
  transition: color 0.3s;
}
.solution-item p {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
.solution-item .img-box {
  overflow: hidden;
}
.solution-item .img-box img {
  width: 100%;
  aspect-ratio: 0.875;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.3s;
}
.solution-item .text-box {
  text-align: center;
  padding: 16px;
}
.solution-item .text-box .date {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(var(--color-font), 0.5);
}
.solution-item .text-box .date:after {
  font-family: "icomoon";
  content: "\e90a";
  color: rgb(var(--color-font));
  transform: rotate(-45deg);
  transition: all 0.3s;
}
.solution-item:hover img {
  transform: scale(1.05);
}
.solution-item:hover h3 {
  color: rgb(var(--color-red));
}
.solution-item:hover .date:after {
  transform: rotate(0);
}

.slick-arrow {
  font-size: 0;
  width: 32px;
  height: 64px;
  outline: none;
  border: none;
  background-color: rgb(var(--color-red));
  color: rgb(var(--color-white));
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  z-index: 1;
  transition: background-color 0.3s;
  cursor: pointer;
}
.slick-arrow:before {
  font-family: "icomoon";
  content: "\e901";
  font-size: inherit;
  font-size: 3.2rem;
}
.slick-arrow.slick-next {
  left: unset;
  right: 0;
}
.slick-arrow.slick-next:before {
  content: "\e902";
}
.slick-arrow:hover {
  background-color: rgb(var(--color-red), 0.7);
}
@media (max-width: 767.98px) {
  .slick-arrow {
    width: 22px;
    height: 45px;
  }
  .slick-arrow:before {
    font-size: 2.2rem;
  }
}

.home-banner {
  padding: 0;
  margin-top: 144px;
}
@media (max-width: 991.98px) {
  .home-banner {
    margin-top: 64px;
  }
}
.home-banner .home-banner-slider .item {
  position: relative;
}
.home-banner .home-banner-slider .item .media-box {
  display: inline-block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.home-banner .home-banner-slider .item .media-box:before {
  content: "";
  background-color: rgba(var(--color-opposite), 0.3);
  display: inline-block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.home-banner .home-banner-slider .item .media-box img,
.home-banner .home-banner-slider .item .media-box video {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.home-banner .home-banner-slider .item .container {
  position: relative;
  z-index: 1;
}
.home-banner .home-banner-slider .item .container .content {
  text-align: center;
  padding: 72px 0;
  height: calc(var(--vh, 1vh) * 100 - 144px);
  min-height: 640px;
  display: flex;
  align-items: center;
  max-width: 640px;
  margin: 0 auto;
}
@media (max-width: 991.98px) {
  .home-banner .home-banner-slider .item .container .content {
    height: calc(var(--vh, 1vh) * 100 - 64px);
    min-height: 480px;
    padding: 48px 0;
  }
}
@media (max-width: 575.98px) {
  .home-banner .home-banner-slider .item .container .content {
    min-height: 400px;
  }
}
@media (max-width: 767.98px) {
  .home-banner .home-banner-slider .slick-arrow {
    top: unset;
    transform: unset;
    bottom: 0;
  }
}

.banner {
  padding: 0;
  margin-top: 144px;
}
@media (max-width: 991.98px) {
  .banner {
    margin-top: 64px;
  }
}
.banner .wallpaper:before {
  content: "";
  background-color: rgba(var(--color-opposite), 0.3);
  display: inline-block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.banner .container {
  position: relative;
  z-index: 1;
}
.banner .content {
  padding: 128px 0 72px;
}
@media (max-width: 991.98px) {
  .banner .content {
    padding: 96px 0 48px;
  }
}
@media (max-width: 575.98px) {
  .banner .content {
    padding: 64px 0 40px;
  }
}
.banner .content .text-box {
  max-width: 640px;
}

.breadcrumbs {
  padding: 0;
  width: 100%;
  background-color: rgb(var(--color-black));
  --color-font: var(--color-white);
}
.breadcrumbs a {
  text-decoration: none;
}
.breadcrumbs .breadcrumbs-list {
  padding: 16px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
@media (max-width: 575.98px) {
  .breadcrumbs .breadcrumbs-list {
    padding: 12px 0;
    font-size: 1.4rem;
  }
}
.breadcrumbs .breadcrumbs-list .breadcrumb-item {
  font-weight: 500;
}
.breadcrumbs .breadcrumbs-list .breadcrumb-item + .breadcrumb-item:before {
  content: "/";
  margin: 0 8px;
}

.about-us .content {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
}
.about-us .content .tabs {
  width: 400px;
  counter-reset: aboutcounter;
}
.about-us .content .tabs p {
  font-weight: 500;
  font-size: 1.5rem;
  background-color: rgb(var(--color-grey));
  padding: 16px 40px 16px 16px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s;
}
.about-us .content .tabs p:after {
  content: "0" counter(aboutcounter);
  counter-increment: aboutcounter;
  display: inline-block;
  width: 32px;
  height: 32px;
  font-size: 1.4rem;
  position: absolute;
  top: 0;
  right: 0;
  border: 3px solid rgb(var(--color-white));
  background-color: rgb(var(--color-grey));
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}
.about-us .content .tabs p:hover {
  color: rgb(var(--color-red));
}
.about-us .content .tabs p.active {
  background-color: rgb(var(--color-red));
  color: rgb(var(--color-white));
}
.about-us .content .tabs p.active:after {
  background-color: rgb(var(--color-red));
}
.about-us .content .right-content {
  width: calc(100% - 432px);
}
.about-us .content .right-content .about-slider {
  width: 100%;
}
.about-us .content .right-content .item {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.about-us .content .right-content .item h3 {
  width: 100%;
  display: none;
}
.about-us .content .right-content .item .col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.about-us .content .right-content .item .col .text-box p {
  font-size: 1.5rem;
}
.about-us .content .right-content .item .col .img-box img {
  width: 100%;
  aspect-ratio: 1.3333333333;
  -o-object-fit: cover;
     object-fit: cover;
}
.about-us .content .right-content .item .col:nth-child(even) .img-box {
  order: -1;
}
@media (max-width: 991.98px) {
  .about-us .content {
    flex-direction: column;
  }
  .about-us .content .tabs {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
  }
  .about-us .content .tabs h2 {
    width: 100%;
  }
  .about-us .content .tabs p {
    flex: 1;
    min-width: 140px;
    font-size: 1.3rem;
    padding: 12px 40px 12px 12px;
  }
  .about-us .content .right-content {
    width: 100%;
  }
  .about-us .content .right-content .item .col {
    min-width: 260px;
  }
}
@media (max-width: 575.98px) {
  .about-us .content .tabs p {
    width: 100%;
    flex: unset;
  }
  .about-us .content .right-content .item .col {
    flex: unset;
    width: 100%;
    min-width: unset;
  }
}

.stats .list {
  display: flex;
  flex-wrap: wrap;
  gap: 48px 32px;
}
.stats .list > * {
  width: calc((100% - 96px) / 4);
}
@media (max-width: 991.98px) {
  .stats .list {
    display: flex;
    flex-wrap: wrap;
    gap: 40px 32px;
  }
  .stats .list > * {
    width: calc((100% - 32px) / 2);
  }
}
@media (max-width: 575.98px) {
  .stats .list {
    display: flex;
    flex-wrap: wrap;
    gap: 32px 0px;
  }
  .stats .list > * {
    width: calc((100% - 0px) / 1);
  }
}
.stats .list .item {
  display: flex;
  align-items: flex-start;
  gap: 24px;
}
.stats .list .item .icon-box {
  width: 48px;
  flex-shrink: 0;
}
.stats .list .item .icon-box img {
  width: 100%;
}
.stats .list .item .text-box p .number {
  display: flex;
  flex-wrap: wrap;
  font-weight: 600;
  color: rgb(var(--color-red));
}

.latest-news .title-box {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}
.latest-news .title-box .btn {
  flex-shrink: 0;
}
@media (max-width: 575.98px) {
  .latest-news .title-box {
    flex-direction: column;
    align-items: center;
    margin-bottom: 32px;
  }
  .latest-news .title-box h2 {
    margin-bottom: 0;
  }
}
.latest-news .news-slider {
  margin: 0 -16px;
}
.latest-news .news-slider .item {
  padding: 16px;
}

.solutions .solutions-slider {
  margin: 0 -16px;
}
.solutions .solutions-slider .slick-list {
  overflow: visible;
}
.solutions .solutions-slider .item {
  padding: 16px;
}
.solutions .btn-row {
  text-align: center;
}

.faqs .acc-list .acc-item {
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
  padding: 24px;
  border: none;
}
.faqs .acc-list .acc-item + .acc-item {
  margin-top: 24px;
}
.faqs .acc-list .acc-item .acc-head {
  padding: 0;
}
.faqs .acc-list .acc-item .acc-body {
  padding: 24px 0 0;
}
.faqs .acc-list .acc-item.active .acc-head h3 {
  color: rgb(var(--color-red));
}
.faqs .acc-list .acc-item.active .acc-head:after {
  transform: rotate(-90deg);
}
@media (max-width: 575.98px) {
  .faqs .acc-list .acc-item {
    padding: 16px;
  }
  .faqs .acc-list .acc-item + .acc-item {
    margin-top: 16px;
  }
  .faqs .acc-list .acc-item .acc-body {
    padding: 16px 0 0;
  }
}

.listing {
  display: flex;
  flex-wrap: wrap;
  gap: 48px 32px;
}
.listing > * {
  width: calc((100% - 64px) / 3);
}
@media (max-width: 991.98px) {
  .listing {
    display: flex;
    flex-wrap: wrap;
    gap: 32px 24px;
  }
  .listing > * {
    width: calc((100% - 24px) / 2);
  }
}
@media (max-width: 575.98px) {
  .listing {
    display: flex;
    flex-wrap: wrap;
    gap: 24px 0px;
  }
  .listing > * {
    width: calc((100% - 0px) / 1);
  }
}

.news-detail {
  margin-top: 144px;
}
@media (max-width: 991.98px) {
  .news-detail {
    margin-top: 64px;
  }
}
.news-detail .article {
  max-width: 800px;
  margin: 0 auto;
}
.news-detail .article .article-header {
  margin-bottom: 32px;
}
.news-detail .article .article-header .article-meta {
  display: flex;
  align-items: center;
  gap: 24px;
  color: rgba(var(--color-font), 0.5);
}
.news-detail .article .article-header .article-meta .date {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.news-detail .article .article-cover {
  margin-bottom: 32px;
}
.news-detail .article .article-cover img {
  width: 100%;
  aspect-ratio: 1.7777777778;
  -o-object-fit: cover;
     object-fit: cover;
}
.news-detail .article .article-body {
  line-height: 1.8;
}
.news-detail .article .article-body img {
  width: 100%;
  height: auto;
  margin: 24px 0;
}
.news-detail .article .article-body blockquote {
  margin: 24px 0;
  padding: 24px 32px;
  border-left: 4px solid rgb(var(--color-red));
  background-color: rgb(var(--color-grey));
}
.news-detail .article .article-body blockquote p {
  margin-bottom: 0;
  font-style: italic;
  font-size: 1.8rem;
  padding: 0;
  border: none;
}
@media (max-width: 575.98px) {
  .news-detail .article .article-body blockquote {
    padding: 16px 20px;
  }
  .news-detail .article .article-body blockquote p {
    font-size: 1.6rem;
  }
}
.news-detail .article .article-share {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid rgba(var(--color-font), 0.1);
  display: flex;
  align-items: center;
  gap: 16px;
}
.news-detail .article .article-share span {
  font-weight: 600;
}
.news-detail .article .article-share .social-bar {
  display: flex;
  align-items: center;
  gap: 12px;
}
.news-detail .article .article-share .social-bar a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgb(var(--color-black));
  color: rgb(var(--color-white));
  text-decoration: none;
  transition: background-color 0.3s;
}
.news-detail .article .article-share .social-bar a:hover {
  background-color: rgb(var(--color-red));
}
.news-detail .related-news {
  margin-top: 64px;
}
.news-detail .related-news h2 {
  margin-bottom: 32px;
}
.news-detail .related-news .related-news-slider {
  margin: 0 -16px;
}
.news-detail .related-news .related-news-slider .item {
  padding: 16px;
}
.news-detail .related-news .related-news-slider:not(.slick-initialized) {
  display: flex;
  flex-wrap: wrap;
}
.news-detail .related-news .related-news-slider:not(.slick-initialized) .item {
  width: 33.333%;
}
@media (max-width: 575.98px) {
  .news-detail .related-news {
    margin-top: 40px;
  }
  .news-detail .related-news h2 {
    margin-bottom: 24px;
  }
}

.not-found {
  text-align: center;
  margin-top: 144px;
}
@media (max-width: 991.98px) {
  .not-found {
    margin-top: 64px;
  }
}

.content-main {
  margin-top: 144px;
}
@media (max-width: 991.98px) {
  .content-main {
    margin-top: 64px;
  }
}
.content-main .content {
  max-width: 800px;
  margin: 0 auto;
}
.content-main h1 {
  text-align: center;
  margin-bottom: 48px;
}

.category-module {
  padding: 96px 0;
  position: relative;
}
@media (max-width: 991.98px) {
  .category-module {
    padding: 72px 0;
  }
}
@media (max-width: 575.98px) {
  .category-module {
    padding: 48px 0;
  }
}
.category-module .content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 48px;
}
@media (max-width: 767.98px) {
  .category-module .content {
    gap: 32px;
  }
}
.category-module .text-box {
  width: 47%;
}
.category-module .text-box .sub-categories {
  margin: 0;
  padding: 0;
  -moz-column-count: 2;
       column-count: 2;
  -moz-column-gap: 32px;
       column-gap: 32px;
}
.category-module .text-box .sub-categories li {
  margin: 0;
  padding: 0;
}
.category-module .text-box .sub-categories li:before {
  display: none;
}
.category-module .text-box .sub-categories li + li {
  margin-top: 0.5em;
}
@media (max-width: 991.98px) {
  .category-module .text-box {
    width: 100%;
  }
}
.category-module .img-box {
  width: 47%;
}
@media (max-width: 991.98px) {
  .category-module .img-box {
    width: 100%;
  }
}
.category-module.reverse .img-box {
  order: -1;
}
@media (max-width: 991.98px) {
  .category-module.reverse .img-box {
    order: 0;
  }
}

.feature-products .products-slider {
  margin: 0 -16px;
}
.feature-products .products-slider .item {
  padding: 16px;
  height: auto;
}
.feature-products .products-slider .slick-track {
  display: flex;
}
.feature-products .products-slider .product-item {
  height: 100%;
  display: flex;
  flex-direction: column;
}
.feature-products .products-slider .product-item > p {
  flex: 1;
}
.feature-products .btn-row {
  text-align: center;
}

.magnets-archive:first-child.magnets-archive {
  margin-top: 144px;
}
@media (max-width: 991.98px) {
  .magnets-archive:first-child.magnets-archive {
    margin-top: 64px;
  }
}
.magnets-archive .desc-box {
  max-width: unset;
}
.magnets-archive .magnets-container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
}
@media (max-width: 991.98px) {
  .magnets-archive .magnets-container {
    gap: 24px;
  }
}
@media (max-width: 767.98px) {
  .magnets-archive .magnets-container {
    flex-direction: column;
  }
}
.magnets-archive .filter-column {
  width: 280px;
  flex-shrink: 0;
}
@media (max-width: 991.98px) {
  .magnets-archive .filter-column {
    width: 200px;
  }
}
@media (max-width: 767.98px) {
  .magnets-archive .filter-column {
    width: 100%;
  }
}
.magnets-archive .filter-column a {
  text-decoration: none;
}
.magnets-archive .filter-column h3 {
  background-color: rgb(var(--color-red));
  color: rgb(var(--color-white));
  padding: 8px 16px;
  margin: 0;
}
.magnets-archive .filter-column .categories ul {
  margin: 0;
  padding: 0;
}
.magnets-archive .filter-column .categories ul li {
  margin: 0;
  padding: 0;
}
.magnets-archive .filter-column .categories ul li:before {
  display: none;
}
.magnets-archive .filter-column .categories .categories-list > li {
  background-color: rgb(var(--color-grey));
  padding: 12px;
  margin-top: 2px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
  transition: all 0.3s;
}
.magnets-archive .filter-column .categories .categories-list > li.has-children {
  cursor: pointer;
}
.magnets-archive .filter-column .categories .categories-list > li.has-children:after {
  font-family: "icomoon";
  content: "\e902";
  flex-shrink: 0;
  margin-left: 8px;
  transform: rotate(90deg);
  transition: all 0.3s;
}
.magnets-archive .filter-column .categories .categories-list > li.has-children:hover {
  background-color: rgba(var(--color-black), 0.15);
}
.magnets-archive .filter-column .categories .categories-list > li.has-children.active {
  background-color: rgba(var(--color-black), 0.15);
}
.magnets-archive .filter-column .categories .categories-list > li.has-children.active:after {
  transform: rotate(-90deg);
}
.magnets-archive .filter-column .categories .categories-list > li ul {
  width: 100%;
  order: 1;
  margin-top: 8px;
  cursor: default;
  display: none;
}
.magnets-archive .filter-column .categories .categories-list > li ul li {
  padding: 4px 8px;
}
.magnets-archive .filter-column .categories .categories-list > li ul li + li {
  border-top: 2px solid rgb(var(--color-white));
}
.magnets-archive .filter-column .categories .categories-list > li ul li a {
  display: block;
}
.magnets-archive .filter-column .tags {
  margin-top: 20px;
}
.magnets-archive .filter-column .tags .tags-list {
  padding-top: 8px;
}
.magnets-archive .magnets-listing {
  display: flex;
  flex-wrap: wrap;
  gap: 48px 32px;
}
.magnets-archive .magnets-listing > * {
  width: calc((100% - 32px) / 2);
}
@media (max-width: 991.98px) {
  .magnets-archive .magnets-listing {
    display: flex;
    flex-wrap: wrap;
    gap: 32px 24px;
  }
  .magnets-archive .magnets-listing > * {
    width: calc((100% - 24px) / 2);
  }
}
@media (max-width: 575.98px) {
  .magnets-archive .magnets-listing {
    display: flex;
    flex-wrap: wrap;
    gap: 24px 0px;
  }
  .magnets-archive .magnets-listing > * {
    width: calc((100% - 0px) / 1);
  }
}

.product-detail-archive {
  margin-top: 144px;
}
@media (max-width: 991.98px) {
  .product-detail-archive {
    margin-top: 64px;
  }
}
.product-detail-archive .magnets-column {
  flex: 1;
  min-width: 0;
}
@media (max-width: 767.98px) {
  .product-detail-archive .magnets-column {
    width: 100%;
    min-width: 0;
    overflow: hidden;
  }
}

.product-detail .product-detail-top {
  display: flex;
  gap: 32px;
  align-items: flex-start;
}
@media (max-width: 991.98px) {
  .product-detail .product-detail-top {
    gap: 24px;
  }
}
@media (max-width: 767.98px) {
  .product-detail .product-detail-top {
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }
}
.product-detail .product-gallery {
  width: 45%;
  flex-shrink: 0;
}
@media (max-width: 1199.98px) {
  .product-detail .product-gallery {
    width: 42%;
  }
}
@media (max-width: 991.98px) {
  .product-detail .product-gallery {
    width: 45%;
  }
}
@media (max-width: 767.98px) {
  .product-detail .product-gallery {
    width: 100%;
    min-width: 0;
  }
}
.product-detail .product-gallery .product-slider-main .slide-item img {
  width: 100%;
  aspect-ratio: 1;
  -o-object-fit: cover;
     object-fit: cover;
}
.product-detail .product-gallery .product-slider-main .slick-arrow {
  display: flex !important;
}
.product-detail .product-gallery .product-slider-nav {
  margin-top: 12px;
  margin-left: -6px;
  margin-right: -6px;
}
.product-detail .product-gallery .product-slider-nav .slide-item {
  padding: 0 6px;
  cursor: pointer;
}
.product-detail .product-gallery .product-slider-nav .slide-item img {
  width: 100%;
  aspect-ratio: 1;
  -o-object-fit: cover;
     object-fit: cover;
  border: 2px solid transparent;
  transition: border-color 0.3s;
}
.product-detail .product-gallery .product-slider-nav .slide-item:hover img, .product-detail .product-gallery .product-slider-nav .slide-item.slick-current img {
  border-color: rgb(var(--color-red));
}
.product-detail .product-gallery .product-slider-nav .slick-arrow {
  display: none !important;
}
.product-detail .product-info {
  flex: 1;
}
.product-detail .product-info h2 {
  position: relative;
  padding-bottom: 16px;
  margin-bottom: 24px;
}
.product-detail .product-info h2:after {
  content: "";
  display: block;
  width: 48px;
  height: 3px;
  background-color: rgb(var(--color-red));
  position: absolute;
  bottom: 0;
  left: 0;
}
.product-detail .product-info .product-meta p {
  padding: 10px 0;
  border-bottom: 1px solid rgba(var(--color-font), 0.1);
}
.product-detail .product-info .product-meta p strong {
  margin-right: 8px;
}
.product-detail .product-info .btn-row {
  margin-top: 24px;
}
.product-detail .product-detail-body {
  margin-top: 48px;
}
@media (max-width: 575.98px) {
  .product-detail .product-detail-body {
    margin-top: 32px;
  }
}
.product-detail .detail-tabs .tab-nav {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-bottom: 2px solid rgba(var(--color-font), 0.1);
}
.product-detail .detail-tabs .tab-nav .tab-btn {
  all: unset;
  padding: 12px 24px;
  font-size: 1.6rem;
  font-weight: 600;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  flex-shrink: 0;
  white-space: nowrap;
  transition: all 0.3s;
}
@media (max-width: 575.98px) {
  .product-detail .detail-tabs .tab-nav .tab-btn {
    padding: 10px 16px;
    font-size: 1.4rem;
  }
}
.product-detail .detail-tabs .tab-nav .tab-btn:hover {
  color: rgb(var(--color-red));
}
.product-detail .detail-tabs .tab-nav .tab-btn.active {
  color: rgb(var(--color-red));
  border-bottom-color: rgb(var(--color-red));
}
.product-detail .detail-tabs .tab-content {
  display: none;
  padding: 32px 0;
}
@media (max-width: 575.98px) {
  .product-detail .detail-tabs .tab-content {
    padding: 24px 0;
  }
}
.product-detail .detail-tabs .tab-content.active {
  display: block;
}
.product-detail .detail-tabs .tab-content h3 {
  margin-bottom: 16px;
}
.product-detail .detail-tabs .tab-content h4 {
  margin: 24px 0 12px;
}
.product-detail .detail-tabs .tab-content p + p {
  margin-top: 12px;
}
.product-detail .detail-tabs .tab-content ul {
  padding-left: 20px;
}
.product-detail .detail-tabs .tab-content ul li + li {
  margin-top: 6px;
}
.product-detail .detail-tabs .tab-content img {
  width: 100%;
}
.product-detail .detail-tabs .spec-table {
  width: 100%;
  border-collapse: collapse;
}
@media (max-width: 575.98px) {
  .product-detail .detail-tabs .spec-table {
    display: block;
    overflow-x: auto;
  }
}
.product-detail .detail-tabs .spec-table th,
.product-detail .detail-tabs .spec-table td {
  padding: 12px 16px;
  text-align: left;
  border: 1px solid rgba(var(--color-font), 0.1);
}
@media (max-width: 575.98px) {
  .product-detail .detail-tabs .spec-table th,
  .product-detail .detail-tabs .spec-table td {
    padding: 8px 12px;
    font-size: 1.4rem;
    white-space: nowrap;
  }
}
.product-detail .detail-tabs .spec-table thead th {
  background-color: rgb(var(--color-red));
  color: rgb(var(--color-white));
  font-weight: 600;
}
.product-detail .detail-tabs .spec-table tbody tr:nth-child(even) {
  background-color: rgb(var(--color-grey));
}

.form-box form {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
@media (max-width: 575.98px) {
  .form-box form {
    gap: 16px;
  }
}
.form-box form input[type=text],
.form-box form input[type=email],
.form-box form textarea {
  width: 100%;
  height: 48px;
  outline: none !important;
  box-shadow: unset;
  padding: 0 16px;
  border: 1px solid rgba(var(--color-font), 0.5);
  border-radius: 8px;
  transition: all 0.3s;
}
.form-box form input[type=text]:focus,
.form-box form input[type=email]:focus,
.form-box form textarea:focus {
  border: 1px solid rgb(var(--color-font));
}
.form-box form textarea {
  resize: none;
  height: 140px;
  padding: 16px;
}
.form-box form input[type=submit] {
  border: none;
}
.form-box .field-item {
  width: 100%;
  font-size: 0;
  line-height: 1;
  margin: 0;
}
.form-box .field-item.half {
  width: calc(50% - 12px);
}
@media (max-width: 575.98px) {
  .form-box .field-item.half {
    width: 100%;
  }
}

.get-in-touch a {
  text-decoration: none;
}
.get-in-touch .content {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
}
.get-in-touch .content .text-box {
  width: 400px;
  flex-shrink: 0;
  margin-right: 32px;
}
.get-in-touch .content .text-box .contact-text {
  display: flex;
  align-items: flex-start;
}
.get-in-touch .content .text-box .contact-text .icon {
  font-size: 1.8rem;
  flex-shrink: 0;
  margin: 3px 8px 0 0;
  color: rgb(var(--color-red));
}
@media (max-width: 991.98px) {
  .get-in-touch .content .text-box {
    width: 100%;
    margin-right: 0;
    margin-bottom: 32px;
  }
}
.get-in-touch .content .form-box {
  flex: 1;
  max-width: 600px;
}
@media (max-width: 991.98px) {
  .get-in-touch .content .form-box {
    max-width: 100%;
  }
}
.get-in-touch .content .map-box {
  width: 100%;
  margin-top: 64px;
  border-radius: 8px;
  overflow: hidden;
  width: 100%;
  padding-top: 50%;
  position: relative;
}
@media (max-width: 767.98px) {
  .get-in-touch .content .map-box {
    margin-top: 40px;
    padding-top: 75%;
  }
}
.get-in-touch .content .map-box iframe {
  display: inline-block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.wpcf7-not-valid-tip {
  display: none !important;
}

.wpcf7-not-valid {
  border-color: red !important;
}

.wpcf7-response-output {
  width: 100%;
  border: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

.invalid .wpcf7-response-output {
  color: red !important;
}

.wpcf7-spinner {
  display: none !important;
}

.submit-box {
  display: inline-block;
  position: relative;
  margin: 0;
}
.submit-box:after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border-top: 1px solid var(--color-font);
  border-left: 1px solid var(--color-font);
  position: absolute;
  top: calc(50% - 10px);
  left: calc(50% - 10px);
  animation: loading 1s infinite linear;
  opacity: 0;
  pointer-events: none;
}

.submitting .submit-box input {
  background-color: var(--color-red) !important;
  color: var(--color-red) !important;
}
.submitting .submit-box:after {
  opacity: 1;
}/*# sourceMappingURL=style.css.map */