/* main-critical.css — 首屏关键样式（阻塞渲染）
 * 拆分自 main.css | 方案 A
 * 包含：Variables/Typography/Buttons + Animation(@keyframes) + Footer/Header/Hero/Meanmenu + Preloader/Section + 背景图规则/FA补丁
 */
/*CSS Table Of Content Ends Here*/
/*
--------------------------------------------------------------
[Table of Contents]
--------------------------------------------------------------
01. Variables & Mixins
02. Typography
03. Buttons
04. About
05. Adventure
06. Animation
07. Brand
08. Contact
09. Cta
10. Faq
11. Feature
12. Footer
13. Header
14. Hero
15. Meanmenu
16. News
17. Preloader
18. Section
19. Team
20. Testimonial
21. Tour

--------------------------------------------------------------
*/
/* System font stack - no external font files */
/* SVG 图标全局规则：确保 SVG 填满 .svg-icon 容器 */
.svg-icon > svg { width: 100%; height: 100%; }
:root {
  --body: #fff;
  --black: #000;
  --white: #fff;
  --theme: #D14518;
  --theme-2: #63AB45;
  --header: #151515;
  --text: #696969;
  --border: #C9C9C9;
  --bg: #F7F7F7;
  --bg-2: #EDF2DE;
  --box-shadow: 0px 1px 14px 0px rgba(0, 0, 0, 0.13);
}

.theme-btn {
  position: relative;
  display: inline-flex;
  overflow: hidden;
  padding: 18px 35px;
  text-align: center;
  z-index: 1;
  color: var(--white);
  font-weight: 600;
  text-transform: capitalize;
  transition: 0.5s;
  background-color: var(--theme);
  border-radius: 10px;
}
.theme-btn.color {
  background-color: var(--theme-2);
}
@media (max-width: 575px) {
  .theme-btn {
    padding: 14px 30px;
  }
}
.theme-btn::after {
  position: absolute;
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-radius: 50%;
  background-color: var(--header);
  transition: width 0.4s ease-in-out, height 0.4s ease-in-out;
  transform: translate(-50%, -50%);
  z-index: -1;
}
.theme-btn:hover::after {
  width: 225%;
  height: 562.5px;
}

.link-btn {
  color: var(--text);
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  display: inline;
  font-weight: 600;
}
.link-btn:hover {
  color: var(--theme);
  background-size: 100% 2px;
  background-image: linear-gradient(180deg, var(--theme) 0%, var(--theme) 100%);
}

/* --------------------------------------------
    Template Default Fonts & Fonts Styles
 ---------------------------------------------- */
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  color: var(--text);
  background-color: var(--white);
  padding: 0;
  margin: 0;
  overflow-x: hidden;
}

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

button {
  border: none;
  background-color: transparent;
  padding: 0;
}

input:focus {
  color: var(--white);
  outline: none;
}

input {
  color: var(--white);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "PingFang SC", "Microsoft YaHei", sans-serif;
  margin: 0px;
  padding: 0;
  color: var(--header);
  transition: all 0.4s ease-in-out;
}

h1 {
  font-size: 80px;
  font-weight: 600;
  line-height: 106%;
}
@media (max-width: 1899px) {
  h1 {
    font-size: 70px;
  }
}
@media (max-width: 1600px) {
  h1 {
    font-size: 60px;
  }
}
@media (max-width: 1399px) {
  h1 {
    font-size: 60px;
  }
}
@media (max-width: 1199px) {
  h1 {
    font-size: 55px;
  }
}
@media (max-width: 991px) {
  h1 {
    font-size: 50px;
  }
}
@media (max-width: 767px) {
  h1 {
    font-size: 32px;
  }
}
@media (max-width: 575px) {
  h1 {
    font-size: 30px;
  }
}

h2 {
  font-size: 48px;
  font-weight: 600;
  line-height: 108%;
}
@media (max-width: 1399px) {
  h2 {
    font-size: 48px;
  }
}
@media (max-width: 1199px) {
  h2 {
    font-size: 40px;
  }
}
@media (max-width: 991px) {
  h2 {
    font-size: 40px;
  }
}
@media (max-width: 767px) {
  h2 {
    font-size: 35px;
  }
}
@media (max-width: 575px) {
  h2 {
    font-size: 30px;
  }
}
@media (max-width: 470px) {
  h2 {
    font-size: 25px;
  }
}

h3 {
  font-size: 24px;
  font-weight: 600;
  line-height: 145%;
}
@media (max-width: 1199px) {
  h3 {
    font-size: 20px;
  }
}

h4 {
  font-size: 22px;
  font-weight: 600;
  line-height: 136%;
}
@media (max-width: 1199px) {
  h4 {
    font-size: 20px;
  }
}

h5 {
  font-size: 20px;
  font-weight: 600;
  line-height: 150%;
}

h6 {
  font-size: 16px;
  font-weight: 600;
}

a {
  text-decoration: none;
  outline: none !important;
  cursor: pointer;
  color: var(--header);
  transition: all 0.4s ease-in-out;
}

p {
  margin: 0px;
  transition: all 0.4s ease-in-out;
}

span {
  margin: 0px;
}

@media (max-width: 1399px) {
  .about-wrapper .about-left-item .section-title h2 br {
    display: none;
  }
}

@keyframes rippleOne {
  70% {
    -webkit-box-shadow: 0 0 0 40px rgba(244, 68, 56, 0);
    box-shadow: 0 0 0 40px rgba(244, 68, 56, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
    box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
  }
}
@keyframes cir36 {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes rounded {
  50% {
    transform: rotate(15deg);
  }
}
@keyframes up-down {
  0% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(-10px);
  }
}
@-webkit-keyframes spinner {
  to {
    -webkit-transform: rotateZ(360deg);
    transform: rotateZ(360deg);
  }
}
@keyframes spinner {
  to {
    -webkit-transform: rotateZ(360deg);
    transform: rotateZ(360deg);
  }
}
@-webkit-keyframes letters-loading {
  0%, 75%, 100% {
    opacity: 0;
    transform: rotateY(-90deg);
  }
  25%, 50% {
    opacity: 1;
    transform: rotateY(0deg);
  }
}
@keyframes letters-loading {
  0%, 75%, 100% {
    opacity: 0;
    transform: rotateY(-90deg);
  }
  25%, 50% {
    opacity: 1;
    transform: rotateY(0deg);
  }
}
@keyframes loaderspin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
@keyframes tpswing {
  0% {
    -webkit-transform: rotate(20deg);
    -ms-transform: rotate(20deg);
    transform: rotate(20deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}
@keyframes width {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
@-webkit-keyframes width {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
@-webkit-keyframes loaderspin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
@keyframes loaderpulse {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.2);
  }
}
@keyframes rounded {
  50% {
    transform: rotate(20deg);
  }
}
@keyframes cir36 {
  100% {
    transform: rotate(360deg);
  }
}
.float-bob-y {
  -webkit-animation-name: float-bob-y;
  animation-name: float-bob-y;
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
}

@-webkit-keyframes float-bob-y {
  0% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  50% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
  100% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
}
@keyframes float-bob-y {
  0% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  50% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
  100% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
}
.float-bob-x {
  -webkit-animation-name: float-bob-x;
  animation-name: float-bob-x;
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
}

@-webkit-keyframes float-bob-x {
  0% {
    -webkit-transform: translateX(0px);
    transform: translateX(30px);
  }
  50% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }
  100% {
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }
}
@keyframes float-bob-x {
  0% {
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }
  50% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }
  100% {
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }
}
@keyframes bounce-x {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  50% {
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
.bounce-x {
  -webkit-animation: bounce-x 7s infinite linear;
  animation: bounce-x 7s infinite linear;
}

@keyframes criss-cross-left {
  0% {
    left: -20px;
  }
  50% {
    left: 50%;
    width: 20px;
    height: 20px;
  }
  100% {
    left: 50%;
    width: 375px;
    height: 375px;
  }
}
@keyframes criss-cross-right {
  0% {
    right: -20px;
  }
  50% {
    right: 50%;
    width: 20px;
    height: 20px;
  }
  100% {
    right: 50%;
    width: 375px;
    height: 375px;
  }
}
@keyframes rotated2 {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(-360deg);
  }
}
@keyframes wave {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(-25%);
  }
  100% {
    transform: translateX(-50%);
  }
}
@keyframes zoom {
  0% {
    transform: scale(0.5);
  }
  50% {
    transform: scale(1);
  }
  100% {
    transform: scale(0.5);
  }
}
@keyframes translateY2 {
  0% {
    -webkit-transform: translateY(-30px);
    -moz-transform: translateY(-30px);
    -ms-transform: translateY(-30px);
    -o-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  100% {
    -webkit-transform: translateY(20px);
    -moz-transform: translateY(20px);
    -ms-transform: translateY(20px);
    -o-transform: translateY(20px);
    transform: translateY(20px);
  }
}
@keyframes translateX2 {
  0% {
    -webkit-transform: translateX(-30px);
    -moz-transform: translateX(-30px);
    -ms-transform: translateX(-30px);
    -o-transform: translateX(-30px);
    transform: translateX(-30px);
  }
  100% {
    -webkit-transform: translatXY(20px);
    -moz-transform: translateX(20px);
    -ms-transform: translateX(20px);
    -o-transform: translateX(20px);
    transform: translateX(20px);
  }
}
@keyframes moving {
  0% {
    transform: translatey(0px);
  }
  20% {
    transform: translateX(-50px);
  }
  50% {
    transform: translatey(-40px);
  }
  100% {
    transform: translatey(0px);
  }
}
/*img-animation**********************/
.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 slideInLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes slideInRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes shine {
  0% {
    left: -100%;
  }
  50% {
    left: 100%;
  }
  100% {
    left: 100%;
  }
}
.animation-infinite {
  animation: ShapeAnim 80s linear infinite;
  height: 30px;
  width: 100%;
  background-repeat: repeat;
  overflow: hidden;
}

.img-custom-anim-bottom {
  animation: img-anim-bottom 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1);
  opacity: 0;
}

@keyframes img-anim-bottom {
  0% {
    transform: translateY(5%);
    clip-path: inset(100% 0 0 0);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}
@keyframes sparkle {
  0% {
    opacity: 0;
    transform: scale(0.5);
  }
  50% {
    opacity: 1;
    transform: scale(1.5);
  }
  100% {
    opacity: 0;
    transform: scale(0.5);
  }
}
@keyframes borderAnim {
  0% {
    width: 0;
  }
  100% {
    width: 44px;
  }
}
@keyframes slideInLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes slideInRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes shine {
  0% {
    left: -100%;
  }
  50% {
    left: 100%;
  }
  100% {
    left: 100%;
  }
}
@keyframes strokeColorChange1 {
  0% {
    -webkit-text-stroke-color: rgba(202, 210, 210, 0.1);
  }
  25% {
    -webkit-text-stroke-color: rgba(202, 210, 210, 0.1);
  }
  50% {
    -webkit-text-stroke-color: rgba(194, 223, 147, 0.1);
  }
  75% {
    -webkit-text-stroke-color: rgba(227, 87, 43, 0.1);
  }
  100% {
    -webkit-text-stroke-color: rgba(194, 223, 147, 0.1);
  }
}
@keyframes shake {
  0%, 100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translateX(-5px);
    -ms-transform: translateX(-5px);
    transform: translateX(-5px);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translateX(5px);
    -ms-transform: translateX(5px);
    transform: translateX(5px);
  }
}
@keyframes rotateBorder {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
@keyframes animate-positive {
  0% {
    width: 0;
  }
}
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
@keyframes scrolly {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-60%);
  }
}
@keyframes scrolls {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(100%);
  }
}
@keyframes scroll-left-to-right-loop {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0%);
  }
}
@-webkit-keyframes zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
@keyframes zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
.zoomOut {
  -webkit-animation-name: zoomOut;
  animation-name: zoomOut;
}

.img_left_animation {
  animation: left-animation 2000ms forwards cubic-bezier(0.4, 0.98, 0.52, 0.99);
  opacity: 0;
}

@keyframes left-animation {
  0% {
    clip-path: inset(0 100% 0 0);
    opacity: 0;
  }
  100% {
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}
.img_right_animation {
  animation: right-animation 2000ms forwards cubic-bezier(0.4, 0.98, 0.52, 0.99);
  opacity: 0;
}

@keyframes right-animation {
  0% {
    clip-path: inset(0 0 0 100%);
    opacity: 0;
  }
  100% {
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}
.img_top_animation {
  animation: top-animation 2000ms forwards cubic-bezier(0.4, 0.98, 0.52, 0.99);
  opacity: 0;
}

@keyframes top-animation {
  0% {
    clip-path: inset(0 0 100% 0);
    opacity: 0;
  }
  100% {
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}
.img_bottom_animation {
  animation: bottom-animation 2000ms forwards cubic-bezier(0.4, 0.98, 0.52, 0.99);
  opacity: 0;
}

@keyframes bottom-animation {
  0% {
    clip-path: inset(100% 0 0 0);
    opacity: 0;
  }
  100% {
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}
@keyframes circle {
  0% {
    transform: scale(0);
    opacity: 0.6;
  }
  100% {
    transform: scale(30);
    opacity: 0;
  }
}
@keyframes icon-bounce {
  0%, 100%, 20%, 50%, 80% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
  60% {
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
  }
}
@-webkit-keyframes slideInLeft {
  0% {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInLeft {
  0% {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.slideInLeft {
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft;
}

@-webkit-keyframes slideInRight {
  0% {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInRight {
  0% {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.slideInRight {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight;
}

@-webkit-keyframes slideInUp {
  0% {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInUp {
  0% {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.slideInUp {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp;
}

@-webkit-keyframes slideInDown {
  0% {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInDown {
  0% {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.slideInDown {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown;
}

.zoom_in {
  transform: scale(0.5);
}

.fade_up,
.fade_down,
.zoom_in,
.zoom_out {
  opacity: 0;
  transition: all 2s;
}

.show {
  opacity: 1;
  transform: translateY(0) scale(1);
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
@keyframes scrolly {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-60%);
  }
}
@keyframes scrolls {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(100%);
  }
}

.footer-widget-wrapper {
  padding: 70px 0 40px;
  position: relative;
  z-index: 99;
}
@media (max-width: 991px) {
  .footer-widget-wrapper {
    padding: 50px 0 40px;
  }
}
.footer-widget-wrapper .single-footer-widget {
  margin-top: 30px;
}
.footer-widget-wrapper .single-footer-widget .wid-title {
  margin-bottom: 30px;
}
.footer-widget-wrapper .single-footer-widget .wid-title :is(h2,h4) {
  color: var(--white);
  font-size: 22px;
  font-weight: 600;
}
.footer-widget-wrapper .single-footer-widget .list-area li {
  transition: all 0.4s ease-in-out;
}
.footer-widget-wrapper .single-footer-widget .list-area li:not(:last-child) {
  margin-bottom: 30px;
}
.footer-widget-wrapper .single-footer-widget .list-area li a {
  color: rgba(255, 255, 255, 0.65);
}
.footer-widget-wrapper .single-footer-widget .list-area li a i {
  margin-right: 5px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 16px;
}
.footer-widget-wrapper .single-footer-widget .list-area li a .svg-icon {
  margin-right: 5px;
  vertical-align: 0.05em !important;
}
.footer-widget-wrapper .single-footer-widget .list-area li:hover {
  margin-left: 5px;
}
.footer-widget-wrapper .single-footer-widget .list-area li:hover a {
  color: var(--theme);
}
.footer-widget-wrapper .single-footer-widget .list-area li:hover a i,
.footer-widget-wrapper .single-footer-widget .list-area li:hover a .svg-icon {
  color: var(--theme);
}
.footer-widget-wrapper .single-footer-widget .contact-item {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
}
.footer-widget-wrapper .single-footer-widget .contact-item .icon {
  color: rgba(255, 255, 255, 0.65);
}
.footer-widget-wrapper .single-footer-widget .contact-item .content :is(p,h6) {
  color: rgba(255, 255, 255, 0.65);
  line-height: 162%;
  font-weight: 400;
}
.footer-widget-wrapper .single-footer-widget .contact-item .content :is(p,h6) a {
  color: rgba(255, 255, 255, 0.65);
}
.footer-widget-wrapper .single-footer-widget .newsletter-content p {
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 30px;
  font-size: 14px;
}
.footer-widget-wrapper .single-footer-widget .newsletter-content form {
  max-width: 360px;
  width: 100%;
}
.footer-widget-wrapper .single-footer-widget .newsletter-content form .form-clt {
  position: relative;
}
.footer-widget-wrapper .single-footer-widget .newsletter-content form .form-clt input {
  width: 100%;
  outline: none;
  border: none;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  color: var(--white);
  line-height: 1;
  padding: 20px;
  max-width: 360px;
}
.footer-widget-wrapper .single-footer-widget .newsletter-content form .form-clt input::placeholder {
  color: var(--white);
}
.footer-widget-wrapper .single-footer-widget .newsletter-content form .form-clt .theme-btn {
  position: absolute;
  top: 7px;
  right: 7px;
  bottom: 7px;
  color: var(--header);
  background-color: var(--white);
  border-radius: 10px;
  padding: 14.5px 30px;
  line-height: 18px;
}
.footer-widget-wrapper .single-footer-widget .newsletter-content form .form-clt .theme-btn::after {
  border-radius: 10px;
  background-color: var(--theme);
}
.footer-widget-wrapper .single-footer-widget .newsletter-content form .form-clt .theme-btn:hover {
  color: var(--white);
}
.footer-widget-wrapper .single-footer-widget .footer-content p {
  color: rgba(255, 255, 255, 0.65);
  max-width: 330px;
  margin-bottom: 30px;
  font-size: 14px;
}
.footer-widget-wrapper .single-footer-widget .footer-content .social-icon {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-widget-wrapper .single-footer-widget .footer-content .social-icon a {
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.05);
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  color: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: inline-block;
}
.footer-widget-wrapper .single-footer-widget .footer-content .social-icon a:hover {
  background-color: var(--theme);
  color: var(--white);
  border: 1px solid var(--theme);
}
.footer-widget-wrapper.style-2 .single-footer-widget .wid-title :is(h2,h4) {
  color: var(--header);
  font-size: 22px;
  font-weight: 600;
}
.footer-widget-wrapper.style-2 .single-footer-widget .list-area li {
  transition: all 0.4s ease-in-out;
}
.footer-widget-wrapper.style-2 .single-footer-widget .list-area li:not(:last-child) {
  margin-bottom: 30px;
}
.footer-widget-wrapper.style-2 .single-footer-widget .list-area li a {
  color: var(--text);
}
.footer-widget-wrapper.style-2 .single-footer-widget .list-area li a i,
.footer-widget-wrapper.style-2 .single-footer-widget .list-area li a .svg-icon {
  color: var(--text);
}
.footer-widget-wrapper.style-2 .single-footer-widget .list-area li:hover {
  margin-left: 5px;
}
.footer-widget-wrapper.style-2 .single-footer-widget .list-area li:hover a {
  color: var(--theme-2);
}
.footer-widget-wrapper.style-2 .single-footer-widget .list-area li:hover a i,
.footer-widget-wrapper.style-2 .single-footer-widget .list-area li:hover a .svg-icon {
  color: var(--theme-2);
}
.footer-widget-wrapper.style-2 .single-footer-widget .contact-item {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
}
.footer-widget-wrapper.style-2 .single-footer-widget .contact-item .icon {
  color: var(--text);
}
.footer-widget-wrapper.style-2 .single-footer-widget .contact-item .content :is(p,h6) {
  color: var(--text);
  line-height: 162%;
  font-weight: 400;
}
.footer-widget-wrapper.style-2 .single-footer-widget .contact-item .content :is(p,h6) a {
  color: var(--text);
}
.footer-widget-wrapper.style-2 .single-footer-widget .footer-content p {
  color: var(--text);
  max-width: 330px;
  margin-bottom: 30px;
  font-size: 14px;
}
.footer-widget-wrapper.style-2 .single-footer-widget .footer-content .social-icon {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-widget-wrapper.style-2 .single-footer-widget .footer-content .social-icon a {
  border-radius: 100px;
  background: transparent;
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  color: var(--text);
  border: 1px solid rgba(20, 24, 22, 0.1);
  display: inline-block;
}
.footer-widget-wrapper.style-2 .single-footer-widget .footer-content .social-icon a:hover {
  background-color: var(--theme-2);
  color: var(--white);
  border: 1px solid var(--theme-2);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 230px;
}
.footer-bottom.style-1 {
  margin-bottom: 50px;
}
@media (max-width: 1399px) {
  .footer-bottom.style-1 {
    margin-bottom: 50px;
  }
}
@media (max-width: 1399px) {
  .footer-bottom {
    margin-bottom: 110px;
  }
}
.footer-bottom .footer-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 1399px) {
  .footer-bottom .footer-wrapper {
    flex-wrap: wrap;
    gap: 30px;
  }
}
.footer-bottom .footer-wrapper h2 {
  font-size: 200px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  line-height: 70%;
}
@media (max-width: 1399px) {
  .footer-bottom .footer-wrapper h2 {
    font-size: 70px;
  }
}
@media (max-width: 991px) {
  .footer-bottom .footer-wrapper h2 {
    font-size: 50px;
  }
}
@media (max-width: 575px) {
  .footer-bottom .footer-wrapper h2 {
    font-size: 40px;
  }
}
.footer-bottom .footer-wrapper .text-item {
  display: flex;
  align-items: center;
  gap: 30px;
}
@media (max-width: 1399px) {
  .footer-bottom .footer-wrapper .text-item {
    flex-wrap: wrap;
    gap: 15px;
  }
}
.footer-bottom .footer-wrapper .text-item p {
  color: rgba(255, 255, 255, 0.65);
}
.footer-bottom .footer-wrapper .text-item p span {
  color: var(--theme);
}
.footer-bottom .footer-wrapper .text-item .icon {
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  background-color: var(--theme);
  border-radius: 100px;
  filter: drop-shadow(10px 4px 60px rgba(251, 91, 50, 0.5));
  transition: all 0.4s ease-in-out;
}
.footer-bottom .footer-wrapper .text-item .icon i ,.footer-bottom .footer-wrapper .text-item .icon .svg-icon{
  color: var(--white);
  transition: all 0.4s ease-in-out;
}
.footer-bottom .footer-wrapper .text-item .icon:hover {
  background-color: var(--white);
}
.footer-bottom .footer-wrapper .text-item .icon:hover i ,.footer-bottom .footer-wrapper .text-item .icon:hover .svg-icon{
  color: var(--header);
}
.footer-bottom.style-new {
  border-top: 1px solid rgba(20, 24, 22, 0.1);
  border-bottom: 1px solid rgba(20, 24, 22, 0.1);
}
.footer-bottom.style-new .footer-wrapper h2 {
  color: var(--header);
}
.footer-bottom.style-new .footer-wrapper .text-item {
  display: flex;
  align-items: center;
  gap: 30px;
}
@media (max-width: 1399px) {
  .footer-bottom.style-new .footer-wrapper .text-item {
    flex-wrap: wrap;
    gap: 15px;
  }
}
.footer-bottom.style-new .footer-wrapper .text-item p {
  color: var(--text);
}
.footer-bottom.style-new .footer-wrapper .text-item p span {
  color: var(--theme-2);
}
.footer-bottom.style-new .footer-wrapper .text-item .icon {
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  background-color: var(--theme-2);
  border-radius: 100px;
  filter: drop-shadow(10px 4px 60px #63AB45);
  transition: all 0.4s ease-in-out;
}
.footer-bottom.style-new .footer-wrapper .text-item .icon i ,.footer-bottom.style-new .footer-wrapper .text-item .icon .svg-icon{
  color: var(--white);
  transition: all 0.4s ease-in-out;
}
.footer-bottom.style-new .footer-wrapper .text-item .icon:hover {
  background-color: var(--header);
}
.footer-bottom.style-new .footer-wrapper .text-item .icon:hover i ,.footer-bottom.style-new .footer-wrapper .text-item .icon:hover .svg-icon{
  color: var(--white);
}

.footer-widget-wrapper-3 {
  padding: 100px 0;
}
@media (max-width: 991px) {
  .footer-widget-wrapper-3 {
    padding: 80px 0;
  }
}
.footer-widget-wrapper-3 .footer-left-item .footer-item {
  display: flex;
  gap: 140px;
  padding-bottom: 70px;
  margin-bottom: 70px;
}
@media (max-width: 1399px) {
  .footer-widget-wrapper-3 .footer-left-item .footer-item {
    gap: 34px;
    padding-bottom: 0;
    margin-bottom: 50px;
  }
}
@media (max-width: 991px) {
  .footer-widget-wrapper-3 .footer-left-item .footer-item {
    flex-wrap: wrap;
    gap: 100px;
    padding-bottom: 0px;
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .footer-widget-wrapper-3 .footer-left-item .footer-item {
    gap: 30px;
  }
}
.footer-widget-wrapper-3 .footer-left-item .footer-item .footer-content .wid-title {
  margin-bottom: 30px;
}
.footer-widget-wrapper-3 .footer-left-item .footer-item .footer-content p {
  max-width: 271px;
  margin-bottom: 25px;
}
.footer-widget-wrapper-3 .footer-left-item .footer-item .footer-content .theme-btn {
  padding: 13px 30px;
}
.footer-widget-wrapper-3 .footer-left-item .footer-item .single-footer-widget.style-3 {
  margin-left: 45px;
}
@media (max-width: 767px) {
  .footer-widget-wrapper-3 .footer-left-item .footer-item .single-footer-widget.style-3 {
    margin-left: 0;
  }
}
.footer-widget-wrapper-3 .footer-left-item .footer-item .single-footer-widget .wid-title {
  margin-bottom: 30px;
}
.footer-widget-wrapper-3 .footer-left-item .footer-item .single-footer-widget .wid-title :is(h2,h4) {
  color: var(--header);
  font-size: 22px;
  font-weight: 600;
}
.footer-widget-wrapper-3 .footer-left-item .footer-item .single-footer-widget .list-area li {
  transition: all 0.4s ease-in-out;
}
.footer-widget-wrapper-3 .footer-left-item .footer-item .single-footer-widget .list-area li:not(:last-child) {
  margin-bottom: 15px;
}
.footer-widget-wrapper-3 .footer-left-item .footer-item .single-footer-widget .list-area li a {
  color: var(--text);
}
.footer-widget-wrapper-3 .footer-left-item .footer-item .single-footer-widget .list-area li a i {
  color: var(--text);
}
.footer-widget-wrapper-3 .footer-left-item .footer-item .single-footer-widget .list-area li:hover {
  margin-left: 5px;
}
.footer-widget-wrapper-3 .footer-left-item .footer-item .single-footer-widget .list-area li:hover a {
  color: var(--theme-2);
}
.footer-widget-wrapper-3 .footer-left-item .footer-item .single-footer-widget .list-area li:hover a i {
  color: var(--theme-2);
}
.footer-widget-wrapper-3 .footer-left-item .footer-item .single-footer-widget .contact-item {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
}
.footer-widget-wrapper-3 .footer-left-item .footer-item .single-footer-widget .contact-item .icon {
  color: var(--text);
}
.footer-widget-wrapper-3 .footer-left-item .footer-item .single-footer-widget .contact-item .content :is(p,h6) {
  color: var(--text);
  line-height: 162%;
  font-weight: 400;
}
.footer-widget-wrapper-3 .footer-left-item .footer-item .single-footer-widget .contact-item .content :is(p,h6) a {
  color: var(--text);
}
.footer-widget-wrapper-3 .footer-left-item .footer-item .single-footer-widget .social-list li a {
  color: var(--text);
}
.footer-widget-wrapper-3 .footer-left-item .footer-item .single-footer-widget .social-list li a i,
.footer-widget-wrapper-3 .footer-left-item .footer-item .single-footer-widget .social-list li a .svg-icon {
  color: var(--text);
  margin-right: 10px;
}
.footer-widget-wrapper-3 .footer-left-item .footer-item .single-footer-widget .social-list li a:hover {
  color: var(--theme);
}
.footer-widget-wrapper-3 .footer-left-item .footer-item .single-footer-widget .social-list li a:hover i,
.footer-widget-wrapper-3 .footer-left-item .footer-item .single-footer-widget .social-list li a:hover .svg-icon {
  color: var(--theme);
}
.footer-widget-wrapper-3 .footer-left-item .footer-item .single-footer-widget .social-list li:not(:last-child) {
  margin-bottom: 20px;
}
.footer-widget-wrapper-3 .footer-right-content {
  margin-left: 75px;
}
@media (max-width: 1399px) {
  .footer-widget-wrapper-3 .footer-right-content {
    margin-left: 0;
  }
}
.footer-widget-wrapper-3 .footer-right-content .area-list {
  margin-top: 30px;
}
.footer-widget-wrapper-3 .footer-right-content .area-list a {
  color: var(--text);
  display: inline-block;
  margin-right: 28px;
  margin-bottom: 25px;
}
@media (max-width: 1399px) {
  .footer-widget-wrapper-3 .footer-right-content .area-list a {
    margin-right: 20px;
  }
}
@media (max-width: 991px) {
  .footer-widget-wrapper-3 .footer-right-content .area-list a {
    margin-right: 25px;
  }
}
.footer-widget-wrapper-3 .footer-right-content .area-list a:last-child {
  margin-right: 0;
  margin-bottom: 0;
}
.footer-widget-wrapper-3 .footer-right-content .area-list a i,
.footer-widget-wrapper-3 .footer-right-content .area-list a .svg-icon {
  color: var(--text);
  margin-right: 3px;
}
.footer-widget-wrapper-3 .footer-right-content .area-list a:hover {
  color: var(--theme-2);
}
.footer-widget-wrapper-3 .footer-right-content .area-list a:hover i,
.footer-widget-wrapper-3 .footer-right-content .area-list a:hover .svg-icon {
  color: var(--theme-2);
}
.footer-widget-wrapper-3 .footer-right-content .fotter-btn {
  color: var(--header);
  font-size: 14px;
  text-decoration-line: underline;
  display: inline-block;
}
.footer-widget-wrapper-3 .footer-right-content .fotter-btn i,
.footer-widget-wrapper-3 .footer-right-content .fotter-btn .svg-icon {
  margin-left: 5px;
}
.footer-widget-wrapper-3 .footer-right-content .fotter-btn:hover {
  color: var(--theme-2);
}
.footer-widget-wrapper-3 .footer-right-content .map-items {
  margin-top: 60px;
}
@media (max-width: 1399px) {
  .footer-widget-wrapper-3 .footer-right-content .map-items {
    margin-top: 30px;
  }
}
.footer-widget-wrapper-3 .footer-right-content .map-items .googpemap iframe {
  width: 100%;
  height: 270px;
  border-radius: 10px;
}

.footer-section-3 {
  position: relative;
}
.footer-section-3::before {
  position: absolute;
  content: "";
  background: rgba(20, 24, 22, 0.1);
  width: 960px;
  height: 1px;
  left: 0;
  top: 44%;
}
@media (max-width: 1600px) {
  .footer-section-3::before {
    width: 722px;
  }
}
@media (max-width: 1399px) {
  .footer-section-3::before {
    display: none;
  }
}
.footer-section-3::after {
  position: absolute;
  content: "";
  background: rgba(20, 24, 22, 0.1);
  width: 1px;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  bottom: 0;
  height: 90%;
}
@media (max-width: 1399px) {
  .footer-section-3::after {
    display: none;
  }
}
.footer-section-3 .text {
  font-weight: 600;
  font-size: 254px;
  color: transparent;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: rgba(20, 24, 22, 0.1);
  text-transform: uppercase;
  line-height: normal;
  letter-spacing: -4.9px;
  position: absolute;
  right: 0;
  bottom: 30px;
  z-index: -1;
}
@media (max-width: 1600px) {
  .footer-section-3 .text {
    font-size: 187px;
    bottom: 43px;
  }
}
@media (max-width: 1399px) {
  .footer-section-3 .text {
    display: none;
  }
}
.footer-section-3 .shape-1 {
  position: absolute;
  left: 20px;
  top: 80px;
}
@media (max-width: 1600px) {
  .footer-section-3 .shape-1 {
    display: none;
  }
}
.footer-section-3 .shape-2 {
  position: absolute;
  right: 20px;
  top: 80px;
}
@media (max-width: 1600px) {
  .footer-section-3 .shape-2 {
    display: none;
  }
}
.footer-section-3 .shape-3 {
  position: absolute;
  left: 0;
  bottom: 0;
}
@media (max-width: 1600px) {
  .footer-section-3 .shape-3 {
    display: none;
  }
}
.footer-section-3 .shape-4 {
  position: absolute;
  right: 0;
  bottom: 0;
}
@media (max-width: 1600px) {
  .footer-section-3 .shape-4 {
    display: none;
  }
}

.footer-bottom-3 {
  padding: 30px 0;
  border-top: 1px solid rgba(20, 24, 22, 0.1);
}
.footer-bottom-3 .footer-wrapper-3 {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 1399px) {
  .footer-bottom-3 .footer-wrapper-3 {
    flex-wrap: wrap;
    gap: 25px;
  }
}
@media (max-width: 767px) {
  .footer-bottom-3 .footer-wrapper-3 {
    justify-content: center;
  }
}
.footer-bottom-3 .footer-wrapper-3 .left-list {
  display: flex;
  align-items: center;
  gap: 30px;
}
@media (max-width: 575px) {
  .footer-bottom-3 .footer-wrapper-3 .left-list {
    gap: 15px;
  }
}
.footer-bottom-3 .footer-wrapper-3 p {
  color: var(--text);
}
.footer-bottom-3 .footer-wrapper-3 p span {
  color: var(--theme-2);
}
.footer-bottom-3 .footer-wrapper-3 p span.style-4 {
  color: var(--theme) !important;
}

.footer-widget-wrapper-4 {
  padding: 100px 0;
}
@media (max-width: 1399px) {
  .footer-widget-wrapper-4 {
    padding: 80px 0;
  }
}
.footer-widget-wrapper-4 .footer-left-content {
  margin-right: 60px;
}
@media (max-width: 1399px) {
  .footer-widget-wrapper-4 .footer-left-content {
    margin-right: 0;
  }
}
.footer-widget-wrapper-4 .footer-left-content .footer-item {
  display: flex;
  gap: 194px;
  border-bottom: 1px solid rgba(20, 24, 22, 0.1);
  padding-bottom: 60px;
  margin-bottom: 60px;
}
@media (max-width: 1399px) {
  .footer-widget-wrapper-4 .footer-left-content .footer-item {
    flex-wrap: wrap;
    gap: 30px;
    padding-bottom: 30px;
    margin-bottom: 30px;
  }
}
.footer-widget-wrapper-4 .footer-left-content .footer-item .content h2 {
  font-size: 46px;
}
@media (max-width: 1399px) {
  .footer-widget-wrapper-4 .footer-left-content .footer-item .content h2 {
    font-size: 44px;
  }
}
@media (max-width: 1199px) {
  .footer-widget-wrapper-4 .footer-left-content .footer-item .content h2 {
    font-size: 40px;
  }
}
@media (max-width: 991px) {
  .footer-widget-wrapper-4 .footer-left-content .footer-item .content h2 {
    font-size: 35px;
  }
}
@media (max-width: 767px) {
  .footer-widget-wrapper-4 .footer-left-content .footer-item .content h2 {
    font-size: 35px;
  }
}
@media (max-width: 575px) {
  .footer-widget-wrapper-4 .footer-left-content .footer-item .content h2 {
    font-size: 30px;
  }
}
@media (max-width: 470px) {
  .footer-widget-wrapper-4 .footer-left-content .footer-item .content h2 {
    font-size: 25px;
  }
}
.footer-widget-wrapper-4 .footer-left-content .footer-item .content .theme-btn {
  padding: 14px 35px;
}
.footer-widget-wrapper-4 .footer-left-content .footer-icon-item {
  display: flex;
  align-items: center;
  gap: 50px;
}
@media (max-width: 1399px) {
  .footer-widget-wrapper-4 .footer-left-content .footer-icon-item {
    flex-wrap: wrap;
    gap: 25px;
  }
}
.footer-widget-wrapper-4 .footer-left-content .footer-icon-item .icon-item {
  display: flex;
  align-items: center;
  gap: 15px;
}
.footer-widget-wrapper-4 .footer-left-content .footer-icon-item .icon-item .icon {
  width: 50px;
  height: 50px;
  line-height: 50px;
  border-radius: 100px;
  text-align: center;
  background-color: var(--theme);
  color: var(--white);
}
.footer-widget-wrapper-4 .footer-left-content .footer-icon-item .icon-item .cont h6 {
  color: rgb(105, 105, 105);
  font-weight: 400;
}
.footer-widget-wrapper-4 .footer-left-content .footer-icon-item .icon-item .cont h6 a {
  color: rgb(105, 105, 105);
}
.footer-widget-wrapper-4 .photo-gallery h5 {
  margin-bottom: 20px;
}
.footer-widget-wrapper-4 .photo-gallery .gallery-item {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-widget-wrapper-4 .photo-gallery .gallery-item:not(:last-child) {
  margin-bottom: 10px;
}
.footer-widget-wrapper-4 .photo-gallery .gallery-item .thumb {
  position: relative;
  overflow: hidden;
}
@media (max-width: 575px) {
  .footer-widget-wrapper-4 .photo-gallery .gallery-item .thumb {
    width: 100px;
  }
}
.footer-widget-wrapper-4 .photo-gallery .gallery-item .thumb img {
  width: 100%;
  height: 100%;
  border-radius: 5px;
}
.footer-widget-wrapper-4 .photo-gallery .gallery-item .thumb .icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  text-align: center;
  transition: 0.3s;
  opacity: 0;
  width: 100%;
  height: 100%;
}
.footer-widget-wrapper-4 .photo-gallery .gallery-item .thumb .icon::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(251, 91, 50, 0.5);
  transition: 0.4s;
  opacity: 0;
  width: 100%;
  height: 100%;
  border-radius: 5px;
}
.footer-widget-wrapper-4 .photo-gallery .gallery-item .thumb .icon i ,.footer-widget-wrapper-4 .photo-gallery .gallery-item .thumb .icon .svg-icon{
  color: var(--white);
  font-size: 22px;
  z-index: 99;
  position: relative;
  margin-top: 30px;
}
.footer-widget-wrapper-4 .photo-gallery .gallery-item .thumb:hover .icon {
  opacity: 1;
}
.footer-widget-wrapper-4 .photo-gallery .gallery-item .thumb:hover .icon::after {
  opacity: 1;
}

.header-top-section {
  background-color: var(--header);
  position: relative;
  z-index: 999;
}
.header-top-section .container-fluid {
  padding: 0 70px;
}
@media (max-width: 1600px) {
  .header-top-section .container-fluid {
    padding: 0 50px;
  }
}
@media (max-width: 1199px) {
  .header-top-section .container-fluid {
    display: none;
  }
}

.header-top-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
}
.header-top-wrapper p {
  color: #B4B4B4;
  font-size: 16px;
  font-weight: 400;
}
.header-top-wrapper p span {
  color: var(--theme);
  font-weight: 600;
  border-bottom: 1px solid var(--theme);
}
.header-top-wrapper p b {
  color: var(--white);
  font-weight: 600;
  border-bottom: 1px solid var(--white);
}
.header-top-wrapper .header-right {
  display: flex;
  align-items: center;
  gap: 60px;
  justify-content: end;
}
.header-top-wrapper .header-right .flag-wrap {
  display: flex;
  align-items: center;
}
@media (max-width: 1399px) {
  .header-top-wrapper .header-right .flag-wrap {
    display: none;
  }
}
.header-top-wrapper .header-right .flag-wrap i ,.header-top-wrapper .header-right .flag-wrap .svg-icon{
  color: var(--theme);
}
.header-top-wrapper .header-right .flag-wrap .nice-select {
  background: transparent;
  border: none;
  text-align: center;
  margin: 0 auto;
  position: relative;
  z-index: 999;
}
.header-top-wrapper .header-right .flag-wrap .nice-select span {
  font-size: 15px;
  font-weight: 400;
  text-transform: capitalize;
  color: var(--white);
}
.header-top-wrapper .header-right .flag-wrap .nice-select .list li {
  color: var(--header);
}
.header-top-wrapper .header-right .flag-wrap .nice-select::after {
  border-bottom: 2px solid var(--white);
  border-right: 2px solid var(--white);
  height: 7px;
  margin-top: -3px;
  width: 7px;
  right: -6px;
}
.header-top-wrapper .header-right .header-list {
  display: flex;
  align-items: center;
  gap: 60px;
}
.header-top-wrapper .header-right .header-list li {
  font-size: 14px;
  font-weight: 400;
  display: flex;
  align-items: center;
}
.header-top-wrapper .header-right .header-list li a {
  color: var(--white);
}
.header-top-wrapper .header-right .header-list li i ,.header-top-wrapper .header-right .header-list li .svg-icon{
  color: var(--theme);
  margin-right: 5px;
}
.header-top-wrapper.style-3 {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-top-wrapper.style-3 .header-list {
  display: flex;
  align-items: center;
  gap: 30px;
}
.header-top-wrapper.style-3 .header-list li {
  font-size: 14px;
  font-weight: 400;
  display: flex;
  align-items: center;
}
.header-top-wrapper.style-3 .header-list li.color-3 {
  position: relative;
  padding-left: 30px;
}
.header-top-wrapper.style-3 .header-list li.color-3::before {
  position: absolute;
  background-color: rgba(255, 255, 255, 0.5);
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 30px;
  top: 8px;
  left: 0;
}
.header-top-wrapper.style-3 .header-list li a {
  color: var(--white);
}
.header-top-wrapper.style-3 .header-list li i ,.header-top-wrapper.style-3 .header-list li .svg-icon{
  color: var(--theme-2);
  margin-right: 5px;
}
.header-top-wrapper.style-3 p {
  color: var(--white);
  font-size: 14px;
  font-weight: 400;
  color: #B4B4B4;
}
.header-top-wrapper.style-3 p span {
  color: var(--white);
  font-weight: 600;
}
.header-top-wrapper.style-3 .header-right .flag-wrap i ,.header-top-wrapper.style-3 .header-right .flag-wrap .svg-icon{
  color: var(--theme-2);
}
.header-top-wrapper.style-3 .header-right .social-icon {
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
}
.header-top-wrapper.style-3 .header-right .social-icon::before {
  position: absolute;
  background-color: rgba(255, 255, 255, 0.5);
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 30px;
  top: 8px;
  left: -30px;
}
.header-top-wrapper.style-3 .header-right .social-icon a {
  color: rgba(255, 255, 255, 0.65);
}
.header-top-wrapper.style-3 .header-right .social-icon a:hover {
  color: var(--white);
}

@media (max-width: 1199px) {
  .menu-thumb {
    display: none !important;
  }
}

.header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
}
@media (max-width: 1199px) {
  .header-main {
    padding: 10px 0;
  }
}
.header-main .main-menu ul {
  margin-bottom: 0;
}
.header-main .main-menu ul li {
  position: relative;
  list-style: none;
  display: inline-block;
  margin-inline-end: 35px;
}
.header-main .main-menu ul li:last-child {
  margin-inline-end: 0;
}
.header-main .main-menu ul li a {
  display: inline-block;
  font-size: 16px;
  font-weight: 500;
  color: var(--header);
  padding: 20px 0;
  text-align: left;
  position: relative;
  text-transform: capitalize;
  transition: all 0.4s ease-in-out;
}
.header-main .main-menu ul li a i,
.header-main .main-menu ul li a .svg-icon {
  margin-left: 5px;
  font-size: 12px;
}
.header-main .main-menu ul li a:hover {
  color: var(--theme) !important;
}
.header-main .main-menu ul li .submenu {
  position: absolute;
  top: 115%;
  inset-inline-start: 0;
  min-width: 240px;
  background: var(--white);
  padding: 20px 0;
  z-index: 99999;
  visibility: hidden;
  opacity: 0;
  transform-origin: top center;
  color: var(--header);
  transform: translateY(-10px);
  transition: all 0.4s ease-in-out;
  border-top: 6px solid var(--theme);
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
.header-main .main-menu ul li .submenu li {
  display: block;
  width: 100%;
  margin: 0;
}
.header-main .main-menu ul li .submenu li a {
  position: relative;
  z-index: 11;
  font-size: 16px;
  font-weight: 500;
  color: var(--header);
  line-height: 38px;
  padding: 0px 0px 0px 32px;
  width: 100%;
  text-transform: capitalize;
}
.header-main .main-menu ul li .submenu li a::before {
  content: "";
  position: absolute;
  width: 0px;
  height: 2px;
  background: var(--theme);
  left: 14px;
  bottom: 18px;
  transition: all 0.4s ease-in-out;
}
.header-main .main-menu ul li .submenu li a:hover {
  color: var(--theme) !important;
}
.header-main .main-menu ul li .submenu li:last-child a {
  border: none;
}
.header-main .main-menu ul li .submenu li .submenu {
  inset-inline-start: 100%;
  top: 0;
  visibility: hidden;
  opacity: 0;
}
.header-main .main-menu ul li .submenu li:hover > a {
  color: var(--theme) !important;
  margin-left: 10px;
}
.header-main .main-menu ul li .submenu li:hover > a::before {
  width: 10px;
}
.header-main .main-menu ul li .submenu li:hover > a::after {
  color: var(--theme);
}
.header-main .main-menu ul li .submenu li:hover > .submenu {
  -webkit-transform: translateY(1);
  -moz-transform: translateY(1);
  -ms-transform: translateY(1);
  -o-transform: translateY(1);
  transform: translateY(1);
  visibility: visible;
  opacity: 1;
}
.header-main .main-menu ul li .submenu li.has-dropdown > a::after {
  position: absolute;
  top: 50%;
  inset-inline-end: 25px;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  color: var(--theme);
}
.header-main .main-menu ul li .has-homemenu {
  width: 1100px;
  padding: 30px 30px 10px 30px;
  opacity: 0;
  left: -250px;
  visibility: hidden;
  padding: 30px 30px 10px 30px;
}
.header-main .main-menu ul li .has-homemenu.style-two {
  left: -520px;
}
.header-main .main-menu ul li .has-homemenu .homemenu-items {
  display: flex;
  align-items: center;
  gap: 30px;
  justify-content: space-between;
}
@media (max-width: 991px) {
  .header-main .main-menu ul li .has-homemenu .homemenu-items {
    flex-wrap: wrap;
  }
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu {
  position: relative;
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb {
  position: relative;
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70%;
  gap: 10px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
  margin-top: 20px;
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button .theme-btn {
  padding: 14px 20px;
  color: var(--white) !important;
  width: initial;
  font-size: 16px;
  text-align: center;
  border-radius: 8px !important;
  line-height: initial;
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button .theme-btn::before, .header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button .theme-btn::after {
  display: none;
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button .theme-btn:hover {
  background: var(--header);
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb::before {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(20, 19, 19, 0)), to(#5e5ef6));
  background: linear-gradient(to bottom, rgba(99, 92, 92, 0) 0%, #252527 100%);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  overflow: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  content: "";
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb:hover::before {
  visibility: visible;
  opacity: 1;
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb:hover .demo-button {
  opacity: 1;
  visibility: visible;
  margin-top: 0;
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb:hover .homemenu-btn {
  opacity: 1;
  visibility: visible;
  bottom: 50%;
  transform: translateY(50%);
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb img {
  width: 100%;
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-title {
  text-align: center;
  margin: 15px auto;
  display: inline-block;
  font-size: 18px;
  font-weight: 600;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "PingFang SC", "Microsoft YaHei", sans-serif;
}
.header-main .main-menu ul li:hover > a {
  color: var(--theme);
}
.header-main .main-menu ul li:hover > a::after {
  color: var(--theme);
}
.header-main .main-menu ul li:hover > .submenu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0px);
}
.header-main .header-right {
  gap: 40px;
}
@media (max-width: 1600px) {
  .header-main .header-right {
    gap: 15px;
  }
}
@media (max-width: 1399px) {
  .header-main .header-right {
    gap: 20px;
  }
}
@media (max-width: 1399px) {
  .header-main .header-right .search-widget {
    display: none;
  }
}
.header-main .header-right .search-widget form {
  width: 100%;
  position: relative;
  max-width: 300px;
}
.header-main .header-right .search-widget form input {
  background: transparent;
  font-size: 16px;
  font-weight: 400;
  padding: 12px 20px;
  width: 100%;
  border: none;
  max-width: 300px;
  color: #AAA8A8;
  border-bottom: 1px solid rgba(21, 21, 21, 0.1);
}
.header-main .header-right .search-widget form button {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  color: var(--header);
  font-size: 14px;
}
@media (max-width: 1399px) {
  .header-main .header-right .search-widget {
    display: none;
  }
}
.header-main .header-right .header-button .theme-btn {
  padding: 16px 35px;
}
.header-main .header-right .sidebar__toggle {
  color: var(--header);
}
.header-main.style-3 {
  position: relative;
  z-index: 9999;
}
.header-main.style-3 .main-menu ul li a:hover {
  color: var(--theme-2) !important;
}
.header-main.style-3 .main-menu ul li .submenu {
  border-top: 6px solid var(--theme-2);
}
.header-main.style-3 .main-menu ul li .submenu li a::before {
  background: var(--theme-2);
}
.header-main.style-3 .main-menu ul li .submenu li a:hover {
  color: var(--theme-2) !important;
}
.header-main.style-3 .main-menu ul li .submenu li:hover > a {
  color: var(--theme-2) !important;
}
.header-main.style-3 .main-menu ul li .submenu li:hover > a::after {
  color: var(--theme-2);
}
.header-main.style-3 .main-menu ul li .submenu li.has-dropdown > a::after {
  color: var(--theme-2);
}
.header-main.style-3 .main-menu ul li:hover > a {
  color: var(--theme-2);
}
.header-main.style-3 .main-menu ul li:hover > a::after {
  color: var(--theme-2);
}

.header-1 {
  background-color: var(--white);
  position: relative;
  z-index: 9999;
}
.header-1 .container-fluid {
  padding: 0 70px;
}
@media (max-width: 1600px) {
  .header-1 .container-fluid {
    padding: 0 50px;
  }
}
@media (max-width: 1199px) {
  .header-1 .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 575px) {
  .header-1 .container-fluid {
    padding: 0 15px;
  }
}
.header-1 .header-left {
  display: flex;
  align-items: center;
  gap: 120px;
}
@media (max-width: 1600px) {
  .header-1 .header-left {
    gap: 30px;
  }
}
@media (max-width: 1199px) {
  .header-1 .header-main .header-right .header-button {
    display: none;
  }
  /* 移动端隐藏桌面导航，菜单通过 Offcanvas 侧边栏显示 */
  .header-main .mean__menu-wrapper {
    display: none;
  }
}
.header-1 .header-main .header-right .header-button .theme-btn {
  padding: 14px 35px;
}
.header-1 .header-main .sidebar__toggle {
  color: var(--header);
}
.header-1.header-2 {
  position: absolute;
  top: 10px;
  width: 100%;
  left: 0;
  right: 0;
  z-index: 9999;
  background-color: transparent;
}
.header-1.header-2 .container-fluid {
  padding: 0 20px;
}
@media (max-width: 575px) {
  .header-1.header-2 .container-fluid {
    padding: 0 15px;
  }
}
.header-1.header-2 .header-main {
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(180deg, rgba(11, 11, 11, 0.24) 0%, rgba(50, 50, 50, 0.21) 100%);
  backdrop-filter: blur(40px);
  padding: 10px 30px;
}
.header-1.header-2 .header-main .header-left .header-logo-2 {
  display: none;
}
.header-1.header-2 .header-main .header-right {
  display: flex;
  align-items: center;
  gap: 40px;
}
.header-1.header-2 .header-main .header-right .main-menu ul li a {
  color: var(--white);
}
.header-1.header-2 .header-main .header-right .main-menu ul li .submenu li a {
  color: var(--header);
}
.header-1.header-2 .header-main .header-right .sidebar__toggle {
  color: var(--white);
  z-index: 999;
  position: relative;
  font-size: 20px;
  cursor: pointer;
}
.header-1.header-2 .header-main .header-right .search-toggler {
  color: var(--white);
}
.header-1.header-4 {
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  top: 0;
  z-index: 9999;
  background-color: transparent;
}
.header-1.header-4 .header-main .header-left .logo .header-logo-2 {
  display: none;
}
.header-1.header-4 .header-main .main-menu ul li a {
  color: var(--white);
}
.header-1.header-4 .header-main .main-menu ul li .submenu {
  border-top: 6px solid var(--theme);
}
.header-1.header-4 .header-main .main-menu ul li .submenu li a {
  color: var(--header) !important;
}
.header-1.header-4 .header-main .main-menu ul li .submenu li a::before {
  background: var(--theme);
}
.header-1.header-4 .header-main .main-menu ul li .submenu li a:hover {
  color: var(--theme) !important;
}
.header-1.header-4 .header-main .main-menu ul li .submenu li:hover > a {
  color: var(--theme) !important;
}
.header-1.header-4 .header-main .main-menu ul li .submenu li:hover > a::after {
  color: var(--theme);
}
.header-1.header-4 .header-main .main-menu ul li .submenu li.has-dropdown > a::after {
  color: var(--theme);
}
.header-1.header-4 .header-main .header-right {
  gap: 40px;
}
@media (max-width: 1600px) {
  .header-1.header-4 .header-main .header-right {
    gap: 15px;
  }
}
@media (max-width: 1399px) {
  .header-1.header-4 .header-main .header-right {
    gap: 20px;
  }
}
@media (max-width: 1399px) {
  .header-1.header-4 .header-main .header-right .search-widget {
    display: none;
  }
}
.header-1.header-4 .header-main .header-right .search-widget form {
  width: 100%;
  position: relative;
  max-width: 170px;
}
.header-1.header-4 .header-main .header-right .search-widget form input {
  background: transparent;
  font-size: 16px;
  font-weight: 400;
  padding: 12px 20px;
  width: 100%;
  border: none;
  max-width: 170px;
  color: rgb(170, 168, 168);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.header-1.header-4 .header-main .header-right .search-widget form button {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  color: var(--white);
  font-size: 14px;
}
@media (max-width: 1399px) {
  .header-1.header-4 .header-main .header-right .search-widget {
    display: none;
  }
}
.header-1.header-4 .header-main .header-right .header-button .theme-btn {
  padding: 16px 35px;
}
.header-1.header-4 .header-main .header-right .sidebar__toggle {
  color: var(--white);
}

.sticky-header {
  position: fixed !important;
  top: 0 !important;
  left: 0;
  width: 100%;
  z-index: 9999;
  transition: all 0.9s;
  background-color: var(--white);
  -webkit-animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
  animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
.sticky-header.header-1 .header-main .header-left .logo .header-logo-3 {
  display: block;
}
@media (max-width: 1399px) {
  .sticky-header.header-1 .header-main .header-left .logo .header-logo-3 img {
    width: 150px;
  }
}
.sticky-header.header-1 .header-main .header-left .logo .header-logo-2 {
  display: none;
}
.sticky-header.header-1 .header-main .header-right .search-icon {
  color: var(--header);
}
.sticky-header.header-1 .header-main .main-menu {
  padding-left: initial;
  padding-right: initial;
}
.sticky-header.header-1 .header-main .main-menu ul li a {
  color: var(--header);
}
.sticky-header.header-1 .header-main .main-menu ul li a:hover {
  color: var(--theme) !important;
}
.sticky-header.header-1 .header-main .main-menu ul li .submenu li a {
  color: var(--header);
}
.sticky-header.header-1 .header-main .main-menu ul li:hover > a {
  color: var(--theme);
}
.sticky-header.header-1 .header-main .main-menu ul li:hover > a::after {
  color: var(--theme);
}
.sticky-header.header-1 .header-main .sidebar__toggle {
  color: var(--header);
}
.sticky-header.header-2 {
  top: 0;
  background-color: var(--white);
}
.sticky-header.header-2 .header-main {
  padding: 10px 0;
  border: none;
  background: transparent;
  backdrop-filter: initial;
}
.sticky-header.header-2 .header-main .header-left .header-logo {
  display: none;
}
.sticky-header.header-2 .header-main .header-left .header-logo-2 {
  display: block !important;
}
.sticky-header.header-2 .header-main .header-right .main-menu ul li a {
  color: var(--header);
}
.sticky-header.header-2 .header-main .header-right .sidebar__toggle {
  color: var(--header);
}
.sticky-header.header-2 .header-main .header-right .search-toggler {
  color: var(--header);
}
.sticky-header.header-4 {
  background-color: var(--white);
}
.sticky-header.header-4 .header-main .header-left .logo .header-logo-2 {
  display: block;
}
.sticky-header.header-4 .header-main .header-left .logo .header-logo {
  display: none;
}
.sticky-header.header-4 .header-main .header-right .search-widget form input {
  color: #AAA8A8;
  border-bottom: 1px solid rgba(21, 21, 21, 0.1);
}
.sticky-header.header-4 .header-main .header-right .search-widget form button {
  color: var(--header);
}
.sticky-header.header-4 .header-main .header-right .sidebar__toggle {
  color: var(--header);
}

.offcanvas__info {
  background: var(--white) none repeat scroll 0 0;
  border-left: 2px solid var(--theme);
  position: fixed;
  right: 0;
  top: 0;
  width: 400px;
  height: 100%;
  -webkit-transform: translateX(calc(100% + 80px));
  -moz-transform: translateX(calc(100% + 80px));
  -ms-transform: translateX(calc(100% + 80px));
  -o-transform: translateX(calc(100% + 80px));
  transform: translateX(calc(100% + 80px));
  -webkit-transition: transform 0.45s ease-in-out, opacity 0.45s ease-in-out;
  -moz-transition: transform 0.45s ease-in-out, opacity 0.45s ease-in-out;
  transition: transform 0.45s ease-in-out, opacity 0.45s ease-in-out;
  z-index: 99999;
  overflow-y: scroll;
  overscroll-behavior-y: contain;
  scrollbar-width: none;
}
.offcanvas__info::-webkit-scrollbar {
  display: none;
}
.offcanvas__info.style-left {
  border-left: 2px solid var(--theme-2);
}

.offcanvas__info.info-open {
  opacity: 1;
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
}

.offcanvas__wrapper {
  position: relative;
  height: 100%;
  padding: 30px 30px;
}
.offcanvas__wrapper .offcanvas__content .text {
  color: var(--text);
}
@media (max-width: 1399px) {
  .offcanvas__wrapper .offcanvas__content .offcanvas__logo img {
    width: 150px;
  }
}
.offcanvas__wrapper .offcanvas__content .offcanvas__close {
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  border-radius: 50%;
  background-color: var(--theme);
  position: relative;
  z-index: 9;
  cursor: pointer;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__close.style-3 {
  background-color: var(--theme-2);
}
.offcanvas__wrapper .offcanvas__content .offcanvas__close i ,.offcanvas__wrapper .offcanvas__content .offcanvas__close .svg-icon{
  color: var(--white);
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact {
  margin-top: 20px;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact .social-icon {
  margin-top: 30px;
  gap: 10px;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact .social-icon a {
  width: 52px;
  height: 52px;
  line-height: 52px;
  text-align: center;
  font-size: 16px;
  display: block;
  background: transparent;
  color: var(--text);
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  text-align: center;
  border: 1px solid rgba(21, 20, 21, 0.14);
  border-radius: 5px;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact .social-icon a:hover {
  background-color: var(--theme);
  color: var(--white);
  border: 1px solid var(--theme);
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact h3 {
  font-size: 28px;
  margin-bottom: 15px;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact .form-clt input, .offcanvas__wrapper .offcanvas__content .offcanvas__contact .form-clt textarea {
  border: none;
  outline: none;
  border: 1px solid rgba(21, 20, 21, 0.14);
  border-radius: 5px;
  color: var(--text);
  font-weight: 500;
  padding: 14px 20px;
  line-height: 1;
  width: 100%;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact .form-clt textarea {
  padding-bottom: 100px;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact span {
  text-transform: initial;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact .header-button {
  display: flex;
  align-items: center;
}

.offcanvas__overlay {
  position: fixed;
  height: 100%;
  width: 100%;
  background: #151515;
  z-index: 900;
  top: 0;
  opacity: 0;
  visibility: hidden;
  right: 0;
}

.offcanvas__overlay.overlay-open {
  opacity: 0.8;
  visibility: visible;
}

@media (max-width: 450px) {
  .offcanvas__info {
    width: 300px;
  }
}
@media (max-width: 575px) {
  .offcanvas__wrapper {
    padding: 20px;
  }
}
/* Offcanvas 内 meanmenu 白色背景 */
.offcanvas__content .mean-bar { background: #fff !important; }
.offcanvas__content .mean-nav { background: #fff !important; margin-top: 0; }
.offcanvas__content .mean-nav ul li a { color: #151515 !important; border-top-color: rgba(21,21,21,0.08) !important; }
.offcanvas__content .mean-nav ul li li a { padding-left: 5% !important; }
.offcanvas__content a.meanmenu-reveal span { background: #151515 !important; }

.breadcrumb-wrapper {
  border-top: 1px solid rgba(21, 21, 21, 0.1);
}
.breadcrumb-wrapper .page-heading {
  padding: 100px 0 70px;
  text-align: center;
  position: relative;
}
@media (max-width: 1399px) {
  .breadcrumb-wrapper .page-heading {
    padding: 100px 0 100px;
  }
}
@media (max-width: 991px) {
  .breadcrumb-wrapper .page-heading {
    padding: 70px 0 70px;
  }
}
.breadcrumb-wrapper .page-heading h1 {
  font-size: 65px;
  font-weight: 600;
}
@media (max-width: 1199px) {
  .breadcrumb-wrapper .page-heading h1 {
    font-size: 60px;
  }
}
@media (max-width: 991px) {
  .breadcrumb-wrapper .page-heading h1 {
    font-size: 50px;
    text-align: center;
  }
}
@media (max-width: 767px) {
  .breadcrumb-wrapper .page-heading h1 {
    font-size: 40px;
  }
}
@media (max-width: 575px) {
  .breadcrumb-wrapper .page-heading h1 {
    font-size: 30px;
  }
}
@media (max-width: 470px) {
  .breadcrumb-wrapper .page-heading h1 {
    font-size: 30px;
  }
}
.breadcrumb-wrapper .page-heading .breadcrumb-items {
  display: flex;
  align-items: center;
  margin-top: 20px;
  gap: 40px;
  justify-content: center;
}
@media (max-width: 991px) {
  .breadcrumb-wrapper .page-heading .breadcrumb-items {
    justify-content: center;
  }
}
.breadcrumb-wrapper .page-heading .breadcrumb-items li {
  color: var(--theme);
  text-transform: capitalize;
  font-weight: 500;
  font-size: 18px;
  position: relative;
}
.breadcrumb-wrapper .page-heading .breadcrumb-items li.style-2::before {
  position: absolute;
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 20px;
  left: -20px;
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--text);
}
.breadcrumb-wrapper .page-heading .breadcrumb-items li.style-2.style-3 {
  border-bottom: 1px solid var(--text);
  color: var(--text);
}
.breadcrumb-wrapper .page-heading .breadcrumb-items li a {
  transition: all 0.4s ease-in-out;
}
.breadcrumb-wrapper .page-heading .breadcrumb-items li a:hover {
  color: var(--theme);
}
.breadcrumb-wrapper .page-heading.style-2 .breadcrumb-items li a {
  color: var(--text);
}
.breadcrumb-wrapper .page-heading.style-2 h1 {
  margin-top: 20px;
}
.breadcrumb-wrapper .page-heading.style-2 .list {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 40px;
  justify-content: center;
}
@media (max-width: 1600px) {
  .breadcrumb-wrapper .page-heading.style-2 .list {
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 10px;
  }
}
@media (max-width: 1600px) {
  .breadcrumb-wrapper .page-heading.style-2 .list li {
    font-size: 14px;
  }
}
@media (max-width: 1399px) {
  .breadcrumb-wrapper .page-heading.style-2 .list li {
    font-size: 16px;
  }
}
.breadcrumb-wrapper .page-heading.style-2 .list li i ,.breadcrumb-wrapper .page-heading.style-2 .list li .svg-icon{
  margin-right: 5px;
}
.breadcrumb-wrapper .page-heading.style-2 .star-list {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 40px;
  justify-content: center;
}
@media (max-width: 1399px) {
  .breadcrumb-wrapper .page-heading.style-2 .star-list {
    margin-top: 30px;
  }
}
.breadcrumb-wrapper .page-heading.style-2 .star-list .star span {
  font-size: 14px;
  font-weight: 500;
  display: inline-block;
  margin-left: 10px;
}
.breadcrumb-wrapper .page-heading.style-2 .star-list .star i ,.breadcrumb-wrapper .page-heading.style-2 .star-list .star .svg-icon{
  color: var(--theme);
}
.breadcrumb-wrapper .page-heading.style-2 .star-list span i ,.breadcrumb-wrapper .page-heading.style-2 .star-list span .svg-icon{
  margin-right: 7px;
}

.breadcrumb-wrapper-2 {
  position: relative;
  border-radius: 10px;
  margin: 0 15px;
}
.breadcrumb-wrapper-2::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(21, 21, 21, 0) 0%, rgba(21, 21, 21, 0.7) 100%);
}
.breadcrumb-wrapper-2.style-tour-page::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(21, 21, 21, 0) 0%, rgba(21, 21, 21, 0.7) 100%);
}
.breadcrumb-wrapper-2.style-tour-page .page-heading {
  padding: 150px 0 50px;
  text-align: center;
}
@media (max-width: 991px) {
  .breadcrumb-wrapper-2.style-tour-page .page-heading {
    padding-top: 120px;
  }
}
.breadcrumb-wrapper-2.style-tour-page .page-heading .breadcrumb-items {
  justify-content: center;
}
.breadcrumb-wrapper-2.style-tour-page .page-heading .from-box {
  padding: 40px 90px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(180deg, rgba(81, 79, 79, 0.09) 0%, rgba(205, 205, 205, 0.08) 100%);
  backdrop-filter: blur(7.5px);
  margin-top: 40px;
}
@media (max-width: 1399px) {
  .breadcrumb-wrapper-2.style-tour-page .page-heading .from-box {
    padding: 30px;
  }
}
.breadcrumb-wrapper-2.style-tour-page .page-heading .from-box h3 {
  text-align: center;
  color: var(--white);
  margin-bottom: 30px;
  margin-top: 0;
  font-size: 24px;
  font-weight: 400;
}
.breadcrumb-wrapper-2.style-tour-page .page-heading .from-box .box-item-2 {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 30px;
}
@media (max-width: 991px) {
  .breadcrumb-wrapper-2.style-tour-page .page-heading .from-box .box-item-2 {
    flex-wrap: wrap;
  }
}
.breadcrumb-wrapper-2.style-tour-page .page-heading .from-box .box-item-2 .form-clt {
  position: relative;
  width: 100%;
}
.breadcrumb-wrapper-2.style-tour-page .page-heading .from-box .box-item-2 .form-clt .single-select {
  width: 100%;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  padding: 17px 20px;
  font-weight: 400;
  font-size: 15px;
  text-transform: capitalize;
  color: rgba(255, 255, 255, 0.65);
  line-height: initial;
  height: initial;
}
.breadcrumb-wrapper-2.style-tour-page .page-heading .from-box .box-item-2 .form-clt .single-select::after {
  border-bottom: 2px solid var(--white);
  border-right: 2px solid var(--white);
}
.breadcrumb-wrapper-2.style-tour-page .page-heading .from-box .box-item-2 .form-clt .single-select .list {
  width: 100%;
  color: var(--header);
}
.breadcrumb-wrapper-2.style-tour-page .page-heading .from-box .box-item-2 .form-clt .theme-btn {
  width: 100%;
  text-align: center;
  display: inline-block;
  padding: 14px 30px;
}
.breadcrumb-wrapper-2.style-tour-page .page-heading .from-box .box-item-2 .form-clt .theme-btn::after {
  background-color: var(--white);
}
.breadcrumb-wrapper-2.style-tour-page .page-heading .from-box .box-item-2 .form-clt .theme-btn:hover {
  color: var(--header);
}
.breadcrumb-wrapper-2 .page-heading {
  padding: 330px 0 190px;
  position: relative;
}
@media (max-width: 1399px) {
  .breadcrumb-wrapper-2 .page-heading {
    padding: 100px 0 100px;
  }
}
@media (max-width: 991px) {
  .breadcrumb-wrapper-2 .page-heading {
    padding: 70px 0 70px;
  }
}
.breadcrumb-wrapper-2 .page-heading h1 {
  font-size: 65px;
  color: var(--white);
  font-weight: 600;
}
@media (max-width: 1199px) {
  .breadcrumb-wrapper-2 .page-heading h1 {
    font-size: 60px;
  }
}
@media (max-width: 991px) {
  .breadcrumb-wrapper-2 .page-heading h1 {
    font-size: 50px;
    text-align: center;
  }
}
@media (max-width: 767px) {
  .breadcrumb-wrapper-2 .page-heading h1 {
    font-size: 40px;
  }
}
@media (max-width: 575px) {
  .breadcrumb-wrapper-2 .page-heading h1 {
    font-size: 30px;
  }
}
@media (max-width: 470px) {
  .breadcrumb-wrapper-2 .page-heading h1 {
    font-size: 30px;
  }
}
.breadcrumb-wrapper-2 .page-heading .breadcrumb-items {
  display: flex;
  align-items: center;
  margin-top: 20px;
  gap: 40px;
}
@media (max-width: 991px) {
  .breadcrumb-wrapper-2 .page-heading .breadcrumb-items {
    justify-content: center;
  }
}
.breadcrumb-wrapper-2 .page-heading .breadcrumb-items li {
  color: var(--white);
  text-transform: capitalize;
  font-weight: 500;
  font-size: 18px;
  position: relative;
}
.breadcrumb-wrapper-2 .page-heading .breadcrumb-items li.style-2 {
  border-bottom: 1px solid var(--white);
}
.breadcrumb-wrapper-2 .page-heading .breadcrumb-items li.style-2::before {
  position: absolute;
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 20px;
  left: -20px;
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--white);
}
.breadcrumb-wrapper-2 .page-heading .breadcrumb-items li a {
  transition: all 0.4s ease-in-out;
  color: var(--white);
  border-bottom: none;
}
.breadcrumb-wrapper-2 .page-heading .breadcrumb-items li a:hover {
  color: var(--theme);
}

.breadcrumb-wrapper-3 {
  position: relative;
  border-radius: 10px;
  margin: 0 15px;
}
.breadcrumb-wrapper-3::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(21, 21, 21, 0) 29.25%, rgba(21, 21, 21, 0.8) 100%);
}
.breadcrumb-wrapper-3 .page-heading {
  padding: 430px 0 70px;
  position: relative;
}
@media (max-width: 1399px) {
  .breadcrumb-wrapper-3 .page-heading {
    padding: 100px 0 70px;
  }
}
@media (max-width: 991px) {
  .breadcrumb-wrapper-3 .page-heading {
    padding: 70px 0 70px;
  }
}
.breadcrumb-wrapper-3 .page-heading h1 {
  font-size: 65px;
  color: var(--white);
  font-weight: 600;
  text-align: center;
}
@media (max-width: 1199px) {
  .breadcrumb-wrapper-3 .page-heading h1 {
    font-size: 60px;
  }
}
@media (max-width: 991px) {
  .breadcrumb-wrapper-3 .page-heading h1 {
    font-size: 50px;
    text-align: center;
  }
}
@media (max-width: 767px) {
  .breadcrumb-wrapper-3 .page-heading h1 {
    font-size: 40px;
  }
}
@media (max-width: 575px) {
  .breadcrumb-wrapper-3 .page-heading h1 {
    font-size: 30px;
  }
}
@media (max-width: 470px) {
  .breadcrumb-wrapper-3 .page-heading h1 {
    font-size: 30px;
  }
}
.breadcrumb-wrapper-3 .page-heading .breadcrumb-items {
  display: flex;
  align-items: center;
  margin-top: 20px;
  gap: 40px;
  justify-content: center;
}
@media (max-width: 991px) {
  .breadcrumb-wrapper-3 .page-heading .breadcrumb-items {
    justify-content: center;
  }
}
.breadcrumb-wrapper-3 .page-heading .breadcrumb-items li {
  color: var(--white);
  text-transform: capitalize;
  font-weight: 500;
  font-size: 18px;
  position: relative;
}
.breadcrumb-wrapper-3 .page-heading .breadcrumb-items li.style-2 {
  border-bottom: 1px solid var(--white);
}
.breadcrumb-wrapper-3 .page-heading .breadcrumb-items li.style-2::before {
  position: absolute;
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 20px;
  left: -20px;
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--white);
}
.breadcrumb-wrapper-3 .page-heading .breadcrumb-items li a {
  transition: all 0.4s ease-in-out;
  color: var(--white);
  border-bottom: none;
}
.breadcrumb-wrapper-3 .page-heading .breadcrumb-items li a:hover {
  color: var(--theme);
}
.breadcrumb-wrapper-3.style-2 {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.breadcrumb-wrapper-3.style-2 .page-heading h1 {
  text-align: left;
}
.breadcrumb-wrapper-3.style-2 .page-heading .breadcrumb-items {
  justify-content: start;
}
.breadcrumb-wrapper-3.style-2 .content h2 {
  color: var(--white) !important;
  margin-bottom: 5px;
  position: relative;
  z-index: 9;
}
.breadcrumb-wrapper-3.style-2 .content p {
  color: var(--white) !important;
  font-weight: 500;
  position: relative;
  z-index: 9;
}

.breadcrumb-wrapper-4 {
  position: relative;
  border-radius: 10px;
  margin: 0 15px;
}
.breadcrumb-wrapper-4::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(21, 21, 21, 0) 29.25%, rgba(21, 21, 21, 0.8) 100%);
}
.breadcrumb-wrapper-4 .breadcrumb-top-items {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 430px 0 70px;
}
@media (max-width: 1399px) {
  .breadcrumb-wrapper-4 .breadcrumb-top-items {
    padding: 100px 0 70px;
  }
}
@media (max-width: 991px) {
  .breadcrumb-wrapper-4 .breadcrumb-top-items {
    padding: 70px 0 70px;
  }
}
.breadcrumb-wrapper-4 .breadcrumb-top-items .page-heading {
  position: relative;
}
.breadcrumb-wrapper-4 .breadcrumb-top-items .page-heading h1 {
  font-size: 65px;
  color: var(--white);
  font-weight: 600;
  text-align: center;
}
@media (max-width: 1199px) {
  .breadcrumb-wrapper-4 .breadcrumb-top-items .page-heading h1 {
    font-size: 60px;
  }
}
@media (max-width: 991px) {
  .breadcrumb-wrapper-4 .breadcrumb-top-items .page-heading h1 {
    font-size: 50px;
    text-align: center;
  }
}
@media (max-width: 767px) {
  .breadcrumb-wrapper-4 .breadcrumb-top-items .page-heading h1 {
    font-size: 40px;
  }
}
@media (max-width: 575px) {
  .breadcrumb-wrapper-4 .breadcrumb-top-items .page-heading h1 {
    font-size: 30px;
  }
}
@media (max-width: 470px) {
  .breadcrumb-wrapper-4 .breadcrumb-top-items .page-heading h1 {
    font-size: 30px;
  }
}
.breadcrumb-wrapper-4 .breadcrumb-top-items .page-heading .breadcrumb-items {
  display: flex;
  align-items: center;
  margin-top: 20px;
  gap: 40px;
}
@media (max-width: 991px) {
  .breadcrumb-wrapper-4 .breadcrumb-top-items .page-heading .breadcrumb-items {
    justify-content: center;
  }
}
.breadcrumb-wrapper-4 .breadcrumb-top-items .page-heading .breadcrumb-items li {
  color: var(--white);
  text-transform: capitalize;
  font-weight: 500;
  font-size: 18px;
  position: relative;
}
.breadcrumb-wrapper-4 .breadcrumb-top-items .page-heading .breadcrumb-items li.style-2 {
  border-bottom: 1px solid var(--white);
}
.breadcrumb-wrapper-4 .breadcrumb-top-items .page-heading .breadcrumb-items li.style-2::before {
  position: absolute;
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 20px;
  left: -20px;
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--white);
}
.breadcrumb-wrapper-4 .breadcrumb-top-items .page-heading .breadcrumb-items li a {
  transition: all 0.4s ease-in-out;
  color: var(--white);
  border-bottom: none;
}
.breadcrumb-wrapper-4 .breadcrumb-top-items .page-heading .breadcrumb-items li a:hover {
  color: var(--theme);
}
.breadcrumb-wrapper-4 .breadcrumb-top-items .content h2 {
  color: var(--white) !important;
  margin-bottom: 5px;
  position: relative;
  z-index: 9;
}
.breadcrumb-wrapper-4 .breadcrumb-top-items .content p {
  color: var(--white) !important;
  font-weight: 500;
  position: relative;
  z-index: 9;
}
.breadcrumb-wrapper-4 .breadcrumb-top-items .content.style-2 {
  display: flex;
  align-items: center;
  gap: 130px;
}
@media (max-width: 1399px) {
  .breadcrumb-wrapper-4 .breadcrumb-top-items .content.style-2 {
    flex-wrap: wrap;
    gap: 30px;
  }
}
.breadcrumb-wrapper-4 .breadcrumb-top-items .content.style-2 .text h2 {
  color: var(--white) !important;
  margin-bottom: 5px;
  position: relative;
  z-index: 9;
}
.breadcrumb-wrapper-4 .breadcrumb-top-items .content.style-2 .text p {
  color: var(--white) !important;
  font-weight: 500;
  position: relative;
  z-index: 9;
}

.error-item {
  text-align: center;
}
.error-item .error-image {
  margin-bottom: 70px;
}
@media (max-width: 1399px) {
  .error-item .error-image {
    margin-bottom: 30px;
  }
}
.error-item .error-image img {
  width: 100%;
  height: 100%;
}
@media (max-width: 1399px) {
  .error-item .error-content h2 {
    font-size: 48px;
  }
}
@media (max-width: 1199px) {
  .error-item .error-content h2 {
    font-size: 35px;
  }
}
@media (max-width: 991px) {
  .error-item .error-content h2 {
    font-size: 40px;
  }
}
@media (max-width: 767px) {
  .error-item .error-content h2 {
    font-size: 35px;
  }
}
@media (max-width: 575px) {
  .error-item .error-content h2 {
    font-size: 30px;
  }
}
@media (max-width: 470px) {
  .error-item .error-content h2 {
    font-size: 25px;
  }
}
.error-item .error-content p {
  margin-top: 20px;
  margin-bottom: 30px;
}

.error-section {
  position: relative;
  margin-top: 100px;
}
@media (max-width: 991px) {
  .error-section {
    margin-top: 80px;
  }
}
.error-section .text {
  font-size: 200px;
  font-weight: 600;
  position: absolute;
  left: 60px;
  letter-spacing: -10px;
  z-index: -1;
  top: 300px;
  color: var(--header);
  opacity: 0.1;
}
@media (max-width: 1600px) {
  .error-section .text {
    font-size: 153px;
  }
}
@media (max-width: 1399px) {
  .error-section .text {
    display: none;
  }
}

::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

/* Track */
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px var(--bg);
  border-radius: 5px;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: var(--theme);
  border-radius: 10px;
}

.fix {
  overflow: hidden;
}

.ralt {
  position: relative;
}

.ripple {
  position: relative;
}
.ripple::before, .ripple::after {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 50px;
  height: 50px;
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(255, 193, 7, 0.6);
  -webkit-animation: rippleOne 3s infinite;
  animation: rippleOne 3s infinite;
}
.ripple::before {
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
}
.ripple::after {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
}

.swiper-dot .swiper-pagination-bullet {
  width: 5px;
  height: 5px;
  transition: 0.6s;
  background: var(--white);
  opacity: 1;
  border-radius: 10px;
}
.swiper-dot .swiper-pagination-bullet:not(:last-child) {
  margin-right: 14px;
}
.swiper-dot .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--white);
  transition: 0.6s;
  position: relative;
}
.swiper-dot .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
  position: absolute;
  width: 21px;
  height: 21px;
  line-height: 21px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background-color: transparent;
  border: 1px solid var(--white);
  content: "";
}
.swiper-dot.style-2 .swiper-pagination-bullet {
  background: var(--theme);
}
.swiper-dot.style-2 .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: var(--theme);
}
.swiper-dot.style-2 .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
  border: 1px solid var(--theme);
}

.swiper-dot-style {
  text-align: center;
  margin-top: 70px;
}
@media (max-width: 575px) {
  .swiper-dot-style {
    margin-top: 30px;
  }
}
.swiper-dot-style .swiper-pagination-bullet {
  width: 5px;
  height: 5px;
  transition: 0.6s;
  background: var(--theme);
  opacity: 1;
  border-radius: 10px;
}
.swiper-dot-style .swiper-pagination-bullet:not(:last-child) {
  margin-right: 14px;
}
.swiper-dot-style .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--theme);
  transition: 0.6s;
  position: relative;
}
.swiper-dot-style .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
  position: absolute;
  width: 21px;
  height: 21px;
  line-height: 21px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background-color: transparent;
  border: 1px solid var(--theme);
  content: "";
}

.swiper-dot-style-2 {
  text-align: center;
  margin-top: 70px;
}
@media (max-width: 1399px) {
  .swiper-dot-style-2 {
    margin-top: 30px;
  }
}
.swiper-dot-style-2 .swiper-pagination-bullet {
  width: 5px;
  height: 5px;
  transition: 0.6s;
  background: var(--header);
  opacity: 1;
  border-radius: 10px;
}
.swiper-dot-style-2 .swiper-pagination-bullet:not(:last-child) {
  margin-right: 14px;
}
.swiper-dot-style-2 .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--theme);
  transition: 0.6s;
  position: relative;
}
.swiper-dot-style-2 .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
  position: absolute;
  width: 21px;
  height: 21px;
  line-height: 21px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background-color: transparent;
  border: 1px solid var(--theme);
  content: "";
}

.bg-cover {
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  background-position: center;
}

.slide-transtion {
  -webkit-transition-timing-function: linear;
  transition-timing-function: linear;
}

.brand-slide-element {
  width: auto;
  display: inline-block;
}

.page-nav-wrap {
  margin-top: 60px;
}
@media (max-width: 1199px) {
  .page-nav-wrap {
    margin-top: 30px;
  }
}
.page-nav-wrap ul li {
  display: inline-block;
}
.page-nav-wrap ul li .page-numbers {
  display: inline-block;
  width: 46px;
  height: 46px;
  line-height: 46px;
  text-align: center;
  background-color: transparent;
  border: 1px solid rgba(21, 21, 21, 0.1);
  color: var(--header);
  transition: all 0.4s ease-in-out;
  border-radius: 100px;
  font-weight: 600;
  transition: all 0.3s ease-in-out;
  margin: 0 2px;
}
.page-nav-wrap ul li .page-numbers.active {
  background: var(--theme);
  color: var(--white);
}
@media (max-width: 767px) {
  .page-nav-wrap ul li .page-numbers {
    margin-top: 10px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 14px;
  }
}
.page-nav-wrap ul li .page-numbers:hover {
  background: var(--theme);
  color: var(--white);
  border: 1px solid var(--theme);
}

.sticky-style {
  position: sticky !important;
  top: 100px;
}

.custom-container {
  max-width: 1700px;
  margin: 0 auto;
}

.bw-img-anim-left,
.bw-img-anim-right {
  transition: clip-path 0.5s ease-out;
}

.custom-container {
  max-width: 1890px;
  margin: 0 auto;
}

.custom-container-2 {
  max-width: 1730px;
  margin: 0 auto;
}

.swiper-dot-3 {
  text-align: center;
  margin-top: 30px;
}
.swiper-dot-3 .swiper-pagination-bullet {
  width: 7px;
  height: 7px;
  transition: 0.6s;
  border-radius: 30px;
  background-color: var(--text);
  opacity: 1;
  position: relative;
}
.swiper-dot-3 .swiper-pagination-bullet:not(:last-child) {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 10px;
}
.swiper-dot-3 .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--theme);
  transition: 0.6s;
  position: relative;
  width: 7px;
  height: 7px;
  border-radius: 30px;
}
.swiper-dot-3 .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  width: 10px;
  height: 10px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 30px;
}

.swiper-dot-4 {
  text-align: center;
  margin-top: 70px;
}
@media (max-width: 1399px) {
  .swiper-dot-4 {
    margin-top: 30px;
  }
}
.swiper-dot-4 .swiper-pagination-bullet {
  width: 7px;
  height: 7px;
  transition: 0.6s;
  border-radius: 30px;
  background-color: var(--text);
  opacity: 1;
  position: relative;
}
.swiper-dot-4 .swiper-pagination-bullet:not(:last-child) {
  margin-right: 10px;
}
.swiper-dot-4 .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--theme);
  transition: 0.6s;
  position: relative;
  width: 7px;
  height: 7px;
  border-radius: 30px;
}
.swiper-dot-4 .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  width: 10px;
  height: 10px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 30px;
}

.custom-container-4 {
  max-width: 1880px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

.custom-container-6 {
  max-width: 1720px;
  margin: 0 auto;
}

.custom-container-7 {
  max-width: 1743px;
  margin: 0 auto;
}

.ml-110 {
  margin-left: 70px;
}
@media (max-width: 1399px) {
  .ml-110 {
    margin-left: 0;
  }
}

.ratting {
  display: inline-flex;
  align-items: center;
  line-height: 1;
}
.ratting i ,.ratting .svg-icon{
  margin: 3px;
  font-size: 13px;
  color: var(--theme);
}
.ratting span {
  margin-left: 7px;
}
.ratting.style-two i ,.ratting.style-two .svg-icon{
  margin: 6px;
  font-size: 18px;
  color: var(--theme);
}

.price-filter-wrap {
  margin-top: 25px;
}

.price-filter-wrap .price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 20px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: var(--header);
}

.price-filter-wrap .price span {
  margin-right: 5px;
}

.price-filter-wrap .price input {
  padding: 0;
  border: none;
  font-size: 16px;
  font-weight: 500;
  background: transparent;
  color: var(--header);
}

.ui-widget.ui-widget-content {
  height: 5px;
  border: none;
  cursor: pointer;
  background: rgba(251, 91, 50, 0.1);
}

.ui-widget-header {
  background: var(--theme);
}

.ui-slider .ui-slider-handle {
  width: 12px;
  height: 12px;
  top: -4px;
  border: none;
  cursor: e-resize;
  border-radius: 50%;
  background: var(--theme);
}

.ui-slider .ui-slider-handle {
  position: absolute;
  z-index: 2;
  width: 18px;
  height: 18px;
  cursor: default;
  -ms-touch-action: none;
  touch-action: none;
}

.ui-slider .ui-slider-range {
  position: absolute;
  z-index: 1;
  font-size: 0.7em;
  display: block;
  border: 0;
  background-position: 0 0;
}

.ui-slider.ui-state-disabled .ui-slider-handle, .ui-slider.ui-state-disabled .ui-slider-range {
  filter: inherit;
}

.ui-slider-horizontal {
  height: 0.8em;
}

.ui-slider-horizontal .ui-slider-handle {
  top: -0.3em;
  margin-left: -0.6em;
}

.ui-slider-horizontal .ui-slider-range {
  top: 0;
  height: 100%;
}

.ui-slider-horizontal .ui-slider-range-min {
  left: 0;
}

.ui-slider-horizontal .ui-slider-range-max {
  right: 0;
}

.ui-slider-vertical {
  width: 0.8em;
  height: 100px;
}

.ui-slider-vertical .ui-slider-handle {
  left: -0.3em;
  margin-left: 0;
  margin-bottom: -0.6em;
}

.ui-slider-vertical .ui-slider-range {
  left: 0;
  width: 100%;
}

.ui-slider-vertical .ui-slider-range-min {
  bottom: 0;
}

.ui-slider-vertical .ui-slider-range-max {
  top: 0;
}

.ui-sortable-handle {
  -ms-touch-action: none;
  touch-action: none;
}

.ui-spinner {
  position: relative;
  display: inline-block;
  overflow: hidden;
  padding: 0;
  vertical-align: middle;
}

.ui-spinner-input {
  border: none;
  background: none;
  color: inherit;
  padding: 0.222em 0;
  margin: 0.2em 0;
  vertical-align: middle;
  margin-left: 0.4em;
  margin-right: 2em;
}

.ui-slider .ui-slider-handle:focus {
  outline: none !important;
  border: 2px solid var(--theme);
}

.slide-transtion {
  -webkit-transition-timing-function: linear;
  transition-timing-function: linear;
}

.brand-slide-element {
  width: auto;
  display: inline-block;
}

.swiper-dot-4 {
  text-align: center;
  margin-top: 60px;
  z-index: 1;
}
.swiper-dot-4 .swiper-pagination-bullet {
  width: 10px !important;
  height: 10px !important;
  transition: 0.6s;
  background: rgba(255, 255, 255, 0.3);
  opacity: 1;
  border-radius: 30px !important;
}
.swiper-dot-4 .swiper-pagination-bullet:not(:last-child) {
  margin-right: 10px;
}
.swiper-dot-4 .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--white);
  transition: 0.6s;
  position: relative;
}
.swiper-dot-4 .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
  position: absolute;
  width: 22px !important;
  height: 22px !important;
  line-height: 22px !important;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background-color: transparent;
  border: 1px solid var(--white);
  content: "";
}

.swiper-dot-7 {
  z-index: 1;
}
.swiper-dot-7 .swiper-pagination-bullet {
  width: 7px;
  height: 7px;
  transition: 0.6s;
  background: rgba(21, 21, 21, 0.2);
  opacity: 1;
  border-radius: 10px;
}
.swiper-dot-7 .swiper-pagination-bullet:not(:last-child) {
  margin-right: 10px;
}
.swiper-dot-7 .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--theme);
  transition: 0.6s;
  position: relative;
}
.swiper-dot-7 .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
  position: absolute;
  width: 21px;
  height: 21px;
  line-height: 21px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background-color: transparent;
  border: 1px solid var(--theme);
  content: "";
}

.style-fl {
  display: flex;
  align-items: center;
  gap: 60px;
  margin-left: 110px;
}
@media (max-width: 1399px) {
  .style-fl {
    gap: 30px;
    margin-left: 0;
  }
}

.hero-1 {
  position: relative;
  padding: 250px 0 70px;
  border-radius: 10px !important;
  z-index: 9;
  transition: all 0.4s ease-in-out;
}
@media (max-width: 1399px) {
  .hero-1 {
    padding: 130px 0 70px;
    margin-top: 0px;
  }
}
@media (max-width: 991px) {
  .hero-1 {
    padding: 130px 0 70px;
    margin-top: 0px;
  }
}
.hero-1 .container-fluid {
  padding: 0 130px;
}
@media (max-width: 1600px) {
  .hero-1 .container-fluid {
    padding: 0 50px;
  }
}
@media (max-width: 1399px) {
  .hero-1 .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 575px) {
  .hero-1 .container-fluid {
    padding: 0 15px;
  }
}
.hero-1 .hero-content {
  position: relative;
  z-index: 9;
}
.hero-1 .hero-content h1 {
  color: var(--white);
  margin-bottom: 20px;
}
.hero-1 .hero-content p {
  color: var(--white);
  font-size: 20px;
  font-weight: 500;
  max-width: 451px;
  line-height: 150%;
  margin-bottom: 50px;
}
@media (max-width: 1399px) {
  .hero-1 .hero-content p {
    font-size: 16px;
  }
}
.hero-1 .counter-item {
  display: flex;
  align-items: center;
  gap: 120px;
  justify-content: end;
  position: relative;
  z-index: 9;
}
@media (max-width: 1399px) {
  .hero-1 .counter-item {
    flex-wrap: wrap;
    gap: 30px;
    justify-content: start;
  }
}
.hero-1 .counter-item .content h2 {
  font-size: 36px;
  font-weight: 500;
  color: var(--white);
}
.hero-1 .counter-item .content p {
  font-weight: 500;
  color: var(--white);
}
.hero-1 .hero-bg {
  position: absolute;
  overflow: hidden;
  border-radius: 10px !important;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  transform: scale(1);
  -webkit-transition: all 8s ease-out 0s;
  -moz-transition: all 8s ease-out 0s;
  -ms-transition: all 8s ease-out 0s;
  -o-transition: all 8s ease-out 0s;
  transition: all 8s ease-out 0s;
  z-index: 9;
}
.hero-1 .hero-bg::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  border-radius: 10px !important;
  background: linear-gradient(180deg, rgba(21, 21, 21, 0) 0%, rgba(21, 21, 21, 0.7) 100%);
  z-index: -1;
}

.hero-section-1 {
  position: relative;
  margin: 0 20px;
  border-radius: 10px !important;
  overflow: hidden;
  margin-top: 135px;
}
@media (max-width: 1399px) {
  .hero-section-1 {
    margin-top: 60px;
  }
}
@media (max-width: 991px) {
  .hero-section-1 {
    margin-top: 60px;
  }
}
.hero-section-1 .swiper-dot-3 {
  position: absolute;
  right: 130px;
  top: 48%;
  transform: translateY(-50%);
  z-index: 999;
}
@media (max-width: 1600px) {
  .hero-section-1 .swiper-dot-3 {
    right: 50px;
  }
}
@media (max-width: 1399px) {
  .hero-section-1 .swiper-dot-3 {
    display: none;
  }
}
.hero-section-1 .swiper-slide.swiper-slide-active .hero-bg {
  -webkit-transform: scale(1.19);
  -moz-transform: scale(1.19);
  transform: scale(1.19);
}

.hero-2 {
  position: relative;
  padding: 230px 0 130px;
  z-index: 999;
  text-align: center;
}
@media (max-width: 1399px) {
  .hero-2 {
    padding: 190px 0 100px;
  }
}
@media (max-width: 991px) {
  .hero-2 {
    padding: 150px 0 80px;
  }
}
.hero-2 .hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  transform: scale(1);
  -webkit-transition: all 8s ease-out 0s;
  -moz-transition: all 8s ease-out 0s;
  -ms-transition: all 8s ease-out 0s;
  -o-transition: all 8s ease-out 0s;
  transition: all 8s ease-out 0s;
  z-index: 9;
}
.hero-2 .hero-bg::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: linear-gradient(180deg, rgba(21, 21, 21, 0) 14.56%, #151515 99.88%);
  z-index: -1;
}
.hero-2 .container-fluid {
  padding: 0 210px;
}
@media (max-width: 1899px) {
  .hero-2 .container-fluid {
    padding: 0 70px;
  }
}
@media (max-width: 1600px) {
  .hero-2 .container-fluid {
    padding: 0 50px;
  }
}
@media (max-width: 1399px) {
  .hero-2 .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 575px) {
  .hero-2 .container-fluid {
    padding: 0 15px;
  }
}
.hero-2 h3 {
  color: var(--white);
  font-weight: 500;
  margin-top: 40px;
  position: relative;
  z-index: 9;
}
.hero-2 h1 {
  font-size: 167px;
  font-weight: 700;
  color: var(--white);
  position: relative;
  z-index: 9;
}
@media (max-width: 1600px) {
  .hero-2 h1 {
    font-size: 153px;
  }
}
@media (max-width: 1399px) {
  .hero-2 h1 {
    font-size: 100px;
  }
}
@media (max-width: 991px) {
  .hero-2 h1 {
    font-size: 70px;
  }
}
@media (max-width: 767px) {
  .hero-2 h1 {
    font-size: 40px;
  }
}
@media (max-width: 575px) {
  .hero-2 h1 {
    font-size: 35px;
  }
}
.hero-2 .from-box {
  padding: 40px 110px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(180deg, rgba(81, 79, 79, 0.09) 0%, rgba(205, 205, 205, 0.08) 100%);
  backdrop-filter: blur(7.5px);
  margin-top: 40px;
  position: relative;
  z-index: 9;
}
@media (max-width: 1399px) {
  .hero-2 .from-box {
    padding: 30px;
  }
}
.hero-2 .from-box h3 {
  text-align: center;
  color: var(--white);
  margin-bottom: 30px;
  margin-top: 0;
  font-size: 24px;
  font-weight: 400;
}
.hero-2 .from-box .box-item-2 {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 30px;
}
@media (max-width: 991px) {
  .hero-2 .from-box .box-item-2 {
    flex-wrap: wrap;
  }
}
.hero-2 .from-box .box-item-2 .form-clt {
  position: relative;
  width: 100%;
}
.hero-2 .from-box .box-item-2 .form-clt .single-select {
  width: 100%;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  padding: 17px 20px;
  font-weight: 400;
  font-size: 15px;
  text-transform: capitalize;
  color: rgba(255, 255, 255, 0.65);
  line-height: initial;
  height: initial;
}
.hero-2 .from-box .box-item-2 .form-clt .single-select::after {
  border-bottom: 2px solid var(--white);
  border-right: 2px solid var(--white);
}
.hero-2 .from-box .box-item-2 .form-clt .single-select .list {
  width: 100%;
  color: var(--header);
}
.hero-2 .from-box .box-item-2 .form-clt .theme-btn {
  width: 100%;
  text-align: center;
  display: inline-block;
  padding: 14px 30px;
}
.hero-2 .from-box .box-item-2 .form-clt .theme-btn::after {
  background-color: var(--white);
}
.hero-2 .from-box .box-item-2 .form-clt .theme-btn:hover {
  color: var(--header);
}

.hero-section-2 {
  position: relative;
}
.hero-section-2 .swiper-slide.swiper-slide-active .hero-bg {
  -webkit-transform: scale(1.19);
  -moz-transform: scale(1.19);
  transform: scale(1.19);
}

.hero-3 {
  margin-top: 134px;
}
@media (max-width: 1399px) {
  .hero-3 {
    margin-top: 60px;
  }
}
.hero-3 .hero-image {
  position: relative;
  height: 750px;
}
@media (max-width: 1399px) {
  .hero-3 .hero-image {
    height: 650px;
  }
}
@media (max-width: 991px) {
  .hero-3 .hero-image {
    height: 550px;
  }
}
@media (max-width: 767px) {
  .hero-3 .hero-image {
    height: 400px;
  }
}
.hero-3 .hero-image::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  border-radius: 10px;
  background: rgba(20, 24, 22, 0.3);
  transition: all 0.4s ease-in-out;
  opacity: 0;
  visibility: hidden;
  z-index: 9;
}
.hero-3 .hero-image img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  object-fit: cover;
}
.hero-3 .hero-image .hero-content {
  position: absolute;
  bottom: 60px;
  left: 60px;
  transition: all 0.4s ease-in-out;
  opacity: 0;
  visibility: hidden;
  z-index: 9;
}
@media (max-width: 1600px) {
  .hero-3 .hero-image .hero-content {
    left: 30px;
    bottom: 30px;
  }
}
@media (max-width: 1399px) {
  .hero-3 .hero-image .hero-content {
    left: 20px;
    bottom: 20px;
  }
}
.hero-3 .hero-image .hero-content h2 {
  color: var(--white);
  font-size: 80px;
}
@media (max-width: 1600px) {
  .hero-3 .hero-image .hero-content h2 {
    font-size: 60px;
  }
}
@media (max-width: 1399px) {
  .hero-3 .hero-image .hero-content h2 {
    font-size: 50px;
  }
}
@media (max-width: 991px) {
  .hero-3 .hero-image .hero-content h2 {
    font-size: 40px;
  }
}
@media (max-width: 767px) {
  .hero-3 .hero-image .hero-content h2 {
    font-size: 30px;
  }
}
.hero-3 .hero-image .hero-content p {
  max-width: 516px;
  color: var(--white);
  margin-bottom: 30px;
}
@media (max-width: 1600px) {
  .hero-3 .hero-image .hero-content p {
    font-size: 15px;
  }
}
.hero-3 .hero-image .hero-box {
  background-color: var(--theme-2);
  padding: 30px 40px;
  position: absolute;
  right: 0;
  bottom: 0;
  border: 10px solid var(--white);
  border-top-left-radius: 10px;
  transition: all 0.4s ease-in-out;
  opacity: 0;
  visibility: hidden;
  z-index: 9;
}
@media (max-width: 1399px) {
  .hero-3 .hero-image .hero-box {
    display: none;
  }
}
.hero-3 .hero-image .hero-box .top-item {
  display: flex;
  align-items: center;
  gap: 35px;
  position: relative;
  padding-bottom: 50px;
  margin-bottom: 48px;
}
.hero-3 .hero-image .hero-box .top-item::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  border-radius: 10px;
  background: radial-gradient(50% 50% at 50% 50%, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0) 100%);
  bottom: 0;
  top: initial;
  height: 1px;
}
.hero-3 .hero-image .hero-box .top-item .cont h2 {
  font-size: 35px;
  font-weight: 600;
  color: var(--white);
}
.hero-3 .hero-image .hero-box .top-item .cont p {
  color: var(--white);
}
.hero-3 .hero-image .hero-box .top-item .small-image img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}
.hero-3 .hero-image .hero-box .bottom-item {
  display: flex;
  align-items: center;
  gap: 35px;
}
.hero-3 .hero-image .hero-box .bottom-item .box {
  border-radius: 10px;
  border: 2px solid var(--white);
  padding: 16px;
}
.hero-3 .hero-image .hero-box .bottom-item .box h2 {
  font-size: 40px;
  color: var(--white);
}
.hero-3 .hero-image .hero-box .bottom-item .right-content .star {
  margin-top: 10px;
  color: var(--white);
}
.hero-3 .swiper-slide.swiper-slide-active .hero-image::before {
  opacity: 1;
  visibility: visible;
}
.hero-3 .swiper-slide.swiper-slide-active .hero-image .hero-content {
  opacity: 1;
  visibility: visible;
}
.hero-3 .swiper-slide.swiper-slide-active .hero-image .hero-box {
  opacity: 1;
  visibility: visible;
}
.hero-3 .heros-slider {
  margin-left: -42%;
  margin-right: -42%;
}
@media (max-width: 1399px) {
  .hero-3 .heros-slider {
    margin-left: 0;
    margin-right: 0;
  }
}

.hero-4 {
  position: relative;
  padding: 150px 0 60px;
  min-height: 600px;
}
@media (max-width: 1399px) {
  .hero-4 {
    padding: 120px 0 100px;
    min-height: 500px;
  }
}
@media (max-width: 991px) {
  .hero-4 {
    padding: 100px 0 80px;
    min-height: 450px;
  }
}
@media (max-width: 767px) {
  .hero-4 {
    min-height: 400px;
  }
}
.hero-4::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: rgba(0, 0, 0, 0.6);
}
.hero-4 .hero-content {
  position: relative;
  margin-bottom: 30px;
}
.hero-4 .hero-content h1 {
  color: var(--white);
}
.hero-4 .hero-content p {
  color: var(--white);
  max-width: 538px;
  margin-top: 20px;
}
.hero-4 .hero-image {
  position: relative;
  height: 560px;
  border-radius: 10px;
}
@media (max-width: 1399px) {
  .hero-4 .hero-image {
    height: initial;
    min-height: 300px;
  }
}
@media (max-width: 767px) {
  .hero-4 .hero-image {
    min-height: 250px;
  }
}
.hero-4 .hero-image img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  object-fit: cover;
}
@media (max-width: 1399px) {
  .hero-4 .hero-image img {
    object-fit: initial;
  }
}
.hero-4 .from-box {
  padding: 30px 30px;
  border-radius: 10px;
  background-color: var(--white);
  position: relative;
  margin-top: -200px;
}
@media (max-width: 1399px) {
  .hero-4 .from-box {
    padding: 30px;
    margin-top: 30px;
  }
}
.hero-4 .from-box :is(h2,h5) {
  font-size: 18px;
  font-weight: 500;
}
.hero-4 .from-box .box-item-2 {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 20px;
}
@media (max-width: 991px) {
  .hero-4 .from-box .box-item-2 {
    flex-wrap: wrap;
  }
}
.hero-4 .from-box .box-item-2 .date-input {
  position: relative;
}
.hero-4 .from-box .box-item-2 .date-input input[type=date] {
  width: 100%;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 14px 15px 10px 15px;
  font-size: 15px;
  color: #555;
}
.hero-4 .from-box .box-item-2 .date-input i {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #444;
  font-size: 18px;
  pointer-events: none;
}
.hero-4 .from-box .box-item-2 .form-clt {
  position: relative;
  width: 100%;
}
.hero-4 .from-box .box-item-2 .form-clt .single-select {
  width: 100%;
  border-radius: 10px;
  border: 1px solid rgba(21, 21, 21, 0.07);
  background: rgba(255, 255, 255, 0.03);
  padding: 17px 20px;
  font-weight: 400;
  font-size: 15px;
  text-transform: capitalize;
  color: rgb(105, 105, 105);
  line-height: initial;
  height: initial;
}
.hero-4 .from-box .box-item-2 .form-clt .single-select::after {
  border-bottom: 2px solid var(--header);
  border-right: 2px solid var(--header);
}
.hero-4 .from-box .box-item-2 .form-clt .single-select .list {
  width: 100%;
  color: var(--header);
}
.hero-4 .from-box .box-item-2 .form-clt .theme-btn {
  width: 100%;
  text-align: center;
  display: inline-block;
  padding: 14px 30px;
}
.hero-4 .from-box .box-item-2 .form-clt .theme-btn::after {
  background-color: var(--header);
}
.hero-4 .from-box .box-item-2 .form-clt .theme-btn:hover {
  color: var(--white);
}

.mean-container a.meanmenu-reveal {
  display: none;
}

.mean-container .mean-nav {
  background: none;
  margin-top: 0;
}

.mean-container .mean-bar {
  padding: 0;
  min-height: auto;
  background: none;
  background: none;
}

.mean-container .mean-nav > ul {
  padding: 0;
  margin: 0;
  width: 100%;
  list-style-type: none;
  display: block !important;
}

.mean-container a.meanmenu-reveal {
  display: none !important;
}

.mean-container .mean-nav ul li a {
  display: block;
  width: 100%;
  padding: 10px 0;
  color: var(--black);
  font-size: 16px;
  font-weight: 500;
  line-height: 2;
  text-transform: capitalize !important;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2) !important;
  border: none;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "PingFang SC", "Microsoft YaHei", sans-serif;
}
.mean-container .mean-nav ul li a:hover {
  color: var(--theme);
}

.mean-container .mean-nav ul li .submenu li a {
  border-bottom: none !important;
  font-size: 14px;
  padding: 6px 0;
  color: var(--header);
}

.mean-container .mean-nav ul li a:last-child {
  border-bottom: 0;
}

.mean-container .mean-nav ul li a:hover {
  color: var(--theme);
}

.mean-container .mean-nav ul li a.mean-expand {
  margin-top: 5px;
  padding: 0 !important;
}

.mean-container .mean-nav ul li > a > i {
  display: none;
}

.mean-container .mean-nav ul li > a.mean-expand i {
  display: inline-block;
  font-size: 18px;
}

.mean-container .mean-nav > ul > li:first-child > a {
  border-top: 0;
}

.mean-container .mean-nav ul li a.mean-expand.mean-clicked i {
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transition: all 0.4s ease-in-out;
}

/* 原生 mean-expand（span + img 结构）定位：浮于父项右侧同行 */
.mean-container .mean-nav ul li {
  position: relative;
}
.mean-container .mean-nav ul li > .mean-expand {
  position: absolute;
  right: 0;
  top: 0;
  width: 44px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 3;
}
.mean-container .mean-nav ul li > .mean-expand img {
  width: 16px;
  height: 16px;
  display: block;
  pointer-events: none;
}
/* 隐藏移动菜单父项的 chevron-down 箭头（只用 +/- 展开收回）
   !important 用于覆盖 Icon 组件内联 style 的 display:inline-block */
.mean-container .mean-nav > ul > li > a > .svg-icon {
  display: none !important;
}

.mean-container .mean-nav ul li .mega-menu li a {
  height: 200px;
  width: 100%;
  padding: 0;
  border-top: 0;
  margin-bottom: 20px;
}

.news-card-items {
  margin-top: 30px;
}
.news-card-items .news-image {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}
.news-card-items .news-image span {
  position: absolute;
  right: 15px;
  top: 15px;
  background-color: var(--white);
  padding: 5px 10px;
  border-radius: 5px;
  color: var(--header);
  line-height: 1;
  z-index: 999;
}
.news-card-items .news-image::after {
  position: absolute;
  width: 200%;
  height: 0%;
  left: 50%;
  top: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%) rotate(-45deg);
  content: "";
  z-index: 1;
}
.news-card-items .news-image img {
  width: 100%;
  height: 100%;
  border-radius: 10px;

}
.news-card-items .news-content {
  margin-top: 30px;
}
.news-card-items .news-content span {
  position: relative;
  font-weight: 500;
  position: relative;
  display: inline-block;
  padding-left: 12px;
}
.news-card-items .news-content span::before {
  position: absolute;
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 20px;
  background-color: var(--text);
  top: 10px;
  left: 0;
}
.news-card-items .news-content h3 {
  margin-top: 10px;
  margin-bottom: 10px;
}
.news-card-items .news-content h3 a {
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  display: inline;
}
.news-card-items .news-content h3 a:hover {
  color: var(--theme);
  background-size: 100% 2px;
  background-image: linear-gradient(180deg, var(--theme) 0%, var(--theme) 100%);
}

.news-card-items-2 {
  margin-top: 30px;
}
.news-card-items-2 .news-image {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}
.news-card-items-2 .news-image .box {
  background-color: var(--theme);
  border-radius: 10px;
  position: absolute;
  right: 12px;
  top: 12px;
  text-align: center;
}
.news-card-items-2 .news-image .box h3 {
  font-size: 30px;
  font-weight: 600;
  line-height: normal;
  color: var(--white);
}
.news-card-items-2 .news-image .box h6 {
  font-weight: 600;
  font-size: 16px;
  color: var(--white);
  padding: 10px;
  padding: 0 10px 10px 10px;
}
@media (max-width: 1399px) {
  .news-card-items-2 .news-image {
    height: 400px;
  }
}
@media (max-width: 575px) {
  .news-card-items-2 .news-image {
    height: initial;
  }
}
.news-card-items-2 .news-image span {
  position: absolute;
  right: 15px;
  top: 15px;
  background-color: var(--white);
  padding: 5px 10px;
  border-radius: 5px;
  color: var(--header);
  line-height: 1;
  z-index: 999;
}
.news-card-items-2 .news-image::after {
  position: absolute;
  width: 200%;
  height: 0%;
  left: 50%;
  top: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%) rotate(-45deg);
  content: "";
  z-index: 1;
}
.news-card-items-2 .news-image img {
  width: 100%;
  height: 100%;
  border-radius: 10px;

}
.news-card-items-2 .news-content {
  margin-top: 30px;
}
.news-card-items-2 .news-content span {
  position: relative;
  font-weight: 500;
  position: relative;
  display: inline-block;
  padding-left: 12px;
}
.news-card-items-2 .news-content span::before {
  position: absolute;
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 20px;
  background-color: var(--text);
  top: 10px;
  left: 0;
}
.news-card-items-2 .news-content h3 {
  margin-top: 10px;
  margin-bottom: 10px;
}
.news-card-items-2 .news-content h3 a {
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  display: inline;
}
.news-card-items-2 .news-content h3 a:hover {
  color: var(--theme);
  background-size: 100% 2px;
  background-image: linear-gradient(180deg, var(--theme) 0%, var(--theme) 100%);
}


.preloader {
  align-items: center;
  cursor: default;
  display: flex;
  height: 100%;
  justify-content: center;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 9999999;
}
.preloader .animation-preloader {
  z-index: 1000;
}
.preloader .animation-preloader .spinner {
  animation: spinner 1s infinite linear;
  border-radius: 50%;
  border: 3px solid rgba(0, 0, 0, 0.2);
  border-top-color: var(--theme);
  height: 9em;
  margin: 0 auto 3.5em auto;
  width: 9em;
}
@media (max-width: 767px) {
  .preloader .animation-preloader .spinner {
    width: 7.5em;
    height: 7.5em;
    margin: 0 auto 1.5em auto;
  }
}
.preloader .animation-preloader .txt-loading {
  font: bold 5em -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "PingFang SC", "Microsoft YaHei", sans-serif;
  text-align: center;
  user-select: none;
}
@media (max-width: 767px) {
  .preloader .animation-preloader .txt-loading {
    font-size: 2.5em;
  }
}
.preloader .animation-preloader .txt-loading .letters-loading {
  color: var(--theme);
  position: relative;
}
.preloader .animation-preloader .txt-loading .letters-loading:nth-child(2):before {
  animation-delay: 0.2s;
}
.preloader .animation-preloader .txt-loading .letters-loading:nth-child(3):before {
  animation-delay: 0.4s;
}
.preloader .animation-preloader .txt-loading .letters-loading:nth-child(4):before {
  animation-delay: 0.6s;
}
.preloader .animation-preloader .txt-loading .letters-loading:nth-child(5):before {
  animation-delay: 0.8s;
}
.preloader .animation-preloader .txt-loading .letters-loading:nth-child(6):before {
  animation-delay: 1s;
}
.preloader .animation-preloader .txt-loading .letters-loading:nth-child(7):before {
  animation-delay: 1.2s;
}
.preloader .animation-preloader .txt-loading .letters-loading:nth-child(8):before {
  animation-delay: 1.4s;
}
.preloader .animation-preloader .txt-loading .letters-loading::before {
  animation: letters-loading 4s infinite;
  color: var(--header);
  content: attr(data-text-preloader);
  left: 0;
  opacity: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "PingFang SC", "Microsoft YaHei", sans-serif;
  position: absolute;
  top: -3px;
  transform: rotateY(-90deg);
}
.preloader p {
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 8px;
  color: var(--theme);
}
.preloader .loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-size: 0;
  z-index: 1;
  pointer-events: none;
}
.preloader .loader .row {
  height: 100%;
}
.preloader .loader .loader-section {
  padding: 0px;
}
.preloader .loader .loader-section .bg {
  background-color: var(--bg);
  height: 100%;
  left: 0;
  width: 100%;
  transition: all 800ms cubic-bezier(0.77, 0, 0.175, 1);
}
.preloader.loaded .animation-preloader {
  opacity: 0;
  transition: 0.3s ease-out;
}
.preloader.loaded .loader-section .bg {
  width: 0;
  transition: 0.7s 0.3s allcubic-bezier(0.1, 0.1, 0.1, 1);
}

.back-to-top {
  background-color: var(--theme);
  width: 50px;
  height: 50px;
  line-height: 40px;
  color: var(--white);
  font-size: 16px;
  border-radius: 50%;
  position: fixed;
  display: inline-block;
  z-index: 9999;
  right: 30px;
  bottom: 30px;
  transition: all 0.4s ease-in-out;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
}
@media (max-width: 575px) {
  .back-to-top {
    display: none;
  }
}
.back-to-top:hover {
  background-color: var(--header);
  color: var(--bg);
}
.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translate(0);
}

.cursor-outer {
  -webkit-margin-start: -12px;
  margin-inline-start: -12px;
  margin-top: -12px;
  width: 30px;
  height: 30px;
  border: 1px solid var(--theme);
  background-color: var(--theme);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  z-index: 10000000;
  opacity: 0.34;
  -webkit-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
}

.cursor-outer.cursor-hover {
  opacity: 0.14;
}

.cursor-outer.cursor-big {
  opacity: 0;
}

.mouseCursor {
  position: fixed;
  top: 0;
  inset-inline-start: 0;
  inset-inline-end: 0;
  bottom: 0;
  pointer-events: none;
  border-radius: 50%;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  visibility: hidden;
  text-align: center;
}

.mouseCursor.cursor-big {
  width: 20px;
  height: 20px;
  -webkit-margin-start: -12px;
  margin-inline-start: -12px;
  margin-top: -12px;
}

.cursor-inner {
  -webkit-margin-start: -3px;
  margin-inline-start: -3px;
  margin-top: -3px;
  width: 10px;
  height: 10px;
  z-index: 10000001;
  background-color: var(--theme);
  opacity: 1;
  -webkit-transition: all 0.24s ease-out 0s;
  transition: all 0.24s ease-out 0s;
}
.cursor-inner span {
  color: var(--text);
  line-height: 60px;
  opacity: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 12px;
}

.cursor-inner.cursor-big span {
  opacity: 1;
}

.cursor-inner.cursor-hover {
  -webkit-margin-start: -10px;
  margin-inline-start: -10px;
  margin-top: -10px;
  width: 30px;
  height: 30px;
  background-color: var(--theme);
  border: 1px solid #686363;
  opacity: 0;
}

.search-popup {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -2;
  -webkit-transition: all 1s ease;
  -khtml-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -ms-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}

.search-popup__overlay {
  position: fixed;
  width: 224vw;
  height: 224vw;
  top: calc(90px - 112vw);
  right: calc(50% - 112vw);
  z-index: 3;
  display: block;
  -webkit-border-radius: 50%;
  -khtml-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  -webkit-transform: scale(0);
  -khtml-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transform: scale(0);
  -webkit-transform-origin: center;
  transform-origin: center;
  -webkit-transition: transform 0.8s ease-in-out;
  -khtml-transition: transform 0.8s ease-in-out;
  -moz-transition: transform 0.8s ease-in-out;
  -ms-transition: transform 0.8s ease-in-out;
  -o-transition: transform 0.8s ease-in-out;
  transition: transform 0.8s ease-in-out;
  transition-delay: 0s;
  transition-delay: 0.3s;
  -webkit-transition-delay: 0.3s;
  background-color: #000000;
  opacity: 0.7;
  cursor: url(../../assets/img/close.png), auto;
}

@media (max-width: 767px) {
  .search-popup__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transform: none;
    width: 100%;
    height: 100%;
    border-radius: 0;
    transform: translateY(-110%);
  }
}
.search-popup__content {
  position: fixed;
  width: 0;
  max-width: 560px;
  padding: 30px 15px;
  left: 50%;
  top: 50%;
  opacity: 0;
  z-index: 3;
  -webkit-transform: translate(-50%, -50%);
  -khtml-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: opacity 0.5s 0s, width 0.8s 0.8s cubic-bezier(0.225, 0.01, 0.475, 1.01), transform 0.2s 0s;
  -khtml-transition: opacity 0.5s 0s, width 0.8s 0.8s cubic-bezier(0.225, 0.01, 0.475, 1.01), transform 0.2s 0s;
  -moz-transition: opacity 0.5s 0s, width 0.8s 0.8s cubic-bezier(0.225, 0.01, 0.475, 1.01), transform 0.2s 0s;
  -ms-transition: opacity 0.5s 0s, width 0.8s 0.8s cubic-bezier(0.225, 0.01, 0.475, 1.01), transform 0.2s 0s;
  -o-transition: opacity 0.5s 0s, width 0.8s 0.8s cubic-bezier(0.225, 0.01, 0.475, 1.01), transform 0.2s 0s;
  transition: opacity 0.5s 0s, width 0.8s 0.8s cubic-bezier(0.225, 0.01, 0.475, 1.01), transform 0.2s 0s;
  transition-delay: 0s, 0.8s, 0s;
  transition-delay: 0s, 0.4s, 0s;
  transition-delay: 0.2s;
  -webkit-transition-delay: 0.2s;
}

.search-popup__form {
  position: relative;
}

.search-popup__form input[type=search],
.search-popup__form input[type=text] {
  width: 100%;
  height: 66px;
  border: none;
  outline: none;
  padding-left: 20px;
  background-color: var(--white);
  font-size: 16px;
  font-weight: 400;
  color: var(--text);
  transition: all 500ms ease;
}

.search-popup__form input[type=search]:focus,
.search-popup__form input[type=text]:focus {
  color: var(--header);
}

.search-popup__form .search-btn {
  padding: 0;
  width: 66px;
  height: 66px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  right: -1px;
  border-radius: 0;
  font-size: 20px;
  color: var(--white);
  background-color: var(--theme);
  transition: all 0.4s ease-in-out;
}
.search-popup__form .search-btn:hover {
  background-color: var(--black);
}

.search-popup__form .eolexi-btn svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}

.search-popup.active {
  z-index: 9999;
}

.search-popup.active .search-popup__overlay {
  top: auto;
  bottom: calc(90px - 112vw);
  -webkit-transform: scale(1);
  -khtml-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  transition-delay: 0s;
  -webkit-transition-delay: 0s;
  opacity: 0.7;
  -webkit-transition: transform 1.6s cubic-bezier(0.4, 0, 0, 1);
  -khtml-transition: transform 1.6s cubic-bezier(0.4, 0, 0, 1);
  -moz-transition: transform 1.6s cubic-bezier(0.4, 0, 0, 1);
  -ms-transition: transform 1.6s cubic-bezier(0.4, 0, 0, 1);
  -o-transition: transform 1.6s cubic-bezier(0.4, 0, 0, 1);
  transition: transform 1.6s cubic-bezier(0.4, 0, 0, 1);
}

@media (max-width: 767px) {
  .search-popup.active .search-popup__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transform: none;
    width: 100%;
    height: 100%;
    border-radius: 0;
    transform: translateY(0%);
  }
}
.search-popup.active .search-popup__content {
  width: 100%;
  opacity: 1;
  transition-delay: 0.7s;
  -webkit-transition-delay: 0.7s;
}

.section-title {
  position: relative;
  z-index: 99;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .section-title {
    margin-bottom: 0;
  }
}
.section-title .sub-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--theme);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "PingFang SC", "Microsoft YaHei", sans-serif;
  margin-bottom: 20px;
  text-transform: uppercase;
  line-height: 1;
  display: inline-block;
  position: relative;
}
@media (max-width: 1399px) {
  .section-title .sub-title {
    font-size: 16px;
  }
}
.section-title .sub-title img {
  margin-right: 6px;
}
.section-title .sub-title img.image-2 {
  margin-left: 6px;
}
.section-title h2 span {
  color: var(--theme);
  border-bottom: 4px solid var(--theme);
  font-weight: 600;
}
.section-title h2 b {
  color: var(--theme);
  font-weight: 600;
}
.section-title h2 b.color {
  color: var(--theme-2);
}
@media (max-width: 991px) {
  .section-title h2 br {
    display: none;
  }
}
.section-title p {
  margin-top: 10px;
}
@media (max-width: 1399px) {
  .section-title p br {
    display: none;
  }
}
.section-title p span {
  color: var(--theme);
}
.section-title p span.color-4 {
  color: var(--theme-2);
}
.section-title p b {
  color: var(--theme);
}

.section-title-area {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 9;
  margin-bottom: 30px;
}
.section-title-area .section-title {
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .section-title-area {
    flex-wrap: wrap;
    gap: 30px;
  }
}
@media (max-width: 767px) {
  .section-title-area {
    margin-bottom: 0;
  }
}

.center {
  text-align: center;
  margin: 0 auto;
}

.section-bg {
  background-color: var(--bg);
}

.section-bg-1 {
  background-color: var(--bg);
}

.header-bg {
  background-color: var(--header);
}

.bg-color {
  background-color: #FEF8EF;
}

.bg-color-4 {
  background-color: var(--bg-2);
}

.bg-color-5 {
  background-color: #141816;
}

.section-padding {
  padding: 100px 0;
}
@media (max-width: 1199px) {
  .section-padding {
    padding: 100px 0;
  }
}
@media (max-width: 991px) {
  .section-padding {
    padding: 80px 0;
  }
}

.team-image-item {
  text-align: center;
  margin-top: 30px;
}
.team-image-item .team-image {
  position: relative;
  overflow: hidden;
  border-radius: 100%;
  aspect-ratio: 1/1;
  max-width: 400px;
  margin: 0 auto;
}
.team-image-item .team-image img {
  border-radius: 100%;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 575px) {
  .team-image-item .team-image img {
    width: 100%;
    height: 100%;
  }
}
.team-image-item .team-content {
  margin-top: 30px;
}
.team-image-item .team-content h3 a {
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  display: inline;
}
.team-image-item .team-content h3 a:hover {
  color: var(--theme);
  background-size: 100% 2px;
  background-image: linear-gradient(180deg, var(--theme) 0%, var(--theme) 100%);
}

.team-single-item {
  text-align: center;
  margin-top: 30px;
  border-radius: 150px;
  border: 1px solid rgba(21, 21, 21, 0.1);
  padding: 10px 10px 50px;
  position: relative;
}
@media (max-width: 1399px) {
  .team-single-item {
    padding: 10px 10px 30px;
  }
}
.team-single-item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--header);
  border-radius: 150px;
  z-index: -1;
  transform: scale(1, 0);
  transition: transform 500ms ease;
  transform-origin: bottom center;
}
.team-single-item .team-image {
  position: relative;
  border-radius: 100%;
}
.team-single-item .team-image .icon {
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  border-radius: 100px;
  background-color: var(--theme);
  color: var(--white);
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 999;
}
.team-single-item .team-image img {
  border-radius: 100%;

}
@media (max-width: 1399px) {
  .team-single-item .team-image img {
    width: 100%;
    height: 100%;
  }
}
@media (max-width: 575px) {
  .team-single-item .team-image img {
    width: initial;
    height: initial;
  }
}
.team-single-item .team-content {
  margin-top: 30px;
  position: relative;
  z-index: 99;
}
.team-single-item .team-content h3 a {
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  display: inline;
}
.team-single-item .team-content h3 a:hover {
  color: var(--theme);
  background-size: 100% 2px;
  background-image: linear-gradient(180deg, var(--theme) 0%, var(--theme) 100%);
}
.team-single-item:hover::after {
  transform: scale(1, 1);
  transform-origin: top center;
}
.team-single-item:hover .team-content h3 a {
  color: var(--white);
}
.team-single-item:hover .team-content p {
  color: var(--white);
}

.team-details-wrapper .team-details-image img {
  width: 100%;
  height: 100%;
  border-radius: 12px;
}
.team-details-wrapper .team-details-content {
  margin-left: 40px;
}
@media (max-width: 991px) {
  .team-details-wrapper .team-details-content {
    margin-left: 0;
  }
}
.team-details-wrapper .team-details-content .details-info {
  border-bottom: 1px solid var(--border);
  padding-bottom: 20px;
  margin-bottom: 20px;
}
.team-details-wrapper .team-details-content .details-info h3 {
  margin-bottom: 5px;
}
.team-details-wrapper .team-details-content .details-info span {
  color: var(--text);
}
.team-details-wrapper .team-details-content .progress-wrap .pro-items {
  width: 100%;
}
.team-details-wrapper .team-details-content .progress-wrap .pro-items:not(:last-child) {
  margin-bottom: 30px;
}
.team-details-wrapper .team-details-content .progress-wrap .pro-items .pro-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.team-details-wrapper .team-details-content .progress-wrap .pro-items .pro-head .title {
  font-size: 16px;
  font-weight: 500;
  color: var(--black);
}
.team-details-wrapper .team-details-content .progress-wrap .pro-items .pro-head .point {
  font-size: 16px;
  color: var(--black);
  font-weight: 600;
}
.team-details-wrapper .team-details-content .progress-wrap .pro-items .progress {
  height: 12px;
}
.team-details-wrapper .team-details-content .progress-wrap .pro-items .progress .progress-bar {
  background-color: var(--theme);
}
.team-details-wrapper .team-details-content .social-icon {
  margin-top: 40px;
}
.team-details-wrapper .team-details-content .social-icon span {
  font-size: 16px;
  font-weight: 700;
  color: var(--header);
  margin-right: 15px;
}
.team-details-wrapper .team-details-content .social-icon a {
  width: 36px;
  height: 36px;
  line-height: 36px;
  text-align: center;
  border: 1px solid var(--border);
  display: inline-block;
  color: var(--text);
  transition: all 0.4s ease-in-out;
  border-radius: 5px;
}
.team-details-wrapper .team-details-content .social-icon a:not(:last-child) {
  margin-right: 5px;
}
.team-details-wrapper .team-details-content .social-icon a:hover {
  background-color: var(--theme);
  color: var(--white);
  border: 1px solid transparent;
}
.team-details-wrapper .team-single-history .title {
  border-bottom: 1px solid var(--border);
  padding-bottom: 30px;
}
.team-details-wrapper .team-single-history h5 {
  font-weight: 500;
}
.team-details-wrapper .team-single-history h5 span {
  border: 1px solid var(--theme);
  color: var(--theme);
  font-size: 14px;
  font-weight: 400;
  padding: 6px 16px;
  border-radius: 16px;
  margin-left: 20px;
}

.team-card-items-4 {
  position: relative;
  overflow: visible;
  z-index: 1;
  transition: z-index 0.3s ease;
}
.team-card-items-4 .team-image {
  height: 300px;
  position: relative;
}
.team-card-items-4 .team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.3s ease, height 0.3s ease;
  transform-origin: top;
}
.team-card-items-4 .team-content {
  margin-top: 30px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
}
.team-card-items-4 .team-content h3 a {
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  display: inline;
}
.team-card-items-4 .team-content h3 a:hover {
  color: var(--theme);
  background-size: 100% 2px;
  background-image: linear-gradient(180deg, var(--theme) 0%, var(--theme) 100%);
}
.team-card-items-4:hover {
  z-index: 10;
}
.team-card-items-4:hover .team-content {
  opacity: 1;
  visibility: visible;
}

/* FA6 图标已全部迁移为 SVG，字体补丁规则已移除 */

/* 背景图响应式：按屏幕宽度加载不同尺寸 */
.hero-section.hero-4{background-image:url(/images/hero/hero-bg.webp)}
[data-bg="bg-1"]{background-image:url(/images/breadcrumb/bg-1.webp)}
[data-bg="bg-2"]{background-image:url(/images/breadcrumb/bg-2.webp)}
[data-bg="bg-3"]{background-image:url(/images/breadcrumb/bg-3.webp)}
@media(max-width:430px){
.hero-section.hero-4{background-image:url(/images/hero/hero-bg-400w.webp)}
.video-section-2.bg-cover{background-image:url(/images/video/roamfun-about-400w.webp)!important}
[data-bg="bg-1"]{background-image:url(/images/breadcrumb/bg-1-400w.webp)}
[data-bg="bg-2"]{background-image:url(/images/breadcrumb/bg-2-400w.webp)}
[data-bg="bg-3"]{background-image:url(/images/breadcrumb/bg-3-400w.webp)}
.feature-section-2.bg-cover{background-image:url(/images/adventure/camping-400w.webp)!important}
.cta-box{background-image:linear-gradient(rgba(0,0,0,.6),rgba(0,0,0,.6)),url(/images/adventure/camping-400w.webp)!important}
}


/* === Nice Select 基础样式（合并自 nice-select.css） === */
.nice-select {
  -webkit-tap-highlight-color: transparent;
  background-color: #fff;
  border-radius: 5px;
  border: 1px solid  #CCCCCC;
  box-sizing: border-box;
  clear: both;
  cursor: pointer;
  display: block;
  float: left;
  color: #6E6E6E;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26.08px;
  height: initial;
  outline: none;
  padding: 0px 10px;
  position: relative;
  text-align: left !important;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  white-space: nowrap;
  width: auto;
}
.nice-select:hover { border-color: #6E6E6E; }
.nice-select:active, .nice-select.open, .nice-select:focus { border-color: #6E6E6E; }
.nice-select:after {
  border-bottom: 2px solid #6E6E6E;
  border-right: 2px solid #6E6E6E;
  content: '';
  display: block;
  height: 5px;
  margin-top: -4px;
  pointer-events: none;
  position: absolute;
  right: 12px;
  top: 50%;
  -webkit-transform-origin: 66% 66%;
  -ms-transform-origin: 66% 66%;
  transform-origin: 66% 66%;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
  width: 5px;
}
.nice-select.open:after {
  -webkit-transform: rotate(-135deg);
  -ms-transform: rotate(-135deg);
  transform: rotate(-135deg);
}
.nice-select.open .list {
  opacity: 1;
  pointer-events: auto;
  -webkit-transform: scale(1) translateY(0);
  -ms-transform: scale(1) translateY(0);
  transform: scale(1) translateY(0);
}
.nice-select.disabled { border-color: #6E6E6E; color: #6E6E6E; pointer-events: none; }
.nice-select.disabled:after { border-color: #6E6E6E; }
.nice-select.wide { width: 100%; }
.nice-select.wide .list { left: 0 !important; right: 0 !important; }
.nice-select.right { float: right; }
.nice-select.right .list { left: auto; right: 0; }
.nice-select.small { font-size: 12px; height: 36px; line-height: 34px; }
.nice-select.small:after { height: 4px; width: 4px; }
.nice-select.small .option { line-height: 34px; min-height: 34px; }
.nice-select .list {
  background-color: #fff;
  border-radius: 5px;
  box-shadow: 0 0 0 1px rgba(68, 68, 68, 0.11);
  box-sizing: border-box;
  margin-top: 4px;
  opacity: 0;
  overflow: hidden;
  padding: 0;
  pointer-events: none;
  position: absolute;
  top: 100%;
  left: 0;
  -webkit-transform-origin: 50% 0;
  -ms-transform-origin: 50% 0;
  transform-origin: 50% 0;
  -webkit-transform: scale(0.75) translateY(-21px);
  -ms-transform: scale(0.75) translateY(-21px);
  transform: scale(0.75) translateY(-21px);
  -webkit-transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
  transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
  z-index: 9;
}
.nice-select .list:hover .option:not(:hover) { background-color: transparent !important; }
.nice-select .option {
  cursor: pointer;
  font-weight: 400;
  line-height: 40px;
  list-style: none;
  min-height: 40px;
  outline: none;
  padding-left: 18px;
  padding-right: 29px;
  text-align: left;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.nice-select .option:hover, .nice-select .option.focus, .nice-select .option.selected.focus { background-color: #f6f6f6; }
.nice-select .option.selected { font-weight: bold; }
.nice-select .option.disabled { background-color: transparent; color: #999; cursor: default; }
.no-csspointerevents .nice-select .list { display: none; }
.no-csspointerevents .nice-select.open .list { display: block; }


