/* Company Name: Nanoit
    Project Name: Digency
    Author: Nanoit
    Version: 1.0
    Created: 2024-10-06
    Description: This is a digital agency website template.
    License: Your License Information
*/

/* Digency  HTML Template*/

/* 01 - Fonts   
   02 - Main Header      
   03 - Hero Section     
   04 - Video Section        
   05 - About Section            
   06 - service Section            
   07 - Project Section / four Item Carousel    
   08 - Project Section     
   09 - Team Section  
   10 - Testimonial Section 
   11 - Contact Section         
   12 - Footer Style */

* {
  margin: 0px;
  padding: 0px;
  border: none;
  outline: none;
}


/***
  
  ====================================================================
    Global Settings
  ====================================================================
  
   ***/

body {
  font-family: "Kanit", sans-serif;
  font-size: 14px;
  /* color: var(--text_white); */
  /* color: #d4d3d3; */
  line-height: 100%;
  font-weight: 400;
  background-color: var(--bg_white);
  -webkit-font-smoothing: antialiased;
  -moz-font-smoothing: antialiased;
}

html {
  scroll-behavior: smooth;
}

a {
  text-decoration: none;
  cursor: pointer;
  color: #333333;
}

button {
  cursor: pointer;
  text-decoration: none;
  outline: none !important;
}

a:hover,
a:focus,
a:visited {
  text-decoration: none;
  outline: none !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  position: relative;
  font-weight: normal;
  margin: 0px;
  background: none;
  font-family: "Kanit", sans-serif;
}

/* Typography */

h1 {
  font-size: 84px;
  line-height: 100%;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

h2 {
  font-size: 48px;
  line-height: 1.1;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

h3 {
  font-size: 30px;
  line-height: 1.2;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

h4 {
  font-size: 24px;
  line-height: 1.5;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

h5 {
  font-size: 20px;
  line-height: 1.2;
}

h6 {
  font-size: 18px;
  line-height: 1.7;
}

textarea {
  overflow: hidden;
}

p {
  position: relative;
  line-height: 1.6em;
  font-size: 18px;
  text-align: justify;
  text-justify: inter-word;
}

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

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

/* click to action (cta) button start */
.cta-btn {
  background-color: var(--bg_primary);
  padding: 12px 0;
  font-size: 20px;
  font-family: "Kanit";
  color: var(--text_white);
}

/* click to action (cta) button  end*/

/* play button start */
.play-btn {
  height: 60px;
  width: 60px;
  border-radius: 50%;
  color: var(--text_white);
  background-color: var(--bg_primary);
  cursor: pointer;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 20px rgba(255, 165, 0, 0.8);
  transition: all 0.3s ease;
  animation: glow 2s infinite;
}

@keyframes glow {
  0% {
    box-shadow: 0 0 10px rgba(255, 165, 0, 0.6), 0 0 20px rgba(255, 165, 0, 0.4);
  }

  50% {
    box-shadow: 0 0 20px rgba(255, 165, 0, 0.8), 0 0 40px rgba(255, 165, 0, 0.6);
  }

  100% {
    box-shadow: 0 0 10px rgba(255, 165, 0, 0.6), 0 0 20px rgba(255, 165, 0, 0.4);
  }
}

/* play button end */

:root {
  /* bg-color */

  /* --bg_primary: #fdb511;
  --bg_dark-secondary: #363636;
  --bg_dark-third: #3c3535;

  --bg-danger: #ff7f47;
  --text-danger: #ff7f47;
  --text-primary: #003586; */

  /* text-color */

  --text_primary: #003586;
  --text_secondary: #777777;

  /* ------------------------ */
  --bg-primary: #003586;
  --bg_white: #ffffff;
  --bg_dark: #000;

  --text_white: #ffffff;
  --text-primary: #003586;
  --text_dark: #000;
}

.sptb {
  padding: 120px 0;
}

.spt {
  padding-top: 120px;
}

.spb {
  padding-bottom: 120px;
}

/* header start */
header .nav-container {
  width: 100%;
  position: fixed;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  z-index: 9999;
}

header .nav-container .navbar-nav .nav-link.active {
  /* border-bottom: 2px solid #ff7f47; */
  color: white;
}

header .nav-container .navbar-light .navbar-brand {
  color: #fff;
}

header .scrolled {
  padding: 0;
  background-color: #fff;
}

header .scrolled .navbar-light .navbar-nav .nav-link {
  color: black;
}

header .scrolled .navbar-light .navbar-nav .nav-link:hover {
  color: rgb(89, 84, 84);
}

header .scrolled .navbar-light .navbar-nav .nav-link.active {
  color: black !important;
}

header .scrolled .navbar-light .navbar-brand {
  color: black;
}

header .navbar-light .navbar-nav .nav-link {
  color: #fff;
}

header .navbar-light .navbar-nav .nav-link:hover {
  color: #beb6b6;
}

header .navbar-light .navbar-toggler {
  padding: 0.25rem 0.75rem;
  font-size: 1.25rem;
  line-height: 1;
  background-color: white;
  border: 1px solid transparent;
  border-radius: 0.25rem;
  transition: box-shadow 0.15s ease-in-out;
}

header .navbar-light .navbar-toggler {
  color: rgb(255, 255, 255);
  border-color: rgb(255, 255, 255);
}

/* Remove border from toggler */
header .navbar-toggler {
  border: 0 !important;
}

header .navbar-toggler:focus,
header .navbar-toggler:active,
header .navbar-toggler-icon:focus {
  outline: none !important;
  box-shadow: none !important;
  border: 0 !important;
}

/* Lines of the Toggler */
header .toggler-icon {
  width: 30px;
  height: 3px;
  background-color: #e74c3c;
  display: block;
  transition: all 0.2s;
}

/* Adds Space between the lines */
header .middle-bar {
  margin: 5px auto;
}

/* State when navbar is opened (START) */
header .navbar-toggler .top-bar {
  transform: rotate(45deg);
  transform-origin: 10% 10%;
}

header .navbar-toggler .middle-bar {
  opacity: 0;
  filter: alpha(opacity=0);
}

header .navbar-toggler .bottom-bar {
  transform: rotate(-45deg);
  transform-origin: 10% 90%;
}

/* State when navbar is opened (END) */

/* State when navbar is collapsed (START) */
header .navbar-toggler.collapsed .top-bar {
  transform: rotate(0);
}

header .navbar-toggler.collapsed .middle-bar {
  opacity: 1;
  filter: alpha(opacity=100);
}

header .navbar-toggler.collapsed .bottom-bar {
  transform: rotate(0);
}

/* State when navbar is collapsed (END) */

/* Color of Toggler when collapsed */
header .navbar-toggler.collapsed .toggler-icon {
  background-color: #777777;
}

/* header end */
/* breadcrumb start */
#breadcrumb {
  background-image: url("../image/breadcrumb-bg.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 120px 0;
}

#breadcrumb h6 a {
  color: var(--text_primary);
  color: #ffffff;
}

/* breadcrumb end */
/* swiper slider start */
.swiper-container {
  width: 100%;
  /* height: 300px; */
  overflow: hidden;
  display: block;
}

.destinationSlider .swiper-slide {
  background: #fdb511;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.5rem;
}

.destinationItalySlider .swiper-slide {
  background: #fdb511;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.5rem;
}

.destinationDubaiSlider .swiper-slide {
  background: #333;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.5rem;
}

/* swiper slider end */
/* hero section start */

.book-now-btn {
  background-color: #003586;
}

.book-now-btn:hover {
  background-color: #FFD700;
  background-color: #ffc107;
}

.hero-form {
  height: 150px;
  z-index: 9;
  bottom: 0px;
  background-color: var(--bg-primary);
}

.image-container {
  position: relative;
  overflow: hidden;
}

.image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.image-container img {
  position: relative;
  z-index: 0;
  /* Ensure the image is behind the overlay */
}

/* hero section end */

/* why-choose-us start */
#why-choose-us {
  margin-top: 120px;
  padding: 120px 0;
  background-color: #faf8f8;
  background-repeat: no-repeat;
  background: linear-gradient(90deg,
      rgba(0, 0, 0, 0.282) 0%,
      rgba(159, 151, 146, 0.408) 0%,
      rgba(21, 17, 1, 0.485) 35%,
      rgba(96, 104, 90, 0.43) 85%),
    url("../image/world-maps.png");
  background-size: cover;
  background-position: center center;
  background-blend-mode: multiply;
}

#why-choose-us .card {
  background-color: #003586;
  color: #ffffff;
}

/* why-choose-us end */

/* tour guide start */
#tour-guide {
  padding: 190px 0 120px;
}

@media (max-width: 991px) {
  #tour-guide {
    padding: 120px 0 0;
  }
}

#tour-guide .card {
  position: relative;
  overflow: hidden;
  border: none;
}

#tour-guide .card-img-top {
  width: 100%;
  height: auto;
}

#tour-guide .card-img-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  transition: background 0.3s ease;
  padding-left: 90%;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
}

#tour-guide .contact-btn .btn {
  background-color: var(--text-primary);
}

#tour-guide .contact-btn .btn:hover {
  background-color: #ffb32f;
}

/* #tour-guide .tour-guide-img-wrap {
  height: 250px;
} */

#tour-guide .card:hover .card-img-overlay {
  opacity: 1;
}

#tour-guide .btn-contact {
  background-color: #fff;
  border: none;
  color: #333;
  padding: 10px 20px;
  margin-bottom: 10px;
  font-weight: bold;
}

#tour-guide .social-icon {
  font-size: 24px;
  color: #fff;
  transition: transform 0.3s ease, opacity 0.3s ease;
  opacity: 0;
  transform: translateX(100%);
}

#tour-guide .card:hover .social-icon {
  opacity: 1;
  transform: translateX(0);
}

/* tour guide end */

/* our photos start */
#our-photos {
  background-color: #304f4721;
  padding-top: 120px;
  padding-bottom: 120px;
}

#our-photos .nav .nav-item .nav-link {
  font-size: 20px;
  border: 2px solid var(--text-primary);
  border-radius: 4px;
}

#our-photos .nav .nav-item .nav-link.active {
  background-color: var(--bg-primary);
  font-size: 20px;
  border: 2px solid var(--bg-primary);
  color: var(--text_white);
}

/* ------------img hover--------------- */
.grid {
  position: relative;
  margin: 0 auto;
  padding: 1em 0 4em;
  max-width: 1000px;
  list-style: none;
  text-align: center;
}

/* Common style */
.grid figure {
  position: relative;
  float: left;
  overflow: hidden;
  margin: 10px 1%;
  min-width: 320px;
  max-width: 480px;
  max-height: 360px;
  width: 48%;
  background: #3085a3;
  text-align: center;
  cursor: pointer;
}

.grid figure img {
  position: relative;
  display: block;
  min-height: 100%;
  max-width: 100%;
  opacity: 0.8;
}

.grid figure figcaption {
  padding: 2em;
  color: #fff;
  text-transform: uppercase;
  font-size: 1.25em;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.grid figure figcaption::before,
.grid figure figcaption::after {
  pointer-events: none;
}

.grid figure figcaption,
.grid figure figcaption>a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Anchor will cover the whole item by default */
/* For some effects it will show as a button */
.grid figure figcaption>a {
  z-index: 1000;
  text-indent: 200%;
  white-space: nowrap;
  font-size: 0;
  opacity: 0;
}

.grid figure h2 {
  word-spacing: -0.15em;
  font-weight: 300;
}

.grid figure h2 span {
  font-weight: 800;
}

.grid figure h2,
.grid figure p {
  margin: 0;
}

.grid figure p {
  letter-spacing: 1px;
  font-size: 68.5%;
}

/* Individual effects */

figure.effect-zoe figcaption {
  top: auto;
  bottom: 0;
  padding: 1em;
  height: 3.75em;
  background: #fff;
  color: #3c4a50;
  -webkit-transition: -webkit-transform 0.35s;
  transition: transform 0.35s;
  -webkit-transform: translate3d(0, 100%, 0);
  transform: translate3d(0, 100%, 0);
}

.effect-zoe:hover .overlay {
  opacity: 1;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #129ce125 !important;
}

figure.effect-zoe p.icon-links a {
  float: right;
  color: #3c4a50;
  font-size: 1.4em;
}

figure.effect-zoe:hover p.icon-links a:hover,
figure.effect-zoe:hover p.icon-links a:focus {
  color: #252d31;
}

figure.effect-zoe p.description {
  position: absolute;
  bottom: 8em;
  padding: 2em;
  color: #fff;
  text-transform: none;
  font-size: 90%;
  opacity: 0;
  -webkit-transition: opacity 0.35s;
  transition: opacity 0.35s;
  -webkit-backface-visibility: hidden;
  /* Fix for Chrome 37.0.2062.120 (Mac) */
}

figure.effect-zoe h2,
figure.effect-zoe p.icon-links a {
  -webkit-transition: -webkit-transform 0.35s;
  transition: transform 0.35s;
  -webkit-transform: translate3d(0, 200%, 0);
  transform: translate3d(0, 200%, 0);
}

figure.effect-zoe p.icon-links a span::before {
  display: inline-block;
  padding: 8px 10px;
  font-family: "feathericons";
  speak: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-eye::before {
  content: "\e000";
}

.icon-paper-clip::before {
  content: "\e001";
}

.icon-heart::before {
  content: "\e024";
}

figure.effect-zoe h2 {
  display: inline-block;
}

figure.effect-zoe:hover p.description {
  opacity: 1;
  background-color: #304f475f;
  width: 100%;
}

figure.effect-zoe:hover figcaption,
figure.effect-zoe:hover h2,
figure.effect-zoe:hover p.icon-links a {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

figure.effect-zoe:hover h2 {
  -webkit-transition-delay: 0.05s;
  transition-delay: 0.05s;
}

figure.effect-zoe:hover p.icon-links a:nth-child(3) {
  -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s;
}

figure.effect-zoe:hover p.icon-links a:nth-child(2) {
  -webkit-transition-delay: 0.15s;
  transition-delay: 0.15s;
}

figure.effect-zoe:hover p.icon-links a:first-child {
  -webkit-transition-delay: 0.2s;
  transition-delay: 0.2s;
}

/* our photos end */
/* testimonial start */
#testimonial {
  padding-top: 120px;
  padding-bottom: 120px;
}

#testimonial .title {
  padding-top: 29px;
}

#testimonial .right-bg-img {
  /* background-color: #faf8f8; */
  background-repeat: no-repeat;
  /* background: url("../images/testimonial-img-2.jpg"); */
  background-size: cover;
  background-position: center center;
  background-blend-mode: multiply;
}

/* testimonial end */
#our-package {
  padding: 120px 0;
}

#our-package .discount-title {
  font-size: 100px;
  font-weight: 600;
  color: #304f470e;
}

#our-package .tab-content .card a:hover {
  color: #003586;
}

#our-package .nav .nav-item .nav-link {
  height: 70px;
  width: 70px;
  border-radius: 50%;
  font-size: 20px;
  border: 1px solid var(--bg-primary);
}

#our-package .nav .nav-item .nav-link.active {
  background-color: var(--bg-primary) !important;
  font-size: 20px;
  border-radius: 50%;
  border: 1px solid var(--text-primary);
  color: var(--text_white);
}

#our-package .offer-day-night {
  margin-top: -18px;
  background-color: #003586;
  color: var(--text_white);
  /* border-radius: 50px 50px 0px 0px; */
  clip-path: polygon(5% 0, 95% 0, 100% 99%, 0 100%);
}

/* package-page start */
#package-page {
  padding: 120px 0;
}

#package-page .offer-day-night {
  margin-top: -18px;
  background-color: #003586;
  color: var(--text_white);
  /* border-radius: 50px 50px 0px 0px; */
  clip-path: polygon(5% 0, 95% 0, 100% 99%, 0 100%);
}

#package-page .pagination-wrap li a.active {
  background-color: #003586;
  border: 1px solid var(--primary-color);
  color: var(--text_white);
}

#package-page .pagination-wrap li {
  display: inline-block;
  margin: 0 5px;
}

#package-page .pagination-wrap.text-left li {
  margin: 0 10px 0 0;
}

#package-page .pagination-wrap li a {
  border: 1px solid #e5e5e5;
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 38px;
  text-align: center;
  color: var(--secondary-color);
  font-weight: 600;
  border-radius: 2px;
}

#package-page .pagination-wrap li a:hover {
  background-color: #003586;
  color: var(--text_white);
  opacity: 1;
  text-decoration: none;
}

/* package-page end */

/* about page start */
#about-page {
  padding: 120px 0;
}

#about-page .bg-overlay {
  background-color: rgba(255, 0, 0, 0.4);
  /* Semi-transparent red overlay */
}

#about-page .play-btn {
  font-size: 2rem;
  width: 60px;
  height: 60px;
}

#about-page .img-fluid {
  object-fit: cover;
}

#about-page h2 span {
  font-weight: bold;
}

#about-page .text-danger {
  color: #f44336;
  /* Red color for "What We Offer" */
}

#about-page h2 span {
  color: #f51111;
  /* Match red color */
}

#about-page .border {
  border: 1px solid #f51111;
  /* Match red color */
}

#about-page .rounded {
  border-radius: 8px;
}

#about-page img {
  transition: transform 0.3s ease;
}

#about-page img:hover {
  /* transform: scale(1.05); */
}

/* about page end */

/* destination start */
#destination {
  padding-top: 120px;
}

.entry {
  text-align: left;
  padding-top: 0px;
  padding-bottom: 1px;
  padding-left: 10px;
  padding-right: 10px;
  font-size: 15px;
  font-family: Book Antiqua;
  overflow: hidden;
  margin: auto;
}

#destination .destination-title-wrap {
  max-width: 60%;
}

#destination .destination-title-wrap .sub-title {
  color: var(--text_primary);
}

#destination .card .card-body a:hover {
  color: #003586;
}

#destination .card {
  overflow: hidden;
  /* Ensures the image doesn't overflow outside the card */
  transition: transform 0.3s ease-in-out;
}

#destination .card-img-container {
  overflow: hidden;
  /* Ensures smooth scaling within the card */
}

#destination .card-img-top {
  transition: transform 0.3s ease-in-out;
}

#destination .card:hover .card-img-top {
  transform: scale(1.1);
  /* Scales the image on hover */
}

/* destination end */
/* destination-page start */
#destination-page {
  padding: 120px 0;
}

#destination-page .destination-title-wrap {
  max-width: 60%;
}

#destination-page .destination-title-wrap .sub-title {
  color: var(--text_primary);
}

#destination-page .card .card-body a:hover {
  color: #ff7f47;
}

#destination-page .card {
  overflow: hidden;
  /* Ensures the image doesn't overflow outside the card */
  transition: transform 0.3s ease-in-out;
}

#destination-page .card-img-container {
  overflow: hidden;
  /* Ensures smooth scaling within the card */
}

#destination-page .card-img-container .img-overlay {
  background-color: #304f4738;
}

#destination-page .card-img-container .img-overlay a {
  padding-bottom: 40px;
}

#destination-page .card-img-container .img-overlay a:hover {
  color: #ffffff;
}

#destination-page .card-img-top {
  transition: transform 0.3s ease-in-out;
}

#destination-page .card:hover .card-img-top {
  transform: scale(1.1);
  /* Scales the image on hover */
}

#destination-page .navigation .page-item .page-link {
  padding: 10px !important;
}

#destination-page .pagination-wrap li {
  display: inline-block;
  margin: 0 5px;
}

#destination-page .pagination-wrap.text-left li {
  margin: 0 10px 0 0;
}

#destination-page .pagination-wrap li a {
  border: 1px solid #e5e5e5;
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 38px;
  text-align: center;
  color: var(--secondary-color);
  font-weight: 600;
  border-radius: 2px;
}

#destination-page .pagination-wrap li a:hover {
  background-color: #003586;
  color: var(--text_white);
  opacity: 1;
  text-decoration: none;
}

#destination-page .pagination-wrap li a.active {
  background-color: #003586;
  color: var(--text_white);
}

/* destination-page end */
/* blogs start */
#blogs {
  padding-bottom: 120px;
}

#blogs .card .card-body a:hover {
  color: #ff7f47;
}

#blogs .card {
  overflow: hidden;
  /* Ensures the image doesn't overflow outside the card */
  transition: transform 0.3s ease-in-out;
}

#blogs .card-img-container {
  overflow: hidden;
  /* Ensures smooth scaling within the card */
}

#blogs .card-img-top {
  transition: transform 0.3s ease-in-out;
}

#blogs .card:hover .card-img-top {
  transform: scale(1.1);
  /* Scales the image on hover */
}

/* ------------------------------------------------------------------- */

/***

O

====================================================================
	Photos Section
====================================================================

 ***/

.our-photos-section .nav-item {
  margin-right: 10px;
  margin-bottom: 8px;
}

.our-photos-section .nav-link {
  color: #003586;
}

/***

O

====================================================================
	Blog Section
====================================================================

 ***/
.blog-section {
  padding: 120px 0;
}

.blog-section .dots {
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: url(https://theme.nanoit.biz/tourventure-demo/img/bg-dots.png) 0 0 repeat;
  z-index: -1;
}

.blog-item .blog-thumb {
  position: relative;
}

.blog-item .blog-thumb .category {
  background-color: var(--text-primary);
  padding: 5px 15px;
  text-align: center;
  color: var(--bg_white);
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 600;
  font-family: "Roboto", sans-serif;
  position: absolute;
  width: auto;
  height: auto;
  left: 0;
  bottom: 0;
}

.blog-item .blog-thumb .category a {
  color: var(--background-color);
}

.blog-item .blog-thumb img {
  width: 100%;
  margin: 0;
}

.blog-content {
  background-color: #f9fafa;
  padding: 30px;
}

.blog-content h3 {
  line-height: 24px;
}

.blog-content h3 a {
  color: var(--secondary-color);
  font-size: 24px;
  line-height: 30px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.blog-content h3 a:hover {
  color: var(--primary-color);
}

.blog-content .read-more {
  font-family: "Roboto", sans-serif;
  color: var(--secondary-color);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  position: relative;
  padding-left: 30px;
  transition: all 200ms linear 0ms;
}

.blog-content .read-more:before {
  background-color: var(--primary-color);
  position: absolute;
  content: "";
  width: 20px;
  height: 2px;
  left: 0;
  top: calc(50% - 1px);
  transition: all 200ms linear 0ms;
}

.blog-content .read-more:hover {
  color: var(--primary-color);
  padding-left: 40px;
}

.blog-content .read-more:hover:before {
  width: 30px;
}

.pagination-wrap li {
  display: inline-block;
  margin: 0 5px;
}

.pagination-wrap.text-left li {
  margin: 0 10px 0 0;
}

.pagination-wrap li a {
  border: 1px solid #e5e5e5;
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 38px;
  text-align: center;
  color: var(--secondary-color);
  font-weight: 600;
  border-radius: 2px;
}

.pagination-wrap li a:hover {
  background-color: var(--primary-color);
  color: var(--background-color);
  opacity: 1;
  text-decoration: none;
}

.pagination-wrap li a.active {
  background-color: var(--primary-color);
  border: 1px solid var(--primary-color);
  color: var(--background-color);
}

.sidebar-wrap {
  /* padding-left: 40px; */
  padding-right: 40px;
}

@media (max-width: 992px) {
  .sidebar-wrap {
    padding-right: 0;
  }
}

.sidebar-wrap .widget-content {
  margin-bottom: 40px;
}

.sidebar-wrap .widget-content h4 {
  position: relative;
  margin-bottom: 30px;
}

.sidebar-wrap .widget-content h4:before {
  background-color: var(--primary-color);
  position: absolute;
  content: "";
  width: 20%;
  height: 3px;
  left: 0;
  bottom: -5px;
}

/* .sidebar-wrap .widget-content .widget-links li a:hover {
  text-decoration: underline;
} */

.search-form {
  position: relative;
  margin-left: -2px;
}

.search-form .form-control {
  background-color: #f5f5f5;
  box-shadow: none;
  width: 100%;
  display: block;
  border: 1px solid #e5e5e5;
  color: var(--secondary-color);
  height: auto;
  padding: 15px 20px;
  border-radius: 2px;
  padding-right: 60px;
}

.search-form .search-btn {
  background-color: transparent;
  font-size: 15px;
  color: var(--secondary-color);
  width: 60px;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  padding: 10px 0;
  opacity: 0.6;
}

.search-form .search-btn:focus,
.search-form .search-btn:hover {
  opacity: 1;
  cursor: pointer;
}

.search-form input::-webkit-input-placeholder {
  color: #8d9aa8 !important;
}

.search-form input:-moz-placeholder {
  color: #8d9aa8 !important;
}

.search-form input::-moz-placeholder {
  color: #8d9aa8 !important;
}

.search-form input:-ms-input-placeholder {
  color: #8d9aa8 !important;
}

.thumb-post li {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  align-items: top;
  margin-bottom: 20px;
}

.thumb-post li:last-child {
  margin-bottom: 0;
}

.thumb-post li img {
  width: 100px;
  display: block;
}

.thumb-post li a {
  font-family: "Roboto", sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--secondary-color);
  padding-left: 15px;
  letter-spacing: -0.5px;
}

.thumb-post li a:hover {
  color: var(--primary-color);
  text-decoration: underline;
}

.widget-content .tags li {
  display: inline-block;
}

.widget-content .tags li a {
  display: inline-block;
  background-color: var(--bg-primary);
  padding: 5px 10px;
  border-radius: 2px;
  font-size: 12px;
  color: var(--text_white);
  margin: 3px;
}

.blog-thumb img {
  margin-bottom: 20px;
}

.blog-single-content h2 a {
  font-size: 28px;
  color: var(--secondary-color);
}

.blog-single-content h2 a:hover {
  color: var(--primary-color);
}

.single-post-meta {
  margin-bottom: 20px;
}

.single-post-meta li {
  display: inline-block;
  margin-right: 20px;
}

.single-post-meta li:last-child {
  margin-right: 0;
}

.single-post-meta li i {
  font-size: 12px;
  color: var(--primary-color);
  margin-right: 5px;
}

.single-post-meta li a {
  display: inline-block;
  font-family: "Roboto", sans-serif;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 600;
  color: var(--secondary-color);
}

blockquote {
  background-color: #f5f5f5;
  padding: 40px;
  border-left: 4px solid var(--text-primary);
  margin: 30px 0;
  position: relative;
  z-index: 1;
}

blockquote .dots {
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: url(https://theme.nanoit.biz/tourventure-demo/img/bg-dots.png) 0 0 repeat;
  z-index: -1;
}

blockquote p {
  color: var(--secondary-color);
  font-size: 20px;
}

blockquote span {
  display: block;
  margin-top: 20px;
  color: var(--secondary-color);
}

.post-tags {
  margin-top: 30px;
}

.post-tags li {
  display: inline-block;
}

.post-tags li a {
  display: inline-block;
  background-color: var(--bg-primary);
  padding: 5px 10px;
  border-radius: 2px;
  font-size: 12px;
  color: var(--text_white);
  margin: 3px;
}

.post-tags li a:hover {
  background-color: var(--secondary-color);
  color: var(--background-color);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.author-box {
  display: flex;
  align-items: center;
  padding: 30px;
  margin-top: 30px;
  border-left: 4px solid var(--text-primary);
}

.author-box img {
  border-radius: 50%;
}

.author-info {
  padding-left: 30px;
}

.author-info h3 {
  font-size: 18px;
  line-height: 28px;
  margin-bottom: 5px;
}

.author-box .social-icon li {
  display: inline-block;
  margin-right: 8px;
}

.author-box .social-icon li a {
  font-size: 14px;
  color: var(--secondary-color);
}

.author-box .social-icon li a:hover {
  color: var(--primary-color);
}

.post-navigation {
  border: 1px solid #e5e5e5;
  margin-top: 40px;
  margin-left: 0;
  margin-right: 0;
}

.post-navigation .col {
  padding: 20px;
}

.post-navigation .col:not(:last-of-type) {
  border-right: 1px solid rgba(17, 17, 17, 0.04);
}

.post-navigation .col a {
  color: var(--secondary-color);
  font-size: 12px;
  text-transform: uppercase;
  font-family: "Roboto", sans-serif;
  font-weight: 600;
  display: flex;
  align-items: center;
}

.post-navigation .col.next-post a {
  justify-content: flex-end;
}

.post-navigation .col i {
  display: inline-block;
  font-size: 14px;
}

.post-navigation .ti-arrow-left {
  margin-right: 10px;
}

.post-navigation .ti-arrow-right {
  margin-left: 10px;
}

.post-navigation .col a:hover {
  color: var(--primary-color);
}

.post-navigation .col.prev-post .fa {
  margin-right: 10px;
}

.post-navigation .col.next-post .fa {
  margin-left: 10px;
}

.blog-single-wrap .comments-area {
  margin-top: 40px;
}

.blog-single-wrap .comments-area .comments {
  border-bottom: 0;
}

.blog-single-wrap .comments-area li>div {
  border-bottom: 1px solid rgba(17, 17, 17, 0.05);
  padding: 35px;
}

.blog-single-wrap .comments-area ol {
  list-style-type: none;
  padding-left: 0;
}

.blog-single-wrap .comments-area ol ul {
  padding-left: 30px;
  list-style-type: none;
  margin: 0;
}

.blog-single-wrap .comments-area ol>li:last-child div {
  border-bottom: 0;
}

.blog-single-wrap .comments-area .comments-title {
  font-size: 22px;
  font-weight: 600;
}

.blog-single-wrap .comments-area li>div {
  position: relative;
}

.blog-single-wrap .comments-area .comment-thumb {
  position: absolute;
  left: 35px;
}

.blog-single-wrap .comments-area .comment-thumb .comment-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
}

.blog-single-wrap .comments-area .comment-thumb .comment-img img {
  border-radius: 50%;
  width: 80px;
  height: 80px;
}

.blog-single-wrap .comments-area .comment-main-area {
  padding-left: 100px;
}

.blog-single-wrap .comments-area .comment-main-area p {
  margin-bottom: 20px;
}

.blog-single-wrap .comments-area .comments-meta h4 {
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -1px;
}

.blog-single-wrap .comments-area .comments-meta h4 span {
  font-family: "Roboto", sans-serif;
  font-weight: 600;
  text-transform: none;
  display: inline-block;
  font-size: 12px;
  text-transform: uppercase;
  margin-left: 5px;
}

.blog-single-wrap .comments-area .comment-reply-link {
  font-family: "Roboto", sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-primary);
  display: inline-block;
  text-transform: uppercase;
  padding-left: 35px;
  position: relative;
}

.blog-single-wrap .comments-area .comment-reply-link:before {
  background-color: var(--primary-color);
  position: absolute;
  content: "";
  width: 30px;
  height: 2px;
  left: 0;
  top: calc(50% - 1px);
}

.blog-single-wrap .comments-area .comment-reply-link:hover {
  text-decoration: underline;
}

.blog-single-wrap .comment-respond .comment-reply-title {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -1px;
  margin-bottom: 20px;
}

.blog-single-wrap .comment-respond form input,
.blog-single-wrap .comment-respond form textarea {
  background-color: #f5f5f5;
  border: 1px solid #e5e5e5;
  width: 100%;
  height: 50px;
  padding: 6px 15px;
  margin-bottom: 15px;
  outline: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  transition: all 0.3s;
}

.blog-single-wrap .comment-respond form input:focus,
.blog-single-wrap .comment-respond form textarea:focus {
  border-color: var(--primary-color);
}

.blog-single-wrap .comment-respond form textarea {
  height: 200px;
  padding: 15px;
}

.blog-single-wrap .comment-respond .form-inputs {
  overflow: hidden;
}

.blog-single-wrap .comment-respond .form-inputs>input:nth-child(2) {
  width: 49%;
  float: left;
}

.blog-single-wrap .comment-respond .form-inputs>input:nth-child(3) {
  width: 49%;
  float: right;
}

.blog-single-wrap .comment-respond .form-submit input {
  font-family: "Roboto", sans-serif;
  max-width: 180px;
  background-color: var(--bg-primary);
  color: var(--bg_white);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 1px;
  margin-bottom: 0;
  border: 0;
  outline: 0;
  cursor: pointer;
  border-radius: 0;
  text-transform: uppercase;
}

.blog-single-wrap .comment-respond .form-submit input:hover {
  opacity: 0.9;
}

.sponsor-section {
  padding: 50px 0;
  position: relative;
  z-index: 1;
}

.sponsor-section .dots {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: url(https://theme.nanoit.biz/tourventure-demo/img/bg-dots.png) 0 0 repeat;
  z-index: -1;
}

.sponsor-item img {
  opacity: 0.5;
}

.sponsor-item:hover img {
  opacity: 1;
  cursor: pointer;
}

.widget-section {
  background-color: #232427;
  border-bottom: 1px solid #333;
}

.widget-content img {
  margin-bottom: 20px;
}

.widget-section .widget-content h4 {
  color: var(--background-color);
}

.widget-content span {
  display: block;
}

.widget-content .widget-links li a {
  display: inline-block;
  color: #464646;
  line-height: 1.6;
  font-size: 18px;
  margin: 5px 0;
  text-decoration: none;
}

.widget-content .widget-links li a.active,
.widget-content .widget-links li a:hover {
  color: var(--text_primary);
  text-decoration: none;
}

/* .widget-content .widget-links li a:hover {
  color: var(--primary-color);
  text-decoration: underline;
} */

.subscribe-form {
  position: relative;
}

.subscribe-form .form-input {
  border: 1px solid #e5e5e5;
  width: 100%;
  height: 50px;
  padding: 10px;
  padding-right: 140px;
  border-radius: 2px;
}

.subscribe-form .submit-btn {
  background-color: var(--primary-color);
  font-family: "Roboto", sans-serif;
  text-transform: uppercase;
  color: var(--background-color);
  font-size: 12px;
  border-radius: 2px;
  line-height: 50px;
  font-weight: 600;
  display: inline-block;
  letter-spacing: 0.5px;
  padding: 0 30px;
  position: absolute;
  top: 0;
  right: 0;
  cursor: pointer;
}

/* ------------------------------------------------------------------- */
/* blogs end */

/* blog-page start */
#blog-page {
  padding: 120px 0;
}

.all-posts {
  display: flex;
  flex-wrap: wrap;
  padding: 0 4px;
}

.all-posts .column {
  flex: 25%;
  max-width: 25%;
  padding: 0 4px;
}

.all-posts .column .card {
  margin-top: 10px;
  vertical-align: middle;
}

@media (max-width: 1200px) {
  .all-posts .column {
    flex: 33.33%;
    max-width: 50%;
  }
}

@media (max-width: 800px) {
  .all-posts .column {
    flex: 50%;
    max-width: 50%;
  }
}

@media (max-width: 600px) {
  .all-posts .column {
    flex: 100%;
    max-width: 100%;
  }
}

/* blog-page end */
/* discount start */
#discount .left-content h2 {
  font-size: 200px;
  line-height: 1em;
  text-align: left;
  color: #ffffff;
  margin: 0px 0px 0px 15%;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #ffffff;
}

#discount .left-content p {
  font-family: Kristi;
  font-size: 131px;
  line-height: 1em;
  font-weight: 400;
  text-align: left;
  color: #ffcc05;
  margin: -43px 0px 0px 0px;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #ffcc05;
}

#discount .right-content {
  background-image: url("../image/h1-img-9.jpg");
  background-repeat: no-repeat;
  background-size: cover;
}

#discount .right-content .context-box {
  padding: 0 25% 0 5%;
}

#discount .right-content .context-box h3 {
  font-size: 45px;
  line-height: 1.22em;
  font-weight: 700;
  color: #303030;
  font-family: "Playfair Display", serif;
}

/* contact start */
#contact {
  padding: 120px 0;
}

#contact .contact-icon {
  background-color: #003586;
  width: 55px;
  height: 55px;
}

#contact i {
  color: white;
  font-size: 24px;
}

#contact .btn {
  background-color: var(--bg-primary);
  color: var(--bg_white);
  border: none;
}

#contact .form-floating label {
  color: #454141;
}

#contact .contact-main-title {
  width: 60%;
  display: flex;
  justify-content: center;
}

/* contact end */

/* booking form start */
.booking-form {
  max-width: 600px;
  margin: 0 auto;
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 10px;
  background-color: #f9f9f9;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.booking-form h2 {
  margin-bottom: 20px;
  font-size: 24px;
  color: #333;
  text-align: center;
}

.booking-form .btn-primary {
  background-color: #fdb511;
  border-color: #fdb511;
}

.booking-form .btn-primary:hover {
  background-color: #e0a80f;
  border-color: #e0a80f;
}

.book-form {
  background: url("../image/about-g1.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 120px 0;
}

.booking-form {
  background-color: rgba(0, 0, 0, 0.6);
  /* Semi-transparent background */
  /* padding: 20px 30px; */
  border-radius: 20px;
  width: 100%;
  max-width: 600px;
}

.booking-form input,
.booking-form select {
  background-color: rgba(255, 255, 255, 0.2);
  border: none;
  border-radius: 30px;
  color: white;
  font-size: 14px;
  height: 45px;
  /* padding: 0 20px; */
}

.booking-form input::placeholder,
.booking-form select {
  color: white;
}

.booking-form input:focus,
.booking-form select:focus {
  outline: none;
  box-shadow: none;
}

.form-label {
  color: #ffa500;
  font-size: 12px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.btn-book-now {
  background-color: #ff6600;
  color: white;
  border: none;
  border-radius: 30px;
  font-size: 18px;
  font-weight: bold;
  height: 50px;
  width: 100%;
  margin-top: 20px;
  transition: all 0.3s;
}

.btn-book-now:hover {
  background-color: #e55b00;
}

/* booking form end */

/* modal */
/* Modal Styles */
.modal {
  display: none;
  /* Hidden by default */
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  /* width: 100%; */
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.7);
  padding-top: 60px;
}

.modal-dialog-centered {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.modal-content {
  /* background-color: #fff; */
  padding: 20px;
  border-radius: 5px;
  width: 632px;
}

.close {
  background: none;
  border: none;
  font-size: 2rem;
  color: #000;
}

.close:hover,
.close:focus {
  color: #f00;
  cursor: pointer;
}

/* Ensure the video iframe takes full width and is responsive */
.embed-responsive {
  position: relative;
  display: block;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  /* 16:9 Aspect Ratio */
}

.embed-responsive iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}


/* modal */


/* footer---------------------------------------------start */
ul {
  margin: 0px;
  padding: 0px;
}

.footer-section {
  background: #151414;
  position: relative;
}

.footer-cta {
  border-bottom: 1px solid #373636;
}

.single-cta i {
  color: #ff7f47;
  font-size: 30px;
  float: left;
  margin-top: 8px;
}

.cta-text {
  padding-left: 15px;
  display: inline-block;
}

.cta-text h4 {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 2px;
}

.cta-text span {
  color: #757575;
  font-size: 15px;
}

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

.footer-pattern img {
  position: absolute;
  top: 0;
  left: 0;
  height: 330px;
  background-size: cover;
  background-position: 100% 100%;
}

.footer-logo {
  margin-bottom: 15px;
}

.footer-logo img {
  max-width: 200px;
}

.footer-text p {
  margin-top: -10px;
  font-size: 16px;
  color: #7e7e7e;
  line-height: 28px;
}

.footer-social-icon span {
  color: #fff;
  display: block;
  font-size: 20px;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
  margin-bottom: 20px;
}

.footer-social-icon a {
  color: #fff;
  font-size: 16px;
  margin-right: 15px;
}

.footer-social-icon i {
  height: 40px;
  width: 40px;
  text-align: center;
  line-height: 38px;
  border-radius: 50%;
  background-color: #003586;
}

.footer-social-icon i:hover {
  height: 40px;
  width: 40px;
  text-align: center;
  line-height: 38px;
  border-radius: 50%;
  background-color: #fff;
  color: #003586;
}

.facebook-bg {
  background: #3b5998;
}

.twitter-bg {
  background: #55acee;
}

.google-bg {
  background: #dd4b39;
}

.footer-widget-heading h3 {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 40px;
  position: relative;
}

.footer-widget-heading h3::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -15px;
  height: 2px;
  width: 50px;
  background: #ff5e14;
}

.footer-widget ul li {
  display: inline-block;
  float: left;
  width: 50%;
  margin-bottom: 12px;
}

.footer-widget ul li a:hover {
  color: #ff5e14;
}

.footer-widget ul li a {
  color: #878787;
  text-transform: capitalize;
}

.subscribe-form {
  position: relative;
  overflow: hidden;
}

.subscribe-form input {
  width: 100%;
  padding: 14px 28px;
  background: #2e2e2e;
  border: 1px solid #2e2e2e;
  color: #fff;
}

.subscribe-form button {
  position: absolute;
  right: 0;
  background: #ff7f47;
  padding: 13px 20px;
  border: 1px solid #ff7f47;
  top: 0;
}

.subscribe-form button i {
  color: #fff;
  font-size: 22px;
  transform: rotate(-6deg);
}

.copyright-area {
  background: #202020;
  padding: 25px 0;
}

.copyright-text p {
  margin: 0;
  font-size: 14px;
  color: #878787;
}

.copyright-text p a {
  color: #ff5e14;
}

.footer-menu li {
  display: inline-block;
  margin-left: 20px;
}

.footer-menu li:hover a {
  color: #ff5e14;
}

.footer-menu li a {
  font-size: 14px;
  color: #878787;
}

/* footer---------------------------------------------end */


/*---------- 表单 -----------*/
.messageSection {
  background: #003586;
}

.message-form-container {
  box-sizing: border-box;
  width: 100%;
  padding: 30px 15px;
}

.message-form {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.message-form .input-box {
  flex: 1 1 calc(25% - 15px);
  min-width: calc(25% - 15px);
}

.message-form .input-box input {
  box-sizing: border-box;
  width: 100%;
  height: 40px;
  line-height: 40px;
  padding: 0 10px;
  color: #06163a;
  border: 1px solid #fff;
  margin: 0;
}

@media (max-width: 1024px) {
  .message-form .input-box {
    flex: 1 1 calc(50% - 15px);
    min-width: calc(50% - 15px);
  }
}

@media (max-width: 768px) {
  .message-form .input-box {
    flex: 1 1 100%;
    min-width: 100%;
  }
}

.message-form-box .input-box {
  margin-bottom: 0;
}

.message-form-btn {
  height: 40px;
  border: 0;
  background: #fff;
  color: #06163a;
  width: 110px;
  cursor: pointer;
}

.message-form-btn:hover {
  color: #003586;
}

.message-form-container .form-required-info {
  display: none;
  color: #ffffff;
  margin: 10px 0 0;
}


/* 表单提交后提示信息 */
.submit_information {
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 9999;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, .7);
  color: #fff;
  padding: 20px;
  border-radius: 10px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

/* 显示状态的类 */
.submit_information.show {
  opacity: 1;
  visibility: visible;
}

/*---------- 表单 -----------*/


.proCateSwiper {
  padding: 20px 0 35px;
}

.proCateSwiper .shadow-lg {
  box-shadow: 0 .5rem 1.2rem rgba(0, 0, 0, 0.175) !important;
}

.proCateSwiper .swiper-slide {
  padding: 0 12px;
}

.proCateSwiper .swiper-button-next,
.proCateSwiper .swiper-button-prev {
  color: #808080;
  /* 灰色 */
}

.proCateSwiper .swiper-pagination-bullet-active {
  background-color: #003586 !important;
}

.proCateSwiper .swiper-slide h4 {
  min-height: 72px;
}

.num-color {
  color: var(--text_primary);
}

.page-content {
  color: #6c757d;
}

.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  height: 100%;
}

.about-image button.play-btn {
  position: absolute;
  top: 50%;
  left: 20%;
  transform: translateY(-50%);
}

@media (max-width: 991px) {
  .about-image {
    margin-bottom: 3rem;
  }
}

.about-section {
  padding: 120px 0;
  position: relative;
}

.about-certificate-bg {
  width: 25%;
  position: absolute;
  bottom: 0;
  right: 0;
  display: flex;
  justify-content: flex-end;
}

.about-certificate-bg img {
  width: 100%;
}

.about-title {
  color: var(--text-primary);
}

ul.about-adv {
  width: 80%;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

ul.about-adv li {
  width: calc(50% - 10px);
  color: var(--text-primary);
  font-size: 16px;
}

@media (max-width: 1399px) {
  .about-certificate-bg {
    width: 30%;
  }

  ul.about-adv li {
    width: 100%;
  }
}

@media (max-width: 992px) {
  .about-certificate-bg {
    position: unset;
    width: 100%;
    padding: 0 12px;
    margin-top: 3rem;
  }

  ul.about-adv {
    width: 100%;
  }

  ul.about-adv li {
    width: calc(50% - 10px);
  }
}

.adv-item {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.adv-item .adv-item-title {
  width: 150px;
  color: var(--text_primary);
}

.adv-item .text-muted {
  flex: 1;
  text-align: unset;
}

@media (max-width: 768px) {
  .adv-item {
    flex-direction: column;
  }

  .adv-item .adv-item-title {
    width: 100%;
  }
}

/* faqs */
#faqs-page {
  padding: 120px 0;
}

.faq-accordion {
  margin-bottom: 20px;
  border: 1px solid var(--border-color);
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-accordion:not(:last-child) {
  margin-bottom: 15px;
}

.faq-accordion.active {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  border-color: var(--primary-color);
}

.faq-question {
  padding: 20px;
  background-color: var(--bg-primary);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
  color: #fff;
}

.faq-accordion.active .faq-question {
  background-color: var(--bg-primary);
  color: var(--text_white);
}

.faq-question h5 {
  width: calc(100% - 30px);
  margin: 0;
  font-weight: 600;
  font-size: 18px;
  color: #fff;
}

.faq-icon {
  width: 24px;
  height: 24px;
  position: relative;
  transition: all 0.3s ease;
}

.faq-icon span {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.faq-icon span:first-child {
  top: 50%;
  transform: translateY(-50%);
}

.faq-icon span:last-child {
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
}

.faq-accordion.active .faq-icon span:last-child {
  transform: translateY(-50%) rotate(0deg);
  opacity: 0;
}

.faq-answer {
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s ease;
}

.faq-accordion.active .faq-answer {
  padding: 20px;
  max-height: 500px;
}

.faq-answer-content {
  color: var(--text_secondary);
  line-height: 1.6;
  font-size: 16px;
}

@media (max-width: 768px) {
  .faq-question {
    padding: 15px;
  }

  .faq-question h5 {
    font-size: 18px;
  }
}

.pro-card {
  overflow: hidden;
  transition: transform 0.3s ease-in-out;
}

.pro-card .card-img-container {
  overflow: hidden;
}

.pro-card .card-img-top {
  transition: transform 0.3s ease-in-out;
}

.pro-card:hover .card-img-top {
  transform: scale(1.1);
}

.pro-card-title {
  font-size: 22px;
}

/* 解决方案 */
.solution {
  margin: 120px 0 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  overflow: hidden;
  position: relative;
}

.solution-head {
  position: absolute;
  top: 120px;
  left: 0;
  width: 100%;
  z-index: 20;
}

.solution-box {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.solution-title {
  padding-top: 30px;
}

.solution-sub-title {
  position: absolute;
  left: 0;
  top: 20px;
  font-weight: 600;
  font-size: 70px;
  opacity: .35;
  color: var(--text_white);
}

.solution-item {
  width: 20%;
  position: relative;
}

.solution-card {
  padding: 335px 80px;
  position: relative;
  z-index: 9;
}

.solution-card-icon img {
  width: 50px;
  height: 50px;
}

.solution-card-title {
  font-weight: 300;
  font-size: 28px;
  color: var(--text_white);
}

.solution-card-link {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  opacity: 0;
}

.solution-card-link a {
  display: inline-block;
  padding: 15px 30px;
  border: solid 1px var(--text_white);
  color: var(--bg_white);
  border-radius: 8px;
}

.solution-item:hover::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 53, 134, .5);
}

.solution-item:hover .solution-card-link {
  opacity: 1;
}

@media (max-width: 1499px) {
  .solution-card {
    padding: 215px 50px;
  }
}

@media (max-width: 1299px) {
  .solution-item {
    width: 33.33%;
  }
}

@media (max-width: 992px) {
  .solution {
    padding: 120px 0;
    position: unset;
  }

  .solution-head {
    position: unset;
  }

  .solution-item {
    width: 50%;
  }

  .solution-card {
    padding: 95px 80px;
  }

  .solution-item:hover::after {
    display: none;
  }

  .solution-card-link {
    opacity: 1;
  }
}

@media (max-width: 768px) {
  .solution-item {
    width: 100%;
  }

  .solution-card {
    padding: 40px 80px;
  }

  .solution-card-link a {
    padding: 10px 25px;
  }
}

/* 产品内页 */

.product-image-container {
  position: relative;
}

.product-badge .badge {
  font-weight: 500;
  letter-spacing: 0.5px;
}

.product-description {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #444;
}

.card.border:hover {
  border-color: var(--primary-color) !important;
  box-shadow: 0 5px 15px rgba(10, 92, 157, 0.1);
  transition: all 0.3s ease;
}

.product-details-title {
  color: var(--text_primary);
}

/* 产品特性板块特有样式 */
.feature-card {
  transition: all 0.3s ease;
  background-color: white;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1) !important;
  border-color: var(--bg-primary) !important;
}

.feature-number span {
  width: 60px;
  height: 60px;
  line-height: 60px;
  background-color: var(--bg-primary);
}

.feature-title {
  font-weight: 600;
  font-size: 1.3rem;
  min-height: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text_primary);
}

.feature-description {
  color: #555;
  font-size: 1rem;
  line-height: 1.6;
  min-height: 4.5rem;
  margin-bottom: 0;
  text-align: unset;
}

/* 响应式调整 */
@media (max-width: 768px) {
  .feature-title {
    font-size: 1.2rem;
    min-height: auto;
    margin-bottom: 1rem;
  }

  .feature-description {
    min-height: auto;
    margin-bottom: 1rem;
  }

  .d-flex.justify-content-center.align-items-center {
    flex-direction: column;
  }

  .border-start {
    border-left: none !important;
    border-top: 2px solid var(--bg-primary);
    padding-left: 0 !important;
    padding-top: 1rem;
    margin-top: 1rem;
  }
}

/* 产品应用 */
.application-swiper {
  padding: 20px 30px;
  position: relative;
}

.application-swiper .swiper-slide {
  height: auto;
}

.application-swiper .application-card {
  border: none;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

/* 
.application-swiper .swiper-slide-active .application-card {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
} */

.application-swiper .card-img-top {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.application-swiper .card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 25px;
}

.application-swiper .card-text {
  flex: 1;
  margin-bottom: 20px;
  text-align: left;
}

/* 导航按钮样式 */
.application-swiper .swiper-button-next,
.application-swiper .swiper-button-prev {
  background-color: rgba(10, 92, 157, 0.9);
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.application-swiper .swiper-button-next:after,
.application-swiper .swiper-button-prev:after {
  font-size: 18px;
  font-weight: bold;
}

.application-swiper .swiper-button-next:hover,
.application-swiper .swiper-button-prev:hover {
  background-color: var(--bg-primary);
  transform: scale(1.1);
}

/* 分页器样式 */
.application-swiper .swiper-pagination-bullet {
  background-color: #ccc;
  opacity: 1;
  width: 12px;
  height: 12px;
}

.application-swiper .swiper-pagination-bullet-active {
  background-color: var(--bg-primary);
}

/* 响应式调整 */
@media (max-width: 768px) {
  .application-swiper {
    padding: 20px 15px;
  }

  .application-swiper .swiper-button-next,
  .application-swiper .swiper-button-prev {
    display: none;
  }
}


/* 使用说明&储存方法 */
.product-instruction-section {
  /* background: linear-gradient(to bottom, #003586 0%, #1a4fa0 20%, #4a7bc5 40%, #8bb5e8 60%, #c7deef 80%, #ffffff 100%); */
  background-color: #304f4721;
  color: #333;
}

/* 卡片样式 */
.product-instruction .instruction-card {
  background-color: rgba(255, 255, 255, 0.95);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
  height: 100%;
}

.product-instruction .instruction-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.product-instruction .card-header {
  background-color: #003586;
  color: white;
  padding: 15px 30px;
}

.product-instruction .card-header h4 {
  font-weight: 500;
}

.product-instruction .icon-container {
  width: 50px;
  height: 50px;
  background-color: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.product-instruction .card-body {
  padding: 30px;
}

.product-instruction .card-body-content {
  text-align: left;
  margin-bottom: 0;
}

/* 响应式调整 */
@media (max-width: 768px) {
  .product-instruction .card-header {
    padding: 15px 20px;
  }

  .product-instruction .card-body {
    padding: 20px;
  }
}

.product-content {
  font-size: 16px;
  overflow-x: auto;
}

.product-content table {
  min-width: 800px;
  width: 100%;
}

.product-content table th {
  background-color: var(--bg-primary);
  color: #ffffff;
  padding: 1rem;
}

.product-content table tr:nth-child(odd) {
  background: rgba(0, 0, 0, 0.05);
}

.product-content table tr td {
  padding: 1rem;
  color: #212529;
}