:root {
  --tg-body-font-family: "Sarabun", sans-serif;
  --tg-heading-font-family: "Sarabun", sans-serif;
  --tg-icon-font-family: "Font Awesome 5 Free";
  --tg-body-font-size: 16px;
  --tg-body-line-height: 1.75;
  --tg-heading-line-height: 1.2;
  --tg-body-color: #666666;
  --tg-heading-color: #000038;
  --tg-theme-primary: #001b90;
  --tg-theme-secondary: #00329f;
  --tg-color-dark-blue: #0e104b;
  --tg-color-yellow-light: #ffb930;
  --tg-color-yellow-light-2: #ded9ce;
  --tg-color-white-default: #ffffff;
  --tg-color-sky-blue: #7ea7c8;
  --tg-color-gray-1: #dcdcec;
  --tg-color-gray-2: #c3c3ec;
  --tg-color-gray-3: #edf6fa;
  --tg-color-gray-4: #f3f8f9;
  --tg-color-gray-5: #dde3ff;
  --tg-color-gray-6: #96a1b8;
  --tg-color-gray-7: #4c4c5b;
  --tg-color-gray-8: #a6a6a6;
  --tg-color-gray-9: #fceff0;
  --tg-color-gray-10: #f6f6f6;
  --tg-color-gray-11: #f8f8f8;
  --tg-color-gray-12: #f9f9f9;
  --tg-color-gray-13: #696969;
  --tg-color-dark: #1c1a4a;
  --tg-color-black-1: #06042e;
  --tg-color-black-2: #151515;
  --tg-color-black-3: #00002f;
  --tg-color-black-4: #2d2d2d;
  --tg-color-black-5: #000;
  --tg-border-1: #5a5a8e;
  --tg-border-2: #dce5e9;
  --tg-border-3: #b2bfc5;
  --tg-border-4: #e8eced;
  --tg-border-5: #c3c3e1;
  --tg-border-6: #e0e0e0;
  --tg-border-7: #e2e2e2;
  --tg-border-8: #dbdbdb;
  --tg-border-9: #ff755e;
  --tg-fw-extra-bold: 800;
  --tg-fw-bold: 700;
  --tg-fw-semi-bold: 600;
  --tg-fw-medium: 500;
  --tg-fw-regular: 400;
  --tg-fw-light: 300;
}

@media (min-width: 2000px) {
  :root {
    --tg-body-font-size: 20px;
  }
}

body {
  font-family: var(--tg-body-font-family);
  font-size: var(--tg-body-font-size);
  font-weight: var(--tg-fw-regular);
  color: var(--tg-body-color);
  line-height: var(--tg-body-line-height);
}

img,
.img {
  max-width: 100%;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

a,
button {
  color: var(--tg-theme-primary);
  outline: none;
  text-decoration: none;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

a:focus,
.btn:focus,
.button:focus {
  text-decoration: none;
  outline: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  -ms-box-shadow: none;
  -o-box-shadow: none;
  box-shadow: none;
}

a:hover,
button:hover {
  color: var(--tg-theme-primary);
  text-decoration: none;
}

button:focus,
input:focus,
input:focus,
textarea,
textarea:focus {
  outline: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--tg-heading-font-family);
  color: var(--tg-heading-color);
  margin-top: 0px;
  font-weight: var(--tg-fw-bold);
  line-height: var(--tg-heading-line-height);
  text-transform: unset;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  color: inherit;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1rem;
}

.list-wrap {
  margin: 0px;
  padding: 0px;
}

.list-wrap li {
  list-style: none;
}

p {
  font-family: var(--tg-body-font-family);
  font-size: var(--tg-body-font-size);
  line-height: var(--tg-body-line-height);
  font-weight: var(--tg-fw-regular);
  color: var(--tg-body-color);
  margin-bottom: 15px;
}

hr {
  border-bottom: 1px solid var(--tg-color-gray-1);
  border-top: 0 none;
  margin: 30px 0;
  padding: 0;
}

label {
  color: var(--tg-heading-color);
  cursor: pointer;
  font-size: var(--tg-body-font-size);
  font-weight: var(--tg-fw-regular);
}

input[type="color"] {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  background: none;
  border: 0;
  cursor: pointer;
  height: 100%;
  width: 100%;
  padding: 0;
  border-radius: 50%;
}

*::-moz-selection {
  background: var(--tg-theme-primary);
  color: var(--tg-color-white-default);
  text-shadow: none;
}

::-moz-selection {
  background: var(--tg-theme-primary);
  color: var(--tg-color-white-default);
  text-shadow: none;
}

::selection {
  background: var(--tg-theme-primary);
  color: var(--tg-color-white-default);
  text-shadow: none;
}

/*=============================
    - Input Placeholder
===============================*/
input,
textarea {
  color: var(--tg-body-color);
}

*::-moz-placeholder {
  color: var(--tg-body-color);
  font-size: var(--tg-body-font-size);
  opacity: 1;
}

*::placeholder {
  color: var(--tg-body-color);
  font-size: var(--tg-body-font-size);
  opacity: 1;
}

/*=============================
    - Common Classes
===============================*/
.fix {
  overflow: hidden;
}

.clear {
  clear: both;
}

/*=============================
    - Bootstrap Custom
=============================*/
.container {
  padding-left: 15px;
  padding-right: 15px;
}

.row {
  --bs-gutter-x: 30px;
}

.gutter-y-30 {
  --bs-gutter-y: 30px;
}

.gx-0 {
  --bs-gutter-x: 0;
}

.gx-10 {
  --bs-gutter-x: 10px;
}

.gutter-24 {
  --bs-gutter-x: 24px;
}

.gutter-20 {
  --bs-gutter-x: 20px;
}

.gutter-30 {
  --bs-gutter-x: 30px;
}

.gutter-60 {
  --bs-gutter-x: 60px;
}

@media (max-width: 1800px) {
  .gutter-60 {
    --bs-gutter-x: 40px;
  }
}

@media (max-width: 1500px) {
  .gutter-60 {
    --bs-gutter-x: 30px;
  }
}

@media (max-width: 1199.98px) {
  .gutter-60 {
    --bs-gutter-x: 20px;
  }

  .gutter-30 {
    --bs-gutter-x: 20px;
  }
}

.custom-container {
  max-width: 1810px;
}

@media (max-width: 1800px) {
  .custom-container {
    max-width: 1580px;
  }
}

@media (max-width: 1500px) {
  .custom-container {
    max-width: 100%;
  }
}

@media (max-width: 1199.98px) {
  .custom-container {
    max-width: 960px;
  }
}

@media (max-width: 991.98px) {
  .custom-container {
    max-width: 720px;
  }
}

@media (max-width: 767.98px) {
  .custom-container {
    max-width: 100%;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .custom-container {
    max-width: 540px;
  }
}

.include-bg {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

/*=============================
	1. Button style
===============================*/
.tg-button-wrap {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}

.btn {
  user-select: none;
  -moz-user-select: none;
  background: var(--tg-theme-primary) none repeat scroll 0 0;
  border: medium none;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -o-border-radius: 6px;
  -ms-border-radius: 6px;
  border-radius: 6px;
  color: var(--tg-color-white-default);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
  margin-bottom: 0;
  padding: 17px 28px;
  text-align: center;
  text-transform: capitalize;
  touch-action: manipulation;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  vertical-align: middle;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  z-index: 1;
  font-family: var(--tg-heading-font-family);
  gap: 10px;
  --arrow-hover-move-x: 110%;
  --arrow-hover-move-y: 100%;
}

.btn svg {
  -webkit-transform: translateY(-1px);
  -moz-transform: translateY(-1px);
  -ms-transform: translateY(-1px);
  -o-transform: translateY(-1px);
  transform: translateY(-1px);
}

.btn svg path {
  transition: transform 0.38s cubic-bezier(0.37, 0.08, 0.02, 0.93),
    opacity 0.18s ease-out;
}

.btn svg path:nth-of-type(1) {
  transform: translateX(0) translateY(0);
  opacity: 1;
  transition-delay: 0.15s, 0.15s;
}

.btn svg path:nth-of-type(2) {
  transform: translateX(calc(-1 * var(--arrow-hover-move-x)))
    translateY(var(--arrow-hover-move-y));
  opacity: 0.5;
  transition-delay: 0s, 0s;
}

.btn:focus,
.btn:hover,
.btn:focus-visible {
  color: var(--tg-color-white-default);
  background: var(--tg-theme-secondary);
}

.btn:focus svg path:nth-of-type(1),
.btn:hover svg path:nth-of-type(1),
.btn:focus-visible svg path:nth-of-type(1) {
  transform: translateX(var(--arrow-hover-move-x))
    translateY(calc(-1 * var(--arrow-hover-move-y)));
  opacity: 0;
  transition-delay: 0s, 0s;
}

.btn:focus svg path:nth-of-type(2),
.btn:hover svg path:nth-of-type(2),
.btn:focus-visible svg path:nth-of-type(2) {
  transform: translateX(0) translateY(0);
  opacity: 1;
  transition-delay: 0.15s, 0.15s;
}

.btn.red-btn {
  background: var(--tg-theme-primary);
}

.btn.red-btn:hover {
  background: var(--tg-color-black-2);
}

.border-btn {
  border: 1px solid var(--tg-border-5);
  background: transparent;
  color: var(--tg-color-white-default);
  padding: 16px 27px;
}

.border-btn:hover {
  background: var(--tg-theme-secondary);
  border-color: var(--tg-theme-secondary);
}

.white-btn {
  background: var(--tg-color-white-default);
  color: var(--tg-theme-primary);
}

.white-btn:focus-visible,
.white-btn:hover {
  background: var(--tg-color-white-default);
  color: var(--tg-theme-primary);
}

/*=============================
    00. Keyframe Animation
===============================*/
@-webkit-keyframes hoverShine {
  100% {
    left: 125%;
  }
}

@keyframes hoverShine {
  100% {
    left: 125%;
  }
}

.alltuchtopdown {
  -webkit-animation: alltuchtopdown 1.5s ease-in-out 0s infinite alternate;
  animation: alltuchtopdown 1.5s ease-in-out 0s infinite alternate;
  animation-duration: 3s;
}

@keyframes alltuchtopdown {
  0% {
    -webkit-transform: rotateX(0deg) translateY(0px);
    -moz-transform: rotateX(0deg) translateY(0px);
    -ms-transform: rotateX(0deg) translateY(0px);
    -o-transform: rotateX(0deg) translateY(0px);
    transform: rotateX(0deg) translateY(0px);
  }

  50% {
    -webkit-transform: rotateX(0deg) translateY(-20px);
    -moz-transform: rotateX(0deg) translateY(-20px);
    -ms-transform: rotateX(0deg) translateY(-20px);
    -o-transform: rotateX(0deg) translateY(-20px);
    transform: rotateX(0deg) translateY(-20px);
  }

  100% {
    -webkit-transform: rotateX(0deg) translateY(0px);
    -moz-transform: rotateX(0deg) translateY(0px);
    -ms-transform: rotateX(0deg) translateY(0px);
    -o-transform: rotateX(0deg) translateY(0px);
    transform: rotateX(0deg) translateY(0px);
  }
}

@-webkit-keyframes alltuchtopdown {
  0% {
    -webkit-transform: rotateX(0deg) translateY(0px);
    -moz-transform: rotateX(0deg) translateY(0px);
    -ms-transform: rotateX(0deg) translateY(0px);
    -o-transform: rotateX(0deg) translateY(0px);
    transform: rotateX(0deg) translateY(0px);
  }

  50% {
    -webkit-transform: rotateX(0deg) translateY(-20px);
    -moz-transform: rotateX(0deg) translateY(-20px);
    -ms-transform: rotateX(0deg) translateY(-20px);
    -o-transform: rotateX(0deg) translateY(-20px);
    transform: rotateX(0deg) translateY(-20px);
  }

  100% {
    -webkit-transform: rotateX(0deg) translateY(0px);
    -moz-transform: rotateX(0deg) translateY(0px);
    -ms-transform: rotateX(0deg) translateY(0px);
    -o-transform: rotateX(0deg) translateY(0px);
    transform: rotateX(0deg) translateY(0px);
  }
}

.rightToLeft {
  -webkit-animation-name: rightToLeft;
  animation-name: rightToLeft;
  -webkit-animation-duration: 10s;
  animation-duration: 10s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
}

@keyframes rightToLeft {
  0% {
    transform: translateX(-30px);
  }

  50% {
    transform: translateX(-10px);
  }

  100% {
    transform: translateX(-30px);
  }
}

.ribbonRotate {
  -webkit-animation-name: ribbonRotate;
  animation-name: ribbonRotate;
  -webkit-animation-duration: 10s;
  animation-duration: 10s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
}

@keyframes ribbonRotate {
  0%,
  100% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }

  25%,
  75% {
    -webkit-transform: rotate(15deg);
    transform: rotate(15deg);
  }

  50% {
    -webkit-transform: rotate(30deg);
    transform: rotate(30deg);
  }
}

.rotateme {
  -webkit-animation-name: rotateme;
  animation-name: rotateme;
  -webkit-animation-duration: 10s;
  animation-duration: 10s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
}

@keyframes rotateme {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@-webkit-keyframes rotateme {
  from {
    -webkit-transform: rotate(0deg);
  }

  to {
    -webkit-transform: rotate(360deg);
  }
}

@keyframes fadeInUp2 {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

.fadeInUp2 {
  -webkit-animation-name: fadeInUp2;
  animation-name: fadeInUp2;
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

@keyframes fadeInLeft2 {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    -ms-transform: translateX(-20px);
    transform: translateX(-20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

.fadeInLeft2 {
  -webkit-animation-name: fadeInLeft2;
  animation-name: fadeInLeft2;
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

@keyframes marquee {
  0% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }

  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}

@-webkit-keyframes heartbeat {
  from {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
  }

  to {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
  }
}

@keyframes heartbeat {
  from {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
  }

  to {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
  }
}

@keyframes pulse-border {
  0% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }

  100% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}

@-webkit-keyframes pulse-border {
  0% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }

  100% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}

.img-custom-anim-right {
  animation: img-anim-right 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1)
    0.4s;
  opacity: 0;
}

@keyframes img-anim-right {
  0% {
    transform: translateX(5%);
    clip-path: inset(0 0 0 100%);
    opacity: 0;
  }

  100% {
    transform: translateX(0);
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}

.img-custom-anim-left {
  animation: img-anim-left 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1)
    0.4s;
  opacity: 0;
}

@keyframes img-anim-left {
  0% {
    transform: translateX(-5%);
    clip-path: inset(0 100% 0 0);
    opacity: 0;
  }

  100% {
    transform: translateX(0);
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}

.img-custom-anim-top {
  animation: img-anim-top 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1);
  opacity: 0;
}

@keyframes img-anim-top {
  0% {
    transform: translateY(-5%);
    clip-path: inset(0 0 100% 0);
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}

@keyframes animate-positive {
  0% {
    width: 0;
  }
}

/*=============================
    - Background color
===============================*/
.grey-bg {
  background: var(--tg-color-gray-10);
  position: relative;
  z-index: 1;
}

.white-bg {
  background: var(--tg-color-white-default);
}

.black-bg {
  background: var(--tg-color-black-1);
}

/*=============================
	04. Search
===============================*/
.search__popup {
  padding-top: 70px;
  padding-bottom: 100px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  background: var(--tg-color-white-default);
  backdrop-filter: blur(10px);
  z-index: 99;
  -webkit-transform: translateY(calc(-100% - 80px));
  -moz-transform: translateY(calc(-100% - 80px));
  -ms-transform: translateY(calc(-100% - 80px));
  -o-transform: translateY(calc(-100% - 80px));
  transform: translateY(calc(-100% - 80px));
  -webkit-transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
  -moz-transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
  transition-delay: 0.5s;
}

.search__popup.search-opened {
  -webkit-transform: translateY(0%);
  -moz-transform: translateY(0%);
  -ms-transform: translateY(0%);
  -o-transform: translateY(0%);
  transform: translateY(0%);
  transition-delay: 0s;
  z-index: 99999999;
}

.search__popup.search-opened .search__input {
  -webkit-transform: translateY(0px);
  -moz-transform: translateY(0px);
  -ms-transform: translateY(0px);
  -o-transform: translateY(0px);
  transform: translateY(0px);
  opacity: 1;
  transition-delay: 0.3s;
}

.search__popup.search-opened .search__input::after {
  width: 100%;
  transition-delay: 0.5s;
}

.search__input {
  position: relative;
  height: 80px;
  -webkit-transform: translateY(-40px);
  -moz-transform: translateY(-40px);
  -ms-transform: translateY(-40px);
  -o-transform: translateY(-40px);
  transform: translateY(-40px);
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  transition-delay: 0.5s;
  opacity: 0;
}

.search__input::after {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 0%;
  height: 1px;
  background-color: var(--tg-theme-secondary);
  transition-delay: 0.3s;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.search__input input {
  width: 100%;
  height: 100%;
  background-color: transparent;
  border: 0;
  outline: 0;
  font-size: 24px;
  color: var(--tg-heading-color);
  border-bottom: 1px solid transparent;
  padding: 0;
  padding-right: 30px;
}

.search__input input::placeholder {
  font-size: 24px;
}

.search__input button {
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 18px;
  color: var(--tg-theme-secondary);
  border: none;
  padding: 0 0;
  background: transparent;
}

.search__close {
  position: absolute;
  top: 10%;
  right: 2%;
  z-index: 2;
}

.search-close-btn {
  margin: 0;
  padding: 0;
  border: none;
  color: var(--tg-theme-secondary);
  cursor: pointer;
  background: transparent;
}

.search-popup-overlay {
  position: fixed;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 4;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  transition-delay: 0.5s;
  opacity: 0;
  visibility: hidden;
  background: #000d25;
}

.search-popup-overlay.search-popup-overlay-open {
  opacity: 0.55;
  visibility: visible;
  transition-delay: 0s;
}

.search-input-field ~ .search-focus-border {
  position: absolute;
  bottom: 0;
  left: auto;
  right: 0;
  width: 0;
  height: 1px;
  background-color: var(--tg-theme-primary);
  transition: all 0.5s;
}

.search-input-field:focus ~ .search-focus-border {
  width: 100%;
  left: 0;
  right: auto;
  transition: all 0.5s;
}

/*=========================
04. Breadcrumb
===========================*/
.breadcrumb__bg {
  background-size: cover;
  background-position: center;
  padding: 105px 0 105px;
  position: relative;
  z-index: 1;
}

@media (max-width: 1500px) {
  .breadcrumb__bg {
    padding: 90px 0 90px;
  }
}

@media (max-width: 991.98px) {
  .breadcrumb__bg {
    padding: 85px 0 90px;
  }
}

.breadcrumb__bg::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #000 0%, #000 100%);
  z-index: -1;
  opacity: 0.2;
}

.breadcrumb__bg::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  mix-blend-mode: luminosity;
  z-index: -1;
}

.breadcrumb__content .title {
  margin-bottom: 15px;
  font-size: 48px;
  color: var(--tg-color-white-default);
}

@media (max-width: 1500px) {
  .breadcrumb__content .title {
    font-size: 45px;
  }
}

@media (max-width: 991.98px) {
  .breadcrumb__content .title {
    font-size: 42px;
  }
}

@media (max-width: 767.98px) {
  .breadcrumb__content .title {
    font-size: 38px;
  }
}

.breadcrumb__content .breadcrumb {
  margin-bottom: 0;
  gap: 10px;
}

.breadcrumb__content .breadcrumb span {
  font-size: 16px;
  color: var(--tg-theme-primary);
  font-weight: 600;
  text-transform: uppercase;
  line-height: 1;
}

.breadcrumb__content .breadcrumb span a {
  color: var(--tg-color-gray-8);
}

.breadcrumb__content .breadcrumb span a:hover {
  color: var(--tg-theme-primary);
}

.breadcrumb__content .breadcrumb span i {
  color: var(--tg-color-gray-8);
  font-weight: 700;
  line-height: 0;
}

/*=============================
    00. Scroll Top
===============================*/
.scroll__top {
  width: 40px;
  height: 40px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  bottom: -10%;
  right: 50px;
  font-size: 16px;
  border-radius: 4px;
  z-index: 99;
  color: var(--tg-color-white-default);
  text-align: center;
  cursor: pointer;
  background: var(--tg-theme-primary);
  transition: 1s ease;
  border: none;
}

@media (max-width: 1199.98px) {
  .scroll__top {
    right: 25px;
    bottom: 25px;
  }
}

@media (max-width: 991.98px) {
  .scroll__top {
    right: 30px;
  }
}

@media (max-width: 767.98px) {
  .scroll__top {
    right: 15px;
    width: 30px;
    height: 30px;
  }
}

.scroll__top.open {
  bottom: 30px;
}

@media (max-width: 767.98px) {
  .scroll__top.open {
    bottom: 15px;
  }
}

.scroll__top::after {
  position: absolute;
  z-index: -1;
  content: "";
  top: 100%;
  left: 5%;
  height: 10px;
  width: 90%;
  opacity: 1;
  background: radial-gradient(
    ellipse at center,
    rgba(0, 0, 0, 0.25) 0%,
    rgba(0, 0, 0, 0) 80%
  );
}

.scroll__top:hover {
  background: var(--tg-theme-secondary);
  color: var(--tg-color-white-default);
}

/*=============================
	03. Mobile Menu
===============================*/

.tgmobile__menu {
  position: fixed;
  right: 0;
  top: 0;
  width: 300px;
  padding-right: 30px;
  max-width: 100%;
  height: 100%;
  border-radius: 0px;
  transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -moz-transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -webkit-transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -ms-transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86) e;
  -o-transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -webkit-transform: translateX(101%);
  -moz-transform: translateX(101%);
  -ms-transform: translateX(101%);
  -o-transform: translateX(101%);
  transform: translateX(101%);
  z-index: 999999 !important;
}

.tgmobile__menu .navbar-collapse {
  display: block !important;
}

.tgmobile__menu .nav-logo {
  position: relative;
  padding: 30px 25px;
  text-align: left;
}

.tgmobile__menu .nav-logo img {
  width: 150px;
}

.tgmobile__menu .navigation {
  position: relative;
  display: block;
  width: 100%;
  float: none;
  margin: 0;
  padding: 0;
}

.tgmobile__menu .navigation li {
  position: relative;
  display: block;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.tgmobile__menu .navigation li.active > a {
  color: var(--tg-theme-primary);
}

.tgmobile__menu .navigation li.menu-item-has-children .dropdown-btn {
  position: absolute;
  right: 20px;
  top: 6px;
  width: 32px;
  height: 32px;
  text-align: center;
  font-size: 16px;
  line-height: 32px;
  color: var(--tg-heading-color);
  background: var(--tg-color-gray-3);
  cursor: pointer;
  border-radius: 2px;
  -webkit-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 5;
}

.tgmobile__menu .navigation li.menu-item-has-children .dropdown-btn .plus-line {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(0);
  -ms-transform: translate(-50%, -50%) rotate(0);
  transform: translate(-50%, -50%) rotate(0);
  border-radius: 10px;
  width: 12px;
  height: 2px;
  background-color: var(--tg-color-dark);
  -webkit-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
}

.tgmobile__menu
  .navigation
  li.menu-item-has-children
  .dropdown-btn
  .plus-line::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(0);
  -ms-transform: translate(-50%, -50%) rotate(0);
  transform: translate(-50%, -50%) rotate(0);
  border-radius: 10px;
  width: 2px;
  height: 12px;
  background-color: var(--tg-color-dark);
  -webkit-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
}

.tgmobile__menu .navigation li.menu-item-has-children .dropdown-btn.open {
  background-color: var(--tg-theme-primary);
}

.tgmobile__menu
  .navigation
  li.menu-item-has-children
  .dropdown-btn.open
  .plus-line {
  background-color: var(--tg-color-white-default);
}

.tgmobile__menu
  .navigation
  li.menu-item-has-children
  .dropdown-btn.open
  .plus-line::after {
  display: none;
}

.tgmobile__menu .navigation li > a {
  position: relative;
  display: block;
  line-height: 1.5;
  padding: 10px 60px 10px 25px;
  font-size: 16px;
  font-weight: 500;
  color: var(--tg-heading-color);
  text-transform: capitalize;
  -webkit-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
  border: none;
}

.tgmobile__menu .navigation li > a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 0;
  -webkit-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
  width: 2px;
  background: var(--tg-theme-primary);
  pointer-events: none;
}

.tgmobile__menu .navigation li ul li > a {
  margin-left: 20px;
}

.tgmobile__menu .navigation li ul li ul li a {
  margin-left: 40px;
}

.tgmobile__menu .navigation li ul li ul li ul li a {
  margin-left: 60px;
}

.tgmobile__menu .navigation li > ul {
  display: none;
}

.tgmobile__menu .navigation li > ul > li > ul {
  display: none;
}

.tgmobile__menu .navigation ul {
  padding: 0;
  margin: 0;
}

.tgmobile__menu .navigation ul li a {
  display: block;
}

.tgmobile__menu .navigation ul li ul li > a {
  font-size: 16px;
  margin-left: 20px;
  text-transform: capitalize;
}

.tgmobile__menu .navigation:last-child {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.tgmobile__menu .navigation > li > ul > li:first-child {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.tgmobile__menu .navigation > li.active > a::before {
  height: 100%;
}

.tgmobile__menu .close-btn {
  text-align: right;
  font-size: 14px;
  color: var(--tg-theme-primary);
  cursor: pointer;
  z-index: 10;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  padding: 6px 10px 6px 0;
}

.tgmobile__menu .close-btn i {
  font-size: 28px;
}

.tgmobile__menu .close-btn i[class^="flaticon-"]:before {
  font-weight: var(--tg-fw-bold) !important;
}

.tgmobile__menu-backdrop {
  position: fixed;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  transition: all 700ms ease;
  -moz-transition: all 700ms ease;
  -webkit-transition: all 700ms ease;
  -ms-transition: all 700ms ease;
  -o-transition: all 700ms ease;
  opacity: 0;
  visibility: hidden;
  background: rgba(0, 0, 0, 0.5);
}

.tgmobile__menu .social-links ul {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  position: relative;
  text-align: center;
  padding: 30px 20px 20px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.tgmobile__menu .social-links ul li {
  position: relative;
  display: inline-block;
  margin: 0px 6px 10px;
}

.tgmobile__menu .social-links ul li a {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  position: relative;
  line-height: 32px;
  font-size: 16px;
  color: var(--tg-body-color);
  -webkit-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
  border: 1px solid #efefef;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
}

.tgmobile__menu .social-links ul li a:hover {
  border-color: var(--tg-theme-primary);
  background: var(--tg-theme-primary);
  color: var(--tg-color-white-default);
}

.tgmobile__menu-box {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  max-height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  background: var(--tg-color-white-default);
  padding: 0px 0px;
  z-index: 5;
  box-shadow: -9px 0 14px 0px rgba(0, 0, 0, 0.06);
}

.tgmobile__menu-outer .mobile-nav-toggler {
  position: relative;
  float: right;
  font-size: 40px;
  line-height: 50px;
  cursor: pointer;
  display: none;
  color: var(--tg-color-white-default);
  margin-right: 30px;
  top: 15px;
}

.mobile-menu-visible {
  overflow: hidden;
}

.mobile-menu-visible .tgmobile__menu {
  -webkit-transform: translateX(0%);
  -moz-transform: translateX(0%);
  -ms-transform: translateX(0%);
  -o-transform: translateX(0%);
  transform: translateX(0%);
}

.mobile-menu-visible .tgmobile__menu-backdrop {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-visible .tgmobile__menu .close-btn {
  -webkit-transform: rotate(360deg);
  -moz-transform: rotate(360deg);
  -ms-transform: rotate(360deg);
  -o-transform: rotate(360deg);
  transform: rotate(360deg);
}

/*=============================
    16. Fact
===============================*/
.counter__bg {
  background-size: cover;
  background-position: center;
  background-color: var(--tg-theme-primary);
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .counter__wrap {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    gap: 30px;
  }
}

.counter__item {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 60px;
}

@media (max-width: 767.98px) {
  .counter__item {
    margin-bottom: 30px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .counter__item {
    margin-bottom: 0;
  }
}

.counter__item:last-child {
  margin-bottom: 0;
}

.counter__item-four {
  margin-bottom: 25px;
  position: relative;
  z-index: 1;
}

.counter__item-wrap {
  background: var(--tg-theme-primary);
  position: relative;
  padding: 100px 0 70px 70px;
  z-index: 2;
}

@media (max-width: 1199.98px) {
  .counter__item-wrap {
    padding: 100px 0 70px 30px;
  }
}

@media (max-width: 767.98px) {
  .counter__item-wrap {
    padding: 80px 0 50px 0;
  }
}

.counter__item-wrap::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 200%;
  height: 100%;
  background: var(--tg-theme-primary);
  z-index: -1;
}

.counter__icon {
  font-size: 70px;
  line-height: 0;
  color: #29abe2;
}

@media (max-width: 1199.98px) {
  .counter__icon {
    font-size: 55px;
  }
}

.counter__content .count {
  margin-bottom: 5px;
  font-size: 36px;
  color: var(--tg-color-white-default);
  line-height: 1;
}

@media (max-width: 767.98px) {
  .counter__content .count {
    font-size: 32px;
  }
}

.counter__content > p {
  margin-bottom: 0;
  font-size: 17px;
  color: var(--tg-color-white-default);
}

/*=============================
	02. Header
===============================*/
.transparent-header {
  position: absolute;
  left: 0;
  top: 0px;
  width: 100%;
  z-index: 9;
  height: auto;
}

.tg-header__top {
  background: var(--tg-heading-color);
  padding: 10px 25px;
}

@media (max-width: 767.98px) {
  .tg-header__top {
    display: none;
  }
}

.tg-header__top-info {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 35px;
}

@media (max-width: 1199.98px) {
  .tg-header__top-info {
    justify-content: center;
    margin-bottom: 8px;
  }
}

@media (max-width: 991.98px) {
  .tg-header__top-info {
    margin-bottom: 0;
  }
}

.tg-header__top-info li {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--tg-color-gray-1);
  font-size: 15px;
  font-weight: 500;
  position: relative;
  line-height: 1.4;
}

.tg-header__top-info li::before {
  content: "";
  position: absolute;
  right: -18px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 2px;
  height: 14px;
  background: var(--tg-border-1);
}

.tg-header__top-info li:last-child::before {
  display: none;
}

.tg-header__top-info li i {
  color: var(--tg-theme-secondary);
  font-size: 18px;
  line-height: 0;
}

.tg-header__top-info li a {
  color: var(--tg-color-gray-1);
}

.tg-header__top-info li a:hover {
  color: var(--tg-color-white-default);
}

.tg-header__top-right {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 40px;
}

@media (max-width: 1199.98px) {
  .tg-header__top-right {
    justify-content: center;
  }
}

@media (max-width: 991.98px) {
  .tg-header__top-right {
    display: none;
  }
}

.tg-header__top-menu {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 40px;
}

.tg-header__top-menu li {
  position: relative;
  line-height: 1.4;
}

.tg-header__top-menu li::before {
  content: "";
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  width: 2px;
  height: 14px;
  background: var(--tg-border-1);
}

.tg-header__top-menu li a {
  font-size: 14px;
  color: var(--tg-color-gray-1);
  font-weight: 500;
  text-transform: capitalize;
}

.tg-header__top-menu li a:hover {
  color: var(--tg-color-white-default);
}

.tg-header__top-social {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 18px;
}

.tg-header__top-social > span {
  font-size: 14px;
  font-weight: 500;
  color: var(--tg-color-gray-1);
}

.tg-header__top-social .list-wrap {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 12px;
}

.tg-header__top-social .list-wrap li a {
  font-size: 15px;
  color: var(--tg-border-2);
}

.tg-header__top-social .list-wrap li a i {
  font-size: 15px;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.tg-header__top-social .list-wrap li a:hover {
  color: var(--tg-theme-secondary);
}

.tg-header__inner-wrap {
  display: flex;
  align-items: center;
}

.tg-header__logo-wrap {
  width: 12.5%;
  flex: 0 0 auto;
  text-align: center;
}

@media (max-width: 1199.98px) {
  .tg-header__logo-wrap {
    display: none;
  }
}

.tg-header__right-side {
  flex-grow: 1;
  border-left: 1px solid var(--tg-color-gray-5);
}

.tg-header__area {
  z-index: 999999999 !important;
  height: 70px;
  background: rgba(255, 255, 255, 0.3);
  box-shadow: rgba(24, 24, 24, 0.1) 0px 1px 2px 0px;
}

.tg-header__area .mobile-nav-toggler {
  position: relative;
  float: right;
  cursor: pointer;
  line-height: 1;
  color: var(--tg-color-gray-2);
  display: none;
  font-size: 30px;
  line-height: 0;
  color: var(--tg-theme-primary);
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.tg-header__area .mobile-nav-toggler i {
  font-size: 28px;
}

@media (max-width: 1199.98px) {
  .tg-header__area .mobile-nav-toggler {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex: 0 0 auto;
    align-items: center;
  }
}

.tgmenu__wrap {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  justify-content: space-between;
}

@media (max-width: 1199.98px) {
  .tgmenu__wrap {
    padding: 20px 20px;
  }
}

@media (max-width: 767.98px) {
  .tgmenu__wrap {
    justify-content: space-between;
    padding: 20px 15px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tgmenu__wrap {
    padding: 20px 30px;
  }
}

.tgmenu__wrap .logo {
  max-height: 100%;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
}

.tgmenu__wrap .logo img {
  max-height: 40px;
}

.tgmenu__nav {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-start;
}

@media (max-width: 991.98px) {
  .tgmenu__nav {
    justify-content: space-between;
  }
}

.tgmenu__nav-left-side {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}

.tgmenu__nav-left-side .logo {
  margin-left: 25px;
  /* z-index: 9999999999999999 !important; */
}

@media (max-width: 767.98px) {
  .tgmenu__nav-left-side .logo {
    margin: 0;
  }
}

.tgmenu__navbar-wrap {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}

.tgmenu__navbar-wrap ul {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  padding: 0 0;
  margin: 0 auto;
}

.tgmenu__navbar-wrap ul > li {
  list-style: none;
  display: block;
  position: relative;
}

@media (max-width: 1199.98px) {
  .tgmenu__navbar-wrap ul > li {
    margin-right: 15px;
  }
}

.tgmenu__navbar-wrap ul > li a {
  text-transform: capitalize;
  color: var(--tg-heading-color);
  padding: 26px 20px;
  display: flex;
  line-height: 1;
  position: relative;
  z-index: 1;
  font-family: NotoSansSC, NotoSansSC;
  font-weight: 500;
  font-size: 16px;
  color: #000000;
}

.tgmenu__navbar-wrap ul > li .sub-menu {
  position: absolute;
  left: 0;
  top: 100%;
  min-width: 230px;
  border: 1px solid #f5f5f5;
  background: var(--tg-color-white-default);
  margin: 0;
  -webkit-transform: scale(1, 0);
  -moz-transform: scale(1, 0);
  -ms-transform: scale(1, 0);
  -o-transform: scale(1, 0);
  transform: scale(1, 0);
  transform-origin: 0 0;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  -webkit-box-shadow: 0px 30px 70px 0px rgba(137, 139, 142, 0.15);
  -moz-box-shadow: 0px 30px 70px 0px rgba(137, 139, 142, 0.15);
  box-shadow: 0px 30px 70px 0px rgba(137, 139, 142, 0.15);
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -o-border-radius: 6px;
  -ms-border-radius: 6px;
  border-radius: 6px;
  padding: 18px 0;
  display: block;
  visibility: hidden;
  opacity: 0;
  z-index: 9;
}

.tgmenu__navbar-wrap ul > li .sub-menu .sub-menu {
  right: auto;
  left: 100%;
  top: 0;
}

.tgmenu__navbar-wrap ul > li .sub-menu > li {
  margin-left: 0;
  text-align: left;
  display: block;
}

.tgmenu__navbar-wrap ul > li .sub-menu > li a {
  padding: 8px 15px 8px 25px;
  line-height: 1.4;
  display: block;
  color: var(--tg-heading-color);
  text-transform: capitalize;
}

.tgmenu__navbar-wrap ul > li .sub-menu > li:hover > a,
.tgmenu__navbar-wrap ul > li .sub-menu > li.active > a {
  color: var(--tg-theme-secondary);
}

.tgmenu__navbar-wrap ul > li:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.tgmenu__navbar-wrap > ul > li.active a,
.tgmenu__navbar-wrap > ul > li:hover a {
  color: var(--tg-theme-secondary);
}

.tgmenu__main-menu li.menu-item-has-children .dropdown-btn {
  display: none;
}

.tgmenu__main-menu li.menu-item-has-children > a::after {
  content: "\e65c";
  font-weight: 700;
  font-family: iconfont;
  color: #686677;
  margin-left: 5px;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  line-height: 1;
  font-size: 22px;
}

.tgmenu__main-menu li.menu-item-has-children > a:hover {
  color: var(--tg-theme-secondary);
}

.tgmenu__main-menu li.menu-item-has-children:hover > a::after {
  color: var(--tg-theme-secondary);
}

.tgmenu__main-menu li.menu-item-has-children.active > a::after {
  color: var(--tg-theme-secondary);
}

.tgmenu__main-menu
  li.menu-item-has-children
  > .sub-menu
  .menu-item-has-children
  > a {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.tgmenu__main-menu
  li.menu-item-has-children
  > .sub-menu
  .menu-item-has-children
  > a::after {
  content: "\e65c";
  font-weight: 700;
  font-family: iconfont;
  color: #686677;
  margin-left: 5px;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  line-height: 1;
  transform: translateY(2px);
  font-size: 22px;
}

.tgmenu__main-menu
  li.menu-item-has-children
  > .sub-menu
  .menu-item-has-children.active
  a::after,
.tgmenu__main-menu
  li.menu-item-has-children
  > .sub-menu
  .menu-item-has-children:hover
  a::after {
  -webkit-transform: rotate(-90deg);
  -moz-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  -o-transform: rotate(-90deg);
  transform: rotate(-90deg);
  color: var(--tg-theme-primary);
}

.tgmenu__action {
  margin-right: 25px;
}

@media (max-width: 1199.98px) {
  .tgmenu__action {
    margin-right: 25px;
    margin-left: auto;
  }
}

.tgmenu__action ul {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  margin-left: 26px;
}

.tgmenu__action ul li {
  position: relative;
  margin-left: 30px;
}

@media (max-width: 1199.98px) {
  .tgmenu__action ul li {
    margin-left: 20px;
  }
}

.tgmenu__action ul li a {
  color: var(--tg-theme-secondary);
  font-size: 14px;
}

.tgmenu__action ul li:first-child {
  margin-left: 0;
}

.tgmenu__action ul .header-search {
  line-height: 0;
  margin-right: 15px;
}

.tgmenu__action ul .header-search a {
  font-size: 24px;
  line-height: 0;
  color: var(--tg-body-color);
  position: relative;
}

.tgmenu__action ul .header-search a:hover {
  color: var(--tg-theme-secondary);
}

.tgmenu__action ul .header-contact {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 10px;
}

.tgmenu__action ul .header-contact .icon {
  width: 40px;
  height: 40px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--tg-color-gray-3);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  flex: 0 0 auto;
  color: var(--tg-theme-primary);
  line-height: 0;
  font-size: 20px;
}

.tgmenu__action ul .header-contact .content span {
  display: block;
  line-height: 1;
  font-size: 12px;
  font-weight: 500;
  color: var(--tg-body-color);
  margin-bottom: 8px;
}

.tgmenu__action ul .header-contact .content a {
  display: block;
  line-height: 1;
  font-size: 16px;
  font-weight: 600;
  color: var(--tg-heading-color);
}

.tgmenu__action ul .header-contact .content a:hover {
  color: var(--tg-theme-secondary);
}

.tgmenu__action ul .header-btn {
  margin-left: 25px;
}

@media (max-width: 1199.98px) {
  .tgmenu__action ul .header-btn {
    display: none;
  }
}

.tgmenu__action ul .header-btn .btn {
  color: var(--tg-color-white-default);
  font-size: 15px;
  gap: 10px;
  padding: 15px 23px;
  background: var(--tg-theme-secondary);
  text-transform: uppercase;
}

.tgmenu__action ul .header-btn .btn i {
  line-height: 0;
  font-size: 18px;
  transform: translateY(1px);
}

.tgmenu__action ul .header-btn .btn::after {
  display: none;
}

.tgmenu__action ul .header-btn .btn:hover {
  background: var(--tg-theme-primary);
}

.sticky-menu {
  position: fixed;
  left: 0;
  margin: auto;
  top: 0;
  width: 100%;
  -webkit-transform: translateY(-100%);
  -moz-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  -o-transform: translateY(-100%);
  transform: translateY(-100%);
  z-index: 99;
  background: var(--tg-color-white-default);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  border-radius: 0;
  opacity: 0;
}

.sticky-menu.sticky-menu__show {
  -webkit-transform: unset;
  -moz-transform: unset;
  -ms-transform: unset;
  -o-transform: unset;
  transform: unset;
  -webkit-box-shadow: 0 10px 15px rgba(25, 25, 25, 0.1);
  box-shadow: 0 10px 15px rgba(25, 25, 25, 0.1);
  opacity: 1;
}

#header-fixed-height.active-height {
  display: block;
  height: 90px;
}

.offcanvas-toggle {
  border-right: 1px solid var(--tg-border-2);
  width: 80px;
}

@media (max-width: 767.98px) {
  .offcanvas-toggle {
    display: none;
  }
}

.offcanvas-toggle a {
  padding: 25px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: var(--tg-body-color);
}

.offcanvas-toggle a:hover {
  color: var(--tg-theme-secondary);
}

/* 首页 产品中心 */
.home-product-list-center {
  margin-bottom: 30px;
}

.home-product-list-center .product-item {
  height: 300px;
  width: 100%;
  background-size: cover;
  background-position: center;
  background-image: url("../../assets/img/index/product-bg.png");
  margin-bottom: 130px;
  border-radius: 30px;
  position: relative;
  box-shadow: rgba(0, 0, 0, 0.02) 0px 0px 0px 1px;
}

.home-product-list-center .product-item .product-name {
  position: absolute;
  top: 70px;
  left: 36px;
  color: rgb(0, 0, 0);
  font-size: 30px;
  font-weight: 500;
  line-height: 41px;
  letter-spacing: 0px;
  text-align: left;
}

.home-product-list-center .product-item .more {
  position: absolute;
  top: 180px;
  left: 36px;
  color: rgb(0, 50, 159);
  font-size: 20px;
  font-weight: 500;
  line-height: 26px;
  letter-spacing: 0px;
  text-align: left;
  display: flex;
  align-items: center;
}

.home-product-list-center .product-item .more i {
  font-size: 28px;
}

.home-product-list-center .product-item .product-img {
  position: absolute;
  right: 0;
  bottom: -70px;
  width: 65%;
  height: 90%;
  text-align: right;
}

.home-product-list-center .product-item .product-img img {
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
}

@media (max-width: 1199.98px) {
  .home-product-list-center {
    font-size: 36px;
  }
}

@media (max-width: 767.98px) {
  .home-product-list-center {
    font-size: 32px;
    margin: 40px 0;
  }

  .home-product-list-center .product-item {
    margin-bottom: 60px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .home-product-list-center {
    font-size: 34px;
  }
}

/* 首页 模板的标题 */
.module_title {
  text-align: center;
  position: relative;
}

.module_title .module-title-chinese {
  font-family: NotoSansSC, NotoSansSC;
  font-weight: 500;
  font-size: 36px;
  color: #000000;
  line-height: 52px;
  text-align: left;
  font-style: normal;
  text-align: center;
}

.module_title .module-title-english {
  font-family: NotoSansSC, NotoSansSC;
  font-weight: 400;
  font-size: 20px;
  color: #000000;
  line-height: 29px;
  text-align: left;
  font-style: normal;
  text-transform: uppercase;
  line-height: 1.4;
  text-align: center;
  margin-bottom: 60px;
}

.module_title .title-line {
  width: 144px;
  height: 15px;
  background: #f0b000;
  opacity: 0.4;
  position: absolute;
  top: 38px;
  left: 46%;
}

@media (max-width: 1199.98px) {
  .module_title .module-title-chinese {
    font-size: 36px;
  }
}

@media (max-width: 767.98px) {
  .module_title .module-title-chinese {
    font-size: 32px;
  }

  .module_title .title-line {
    width: 110px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .module_title .module-title-chinese {
    font-size: 34px;
  }

  .module_title .title-line {
    width: 110px;
  }
}

/* 首页 联系我们分隔区 */
.contact-us-dividers {
  width: 100%;
  height: 302px;
  box-sizing: border-box;
  background-size: cover;
  background-position: center;
  background-image: url("../../assets/img/index/index-separate.png");
}

.contact-us-dividers .title {
  font-family: NotoSansSC, NotoSansSC;
  font-weight: 500;
  font-size: 36px;
  color: #efefef;
  line-height: 52px;
  text-align: center;
  font-style: normal;
  padding-top: 82px;
}

.contact-us-dividers .open-contact-btn {
  width: 149px;
  height: 56px;
  background: var(--tg-theme-secondary);
  font-family: NotoSansSC, NotoSansSC;
  font-weight: 500;
  font-size: 16px;
  color: #efefef;
  line-height: 24px;
  text-align: center;
  font-style: normal;
  text-transform: none;
  border: none;
  margin-top: 24px;
}

/* 首页公司简介 */
.home-company-profile {
  padding: 120px 0 140px 0;
}

.home-company-profile .count {
  text-align: center;
  font-family: NotoSansSC, NotoSansSC;
  font-weight: bold;
  font-size: 48px;
  color: var(--tg-theme-secondary);
  line-height: 70px;
  text-align: center;
  font-style: normal;
}

.home-company-profile .name {
  font-family: NotoSansSC, NotoSansSC;
  font-weight: 500;
  font-size: 16px;
  color: #7e7e7e;
  line-height: 24px;
  font-style: normal;
}

.home-company-profile .company-content {
  padding: 0 0 100px 0;
}

.about__content-two .info-one {
  font-size: 18px;
  color: #333333;
  text-indent: 2em;
  line-height: 31px;
}

@media (min-width: 1800px) {
  .about__content-two .info-one {
    font-size: 20px;
    line-height: 33px;
    margin-bottom: 20px;
  }
}

.about__img-two {
  position: relative;
  padding: 43px 0 120px;
  margin-right: 20px;
}

@media (max-width: 1199.98px) {
  .about__img-two {
    margin-right: 0;
    padding-right: 70px;
  }
}

@media (max-width: 991.98px) {
  .about__img-two {
    margin-bottom: 50px;
  }
}

@media (max-width: 767.98px) {
  .about__img-two {
    padding: 40px 0 20px;
  }
}

.about__img-two::before {
  content: "";
  position: absolute;
  right: 65px;
  top: 0;
  width: 315px;
  height: 100%;
  border: 10px solid var(--tg-theme-secondary);
  background: transparent;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -o-border-radius: 10px;
  -ms-border-radius: 10px;
  border-radius: 10px;
  z-index: -1;
}

@media (max-width: 1199.98px) {
  .about__img-two::before {
    right: 35px;
    width: 280px;
  }
}

.about__img-two img:nth-child(1) {
  border-radius: 8px;
}

.about__img-two img:nth-child(2) {
  position: absolute;
  right: 0;
  bottom: 0;
  border: 8px solid var(--tg-color-white-default);
  border-radius: 8px;
}

@media (max-width: 1199.98px) {
  .about__img-two img:nth-child(2) {
    max-width: 350px;
  }
}

@media (max-width: 767.98px) {
  .about__img-two img:nth-child(2) {
    display: none;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .about__img-two img:nth-child(2) {
    display: block;
  }
}

.home-company-profile .company-number {
  padding-top: 30px;
}

/* 首页荣誉资质 */
.home-honors-list {
  border-top: 1px solid #efefef;
  width: 100%;
  height: 100%;
  padding: 80px 0 120px 0;
  background-image: url("../img/certificate/bg.png");
  background-size: cover;
  background-position: center;
  position: relative;
}

.home-honors-list::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: white;
  opacity: 0.6;
}

.home-honors-list .swiper-container-honors-list {
  overflow: hidden;
}

.home-honors-list .swiper-container-honors {
  width: 100%;
  height: 100%;
}

.home-honors-list .swiper-slide {
  text-align: center;
  font-size: 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  width: 300px;
  height: 400px;
}

.home-honors-list .swiper-slide img {
  max-width: 100%;
  max-height: 100%;
  box-sizing: border-box;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

/* 首页合作伙伴 */
.home-partners-list {
  padding: 72px 0 120px 0;
}

.home-partners-list .partners-item {
  border: 1px solid #f1f1f1;
  box-shadow: rgba(51, 51, 51, 0.02) 0px 1px 1px 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: #fff;
  width: 100%;
  margin-bottom: 10px;
  height: 120px;
}

.home-partners-list .partners-item img {
  max-width: 100%;
  max-height: 100%;
  box-sizing: border-box;
  padding: 24px 20px;
}

/* Footer */
.bottom-footer-area {
  background: var(--tg-theme-secondary);
  position: relative;
  z-index: 1;
  box-sizing: border-box;
  overflow: hidden;
}

.footer__top {
  padding: 60px 0 40px;
}

.footer__top .row [class*="col-"]:nth-child(1) .footer__widget {
  margin-right: 30px;
}

@media (max-width: 991.98px) {
  .footer__top .row [class*="col-"]:nth-child(1) .footer__widget {
    margin-right: 0;
  }
}

.footer__top .row [class*="col-"]:nth-child(2) .footer__widget {
  margin-left: 25px;
}

@media (max-width: 991.98px) {
  .footer__top .row [class*="col-"]:nth-child(2) .footer__widget {
    margin-left: 0;
  }
}

.footer__top .row [class*="col-"]:nth-child(3) .footer__widget {
  margin-left: 65px;
}

@media (max-width: 1199.98px) {
  .footer__top .row [class*="col-"]:nth-child(3) .footer__widget {
    margin-left: 0;
  }
}

.footer__widget {
  margin-bottom: 40px;
}

.footer__widget__last {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.footer__widget-title {
  color: var(--tg-color-white-default);
  font-size: 28px;
  position: relative;
  padding-bottom: 20px;
}

.footer__widget-title::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 29px;
  height: 4px;
  background: var(--tg-theme-secondary);
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -o-border-radius: 4px;
  -ms-border-radius: 4px;
  border-radius: 4px;
}

.footer__logo {
  margin-bottom: 20px;
}

.footer__logo img {
  max-height: 80px;
}

.footer__content .title {
  font-family: NotoSansSC, NotoSansSC;
  font-weight: 500;
  font-size: 24px;
  color: #ffffff;
  line-height: 35px;
  text-align: right;
  font-style: normal;
}

.footer__content .sub-title {
  margin-top: 8px;
  font-family: NotoSansSC, NotoSansSC;
  font-weight: 300;
  font-size: 16px;
  color: #ffffff;
  line-height: 20px;
  text-align: right;
  font-style: normal;
}

.footer__newsletter .form-grp {
  position: relative;
  margin-bottom: 12px;
}

.footer__newsletter .form-grp input {
  width: 100%;
  border: none;
  background: #fff;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  -o-border-radius: 0px;
  -ms-border-radius: 0px;
  border-radius: 0px;
  padding: 10px 100px 10px 20px;
  font-size: 14px;
  font-weight: 500;
  color: var(--tg-heading-color);
  height: 50px;
}

.footer__newsletter .form-grp input::placeholder {
  height: 20px;
  font-family: NotoSansSC, NotoSansSC;
  font-weight: 300;
  font-size: 14px;
  color: #c1c1c1;
  line-height: 20px;
  text-align: left;
  font-style: normal;
}

.footer__newsletter .form-grp button {
  position: absolute;
  right: 0;
  top: 0;
  border: none;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  -o-border-radius: 0px;
  -ms-border-radius: 0px;
  border-radius: 0px;
  background: var(--tg-theme-primary);
  color: var(--tg-color-white-default);
  font-size: 14px;
  font-weight: 700;
  padding: 17px 26px 19px;
  line-height: 1;
}

.footer__newsletter .form-grp button:hover {
  background: var(--tg-theme-secondary);
}

.footer__newsletter .tip {
  margin-top: 36px;
  margin-bottom: 10px;
  font-family: NotoSansSC, NotoSansSC;
  font-weight: 300;
  font-size: 14px;
  color: #ffffff;
  line-height: 20px;
  text-align: right;
  font-style: normal;
}

.footer__link .list-wrap li {
  margin-bottom: 10px;
}

.footer__link .list-wrap li:last-child {
  margin-bottom: 0;
}

.footer__link .list-wrap li a {
  font-family: NotoSansSC, NotoSansSC;
  font-weight: 400;
  font-size: 16px;
  color: #ffffff;
  line-height: 24px;
  text-align: left;
  font-style: normal;
}

.footer__link .list-wrap li a::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform-origin: right top;
  transform: scale(0, 1);
  transition: transform 0.4s cubic-bezier(0.74, 0.72, 0.27, 0.24);
}

.footer__link .list-wrap li a:hover {
  color: var(--tg-color-white-default);
}

.footer__link .list-wrap li a:hover::before {
  -webkit-transform-origin: left top;
  -ms-transform-origin: left top;
  transform-origin: left top;
  -webkit-transform: scale(1, 1);
  -ms-transform: scale(1, 1);
  transform: scale(1, 1);
}

.footer__info-wrap .list-wrap li {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 22px;
}

.footer__info-wrap .list-wrap li:last-child {
  margin-bottom: 0;
}

.footer__info-wrap .list-wrap li a,
.footer__info-wrap .list-wrap li p {
  font-size: 17px;
  font-weight: 500;
  color: var(--tg-color-gray-6);
  margin-bottom: 0;
  line-height: 1.4;
}

.footer__info-wrap .list-wrap li a:hover {
  color: var(--tg-color-white-default);
}

.footer__info-wrap .list-wrap li i {
  flex: 0 0 auto;
  font-size: 22px;
  color: var(--tg-color-white-default);
  line-height: 0;
  transform: translateY(4px);
}

.footer__bottom {
  width: 100%;
  border-top: 1px solid #6696ff;
  padding: 27px 0;
  box-sizing: border-box;
}

@media (max-width: 767.98px) {
  .footer__bottom {
    padding: 20px 0;
  }
}

@media (max-width: 767.98px) {
  .footer__bottom .copyright-text {
    text-align: center;
    margin-bottom: 15px;
  }
}

.footer__bottom .copyright-text p {
  margin-bottom: 0;
  font-family: NotoSansSC, NotoSansSC;
  font-weight: 400;
  font-size: 16px;
  color: #ffffff;
  line-height: 24px;
  text-align: left;
  font-style: normal;
}

/* 联系我们页面 */
/* banner */

.contact-us-page-banner {
  position: relative;
  height: calc(100vh - 68px);
  background-size: cover;
  background-position: center;
  background-image: url("../../assets/img/about-us-bg.webp");
}

.contact-us-page-banner .top-info {
  text-align: center;
  padding-top: 250px;
}

.contact-us-page-banner .top-info .title {
  font-family: SourceHanSansSCVF, SourceHanSansSCVF;
  font-weight: bold;
  font-size: 60px;
  color: #ffffff;
  line-height: 66px;
  text-align: center;
  font-style: normal;
  text-transform: none;
}

.contact-us-page-banner .top-info .sub-title {
  margin-top: 26px;
  font-family: SourceHanSansSCVF, SourceHanSansSCVF;
  font-weight: 400;
  font-size: 18px;
  color: #e6e8ec;
  line-height: 24px;
  text-align: center;
  font-style: normal;
  text-transform: none;
}

.contact-us-page-banner .bottom-info {
  margin-top: 80px;
}

.contact-us-page-banner .item {
  width: 100%;
  background: #ffffff;
  box-shadow: 8px 24px 96px 0px rgba(126, 138, 253, 0.08),
    8px 24px 96px 0px rgba(126, 138, 253, 0.08);
  border-radius: 10px;
  box-sizing: border-box;
  padding: 32px 32px 30px 32px;
}

.contact-us-page-banner .item .logo {
  width: 64px;
  height: 64px;
  background: linear-gradient(39deg, #0097fe 0%, #14358a 100%);
  box-shadow: 8px 24px 96px 0px rgba(126, 138, 253, 0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.contact-us-page-banner .item .logo i {
  font-size: 22px;
}

.contact-us-page-banner .item .icon-item {
  display: flex;
  align-items: center;
}

.contact-us-page-banner .item .icon-item i {
  font-size: 20px;
  color: var(--tg-theme-secondary);
  margin-right: 6px;
  margin-top: 2px;
}

.contact-us-page-banner .item .address {
  font-family: SourceHanSansSCVF, SourceHanSansSCVF;
  font-weight: bold;
  font-size: 24px;
  color: #00329f;
  line-height: 26px;
  text-shadow: 8px 24px 96px rgba(126, 138, 253, 0.08);
  text-align: left;
  font-style: normal;
  text-transform: none;
  margin-top: 22px;
  margin-bottom: 12px;
}

.contact-us-page-banner .item .icon {
  color: #14358a;
  font-weight: 600;
}

.contact-us-page-banner .item span {
  font-family: SourceHanSansSCVF, SourceHanSansSCVF;
  font-weight: 400;
  font-size: 16px;
  color: #03133d;
  line-height: 22px;
  text-shadow: 8px 24px 96px rgba(126, 138, 253, 0.08);
  text-align: left;
  font-style: normal;
  text-transform: none;
}

.contact-us-page-banner .item .btn {
  width: 100%;
  height: 54px;
  background: #00329f;
  box-shadow: 8px 24px 96px 0px rgba(126, 138, 253, 0.08);
  border-radius: 10px;
  font-family: SourceHanSansSCVF, SourceHanSansSCVF;
  font-weight: bold;
  font-size: 16px;
  color: #ffffff;
  line-height: 22px;
  text-shadow: 8px 24px 96px rgba(126, 138, 253, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
}

@media (max-width: 991.98px) {
  .about-us-page-map .item {
    margin-bottom: 24px;
  }
}

@media (max-width: 767.98px) {
  .about-us-page-map .item {
    margin-bottom: 24px;
  }
}

@media (max-width: 991.98px) {
  .contact-us-page-banner {
    height: 100%;
  }

  .contact-us-page-banner .top-info {
    text-align: center;
    padding-top: 80px !important;
  }

  .contact-us-page-banner .top-info .title {
    font-size: 40px !important;
  }

  .contact-us-page-banner .top-info .sub-title {
    font-size: 14px !important;
  }

  .contact-us-page-banner .bottom-info {
    padding-bottom: 20px;
  }

  .contact-us-page-banner .bottom-info .item {
    margin-bottom: 30px;
  }
}

@media (max-width: 767.98px) {
  .contact-us-page-banner {
    height: 100%;
  }

  .contact-us-page-banner .top-info {
    text-align: center;
    padding-top: 80px !important;
  }

  .contact-us-page-banner .top-info .title {
    font-size: 40px !important;
  }

  .contact-us-page-banner .top-info .sub-title {
    font-size: 14px !important;
  }

  .contact-us-page-banner .bottom-info {
    padding-bottom: 20px;
  }

  .contact-us-page-banner .bottom-info .item {
    margin-bottom: 20px;
  }
}

/* 联系我们表单 */
.contact-us-page-form {
  padding: 64px 0 120px 0;
}

.contact-us-page-form .title {
  margin-bottom: 64px;
  font-family: SourceHanSansSCVF, SourceHanSansSCVF;
  font-weight: bold;
  font-size: 48px;
  color: #00329f;
  line-height: 50px;
  text-align: center;
  font-style: normal;
  text-transform: none;
}

.contact-us-page-form .contact__form-wrap {
  box-shadow: 16px 32px 74px 0px rgba(0, 50, 159, 0.08),
    16px 32px 74px 0px rgba(126, 138, 253, 0.08);
  border-radius: 10px;
  background: var(--tg-color-white-default);
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -o-border-radius: 10px;
  -ms-border-radius: 10px;
  border-radius: 10px;
  padding: 30px 40px 40px;
  margin: 10px 100px 0 100px;
}

.contact-us-page-form .contact__form .form-grp {
  margin-bottom: 30px;
}

.contact-us-page-form .contact__form .form-grp textarea,
.contact-us-page-form .contact__form .form-grp input {
  width: 100%;
  background: transparent;
  border: 1px solid #e4e4e4;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -o-border-radius: 4px;
  -ms-border-radius: 4px;
  border-radius: 4px;
  padding: 14px 20px 15px;
  font-size: 16px;
  font-weight: 400;
  color: var(--tg-color-black-2);
  height: 50px;
  display: block;
  border-radius: 10px;
}

.contact-us-page-form .contact__form .form-grp textarea::placeholder,
.contact-us-page-form .contact__form .form-grp input::placeholder {
  text-transform: capitalize;
  font-family: SourceHanSansSCVF, SourceHanSansSCVF;
  font-weight: 400;
  font-size: 16px;
  color: #cdd0d8;
  line-height: 22px;
  text-shadow: 16px 32px 74px rgba(0, 50, 159, 0.08);
  text-align: left;
  font-style: normal;
  text-transform: none;
}

.contact-us-page-form .contact__form .form-grp textarea {
  min-height: 135px;
  max-height: 135px;
}

.contact-us-page-form .contact__form .btn {
  margin-top: 10px;
  font-family: SourceHanSansSCVF, SourceHanSansSCVF;
  font-weight: bold;
  font-size: 16px;
  color: #ffffff;
  line-height: 22px;
  font-style: normal;
  text-transform: none;
  padding: 0 40px;
  height: 54px;
  background: #00329f;
  box-shadow: 16px 32px 74px 0px rgba(0, 50, 159, 0.08);
  border-radius: 10px;
  box-sizing: border-box;
}

.contact-us-page-form .contact__form .input-name {
  font-family: SourceHanSansSCVF, SourceHanSansSCVF;
  font-weight: bold;
  font-size: 16px;
  color: #03133d;
  line-height: 22px;
  text-shadow: 16px 32px 74px rgba(0, 50, 159, 0.08);
  text-align: left;
  font-style: normal;
  text-transform: none;
  margin-bottom: 10px;
  margin-left: 1px;
}

@media (max-width: 991.98px) {
  .contact-us-page-form .contact__form-wrap {
    padding: 30px 30px 30px;
    margin: 10px 0 0 0;
  }

  .contact-us-page-form .title {
    font-size: 38px;
    margin-bottom: 40px;
  }
}

@media (max-width: 767.98px) {
  .contact-us-page-form .contact__form-wrap {
    padding: 30px 30px 30px;
    margin: 10px 0 0 0;
  }

  .contact-us-page-form .title {
    font-size: 38px;
    margin-bottom: 40px;
  }
}

/* 地图 */
.contact-us-page-map {
  padding-top: 70px;
}

.contact-us-page-map .href {
  padding-bottom: 70px;
  font-family: SourceHanSansSCVF, SourceHanSansSCVF;
  font-weight: 500;
  font-size: 14px;
  color: #475569;
  line-height: 20px;
  text-align: left;
  font-style: normal;
  text-transform: none;
  display: flex;
  align-items: center;
}

.contact-us-page-map .href a {
  font-family: SourceHanSansSCVF, SourceHanSansSCVF;
  font-weight: 500;
  font-size: 14px;
  color: #00329f;
  line-height: 20px;
  text-align: center;
  font-style: normal;
  text-transform: none;
  width: 64px;
  height: 32px;
  line-height: 2rem;
  background: #eff6ff;
  border-radius: 4px;
  display: block;
  margin-left: 6px;
}

.contact-us-page-map .map-container {
  width: 100%;
  height: 500px;
  border-radius: 10px;
  overflow: hidden;
}

@media (max-width: 767.98px) {
  .contact-us-page-map {
    padding-top: 40px;
  }

  .contact-us-page-map .href {
    padding-bottom: 40px;
  }

  .contact-us-page-map .map-container {
    margin-bottom: 30px;
  }
}
/* 新闻页面 */
.news-page-banner {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
}

.news-banner-wrapper {
  width: 100%;
  height: 100%;
  padding: 190px 0 200px;
  position: relative;
  z-index: 1;
}

.news-banner-bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: -1;
  transition: all 30s cubic-bezier(0, 0, 0.2, 1);
  background-image: url("../../assets/img/new_bg.webp");
}

.news-banner-bg::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(23, 22, 22, 0.6);
  mix-blend-mode: luminosity;
}

.news-banner-bg::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.37) 16.85%,
    rgba(0, 0, 0, 0) 59.51%
  );
}

.news-banner-wrapper .title {
  font-family: NotoSansSC, NotoSansSC;
  font-weight: bold;
  font-size: 120px;
  color: #ffffff;
  line-height: 174px;
  text-align: left;
  font-style: normal;
}

.news-banner-wrapper .sub-title {
  font-family: NotoSansSC, NotoSansSC;
  font-weight: bold;
  font-size: 60px;
  color: #fefefe;
  line-height: 87px;
  text-align: left;
  font-style: normal;
}

.news-banner-wrapper .tips {
  font-family: NotoSansSC, NotoSansSC;
  font-weight: 400;
  font-size: 24px;
  color: #ffffff;
  line-height: 40px;
  text-align: left;
  font-style: normal;
  margin-top: 10px;
}

@media (max-width: 1500px) {
  .news-banner-wrapper {
    padding: 130px 0 160px;
  }
}

@media (max-width: 767.98px) {
  .news-banner-wrapper {
    padding: 120px 0 160px;
  }

  .news-banner-wrapper .title {
    font-size: 80px;
  }

  .news-banner-wrapper .sub-title {
    font-size: 40px;
  }

  .news-banner-wrapper .tips {
    font-size: 18px;
    margin-top: 0;
  }
}

/* 热点新闻 */
.news-page-hot-list {
  padding: 100px 0 120px 0;
}

.news-page-hot-list .top-info {
  position: relative;
}

.news-page-hot-list .title {
  font-family: NotoSansSC, NotoSansSC;
  font-weight: 500;
  font-size: 48px;
  color: #000000;
  line-height: 68px;
  text-align: left;
  font-style: normal;
}

.news-page-hot-list .line {
  width: 193px;
  height: 14px;
  background: #f0b000;
  opacity: 0.4;
  display: block;
  position: absolute;
  top: 50px;
}

.news-page-hot-list .new-item {
  position: relative;
  margin-bottom: 36px;
  border-radius: 12px;
  padding: 35px 35px 45px 35px;
  box-shadow: 0px 20px 40px 0px rgba(3, 0, 77, 0.06);
  box-sizing: border-box;
  border-radius: 12px;
}

.news-page-hot-list .new-item:hover {
  -webkit-transform: translateY(-5px);
  -moz-transform: translateY(-5px);
  -ms-transform: translateY(-5px);
  -o-transform: translateY(-5px);
  transform: translateY(-5px);
}

.news-page-hot-list .item-bg {
  background-image: url("../../assets/img/new_bg.webp");
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: -1;
  border-radius: 12px;
}

.news-page-hot-list .item-bg::before {
  border-radius: 12px;
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  mix-blend-mode: luminosity;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.7) 100%
  );
}

.news-page-hot-list .new-item .type {
  width: 104px;
  height: 29px;
  line-height: 29px;
  background: #ffffff;
  border-radius: 17px;
  font-family: PingFangSC, PingFang SC;
  font-weight: 500;
  font-size: 14px;
  color: #03004d;
  letter-spacing: 1px;
  text-align: center;
  font-style: normal;
}

.news-page-hot-list .new-item .content {
  margin-top: 257px;
  font-family: PingFangSC, PingFang SC;
  font-weight: 500;
  font-size: 36px;
  color: #ffffff;
  line-height: 54px;
  text-align: left;
  font-style: normal;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.news-page-hot-list .new-item .time {
  font-family: PingFangSC, PingFang SC;
  font-weight: 500;
  font-size: 16px;
  color: #ffffff;
  line-height: 22px;
  text-align: right;
  font-style: normal;
  margin-top: 34px;
}

.news-page-hot-list .btn-list {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.news-page-hot-list .btn-list button {
  width: 120px;
  height: 60px;
  border-radius: 10px;
  margin-top: 40px;
}

.news-page-hot-list .btn-list .previous {
  border: 2px solid #00329f;
  font-family: PingFangSC, PingFang SC;
  font-weight: 500;
  font-size: 18px;
  color: #00329f;
  line-height: 40px;
  text-align: center;
  font-style: normal;
}

.news-page-hot-list .btn-list .next {
  background: #00329f;
  font-family: PingFangSC, PingFang SC;
  font-weight: 500;
  font-size: 18px;
  line-height: 40px;
  text-align: center;
  font-style: normal;
}

.news-page-hot-list .btn-list .next a {
  color: #ffffff;
}

/* 新闻详情 */
.new-detail-page-banner {
  position: relative;
}

.new-detail-page-banner .bg {
  width: 100%;
}

.new-detail-page-content {
  padding: 30px 0 130px 0;
}

.new-detail-page-content .top-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.new-detail-page-content .top-info .href {
  font-family: SourceHanSansSCVF, SourceHanSansSCVF;
  font-weight: 500;
  font-size: 14px;
  color: #475569;
  line-height: 20px;
  text-align: left;
  font-style: normal;
  text-transform: none;
  display: flex;
  align-items: center;
}

.new-detail-page-content .top-info .href span {
  color: #475569;
  padding-right: 6px;
}

.new-detail-page-content .top-info .href .current {
  font-family: SourceHanSansSCVF, SourceHanSansSCVF;
  font-weight: 500;
  font-size: 14px;
  color: #00329f;
  line-height: 20px;
  text-align: center;
  font-style: normal;
  text-transform: none;
  width: 64px;
  height: 32px;
  line-height: 2rem;
  background: #eff6ff;
  border-radius: 4px;
  display: block;
  margin-left: 8px;
}

.new-detail-page-content .top-info .all {
  font-family: NotoSansSC, NotoSansSC;
  font-weight: 500;
  font-size: 20px;
  color: #00329f;
  line-height: 40px;
  text-align: left;
  font-style: normal;
}

.new-detail-page-content .content {
  margin-top: 82px;
}

.new-detail-page-content .content .title {
  text-align: center;
  font-family: PingFangSC, PingFang SC;
  font-weight: 500;
  font-size: 42px;
  color: #000000;
  line-height: 72px;
  font-style: normal;
  border-bottom: 1px solid #ececec;
  padding-bottom: 34px;
}

.new-detail-page-content .content .rich-text {
  padding: 24px 0 0 0;
  text-indent: 2em;
}

@media (max-width: 767.98px) {
  .new-detail-page-content .content .title {
    font-size: 40px;
  }
}

/* 关于我们 */
.about-us-page-banner {
  position: relative;
  height: 100%;
}

.about-us-page-banner .about-us-banner-bg {
  background-image: url("../../assets/img/new_bg.webp");
  height: 612px;
}

.about-us-page-banner .about-us-banner-mask {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 614px;
  background: linear-gradient(180deg, rgba(51, 50, 50, 0.35) 0%, #00329f 100%);
}

.about-us-page-banner .company-data {
  position: relative;
  width: 100%;
  box-sizing: border-box;
  background: #ffffff;
  box-shadow: 0px 2px 56px 0px rgba(0, 0, 0, 0.1);
  z-index: 9;
  margin-top: -130px;
}

.about-us-page-banner .item {
  text-align: center;
  padding: 40px 0 55px 0;
}

.about-us-page-banner .company-data .line {
  height: 16px;
  background: #f0b000;
}

.about-us-page-banner .company-data .count {
  font-family: NotoSansSC, NotoSansSC;
  font-weight: bold;
  font-size: 48px;
  color: #00329f;
  line-height: 70px;
  text-align: center;
  font-style: normal;
}

.about-us-page-banner .company-data .name {
  font-family: NotoSansSC, NotoSansSC;
  font-weight: 500;
  font-size: 16px;
  color: #7e7e7e;
  line-height: 24px;
  text-align: center;
  font-style: normal;
}

/* 企业简介 */
.about-us-page-company-profile {
  padding: 100px 0 100px 0;
}

.about-us-page-company-profile .title {
  font-family: SourceHanSansSCVF, SourceHanSansSCVF;
  font-weight: bold;
  font-size: 48px;
  color: #00329f;
  line-height: 50px;
  text-align: left;
  font-style: normal;
  text-transform: none;
  margin-bottom: 75px;
}

.about-us-page-company-profile .content {
  background: #ffffff;
  box-shadow: 0px 2px 36px 0px rgba(0, 50, 159, 0.1);
  padding: 32px 201px 25px 60px;
  text-indent: 2em;
}

.about-us-page-company-profile .right-info {
  display: flex;
  align-items: center;
  margin-left: -210px;
}

.about-us-page-company-profile .right-info .img {
  width: 100%;
}

@media (max-width: 767.98px) {
  .about-us-page-company-profile .content {
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
  }
}

@media (max-width: 991.98px) {
  .about-us-page-company-profile .right-info {
    margin-left: -120px;
  }
}

@media (max-width: 1199.98px) {
  .about-us-page-company-profile .right-info {
    margin-left: -160px;
  }
}

@media (max-width: 1500px) {
  .about-us-page-company-profile .right-info {
    margin-left: -210px;
  }
}

/* 发展历程与展望 */
.about-us-development-history {
  background-color: #d6e3f3;
  padding: 100px 0;
  box-sizing: border-box;
}

.about-us-development-history .title {
  font-family: SourceHanSansSCVF, SourceHanSansSCVF;
  font-weight: bold;
  font-size: 48px;
  color: #00329f;
  line-height: 50px;
  text-align: left;
  font-style: normal;
  text-transform: none;
  margin-bottom: 40px;
}

/* 地图 */
.about-us-page-map {
  padding: 100px 0 98px 0;
}

.about-us-page-map .title {
  font-family: SourceHanSansSCVF, SourceHanSansSCVF;
  font-weight: bold;
  font-size: 48px;
  color: #00329f;
  line-height: 50px;
  text-align: center;
  font-style: normal;
  text-transform: none;
  margin-bottom: 90px;
}

.about-us-page-map .list {
  margin-top: 98px;
}

.about-us-page-map .item {
  width: 100%;
  background: #ffffff;
  box-shadow: 8px 24px 96px 0px rgba(126, 138, 253, 0.08),
    8px 24px 96px 0px rgba(126, 138, 253, 0.08);
  border-radius: 10px;
  box-sizing: border-box;
  padding: 32px 32px 30px 32px;
}

.about-us-page-map .item .logo {
  width: 64px;
  height: 64px;
  background: linear-gradient(39deg, #0097fe 0%, #14358a 100%);
  box-shadow: 8px 24px 96px 0px rgba(126, 138, 253, 0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.about-us-page-map .item .logo i {
  font-size: 22px;
}

.about-us-page-map .item .icon-item {
  display: flex;
  align-items: center;
}

.about-us-page-map .item .icon-item i {
  font-size: 20px;
  color: var(--tg-theme-secondary);
  margin-right: 6px;
  margin-top: 2px;
}

.about-us-page-map .item .address {
  font-family: SourceHanSansSCVF, SourceHanSansSCVF;
  font-weight: bold;
  font-size: 24px;
  color: #00329f;
  line-height: 26px;
  text-shadow: 8px 24px 96px rgba(126, 138, 253, 0.08);
  text-align: left;
  font-style: normal;
  text-transform: none;
  margin-top: 22px;
  margin-bottom: 12px;
}

.about-us-page-map .item .icon {
  color: #14358a;
  font-weight: 600;
}

.about-us-page-map .item span {
  font-family: SourceHanSansSCVF, SourceHanSansSCVF;
  font-weight: 400;
  font-size: 16px;
  color: #03133d;
  line-height: 22px;
  text-shadow: 8px 24px 96px rgba(126, 138, 253, 0.08);
  text-align: left;
  font-style: normal;
  text-transform: none;
}

.about-us-page-map .item .btn {
  width: 100%;
  height: 54px;
  background: #00329f;
  box-shadow: 8px 24px 96px 0px rgba(126, 138, 253, 0.08);
  border-radius: 10px;
  font-family: SourceHanSansSCVF, SourceHanSansSCVF;
  font-weight: bold;
  font-size: 16px;
  color: #ffffff;
  line-height: 22px;
  text-shadow: 8px 24px 96px rgba(126, 138, 253, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
}

@media (max-width: 991.98px) {
  .about-us-page-map .item {
    margin-bottom: 24px;
  }
}

@media (max-width: 767.98px) {
  .about-us-page-map .item {
    margin-bottom: 24px;
  }
}

/* 合作伙伴 */
.partners-page-banner {
  position: relative;
  height: 100%;
}

.partners-page-banner .partners-banner-bg {
  background-image: url("../../assets/img/cooperate/bg.jpg");
  height: 700px;
  width: 100%;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
}

.partners-page-banner .partners-banner-mask {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 700px;
  background: linear-gradient(rgba(0, 0, 0, 0.5));
}

.partners-page-banner .partners-banner-wrapper {
  height: 700px;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
}

.partners-page-banner .partners-banner-wrapper .content {
  font-family: NotoSansSC, NotoSansSC;
  font-weight: 400;
  font-size: 18px;
  color: #ffffff;
  line-height: 36px;
  text-align: left;
  font-style: normal;
  margin-top: 10px;
}

.partners-page-logo-list {
  padding: 100px 0 120px 0;
}

.partners-page-logo-list .top-info {
  padding-bottom: 42px;
}

.partners-page-logo-list .top-info .title {
  font-family: NotoSansSC, NotoSansSC;
  font-weight: 500;
  font-size: 48px;
  color: #000000;
  line-height: 68px;
  text-align: left;
  font-style: normal;
}

.partners-page-logo-list .top-info .line {
  width: 336px;
  height: 14px;
  background: #f0b000;
  opacity: 0.4;
  margin-top: -18px;
}

.partners-page-logo-list .partners-item {
  border: 1px solid #efefef;
  box-shadow: rgba(51, 51, 51, 0.02) 0px 1px 1px 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: #fff;
  width: 100%;
  height: 180px;
  margin-bottom: 10px;
}

.partners-page-logo-list .partners-item img {
  max-width: 100%;
  max-height: 100%;
  box-sizing: border-box;
  padding: 44px 40px;
}

/* 全局 加载 loading */
#preloader {
  background-color: var(--tg-common-color-white);
  height: 100%;
  width: 100%;
  position: fixed;
  margin-top: 0px;
  top: 0px;
  z-index: 999;
}

#loading-center {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loader {
  position: relative;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin: 75px;
  display: inline-block;
  vertical-align: middle;
}

.loader .loader-outter {
  position: absolute;
  border: 4px solid var(--tg-theme-primary);
  border-left-color: transparent;
  border-bottom: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  -webkit-animation: loader-outter 1s cubic-bezier(0.42, 0.61, 0.58, 0.41)
    infinite;
  animation: loader-outter 1s cubic-bezier(0.42, 0.61, 0.58, 0.41) infinite;
}

.loader .loader-inner {
  position: absolute;
  border: 4px solid var(--tg-theme-primary);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  left: calc(50% - 20px);
  top: calc(50% - 20px);
  border-right: 0;
  border-top-color: transparent;
  -webkit-animation: loader-inner 1s cubic-bezier(0.42, 0.61, 0.58, 0.41)
    infinite;
  animation: loader-inner 1s cubic-bezier(0.42, 0.61, 0.58, 0.41) infinite;
}

@-webkit-keyframes loader-outter {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes loader-outter {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@-webkit-keyframes loader-inner {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(-360deg);
    transform: rotate(-360deg);
  }
}

@keyframes loader-inner {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(-360deg);
    transform: rotate(-360deg);
  }
}

/* 全局 回到顶部按钮 */
.scroll__top {
  width: 40px;
  height: 40px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  bottom: 40px;
  right: 50px;
  font-size: 16px;
  border-radius: 4px;
  z-index: 99;
  color: var(--tg-color-white-default);
  text-align: center;
  cursor: pointer;
  background: #f0b000;
  transition: 1s ease;
  border: none;
}

.scroll__top i {
  font-size: 24px;
}

@media (max-width: 1199.98px) {
  .scroll__top {
    right: 25px;
    bottom: 25px;
  }
}

@media (max-width: 991.98px) {
  .scroll__top {
    right: 30px;
  }
}

@media (max-width: 767.98px) {
  .scroll__top {
    right: 15px;
    width: 30px;
    height: 30px;
  }
}

.scroll__top.open {
  bottom: 30px;
}

@media (max-width: 767.98px) {
  .scroll__top.open {
    bottom: 15px;
  }
}

.scroll__top::after {
  position: absolute;
  z-index: -1;
  content: "";
  top: 100%;
  left: 5%;
  height: 10px;
  width: 90%;
  opacity: 1;
  background: radial-gradient(
    ellipse at center,
    rgba(0, 0, 0, 0.25) 0%,
    rgba(0, 0, 0, 0) 80%
  );
}

.scroll__top:hover {
  background: var(--tg-theme-primary);
  color: var(--tg-color-white-default);
}

/* 首页 banner */
.slider-area {
  position: relative;
  height: calc(100vh - 68px);
}

@media (min-width: 992px) {
  .slider-area {
    height: 100%;
    height: calc(100%);
    height: expression(100%);
    height: -webkit-calc(100%);
    height: -moz-calc(100%);
    height: -o-calc(100%);
  }
}

.carousel-example-generic {
  height: calc(100vh - 68px);
}

.carousel-example-generic .swiper-container {
  width: 100%;
  height: 100%;
}

.carousel-example-generic .swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #29abe2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}

.slider_wrapper {
  position: relative;
}

.camera_wrap {
  float: none;
}

#theme-main-banner .camera_overlayer {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
}

#theme-main-banner .camera_prev,
#theme-main-banner .camera_next {
  background: #fff;
  height: 70px;
  width: 70px;
  border-radius: 0;
  text-align: center;
}

#theme-main-banner .camera_prev:hover,
#theme-main-banner .camera_next:hover {
  background: var(--tg-theme-secondary);
  color: #fff;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}

#theme-main-banner .camera_prev > span,
#theme-main-banner .camera_next > span {
  background: none;
  display: block;
  width: 100%;
  height: 100%;
}

#theme-main-banner .camera_prev > span:before,
#theme-main-banner .camera_next > span:before {
  font-family: iconfont;
  font-size: 34px;
  color: #111111;
  line-height: 80px;
}

#theme-main-banner .camera_prev > span:before {
  content: "\e659";
}

#theme-main-banner .camera_next > span:before {
  content: "\e65d";
}

#theme-main-banner .camera_prev > span:hover:before,
#theme-main-banner .camera_next > span:hover:before {
  color: #fff !important;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.camera_wrap .camera_pag .camera_pag_ul {
  list-style: none;
  margin: 0;
  position: absolute;
  bottom: 10px;
  left: 47%;
}

#theme-main-banner .camera_caption {
  height: 100%;
  text-align: center;
}

#theme-main-banner .camera_caption > div {
  background: transparent;
  position: absolute;
  width: 100%;
  z-index: 1;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  text-shadow: none;
  left: 0;
  padding: 0;
}

#theme-main-banner .camera_caption .container h4 {
  color: #fff;
  margin-bottom: 30px;
  font-size: 20px;
  line-height: 30px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 4px;
}

#theme-main-banner .camera_caption .container h1 {
  color: #fff;
  margin-bottom: 30px;
  text-transform: uppercase;
  font-size: 46px;
  line-height: 50px;
  background: var(--tg-theme-secondary);
  display: inline-block;
  border-radius: 80px;
  padding: 24px 50px;
  font-weight: 700;
  margin-left: 0;
}

#theme-main-banner .camera_caption .container p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 18px;
  line-height: 32px;
  font-weight: 500;
}

@media (max-width: 767.98px) {
  #theme-main-banner .camera_caption .container h4 {
    font-size: 14px;
    margin-bottom: 14px;
    line-height: 20px;
  }

  #theme-main-banner .camera_caption .container h1 {
    font-size: 22px;
    line-height: 40px;
    padding: 14px 24px;
    margin-bottom: 14px;
  }

  #theme-main-banner .camera_caption .container p {
    font-size: 14px;
    line-height: 20px;
  }
}

@media (min-width: 1800px) {
  #theme-main-banner .camera_caption .container h4 {
    font-size: 24px;
  }

  #theme-main-banner .camera_caption .container h1 {
    font-size: 50px;
    line-height: 54px;
    padding: 28px 56px;
  }

  #theme-main-banner .camera_caption .container p {
    font-size: 22px;
  }
}

@media (min-width: 2000px) {
  #theme-main-banner .camera_caption .container h4 {
    font-size: 26px;
  }

  #theme-main-banner .camera_caption .container h1 {
    font-size: 60px;
    line-height: 60px;
    padding: 32px 60px;
  }

  #theme-main-banner .camera_caption .container p {
    font-size: 24px;
  }
}

.blob-btn {
  display: inline-block;
  z-index: 1;
  position: relative;
  width: 125px;
  height: 40px;
  text-align: center;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
  background-color: transparent;
  outline: none;
  text-transform: uppercase;
  border: 3px solid var(--tg-theme-secondary);
  transition: all 0.5s;
  cursor: pointer;
  border-radius: 50px;
  line-height: 36px;
}

.blob-btn:before {
  content: "";
  z-index: 1;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.blob-btn:hover {
  color: #fff;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
  border: 3px solid transparent;
}

.blob-btn:hover:after {
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  left: 0;
  top: 0;
}

.blob-btn__inner {
  z-index: -1;
  overflow: hidden;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.blob-btn__blobs {
  border-radius: 50px;
  position: relative;
  display: block;
  height: 100%;
  overflow: hidden;
}

.blob-btn__blob {
  position: absolute;
  top: 0px;
  width: 25%;
  height: 100%;
  border-radius: 100%;
  -webkit-transform: translate3d(0, 150%, 0) scale(1.7);
  transform: translate3d(0, 150%, 0) scale(1.7);
  -webkit-transition: -webkit-transform 0.45s;
  transition: -webkit-transform 0.45s;
  transition: transform 0.45s;
  transition: transform 0.45s, -webkit-transform 0.45s;
  background: var(--tg-theme-secondary);
}

.blob-btn__blob:nth-child(1) {
  left: 0%;
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
}

.blob-btn__blob:nth-child(2) {
  left: 30%;
  -webkit-transition-delay: 0.08s;
  transition-delay: 0.08s;
}

.blob-btn__blob:nth-child(3) {
  left: 60%;
  -webkit-transition-delay: 0.16s;
  transition-delay: 0.16s;
}

.blob-btn__blob:nth-child(4) {
  left: 90%;
  -webkit-transition-delay: 0.24s;
  transition-delay: 0.24s;
}

.blob-btn:hover .blob-btn__blob {
  -webkit-transform: translateZ(0) scale(1.7);
  transform: translateZ(0) scale(1.7);
  background: var(--tg-theme-secondary);
}

.banner_btn {
  width: 160px !important;
  height: 45px;
  line-height: 42px;
  text-align: center;
  color: #fff;
  opacity: 1;
  margin-top: 30px;
  margin-left: -20px;
}

.partners-page-company-info {
  width: 100%;
  background-color: #fff;
  padding-top: 50px;
}

.partners-page-company-info .content {
  background-color: #fff;
  width: 100%;
  border: 1px solid #efefef;
  border-radius: 30px;
  padding: 50px 30px 50px 30px;
  margin-top: 30px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.partners-page-company-info .content .title-info {
  margin-bottom: 20px;
}

.partners-page-company-info .content .title {
  font-family: NotoSansSC, NotoSansSC;
  font-weight: 500;
  font-size: 48px;
  color: #000000;
  line-height: 68px;
  text-align: left;
  font-style: normal;
}

.partners-page-company-info .content .line {
  width: 336px;
  height: 14px;
  background: #f0b000;
  opacity: 0.4;
  margin-top: -18px;
}

.partners-page-company-info .content .info h3 {
  font-family: NotoSansSC, NotoSansSC;
  font-weight: 500;
  font-size: 28px;
  color: #000000;
  line-height: 40px;
  text-align: left;
  font-style: normal;
  padding: 12px 0;
}

.partners-page-company-info .content .info p {
  font-size: 19px;
  color: #000000;
}

.partners-page-company-info .content .info p span {
  font-size: 26px;
  color: var(--tg-theme-primary);
  font-weight: 600;
  padding: 0 2px;
}

/* 全局弹窗-联系我们 */
.contact-us-popup {
  background: var(--tg-color-white-default) none repeat scroll 0 0;
  height: 100%;
  padding: 30px;
  position: fixed;
  right: 0;
  top: 0;
  transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -moz-transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -webkit-transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -ms-transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -o-transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  width: 380px;
  z-index: 999;
  overflow-y: scroll;
  -webkit-transform: translateX(100%);
  -moz-transform: translateX(100%);
  -ms-transform: translateX(100%);
  -o-transform: translateX(100%);
  transform: translateX(100%);
}

.contact-us-popup.active {
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
}

.contact-us-popup::-webkit-scrollbar {
  width: 0px;
}

.offCanvas__close-icon {
  margin-top: -16px;
  text-align: right;
}

.offCanvas__close-icon button {
  background: transparent;
  border: 0 none;
  color: var(--tg-theme-primary);
  cursor: pointer;
  font-size: 20px;
  padding: 0;
}

.offCanvas__info {
  margin-top: 20px;
}

.offCanvas__info .contact__form .form-grp {
  margin-bottom: 20px;
}

.offCanvas__info .contact__form .form-grp .input-name {
  font-family: SourceHanSansSCVF, SourceHanSansSCVF;
  font-weight: 500;
  font-size: 16px;
  color: #03133d;
  line-height: 22px;
  text-shadow: 16px 32px 74px rgba(0, 50, 159, 0.08);
  text-align: left;
  font-style: normal;
  text-transform: none;
  margin-bottom: 6px;
  margin-left: 1px;
}

.offCanvas__info .contact__form .form-grp textarea,
.offCanvas__info .contact__form .form-grp input {
  width: 100%;
  background: transparent;
  border: 1px solid #e4e4e4;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -o-border-radius: 4px;
  -ms-border-radius: 4px;
  border-radius: 4px;
  padding: 14px 20px 15px;
  font-size: 16px;
  font-weight: 400;
  color: var(--tg-color-black-2);
  height: 50px;
  display: block;
}

.offCanvas__info .contact__form .form-grp textarea::placeholder,
.offCanvas__info .contact__form .form-grp input::placeholder {
  color: var(--tg-color-gray-8);
  text-transform: capitalize;
}

.offCanvas__info .contact__form .form-grp textarea {
  min-height: 135px;
  max-height: 135px;
}

.offCanvas__info .contact__form .btn {
  margin-top: 10px;
}

.offCanvas__overly {
  position: fixed;
  background: #000;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.offCanvas__overly.active {
  opacity: 0.7;
  visibility: visible;
}

/* hover css */
/* Pop */
@-webkit-keyframes hvr-pop {
  50% {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
  }
}

@keyframes hvr-pop {
  50% {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
  }
}

.hvr-pop {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}

.hvr-pop:hover,
.hvr-pop:focus,
.hvr-pop:active {
  -webkit-animation-name: hvr-pop;
  animation-name: hvr-pop;
  -webkit-animation-duration: 0.6s;
  animation-duration: 0.6s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}
