@charset "UTF-8";
:root {
  --color-primary: #08287e;
  --color-primary-rgb: 8, 40, 126;
  --color-second: #108cff;
  --color-second-rgb: 16, 140, 255;
  --color-text: #333333;
  --color-text-light: #474747;
  --color-text-gray: #777777;
  --color-placeholder: #9f9f9f;
  --color-border: #dddddd;
  --bg-light: #edf3f8;
}

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html, body {
  color: #000;
  font-size: clamp(0.875rem, 0.7372080089rem + 0.2224694105vw, 1rem);
  font-family: "PingFang SC", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

main {
  display: block;
}

h1, h2, h3, h4, h5, h6, p {
  margin: 0;
}

a {
  text-decoration: none;
  color: inherit;
}

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

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  border: none;
}

.container {
  width: 100%;
  max-width: 1890px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, -7.7064794216rem + 14.4605116796vw, 9.375rem);
}

.relative {
  position: relative;
  z-index: 2;
}

.text-center {
  text-align: center;
}

.d-flex {
  display: flex;
}

.flex-center-center {
  align-items: center !important;
  justify-content: center !important;
}

.flex-end-between {
  align-items: flex-end !important;
  justify-content: space-between !important;
}

@media screen and (min-width: 992px) {
  .flex-lg-end-between {
    align-items: flex-end;
    justify-content: space-between;
  }
}
.g-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.g-anchor {
  position: absolute;
  left: 0;
  top: calc(-1 * clamp(3.75rem, 2.372080089rem + 2.2246941046vw, 5rem));
}

.g-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin-top: clamp(1.875rem, -1.5697997775rem + 5.5617352614vw, 5rem);
  list-style: none;
}
.g-pagination li.page-item:first-child > *, .g-pagination li.page-item:last-child > * {
  position: relative;
  display: block;
}
.g-pagination li.page-item:first-child > *::before, .g-pagination li.page-item:last-child > *::before {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  content: "\e60f";
  font-family: "iconfont" !important;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: clamp(1rem, 0.8622080089rem + 0.2224694105vw, 1.125rem);
  display: inline-block;
}
.g-pagination li.page-item:first-child > * {
  transform: rotateY(180deg);
}
.g-pagination li.active.disabled {
  opacity: 1;
}
.g-pagination li.active span {
  background-color: var(--color-primary);
  color: #fff;
}
.g-pagination li.disabled {
  opacity: 0.65;
}
.g-pagination li a,
.g-pagination li span {
  font-size: clamp(0.875rem, 0.875rem + 0vw, 0.875rem);
  margin: 0 8px;
  padding: 8px 16px;
  border-radius: 0.25rem;
  color: #454545;
  background-color: rgba(0, 0, 0, 0.1);
  border: none;
}
.g-pagination li a.active:hover {
  color: #fff;
}
.g-pagination li a:hover {
  color: var(--color-primary);
}

.g-editor {
  line-height: 1.6;
  color: #666666;
}
.g-editor img {
  max-width: 100%;
  height: auto !important;
}
.g-editor table {
  max-width: 100% !important;
}
.g-editor iframe, .g-editor video {
  aspect-ratio: 16/9;
}

/* 设置滚动条的样式 */
.h-auto {
  overflow-y: auto;
  overscroll-behavior: contain;
}
.h-auto::-webkit-scrollbar {
  width: 2px;
}
.h-auto::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.05);
}
.h-auto::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.1);
}

/* 针对特定列数多的表格 */
.responsive-table {
  width: 100%;
  overflow-x: auto;
  display: block; /* 让表格可以滚动 */
  white-space: nowrap; /* 防止换行 */
  -webkit-overflow-scrolling: touch;
}

.responsive-table table {
  border-collapse: collapse;
  width: 100%;
}

.form-notice {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%) translateY(-20px);
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 14px;
  color: #fff;
  z-index: 10000;
  opacity: 0;
  transition: all 0.3s ease;
  pointer-events: none;
}
.form-notice--success {
  background-color: #2ecc71;
}
.form-notice--error {
  background-color: #e74c3c;
}
.form-notice--visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.download-search {
  margin: clamp(1.25rem, -0.8168798665rem + 3.3370411568vw, 3.125rem) auto;
  width: 70%;
  height: clamp(3.75rem, 2.372080089rem + 2.2246941046vw, 5rem);
  position: relative;
}
.download-search input {
  width: 100%;
  height: 100%;
  padding-left: 3rem;
  padding-right: 10rem;
  border-radius: 2.5rem;
  border: none;
  outline: none;
  background: #fff;
  font-size: clamp(0.875rem, 0.4616240267rem + 0.6674082314vw, 1.25rem);
}
.download-search button {
  position: absolute;
  width: clamp(6.25rem, 3.494160178rem + 4.4493882091vw, 8.75rem);
  right: 0;
  top: 0;
  height: 100%;
  border-radius: clamp(1.875rem, 1.1860400445rem + 1.1123470523vw, 2.5rem);
  border: none;
  outline: none;
  background: var(--color-primary);
  z-index: 2;
  color: #fff;
}
.download-search button i {
  font-size: clamp(1rem, 0.4488320356rem + 0.8898776418vw, 1.5rem);
}
@media screen and (max-width: 991px) {
  .download-search {
    width: 100%;
  }
}

.page-search {
  padding: clamp(2.5rem, -0.255839822rem + 4.4493882091vw, 5rem) 0;
  padding-top: clamp(5rem, -0.511679644rem + 8.8987764182vw, 10rem);
  background: #f1f4f7;
}

.search-category {
  padding: 2rem 0;
  border-bottom: 1px solid #dedede;
  margin-bottom: 2.5rem;
}
.search-category ul li {
  position: relative;
}
.search-category ul li:not(:first-child) {
  padding-left: 2rem;
}
.search-category ul li:not(:last-child) {
  padding-right: 2rem;
}
.search-category ul li:not(:last-child)::after {
  content: "";
  width: 1px;
  height: 1rem;
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
.search-category ul li.active a {
  color: var(--color-primary);
  font-weight: bold;
}
.search-category ul li a {
  font-size: clamp(1rem, 0.4488320356rem + 0.8898776418vw, 1.5rem);
  color: #333;
}

.global-search {
  margin: clamp(1.25rem, -0.8168798665rem + 3.3370411568vw, 3.125rem) auto;
  width: 70%;
  height: clamp(3.75rem, 2.372080089rem + 2.2246941046vw, 5rem);
  position: relative;
}
.global-search input {
  width: 100%;
  height: 100%;
  padding-left: 3rem;
  padding-right: 10rem;
  border-radius: 2.5rem;
  border: none;
  outline: none;
  background: #fff;
  font-size: clamp(0.875rem, 0.4616240267rem + 0.6674082314vw, 1.25rem);
}
.global-search button {
  position: absolute;
  width: clamp(6.25rem, 3.494160178rem + 4.4493882091vw, 8.75rem);
  right: 0;
  top: 0;
  height: 100%;
  border-radius: clamp(1.875rem, 1.1860400445rem + 1.1123470523vw, 2.5rem);
  border: none;
  outline: none;
  background: var(--color-primary);
  z-index: 2;
  color: #fff;
}
.global-search button i {
  font-size: clamp(1rem, 0.4488320356rem + 0.8898776418vw, 1.5rem);
}
@media screen and (max-width: 991px) {
  .global-search {
    width: 100%;
  }
}

.search-list .item {
  display: block;
  margin-bottom: clamp(0.625rem, -0.0639599555rem + 1.1123470523vw, 1.25rem);
}
.search-list .item a {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: #fff;
  transition: all 0.3s;
  padding: clamp(0.625rem, -0.3395439377rem + 1.5572858732vw, 1.5rem) clamp(0.9375rem, -2.1628197998rem + 5.0055617353vw, 3.75rem);
  color: #333;
}
.search-list .item a:hover {
  border-radius: clamp(0.5rem, -0.0511679644rem + 0.8898776418vw, 1rem);
  box-shadow: 0 clamp(0.25rem, -0.0255839822rem + 0.4449388209vw, 0.5rem) clamp(0.5rem, -0.0511679644rem + 0.8898776418vw, 1rem) rgba(0, 0, 0, 0.1);
}
.search-list .item h3 {
  margin-bottom: clamp(0.625rem, 0.2116240267rem + 0.6674082314vw, 1rem);
  font-weight: bold;
}
.search-list .item p {
  margin-bottom: clamp(0.625rem, -0.3395439377rem + 1.5572858732vw, 1.5rem);
}
.search-list .item time {
  color: #666;
  font-size: clamp(0.875rem, 0.7372080089rem + 0.2224694105vw, 1rem);
}

.sitemap-page {
  padding: clamp(2.5rem, -0.255839822rem + 4.4493882091vw, 5rem) 0;
  padding-top: clamp(5rem, -0.511679644rem + 8.8987764182vw, 10rem);
}
.sitemap-page h1 {
  font-size: 32px;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 2px solid #e8e8e8;
  position: relative;
}
.sitemap-page h1::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 60px;
  height: 2px;
  background: var(--color-primary);
}
.sitemap-page .container > ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.sitemap-page .container > ul > li {
  margin-bottom: 24px;
  padding: 20px 24px;
  background: #f8f9fc;
  border-radius: 8px;
  border-left: 4px solid var(--color-primary);
  transition: background 0.2s ease;
}
.sitemap-page .container > ul > li:hover {
  background: #f0f2f7;
}
.sitemap-page .container > ul > li > a {
  font-size: clamp(1rem, 0.8622080089rem + 0.2224694105vw, 1.125rem);
  font-weight: 600;
  color: #1a1a2e;
  text-decoration: none;
  display: block;
  margin-bottom: 12px;
  transition: color 0.2s ease;
}
.sitemap-page .container > ul > li > a:hover {
  color: var(--color-primary);
}
.sitemap-page .container > ul > li > ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 8px 16px;
}
.sitemap-page .container > ul > li > ul > li {
  padding: 6px 0;
}
.sitemap-page .container > ul > li > ul > li a {
  font-size: clamp(0.875rem, 0.7372080089rem + 0.2224694105vw, 1rem);
  color: #555;
  text-decoration: none;
  display: inline-block;
  padding: 4px 0;
  border-bottom: 1px solid transparent;
  transition: all 0.2s ease;
}
.sitemap-page .container > ul > li > ul > li a:hover {
  color: var(--color-primary);
  border-bottom-color: var(--color-primary);
  transform: translateX(4px);
}
.sitemap-page .container > ul > li > ul > li a[href=""] {
  color: #999;
  cursor: default;
  border-bottom: 1px dashed #ddd;
}
.sitemap-page .container > ul > li > ul > li a[href=""]:hover {
  color: #999;
  border-bottom-color: #ddd;
  transform: none;
}
@media (max-width: 768px) {
  .sitemap-page h1 {
    font-size: 24px;
    margin-bottom: 24px;
  }
  .sitemap-page .container > ul > li {
    padding: 16px 18px;
  }
  .sitemap-page .container > ul > li > a {
    font-size: 16px;
  }
  .sitemap-page .container > ul > li > ul {
    grid-template-columns: 1fr 1fr;
  }
  .sitemap-page .container > ul > li > ul > li a {
    font-size: 13px;
  }
}
@media (max-width: 480px) {
  .sitemap-page .container > ul > li {
    padding: 14px 16px;
  }
  .sitemap-page .container > ul > li > ul {
    grid-template-columns: 1fr;
  }
}

/* 全局组件 */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: background-color 0.3s, box-shadow 0.3s, transform 0.3s ease;
}
.header.transparent {
  background-color: transparent;
  box-shadow: none;
}
.header.transparent .logo img {
  filter: brightness(0) invert(1);
}
.header.transparent #navMenu::after {
  filter: brightness(0) invert(1);
}
.header.transparent #navMenu > li > a {
  color: #fff;
}
.header.transparent #navMenu > li.active > a {
  color: #fff;
}
.header.transparent #navMenu > li:hover > a {
  color: #fff;
}
.header.transparent #hamburger span {
  background-color: #fff;
}
.header.transparent.scrolled {
  background-color: #fff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
.header.transparent.scrolled .logo img {
  filter: none;
}
.header.transparent.scrolled #navMenu::after {
  filter: none;
}
.header.transparent.scrolled #navMenu > li > a {
  color: var(--color-text);
}
.header.transparent.scrolled #hamburger span {
  background-color: var(--color-text);
}
.header.scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  background: #fff;
}
.header.scrolled nav {
  height: clamp(3.75rem, 2.372080089rem + 2.2246941046vw, 5rem);
}
.header.scrolled .logo img {
  height: clamp(2.5rem, 1.122080089rem + 2.2246941046vw, 3.75rem);
  filter: grayscale(0) brightness(1);
}
.header.scrolled #navMenu > li > a {
  height: clamp(3.75rem, 2.372080089rem + 2.2246941046vw, 5rem);
  color: #333;
}
.header.scrolled #navMenu > li.active > a {
  color: var(--color-primary);
}
.header.scrolled #navMenu > li:hover > a {
  color: var(--color-primary);
}
.header.scrolled .actions button, .header.scrolled .actions a {
  color: #777;
}
.header.scrolled .actions button:hover, .header.scrolled .actions a:hover {
  color: var(--color-primary);
}
.header.scrolled #hamburger.active span {
  background-color: #fff;
}
.header.scrolled #hamburger span {
  background-color: var(--color-text);
}
.header nav {
  height: clamp(5rem, 3.622080089rem + 2.2246941046vw, 6.25rem);
  transition: all 0.3s;
}
.header nav > .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(1.25rem, -0.8168798665rem + 3.3370411568vw, 3.125rem);
  height: 100%;
}
.header .logo {
  flex-shrink: 0;
}
.header .logo img {
  height: clamp(3.125rem, 1.747080089rem + 2.2246941046vw, 4.375rem);
  width: auto;
  transition: all 0.3s;
  filter: grayscale(1) brightness(10);
}
.header #hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 24px;
  height: 24px;
  z-index: 1002;
}
.header #hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #fff;
  transition: all 0.3s;
}
.header #hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.header #hamburger.active span:nth-child(2) {
  opacity: 0;
}
.header #hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}
.header #navMenu {
  display: flex;
  align-items: center;
  gap: clamp(0.25rem, -0.1633759733rem + 0.6674082314vw, 0.625rem);
  margin-left: auto;
  position: relative;
}
.header #navMenu::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: var(--indicator-left, -100px);
  width: var(--indicator-width, 0px);
  height: clamp(0.125rem, -0.0816879867rem + 0.3337041157vw, 0.3125rem);
  background-image: linear-gradient(to right, #fff 0%, #fff 100%);
  transition: left 0.3s ease, width 0.3s ease, opacity 0.3s ease;
  opacity: var(--indicator-opacity, 0);
  pointer-events: none;
  display: none;
}
.header #navMenu > li {
  position: relative;
}
.header #navMenu > li > a {
  display: block;
  height: clamp(5rem, 3.622080089rem + 2.2246941046vw, 6.25rem);
  padding: 0 clamp(0.625rem, -0.0639599555rem + 1.1123470523vw, 1.25rem);
  display: flex;
  align-items: center;
  font-size: clamp(1rem, 0.8622080089rem + 0.2224694105vw, 1.125rem);
  transition: all 0.3s;
  text-transform: uppercase;
  color: #fff;
}
.header #navMenu > li.active > a {
  color: #fff;
  font-weight: bold;
}
.header #navMenu > li:hover > a {
  color: #fff;
}
.header #navMenu > li > ul {
  position: absolute;
  top: 80%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  min-width: 140px;
  border-radius: clamp(0.375rem, -0.0383759733rem + 0.6674082314vw, 0.75rem);
  background-color: #fff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  opacity: 0;
  overflow: hidden;
  visibility: hidden;
  transition: all 0.3s;
}
.header #navMenu > li > ul li a {
  display: block;
  padding: clamp(0.5rem, 0.2244160178rem + 0.4449388209vw, 0.75rem) clamp(0.9375rem, 0.5930200222rem + 0.5561735261vw, 1.25rem);
  font-size: 16px;
  border-bottom: 1px solid #f0f0f0;
  white-space: nowrap;
  text-align: center;
  position: relative;
  z-index: 2;
}
.header #navMenu > li > ul li a:hover {
  background-image: linear-gradient(to bottom, var(--color-second), var(--color-primary));
  color: #fff;
}
.header #navMenu > li > ul li:last-child a {
  border-bottom: none;
}
.header #navMenu > li:hover > ul {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%);
}
.header .actions {
  display: flex;
  align-items: center;
  gap: clamp(0.625rem, -0.752919911rem + 2.2246941046vw, 1.875rem);
}
.header .actions button, .header .actions a {
  color: #fff;
  width: clamp(2.5rem, 1.8110400445rem + 1.1123470523vw, 3.125rem);
  height: clamp(2.5rem, 1.8110400445rem + 1.1123470523vw, 3.125rem);
  border-radius: clamp(0.375rem, 0.0994160178rem + 0.4449388209vw, 0.625rem);
  display: flex;
  align-items: center;
  justify-content: center;
}
.header .actions button i, .header .actions a i {
  font-size: clamp(1.25rem, 0.6988320356rem + 0.8898776418vw, 1.75rem);
}
.header .actions .tel {
  position: relative;
}
.header .actions .tel a {
  display: flex;
  align-items: center;
  gap: clamp(0.375rem, 0.2372080089rem + 0.2224694105vw, 0.5rem);
  width: auto;
  height: clamp(2.5rem, 1.8110400445rem + 1.1123470523vw, 3.125rem);
  padding: 0 clamp(0.5rem, -0.0511679644rem + 0.8898776418vw, 1rem);
  font-size: clamp(1.125rem, 0.7116240267rem + 0.6674082314vw, 1.5rem);
  color: #fff;
  background: linear-gradient(to right, var(--color-primary), var(--color-second));
  border-radius: clamp(0.375rem, 0.0994160178rem + 0.4449388209vw, 0.625rem);
  transition: all 0.3s;
  pointer-events: none;
  white-space: nowrap;
}
.header .actions .tel a i {
  font-size: clamp(1.125rem, 0.7116240267rem + 0.6674082314vw, 1.5rem);
}
.header .actions .divider {
  width: 1px;
  height: 16px;
  background-color: rgba(255, 255, 255, 0.3);
}
.header .actions #langSwitcher {
  position: relative;
}
.header .actions #langSwitcher > ul {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 100px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s;
  white-space: nowrap;
  overflow: hidden;
}
.header .actions #langSwitcher > ul li {
  padding: clamp(0.5rem, 0.3622080089rem + 0.2224694105vw, 0.625rem) clamp(0.75rem, 0.5433120133rem + 0.3337041157vw, 0.9375rem);
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s;
}
.header .actions #langSwitcher > ul li a {
  display: flex;
  align-items: center;
  gap: 8px;
}
.header .actions #langSwitcher > ul li a img {
  width: 24px;
}
.header .actions #langSwitcher > ul li:hover {
  background-color: var(--color-primary);
  color: #fff;
}
.header .actions #langSwitcher > ul li.active {
  color: var(--color-primary);
}
.header .actions #langSwitcher.active > ul {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.header .actions .socials {
  display: flex;
  align-items: center;
  gap: 8px;
}
.header #mobileOverlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  z-index: 999;
}
.header #mobileOverlay.active {
  opacity: 1;
  visibility: visible;
}
@media (max-width: 991px) {
  .header nav {
    height: clamp(3.75rem, 2.372080089rem + 2.2246941046vw, 5rem);
  }
  .header .logo img {
    height: clamp(2.5rem, 1.122080089rem + 2.2246941046vw, 3.75rem);
  }
  .header.transparent {
    background-color: #fff;
  }
  .header.transparent .logo img {
    filter: none;
  }
  .header.transparent #navMenu > li > a {
    color: var(--color-text) !important;
  }
  .header.transparent #hamburger span {
    background-color: var(--color-text) !important;
  }
  .header.scrolled #navMenu > li > a {
    color: #fff !important;
  }
  .header #hamburger {
    display: flex;
  }
  .header #navMenu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(8px);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding-top: clamp(3.75rem, 0.994160178rem + 4.4493882091vw, 6.25rem);
    overflow-y: auto;
    transform: translateX(-100%);
    transition: transform 0.3s;
    z-index: 1001;
  }
  .header #navMenu.active {
    transform: translateX(0);
  }
  .header #navMenu::after {
    display: none;
  }
  .header #navMenu > li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  }
  .header #navMenu > li > a {
    height: auto;
    padding: clamp(0.75rem, 0.5433120133rem + 0.3337041157vw, 0.9375rem) clamp(1.25rem, 0.5610400445rem + 1.1123470523vw, 1.875rem);
  }
  .header #navMenu > li > ul {
    position: static;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    background-color: transparent;
  }
  .header #navMenu > li > ul.active {
    display: block;
    transform: translateX(0);
  }
  .header #navMenu > li > ul li a {
    padding-left: clamp(1.875rem, 0.8415600667rem + 1.6685205784vw, 2.8125rem);
    text-align: left;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.75);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }
  .header #navMenu > li > ul li a:hover {
    background: none;
    color: rgba(255, 255, 255, 0.75);
  }
  .header #navMenu > li:has(> ul) > a {
    position: relative;
  }
  .header #navMenu > li:has(> ul) > a::after {
    content: "+";
    position: absolute;
    right: clamp(0.9375rem, 0.2485400445rem + 1.1123470523vw, 1.5625rem);
    font-size: clamp(1rem, 0.7244160178rem + 0.4449388209vw, 1.25rem);
    transition: transform 0.3s;
  }
  .header #navMenu > li:has(> ul) > a.active::after {
    content: "-";
  }
  .header .actions {
    display: none;
  }
  .header .actions .socials, .header .actions .cta, .header .actions .divider {
    display: none;
  }
}
.header #searchPanel {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.85);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s;
}
.header #searchPanel.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.header #searchPanel form {
  display: flex;
  align-items: center;
  gap: clamp(0.625rem, 0.2805200222rem + 0.5561735261vw, 0.9375rem);
  border-bottom: 2px solid var(--color-primary);
}
.header #searchPanel form input {
  flex: 1;
  padding: clamp(0.75rem, 0.5433120133rem + 0.3337041157vw, 0.9375rem) 0;
  font-size: clamp(1rem, 0.8622080089rem + 0.2224694105vw, 1.125rem);
  background: none;
  outline: none;
}
.header #searchPanel form input::placeholder {
  color: #999;
}
.header #searchPanel form button {
  flex-shrink: 0;
  padding: 8px 13px;
  font-size: clamp(1rem, 0.8622080089rem + 0.2224694105vw, 1.125rem);
  color: #fff;
  transition: color 0.3s;
  background: var(--color-primary);
}
.header #searchPanel form button[type=submit] {
  padding: 8px 15px;
}

html[lang=ar] .header #navMenu {
  margin-left: 0;
  margin-right: auto;
}

.footer {
  background-image: linear-gradient(to bottom, var(--color-second), var(--color-primary));
  padding-top: clamp(1.25rem, -0.127919911rem + 2.2246941046vw, 2.5rem);
  color: #fff;
  position: relative;
  z-index: 2;
}
.footer::after {
  content: "";
  width: clamp(6.25rem, -1.3285595106rem + 12.2358175751vw, 13.125rem);
  height: clamp(6.875rem, -2.2192714127rem + 14.6829810901vw, 15.125rem);
  background: url(../img/foot-ico.webp) center no-repeat;
  background-size: contain;
  position: absolute;
  right: 18%;
  bottom: 17%;
  z-index: -1;
}
.footer .footer-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: clamp(0.5rem, -0.0511679644rem + 0.8898776418vw, 1rem);
}
.footer .footer-head .footer-logo img {
  filter: invert(1) brightness(10);
  height: clamp(3.125rem, 0.0246802002rem + 5.0055617353vw, 5.9375rem);
}
.footer .footer-head .footer-ewm {
  display: flex;
  gap: clamp(1rem, 0.4488320356rem + 0.8898776418vw, 1.5rem);
}
.footer .footer-head .footer-ewm li {
  position: relative;
}
.footer .footer-head .footer-ewm li:hover a {
  background: #fff;
  color: var(--color-primary);
}
.footer .footer-head .footer-ewm li:hover span {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(-50%);
}
.footer .footer-head .footer-ewm li a {
  width: clamp(2.5rem, 1.8110400445rem + 1.1123470523vw, 3.125rem);
  height: clamp(2.5rem, 1.8110400445rem + 1.1123470523vw, 3.125rem);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}
.footer .footer-head .footer-ewm li a i {
  font-size: clamp(1.125rem, 0.9872080089rem + 0.2224694105vw, 1.25rem);
}
.footer .footer-head .footer-ewm li span {
  display: block;
  position: absolute;
  right: calc(100% + clamp(0.5rem, -0.0511679644rem + 0.8898776418vw, 1rem));
  top: 50%;
  transform: translateX(5px) translateY(-50%);
  width: clamp(5rem, 4.3110400445rem + 1.1123470523vw, 5.625rem);
  border-radius: clamp(0.25rem, 0.1122080089rem + 0.2224694105vw, 0.375rem);
  background: #fff;
  padding: clamp(0.1875rem, 0.1186040044rem + 0.1112347052vw, 0.25rem);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s;
}
.footer .footer-head .footer-ewm li span img {
  width: 100%;
}
.footer .footer-head .footer-ewm li span::before {
  content: "";
  width: 8px;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
}
.footer .footer-head .footer-ewm li span::after {
  content: "";
  width: 0;
  height: 0;
  border-left: 8px solid #fff;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
}
.footer .footer-content {
  display: flex;
  align-items: stretch;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.footer .footer-content .title {
  margin-bottom: clamp(0.5rem, -0.0511679644rem + 0.8898776418vw, 1rem);
  font-size: clamp(1.125rem, 0.7116240267rem + 0.6674082314vw, 1.5rem);
  font-weight: bold;
}
.footer .footer-content .footer-info, .footer .footer-content .footer-nav, .footer .footer-content .footer-form {
  padding-top: clamp(0.9375rem, -0.0959399333rem + 1.6685205784vw, 1.875rem);
  padding-bottom: clamp(1.25rem, -4.9506395996rem + 10.0111234705vw, 6.875rem);
}
.footer .footer-content .footer-info {
  width: 23.75%;
  display: flex;
  flex-direction: column;
  gap: clamp(0.375rem, -0.0383759733rem + 0.6674082314vw, 0.75rem);
  padding-right: clamp(1.25rem, -0.127919911rem + 2.2246941046vw, 2.5rem);
}
.footer .footer-content .footer-info p {
  display: flex;
  align-items: center;
  gap: clamp(0.25rem, -0.0255839822rem + 0.4449388209vw, 0.5rem);
  font-size: clamp(1rem, 0.8622080089rem + 0.2224694105vw, 1.125rem);
}
.footer .footer-content .footer-info p:nth-child(2) {
  font-size: clamp(1.25rem, 0.5610400445rem + 1.1123470523vw, 1.875rem);
  font-weight: bold;
  font-family: "Montserrat";
}
.footer .footer-content .footer-info p i {
  font-size: clamp(1.125rem, 0.9872080089rem + 0.2224694105vw, 1.25rem);
}
.footer .footer-content .footer-nav {
  width: 45%;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}
.footer .footer-content .footer-nav > ul {
  display: flex;
  justify-content: space-evenly;
}
.footer .footer-content .footer-nav > ul ul {
  margin-top: clamp(0.5rem, -0.0511679644rem + 0.8898776418vw, 1rem);
  display: flex;
  flex-direction: column;
  gap: clamp(0.25rem, -0.0255839822rem + 0.4449388209vw, 0.5rem);
}
.footer .footer-content .footer-nav > ul ul a {
  font-size: clamp(0.875rem, 0.7372080089rem + 0.2224694105vw, 1rem);
  opacity: 0.6;
  transition: all 0.3;
}
.footer .footer-content .footer-nav > ul ul a:hover {
  opacity: 1;
}
.footer .footer-content .footer-form {
  width: 31.25%;
  padding-left: clamp(2.5rem, -0.255839822rem + 4.4493882091vw, 5rem);
}
.footer .footer-content .footer-form form {
  display: flex;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: clamp(0.25rem, 0.1122080089rem + 0.2224694105vw, 0.375rem);
}
.footer .footer-content .footer-form form input, .footer .footer-content .footer-form form button {
  height: 100%;
  font-size: clamp(0.875rem, 0.7372080089rem + 0.2224694105vw, 1rem);
  outline: none;
}
.footer .footer-content .footer-form form input {
  width: 100%;
  padding-left: clamp(0.5rem, -0.0511679644rem + 0.8898776418vw, 1rem);
  background: none;
  color: #fff;
}
.footer .footer-content .footer-form form input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}
.footer .footer-content .footer-form form button {
  width: clamp(3.75rem, 0.994160178rem + 4.4493882091vw, 6.25rem);
  flex-shrink: 0;
  border-radius: clamp(0.25rem, 0.1122080089rem + 0.2224694105vw, 0.375rem);
  background: #fff;
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer .footer-content .footer-form form button i {
  font-size: clamp(1.25rem, 0.9744160178rem + 0.4449388209vw, 1.5rem);
  transform: rotateY(180deg);
}
.footer .footer-bottom {
  padding: clamp(1rem, 0.0354560623rem + 1.5572858732vw, 1.875rem) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.footer .footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: clamp(0.9375rem, 0.5930200222rem + 0.5561735261vw, 1.25rem);
}
.footer .footer-bottom .social-nav {
  display: flex;
  gap: clamp(0.625rem, -0.0639599555rem + 1.1123470523vw, 1.25rem);
}
.footer .footer-bottom .social-nav a {
  transition: all 0.2s;
}
.footer .footer-bottom .social-nav a i {
  font-size: clamp(1.125rem, 0.7116240267rem + 0.6674082314vw, 1.5rem);
}
.footer .footer-bottom .social-nav a:hover {
  transform: scale(1.5);
}
.footer .footer-bottom p {
  font-size: clamp(0.875rem, 0.7372080089rem + 0.2224694105vw, 1rem);
  color: rgba(255, 255, 255, 0.3);
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.25rem, -0.127919911rem + 2.2246941046vw, 2.5rem);
}
.footer .footer-bottom p a {
  transition: all 0.3s;
}
.footer .footer-bottom p a:hover {
  color: #fff;
}
@media screen and (max-width: 991px) {
  .footer::after {
    right: 10%;
    bottom: 48%;
    z-index: -1;
  }
  .footer .footer-head {
    gap: clamp(0.9375rem, 0.5930200222rem + 0.5561735261vw, 1.25rem);
    align-items: center;
  }
  .footer .footer-head .footer-take {
    width: 100%;
  }
  .footer .footer-content {
    flex-direction: column;
  }
  .footer .footer-content .footer-info {
    padding-right: 0;
    width: 100%;
  }
  .footer .footer-content .footer-nav {
    width: 100%;
    display: none;
  }
  .footer .footer-content .footer-form {
    width: 100%;
    padding-left: 0;
  }
}

.suspend {
  position: fixed;
  z-index: 999;
  bottom: 5%;
  right: clamp(0.3125rem, -0.4453559511rem + 1.2235817575vw, 1rem);
  transition: all 0.3s;
}
.suspend ul {
  transition: all 0.3s;
  border-radius: clamp(0.5rem, -0.0511679644rem + 0.8898776418vw, 1rem);
  background-image: linear-gradient(to bottom, var(--color-second), var(--color-primary));
}
.suspend ul li {
  position: relative;
}
.suspend ul li:hover .phone,
.suspend ul li:hover .wechat {
  visibility: visible;
}
.suspend ul li.go-top {
  transition: all 0.3s;
  opacity: 1;
  pointer-events: auto;
}
.suspend ul li > a, .suspend ul li > button {
  width: clamp(3.125rem, 1.0581201335rem + 3.3370411568vw, 5rem);
  height: clamp(3.125rem, 1.0581201335rem + 3.3370411568vw, 5rem);
  border: none;
  padding: 0;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: all 0.1s;
  position: relative;
  font-size: clamp(0.875rem, 0.8061040044rem + 0.1112347052vw, 0.9375rem);
  font-weight: bold;
}
.suspend ul li > a::after, .suspend ul li > button::after {
  content: "";
  width: 4px;
  height: 100%;
  position: absolute;
  right: 100%;
  top: 0;
  display: none;
}
.suspend ul li > a:hover, .suspend ul li > button:hover {
  filter: brightness(95%);
}
.suspend ul li > a:hover::after, .suspend ul li > button:hover::after {
  display: block;
}
.suspend ul li > a i, .suspend ul li > button i {
  font-size: clamp(1.25rem, 0.6988320356rem + 0.8898776418vw, 1.75rem);
  font-weight: normal;
}
.suspend ul li .phone,
.suspend ul li .wechat {
  position: absolute;
  right: calc(100% + 4px);
  top: 50%;
  transform: translateY(-50%);
  min-height: clamp(3.125rem, 1.747080089rem + 2.2246941046vw, 4.375rem);
  border-radius: clamp(0.25rem, -0.0255839822rem + 0.4449388209vw, 0.5rem);
  background-image: linear-gradient(to bottom, var(--color-second), var(--color-primary));
  white-space: nowrap;
  padding: clamp(0.375rem, 0.2372080089rem + 0.2224694105vw, 0.5rem) clamp(0.625rem, -0.0639599555rem + 1.1123470523vw, 1.25rem);
  font-size: clamp(1rem, 0.8622080089rem + 0.2224694105vw, 1.125rem);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  visibility: hidden;
  color: rgba(255, 255, 255, 0.85);
}
.suspend ul li .phone span,
.suspend ul li .phone a,
.suspend ul li .wechat span,
.suspend ul li .wechat a {
  padding: clamp(0.25rem, 0.1122080089rem + 0.2224694105vw, 0.375rem) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-family: "Montserrat";
  font-weight: bold;
}
.suspend ul li .phone span:last-child,
.suspend ul li .phone a:last-child,
.suspend ul li .wechat span:last-child,
.suspend ul li .wechat a:last-child {
  border-bottom: none;
}
.suspend ul li .phone a:hover,
.suspend ul li .wechat a:hover {
  color: #fff;
}
.suspend ul li .wechat {
  padding: clamp(0.25rem, -0.0255839822rem + 0.4449388209vw, 0.5rem);
  width: clamp(6.25rem, 4.872080089rem + 2.2246941046vw, 7.5rem);
}
.suspend ul li .wechat img {
  width: 100%;
  border-radius: clamp(0.25rem, -0.0255839822rem + 0.4449388209vw, 0.5rem);
}
.suspend .open-btn {
  position: absolute;
  right: calc(100% + 1px);
  top: 0;
  color: var(--color-second);
  padding: 4px 0;
}
.suspend .open-btn i {
  font-size: clamp(1.125rem, 0.9872080089rem + 0.2224694105vw, 1.25rem);
}
@media screen and (max-width: 991px) {
  .suspend {
    transform: translateX(calc(100% + 5px));
  }
  .suspend.show {
    transform: translateX(0);
  }
  .suspend.show ul {
    opacity: 1;
    pointer-events: auto;
  }
  .suspend ul {
    opacity: 0;
    pointer-events: none;
  }
}

.btn-primary.white a, .btn-primary.white button, .btn-primary.white span {
  background: #fff;
  color: #2962af;
}
.btn-primary.white a i, .btn-primary.white button i, .btn-primary.white span i {
  background-image: linear-gradient(to right, var(--color-primary), var(--color-second));
  color: #fff;
}
.btn-primary a, .btn-primary button, .btn-primary span {
  padding: 0 5px;
  padding-right: clamp(0.625rem, 0.2116240267rem + 0.6674082314vw, 1rem);
  height: clamp(2.5rem, 1.122080089rem + 2.2246941046vw, 3.75rem);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.375rem, 0.0994160178rem + 0.4449388209vw, 0.625rem);
  font-size: clamp(1rem, 0.7244160178rem + 0.4449388209vw, 1.25rem);
  background-image: linear-gradient(to right, var(--color-primary), var(--color-second));
  border-radius: clamp(0.375rem, 0.0994160178rem + 0.4449388209vw, 0.625rem);
  color: #fff;
}
.btn-primary a:hover i, .btn-primary button:hover i, .btn-primary span:hover i {
  transform: scale(0.85);
}
.btn-primary a i, .btn-primary button i, .btn-primary span i {
  width: clamp(2.5rem, 1.122080089rem + 2.2246941046vw, 3.75rem);
  height: clamp(1.875rem, 0.497080089rem + 2.2246941046vw, 3.125rem);
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: #205bab;
  font-size: clamp(1.125rem, 0.7116240267rem + 0.6674082314vw, 1.5rem);
  border-radius: clamp(0.375rem, 0.0994160178rem + 0.4449388209vw, 0.625rem);
  transition: all 0.3s;
}

.hero-crumbs {
  color: #fff;
  font-size: clamp(0.875rem, 0.7372080089rem + 0.2224694105vw, 1rem);
  display: flex;
  align-items: center;
  gap: clamp(0.375rem, 0.2372080089rem + 0.2224694105vw, 0.5rem);
}
.hero-crumbs.black {
  color: #666;
}
.hero-crumbs.black a:hover {
  color: var(--color-primary);
}
.hero-crumbs a, .hero-crumbs span {
  color: inherit;
  display: flex;
  align-items: center;
  gap: clamp(0.125rem, -0.0127919911rem + 0.2224694105vw, 0.25rem);
}
.hero-crumbs a i, .hero-crumbs span i {
  font-size: clamp(1rem, 0.7244160178rem + 0.4449388209vw, 1.25rem);
}
.hero-crumbs i {
  font-size: clamp(0.75rem, 0.6122080089rem + 0.2224694105vw, 0.875rem);
}
@media screen and (max-width: 991px) {
  .hero-crumbs {
    flex-wrap: wrap;
  }
}

.page-crumb {
  margin-top: clamp(3.75rem, 0.994160178rem + 4.4493882091vw, 6.25rem);
  padding: clamp(1.25rem, -0.127919911rem + 2.2246941046vw, 2.5rem) 0;
}
.page-crumb .hero-crumbs {
  color: #999;
}
.page-crumb .hero-crumbs a:hover {
  color: var(--color-primary);
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: clamp(1.25rem, 0.2854560623rem + 1.5572858732vw, 2.125rem);
}
.section-head a.rel-more {
  color: var(--color-primary);
  font-size: clamp(1rem, 0.7244160178rem + 0.4449388209vw, 1.25rem);
  display: flex;
  align-items: center;
  gap: clamp(0.25rem, 0.1122080089rem + 0.2224694105vw, 0.375rem);
}
.section-head a.rel-more i {
  font-size: clamp(1.125rem, 0.9872080089rem + 0.2224694105vw, 1.25rem);
}

.section-title {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: clamp(0.375rem, 0.0994160178rem + 0.4449388209vw, 0.625rem);
}
.section-title.white {
  color: #fff;
}
.section-title.white .title {
  color: #fff;
  background: none;
}
.section-title.white .sub-title {
  color: inherit;
}
.section-title.text-center .sub-title {
  justify-content: center;
}
.section-title .title {
  font-size: clamp(1.5rem, -0.2912958843rem + 2.8921023359vw, 3.125rem);
  line-height: 1.2;
  font-weight: bold;
  background-image: linear-gradient(to right, var(--color-primary), var(--color-second));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.section-title .sub-title {
  font-size: clamp(0.875rem, 0.5994160178rem + 0.4449388209vw, 1.125rem);
  display: flex;
  align-items: center;
  gap: clamp(0.375rem, 0.0994160178rem + 0.4449388209vw, 0.625rem);
}
.section-title .sub-title::before {
  content: "";
  width: clamp(0.5rem, 0.3622080089rem + 0.2224694105vw, 0.625rem);
  height: clamp(0.5625rem, 0.4247080089rem + 0.2224694105vw, 0.6875rem);
  background-image: linear-gradient(135deg, var(--color-primary), var(--color-second));
  clip-path: polygon(0 25%, 50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%);
}

.page-nav {
  position: relative;
  z-index: 3;
  margin-top: calc(-1 * clamp(5rem, 2.9331201335rem + 3.3370411568vw, 6.875rem));
  padding-bottom: clamp(1.875rem, -0.1918798665rem + 3.3370411568vw, 3.75rem);
}
.page-nav ul {
  display: flex;
  gap: clamp(0.625rem, -0.752919911rem + 2.2246941046vw, 1.875rem);
}
.page-nav ul li.active a {
  background: #fff;
  color: var(--color-primary);
  font-weight: bold;
}
.page-nav ul li.active a:hover {
  color: var(--color-primary);
}
.page-nav ul li:hover a {
  color: #fff;
  border-color: rgb(255, 255, 255);
}
.page-nav ul li a {
  color: rgba(255, 255, 255, 0.5);
  height: clamp(2.5rem, 1.8110400445rem + 1.1123470523vw, 3.125rem);
  display: flex;
  align-items: center;
  padding: 0 clamp(1.25rem, -0.127919911rem + 2.2246941046vw, 2.5rem);
  border: 1px solid rgba(255, 255, 255, 0.3);
  font-size: clamp(1rem, 0.7244160178rem + 0.4449388209vw, 1.25rem);
  border-radius: clamp(1.25rem, 0.9055200222rem + 0.5561735261vw, 1.5625rem);
  transition: all 0.3s;
}
@media screen and (max-width: 991px) {
  .page-nav ul {
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    padding-bottom: clamp(0.625rem, 0.2805200222rem + 0.5561735261vw, 0.9375rem);
  }
  .page-nav ul li {
    flex-shrink: 0;
  }
  .page-nav ul li a {
    white-space: nowrap;
  }
}

.index-hero {
  position: relative;
  height: 100vh;
}
.index-hero .hero-swiper {
  height: 100%;
}
.index-hero .swiper-slide {
  display: flex;
  align-items: center;
  position: relative;
}
.index-hero .swiper-slide.swiper-slide-active .hero-content {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.3s;
}
.index-hero .hero-content {
  opacity: 0;
  transform: translateY(20%);
  transition: all 0.8s ease;
  max-width: 50%;
  color: #fff;
}
.index-hero .hero-content .title {
  font-size: clamp(1.5rem, -0.2912958843rem + 2.8921023359vw, 3.125rem);
  line-height: 1.3;
  margin: clamp(1.25rem, 0.5610400445rem + 1.1123470523vw, 1.875rem) 0;
  font-weight: bold;
}
.index-hero .hero-content .sub-title {
  font-size: clamp(1.125rem, 0.7116240267rem + 0.6674082314vw, 1.5rem);
  line-height: 1.2;
}
.index-hero .control-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: clamp(1.75rem, 1.5433120133rem + 0.3337041157vw, 1.9375rem);
  height: clamp(1.75rem, 1.5433120133rem + 0.3337041157vw, 1.9375rem);
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}
.index-hero .control-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}
.index-hero .control-btn.prev {
  left: clamp(0.9375rem, -0.7848998888rem + 2.7808676307vw, 2.5rem);
}
.index-hero .control-btn.prev::after {
  transform: translate(-40%, -50%) rotate(-135deg);
}
.index-hero .control-btn.next {
  right: clamp(0.9375rem, -0.7848998888rem + 2.7808676307vw, 2.5rem);
}
.index-hero .control-btn.next::after {
  transform: translate(-60%, -50%) rotate(45deg);
}
.index-hero .control-btn:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.2);
}
.index-hero .hero-pagination-container {
  position: absolute;
  left: 0;
  right: 0;
  bottom: clamp(1.25rem, -2.883759733rem + 6.6740823137vw, 5rem);
  z-index: 10;
}
.index-hero .hero-pagination-container .hero-pagination {
  position: static;
  display: flex;
  align-items: flex-end;
  gap: clamp(1.25rem, -0.4723998888rem + 2.7808676307vw, 2.8125rem);
}
.index-hero .hero-pagination-container .hero-pagination .swiper-pagination-bullet {
  width: clamp(1.25rem, 1.0433120133rem + 0.3337041157vw, 1.4375rem);
  height: clamp(1.3125rem, 1.0369160178rem + 0.4449388209vw, 1.5625rem);
  background: #fff;
  clip-path: polygon(0 25%, 50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%);
  opacity: 1;
  transition: all 0.3s;
  transform: scale(0.65);
  border-radius: 0;
}
.index-hero .hero-pagination-container .hero-pagination .swiper-pagination-bullet-active {
  background-image: linear-gradient(135deg, var(--color-primary), var(--color-second));
  transform: scale(1);
}
@media screen and (max-width: 991px) {
  .index-hero {
    height: 40vh;
  }
  .index-hero .hero-content {
    max-width: 100%;
  }
  .index-hero .hero-content p {
    line-height: 1.4;
  }
  .index-hero .control-btn {
    display: none;
  }
}

.page-hero {
  height: clamp(18.75rem, -1.9187986652rem + 33.3704115684vw, 37.5rem);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  padding-bottom: 3%;
}
.page-hero.null {
  height: 0;
  background: #fff;
  padding-bottom: 0;
}
.page-hero .section-title {
  margin-bottom: clamp(0.5rem, -0.0511679644rem + 0.8898776418vw, 1rem);
}
.swiper-btns {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 0.0354560623rem + 1.5572858732vw, 1.875rem);
}
.swiper-btns .swiper-button-prev, .swiper-btns .swiper-button-next {
  position: static;
  margin: 0;
  width: clamp(2.5rem, 1.122080089rem + 2.2246941046vw, 3.75rem);
  height: clamp(2.5rem, 1.122080089rem + 2.2246941046vw, 3.75rem);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #205bab;
  border-radius: clamp(0.375rem, 0.0994160178rem + 0.4449388209vw, 0.625rem);
  color: #205bab;
  transition: all 0.3s;
}
.swiper-btns .swiper-button-prev::after, .swiper-btns .swiper-button-next::after {
  display: none;
}
.swiper-btns .swiper-button-prev:hover, .swiper-btns .swiper-button-next:hover {
  background-image: linear-gradient(135deg, var(--color-primary), var(--color-second));
  color: #fff;
}
.swiper-btns .swiper-button-prev i, .swiper-btns .swiper-button-next i {
  font-size: clamp(1.125rem, 0.7116240267rem + 0.6674082314vw, 1.5rem);
}

.index-services {
  padding: clamp(2.5rem, -0.255839822rem + 4.4493882091vw, 5rem) 0;
}
.index-services .swiper {
  padding-left: clamp(1.25rem, -7.7064794216rem + 14.4605116796vw, 9.375rem);
}
.index-services .swiper .swiper-slide:hover .text h3 {
  background-image: linear-gradient(to right, var(--color-primary), var(--color-second));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.index-services .swiper .swiper-slide:hover .img::after {
  background-image: linear-gradient(to right, var(--color-primary), var(--color-second));
  border: none;
}
.index-services .swiper .swiper-slide:hover .img img {
  transform: scale(1.05);
}
.index-services .swiper .img {
  padding-top: 116.6%;
  position: relative;
  z-index: 2;
  overflow: hidden;
  border-radius: clamp(0.5625rem, -0.05756396rem + 1.0011123471vw, 1.125rem);
}
.index-services .swiper .img::after {
  position: absolute;
  left: 10px;
  bottom: 10px;
  content: "\e600";
  font-family: "iconfont" !important;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  width: clamp(2.125rem, 1.0226640712rem + 1.7797552836vw, 3.125rem);
  height: clamp(2.125rem, 1.0226640712rem + 1.7797552836vw, 3.125rem);
  border-radius: clamp(0.375rem, 0.0994160178rem + 0.4449388209vw, 0.625rem);
  border: 1px solid #fff;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(1.125rem, 0.8494160178rem + 0.4449388209vw, 1.375rem);
}
.index-services .swiper .img img.g-bg {
  transition: all 0.3s;
}
.index-services .swiper .text {
  margin-top: clamp(0.625rem, 0.2116240267rem + 0.6674082314vw, 1rem);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(0.375rem, 0.0994160178rem + 0.4449388209vw, 0.625rem);
}
.index-services .swiper .text h3 {
  font-size: clamp(1.125rem, 0.2982480534rem + 1.3348164627vw, 1.875rem);
}
.index-services .swiper .text p {
  font-size: clamp(0.875rem, 0.7372080089rem + 0.2224694105vw, 1rem);
  color: #666;
  line-height: 1.6;
}
.index-enquiry {
  padding: clamp(1.875rem, 0.0837041157rem + 2.8921023359vw, 3.5rem) 0;
  background-image: linear-gradient(to right, var(--color-primary), var(--color-second));
  color: #fff;
}
.index-enquiry.services-cta {
  background-image: linear-gradient(to right, var(--color-primary), var(--color-second));
}
.index-enquiry.services-cta .btn-primary {
  display: flex;
  gap: clamp(1rem, -0.2401279199rem + 2.0022246941vw, 2.125rem);
}
.index-enquiry .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.index-enquiry .title h2 {
  font-size: clamp(1.25rem, 0.1476640712rem + 1.7797552836vw, 2.25rem);
  margin-bottom: clamp(0.375rem, 0.0994160178rem + 0.4449388209vw, 0.625rem);
}
.index-enquiry .title p {
  font-size: clamp(1rem, 0.8622080089rem + 0.2224694105vw, 1.125rem);
}
@media screen and (max-width: 991px) {
  .index-enquiry .container {
    flex-direction: column;
    gap: clamp(0.9375rem, 0.5930200222rem + 0.5561735261vw, 1.25rem);
    align-items: flex-start;
  }
}

.index-solution {
  padding: clamp(2.5rem, -0.255839822rem + 4.4493882091vw, 5rem) 0;
}
.index-solution .section-title {
  margin-bottom: clamp(1.25rem, 0.2854560623rem + 1.5572858732vw, 2.125rem);
}
.index-solution .btn-primary {
  margin-top: clamp(1.25rem, -0.127919911rem + 2.2246941046vw, 2.5rem);
  display: flex;
  justify-content: center;
  gap: clamp(0.9375rem, -0.0959399333rem + 1.6685205784vw, 1.875rem);
}

.solution-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(0.9375rem, 0.5930200222rem + 0.5561735261vw, 1.25rem) clamp(1.25rem, -0.127919911rem + 2.2246941046vw, 2.5rem);
}
.solution-list .list-item {
  display: flex;
  flex-direction: column;
  gap: clamp(0.375rem, 0.0994160178rem + 0.4449388209vw, 0.625rem);
}
.solution-list .list-item:hover .img img {
  transform: scale(1.05);
}
.solution-list .list-item:hover h3::after {
  opacity: 1;
  transform: translateX(0%);
}
.solution-list .list-item:hover h3 span {
  background-image: linear-gradient(to right, var(--color-primary), var(--color-second));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: bold;
}
.solution-list .list-item .img {
  padding-top: 64.8%;
  overflow: hidden;
  border-radius: clamp(0.375rem, 0.0994160178rem + 0.4449388209vw, 0.625rem);
}
.solution-list .list-item .img img.g-bg {
  transition: all 0.3s;
}
.solution-list .list-item h3 {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.solution-list .list-item h3::after {
  content: "\e600";
  font-family: "iconfont" !important;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: var(--color-primary);
  font-size: clamp(0.875rem, 0.7372080089rem + 0.2224694105vw, 1rem);
  opacity: 0;
  transform: translateX(-100%);
  transition: all 0.3s;
}
.solution-list .list-item h3 span {
  font-size: clamp(1.125rem, 0.8494160178rem + 0.4449388209vw, 1.375rem);
  font-weight: normal;
  color: #333;
}

.index-about {
  padding: clamp(2.5rem, -1.633759733rem + 6.6740823137vw, 6.25rem) 0;
}
.index-about.about-profile {
  padding-top: clamp(2.5rem, -2.3227196885rem + 7.786429366vw, 6.875rem);
}
.index-about.about-profile img.g-bg {
  object-fit: contain;
  object-position: bottom center;
}
.index-about.about-profile .about-logo {
  height: clamp(3.75rem, 0.3052002225rem + 5.5617352614vw, 6.875rem);
}
.index-about.about-profile .about-logo img {
  height: 100%;
}
.index-about.about-profile .g-editor {
  color: #111;
  line-height: 2.1;
}
.index-about.about-profile .g-editor h3 {
  font-size: clamp(1.25rem, 0.1476640712rem + 1.7797552836vw, 2.25rem);
  margin-bottom: clamp(0.625rem, -0.0639599555rem + 1.1123470523vw, 1.25rem);
}
.index-about .container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.index-about .section-head {
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: clamp(1.25rem, -0.127919911rem + 2.2246941046vw, 2.5rem);
}
.index-about .section-head .btn-primary a {
  gap: clamp(0.625rem, -0.0639599555rem + 1.1123470523vw, 1.25rem);
  padding-right: clamp(1.25rem, 0.1476640712rem + 1.7797552836vw, 2.25rem);
}
.index-about .g-editor {
  margin-top: clamp(1.25rem, -0.127919911rem + 2.2246941046vw, 2.5rem);
  color: #fff;
  line-height: 2;
  font-size: clamp(1rem, 0.8622080089rem + 0.2224694105vw, 1.125rem);
}
.index-about .company-video {
  margin: clamp(2.5rem, -7.8343993326rem + 16.6852057842vw, 11.875rem) auto;
  margin-top: clamp(2.5rem, -2.6671996663rem + 8.3426028921vw, 7.1875rem);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid #fff;
  border-radius: 50%;
  width: clamp(3.125rem, -0.3197997775rem + 5.5617352614vw, 6.25rem);
  height: clamp(3.125rem, -0.3197997775rem + 5.5617352614vw, 6.25rem);
  color: #fff;
  transition: all 0.3s;
  z-index: 2;
}
.index-about .company-video:hover {
  background: #fff;
  color: var(--color-second);
}
.index-about .company-video:hover i {
  transform: scale(1.3);
}
.index-about .company-video i {
  font-size: clamp(1.25rem, 0.1476640712rem + 1.7797552836vw, 2.25rem);
  transition: all 0.3s;
}
@media screen and (max-width: 991px) {
  .index-about .container {
    grid-template-columns: repeat(1, 1fr);
  }
}

.index-news {
  padding: clamp(2.5rem, -0.255839822rem + 4.4493882091vw, 5rem) 0;
}
.index-news.inside-page {
  padding: clamp(2.5rem, -2.3227196885rem + 7.786429366vw, 6.875rem) 0;
}

.news-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.25rem, -1.505839822rem + 4.4493882091vw, 3.75rem) clamp(1.25rem, -3.8483036707rem + 8.2313681869vw, 5.875rem);
}
.news-list .list-item a {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: clamp(0.5rem, -0.0511679644rem + 0.8898776418vw, 1rem);
}
.news-list .list-item a:hover .img img {
  transform: scale(1.05);
}
.news-list .img {
  width: 100%;
  padding-top: 63.8%;
  overflow: hidden;
}
.news-list .img img {
  transition: all 0.3s;
}
.news-list time {
  display: flex;
  align-items: center;
  height: 28px;
  padding: 0 clamp(0.5rem, -0.0511679644rem + 0.8898776418vw, 1rem);
  background-image: linear-gradient(to right, var(--color-primary), var(--color-second));
  color: #fff;
  border-radius: clamp(0.25rem, -0.0255839822rem + 0.4449388209vw, 0.5rem);
}
.news-list h3 {
  font-size: clamp(1rem, 0.4488320356rem + 0.8898776418vw, 1.5rem);
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
.news-list p {
  color: #666;
  line-height: 1.6;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
@media screen and (max-width: 991px) {
  .news-list {
    grid-template-columns: repeat(1, 1fr);
  }
}

.index-responsibility {
  padding: 0 clamp(1.25rem, -1.505839822rem + 4.4493882091vw, 3.75rem);
  position: relative;
}
.index-responsibility.about-responsibility {
  margin: clamp(1.875rem, -0.1918798665rem + 3.3370411568vw, 3.75rem) 0;
}
.index-responsibility .section-title {
  position: absolute;
  top: clamp(2.5rem, -0.255839822rem + 4.4493882091vw, 5rem);
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 2;
}
.index-responsibility .swiper {
  height: clamp(37.5rem, 23.7208008899rem + 22.2469410456vw, 50rem);
  color: #fff;
}
.index-responsibility .swiper .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.index-responsibility .swiper .swiper-slide.swiper-slide-active p, .index-responsibility .swiper .swiper-slide.swiper-slide-active h3 {
  transform: translateY(0);
  opacity: 1;
}
.index-responsibility .swiper .swiper-slide p, .index-responsibility .swiper .swiper-slide h3 {
  transform: translateY(100%);
  opacity: 0;
  transition: all 0.8s;
}
.index-responsibility .swiper .swiper-slide p {
  font-size: clamp(1.125rem, 0.7116240267rem + 0.6674082314vw, 1.5rem);
}
.index-responsibility .swiper .swiper-slide h3 {
  font-size: clamp(1.5rem, -0.2912958843rem + 2.8921023359vw, 3.125rem);
  margin-top: clamp(0.5rem, -0.0511679644rem + 0.8898776418vw, 1rem);
}
.index-responsibility .swiper .responsibility-pagination {
  position: absolute;
  bottom: clamp(2.5rem, -0.255839822rem + 4.4493882091vw, 5rem);
  left: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1.25rem, -0.127919911rem + 2.2246941046vw, 2.5rem);
}
.index-responsibility .swiper .responsibility-pagination .swiper-pagination-bullet {
  width: clamp(1.25rem, 1.0433120133rem + 0.3337041157vw, 1.4375rem);
  height: clamp(1.3125rem, 1.0369160178rem + 0.4449388209vw, 1.5625rem);
  background: #fff;
  clip-path: polygon(0 25%, 50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%);
  transition: all 0.3s;
  transform: scale(0.65);
  border-radius: 0;
}
@media screen and (max-width: 991px) {
  .index-responsibility .swiper {
    height: clamp(22.5rem, 12.8545606229rem + 15.5728587319vw, 31.25rem);
  }
}

.get-solution {
  padding: clamp(1.875rem, -0.4674638487rem + 3.7819799778vw, 4rem) 0;
  background: #f6f8fb;
}
.get-solution .container {
  display: flex;
  align-items: center;
}
.get-solution .left {
  width: 33.33%;
  display: flex;
  flex-direction: column;
  gap: clamp(0.625rem, -0.0639599555rem + 1.1123470523vw, 1.25rem);
}
.get-solution .left h2 {
  font-size: clamp(1.25rem, -0.8168798665rem + 3.3370411568vw, 3.125rem);
}
.get-solution .left p {
  font-size: clamp(1rem, 0.7244160178rem + 0.4449388209vw, 1.25rem);
  color: #474747;
  line-height: 2;
}
.get-solution .right {
  width: 66.66%;
}
.get-solution .right form {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: clamp(0.625rem, -0.3395439377rem + 1.5572858732vw, 1.5rem);
}
.get-solution .right form .group {
  background: #fff;
  height: clamp(2.5rem, 1.9488320356rem + 0.8898776418vw, 3rem);
  border-radius: clamp(0.25rem, 0.1122080089rem + 0.2224694105vw, 0.375rem);
  padding: 0 clamp(0.625rem, -0.752919911rem + 2.2246941046vw, 1.875rem);
  grid-column: span 2;
}
.get-solution .right form .group:nth-child(4), .get-solution .right form .group:nth-child(5) {
  grid-column: span 3;
}
.get-solution .right form .group.textarea {
  height: auto;
  padding: clamp(0.375rem, -0.0383759733rem + 0.6674082314vw, 0.75rem) clamp(0.625rem, -0.752919911rem + 2.2246941046vw, 1.875rem);
  grid-column: span 6;
}
.get-solution .right form .group.btn-primary {
  background: none;
  padding: 0;
}
.get-solution .right form .group.btn-primary button {
  padding: 0 clamp(1rem, -0.2401279199rem + 2.0022246941vw, 2.125rem);
}
.get-solution .right form .group input, .get-solution .right form .group textarea, .get-solution .right form .group select {
  width: 100%;
  height: 100%;
  outline: none;
  font-size: clamp(1rem, 0.8622080089rem + 0.2224694105vw, 1.125rem);
}
@media screen and (max-width: 991px) {
  .get-solution .container {
    flex-direction: column;
    gap: clamp(0.9375rem, 0.5930200222rem + 0.5561735261vw, 1.25rem);
  }
  .get-solution .left, .get-solution .right {
    width: 100%;
  }
  .get-solution .right form {
    grid-template-columns: repeat(1, 1fr);
  }
  .get-solution .right form .group {
    grid-column: span 1 !important;
  }
}

.about-culture {
  padding: clamp(2.5rem, -0.255839822rem + 4.4493882091vw, 5rem) 0;
}
.about-culture ul {
  margin-top: clamp(1.25rem, 0.2854560623rem + 1.5572858732vw, 2.125rem);
  display: flex;
  justify-content: space-between;
  gap: clamp(0.625rem, -0.0639599555rem + 1.1123470523vw, 1.25rem);
  height: clamp(16.25rem, -3.0408787542rem + 31.1457174638vw, 33.75rem);
}
.about-culture ul li {
  height: 100%;
  width: 24.5%;
  border-radius: clamp(0.5rem, 0.3622080089rem + 0.2224694105vw, 0.625rem);
  overflow: hidden;
  transition: all 0.3s;
  position: relative;
  z-index: 2;
  color: #fff;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  text-align: center;
  padding: 0 clamp(0.625rem, -0.0639599555rem + 1.1123470523vw, 1.25rem);
  padding-bottom: clamp(1.25rem, -0.8168798665rem + 3.3370411568vw, 3.125rem);
}
.about-culture ul li.active {
  width: 49%;
}
.about-culture ul li.active .text {
  transform: translateY(0);
}
.about-culture ul li.active .text p {
  opacity: 1;
}
.about-culture ul li .text {
  transform: translateY(clamp(1.25rem, -0.127919911rem + 2.2246941046vw, 2.5rem));
  transition: all 0.3s;
}
.about-culture ul li .text h3 {
  font-size: clamp(1.25rem, 0.5610400445rem + 1.1123470523vw, 1.875rem);
  margin-bottom: clamp(0.375rem, 0.0994160178rem + 0.4449388209vw, 0.625rem);
}
.about-culture ul li .text p {
  font-size: clamp(1rem, 0.7244160178rem + 0.4449388209vw, 1.25rem);
  opacity: 0;
  transition: all 0.3s;
}
@media screen and (max-width: 991px) {
  .about-culture ul li.active img {
    filter: brightness(0.5);
  }
}

.about-honor {
  padding: clamp(2.5rem, -0.255839822rem + 4.4493882091vw, 5rem) 0;
  padding-bottom: clamp(1.375rem, -0.2096078977rem + 2.5583982202vw, 2.8125rem);
  background: #f8f8ff;
}
.about-honor::after {
  content: "";
  width: 100%;
  height: clamp(9.375rem, -0.9593993326rem + 16.6852057842vw, 18.75rem);
  background: #e4e4f9;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}
.about-honor::before {
  content: "";
  width: 100%;
  height: clamp(0.625rem, -0.0639599555rem + 1.1123470523vw, 1.25rem);
  background: #fff;
  position: absolute;
  bottom: clamp(4.6875rem, -0.4796996663rem + 8.3426028921vw, 9.375rem);
}
.about-honor .section-title {
  margin-bottom: clamp(1.25rem, 0.2854560623rem + 1.5572858732vw, 2.125rem);
}
.about-honor .swiper .swiper-slide.swiper-slide-active .img img {
  transform: scale(1);
}
.about-honor .swiper .swiper-slide.swiper-slide-active .title {
  opacity: 1;
}
.about-honor .swiper .img {
  height: clamp(16.25rem, 2.4708008899rem + 22.2469410456vw, 28.75rem);
}
.about-honor .swiper .img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
  transform: scale(0.76);
  transform-origin: center bottom;
  transition: all 0.5s;
}
.about-honor .swiper .title {
  margin-top: clamp(2.5rem, -1.633759733rem + 6.6740823137vw, 6.25rem);
  text-align: center;
  font-size: clamp(1rem, 0.4488320356rem + 0.8898776418vw, 1.5rem);
  height: clamp(2.5rem, 1.122080089rem + 2.2246941046vw, 3.75rem);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.5s;
}
.about-honor .swiper .swiper-btns {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 2;
}

.about-team {
  padding: clamp(2.5rem, -0.255839822rem + 4.4493882091vw, 5rem) 0;
}
.about-team .cards {
  margin-top: clamp(1.25rem, -0.8168798665rem + 3.3370411568vw, 3.125rem);
  display: grid;
  align-items: flex-end;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.25rem, -0.8168798665rem + 3.3370411568vw, 3.125rem);
  min-height: clamp(18.125rem, 2.9678809789rem + 24.4716351502vw, 31.875rem);
}
.about-team .cards .card {
  padding: clamp(1.25rem, -0.127919911rem + 2.2246941046vw, 2.5rem) clamp(1.25rem, -0.8168798665rem + 3.3370411568vw, 3.125rem);
  position: relative;
  z-index: 2;
  border-radius: clamp(1rem, 0.4488320356rem + 0.8898776418vw, 1.5rem);
  overflow: hidden;
}
.about-team .cards .card::after {
  content: "";
  width: 100%;
  height: 100%;
  background-image: linear-gradient(to right, rgba(8, 40, 126, 0.85), rgba(16, 140, 255, 0.85));
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  transition: all 0.3s;
}
.about-team .cards .card.active {
  background: rgba(255, 255, 255, 0.75);
}
.about-team .cards .card.active::after {
  opacity: 0;
}
.about-team .cards .card.active .title * {
  background-image: linear-gradient(-30deg, var(--color-primary), var(--color-second));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.about-team .cards .card.active ul {
  margin-top: clamp(1rem, 0.4488320356rem + 0.8898776418vw, 1.5rem);
  gap: clamp(0.625rem, -0.0639599555rem + 1.1123470523vw, 1.25rem);
}
.about-team .cards .card.active ul li {
  height: clamp(3.75rem, 0.994160178rem + 4.4493882091vw, 6.25rem);
  opacity: 1;
}
.about-team .cards .card .title {
  font-size: clamp(1.25rem, 0.1476640712rem + 1.7797552836vw, 2.25rem);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  line-height: 1.2;
}
.about-team .cards .card .title i {
  font-size: clamp(1.5rem, -0.9802558398rem + 4.0044493882vw, 3.75rem);
  line-height: 1;
  font-weight: normal;
}
.about-team .cards .card ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  transition: all 0.3s;
  gap: 0 clamp(0.625rem, -0.0639599555rem + 1.1123470523vw, 1.25rem);
}
.about-team .cards .card ul li {
  border-radius: clamp(1rem, 0.4488320356rem + 0.8898776418vw, 1.5rem);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 2px;
  height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.3s;
}
.about-team .cards .card ul li img {
  width: clamp(2.125rem, 1.0226640712rem + 1.7797552836vw, 3.125rem);
  height: clamp(2.125rem, 1.0226640712rem + 1.7797552836vw, 3.125rem);
}
.about-team .cards .card ul li span {
  font-size: clamp(0.875rem, 0.7372080089rem + 0.2224694105vw, 1rem);
  text-align: center;
}
@media screen and (max-width: 991px) {
  .about-team .cards {
    grid-template-columns: repeat(1, 1fr);
  }
  .about-team .cards .card {
    background: rgba(255, 255, 255, 0.75);
  }
  .about-team .cards .card::after {
    display: none;
  }
  .about-team .cards .card .title * {
    background-image: linear-gradient(-30deg, var(--color-primary), var(--color-second));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
  .about-team .cards .card ul {
    margin-top: clamp(1rem, -0.6535038932rem + 2.6696329255vw, 2.5rem);
    gap: clamp(0.625rem, -0.0639599555rem + 1.1123470523vw, 1.25rem);
  }
  .about-team .cards .card ul li {
    height: clamp(3.75rem, 0.994160178rem + 4.4493882091vw, 6.25rem);
    opacity: 1;
  }
}

.join-page {
  padding: clamp(2.5rem, -0.255839822rem + 4.4493882091vw, 5rem) 0;
}
.join-page .join-tabs {
  margin-top: clamp(1.25rem, -0.127919911rem + 2.2246941046vw, 2.5rem);
  display: flex;
  justify-content: center;
  gap: clamp(0.625rem, 0.2116240267rem + 0.6674082314vw, 1rem);
  margin-bottom: clamp(1.25rem, -0.127919911rem + 2.2246941046vw, 2.5rem);
}
.join-page .join-tabs a {
  height: clamp(2.5rem, 1.8110400445rem + 1.1123470523vw, 3.125rem);
  padding: 0 clamp(1.25rem, 0.1476640712rem + 1.7797552836vw, 2.25rem);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(1rem, 0.7244160178rem + 0.4449388209vw, 1.25rem);
  color: #666;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: clamp(0.375rem, 0.0994160178rem + 0.4449388209vw, 0.625rem);
  transition: all 0.3s;
}
.join-page .join-tabs a:hover {
  color: var(--color-primary);
  border-color: var(--color-primary);
}
.join-page .join-tabs a.active {
  color: #fff;
  background-image: linear-gradient(to right, var(--color-primary), var(--color-second));
  border-color: var(--color-second);
}
.join-page .join-list {
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 0.1988320356rem + 0.8898776418vw, 1.25rem);
}
.join-page .join-item {
  background: #fff;
  border-radius: clamp(0.5rem, 0.2244160178rem + 0.4449388209vw, 0.75rem);
  transition: border-color 0.3s, box-shadow 0.3s;
}
.join-page .join-item.active {
  box-shadow: 0 clamp(0.25rem, -0.0255839822rem + 0.4449388209vw, 0.5rem) clamp(0.625rem, -0.0639599555rem + 1.1123470523vw, 1.25rem) rgba(8, 40, 126, 0.08);
}
.join-page .join-item.active .join-head .name {
  background-image: linear-gradient(90deg, var(--color-primary), var(--color-second));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.join-page .join-item.active .join-head .toggle {
  color: #fff;
  border-color: var(--color-second);
  background-image: linear-gradient(to right, var(--color-primary), var(--color-second));
}
.join-page .join-item.active .join-head .toggle i {
  transform: rotate(-90deg);
  color: #Fff;
}
.join-page .join-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(0.625rem, -0.0639599555rem + 1.1123470523vw, 1.25rem);
  padding: clamp(0.9375rem, -0.0959399333rem + 1.6685205784vw, 1.875rem) clamp(1.25rem, -0.8168798665rem + 3.3370411568vw, 3.125rem);
  cursor: pointer;
}
.join-page .join-head .title {
  display: flex;
  flex-direction: column;
  gap: clamp(0.5rem, -0.0511679644rem + 0.8898776418vw, 1rem);
}
.join-page .join-head .name {
  font-size: clamp(1.25rem, 0.5610400445rem + 1.1123470523vw, 1.875rem);
  font-weight: bold;
  color: #333;
}
.join-page .join-head .tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  flex: 1;
}
.join-page .join-head .tags span {
  font-size: clamp(0.8125rem, 0.6747080089rem + 0.2224694105vw, 0.9375rem);
  color: #777;
}
.join-page .join-head .tags span:not(:last-child)::after {
  content: "|";
  margin: 0 clamp(0.375rem, 0.0994160178rem + 0.4449388209vw, 0.625rem);
  color: #ddd;
}
.join-page .join-head .toggle {
  font-size: clamp(0.875rem, 0.7372080089rem + 0.2224694105vw, 1rem);
  color: #999;
  height: clamp(2.5rem, 1.8110400445rem + 1.1123470523vw, 3.125rem);
  padding: 0 clamp(0.625rem, -0.0639599555rem + 1.1123470523vw, 1.25rem);
  display: inline-flex;
  align-items: center;
  gap: clamp(0.375rem, 0.0994160178rem + 0.4449388209vw, 0.625rem);
  color: var(--color-primary);
  border: 1px solid var(--color-primary);
  border-radius: clamp(0.25rem, -0.0255839822rem + 0.4449388209vw, 0.5rem);
  transition: all 0.3s;
}
.join-page .join-head .toggle i {
  font-size: clamp(1rem, 0.8622080089rem + 0.2224694105vw, 1.125rem);
  transition: transform 0.3s;
  transform: rotate(90deg);
}
.join-page .join-body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s ease;
}
.join-page .join-item.active .join-body {
  grid-template-rows: 1fr;
  padding-bottom: clamp(1.25rem, -0.8168798665rem + 3.3370411568vw, 3.125rem);
  border-top: 1px dashed #dedede;
}
.join-page .g-editor {
  overflow: hidden;
  min-height: 0;
  padding: 0 clamp(1.25rem, -0.8168798665rem + 3.3370411568vw, 3.125rem);
}
.join-page .g-editor ol {
  list-style-type: decimal;
  padding-left: clamp(1.25rem, 0.9744160178rem + 0.4449388209vw, 1.5rem);
}
.join-page .g-editor ol li {
  font-size: clamp(0.875rem, 0.5994160178rem + 0.4449388209vw, 1.125rem);
  color: #555;
  line-height: 2;
  margin-top: clamp(0.25rem, 0.1122080089rem + 0.2224694105vw, 0.375rem);
}
.join-page .g-editor h4 {
  margin-top: clamp(1.25rem, -0.127919911rem + 2.2246941046vw, 2.5rem);
  font-size: clamp(1rem, 0.8622080089rem + 0.2224694105vw, 1.125rem);
  color: var(--color-primary);
  font-weight: bold;
}
.join-page .g-editor .btn-primary.join-apply {
  margin-top: clamp(1.25rem, -0.127919911rem + 2.2246941046vw, 2.5rem);
}
.join-page .g-editor .btn-primary.join-apply a {
  gap: clamp(0.625rem, -0.0639599555rem + 1.1123470523vw, 1.25rem);
  padding-right: clamp(0.9375rem, -0.0959399333rem + 1.6685205784vw, 1.875rem);
}
@media screen and (max-width: 991px) {
  .join-page .join-head {
    flex-wrap: wrap;
  }
  .join-page .join-head .tags {
    order: 3;
    width: 100%;
  }
}

.cases-page {
  padding: clamp(2.5rem, -0.255839822rem + 4.4493882091vw, 5rem) 0;
}
.cases-page .cases-filter {
  margin-top: clamp(1.25rem, -0.127919911rem + 2.2246941046vw, 2.5rem);
  display: flex;
  justify-content: center;
  gap: clamp(0.625rem, -1.4418798665rem + 3.3370411568vw, 2.5rem);
  margin-bottom: clamp(1.25rem, -0.8168798665rem + 3.3370411568vw, 3.125rem);
}
.cases-page .cases-filter a {
  height: clamp(2.5rem, 1.8110400445rem + 1.1123470523vw, 3.125rem);
  padding: 0 clamp(0.375rem, -0.0383759733rem + 0.6674082314vw, 0.75rem);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(1rem, 0.8622080089rem + 0.2224694105vw, 1.125rem);
  color: #666;
  background: #f5f7fa;
  border-radius: clamp(0.375rem, 0.0994160178rem + 0.4449388209vw, 0.625rem);
  transition: all 0.3s;
  white-space: nowrap;
}
.cases-page .cases-filter a:hover {
  color: var(--color-primary);
}
.cases-page .cases-filter a.active {
  color: #fff;
  background-image: linear-gradient(to right, var(--color-primary), var(--color-second));
}
@media screen and (max-width: 991px) {
  .cases-page .cases-filter {
    overflow: scroll;
    scroll-snap-type: x mandatory;
  }
  .cases-page .cases-filter a {
    flex-shrink: 0;
    white-space: nowrap;
  }
}

.cases-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1.25rem, -0.127919911rem + 2.2246941046vw, 2.5rem);
}
.cases-list .item {
  display: block;
}
.cases-list .item .img {
  padding-top: 62.5%;
  border-radius: clamp(0.375rem, 0.0994160178rem + 0.4449388209vw, 0.625rem);
  overflow: hidden;
}
.cases-list .item .img img.g-bg {
  transition: all 0.3s;
}
.cases-list .item h3 {
  margin-top: clamp(0.625rem, 0.2116240267rem + 0.6674082314vw, 1rem);
  font-size: clamp(1rem, 0.5866240267rem + 0.6674082314vw, 1.375rem);
  color: #333;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
.cases-list .item:hover .img img.g-bg {
  transform: scale(1.05);
}
.cases-list .item:hover h3 {
  background-image: linear-gradient(to right, var(--color-primary), var(--color-second));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
@media screen and (max-width: 991px) {
  .cases-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

.services-page {
  padding: clamp(2.5rem, -0.255839822rem + 4.4493882091vw, 5rem) 0;
}
.services-page .section-title {
  margin-bottom: clamp(1.25rem, -0.127919911rem + 2.2246941046vw, 2.5rem);
}
.services-page .services-list {
  display: flex;
  flex-direction: column;
  gap: clamp(1.25rem, -1.505839822rem + 4.4493882091vw, 3.75rem);
}
.services-page .services-list .list-item {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  background: #f6f6fd;
}
.services-page .services-list .list-item:nth-child(2n) .img {
  order: 2;
}
.services-page .services-list .list-item:hover .text .more {
  background-image: linear-gradient(135deg, var(--color-primary), var(--color-second));
  color: #fff;
}
.services-page .services-list .list-item .img {
  padding-top: 56.25%;
  border-radius: clamp(0.375rem, 0.0994160178rem + 0.4449388209vw, 0.625rem);
  overflow: hidden;
}
.services-page .services-list .list-item .img i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  width: clamp(3.75rem, 2.372080089rem + 2.2246941046vw, 5rem);
  height: clamp(3.75rem, 2.372080089rem + 2.2246941046vw, 5rem);
  color: var(--color-primary);
  font-size: clamp(1.5rem, 1.0866240267rem + 0.6674082314vw, 1.875rem);
  display: flex;
  align-items: center;
  justify-content: center;
  background: url(../img/hexagon.svg) center no-repeat;
  background-size: contain;
}
.services-page .services-list .list-item .img img.g-bg {
  transition: all 0.3s;
}
.services-page .services-list .list-item .text {
  padding: 0 clamp(1.25rem, -4.261679644rem + 8.8987764182vw, 6.25rem);
}
.services-page .services-list .list-item .text h3 {
  font-size: clamp(1.25rem, 0.5610400445rem + 1.1123470523vw, 1.875rem);
  margin-bottom: clamp(0.5rem, -0.0511679644rem + 0.8898776418vw, 1rem);
}
.services-page .services-list .list-item .text p {
  font-size: clamp(0.875rem, 0.7372080089rem + 0.2224694105vw, 1rem);
  line-height: 2;
  color: #333;
  min-height: clamp(10rem, 7.244160178rem + 4.4493882091vw, 12.5rem);
}
.services-page .services-list .list-item .text .more {
  width: clamp(2.5rem, 1.8110400445rem + 1.1123470523vw, 3.125rem);
  height: clamp(2.5rem, 1.8110400445rem + 1.1123470523vw, 3.125rem);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #205bab;
  border-radius: clamp(0.375rem, 0.0994160178rem + 0.4449388209vw, 0.625rem);
  color: #205bab;
  transition: all 0.3s;
  margin-top: clamp(0.625rem, -0.0639599555rem + 1.1123470523vw, 1.25rem);
}
.services-page .services-list .list-item .text .more::after {
  display: none;
}
.services-page .services-list .list-item .text .more i {
  font-size: clamp(1rem, 0.7244160178rem + 0.4449388209vw, 1.25rem);
}
.services-page .services-list .list-item:hover .img img.g-bg {
  transform: scale(1.05);
}
.services-page .services-list .list-item:hover .text h3 {
  background-image: linear-gradient(to right, var(--color-primary), var(--color-second));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
@media screen and (max-width: 991px) {
  .services-page .services-list .list-item {
    grid-template-columns: 1fr;
  }
  .services-page .services-list .list-item .img {
    order: 0 !important;
  }
  .services-page .services-list .list-item .text {
    padding: clamp(0.9375rem, 0.5930200222rem + 0.5561735261vw, 1.25rem);
  }
}

.services-flow {
  padding: clamp(2.5rem, -0.9447997775rem + 5.5617352614vw, 5.625rem) 0;
  background: #f6f8fb;
}
.services-flow .section-title {
  margin-bottom: clamp(1.25rem, -0.127919911rem + 2.2246941046vw, 2.5rem);
}
.services-flow ol {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: clamp(0.75rem, -0.0767519466rem + 1.3348164627vw, 1.5rem) clamp(0.625rem, -0.0639599555rem + 1.1123470523vw, 1.25rem);
}
.services-flow ol li {
  display: flex;
  flex-direction: column;
  gap: clamp(0.25rem, -0.0255839822rem + 0.4449388209vw, 0.5rem);
  padding: clamp(1rem, 0.3110400445rem + 1.1123470523vw, 1.625rem);
  border-radius: clamp(0.625rem, -0.0639599555rem + 1.1123470523vw, 1.25rem);
  overflow: hidden;
  position: relative;
  z-index: 2;
  background: #fff;
  transition: all 0.3s;
}
.services-flow ol li::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: -1;
  opacity: 0;
  transition: all 0.3s;
}
.services-flow ol li:hover {
  color: #fff;
}
.services-flow ol li:hover::after {
  opacity: 1;
}
.services-flow ol li:hover i, .services-flow ol li:hover p, .services-flow ol li:hover .num {
  color: inherit;
}
.services-flow ol li:hover img {
  opacity: 1;
}
.services-flow ol li i {
  font-size: clamp(1.5rem, 1.0866240267rem + 0.6674082314vw, 1.875rem);
  color: var(--color-primary);
}
.services-flow ol li img {
  opacity: 0;
  z-index: -2;
  transition: all 0.3s;
}
.services-flow ol li .num {
  text-align: right;
  color: #999;
  font-size: clamp(0.875rem, 0.4616240267rem + 0.6674082314vw, 1.25rem);
}
.services-flow ol li p {
  margin-top: clamp(0.5rem, 0.3622080089rem + 0.2224694105vw, 0.625rem);
  font-size: clamp(1rem, 0.5866240267rem + 0.6674082314vw, 1.375rem);
  color: #333;
}
@media screen and (min-width: 992px) and (max-width: 1600px) {
  .services-flow ol {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media screen and (min-width: 769px) and (max-width: 991px) {
  .services-flow ol {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .services-flow ol {
    grid-template-columns: repeat(2, 1fr);
  }
}

.rel-services-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1.25rem, -0.9546718576rem + 3.5595105673vw, 3.25rem);
}
.rel-services-list .list-item:hover .text h3 {
  background-image: linear-gradient(to right, var(--color-primary), var(--color-second));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.rel-services-list .list-item:hover .img::after {
  background-image: linear-gradient(to right, var(--color-primary), var(--color-second));
  border: none;
}
.rel-services-list .list-item:hover .img img {
  transform: scale(1.05);
}
.rel-services-list .list-item .img {
  padding-top: 116.6%;
  position: relative;
  z-index: 2;
  overflow: hidden;
  border-radius: clamp(0.5625rem, -0.05756396rem + 1.0011123471vw, 1.125rem);
}
.rel-services-list .list-item .img::after {
  position: absolute;
  left: 10px;
  bottom: 10px;
  content: "\e600";
  font-family: "iconfont" !important;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  width: clamp(2.125rem, 1.0226640712rem + 1.7797552836vw, 3.125rem);
  height: clamp(2.125rem, 1.0226640712rem + 1.7797552836vw, 3.125rem);
  border-radius: clamp(0.375rem, 0.0994160178rem + 0.4449388209vw, 0.625rem);
  border: 1px solid #fff;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(1.125rem, 0.8494160178rem + 0.4449388209vw, 1.375rem);
}
.rel-services-list .list-item .img img.g-bg {
  transition: all 0.3s;
}
.rel-services-list .list-item .text {
  margin-top: clamp(0.625rem, 0.2116240267rem + 0.6674082314vw, 1rem);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(0.375rem, 0.0994160178rem + 0.4449388209vw, 0.625rem);
}
.rel-services-list .list-item .text h3 {
  font-size: clamp(1.125rem, 0.2982480534rem + 1.3348164627vw, 1.875rem);
}
.rel-services-list .list-item .text p {
  font-size: clamp(0.875rem, 0.7372080089rem + 0.2224694105vw, 1rem);
  color: #666;
  line-height: 1.6;
}
@media screen and (max-width: 991px) {
  .rel-services-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

.contact-page {
  padding: clamp(2.5rem, -0.255839822rem + 4.4493882091vw, 5rem) 0;
  padding-bottom: clamp(2.5rem, -2.3227196885rem + 7.786429366vw, 6.875rem);
}
.contact-page .contact-info {
  margin-top: clamp(1.25rem, -0.127919911rem + 2.2246941046vw, 2.5rem);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(0.9375rem, -0.0959399333rem + 1.6685205784vw, 1.875rem);
}
.contact-page .info-item {
  padding: clamp(1.25rem, -2.1947997775rem + 5.5617352614vw, 4.375rem) clamp(0.625rem, -0.752919911rem + 2.2246941046vw, 1.875rem);
  background: #f6f6fd;
  border-radius: clamp(1rem, 0.0354560623rem + 1.5572858732vw, 1.875rem);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: clamp(1rem, 0.4488320356rem + 0.8898776418vw, 1.5rem);
  transition: all 0.3s;
}
.contact-page .info-item .label {
  font-size: clamp(1rem, 0.8622080089rem + 0.2224694105vw, 1.125rem);
  color: #999;
  display: flex;
  align-items: center;
  gap: clamp(0.25rem, -0.0255839822rem + 0.4449388209vw, 0.5rem);
}
.contact-page .info-item .label > i {
  font-size: clamp(1.125rem, 0.7116240267rem + 0.6674082314vw, 1.5rem);
  color: var(--color-primary);
}
.contact-page .info-item .value {
  font-size: clamp(1rem, 0.8622080089rem + 0.2224694105vw, 1.125rem);
  color: #333;
}
.contact-page .info-item .value.phone {
  font-size: clamp(1.25rem, 0.5610400445rem + 1.1123470523vw, 1.875rem);
  font-family: "Montserrat";
  font-weight: bold;
}
.contact-page .info-item.qr-item {
  flex-direction: row;
}
.contact-page .info-item.qr-item .qr {
  display: flex;
  flex-direction: column;
  gap: clamp(0.25rem, -0.0255839822rem + 0.4449388209vw, 0.5rem);
  align-items: center;
}
.contact-page .info-item.qr-item .qr img {
  width: clamp(5rem, 4.3110400445rem + 1.1123470523vw, 5.625rem);
  height: clamp(5rem, 4.3110400445rem + 1.1123470523vw, 5.625rem);
  margin: 0 auto;
}
.contact-page .info-item:hover {
  border-color: var(--color-primary);
  box-shadow: 0 clamp(0.375rem, -0.0383759733rem + 0.6674082314vw, 0.75rem) clamp(1.25rem, -0.127919911rem + 2.2246941046vw, 2.5rem) rgba(8, 40, 126, 0.08);
}
@media screen and (max-width: 991px) {
  .contact-page .contact-info {
    grid-template-columns: repeat(1, 1fr);
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: clamp(0.25rem, -0.0255839822rem + 0.4449388209vw, 0.5rem);
  height: clamp(2.5rem, 1.9488320356rem + 0.8898776418vw, 3rem);
  padding: 0 clamp(1.25rem, 0.4232480534rem + 1.3348164627vw, 2rem);
  font-size: clamp(0.875rem, 0.8061040044rem + 0.1112347052vw, 0.9375rem);
  border-radius: clamp(0.25rem, 0.1122080089rem + 0.2224694105vw, 0.375rem);
  transition: all 0.3s;
  cursor: pointer;
  border: none;
}
.btn i {
  font-size: clamp(0.75rem, 0.6122080089rem + 0.2224694105vw, 0.875rem);
}
.btn.btn-fill {
  background: var(--color-primary);
  color: #fff;
}
.btn.btn-fill:hover {
  background: var(--color-second);
}
.btn.btn-line {
  background: transparent;
  border: 1px solid var(--color-primary);
  color: var(--color-primary);
}
.btn.btn-line:hover {
  background: var(--color-primary);
  color: #fff;
}

.rel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: clamp(1rem, 0.4488320356rem + 0.8898776418vw, 1.5rem);
}
.rel-head .rel-title {
  font-size: clamp(1.25rem, 0.6988320356rem + 0.8898776418vw, 1.75rem);
  font-weight: bold;
  color: #222;
  position: relative;
  padding-left: clamp(0.75rem, 0.4744160178rem + 0.4449388209vw, 1rem);
}
.rel-head .rel-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: clamp(0.25rem, 0.1811040044rem + 0.1112347052vw, 0.3125rem);
  height: 70%;
  background-image: linear-gradient(180deg, var(--color-primary), var(--color-second));
  border-radius: clamp(0.125rem, 0.0561040044rem + 0.1112347052vw, 0.1875rem);
}
.rel-head .rel-more {
  font-size: clamp(0.8125rem, 0.7436040044rem + 0.1112347052vw, 0.875rem);
  color: #999;
  display: inline-flex;
  align-items: center;
  gap: clamp(0.25rem, 0.1122080089rem + 0.2224694105vw, 0.375rem);
  transition: color 0.3s;
}
.rel-head .rel-more:hover {
  color: var(--color-primary);
}
.rel-head .rel-more i {
  font-size: clamp(0.75rem, 0.6811040044rem + 0.1112347052vw, 0.8125rem);
}

.article-detail .article-detail-box {
  background: #fff;
  padding: clamp(1.25rem, -4.261679644rem + 8.8987764182vw, 6.25rem) clamp(0.9375rem, -8.3634593993rem + 15.0166852058vw, 9.375rem);
  border-radius: clamp(1rem, -0.2401279199rem + 2.0022246941vw, 2.125rem);
}
.article-detail .article-head {
  text-align: center;
  border-bottom: 1px solid #eee;
  padding-bottom: clamp(1.25rem, 0.5610400445rem + 1.1123470523vw, 1.875rem);
  margin-bottom: clamp(1.5rem, 0.6732480534rem + 1.3348164627vw, 2.25rem);
}
.article-detail .article-head .section-title {
  margin-bottom: clamp(0.75rem, 0.3366240267rem + 0.6674082314vw, 1.125rem);
}
.article-detail .article-head .meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1rem, 0.4488320356rem + 0.8898776418vw, 1.5rem);
  flex-wrap: wrap;
  font-size: clamp(0.875rem, 0.7372080089rem + 0.2224694105vw, 1rem);
  color: #666;
}
.article-detail .article-head .meta span {
  display: inline-flex;
  align-items: center;
  gap: clamp(0.25rem, 0.1122080089rem + 0.2224694105vw, 0.375rem);
}
.article-detail .article-head .meta i {
  font-size: clamp(1rem, 0.7244160178rem + 0.4449388209vw, 1.25rem);
}
.article-detail .article-body {
  font-size: clamp(1rem, 0.8622080089rem + 0.2224694105vw, 1.125rem);
  line-height: 1.8;
}
.article-detail .article-body p:has(img) {
  margin: clamp(0.5rem, -0.0511679644rem + 0.8898776418vw, 1rem) 0;
}
.article-detail .article-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.25rem, -1.505839822rem + 4.4493882091vw, 3.75rem);
  margin-top: clamp(1.875rem, 0.497080089rem + 2.2246941046vw, 3.125rem);
}
.article-detail .article-nav a {
  display: flex;
  flex-direction: column;
  gap: clamp(0.25rem, -0.0255839822rem + 0.4449388209vw, 0.5rem);
  padding: clamp(1rem, 0.4488320356rem + 0.8898776418vw, 1.5rem) clamp(1.25rem, -0.8168798665rem + 3.3370411568vw, 3.125rem);
  border-radius: clamp(1rem, 0.4488320356rem + 0.8898776418vw, 1.5rem);
  background: #f6f6fd;
}
.article-detail .article-nav a .label {
  font-size: clamp(0.875rem, 0.5994160178rem + 0.4449388209vw, 1.125rem);
  color: var(--color-primary);
  display: inline-flex;
  align-items: center;
  gap: clamp(0.25rem, 0.1122080089rem + 0.2224694105vw, 0.375rem);
}
.article-detail .article-nav a .t {
  font-size: clamp(1rem, 0.7244160178rem + 0.4449388209vw, 1.25rem);
  color: #333;
  transition: color 0.3s;
}
.article-detail .article-nav a:hover .t {
  color: var(--color-primary);
}
@media screen and (max-width: 991px) {
  .article-detail .article-nav {
    grid-template-columns: 1fr;
  }
}

.page-related {
  padding: clamp(2.5rem, -0.255839822rem + 4.4493882091vw, 5rem) 0;
}

.case-detail {
  padding-top: clamp(0.625rem, -0.752919911rem + 2.2246941046vw, 1.875rem);
}
.case-detail .case-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}
.case-detail .swiper {
  position: relative;
  width: 100%;
}
.case-detail .swiper .img {
  position: relative;
  padding-top: 75%;
}
.case-detail .swiper .img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.case-detail .swiper .swiper-button-prev, .case-detail .swiper .swiper-button-next {
  margin: 0;
  transform: translateY(-50%);
  width: clamp(2.5rem, 1.122080089rem + 2.2246941046vw, 3.75rem);
  height: clamp(2.5rem, 1.122080089rem + 2.2246941046vw, 3.75rem);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #205bab;
  border-radius: clamp(0.375rem, 0.0994160178rem + 0.4449388209vw, 0.625rem);
  color: #205bab;
  transition: all 0.3s;
}
.case-detail .swiper .swiper-button-prev::after, .case-detail .swiper .swiper-button-next::after {
  display: none;
}
.case-detail .swiper .swiper-button-prev:hover, .case-detail .swiper .swiper-button-next:hover {
  background-image: linear-gradient(135deg, var(--color-primary), var(--color-second));
  color: #fff;
}
.case-detail .swiper .swiper-button-prev i, .case-detail .swiper .swiper-button-next i {
  font-size: clamp(1.125rem, 0.7116240267rem + 0.6674082314vw, 1.5rem);
}
.case-detail .case-info {
  padding-left: clamp(1.25rem, -2.4703837597rem + 6.0066740823vw, 4.625rem);
}
.case-detail .case-info .tag {
  display: inline-flex;
  align-items: center;
  height: 28px;
  padding: 0 clamp(0.5rem, 0.2244160178rem + 0.4449388209vw, 0.75rem);
  color: #fff;
  background-image: linear-gradient(to right, var(--color-primary), var(--color-second));
  font-size: clamp(0.875rem, 0.7372080089rem + 0.2224694105vw, 1rem);
  border-radius: clamp(0.25rem, -0.0255839822rem + 0.4449388209vw, 0.5rem);
}
.case-detail .case-info .section-title {
  margin: clamp(1rem, 0.4488320356rem + 0.8898776418vw, 1.5rem) 0;
}
.case-detail .case-info .g-editor {
  margin-bottom: clamp(1.25rem, -2.883759733rem + 6.6740823137vw, 5rem);
}
.case-detail .case-info .g-editor ul {
  list-style: none;
}
.case-detail .case-info .g-editor ul li {
  display: flex;
  gap: clamp(0.5rem, -0.0511679644rem + 0.8898776418vw, 1rem);
  padding: clamp(0.25rem, -0.0255839822rem + 0.4449388209vw, 0.5rem) 0;
  font-size: clamp(1rem, 0.8622080089rem + 0.2224694105vw, 1.125rem);
  color: #666;
}
.case-detail .case-info .g-editor ul li span {
  color: #222;
  flex-shrink: 0;
  width: clamp(5.625rem, 3.5581201335rem + 3.3370411568vw, 7.5rem);
}
.case-detail .case-info .btn-primary {
  display: flex;
  gap: clamp(1.25rem, -0.127919911rem + 2.2246941046vw, 2.5rem);
}
.case-detail .case-info .btn-primary a {
  gap: clamp(0.625rem, -0.0639599555rem + 1.1123470523vw, 1.25rem);
  padding-right: clamp(1.25rem, 0.1476640712rem + 1.7797552836vw, 2.25rem);
}
@media screen and (max-width: 991px) {
  .case-detail .case-main {
    grid-template-columns: 1fr;
    gap: clamp(0.9375rem, 0.5930200222rem + 0.5561735261vw, 1.25rem);
  }
  .case-detail .case-info {
    padding-left: 0;
  }
}

.svc-overview {
  padding: clamp(2.5rem, 0.4331201335rem + 3.3370411568vw, 4.375rem) 0;
}
.svc-overview .ov-main {
  display: grid;
  grid-template-columns: 50% 50%;
  align-items: center;
}
.svc-overview .ov-text {
  padding-right: clamp(1.25rem, -0.8168798665rem + 3.3370411568vw, 3.125rem);
}
.svc-overview .ov-text .sub {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(0.375rem, 0.0994160178rem + 0.4449388209vw, 0.625rem);
  margin: clamp(0.625rem, -0.0639599555rem + 1.1123470523vw, 1.25rem) 0;
}
.svc-overview .ov-text .sub span {
  height: 26px;
  display: flex;
  align-items: center;
  padding: 0 clamp(0.5rem, -0.0511679644rem + 0.8898776418vw, 1rem);
  background: #f6f6fd;
  font-size: clamp(0.875rem, 0.7372080089rem + 0.2224694105vw, 1rem);
  color: #333;
  border-radius: clamp(0.25rem, 0.1122080089rem + 0.2224694105vw, 0.375rem);
}
.svc-overview .ov-text .g-editor {
  font-size: clamp(1rem, 0.8622080089rem + 0.2224694105vw, 1.125rem);
  color: #111;
  line-height: 1.8;
  margin-bottom: clamp(1rem, 0.4488320356rem + 0.8898776418vw, 1.5rem);
}
.svc-overview .ov-text .btn-primary a {
  gap: clamp(0.625rem, -0.0639599555rem + 1.1123470523vw, 1.25rem);
  padding-right: clamp(1rem, -0.2401279199rem + 2.0022246941vw, 2.125rem);
}
.svc-overview .ov-img {
  position: relative;
  padding-top: 57.5%;
  overflow: hidden;
}
@media screen and (max-width: 991px) {
  .svc-overview .ov-main {
    grid-template-columns: 1fr;
    gap: clamp(0.9375rem, 0.5930200222rem + 0.5561735261vw, 1.25rem);
  }
  .svc-overview .ov-text {
    padding-right: 0;
    order: 2;
  }
}

.svc-items {
  padding: clamp(2.5rem, 0.4331201335rem + 3.3370411568vw, 4.375rem) 0;
  background: #f6f6fd;
}
.svc-items .items-grid {
  margin-top: clamp(1.25rem, -0.127919911rem + 2.2246941046vw, 2.5rem);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1.25rem, -0.127919911rem + 2.2246941046vw, 2.5rem);
}
.svc-items .items-grid .item {
  background: #fff;
  padding: clamp(0.9375rem, -0.0959399333rem + 1.6685205784vw, 1.875rem) clamp(1.25rem, -0.8168798665rem + 3.3370411568vw, 3.125rem);
  border-radius: clamp(0.375rem, 0.0994160178rem + 0.4449388209vw, 0.625rem);
  display: flex;
  align-items: center;
  gap: clamp(0.9375rem, -0.0959399333rem + 1.6685205784vw, 1.875rem);
  position: relative;
  z-index: 2;
  overflow: hidden;
  transition: all 0.3s;
}
.svc-items .items-grid .item:nth-child(2n-1):last-child {
  grid-column: 2 span;
}
.svc-items .items-grid .item:hover {
  color: #fff;
}
.svc-items .items-grid .item:hover::after {
  opacity: 1;
}
.svc-items .items-grid .item:hover h3, .svc-items .items-grid .item:hover p {
  color: inherit;
}
.svc-items .items-grid .item::after {
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  content: "";
  width: 100%;
  height: 100%;
  background-image: linear-gradient(to right, var(--color-primary), var(--color-second));
  opacity: 0;
  transition: all 0.3s;
}
.svc-items .items-grid .item i {
  z-index: 3;
  width: clamp(3.75rem, 2.372080089rem + 2.2246941046vw, 5rem);
  height: clamp(3.75rem, 2.372080089rem + 2.2246941046vw, 5rem);
  color: var(--color-primary);
  font-size: clamp(1.5rem, 1.0866240267rem + 0.6674082314vw, 1.875rem);
  display: flex;
  align-items: center;
  justify-content: center;
  background: url(../img/hexagon2.svg) center no-repeat;
  background-size: contain;
}
.svc-items .items-grid .item .text {
  display: flex;
  flex-direction: column;
  gap: clamp(0.375rem, 0.0994160178rem + 0.4449388209vw, 0.625rem);
}
.svc-items .items-grid .item h3 {
  font-size: clamp(1.125rem, 0.7116240267rem + 0.6674082314vw, 1.5rem);
  color: #222;
}
.svc-items .items-grid .item p {
  font-size: clamp(1rem, 0.8622080089rem + 0.2224694105vw, 1.125rem);
  color: #666;
}
@media screen and (max-width: 991px) {
  .svc-items .items-grid {
    grid-template-columns: 1fr;
  }
  .svc-items .items-grid .item:last-child {
    grid-column: 1 span;
  }
}

.svc-advantage {
  padding: clamp(2.5rem, 0.4331201335rem + 3.3370411568vw, 4.375rem) 0;
}
.svc-advantage .adv-main {
  display: grid;
  align-items: flex-start;
  grid-template-columns: 50% 50%;
  margin-top: clamp(1.25rem, -0.127919911rem + 2.2246941046vw, 2.5rem);
}
.svc-advantage .adv-img {
  position: relative;
  padding-top: 72.5%;
  border-radius: clamp(0.625rem, -0.0639599555rem + 1.1123470523vw, 1.25rem);
  overflow: hidden;
}
.svc-advantage .adv-img img {
  transition: transform 0.4s ease;
}
.svc-advantage .adv-img:hover img {
  transform: scale(1.05);
}
.svc-advantage .adv-list {
  padding-left: clamp(1.25rem, -0.8168798665rem + 3.3370411568vw, 3.125rem);
  display: flex;
  flex-direction: column;
  gap: clamp(0.625rem, -0.752919911rem + 2.2246941046vw, 1.875rem);
}
.svc-advantage .adv-list .adv-item {
  display: flex;
  flex-direction: column;
  gap: clamp(0.25rem, 0.1122080089rem + 0.2224694105vw, 0.375rem);
  padding: clamp(1rem, 0.0354560623rem + 1.5572858732vw, 1.875rem);
  background: #eff1f8;
  border-radius: clamp(0.625rem, -0.0639599555rem + 1.1123470523vw, 1.25rem);
}
.svc-advantage .adv-list .adv-item.active .desc, .svc-advantage .adv-list .adv-item.active .ico {
  grid-template-rows: 1fr;
}
.svc-advantage .adv-list .adv-item .desc, .svc-advantage .adv-list .adv-item .ico {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s ease;
}
.svc-advantage .adv-list .adv-item .ico i {
  overflow: hidden;
  min-height: 0;
  font-size: clamp(1.25rem, 0.6988320356rem + 0.8898776418vw, 1.75rem);
  color: var(--color-primary);
}
.svc-advantage .adv-list .adv-item h4 {
  font-size: clamp(1.125rem, 0.7116240267rem + 0.6674082314vw, 1.5rem);
  color: #222;
}
.svc-advantage .adv-list .adv-item .desc p {
  font-size: clamp(0.875rem, 0.5994160178rem + 0.4449388209vw, 1.125rem);
  color: #888;
  overflow: hidden;
  min-height: 0;
}
@media screen and (max-width: 991px) {
  .svc-advantage .adv-main {
    grid-template-columns: 1fr;
    gap: clamp(0.9375rem, 0.5930200222rem + 0.5561735261vw, 1.25rem);
  }
  .svc-advantage .adv-list {
    padding-left: 0;
  }
}

.svc-related {
  padding: clamp(2.5rem, 1.122080089rem + 2.2246941046vw, 3.75rem) 0;
  background: #fff;
}
.svc-related .rel-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1rem, 0.4488320356rem + 0.8898776418vw, 1.5rem);
}
.svc-related .rel-grid a {
  background: #fff;
  border-radius: clamp(0.375rem, 0.0994160178rem + 0.4449388209vw, 0.625rem);
  overflow: hidden;
  transition: all 0.3s;
}
.svc-related .rel-grid a .img {
  position: relative;
  padding-top: 62%;
}
.svc-related .rel-grid a .ct {
  padding: clamp(0.75rem, 0.3366240267rem + 0.6674082314vw, 1.125rem);
}
.svc-related .rel-grid a .ct h3 {
  font-size: clamp(0.875rem, 0.7372080089rem + 0.2224694105vw, 1rem);
  color: #222;
  margin-bottom: clamp(0.375rem, 0.0994160178rem + 0.4449388209vw, 0.625rem);
  transition: color 0.3s;
}
.svc-related .rel-grid a .ct p {
  font-size: clamp(0.75rem, 0.75rem + 0vw, 0.75rem);
  color: #999;
  line-height: 1.7;
}
.svc-related .rel-grid a:hover {
  transform: translateY(-4px);
  box-shadow: 0 clamp(0.5rem, -0.0511679644rem + 0.8898776418vw, 1rem) clamp(1.25rem, -0.127919911rem + 2.2246941046vw, 2.5rem) rgba(8, 40, 126, 0.1);
}
.svc-related .rel-grid a:hover h3 {
  color: var(--color-primary);
}
@media screen and (max-width: 991px) {
  .svc-related .rel-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}/*# sourceMappingURL=styles.css.map */