/*=================Scss Indexing=============
1.variables
2.typography
3.spacing
4.reset
5.forms
6.mixins
7.shortcode
8.animations
9.text-animation
10.sal
11.header
12.mobile-menu
13.button
14.nav
15.banner
16.swiper
17.funfacts
18.cta
19.about
20.common
21.service
22.projects
23.working-process
24.blog
25.blog-details
26.footer
27.search-input
28./side-bar
29.team
30.testimonials
31.faq
32.pricing
33.date-picker
34.time-picker
35.appoinment
36.awesome-feedback
37.contact
38.pre-loader.scss
39.back-to-top
39.RTL

 

/* Bebas Neue */
@font-face {
  font-family: 'Bebas Neue';
  src: url('../fonts/bebas-neue-v16-latin-regular.woff2') format('woff2');
}

/* Sunsive Regular */
@font-face {
  font-family: 'Sunsive';
  font-weight: 400;
  src: url('../fonts/Sunsive-Regular.woff2') format('woff2'), 
       url('../fonts/Sunsive-Regular.woff') format('woff');
}

/* Sunsive Medium */
@font-face {
  font-family: 'Sunsive';
  font-weight: 500;
  src: url('../fonts/Sunsive-Medium.woff2') format('woff2'), 
       url('../fonts/Sunsive-Medium.woff') format('woff');
}

/* Sunsive SemiBold */
@font-face {
  font-family: 'SunsiveSemBd';
  font-weight: 600;
  src: url('../fonts/Sunsive-SemiBold.woff2') format('woff2'), 
       url('../fonts/Sunsive-SemiBold.woff') format('woff');
}

/* Sunsive Bold */
@font-face {
  font-family: 'Sunsive';
  font-weight: 700;
  src: url('../fonts/Sunsive-Bold.woff2') format('woff2'), 
       url('../fonts/Sunsive-Bold.woff') format('woff');
}


:root {
  --color-primary: #ba6827;
  --color-primary-btn: #614ce1;
  --color-primary-2: #4c4ff8;
  --color-secondary: #1f1f25;
  --color-secondary-2: #ff6354;
  --color-bg-1: #fff1e6;
  --color-bg-2: #ffd7b7;
  --color-bg-3: #daf2ff;
  --color-bg-4: #89d6ff;
  --color-bg-5: #fff5ee;
  --color-home-bg: #fff8f3;
  --color-hiking-bg: #f5fcff;
  --color-yacht-bg: #f5fcff;
  --color-border: #ffdbbf;
  --color-heading-1: #5b3516;
  --color-body-1: #797979;
  --color-title: #26262c;
  --color-title-dark: #0d0d0d;
  --color-title-nav: #26262c;
  --color-white: #fff;
  --color-service-heading: rgba(0, 0, 0, 0.8);
  --counter-title: #717383;
  --color-success: #26cf4b;
  --color-danger: #ff0003;
  --color-warning: #ff8f3c;
  --color-info: #1ba2db;
  --color-facebook: #3b5997;
  --color-twitter: #1ba1f2;
  --color-youtube: #ed4141;
  --color-linkedin: #0077b5;
  --color-pinterest: #e60022;
  --color-instagram: #c231a1;
  --color-vimeo: #00adef;
  --color-twitch: #6441a3;
  --color-discord: #7289da;
  --subscribe-form:
    linear-gradient(
      0deg,
      rgba(255, 255, 255, 0.8) 0%,
      rgba(255, 255, 255, 0.8) 100%
    ),
    #bcbfdb;
  --footer-bg: linear-gradient(
    257deg,
    #deffe6 1.73%,
    rgba(201, 192, 255, 0.08) 98.79%
  );
  --p-light: 300;
  --p-regular: 400;
  --p-medium: 500;
  --p-semi-bold: 600;
  --p-bold: 700;
  --p-extra-bold: 800;
  --p-black: 900;
  --s-light: 300;
  --s-regular: 400;
  --s-medium: 500;
  --s-semi-bold: 600;
  --s-bold: 700;
  --s-extra-bold: 800;
  --s-black: 900;
  --transition: all 0.4s;
  --font-primary: "Sunsive", sans-serif;
  --font-secondary: "Sunsive", sans-serif;
  --font-three: "Font Awesome 6 Pro";
  --font-four: "Roboto", sans-serif;
  --font-size-b1: 16px;
  --font-size-b2: 16px;
  --font-size-b3: 22px;
  --line-height-b1: 26px;
  --line-height-b2: 26px;
  --line-height-b3: 1.7;
  --h1: 60px;
  --h2: 48px;
  --h3: 40px;
  --h4: 32px;
  --h5: 24px;
  --h6: 20px;
}

* {
  box-sizing: border-box;
}

html {
  margin: 0;
  padding: 0;
  font-size: 10px;
  overflow: hidden;
  overflow-y: auto;
  scroll-behavior: auto !important;
}

body {
  font-size: var(--font-size-b1);
  line-height: var(--line-height-b1);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: var(--font-secondary);
  color: var(--color-body-1);
  font-weight: var(--p-regular);
  background-color: var(--body-bg);
  position: relative;
  overflow-x: hidden;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  body {
    overflow: hidden;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  body {
    overflow: hidden;
  }
}
@media only screen and (max-width: 767px) {
  body {
    overflow: hidden;
  }
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
p,
menu,
ul,
table {
  margin: 0;
  margin-bottom: 20px;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  word-break: break-word;
  font-family: var(--font-primary);
  line-height: 1.4074;
  color: var(--color-heading-1);
}

h1,
.h1 {
  font-size: var(--h1);
  line-height: 91px;
  font-weight: 700;
}

h2,
.h2 {
  font-size: var(--h2);
  line-height: 1.1;
}

h3,
.h3 {
  font-size: var(--h3);
  line-height: 54px;
}

h4,
.h4 {
  font-size: var(--h4);
  line-height: 1.25;
}

h5,
.h5 {
  font-size: var(--h5);
  line-height: 1.24;
}

h6,
.h6 {
  font-size: var(--h6);
  line-height: 1.25;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a,
.h1 a,
.h2 a,
.h3 a,
.h4 a,
.h5 a,
.h6 a {
  color: inherit;
  transition: var(--transition);
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  h1,
  .h1 {
    font-size: 38px;
  }

  h2,
  .h2 {
    font-size: 32px;
  }

  h3,
  .h3 {
    font-size: 28px;
  }

  h4,
  .h4 {
    font-size: 24px;
  }

  h5,
  .h5 {
    font-size: 18px;
  }
}
@media only screen and (max-width: 767px) {
  h1,
  .h1 {
    font-size: 34px;
  }

  h2,
  .h2 {
    font-size: 28px;
  }

  h3,
  .h3 {
    font-size: 24px;
  }

  h4,
  .h4 {
    font-size: 20px;
  }

  h5,
  .h5 {
    font-size: 20px;
  }
}
h1,
.h1,
h2,
.h2,
h3,
.h3 {
  font-weight: var(--s-semi-bold);
  letter-spacing: -0.04em;
}

h4,
.h4,
h5,
.h5 {
  font-weight: var(--s-semi-bold);
  letter-spacing: -0.04em;
}

h6,
.h6 {
  font-weight: var(--s-semi-bold);
  letter-spacing: -0.04em;
}

p {
  font-size: var(--font-size-b2);
  line-height: var(--line-height-b2);
  font-weight: 500;
  color: var(--color-body-1);
  margin: 0 0 40px;
}
@media only screen and (max-width: 767px) {
  p {
    margin: 0 0 20px;
    font-size: 16px;
    line-height: 28px;
  }
}
p:last-child {
  margin-bottom: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  margin: 0 0 20px;
  width: 100%;
}

table a,
table a:link,
table a:visited {
  text-decoration: none;
}

var {
  font-family: var(--font-primary);
}

/*---------------------------
	List Style 
---------------------------*/
ul {
  padding-left: 18px;
}

ul {
  list-style: square;
  margin-bottom: 30px;
  padding-left: 20px;
}
ul li {
  font-size: var(--font-size-b1);
  line-height: var(--line-height-b1);
  margin-top: 10px;
  margin-bottom: 10px;
  color: var(--color-body-1);
}
ul li a {
  text-decoration: none;
  transition: var(--transition);
}
ul li a:hover {
  color: var(--color-primary);
}
ul ul {
  margin-bottom: 0;
}

@media only screen and (max-width: 1199px) {
  h1 {
    font-size: 64px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  h1 {
    font-size: 54px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  h1 {
    font-size: 40px;
    line-height: 1.2;
  }
}
@media only screen and (max-width: 767px) {
  h1 {
    font-size: 30px;
    line-height: 1.2;
  }
}
@media only screen and (max-width: 575px) {
  h1 {
    font-size: 28px;
    line-height: 1.2;
  }
}
@media only screen and (max-width: 479px) {
  h1 {
    font-size: 26px;
    line-height: 1.2;
  }
}

@media only screen and (max-width: 1199px) {
  h2 {
    font-size: 54px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  h2 {
    font-size: 44px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  h2 {
    font-size: 36px;
    line-height: 1.2;
  }
}
@media only screen and (max-width: 767px) {
  h2 {
    font-size: 30px;
    line-height: 1.2;
  }
}
@media only screen and (max-width: 575px) {
  h2 {
    font-size: 26px;
    line-height: 1.2;
  }
}
@media only screen and (max-width: 479px) {
  h2 {
    font-size: 24px;
    line-height: 1.2;
  }
}

@media only screen and (max-width: 1199px) {
  h3 {
    font-size: 40px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  h3 {
    font-size: 36px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  h3 {
    font-size: 30px;
    line-height: 1.2;
  }
}
@media only screen and (max-width: 767px) {
  h3 {
    font-size: 30px;
    line-height: 1.2;
  }
}
@media only screen and (max-width: 575px) {
  h3 {
    font-size: 24px;
    line-height: 1.2;
  }
}
@media only screen and (max-width: 479px) {
  h3 {
    font-size: 22px;
    line-height: 1.2;
  }
}

/*=========================
    Section Separation 
==========================*/

.rts-section-gap {
  padding: 120px 0;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .rts-section-gap {
    padding: 80px 0;
  }
}
@media only screen and (max-width: 767px) {
  .rts-section-gap {
    padding: 60px 0;
  }
}

.rts-section-gapBottom {
  padding-bottom: 120px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .rts-section-gapBottom {
    padding-bottom: 80px;
  }
}
@media only screen and (max-width: 767px) {
  .rts-section-gapBottom {
    padding-bottom: 60px;
  }
}

.pt--0 {
  padding-top: 0;
}

.mt--0 {
  margin-top: 0;
}

.mb--10 {
  margin-bottom: 10px;
}

.mt--15 {
  margin-top: 15px;
}

.mb--15 {
  margin-bottom: 15px;
}

.pt--20 {
  padding-top: 20px;
}

.mt--20 {
  margin-top: 20px;
}

.mb--20 {
  margin-bottom: 20px;
}

.mt--25 {
  margin-top: 25px;
}

.pb--30 {
  padding-bottom: 30px;
}

.mt--30 {
  margin-top: 30px;
}

.mb--30 {
  margin-bottom: 30px;
}

.mt--40 {
  margin-top: 40px;
}

.mb--40 {
  margin-bottom: 40px;
}

.mt--50 {
  margin-top: 50px;
}

.pb--60 {
  padding-bottom: 60px;
}

.mt--60 {
  margin-top: 60px;
}

.mb--60 {
  margin-bottom: 60px;
}

.pb--80 {
  padding-bottom: 80px;
}

.pt--100 {
  padding-top: 100px;
}

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

details,
footer,
header,
nav,
section {
  display: block;
}

[hidden] {
  display: none;
}

a {
  color: var(--color-heading);
  text-decoration: none;
  outline: none;
}

a:hover,
a:focus,
a:active {
  text-decoration: none;
  outline: none;
  color: var(--color-primary);
}

a:focus {
  outline: none;
}

b,
strong {
  font-weight: bold;
}

code {
  font-size: var(--font-size-b3);
  -webkit-hyphens: none;
  -moz-hyphens: none;
  -ms-hyphens: none;
  hyphens: none;
  color: var(--color-primary);
}

small {
  font-size: smaller;
}

menu,
ul {
  margin: 16px 0;
  padding: 0 0 0 40px;
}

nav ul {
  list-style: none;
  list-style-image: none;
}

li > ul {
  margin: 0;
}

img {
  -ms-interpolation-mode: bicubic;
  border: 0;
  vertical-align: middle;
  max-width: 100%;
  height: auto;
}

svg:not(:root) {
  overflow: hidden;
}

form {
  margin: 0;
}

fieldset {
  border: 1px solid var(--color-border);
  margin: 0 2px;
  min-width: inherit;
  padding: 0.35em 0.625em 0.75em;
}

button,
input {
  font-size: 100%;
  margin: 0;
  max-width: 100%;
  vertical-align: baseline;
}

button,
input {
  line-height: normal;
}

button,
html input[type="button"],
input[type="submit"] {
  -webkit-appearance: button;
  -moz-appearance: button;
  appearance: button;
  cursor: pointer;
}

input[type="checkbox"] {
  padding: 0;
}

input[type="search"] {
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
  appearance: textfield;
  appearance: textfield;
  padding-right: 2px;
  width: 270px;
}

input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
  appearance: none;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

caption,
th,
td {
  font-weight: normal;
}

th {
  font-weight: 500;
  text-transform: uppercase;
}

td {
  border: 1px solid var(--color-border);
  padding: 7px 10px;
}

table a,
table a:link,
table a:visited {
  text-decoration: underline;
}

caption {
  caption-side: top;
}

/* BlockQuote  */

/* ========= Forms Styles ========= */
input,
button {
  background-color: lightblue;
  border: 1px solid var(--color-border);
  transition: all 0.4s ease-out 0s;
  color: var(--color-body);
  width: 100%;
  border-radius: 12px;
}
input:focus,
input:active,
button:focus,
button:active {
  outline: none;
  border-color: var(--color-primary);
}

button,
[type="button"],
[type="submit"] {
  -webkit-appearance: button;
}

input {
  height: 40px;
  padding: 0 15px;
}

input[type="text"],
input[type="password"],
input[type="email"],
input[type="number"],
input[type="tel"],
input[type="url"] {
  font-size: var(--font-size-b2);
  font-weight: 400;
  height: auto;
  line-height: 28px;
  background: transparent;
  -webkit-box-shadow: none;
  box-shadow: none;
  padding: 0 15px;
  outline: none;
  /* -- Placeholder -- */
}
input[type="text"]::placeholder,
input[type="password"]::placeholder,
input[type="email"]::placeholder,
input[type="number"]::placeholder,
input[type="tel"]::placeholder,
input[type="url"]::placeholder {
  color: var(--body-color);
  /* Firefox */
  opacity: 1;
}
input[type="text"]:-ms-input-placeholder,
input[type="password"]:-ms-input-placeholder,
input[type="email"]:-ms-input-placeholder,
input[type="number"]:-ms-input-placeholder,
input[type="tel"]:-ms-input-placeholder,
input[type="url"]:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: var(--body-color);
}
input[type="text"]::-ms-input-placeholder,
input[type="password"]::-ms-input-placeholder,
input[type="email"]::-ms-input-placeholder,
input[type="number"]::-ms-input-placeholder,
input[type="tel"]::-ms-input-placeholder,
input[type="url"]::-ms-input-placeholder {
  /* Microsoft Edge */
  color: var(--body-color);
}
input[type="text"]:focus,
input[type="password"]:focus,
input[type="email"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="url"]:focus {
  border-color: var(--color-primary);
}

input[type="checkbox"] {
  opacity: 0;
  position: absolute;
}
input[type="checkbox"] ~ label {
  position: relative;
  font-size: 12px;
  line-height: 17px;
  color: var(--color-body);
  font-weight: 400;
  padding-left: 25px;
  cursor: pointer;
}
input[type="checkbox"] ~ label::before {
  content: " ";
  position: absolute;
  top: 1px;
  left: 0;
  width: 15px;
  height: 15px;
  background-color: #5d5d7e;
  border-radius: 2px;
  transition: all 0.3s;
  border-radius: 2px;
}
input[type="checkbox"] ~ label::after {
  content: " ";
  position: absolute;
  top: 16%;
  left: 2px;
  width: 10px;
  height: 6px;
  background-color: transparent;
  border-bottom: 2px solid #ffffff;
  border-left: 2px solid #ffffff;
  border-radius: 2px;
  transform: rotate(-45deg);
  opacity: 0;
  transition: all 0.3s;
}
input[type="checkbox"]:checked ~ label::after {
  opacity: 1;
}

input[type="submit"] {
  width: auto;
  padding: 0 30px;
  border-radius: 500px;
  display: inline-block;
  font-weight: 500;
  transition: 0.3s;
  height: 60px;
  background: var(--color-primary);
  color: var(--color-white);
  font-weight: var(--p-medium);
  font-size: var(--font-size-b2);
  line-height: var(--line-height-b3);
  height: 50px;
  border: 2px solid var(--color-primary);
  transition: var(--transition);
}
input[type="submit"]:hover {
  background: transparent;
  color: var(--color-primary);
  transform: translateY(-5px);
}

input[type="checkbox"] {
  opacity: 1;
  position: relative;
  height: auto !important;
  max-width: 18px;
  width: max-content;
}
input[type="checkbox"] ~ label {
  position: relative;
  font-size: 12px;
  line-height: 17px;
  color: var(--color-body);
  font-weight: 400;
  padding-left: 25px;
  cursor: pointer;
}
input[type="checkbox"] ~ label::before {
  content: " ";
  position: absolute;
  top: 1 px;
  left: 0;
  width: 15px;
  height: 15px;
  background-color: #5d5d7e;
  border-radius: 2px;
  transition: all 0.3s;
  border-radius: 2px;
}
input[type="checkbox"] ~ label::after {
  content: " ";
  position: absolute;
  top: 16%;
  left: 2px;
  width: 10px;
  height: 6px;
  background-color: transparent;
  border-bottom: 2px solid #ffffff;
  border-left: 2px solid #ffffff;
  border-radius: 2px;
  transform: rotate(-45deg);
  opacity: 0;
  transition: all 0.3s;
}
input[type="checkbox"]:checked ~ label::after {
  opacity: 1;
}

/*==============================
 *  Utilities
=================================*/

iframe {
  width: 100%;
}

/*===============================
    Background Color 
=================================*/

/*===========================
Background Image 
=============================*/

/* Height and width */

/*===================
Custom Row
======================*/

/*===========================
    Input Placeholder
=============================*/
input:-moz-placeholder {
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

input::-webkit-input-placeholder {
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

input::-moz-placeholder {
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

input:-ms-input-placeholder {
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

/*=============================
	Overlay styles 
==============================*/

/*------------------------------
    Scroll Up 
--------------------------------*/

@keyframes customOne {
  0% {
    -webkit-transform: translateY(-50%) scale(0);
    transform: translateY(-50%) scale(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(-50%) scale(1.3);
    transform: translateY(-50%) scale(1.3);
    opacity: 0;
  }
}
@keyframes liveAuction {
  0% {
    background: var(--color-white);
  }
  100% {
    background: var(--color-danger);
  }
}

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

xclip 

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

/**
 * Settings
 */
/**
  * Easings
  */
/**
  * Core
  */

/**
  * Animations
  */

/* header styles */
.header-style-one-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-style-one-wrapper .left-area {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-basis: 50%;
  gap: 25px;
}
.header-style-one-wrapper .button-area-start {
  display: flex;
  align-items: center;
  gap: 23px;
  flex-basis: 50%;
  display: flex;
  justify-content: flex-end;
}
@media only screen and (max-width: 767px) {
  .header-style-one-wrapper .button-area-start .call-us {
    display: none;
  }
}
.header-style-one-wrapper .button-area-start .search {
  color: rgba(0, 0, 0, 0.8);
  font-size: 24px;
}
.header-style-one-wrapper .button-area-start a {
  font-family: var(--font-primary);
  transition: var(--transition);
}
@media (max-width: 576px) {
  .header-style-one-wrapper .button-area-start .rts-btn {
    display: none;
  }
}
.header-style-one-wrapper .button-area-start .menu-btn {
  background: var(--color-primary);
  padding: 0 !important;
  height: 40px;
  width: 45px;
  text-align: center;
  line-height: 38px;
}
.header-style-one-wrapper .logo-area .logo {
  display: block;
  min-width: 149px;
}
.header-style-one-wrapper .logo-area .logo .light {
  display: block;
}
.header-style-one-wrapper .logo-area .logo .dark {
  display: none;
}

.header-style-two .header-top {
  border-bottom: 1px solid var(--color-border);
  padding: 12px 0 11px;
}
.header-style-two .header-top .header-top-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-style-two .header-top .header-top-inner .left p {
  color: var(--color-heading-1);
}
.header-style-two .header-top .header-top-inner .left p a {
  color: var(--color-primary);
  text-decoration: underline;
}
.header-style-two .header-top .header-top-inner .right {
  display: flex;
  align-items: center;
}
.header-style-two .header-top .header-top-inner .right .social-area {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0;
  padding-right: 30px !important;
  margin: 0;
}
.header-style-two .header-top .header-top-inner .right .social-area li {
  padding: 0;
  margin: 0;
}
.header-style-two .header-top .right-information {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-left: 30px;
  border-left: 1px solid #bdc3c6;
}
.header-style-two .header-top .right-information .rts-dropdown-menu {
  padding: 0;
  margin: 0;
}
.header-style-two
  .header-top
  .right-information
  .rts-dropdown-menu
  .has-child-menu {
  list-style: none;
  margin: 0;
  position: relative;
  transition: all 0.4s;
}
.header-style-two
  .header-top
  .right-information
  .rts-dropdown-menu
  .has-child-menu
  a {
  color: var(--color-heading-1);
  font-size: 16px;
  font-weight: 500;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 5px;
}
.header-style-two
  .header-top
  .right-information
  .rts-dropdown-menu
  .has-child-menu
  a
  img {
  width: 20px;
}
.header-style-two .main-nav-area {
  margin-left: 80px;
}
.header-style-two
  .main-nav-area
  ul.rts-desktop-menu
  .menu-item
  .rts-dropdown-main-element {
  color: var(--color-heading-1);
}

.header--sticky {
  transition: 0s;
}

.header--sticky.sticky {
  position: fixed !important;
  top: 0;
  display: block;
  width: 100%;
  animation: stickyanimations 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
  box-shadow: 0px 7px 18px #1810100d;
  background: rgba(255, 241, 230, 0.8);
  z-index: 999;
  border: none !important;
  backdrop-filter: blur(2px);
}
.header--sticky.sticky .header-style-one-wrapper .logo-area .logo .light {
  display: none;
}
.header--sticky.sticky .header-style-one-wrapper .logo-area .logo .dark {
  display: block;
}
.header--sticky.sticky
  .main-nav-area
  ul.rts-desktop-menu
  .menu-item
  .rts-dropdown-main-element {
  color: var(--color-title-nav);
}
.header--sticky.sticky .header-top {
  display: none;
}
.header--sticky.sticky.header-eight {
  background: rgba(255, 255, 255, 0.8);
}

.header-style-two.header--sticky.sticky {
  background: rgba(255, 255, 255, 0.8);
}

@keyframes stickyanimations {
  0% {
    transform: translateY(-100px);
  }
  100% {
    transform: translateY(0px);
  }
}
.main-nav-area ul {
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0;
}
.main-nav-area ul li {
  margin: 0;
}
.main-nav-area ul li a {
  color: var(--color-white);
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  line-height: 120%;
  letter-spacing: -0.32px;
  font-family: var(--font-primary);
  transition: all 0.3s;
}
.main-nav-area ul.rts-desktop-menu {
  transition: all 0.3s;
}
.main-nav-area ul.rts-desktop-menu:hover .menu-item {
  opacity: 0.5;
}
.main-nav-area ul.rts-desktop-menu .menu-item {
  transition: all 0.3s;
}
.main-nav-area ul.rts-desktop-menu .menu-item .rts-dropdown-main-element {
  color: var(--color-white);
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  line-height: 120%;
  letter-spacing: -0.32px;
  font-family: var(--font-primary);
  transition: all 0.3s;
  padding: 35px 22px;
  display: block;
}
@media (max-width: 1200px) {
  .main-nav-area ul.rts-desktop-menu .menu-item .rts-dropdown-main-element {
    padding: 35px 17px;
  }
}
.main-nav-area ul.rts-desktop-menu .menu-item:hover {
  opacity: 1;
}
.main-nav-area ul.rts-desktop-menu .rts-has-dropdown {
  z-index: 10;
}
.main-nav-area ul.rts-desktop-menu .rts-has-dropdown .rts-submenu {
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  position: absolute;
  align-items: flex-start;
  opacity: 0;
  max-width: 1000px;
  width: 200px;
  border-radius: 10px;
  gap: 2px;
  visibility: hidden;
  overflow: visible;
  transform: translateY(30px);
  transition: all 0.3s ease-in-out;
  padding: 15px;
  background: #ffffff;
  -webkit-box-shadow: 9px 9px 22px -1px rgba(0, 0, 0, 0.12);
  box-shadow: 9px 9px 22px -1px rgba(0, 0, 0, 0.12);
}
.main-nav-area
  ul.rts-desktop-menu
  .rts-has-dropdown
  .rts-submenu:hover
  li.nav-item
  .nav-link {
  opacity: 0.5;
}
.main-nav-area ul.rts-desktop-menu .rts-has-dropdown .rts-submenu li.nav-item {
  width: 100%;
  transition: all 0.3s;
}
.main-nav-area
  ul.rts-desktop-menu
  .rts-has-dropdown
  .rts-submenu
  li.nav-item:hover
  .nav-link {
  background: #f2f2f8;
  opacity: 1;
}
.main-nav-area
  ul.rts-desktop-menu
  .rts-has-dropdown
  .rts-submenu
  li.nav-item
  .nav-link {
  padding: 12px 45px 12px 15px;
  border-radius: 10px;
  background: #ffffff;
  transition: all 0.3s;
  color: var(--color-title-nav);
  text-align: left;
  font-size: 14px;
  font-weight: 600;
}
.main-nav-area ul.rts-desktop-menu .rts-has-dropdown:hover .rts-submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
}

.side-bar {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: -100%;
  width: 465px;
  padding: 40px 30px;
  padding-top: 50px;
  height: 100%;
  display: block;
  background-color: white;
  backdrop-filter: blur(7px);
  z-index: 1900;
  transition: all 600ms ease;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  overflow: visible;
}
@media only screen and (max-width: 575px) {
  .side-bar {
    width: 315px;
  }
}

@keyframes fadeZoomIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.side-bar {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: -100%;
  width: 465px;
  padding: 40px 30px;
  padding-top: 50px;
  height: 100%;
  display: block;
  background-color: white;
  backdrop-filter: blur(7px);
  z-index: 1900;
  transition: all 600ms ease;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  overflow: visible;
}
@media only screen and (max-width: 575px) {
  .side-bar {
    width: 300px;
  }
}

.side-bar.show {
  right: 0;
  overflow-y: hidden;
}

#anywhere-home {
  background: #0e1013;
  position: fixed;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 500ms ease-in-out;
  pointer-events: none;
  z-index: 50;
}

#menu-btn {
  cursor: pointer;
  padding: 10px;
  display: none;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  #menu-btn {
    display: block;
  }
}
@media only screen and (max-width: 767px) {
  #menu-btn {
    display: block;
  }
}

#side-bar .mobile-menu-main {
  display: none;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  #side-bar .mobile-menu-main {
    display: block;
  }
}
@media only screen and (max-width: 767px) {
  #side-bar .mobile-menu-main {
    display: block;
  }
}

.mobile-menu-main nav ul {
  padding: 0 20px;
  display: block;
}
.mobile-menu-main nav ul li {
  margin: 0;
  padding: 0;
  color: var(--color-heading-1);
}
.mobile-menu-main nav ul li a.main {
  padding: 12px 0 17px 0;
  border-bottom: 1px solid #f3f3f3;
  cursor: pointer;
}
.mobile-menu-main nav ul li.has-droupdown {
  position: relative;
}
.mobile-menu-main nav ul li.has-droupdown ul a {
  padding: 10px 0;
}
.mobile-menu-main nav ul li.has-droupdown ul a.tag {
  font-weight: 700;
  margin-top: 15px;
  font-size: 18px;
  border-bottom: 2px solid var(--color-primary);
  padding: 10px 0;
}
.mobile-menu-main nav ul li.has-droupdown ul li {
  margin: 7px 0 !important;
  border-bottom: 1px solid #f3f3f3;
  font-weight: 500;
}
.mobile-menu-main nav ul li.has-droupdown::after {
  position: absolute;
  content: "\f054";
  font-family: "Font Awesome 6 pro" !important;
  font-size: 16px;
  right: 0;
  font-weight: 400;
  top: 5px;
  padding: 8px 13px;
  color: rgba(38, 38, 44, 0.5);
  pointer-events: none;
  cursor: pointer;
}
.mobile-menu-main nav ul li a {
  display: block;
}
.mobile-menu-main .follow-us {
  margin-top: 30px;
}
.mobile-menu-main .follow-us ul {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0;
  margin: 0;
}
.mobile-menu-main .follow-us ul li {
  padding: 0;
  margin: 0;
}
.mobile-menu-main .follow-us ul li a {
  width: 40px;
  height: 40px;
  line-height: 45px;
  text-align: center;
  display: block;
  border-radius: 10px;
  background: var(--color-primary);
  color: var(--color-white);
}
.side-bar.header-eight {
  background: var(--color-secondary);
}
.side-bar.header-eight .mobile-menu-main nav ul li.has-droupdown::after {
  color: var(--color-white);
}

.side-bar {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: -100%;
  max-width: 500px;
  width: 100%;
  padding: 40px;
  padding-top: 100px;
  height: 100%;
  display: block;
  background-color: var(--color-white);
  backdrop-filter: blur(30px);
  z-index: 1900;
  transition: all 600ms ease;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  overflow: visible;
}
@media only screen and (max-width: 575px) {
  .side-bar {
    width: 310px;
  }
}

.rts-sidebar-menu-desktop .logo-area {
  padding-bottom: 30px;
  margin-bottom: 30px;
  border-bottom: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.rts-sidebar-menu-desktop .logo {
  display: block;
}
.rts-sidebar-menu-desktop .about-us {
  text-align: center;
}
.rts-sidebar-menu-desktop .about-us .logo {
  margin-bottom: 20px;
}
.rts-sidebar-menu-desktop .gallery-image-area {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 30px;
}
.rts-sidebar-menu-desktop .gallery-image-area .gallery-wrapper {
  width: 30%;
}
.rts-sidebar-menu-desktop .get-in-touch {
  margin-top: 30px;
}
.rts-sidebar-menu-desktop .get-in-touch h4 {
  color: var(--color-heading-1);
}
.rts-sidebar-menu-desktop .get-in-touch .wrapper .single {
  color: var(--color-heading-1);
  font-weight: 500;
}
.rts-sidebar-menu-desktop .get-in-touch .wrapper .single i {
  color: var(--color-primary);
  margin-right: 10px;
  margin-bottom: 15px;
}
.rts-sidebar-menu-desktop .get-in-touch .wrapper .single i:last-child {
  margin-bottom: 0;
}
.rts-sidebar-menu-desktop .get-in-touch .wrapper .single a {
  transition: 0.3s;
}
.rts-sidebar-menu-desktop .follow-us {
  margin-top: 30px;
}
.rts-sidebar-menu-desktop .follow-us ul {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0;
  margin: 0;
}
.rts-sidebar-menu-desktop .follow-us ul li {
  padding: 0;
  margin: 0;
}
.rts-sidebar-menu-desktop .follow-us ul li a {
  width: 40px;
  height: 40px;
  line-height: 45px;
  text-align: center;
  display: block;
  border-radius: 10px;
  background: var(--color-primary);
  color: var(--color-white);
}

.side-bar button {
  max-width: max-content;
  border: none;
  height: 30px;
  min-width: 30px;
  position: absolute;
  background: var(--color-primary);
  top: 0;
  left: 0;
  padding: 0;
  border-radius: 0;
}
.side-bar button i {
  color: var(--color-white);
  border-radius: 0;
  display: flex;
  align-items: center;
  font-weight: 300;
  justify-content: center;
  font-size: 27px;
}

/* elements */
.container {
  max-width: 1290px;
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (min-width: 1200px) and (max-width: 1599px) {
  .container {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media only screen and (max-width: 1199px) {
  .container {
    padding-left: 15px;
    padding-right: 15px;
  }
}

body.loaded .preloader {
  opacity: 0;
  visibility: hidden;
  transition: all 0.6s ease;
}

.preloader {
  position: fixed;
  width: 100%;
  height: 100%;
  background: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  top: 0;
  left: 0;
  z-index: 99999;
}

.loader {
  position: relative;
  width: 90px;
  height: 90px;
}

.loader span {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: rotate(calc(18deg * var(--i)));
}

.loader span::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 10px;
  height: 10px;
  background: var(--color-primary);
  border-radius: 50%;
  transform: scale(0);
  animation: loader 2s linear infinite;
  animation-delay: calc(0.1s * var(--i));
}

@keyframes loader {
  0% {
    transform: scale(0);
  }
  10% {
    transform: scale(1.2);
  }
  80%,
  100% {
    transform: scale(0);
  }
}
.loader-plane {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  animation: loader-rotating 2s linear infinite;
  animation-delay: -1s;
}

@keyframes loader-rotating {
  0% {
    transform: rotate(10deg);
  }
  100% {
    transform: rotate(370deg);
  }
}
.loader-plane::before {
  content: "" !important; 
  display: block;
  position: absolute;
  top: 53px;
  left: 58px;
  
  /* UPDATED: This points the nose up and to the left to follow the curve */
  transform: rotate(225deg); 
  
  width: 38px;
  height: 38px;
  background-color: var(--color-primary);

  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'><path d='M448 336v-40L288 192V79.2c0-34.2-26.5-63.2-60.7-63.2-34.2 0-60.7 29-60.7 63.2V192L8 296v40l160-48v113.6l-48 31.2V480l88-16 88 16v-47.2l-48-31.2V288l160 48z'></path></svg>");
  mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'><path d='M448 336v-40L288 192V79.2c0-34.2-26.5-63.2-60.7-63.2-34.2 0-60.7 29-60.7 63.2V192L8 296v40l160-48v113.6l-48 31.2V480l88-16 88 16v-47.2l-48-31.2V288l160 48z'></path></svg>");
  
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
}

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.container {
  width: 100%;
  padding-right: var(--bs-gutter-x, 0.75rem);
  padding-left: var(--bs-gutter-x, 0.75rem);
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container {
    max-width: 100%;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}
@media (min-width: 1400px) {
  .container {
    max-width: 1305px;
  }
}

.section-title-area .sub-title {
  color: var(--color-primary);
  margin-bottom: 20px;
  font-weight: 600;
  line-height: 1;
}
.section-title-area .section-title {
  color: var(--color-heading-1);
  margin-bottom: 8px;
  text-transform: capitalize;
}
.section-title-area .desc {
  color: var(--color-body-1);
  font-weight: 500;
  margin-top: 10px;
}
.section-title-area.center-style {
  text-align: center;
}

.ch {
  color: var(--color-heading-1) !important;
}

.body-bg-one {
  background: var(--color-bg-1) !important;
}

.body-bg-three {
  background: var(--color-bg-3) !important;
}

ul {
  padding: 0 !important;
}
ul li {
  list-style: none !important;
}

.swiper-nav-pag-area {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 20px;
}

.swiper-nav-pag-area .swiper-pagination3 {
  position: relative;
  bottom: unset;
  top: unset;
  right: unset;
  left: unset;
  height: 1px;
  background: var(--color-border);
}
.swiper-nav-pag-area .swiper-navigation {
  position: relative;
  display: flex;
  align-items: center;
  width: max-content;
  gap: 10px;
}
.swiper-nav-pag-area .swiper-navigation .swiper-btn {
  position: unset;
  width: 40px;
  height: 40px;
  line-height: 40px;
  border: 1px solid var(--color-primary);
  text-align: center;
  display: block;
  color: var(--color-primary);
  transition: var(--transition);
  border-radius: 6px;
  fill: white;
}
.swiper-nav-pag-area .swiper-navigation .swiper-btn:hover {
  background: var(--color-primary);
  color: var(--color-white);
}
.swiper-nav-pag-area .swiper-navigation .swiper-btn.swiper-btn-next3 {
  background: var(--color-primary);
  color: var(--color-white);
}

.title-w-hover {
  background-size: 200% 2px;
  background-position: 100% 95%;
  background-repeat: no-repeat;
  background-image: -webkit-gradient(
    linear,
    left top,
    right top,
    color-stop(50%, #ffffff),
    color-stop(50%, transparent)
  );
  background-image: linear-gradient(to right, #ffffff 50%, transparent 50%);
  -webkit-transition: all 500ms;
  transition: all 500ms;
}
.title-w-hover:hover {
  background-position: 0% 95%;
  color: #ffffff;
}

.image-transform {
  overflow: hidden;
}
.image-transform .hover-image {
  transform: scale(107%);
  transition: var(--transition);
}
.image-transform:hover .hover-image {
  transform: scale(100%);
}

.blue {
  color: #119ce6;
}

.home-hiking-bg {
  background: var(--color-hiking-bg);
  --color-primary: #119ce6;
  --color-border: #daf2ff;
  --color-heading-1: #0d0d0d;
}
.home-hiking-bg .rts-btn {
  border-radius: 6px;
}

@keyframes zoomEffect {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  25% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
  50% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
  75% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.wow {
  visibility: hidden;
}

@-webkit-keyframes scaleIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(1.5, 1.5, 1.5);
    transform: scale3d(1.5, 1.5, 1.5);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes scaleIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(1.5, 1.5, 1.5);
    transform: scale3d(1.5, 1.5, 1.5);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.scaleIn {
  -webkit-animation-name: scaleIn;
  animation-name: scaleIn;
}

@-webkit-keyframes scaleInFade {
  from {
    opacity: 0;
    -webkit-transform: scale3d(1.5, 1.5, 1.5);
    transform: scale3d(1.5, 1.5, 1.5);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes scaleInFade {
  from {
    opacity: 0;
    -webkit-transform: scale3d(1.5, 1.5, 1.5);
    transform: scale3d(1.5, 1.5, 1.5);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@-webkit-keyframes scaleOutFade {
  from {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1, 1, 1);
    transform: scale(1, 1, 1);
  }
}
@keyframes scaleOutFade {
  from {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1, 1, 1);
    transform: scale(1, 1, 1);
  }
}

@-webkit-keyframes widthInFade {
  from {
    opacity: 0;
    width: 1px;
  }
  100% {
    opacity: 1;
    width: 100px;
  }
}
@keyframes widthInFade {
  from {
    opacity: 0;
    width: 1px;
  }
  100% {
    opacity: 1;
    width: 100px;
  }
}
/* Flip In X */
@-webkit-keyframes flipInX {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
@keyframes flipInX {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}

.radius-0 {
  border-radius: 0 !important;
}

.radius-6 {
  border-radius: 6px;
}

.radius-10 {
  border-radius: 10px;
}

.position-bottom-center {
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.m-w-100 {
  max-width: 100% !important;
}

.border-bottom {
  border-bottom: 1px solid var(--color-border) !important;
}

.border-color {
  border-color: var(--color-border) !important;
}

.border-primary {
  border-color: var(--color-primary) !important;
}

.slider-drag-cursor {
  pointer-events: none;
  z-index: 99999;
  position: fixed;
  top: 0;
  left: -2px;
  height: 36px;
  width: 36px;
  -webkit-transition: width 0.1s ease-in-out;
  transition: width 0.1s ease-in-out;
  background: rgba(17, 61, 72, 0.7);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  width: 120px;
  height: 120px;
  line-height: 120px;
  text-align: center;
  border-radius: 100%;
  color: var(--color-white);
  display: none;
  cursor: none;
}

.slider-drag-cursor.active {
  display: block;
}

.border {
  border: 1px solid var(--color-border) !important;
}

.border-primary {
  border: 1px solid var(--color-primary) !important;
}

.sticky-top {
  z-index: 99;
}
@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.rts-btn {
  max-width: max-content;
  padding: 12px 15px;
  line-height: 1;
  transition: all 0.3s;
  display: block;
  font-weight: 500;
  letter-spacing: 1px;
  background: var(--color-primary);
  overflow: hidden;
  position: relative;
  border: 1px solid var(--color-primary);
  z-index: 1;
  border-radius: 6px;
}
.rts-btn::before {
  content: "";
  position: absolute;
  -webkit-transition-duration: 800ms;
  transition-duration: 800ms;
  width: 200%;
  height: 200%;
  top: 110%;
  left: 50%;
  background: var(--color-white);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  z-index: -1;
}
.rts-btn:hover {
  color: var(--color-primary);
  border: 1px solid var(--color-white);
}
.rts-btn:hover::before {
  top: -40%;
}
.rts-btn:focus {
  border: none;
  box-shadow: none;
}
.rts-btn.btn-primary {
  background: var(--color-primary);
  border: none;
}
.rts-btn.btn-border {
  padding: 11px 15px;
}
.rts-btn.btn-border {
  border: 1px solid var(--color-border);
  color: var(--color-primary);
  background: transparent;
  line-height: 1;
}
.rts-btn.btn-border::before {
  background: var(--color-primary);
}
.rts-btn.btn-border:hover {
  color: var(--color-white);
}
.rts-btn.with-arrow {
  display: flex;
  align-items: center;
  gap: 10px;
}
.rts-btn.with-arrow i {
  transform: rotate(45deg);
}

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

.rts-banner-area-two {
  height: 837px;
  position: relative;
  z-index: 1;
}
.rts-banner-area-two .swiper-area {
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.rts-banner-area-two .swiper-area .swiper {
  height: 100%;
  height: 100%;
}
.rts-banner-area-two .swiper-area .swiper .rts-hero-banner {
  height: 100%;
  width: 100%;
}
.rts-banner-area-two .swiper-area .banner-slider-active {
  animation: zoomEffect 40s ease-in-out infinite;
}
.rts-banner-area-two::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: -1;
  background: linear-gradient(270deg, rgba(0, 58, 89, 0) 43.91%, #003a59 100%);
}
.rts-banner-area-two .rts-banner-content-area {
  padding-top: 200px;
}
.rts-banner-area-two .rts-banner-content-area .content-inner .sub-title {
  color: var(--color-white);
  font-weight: 600;
  margin-bottom: 30px;
}
.rts-banner-area-two .rts-banner-content-area .content-inner .section-title {
  font-size: 110px;
  letter-spacing: -0.64px;
  color: var(--color-white);
  line-height: 1;
  font-weight: 700;
  line-height: 96px;
}
.rts-banner-area-two .rts-banner-content-area .content-inner .desc {
  max-width: 491px;
  color: var(--color-white);
  font-weight: 500;
  margin-bottom: 35px;
}
.rts-banner-area-two .rts-banner-content-area .content-inner .button-area {
  display: flex;
  align-items: center;
  gap: 12px;
}
.rts-banner-area-two
  .rts-banner-content-area
  .content-inner
  .button-area
  .rts-btn {
  padding: 16px 20px;
}
.rts-banner-area-two
  .rts-banner-content-area
  .content-inner
  .button-area
  .btn-border {
  background: transparent;
  color: var(--color-white);
  border: 1px solid rgba(255, 255, 255, 0.5);
}
.rts-banner-area-two
  .rts-banner-content-area
  .content-inner
  .button-area
  .btn-border:hover {
  border: 1px solid var(--color-primary);
}

@keyframes moveright {
  from {
    clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
  }
  to {
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
  }
}
@keyframes moveLeft {
  from {
    clip-path: polygon(100% 0%, 100% 0%, 100% 100%, 100% 100%);
  }
  to {
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
  }
}

.filter-small-top-full {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.filter-small-top-full .left-filter {
  display: flex;
  align-items: center;
  gap: 20px;
}
.filter-small-top-full .left-filter span {
  min-width: max-content;
  color: var(--color-heading-1);
  font-weight: 500;
  text-transform: capitalize;
}
.filter-small-top-full .right-filter {
  display: flex;
  align-items: center;
  gap: 17px;
}
.filter-small-top-full .right-filter span {
  color: var(--color-heading-1);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 26px;
  text-decoration: underline;
}
.filter-small-top-full .right-filter .nav-tabs {
  border: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}
.filter-small-top-full .right-filter .nav-tabs li {
  margin: 0;
  padding: 0;
}
.filter-small-top-full .right-filter .nav-tabs li button {
  border: 1px solid #ffd7b7;
  padding: 0;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 8px;
  width: 44px;
  height: 44px;
  text-align: center;
  line-height: 44px;
  justify-content: center;
}
.filter-small-top-full .right-filter .nav-tabs li button.active {
  background: var(--color-primary);
  color: #fff;
}
.filter-small-top-full .right-filter .nav-tabs li button.active i {
  color: var(--color-white);
}
.filter-small-top-full .right-filter .nav-tabs li button.active span {
  color: #fff;
}
.filter-small-top-full .right-filter .nav-tabs li button i {
  color: #110c2d;
}

@keyframes spiner {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.rts-breadcrumb-area {
  position: relative;
  z-index: 1;
}
.rts-breadcrumb-area::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.4);
}
.rts-breadcrumb-area.one {
  height: 500px;
}
.rts-breadcrumb-area.one .breadcrumb-area-wrapper {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding-top: 80px;
}
.rts-breadcrumb-area.one .breadcrumb-area-wrapper .nav-bread-crumb {
  display: flex;
  align-items: center;
  gap: 14px;
}
.rts-breadcrumb-area.one .breadcrumb-area-wrapper .nav-bread-crumb a,
.rts-breadcrumb-area.one .breadcrumb-area-wrapper .nav-bread-crumb span {
  color: var(--color-white);
  font-weight: 500;
}
.rts-breadcrumb-area.one .breadcrumb-area-wrapper .title {
  margin-bottom: 0;
  color: var(--color-white);
  font-size: 48px;
  font-weight: 600;
}

.offer-wrapper {
  height: 500px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 50px;
}
.offer-wrapper .sub-title {
  color: var(--color-white);
  line-height: 1;
  margin-bottom: 13px;
}
.offer-wrapper .title {
  color: var(--color-white);
}
.offer-wrapper .title span {
  background: var(--color-primary);
  color: var(--color-white) !important;
  padding: 0 5px;
}
.offer-wrapper .rts-btn {
  background: var(--color-white);
  color: var(--color-heading-1);
}
.offer-wrapper .rts-btn::before {
  background: var(--color-primary);
}
.offer-wrapper .rts-btn:hover {
  color: var(--color-white);
}
.offer-wrapper .person {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -1;
}
.offer-wrapper.mid {
  background: linear-gradient(180deg, #ffac69 -14.6%, #ffd7b7 100%);
}
.offer-wrapper.new {
  position: relative;
  z-index: 1;
  background: none;
  height: auto;
  padding: 0;
}
.offer-wrapper.new .content {
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  padding: 60px 50px;
  text-align: center;
}
.offer-wrapper.new .content .title {
  font-size: 36px;
}
.offer-wrapper.new .content .title span {
  display: inline-block;
  line-height: 1;
  padding: 0 8px 5px;
  font-style: italic;
  border-radius: 6px;
  color: #0d0d0d !important;
  font-weight: 400;
}
.offer-wrapper.new .content .desc {
  color: var(--color-white);
  margin-bottom: 35px;
}
.offer-wrapper.new .content .rts-btn {
  margin: auto;
  background: #0d0d0d;
  color: var(--color-white);
}

@keyframes rotateImg {
  0% {
    transform: rotate(0);
    opacity: 0;
  }
  100% {
    transform: rotate(-10deg);
    opacity: 1;
  }
}

/* Targets all links inside the .rts-story-full-content container */
.rts-story-full-content a {
  color: #119ce6; /* Standard blue, or use #1a73e8 for a modern Google-style blue */
  text-decoration: none; /* Keeps the link recognizable */
}

/* Optional: Styles the link when a user hovers over it */
.rts-story-full-content a:hover {
  color: #000; /* A slightly darker blue on hover */
  text-decoration: none; /* Removes underline on hover */
}

@keyframes rotateImg2 {
  0% {
    transform: rotate(0);
    opacity: 0;
  }
  100% {
    transform: rotate(15deg);
    opacity: 1;
  }
}

.rts-testimonials-area .section-inner {
  position: relative;
  z-index: 1;
}
.rts-testimonials-area .section-inner .swiper {
  max-width: 1070px;
  margin: auto;
}
.rts-testimonials-area .section-inner .swiper-navigation .swiper-btn {
  position: absolute;
  width: 40px;
  height: 40px;
  line-height: 40px;
  border: 1px solid var(--color-primary);
  text-align: center;
  display: block;
  color: var(--color-primary);
  transition: var(--transition);
  top: 50%;
  transform: translateY(-50%);
}
.rts-testimonials-area .section-inner .swiper-navigation .swiper-btn:hover {
  background: var(--color-primary);
  color: var(--color-white);
}

.rts-testimonials-area.yacht .swiper-pagination-area {
  z-index: 1;
}
.rts-testimonials-area.yacht .swiper-pagination-area .slider-dots {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
}

.testimonials-wrapper-three {
  position: relative;
  z-index: 1;
  border: 1px solid var(--color-border);
  padding: 30px 24px 35px;
}
.testimonials-wrapper-three .quote {
  position: absolute;
  z-index: 1;
  right: 40px;
  top: 40px;
}
.testimonials-wrapper-three .author-area {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 25px;
}
.testimonials-wrapper-three .author-area .content-area h6 {
  font-size: 18px;
  line-height: 1;
  margin-bottom: 5px;
}
.testimonials-wrapper-three .author-area .content-area p {
  margin-bottom: 0;
  font-size: 14px;
  line-height: 1;
}
.testimonials-wrapper-three .star-rating-area {
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 3px;
  margin-bottom: 15px;
}
.testimonials-wrapper-three .star-rating-area li {
  margin: 0;
  padding: 0;
  line-height: 1;
}

.blog-wrapper {
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.blog-wrapper .image-area a {
  position: relative;
  z-index: 1;
  display: block;
}
.blog-wrapper .image-area a::after {
  content: "";
  position: absolute;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 45.78%, #000000 100%);
  width: 100%;
  height: 100%;
  min-height: 400px;
  z-index: 1;
  top: 0;
  left: 0;
}
.blog-wrapper .author-area {
  position: absolute;
  top: 34px;
  left: 34px;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 8px;
  width: max-content;
}
.blog-wrapper .author-area .text {
  color: var(--color-white);
  font-weight: 500;
  font-size: 14px;
  line-height: 1;
}
.blog-wrapper .author-area .text span {
  font-size: 16px;
}
.blog-wrapper .content-area {
  position: absolute;
  z-index: 1;
  bottom: 34px;
  left: 34px;
  max-width: 340px;
}
.blog-wrapper .blog-meta {
  margin-bottom: 12px;
}
.blog-wrapper .blog-meta ul {
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}
.blog-wrapper .blog-meta ul li {
  padding: 0;
  margin: 0;
  color: var(--color-white);
  font-weight: 500;
}
.blog-wrapper .blog-meta ul li.mid {
  width: 5px;
  height: 5px;
  line-height: 5px;
  border-radius: 50%;
  background: var(--color-white);
}
.blog-wrapper .blog-title {
  text-transform: capitalize;
  letter-spacing: -0.64px;
  font-weight: 500;
}
.blog-wrapper .blog-title a {
  color: var(--color-white);
}
.blog-wrapper .tags {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0;
  margin: 0;
}
.blog-wrapper .tags li {
  padding: 0;
  margin: 0;
}
.blog-wrapper .tags li a {
  display: block;
  color: var(--color-white);
  font-size: 14px;
  line-height: 1;
  padding: 8px 12px;
  background: rgba(239, 239, 239, 0.1);
  border-radius: 4px;
}

.rts-footer-area-one .footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.rts-footer-area-one .left {
  width: 30%;
}
.rts-footer-area-one .mid {
  width: 60%;
  gap: 80px;
}
.rts-footer-area-one .right {
  width: 30%;
}
.rts-footer-area-one.yacht .left {
  width: 25%;
}
.rts-footer-area-one.yacht .left .single-footer-widget-one {
  width: 100%;
}
.rts-footer-area-one.yacht .single-footer-widget-one {
  width: 16%;
}
.rts-footer-area-one.bg-dark {
  background: #0d0d0d !important;
}
.rts-footer-area-one.bg-dark .single-footer-widget-one .title,
.rts-footer-area-one.bg-dark .single-footer-widget-one.logo-area .desc,
.rts-footer-area-one.bg-dark
  .single-footer-widget-one.logo-area
  .get-in-touch
  li,
.rts-footer-area-one.bg-dark .single-footer-widget-one ul li,
.rts-footer-area-one.bg-dark .copyright-area-start p,
.rts-footer-area-one.bg-dark .copyright-area-start p span {
  color: var(--color-white);
}
.rts-footer-area-one.bg-dark .single-footer-widget-one ul li svg path {
  fill: var(--color-white);
}
.rts-footer-area-one.bg-dark .copyright-area-start {
  border-top: 1px solid #212121;
}

.single-footer-widget-one.logo-area .logo {
  margin-bottom: 20px;
  display: block;
}
.single-footer-widget-one.logo-area .desc {
  margin-bottom: 25px;
}
.single-footer-widget-one.logo-area .call-us {
  display: flex;
  align-items: center;
  gap: 16px;
}
.single-footer-widget-one.logo-area .call-us .icon {
  width: 47px;
  height: 47px;
  line-height: 47px;
  border-radius: 50%;
  background: var(--color-primary);
  text-align: center;
}
.single-footer-widget-one.logo-area .call-us .text p {
  margin-bottom: 5px;
  line-height: 1;
}
.single-footer-widget-one.logo-area .call-us .text h5 {
  margin-bottom: 0;
}
.single-footer-widget-one.logo-area .social-area {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 10px;
}
.single-footer-widget-one.logo-area .social-area li:first-child {
  margin-right: 5px;
}
.single-footer-widget-one.logo-area .social-area li a {
  color: var(--color-heading-1);
}
.single-footer-widget-one.logo-area .social-area li a:hover {
  color: var(--color-primary);
}
.single-footer-widget-one.logo-area .get-in-touch {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.single-footer-widget-one.logo-area .get-in-touch li {
  line-height: 1;
  margin: 0;
  color: var(--color-primary);
  font-weight: 500;
  font-family: var(--font-primary);
}
.single-footer-widget-one.essential-links ul li {
  display: flex;
  align-items: center;
  gap: 8px;
}
.single-footer-widget-one ul {
  padding: 0;
  list-style: none;
}
.single-footer-widget-one ul li {
  margin: 10px 0;
  padding: 0;
  color: var(--color-body-1);
  font-weight: 500;
}
.single-footer-widget-one ul li svg path {
  fill: var(--color-primary);
}
.single-footer-widget-one form input {
  height: 56px;
  width: 100%;
  background: #fff;
  border: 1px solid var(--color-border);
}
.single-footer-widget-one form input:focus {
  border: 1px solid var(--color-primary);
}
.single-footer-widget-one form button {
  width: 100%;
  max-width: 100%;
  text-align: center;
  margin-top: 16px;
  padding-top: 18px;
  padding-bottom: 18px;
}
.single-footer-widget-one .logo-area ul li {
  color: var(--color-body-1);
  margin-top: 0;
  margin-bottom: 10px;
  font-weight: 500;
}
.single-footer-widget-one .logo-area ul li a {
  color: var(--color-body-1);
}
.single-footer-widget-one .logo-area .social-area {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 15px;
}
.single-footer-widget-one .logo-area .social-area li {
  color: var(--color-body-1);
  font-weight: 500;
}
.single-footer-widget-one .title {
  margin-bottom: 40px;
}

.copyright-area-start {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 30px;
  margin-top: 70px;
  border-top: 1px solid var(--color-border);
}
@media only screen and (max-width: 575px) {
  .copyright-area-start {
    flex-direction: column;
    gap: 25px;
  }
}
.copyright-area-start p {
  margin-bottom: 0;
  color: var(--color-body-1);
}
.copyright-area-start p span {
  color: var(--color-primary);
}
.copyright-area-start ul {
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
}
.copyright-area-start ul li {
  margin: 0;
  padding: 0;
}
.copyright-area-start ul li a {
  color: var(--color-body-1);
  transition: 0.3s;
}
.copyright-area-start ul li a:hover {
  color: var(--color-primary);
}

.progress-wrap {
  position: fixed;
  right: 30px;
  bottom: 30px;
  height: 46px;
  width: 46px;
  cursor: pointer;
  display: block;
  border-radius: 50px;
  z-index: 8;
  
  opacity: 0 ;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  -webkit-transition:
    opacity 0.3s var(--ease-in-out-4),
    -webkit-transform 0.3s var(--ease-in-out-4);
  transition:
    opacity 0.3s var(--ease-in-out-4),
    -webkit-transform 0.3s var(--ease-in-out-4);
  transition:
    transform 0.3s var(--ease-in-out-4),
    opacity 0.3s var(--ease-in-out-4);
  transition:
    transform 0.3s var(--ease-in-out-4),
    opacity 0.3s var(--ease-in-out-4),
    -webkit-transform 0.3s var(--ease-in-out-4);
  --ease-in-out-4: cubic-bezier(0.7, 0, 0.3, 1);
}

.progress-wrap::after {
  position: absolute;
  font-family: var(--font-three);
  content: "\f062";
  text-align: center;
  line-height: 46px;
  font-size: 18px;
  color: var(--color-primary);
  left: 0;
  top: 0;
  height: 46px;
  width: 46px;
  cursor: pointer;
  display: block;
  z-index: 1;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
  border: 2px solid var(--color-primary);
  box-shadow: none;
  border-radius: 50% !important;
  border-radius: 5px;
}

.progress-wrap:hover::after {
  opacity: 1;
  content: "\f062";
  border: 2px solid var(--color-primary);
}

.progress-wrap::before {
  position: absolute;
  font-family: var(--font-three);
  content: "\f062";
  text-align: center;
  line-height: 46px;
  font-size: 18px;
  opacity: 0;
  background: var(--color-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  left: 0;
  top: 0;
  height: 46px;
  width: 46px;
  cursor: pointer;
  display: block;
  z-index: 2;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}

.progress-wrap:hover::before {
  opacity: 0;
}

.progress-wrap svg path {
  fill: none;
}

.progress-wrap svg {
  color: var(--color-primary);
  border-radius: 50%;
  background: #fff;
}

.progress-wrap svg.progress-circle path {
  stroke: var(--color-primary);
  stroke-width: 34px;
  box-sizing: border-box;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}

.team-wrapper {
  position: relative;
  z-index: 1;
  background: var(--color-white);
  padding: 20px 20px 30px;
  text-align: center;
}
.team-wrapper:hover .image-area .social-wrapper {
  bottom: 25px;
}
.team-wrapper .image-area {
  position: relative;
  z-index: 1;
}
.team-wrapper .image-area .social-wrapper {
  display: flex;
  align-items: center;
  gap: 15px;
  max-width: max-content;
  position: absolute;
  z-index: 1;
  bottom: -15%;
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
  transition: var(--transition);
}
.team-wrapper .image-area .social-wrapper li {
  padding: 0;
  margin: 0;
}
.team-wrapper .content {
  margin-top: 25px;
}
.team-wrapper .content h6 {
  margin-bottom: 8px;
  line-height: 1;
  text-transform: uppercase;
}

.form-area {
  background-color: #fff;
  box-shadow: 0px 5px 10px rgba(90, 116, 148, 0.3);
  padding: 40px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rts-contact-area.inner .section-inner {
  padding: 50px 40px;
}
.rts-contact-area.inner .section-inner .contact-form .left {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 630px;
  width: 100%;
}
.rts-contact-area.inner .section-inner .contact-form .right {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 550px;
  width: 100%;
}
.rts-contact-area.inner .section-inner .contact-form label {
  line-height: 1;
  color: var(--color-heading-1);
  margin-bottom: 15px;
  font-weight: 600;
}
.rts-contact-area.inner .section-inner .contact-form input {
  height: 60px;
  color: var(--color-heading-1);
}
.rts-contact-area.inner .section-inner .contact-form input::placeholder {
  color: var(--color-body-1) !important;
  font-weight: 500;
  font-family: var(--font-primary);
}
.rts-contact-area.inner .section-inner .contact-form .rts-btn {
  padding: 16px 22px;
}
.rts-contact-area.inner .section-inner .contact-form .desc {
  font-size: 14px;
  margin-top: -10px;
}
.rts-contact-area.inner .section-inner .contact-form .desc a {
  color: var(--color-heading-1);
  text-decoration: underline;
}

.contact-form-content-bottom-wrapper .single-contact-card {
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.03);
  border: 1px solid var(--color-border);
  padding: 40px 44px;
  transition: 0.4s;
}
.contact-form-content-bottom-wrapper .single-contact-card .top-area {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
}
.contact-form-content-bottom-wrapper .single-contact-card .top-area .icon {
  transition: 0.3s;
}
.contact-form-content-bottom-wrapper .single-contact-card .top-area .title {
  margin-bottom: 0;
  font-size: 24px;
  line-height: 1;
  font-weight: 500;
}
.contact-form-content-bottom-wrapper .single-contact-card p {
  margin-bottom: 0;
}
.contact-form-content-bottom-wrapper .single-contact-card a {
  color: var(--color-primary);
  font-weight: 500;
  margin-top: 5px;
  display: block;
}
.contact-form-content-bottom-wrapper .single-contact-card:hover {
  transform: translateY(-5px) scale(1.01);
}
.contact-form-content-bottom-wrapper .single-contact-card:hover .icon {
  transform: scaleX(-1);
}

/* marquee animation */
@keyframes marquees {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-70%);
  }
}
@keyframes marquees2 {
  0% {
    transform: translateX(-70%);
  }
  100% {
    transform: translateX(0%);
  }
}

@keyframes marquee {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}
@keyframes marquee-2 {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0%);
  }
}

.tour-wrapper {
  background: #fff8f3;
  position: relative;
  z-index: 1;
  padding: 20px;
}
.tour-wrapper .image-area {
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.tour-wrapper .image-area .tag {
  position: absolute;
  z-index: 1;
  top: 16px;
  left: 16px;
  color: var(--color-heading-1);
  background: var(--color-white);
  line-height: 1;
  font-weight: 500;
  padding: 7px 9px;
}
.tour-wrapper .content {
  margin-top: 30px;
}
.tour-wrapper .content .title {
  margin-bottom: 10px;
}
.tour-wrapper .content .meta-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0;
  margin: 0;
}
.tour-wrapper .content .meta-content li {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
  color: var(--color-heading-1);
  margin: 0;
}
.tour-wrapper .content .meta-content li i {
  color: var(--color-primary);
}
.tour-wrapper .content .star-rating-area ul {
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 4px;
}
.tour-wrapper .content .star-rating-area ul li {
  color: var(--color-primary);
  margin: 0;
  margin-top: 12px;
}
.tour-wrapper .content .star-rating-area p {
  font-weight: 500;
  color: var(--color-heading-1);
}
.tour-wrapper .content .button-area {
  margin-top: 25px;
}
.tour-wrapper .content .button-area .rts-btn {
  width: 100%;
  max-width: 100%;
  text-align: center;
}

.rts-blog-area .section-top-area .button-area {
  display: flex;
  align-items: center;
  gap: 7px;
}

.rts-blog-area .section-top-area .button-area .swiper-btn {
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50%;
  text-align: center;
  display: block;
  border: 1px solid var(--color-primary);
  color: var(--color-primary);
}

.rts-blog-area .swiper-pagination-area {
  z-index: 1;
}
.rts-tour-area.inner .blog-details-area h2,
.rts-blog-area.inner .blog-details-area h2 {
  font-size: 28px;
  font-weight: 500;
}
@media (min-width: 576px) {
  .rts-tour-area.inner .blog-details-area h2,
  .rts-blog-area.inner .blog-details-area h2 {
    line-height: 1;
  }
}
.rts-tour-area.inner .blog-details-area ul,
.rts-blog-area.inner .blog-details-area ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}
.rts-tour-area.inner .blog-details-area ul li,
.rts-blog-area.inner .blog-details-area ul li {
  display: flex;
  align-items: center;
  gap: 15px;
  font-weight: 500;
  margin: 0;
}
.rts-tour-area.inner .blog-details-area ul li i,
.rts-blog-area.inner .blog-details-area ul li i {
  color: var(--color-primary);
  font-size: 24px;
}
.rts-tour-area.inner .blog-details-area form,
.rts-blog-area.inner .blog-details-area form {
  background: var(--color-gray);
  border-radius: 10px;
  padding: 30px;
}
.rts-tour-area.inner .blog-details-area form h2,
.rts-blog-area.inner .blog-details-area form h2 {
  margin-bottom: 20px;
}
.rts-tour-area.inner .blog-details-area .share-link,
.rts-blog-area.inner .blog-details-area .share-link {
  display: flex;
  align-items: center;
  gap: 23px;
}
.rts-tour-area.inner .blog-details-area .share-link h2,
.rts-blog-area.inner .blog-details-area .share-link h2 {
  margin-bottom: 0;
}
.rts-tour-area.inner .blog-details-area .share-link ul,
.rts-blog-area.inner .blog-details-area .share-link ul {
  gap: 15px;
  margin: 0;
}
.rts-tour-area.inner .blog-details-area .share-link ul li,
.rts-blog-area.inner .blog-details-area .share-link ul li {
  width: unset;
  flex-wrap: nowrap;
}
.rts-tour-area.inner .blog-details-area .share-link ul li a,
.rts-blog-area.inner .blog-details-area .share-link ul li a {
  width: 40px;
  height: 40px;
  line-height: 45px;
  text-align: center;
  display: block;
  border-radius: 10px;
  background: var(--color-primary);
}
.rts-tour-area.inner .blog-details-area .share-link ul li a i,
.rts-blog-area.inner .blog-details-area .share-link ul li a i {
  color: var(--color-white);
  font-size: 16px;
}

.tour-wrapper-list {
  background: transparent;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--color-border);
}
.tour-wrapper-list .image-area {
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.tour-wrapper-list .image-area .tag {
  position: absolute;
  z-index: 1;
  top: 16px;
  left: 16px;
  color: var(--color-heading-1);
  line-height: 1;
  font-weight: 500;
  padding: 7px 9px;
  background: #ffcc00;
}
.tour-wrapper-list .content {
  padding: 28px 30px;
  flex-basis: 68%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.tour-wrapper-list .content .left {
  max-width: 500px;
}
.tour-wrapper-list .content .title {
  margin-bottom: 8px;
  text-transform: capitalize;
}
.tour-wrapper-list .content .meta-content {
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 0;
  margin: 0;
  margin-bottom: 15px;
}
.tour-wrapper-list .content .meta-content li {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
  color: var(--color-heading-1);
  margin: 0;
}
.tour-wrapper-list .content .meta-content li i {
  color: var(--color-primary);
}
.tour-wrapper-list .content .desc {
  margin-bottom: 12px;
}
.tour-wrapper-list .content .star-rating-area {
  display: flex;
  align-items: center;
  gap: 5px;
}
.tour-wrapper-list .content .star-rating-area ul {
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 4px;
}
.tour-wrapper-list .content .star-rating-area ul li {
  color: var(--color-primary);
  margin: 0;
  margin-top: 0;
}
.tour-wrapper-list .content .star-rating-area p {
  font-weight: 500;
  color: var(--color-heading-1);
  margin-bottom: 0;
}
.tour-wrapper-list .content .button-area {
  margin-top: 25px;
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  gap: 20px;
  min-width: max-content;
}
.tour-wrapper-list .content .button-area .price-area {
  display: flex;
  align-items: center;
  gap: 12px;
}
.tour-wrapper-list .content .button-area .price-area .current {
  color: var(--color-primary);
  font-size: 24px;
  line-height: 1;
  font-weight: 600;
}

.rts-tour-area.inner .form-area {
  padding: 0;
  background: none;
  box-shadow: none;
}
.rts-tour-area.inner .form-area .custom-select {
  position: relative;
  width: max-content;
  cursor: pointer;
}
.rts-tour-area.inner .form-area .custom-select .tag {
  margin-bottom: 10px;
  color: var(--color-white);
  font-weight: 500;
}
.rts-tour-area.inner .form-area .custom-select .icon {
  position: absolute;
  z-index: 1;
  left: 12px;
  bottom: 15px;
}
.rts-tour-area.inner .form-area .custom-select .icon svg path {
  fill: var(--color-white);
}
.rts-tour-area.inner .form-area .custom-select .dropdown-icon {
  position: absolute;
  z-index: 1;
  right: 20px;
  top: 50%;
  transform: translateY(-50%) rotate(0);
  transition: var(--transition);
  font-size: 14px;
  line-height: 1;
}
.rts-tour-area.inner .form-area .custom-select.active .dropdown-icon {
  transform: translateY(-50%) rotate(-180deg);
}
.rts-tour-area.inner .form-area .custom-select-trigger {
  background: transparent;
  border: 1px solid #ffd7b7;
  padding: 13px 44px 13px 15px;
  border-radius: 4px;
  font-weight: 500;
  color: var(--color-heading-1);
  position: relative;
  z-index: 1;
  line-height: 1;
}
.rts-tour-area.inner .form-area .custom-options {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  border-radius: 0;
  margin: 5px 0 0;
  padding: 0;
  list-style: none;
  display: block;
  z-index: 10;
  max-height: 250px;
  height: 0;
  overflow-y: scroll;
  transition: all 0.4s;
}
.rts-tour-area.inner .form-area .custom-options .option {
  padding: 6px 13px;
  transition: all 0.4s;
  margin: 0;
  font-size: 12px;
}
.rts-tour-area.inner .form-area .custom-options .option:hover {
  background: var(--color-primary);
  color: var(--color-white);
}
.rts-tour-area.inner .form-area .button-area .rts-btn {
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.rts-tour-area.inner .form-area .button-area .rts-btn svg path {
  transition: var(--transition);
}
.rts-tour-area.inner .form-area .button-area .rts-btn:hover svg path {
  fill: var(--color-primary);
}

.rts-tour-details-area .bottom-content-area {
  display: flex;
  margin-right: calc(var(--bs-gutter-x) * -0.5);
  margin-left: calc(var(--bs-gutter-x) * -0.5);
}
.rts-tour-details-area .bottom-content-area .left {
  max-width: 67%;
  width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.rts-tour-details-area .bottom-content-area .right {
  max-width: 33%;
  width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
}
.rts-tour-details-area .bottom-content-area .right .sticky-top {
  top: 100px;
}
.rts-tour-details-area .bottom-content-area .right .pricing-box .tag {
  background: #ffcc00;
  color: #0d0d0d;
  line-height: 1;
  font-weight: 500;
  border-radius: 4px;
  padding: 10px 8px;
  max-width: max-content;
}
.rts-tour-details-area .bottom-content-area .right .pricing-box .price-area {
  display: flex;
  justify-content: space-between;
  margin-bottom: 22px;
  position: relative;
  z-index: 1;
}
.rts-tour-details-area
  .bottom-content-area
  .right
  .pricing-box
  .price-area::after {
  content: "";
  position: absolute;
  z-index: 1;
  width: 1px;
  height: 100%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: var(--color-border);
}
.rts-tour-details-area
  .bottom-content-area
  .right
  .pricing-box
  .price-area
  .price
  .current
  h5 {
  margin-bottom: 0;
  font-size: 26px;
}
.rts-tour-details-area
  .bottom-content-area
  .right
  .pricing-box
  .price-area
  .price
  .current
  h5
  span {
  color: var(--color-body-1);
  font-size: 16px;
  font-weight: 500;
}
.rts-tour-details-area .bottom-content-area .right .pricing-box .rts-btn {
  padding: 14px 15px;
}
.rts-tour-details-area .bottom-content-area .right .pricing-box p.desc {
  color: var(--color-body-1);
  margin-top: 15px;
}
.rts-tour-details-area .bottom-content-area .right .pricing-box p.desc a {
  color: var(--color-primary);
}
.rts-tour-details-area .bottom-content-area .content-box {
  padding: 30px;
}
.rts-tour-details-area .bottom-content-area .tour-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 10px;

  gap: 20px;
}
.rts-tour-details-area .bottom-content-area .tour-content .left-content {
  max-width: 450px;
}
.rts-tour-details-area .bottom-content-area .tour-content .left-content .title {
  font-size: 36px;
  text-transform: capitalize;
  line-height: 1;
  margin-bottom: 10px;
}
.rts-tour-details-area
  .bottom-content-area
  .tour-content
  .left-content
  .meta-area {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 0;
  margin: 0;
}
.rts-tour-details-area
  .bottom-content-area
  .tour-content
  .left-content
  .meta-area
  li {
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--color-heading-1);
  font-weight: 500;
}
.rts-tour-details-area
  .bottom-content-area
  .tour-content
  .left-content
  .meta-area
  li
  i {
  color: var(--color-primary);
}
.rts-tour-details-area .bottom-content-area .tour-content .right-content {
  min-width: max-content;
}
.rts-tour-details-area
  .bottom-content-area
  .tour-content
  .right-content
  .day-left {
  border: 1px solid var(--color-primary);
  text-align: center;
  border-radius: 6px;
}
.rts-tour-details-area
  .bottom-content-area
  .tour-content
  .right-content
  .day-left
  h4 {
  color: var(--color-white);
  background: var(--color-primary);
  padding: 18px 32px;
  margin-bottom: 0;
  font-size: 36px;
  line-height: 1;
}
.rts-tour-details-area
  .bottom-content-area
  .tour-content
  .right-content
  .day-left
  p {
  padding: 17px 0;
  color: var(--color-heading-1);
  font-weight: 500;
  line-height: 1;
}
.rts-tour-details-area .bottom-content-area .contact-area {
  position: relative;
  z-index: 2;
}
.rts-tour-details-area .bottom-content-area .contact-area .contact-form {
  padding: 30px;
}
.rts-tour-details-area
  .bottom-content-area
  .contact-area
  .contact-form
  .rts-btn {
  padding: 22px 60px;
}

.tour-details-tab-area .nav-tabs {
  display: flex;
  align-items: center;
  gap: 80px;
  margin: 0;
  margin-bottom: 40px;
}
.tour-details-tab-area .nav-tabs .nav-item {
  padding: 0;
  margin: 0;
}
.tour-details-tab-area .nav-tabs .nav-item .nav-link {
  padding: 0;
  margin-bottom: 0;
  background: none;
  border: none;
  color: var(--color-heading-1);
  line-height: 1;
  padding-bottom: 20px;
  position: relative;
  z-index: 1;
}
.tour-details-tab-area .nav-tabs .nav-item .nav-link::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 1px;
  background: var(--color-primary);
  bottom: 0;
  left: 0;
  z-index: 1;
  transition: var(--transition);
}
.tour-details-tab-area .nav-tabs .nav-item .nav-link.active {
  color: var(--color-primary);
}
.tour-details-tab-area .nav-tabs .nav-item .nav-link.active::after {
  width: 100%;
}

.tour-details-tab-content .tab-content-inner {
  /* Toggle switch */
  /* Accordion items */
}
.tour-details-tab-content .tab-content-inner .highlight-area ul li {
  display: flex;
  align-items: center;
  gap: 5px;
  font-weight: 500;
}
.tour-details-tab-content .tab-content-inner .highlight-area ul li i {
  color: var(--color-primary);
}
.tour-details-tab-content .tab-content-inner .highlight-area ul li.tag {
  color: var(--color-primary);
}
.tour-details-tab-content .tab-content-inner .itinerary-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.tour-details-tab-content .tab-content-inner .itinerary-header h2 {
  font-size: 22px;
  font-weight: 600;
  color: #5b311a;
}
.tour-details-tab-content .tab-content-inner .expand-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
}
.tour-details-tab-content .tab-content-inner .switch {
  position: relative;
  display: inline-block;
  width: 38px;
  height: 20px;
}
.tour-details-tab-content .tab-content-inner .switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.tour-details-tab-content .tab-content-inner .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #d9c1aa;
  transition: 0.3s;
  border-radius: 34px;
}
.tour-details-tab-content .tab-content-inner .slider:before {
  position: absolute;
  content: "";
  height: 14px;
  width: 14px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: 0.3s;
  border-radius: 50%;
}
.tour-details-tab-content .tab-content-inner input:checked + .slider {
  background-color: #b46a3b;
}
.tour-details-tab-content .tab-content-inner input:checked + .slider:before {
  transform: translateX(18px);
}
.tour-details-tab-content .tab-content-inner .itinerary-item {
  border-top: 1px solid #f0e0d2;
}
.tour-details-tab-content .tab-content-inner .itinerary-item:first-child {
  border: none;
}
.tour-details-tab-content .tab-content-inner .itinerary-content {
  max-height: 0;
  overflow: hidden;
  transition: var(--transition);
  padding: 0;
}
.tour-details-tab-content .tab-content-inner .itinerary-content p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}
.tour-details-tab-content
  .tab-content-inner
  .itinerary-item.active
  .itinerary-content {
  max-height: 150px;
  padding: 0 0 15px;
}
.tour-details-tab-content .tab-content-inner .faq .itinerary-item {
  border: 1px solid var(--color-border);
  margin-bottom: 20px;
  padding: 0 24px;
  border-radius: 6px;
}
.tour-details-tab-content .tab-content-inner .faq .itinerary-item:last-child {
  margin-bottom: 0;
}

.fade:not(.show) {
  opacity: 0;
  display: none;
}

.fade.show {
  display: block;
  pointer-events: all;
}

.why-choose-left-image-area {
  position: relative;
  z-index: 1;
  padding-bottom: 77px;
  margin-right: 55px;
}
.why-choose-left-image-area .main-image {
  max-width: max-content;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.why-choose-left-image-area .main-image .content {
  position: absolute;
  z-index: 1;
  width: max-content;
  z-index: 2;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}
.why-choose-left-image-area .main-image .content h2 {
  color: var(--color-white);
  font-size: 40px;
  line-height: 1;
  margin: 5px 0 7px;
  text-transform: uppercase;
}
.why-choose-left-image-area .main-image .content p {
  color: var(--color-white);
  font-weight: 500;
}
.why-choose-left-image-area .main-image::after {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  background: linear-gradient(180deg, #ba6827 0%, rgba(0, 0, 0, 0) 48.24%);
  height: 100%;
  width: 100%;
}
.why-choose-left-image-area .floating-image {
  position: absolute;
  z-index: 1;
  bottom: 0;
  right: 0;
}
.why-choose-left-image-area.yacht .main-image::after {
  display: none;
}

.why-choose-right-side-content .section-title-area .desc {
  margin-top: 10px;
}
.why-choose-right-side-content .button-area .rts-btn {
  padding: 19px 24px 17px;
  border: 1px solid var(--color-primary);
}
.why-choose-right-side-content.yacht {
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.why-choose-right-side-content.yacht .why-choose-wrapper-list {
  max-width: 380px;
}
.why-choose-right-side-content.yacht .why-choose-wrapper-list li {
  padding: 0;
  margin: 0;
  padding-bottom: 10px;
  border-bottom: 1px solid #afe3ff;
}
.why-choose-right-side-content.yacht
  .why-choose-wrapper-list
  li
  .content
  .title {
  text-transform: uppercase;
}
.why-choose-right-side-content.yacht .why-choose-wrapper-list li:last-child {
  border: none;
}

.why-choose-wrapper-list {
  padding: 0;
  margin: 0;
  margin-top: 30px;
  max-width: 520px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 45px;
}
.why-choose-wrapper-list li {
  display: flex;
  align-items: center;
  gap: 30px;
  border: 1px solid var(--color-border);
  padding: 24px 26px;
  margin: 0;
}
.why-choose-wrapper-list li .content .title {
  margin-bottom: 5px;
}
.why-choose-wrapper-list li .content p {
  font-weight: 500;
}

.gallery-wrapper {
  position: relative;
  z-index: 1;
}
.gallery-wrapper.with-icon a {
  position: relative;
  z-index: 1;
  overflow: hidden;
  display: block;
  border-radius: 10px;
}
.gallery-wrapper.with-icon a:hover::after {
  opacity: 1;
}
.gallery-wrapper.with-icon a:hover .icon {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
.gallery-wrapper.with-icon a::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
  top: 0;
  left: 0;
  background: rgba(0, 58, 89, 0.5);
  opacity: 0;
  transition: var(--transition);
}
.gallery-wrapper.with-icon a .icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1.5);
  z-index: 2;
  opacity: 0;
  transition: var(--transition);
}
.gallery-wrapper .gallery-image {
  cursor: zoom-in;
}

@keyframes waves {
  0% {
    -webkit-transform: scale(0.2, 0.2);
    transform: scale(0.2, 0.2);
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  }
  50% {
    opacity: 0.9;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=90)";
  }
  100% {
    -webkit-transform: scale(0.9, 0.9);
    transform: scale(0.9, 0.9);
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  }
}
@media (max-width: 1400px) {
  .rts-footer-area-one.yacht .left {
    width: 27%;
  }

  .offer-wrapper.new .content {
    padding: 60px 30px;
  }

  .rts-tour-area.inner .tour-wrapper .content .meta-content li {
    font-size: 14px;
  }

  .tour-wrapper-list .content {
    padding: 20px;
  }
}
@media (max-width: 1400px) and (min-width: 1200px) {
  .offer-wrapper {
    padding: 45px 30px;
  }

  .why-choose-right-side-content .section-title-area .section-title {
    font-size: 42px;
  }

  .tour-wrapper .content .title {
    font-size: 19px;
  }
}
@media (max-width: 1365px) {
  .side-bar.show {
    overflow-y: auto;
  }
}
@media (max-width: 1200px) {
  .container {
    padding-left: 15px;
    padding-right: 15px;
  }

  .rts-banner-area-two .rts-banner-content-area .content-inner .section-title {
    font-size: 86px;
    line-height: 1;
  }

  .rts-footer-area-one .left {
    width: 35%;
  }

  .header-style-two .main-nav-area {
    margin-left: 50px;
  }

  .rts-footer-area-one.yacht .single-footer-widget-one {
    width: 17%;
  }

  .tour-wrapper-list {
    flex-direction: column;
    align-items: self-start;
  }

  .tour-wrapper-list .image-area {
    width: 100%;
  }
  .tour-wrapper-list .image-area img {
    width: 100%;
  }

  .tour-wrapper-list .content {
    flex-basis: 100%;
    gap: 20px;
    width: 100%;
  }
}
@media (max-width: 1200px) and (min-width: 991px) {
  .offer-wrapper .title {
    font-size: 24px;
  }

  .offer-wrapper {
    padding: 40px 30px;
  }

  .offer-wrapper {
    height: 430px;
  }

  .why-choose-right-side-content .section-title-area .section-title {
    font-size: 36px;
  }

  .why-choose-left-image-area .floating-image {
    right: -25px;
    bottom: -25px;
  }

  .blog-wrapper .content-area {
    bottom: 25px;
    left: 20px;
  }

  .blog-wrapper .blog-title {
    font-size: 18px;
  }

  .why-choose-left-image-area .floating-image {
    max-width: 200px;
  }

  .testimonials-wrapper-three {
    padding: 30px 20px 35px;
  }

  .why-choose-right-side-content .section-title-area .section-title {
    font-size: 42px;
  }

  .tour-details-tab-area .nav-tabs {
    gap: 50px;
  }
}
@media (max-width: 991px) {
  .offer-wrapper {
    height: 460px;
  }

  .why-choose-left-image-area {
    margin-right: 0;
    margin-bottom: 50px;
  }

  .header-style-two .header-top .header-top-inner .right .social-area {
    display: none;
  }

  .header-style-two .main-nav-area {
    display: none;
  }

  .header-style-two .header-main-inner {
    padding: 12px 0;
  }

  .header-style-two .header-top .right-information {
    padding-left: 0;
    border: none;
  }

  .rts-banner-area-two {
    height: auto;
  }

  .rts-banner-area-two .rts-banner-content-area {
    padding: 120px 0 180px;
  }

  .blog-wrapper .content-area {
    left: 20px;
    right: 20px;
    bottom: 25px;
  }
  .blog-wrapper .content-area .blog-title {
    font-size: 24px;
  }

  .rts-footer-area-one .footer-inner {
    flex-wrap: wrap;
  }

  .rts-footer-area-one .left {
    width: 40%;
  }

  .rts-footer-area-one .mid {
    gap: 50px;
  }

  .rts-footer-area-one.yacht .left {
    width: 42%;
  }

  .rts-footer-area-one.yacht .single-footer-widget-one {
    width: 24%;
  }

  .rts-footer-area-one.yacht .footer-inner {
    justify-content: flex-start;
    gap: 30px;
  }

  .testimonials-wrapper-three {
    padding: 30px 14px 25px;
  }

  .rts-tour-details-area .bottom-content-area {
    flex-direction: column;
  }

  .rts-tour-details-area .bottom-content-area .left {
    max-width: 100%;
  }

  .rts-tour-details-area .bottom-content-area .right {
    max-width: 100%;
    margin-top: 30px;
  }
}
@media (max-width: 768px) {
  .rts-testimonials-area .section-inner .swiper-navigation .swiper-btn {
    display: none;
  }

  .header-style-two .header-top .right-information {
    display: none;
  }

  .header-style-two .header-top .header-top-inner {
    justify-content: center;
  }

  .gallery-wrapper.with-icon a img {
    width: 100%;
  }

  .single-footer-widget-one .title {
    margin-bottom: 25px;
  }

  .rts-footer-area-one .right {
    width: 50%;
    margin-top: 30px;
  }

  .rts-blog-area .section-top-area .button-area {
    min-width: 125px;
  }

  .rts-footer-area-one.yacht .left {
    width: 54%;
  }

  .rts-footer-area-one.yacht .single-footer-widget-one {
    width: 35%;
  }

  .testimonials-wrapper-three {
    padding: 30px 20px;
  }

  .tour-wrapper-list .content {
    flex-direction: column;
    align-items: self-start;
  }

  .tour-wrapper-list .content .button-area {
    margin-top: 0;
    align-items: flex-start;
  }

  .tour-details-tab-area .nav-tabs {
    gap: 40px;
  }

  .rts-tour-details-area
    .bottom-content-area
    .tour-content
    .left-content
    .title {
    font-size: 34px;
  }

  .rts-breadcrumb-area.one {
    height: 340px;
  }
  .rts-breadcrumb-area.one .breadcrumb-area-wrapper {
    padding-top: 0;
  }
}
@media (max-width: 768px) and (min-width: 576px) {
  .rts-footer-area-one .mid {
    gap: 10px;
  }

  .header-style-two .header-style-one-wrapper .button-area-start {
    flex-basis: 60%;
  }
}
@media (max-width: 576px) {
  .offer-wrapper {
    padding: 40px 30px;
  }

  .why-choose-left-image-area {
    padding-bottom: 0;
  }

  .why-choose-left-image-area .main-image {
    max-width: 100%;
  }
  .why-choose-left-image-area .main-image img {
    width: 100%;
  }

  .why-choose-left-image-area .floating-image {
    margin-top: 20px;
    position: unset;
  }
  .why-choose-left-image-area .floating-image img {
    width: 100%;
  }

  .header-style-two .header-top {
    display: none;
  }

  .rts-banner-area-two .rts-banner-content-area .content-inner .section-title {
    font-size: 70px;
  }

  .rts-footer-area-one .left {
    width: 100%;
  }

  .rts-footer-area-one .mid {
    width: 100%;
    justify-content: start !important;
  }

  .rts-footer-area-one .right {
    width: 100%;
  }

  .rts-footer-area-one.yacht .left {
    width: 100%;
  }

  .why-choose-right-side-content .section-title-area .desc br {
    display: none;
  }

  .filter-small-top-full {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .rts-tour-details-area .bottom-content-area .tour-content {
    flex-direction: column;
    align-items: self-start;
  }

  .rts-tour-details-area .bottom-content-area .tour-content .right-content {
    order: -1;
  }

  .rts-breadcrumb-area.one .breadcrumb-area-wrapper .title {
    font-size: 42px;
  }
}
@media (max-width: 450px) {
  .section-top-area.d-flex {
    flex-direction: column;
    gap: 20px;
    align-items: self-start !important;
  }

  .why-choose-wrapper-list li {
    flex-direction: column;
    align-items: self-start;
    gap: 20px;
  }

  .rts-banner-area-two .rts-banner-content-area .content-inner .section-title {
    font-size: 54px;
  }

  .rts-banner-area-two .rts-banner-content-area {
    padding: 100px 0 160px;
  }

  .blog-wrapper .content-area .blog-title {
    font-size: 20px;
  }

  .rts-footer-area-one .mid {
    gap: 20px;
    flex-direction: column;
  }

  .copyright-area-start p {
    text-align: center;
  }

  .rts-footer-area-one.yacht .single-footer-widget-one {
    width: 100%;
  }

  .offer-wrapper.new .content .title {
    font-size: 28px;
  }

  .filter-small-top-full .right-filter {
    flex-wrap: wrap;
  }

  .tour-wrapper-list .content .meta-content {
    gap: 20px;
  }

  .rts-tour-details-area
    .bottom-content-area
    .tour-content
    .left-content
    .title {
    font-size: 24px;
  }

  .rts-tour-details-area .bottom-content-area .contact-area .contact-form {
    padding: 20px 15px;
  }

  .rts-tour-details-area .bottom-content-area .content-box {
    padding: 20px 15px;
  }

  .rts-breadcrumb-area.one .breadcrumb-area-wrapper .title {
    font-size: 32px;
  }

  .why-choose-left-image-area .main-image .content {
    max-width: 300px;
  }

  .why-choose-left-image-area .main-image .content h2 {
    font-size: 30px;
  }
}

/* Ensure the wrapper is the reference for the overlay */
.offer-wrapper {
  position: relative;
  z-index: 1;
  overflow: hidden; /* Keeps the overlay inside the rounded corners */
}

/* The Top 33% Overlay */
.offer-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 33%; /* Only covers the top third */
  /* Gradient: Dark at the very top, fades to invisible at 33% */
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(0, 0, 0, 0) 100%
  );
  z-index: 0;
  pointer-events: none; /* Ensures you can still click things under it */
}

/* Ensure the text and buttons stay visible above the overlay */
.offer-wrapper > * {
  position: relative;
  z-index: 2;
}

/* Specifically ensure background images don't hide under the overlay */
.offer-wrapper[data-bg-src] {
  background-size: cover;
  background-position: center;
}

/* 1. Make the Dropdown Background Semi-Transparent Dark */
.main-nav-area ul.rts-desktop-menu .rts-has-dropdown .rts-submenu {
  background: rgba(30, 30, 30, 0.85) !important; /* Semi-transparent black */
  backdrop-filter: blur(10px); /* Adds a high-end frosted glass effect */
  border: 1px solid rgba(255, 255, 255, 0.1); /* Subtle border for definition */
}

/* 2. Ensure the text inside the dropdown is White and readable */
.main-nav-area
  ul.rts-desktop-menu
  .rts-has-dropdown
  .rts-submenu
  li.nav-item
  .nav-link {
  color: #ffffff !important;
  background: transparent !important; /* Remove any default light backgrounds */
  transition: all 0.3s ease;
}

/* 3. Add a hover effect for the menu items so the user knows which one they are on */
.main-nav-area
  ul.rts-desktop-menu
  .rts-has-dropdown
  .rts-submenu
  li.nav-item:hover
  .nav-link {
  background: rgba(
    255,
    255,
    255,
    0.1
  ) !important; /* Light highlight on hover */
  color: var(
    --color-primary
  ) !important; /* Highlights text with your orange theme color */
}

/* 4. Fix for the Mega Menu (Destinations) titles */

/* 5. Fix for Mega Menu Destination Titles in the grid */

header.header-style-two {
  position: absolute;
  width: 100%;
  z-index: 1000;
  background: transparent !important;
}

.header-style-two .header-top {
  background: rgba(0, 0, 0, 0.3) !important;
  /* Tinted top bar */
}

.header-style-two .header-main {
  background: rgba(0, 0, 0, 0.1) !important;
  /* Very subtle tint for logo area */
}

/* Target the header ONLY when it becomes sticky */
header.header-style-two.sticky {
  /* 0,0,0 is black | 0.7 is the opacity (30% less than solid) */
  background: rgba(0, 0, 0, 0.7) !important;

  /* This adds a "frosted glass" effect which makes the 30% transparency look very professional */
  backdrop-filter: blur(10px);

  transition: background 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

/* Ensure the logo area doesn't have its own background color interfering */
header.header-style-two.sticky .header-main {
  background: transparent !important;
}

/* White Text */
.header-style-two .main-nav-area .rts-desktop-menu .menu-item a,
.header-style-two .header-top p,
.header-style-two .header-top a,
.header-style-two .header-top span {
  color: #ffffff !important;
}

.logo-area .logo img {
  height: 90px;
  /* Adjust this until it looks perfect with your menu */
  width: auto;
  /* Keeps proportions */
  display: block;
  transition: all 0.3s ease;
  /* Makes the transition to sticky smooth */
}

.header-style-two .header-top {
  border-bottom: 0px solid var(--color-border);
  padding: 12px 0 11px;
}

/* Target the header ONLY when it becomes sticky */
header.header-style-two.sticky {
  background: rgba(0, 0, 0, 0.6) !important;
  /* Slightly darker for better contrast */
  backdrop-filter: blur(10px);
  transition: background 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

/* ADD THIS: This handles the logo sizing inside the sticky header */
header.header-style-two.sticky .logo img {
  height: 70px !important;
  /* Constrains height when scrolling */
  width: auto !important;
  /* Keeps proportions perfect */
  transition: all 0.3s ease;
}

/* ADD THIS: This makes sure your dropdowns are readable on the sticky header */
header.header-style-two.sticky .rts-submenu {
  background: rgba(0, 0, 0, 0.9) !important;
  /* Very dark dropdown bg */
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.rts-section-gap {
  padding: 70px 0;
}

/* Ensure the image container has a consistent height */
.tour-wrapper .image-area {
  height: 200px; /* Adjust this value to your preferred height */
  overflow: hidden;
  display: block;
}

/* Force the image to fill the container without stretching */
.tour-wrapper .image-area img {
  width: 100%;
  height: 100% !important;
  object-fit: cover; /* This crops the edges so the image isn't squished */
  transition: transform 0.3s ease;
}

/* Optional: Keep the same height for the List View thumbnails too */
.tour-wrapper-list .image-area {
  width: 300px; /* Matches your current width */
  height: 200px;
  flex-shrink: 0; /* Prevents the image from shrinking in the flex row */
}

.tour-wrapper-list .image-area img {
  width: 100%;
  height: 100% !important;
  object-fit: cover;
}

/* Atlas Map Styling */
#atlas-container {
  width: 100%;
  background: white;
  padding: 10px;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  box-sizing: border-box;
}

#atlas-map {
  width: 100%;
  height: 600px;
  /* Adjust height as needed */
  background: #aad3df;
  position: relative;
  border: 1px solid #ccc;
  overflow: hidden;
}

/* City Label Styling */
.city-label-container {
  display: flex;
  align-items: center;
  pointer-events: none;
}

.city-dot {
  width: 4px;
  height: 4px;
  background: white;
  border: 1.5px solid #000;
  border-radius: 50%;
  z-index: 1000;
}

.city-text {
  font-family: Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #000;
  text-shadow:
    2px 2px 0 #fff,
    -2px -2px 0 #fff,
    2px -2px 0 #fff,
    -2px 2px 0 #fff;
  white-space: nowrap;
  position: absolute;
  padding: 0 4px;
}

.pos-top {
  transform: translate(-50%, -20px);
  left: 2px;
}

.pos-bottom {
  transform: translate(-50%, 10px);
  left: 2px;
}

/* Atlas Background Labels */

.map-branding-overlay {
  position: absolute;
  bottom: 10px;
  right: 10px;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.7);
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: bold;
}

/* --- TOGGLE SWITCH --- */
.switch {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 22px;
  margin-left: 10px;
}
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: 0.4s;
  border-radius: 34px;
}
.slider:before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: 0.4s;
  border-radius: 50%;
}
input:checked + .slider {
  background-color: #00aeef;
}
input:checked + .slider:before {
  transform: translateX(18px);
}

/* --- TIMELINE & LIST --- */
.itinerary-list-container {
  position: relative;
  padding-left: 0;
}
.itinerary-list-container::before {
  content: "";
  position: absolute;
  left: 21px;
  top: 10px;
  bottom: 10px;
  border-left: 1px dashed #e0e0e0;
  z-index: 0;
}
.itinerary-item {
  position: relative;
  padding-left: 60px;
  padding-bottom: 10px;
  padding-top: 10px;
}
.itinerary-title-btn {
  background: transparent;
  border: none;
  padding: 0;
  width: 100%;
  text-align: left;
  display: flex;
  align-items: center;
  font-weight: 700;
  font-size: 18px;
  color: #333;
  cursor: pointer;
  outline: none;
}
.itinerary-item.active .itinerary-title-btn {
  color: #00aeef;
}

.icon-box {
  position: absolute;
  left: 0;
  width: 44px;
  display: flex;
  justify-content: center;
  background: white;
  z-index: 1;
  top: 12px;
}
.blue-ring {
  width: 15px;
  height: 15px;
  border: 2px solid #00aeef;
  border-radius: 50%;
  background: white;
  margin-top: 5px;
}
.itinerary-content {
  margin-top: 8px;
  color: #666;
  display: none;
}
.itinerary-item.active .itinerary-content {
  display: block;
}

/* 1. Reduce space between list items (li) */
.tour-inclusions li {
  display: flex !important;
  align-items: flex-start !important;
  margin-bottom: 4px !important;
  font-weight: 500;
  /* Reduced from 10px to 4px */
  line-height: 1.3 !important;
  /* Slightly tighter line spacing */
}

/* 2. Reduce space under "Package includes" and "Package excludes" titles */
.tour-inclusions h5,
.tour-inclusions .title {
  margin-bottom: 5px !important;
  /* Tightens space under the heading */
}

/* 3. Reduce space for the list container itself */
.tour-inclusions ul {
  list-style: none !important;
  padding: 0 !important;
  margin-top: 5px !important;
  /* Tightens gap between title/line and the first item */
  margin-bottom: 20px !important;
  /* Space before the next section starts */
}

/* 4. Icon alignment for tighter lines */
.tour-inclusions li i {
  flex-shrink: 0 !important;
  margin-right: 8px !important;
  margin-top: 3px !important;
  /* Adjusted slightly for the new line-height */
  color: #0088cc;
  font-size: 14px !important;
}

.tour-inclusions p {
  font-size: var(--font-size-b2);
  line-height: var(--line-height-b2);
  font-weight: 500;
  color: var(--color-body-1);
  margin: 0 0 00px;
  margin-bottom: 18px;
}

/* 1. Base Styles for Menu Links */
.mobile-menu-main a {
  color: #ffffff;
  /* Makes links white */
  text-decoration: none;
  /* Removes default underline */
  transition: color 0.3s ease;
  /* Makes the hover transition smooth */
}

.mobile-menu-main nav ul li.has-droupdown ul a {
  padding: 10px 20px;
}

/* 2. Hover State for Menu Links */
.mobile-menu-main a:hover {
  color: #007bff;
  /* Turns links blue on hover */
}

/* 3. Submenu Indentation and Spacing */
.mobile-menu-main .submenu {
  padding-left: 20px;
  /* Pushes the submenu text inwards */
  list-style: none;
  /* Removes default bullet points if any */
}

/* 4. Submenu Link Adjustments (Optional but Recommended) */
.mobile-menu-main .mobile-menu-link {
  display: inline-block;
  padding: 6px 0;
  /* Adds a little vertical spacing between submenu items */
  font-size: 0.95em;
  /* Slightly smaller text for a cleaner hierarchy */
}

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

.tour-inclusions li {
  position: relative;

  margin-bottom: 10px;
}

.gallery-wrapper .hover-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.mfp-counter {
  display: none !important;
}

.gallery-image {
  position: relative;
  display: block;
}

.gallery-caption {
  position: absolute;
  left: 10px;
  bottom: 10px;
  color: white;
  font-size: 14px;
  font-weight: 600;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.8);
  z-index: 5;
}

/* ========================================================================== 
   ULTRA-COMPACT BORDERLESS BLACK-TEXT PRINT STYLESHEET
   ========================================================================== */

@media print {
  /* 1. PAGE SETUP - Minimal margins */
  @page {
    size: A4;
    margin: 0.93cm 0.94cm;
  }
  /* FORCE NATURAL FLOW & REMOVE ALL BORDERS/COLORS */
  * {
    -webkit-print-color-adjust: exact !important;
    print-color-adjust: exact !important;
    position: static !important;
    height: auto !important;
    max-height: none !important;
    overflow: visible !important;
    transition: none !important;
    border: none !important;
    box-shadow: none !important;
    top: 0 !important;
    color: #000 !important; /* All text becomes black */
  }

  body {
    background: #fff !important;
    color: #000 !important;
    font-family: "Segoe UI", Arial, sans-serif !important;
    font-size: 7.5pt !important;
    line-height: 1.2 !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  /* 2. REMOVE WEB UI ARTIFACTS */
  header,
  footer,
  .header-style-two,
  .rts-breadcrumb-area,
  .rts-footer-area-one,
  #side-bar,
  #side-bar2,
  #anywhere-home,
  .progress-wrap,
  .slider-drag-cursor,
  .nav-tabs,
  .contact-area,
  .expand-toggle,
  .menu-btn-toggle,
  #location,
  #gallery,
  .menu-btn,
  .rts-btn,
  .button-area-start,
  .header-top,
  .day-left,
  .right-content {
    display: none !important;
    visibility: hidden !important;
  }

  /* 3. FORCE CONTENT VISIBILITY (Overview & Itinerary) */
  .tab-content,
  .tab-pane,
  #itinerary,
  #overview,
  .fade:not(.show) {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    width: 100% !important;
    height: auto !important;
    margin-top: 5pt !important;
  }

  /* 4. TITLE & SUBTITLE SECTION */
  .rts-tour-details-area,
  .tour-details-wrapper,
  .tour-content,
  .left-content {
    display: block !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  h4.title {
    display: block !important;
    font-size: 14pt !important;
    font-weight: 900 !important;
    margin-bottom: 5pt !important;
    color: #000 !important;
  }

  /* 5. METADATA */
  .meta-area {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 4pt 10pt !important;
    margin: 5pt 0 !important;
    list-style: none !important;
    padding: 0 !important;
  }

  .meta-area li {
    font-size: 8pt !important;
    display: flex !important;
    align-items: center !important;
  }

  .meta-area li i {
    color: #000 !important;
    margin-right: 4pt !important;
  }

  /* 6. ITINERARY DESIGN (2-COLUMN LAYOUT LIKE PRICING) */
  .itinerary-list-container {
    display: block !important;
    width: 100% !important;
    margin-top: 5pt !important;
    column-count: 2; /* Side-by-side days */
    column-gap: 30pt;
  }

  .itinerary-item {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    clear: none !important; /* Allow columns to flow */
    margin: 0 0 5pt 15pt !important; /* Indented Itinerary */
    padding: 0 !important;
    break-inside: avoid-column !important; /* Don't split a single day between columns */
    page-break-inside: avoid !important;
  }

  .itinerary-title-btn {
    font-weight: 700 !important;
    font-size: 8.5pt !important;
    margin-bottom: 1pt !important;
    display: block !important;
    color: #000 !important;
  }

  .itinerary-content {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
  }

  /* 7. PRICING & CONDITIONS */
  .pricing-box {
    margin-top: 15pt !important;
    column-count: 2;
    column-gap: 30pt;
    page-break-inside: avoid;
    width: 100% !important;
  }

  .pricing-box h6 {
    font-size: 8.5pt !important;
    text-transform: uppercase;
    margin-bottom: 3pt !important;
    font-weight: 800 !important;
    color: #000 !important;
  }

  .tour-inclusions li {
    list-style: none !important;
    margin-bottom: 1pt !important;
  }

  .tour-inclusions li i {
    color: #000 !important;
    margin-right: 4pt !important;
  }

  /* 8. ALIGNMENT & SPACE REDUCTION */
  .container,
  .bottom-content-area,
  .left,
  .right,
  .overview-area,
  .itinerary-area {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
  }

  .mb--60,
  .overview-area {
    margin-bottom: 5pt !important;
  }

  .mt--50,
  .mt--20,
  .p-4,
  .pt--100,
  .pt--0,
  .rts-section-gapBottom {
    margin: 0 !important;
    padding: 0 !important;
  }

  p {
    margin-bottom: 4pt !important;
  }
}

#atlas-container {
  display: none !important;
}

/* allow grid children to shrink/grow correctly inside columns */
.meta-area li {
  min-width: 0 !important;
}

/* ensure route text stays on one line and can expand */
.meta-area li span {
  display: inline-block !important;
  white-space: nowrap !important;
  overflow: visible !important;
}

/* small visual tweak so the route icon keeps vertical alignment */
.meta-area li i.fa-route {
  margin-top: 6px !important;
}

/* Base styles for the figure container */

/* Rounded corners for the image itself */

/* Right alignment */

/* Left alignment */

/* Optional: Center the caption text */

.filter-small-top-full {
  display: none !important;
}

/* Atlas Map Styling */
#atlas-container {
  width: 100%;
  background: white;
  padding: 10px;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  box-sizing: border-box;
}

#atlas-map {
  width: 100%;
  height: 600px;
  /* Adjust height as needed */
  background: #aad3df;
  position: relative;
  border: 1px solid #ccc;
  overflow: hidden;
}

/* City Label Styling */
.city-label-container {
  display: flex;
  align-items: center;
  pointer-events: none;
}

.city-dot {
  width: 4px;
  height: 4px;
  background: white;
  border: 1.5px solid #000;
  border-radius: 50%;
  z-index: 1000;
}

.city-text {
  font-family: Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #000;
  text-shadow:
    2px 2px 0 #fff,
    -2px -2px 0 #fff,
    2px -2px 0 #fff,
    -2px 2px 0 #fff;
  white-space: nowrap;
  position: absolute;
  padding: 0 4px;
}

.pos-top {
  transform: translate(-50%, -20px);
  left: 2px;
}

.pos-bottom {
  transform: translate(-50%, 10px);
  left: 2px;
}

/* Atlas Background Labels */
.atlas-region-label {
  font-family: Georgia, serif;
  font-weight: 400;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.24);
  letter-spacing: 9px;
  font-size: 24px;
  z-index: 350;
  text-align: center;
  white-space: nowrap;
  pointer-events: none;
}

.atlas-water-label {
  font-family: Georgia, serif;
  font-style: italic;
  font-weight: 400;
  color: rgba(0, 70, 140, 0.22);
  font-size: 18px;
  letter-spacing: 7px;
  text-transform: uppercase;
  white-space: nowrap;
  z-index: 340;
  text-align: center;
  pointer-events: none;
}

.map-branding-overlay {
  position: absolute;
  bottom: 10px;
  right: 10px;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.7);
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: bold;
}

.leaflet-routing-container,
.leaflet-routing-error {
  display: none !important;
}

/* --- TOGGLE SWITCH --- */

.share-link ul li a {
  background: transparent !important;
  color: #333333 !important; /* Set this to whatever color you want the icons to be */
  border: none !important;
}

.meta-content {color: black;}


/* 1. Target the SVG in the tour/blog detail areas */
.rts-tour-area.inner .blog-details-area ul li svg,
.rts-blog-area.inner .blog-details-area ul li svg,
.meta-content li svg {
  fill: var(
    --color-primary
  ) !important; /* Uses your theme's orange/brown color */
  width: 24px !important; /* Matches the 24px font-size you found */
  height: 24px !important;
  display: inline-block;
  vertical-align: middle;
  margin-right: 0px; /* Adjust spacing to text */
  position: relative;
  top: -2px; /* Nudge it up for perfect alignment */
}

/* 1. Set the size on the SVG container */
.meta-content li svg,
.meta-area li svg {
  width: 22px !important;
  height: 22px !important;
  flex-shrink: 0; /* Prevents icon from squishing */
  display: inline-block;
  vertical-align: middle;
}

/* 2. Force the path to use your brand color */
.meta-content li svg path,
.meta-area li svg path {
  fill: var(--color-primary) !important;
}

/* Style the breadcrumb separator icon */
.nav-bread-crumb .breadcrumb-separator svg {
  width: 10px; /* Breadcrumb icons should be small */
  height: 10px;
  fill: #666666; /* Muted grey color for the separator */
  display: inline-block;
  vertical-align: middle;
  margin: 0 12px; /* Adds equal spacing on left and right of the icon */
  position: relative;
  top: -1px; /* Centers it vertically with the text links */
}

/* Optional: change color of the icon if the whole breadcrumb is on a dark background */
.nav-bread-crumb.white-style .breadcrumb-separator svg {
  fill: #ffffff;
}

.nav-bread-crumb .breadcrumb-separator svg {
  fill: var(--color-primary);
}

/* Target the SVG specifically and use fill */
.meta-area li svg {
  fill: var(--color-primary) !important;
  width: 22px !important;
  height: 22px !important;
  display: inline-block;
  vertical-align: middle;
  margin-right: 0px;
}

/* If you still have some <i> tags, keep this for them */
.meta-area li i {
  color: var(--color-primary) !important;
  font-size: 22px !important;
  margin-right: 0px;
}

/* 1. Remove default bullets from the list */
.tour-inclusions ul {
  list-style: none !important;
  padding-left: 0 !important;
}

/* 2. Align the icon and text */
.tour-inclusions ul li {
  display: flex !important;
  align-items: flex-start; /* Icon stays at the top of the line */
  margin-bottom: 10px;
  font-size: 16px;
}

/* 3. Style the SVG Icon (Size and Primary Color) */
.tour-inclusions ul li svg.highlight-icon {
  fill: var(--color-primary) !important; /* Forces your brand orange/brown */
  width: 18px !important;
  height: 18px !important;
  min-width: 18px; /* Prevents icon from squishing on small screens */
  margin-right: 12px; /* Clean spacing instead of &nbsp; */
  margin-top: 4px; /* Tiny nudge to align with the first line of text */
}

.meta-area {
  line-height: 1.2 !important; /* Adjust this number: 1.1 is tighter, 1.4 is looser */
}

.meta-area li {
  display: flex !important;
  align-items: flex-start; /* This keeps the icon at the top line of text */
  margin-bottom: 5px; /* Adds a tiny gap between the items */
}

.meta-area li svg {
  margin-top: 3px; /* Nudges the icon down slightly to align with the first line */
  flex-shrink: 0; /* Prevents the icon from getting "squished" by long text */
  width: 22px;
  height: 22px;
  margin-right: 0px;
}

.tour-inclusions li svg {
  width: 22px !important;
  margin-right: 10px;
  height: 22px !important;
  fill: var(--color-primary) !important; /* Forces your brand orange/brown */
}

/* 1. Breadcrumb Icon Alignment */
.nav-bread-crumb .breadcrumb-separator {
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    margin: 0 12px;
}

/* 2. Fix the Filter Dropdown visibility */
.custom-options {
    height: auto !important; /* Force menu to show when toggled */
    min-width: 180px;
    background: #fff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border-radius: 6px;
    z-index: 100;
}

/* 3. Style the dropdown arrow icon */
.dropdown-icon {
    display: inline-flex;
    align-items: center;
    color: #666;
    margin-right: 8px;
}

/* 4. Center Grid/List Switcher Icons */
.nav-tabs .nav-link svg {
    display: block;
    margin: 0 auto;
}

.nav-tabs .nav-link.active svg {
    color: var(--color-primary); /* Use theme brand color when active */
}

/* 1. Ensure the container has enough space */
.custom-select {
    position: relative;
    cursor: pointer;
    display: block !important;
}

/* 2. Fix the dropdown icon alignment so it doesn't block clicks */
.dropdown-icon {
    pointer-events: none; 
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
}

/* 3. The Menu - Force it to be visible when the parent is active */
.custom-select.active .custom-options, 
.custom-select.open .custom-options {
    height: auto !important;
    max-height: 400px !important;
    opacity: 1 !important;
    visibility: visible !important;
    padding: 10px 0 !important;
    border: 1px solid #eee !important;
    transform: translateY(0) !important;
}

/* 4. Hide it when NOT active (Standard state) */
.custom-options {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    z-index: 999; /* Ensure it stays above the tours */
    overflow: hidden;
    height: 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    list-style: none;
    margin: 0;
    padding: 0;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* 1. Reset the Select Container */
.custom-select {
    position: relative;
    user-select: none;
    z-index: 100; /* Ensure it stays above tour cards */
}

.custom-select-trigger {
    display: block;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: 500;
    color: #333;
    line-height: 24px;
    background: #fff;
    cursor: pointer;
    border: 1px solid #eee;
    border-radius: 5px;
    transition: all 0.3s ease;
}

/* 2. Position the SVG Icon inside the trigger */
.dropdown-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none; /* Prevents icon from blocking the click */
    color: #666;
}

/* 3. The Options Menu - Hidden by default */
.custom-options {
    position: absolute;
    display: block;
    top: 100%;
    left: 0;
    right: 0;
    border: 1px solid #eee;
    border-top: 0;
    background: #fff;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-radius: 0 0 5px 5px;
    margin: 0;
    padding: 10px 0;
    list-style: none;
    height: auto !important; /* Overrides the height: 0px you had */
}

/* 4. SHOW MENU when parent has 'active' class */
.custom-select.active .custom-options {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    transform: translateY(0);
}

.custom-options .option {
    padding: 8px 20px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.custom-options .option:hover {
    background: #f9f9f9;
    color: var(--color-primary);
}

.custom-options .option a {
    display: block;
    text-decoration: none;
    color: inherit;
}

/* 1. Ensure the dropdown container is positioned correctly */
.custom-select {
    position: relative;
    min-width: 150px;
    z-index: 999; /* Keeps it above the tour cards */
}

/* 2. Hide the options by default */
.custom-options {
    position: absolute;
    display: block;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 0 0 5px 5px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    margin: 0;
    padding: 0;
    list-style: none;
    
    /* This part hides the menu */
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

/* 3. SHOW the options when 'active' class is added by your script */
.custom-select.active .custom-options {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* 4. Style the individual options */
.custom-options .option {
    border-bottom: 1px solid #f0f0f0;
}

.custom-options .option a {
    display: block;
    padding: 12px 20px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
}

.custom-options .option a:hover {
    background-color: #f8f8f8;
    color: var(--color-primary); /* Your brand orange/brown */
}

/* 5. Fix the Dropdown Icon rotation */
.dropdown-icon svg {
    transition: transform 0.3s ease;
}

.custom-select.active .dropdown-icon svg {
    transform: rotate(180deg); /* Flips the arrow when open */
}

.filter-small-top-full {
   overflow: visible !important; /* This must be visible so the menu can 'drop out' of the box */
}

/* ============================================================
   PACKAGE FILTER & DROPDOWN FIX
   ============================================================ */



/* 2. Clear Filter Link */
.right-filter .filter a {
    color: #007bff; /* Or your primary brand color */
    font-size: 14px;
    font-weight: 600;
    margin-right: 15px;
    text-decoration: underline;
}

/* 3. The Dropdown Trigger Box */
.custom-select {
    position: relative;
    min-width: 180px;
    display: inline-block;
    z-index: 100;
}

.custom-select-trigger {
    background: #fff;
    border: 1px solid #ddd;
    padding: 8px 40px 8px 15px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    transition: border-color 0.2s;
}

.custom-select:hover .custom-select-trigger {
    border-color: #bbb;
}

/* Position the Arrow SVG */
.dropdown-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none; /* Click "passes through" icon to the trigger */
    color: #666;
}

/* 4. The Hidden Menu */
.custom-options {
    position: absolute;
    top: calc(100% + 5px);
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 6px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    list-style: none;
    padding: 10px 0;
    margin: 0;
    
    /* Logic to show/hide */
    display: none; 
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.2s, transform 0.2s;
}

/* SHOW MENU when JS adds the "active" class */
.custom-select.active .custom-options {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.custom-options .option a {
    display: block;
    padding: 10px 20px;
    color: #444;
    text-decoration: none;
    font-size: 14px;
}

.custom-options .option a:hover {
    background: #f8f9fa;
    color: var(--color-primary); /* Your theme orange/brown */
}

/* ============================================================
   GRID / LIST BUTTON FIX
   ============================================================ */

.nav-tabs {
    border: none !important;
    gap: 8px;
    display: flex;
}

.nav-tabs .nav-item {
    margin: 0;
}

.nav-tabs .nav-link {
    width: 42px !important;
    height: 42px !important;
    background: #fff !important;
    border: 1px solid #ddd !important;
    border-radius: 6px !important;
    padding: 0 !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    color: #666 !important;
    transition: all 0.2s;
}

/* Active Button (Turns blue/orange and icon white) */
.nav-tabs .nav-link.active {
    background: #0088ff !important; /* Set to your preferred active color */
    border-color: #0088ff !important;
    color: #fff !important;
}

.nav-tabs .nav-link svg {
    fill: currentColor; /* Matches the text color (white when active) */
}

/* 1. The Container Bar - Cleaner and Slimmer */
.filter-small-top-full {
    display: flex !important;
    justify-content: flex-end; /* Push everything to the right */
    align-items: center;
    
    padding: 10px 20px !important;
    border-radius: 12px !important;   
    margin-bottom: 40px;
    gap: 15px;
}

/* 2. Clear Filter - Make it a subtle secondary link */
.right-filter .filter a {
    color: #888 !important;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none !important;
    margin-right: 10px;
    transition: color 0.3s;
}
.right-filter .filter a:hover {
    color: var(--color-primary) !important;
}

/* 3. The Dropdown Trigger - Make it look like a Button, not a Form */
.custom-select {
    min-width: 160px;
}

.custom-select-trigger {
    height: 44px;
    display: flex;
    align-items: center;
    padding: 0 40px 0 20px !important;
    border-radius: 30px !important; /* Rounded pill shape is more modern */
    background: #f8f9fa !important;
    border: 1px solid #eee !important;
    font-size: 14px;
    font-weight: 600;
    color: #444;
}

.custom-select-trigger:hover {
    background: #fff !important;
    border-color: #ddd !important;
}

/* 4. The Grid/List Buttons - Match the height and roundness */
.nav-tabs {
    border: none !important;
    display: flex;
    gap: 8px;
}

.nav-tabs .nav-link {
    width: 44px !important;
    height: 44px !important;
    background: #f8f9fa !important;
    border: 1px solid #eee !important;
    border-radius: 50% !important; /* Circles look more premium here */
    display: flex !important;
    align-items: center;
    justify-content: center;
    color: #888 !important;
    padding: 0 !important;
    transition: all 0.3s ease;
}

/* Match the Blue exactly to your 'Voip online' button */
.nav-tabs .nav-link.active {
    
    
    color: #fff !important;
    box-shadow: 0 4px 12px rgba(0, 136, 255, 0.3);
}

.nav-tabs .nav-link svg {
    width: 16px;
    height: 16px;
}

/* ============================================================
   FIX: RESET TOUR DETAIL TABS (REMOVE CIRCLES)
   ============================================================ */

/* 1. Remove the circle, set text to black, and reset size */
.tour-details-tab-area .nav-tabs .nav-link {
    width: auto !important;          /* Overrides the fixed circle width */
    height: auto !important;         /* Overrides the fixed circle height */
    border-radius: 0 !important;     /* Removes the circle shape */
    background: transparent !important; /* Removes the white/grey background */
    color: #000000 !important;       /* Makes the text black */
    font-size: 16px !important;
    font-weight: 600 !important;
    padding: 10px 25px !important;   /* Professional spacing */
    border: none !important;
    box-shadow: none !important;      /* Removes any blue glow */
    display: inline-block !important;
}

/* 2. Active Tab State (The one currently selected) */
.tour-details-tab-area .nav-tabs .nav-link.active {
    color: var(--color-primary) !important; /* Turns your brand orange/brown */
    background: transparent !important;
    border-bottom: 3px solid var(--color-primary) !important; /* Adds a clean underline */
}

/* 3. Hover state */
.tour-details-tab-area .nav-tabs .nav-link:hover {
    color: var(--color-primary) !important;
    background: transparent !important;
}

/* 4. Fix the container padding if the text looks squashed */
.tour-details-tab-area .nav-tabs {
    display: flex !important;
    gap: 20px !important;
    border-bottom: 1px solid #eee !important; /* Subtle line under the tabs */
    padding: 0 !important;
}

/* ============================================================
   FIX: COMPACT DROPDOWN & REMOVE BLUE HIGHLIGHTS
   ============================================================ */

/* 1. The Menu Box - More compact and clean */
.custom-options {
    position: absolute;
    top: calc(100% + 5px);
    right: 0; /* Aligned to right so it doesn't go off screen */
    min-width: 160px;
    background: #ffffff !important;
    border: 1px solid #eeeeee !important;
    border-radius: 8px !important;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08) !important;
    padding: 5px 0 !important; /* Reduced padding for compactness */
    margin: 0;
    list-style: none !important;
    z-index: 9999;
}

/* 2. Individual Items - Remove blue border/background */
.custom-options .option {
    margin: 0 !important;
    padding: 0 !important;
    border: none !important; /* Removes the blue box seen in your screenshot */
}

.custom-options .option a {
    display: block !important;
    padding: 6px 15px !important; /* Compact vertical spacing */
    color: #444444 !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    text-decoration: none !important;
    background: transparent !important; /* Ensure no blue background */
    outline: none !important; /* Removes focus ring */
    transition: background 0.2s ease;
}

/* 3. Hover State - Subtle grey instead of blue */
.custom-options .option a:hover {
    background: #f5f5f5 !important;
    color: var(--color-primary) !important; /* Changes text to your brand orange on hover */
}

/* 4. Fix the trigger button font size and height to match */
.custom-select-trigger {
    height: 36px !important; /* Slimmer button */
    font-size: 13px !important;
    color: #666 !important;
    border-color: #eee !important;
}

/* 5. View Switcher Buttons - Smaller and less bulky */
.right-filter .nav-tabs .nav-link {
    width: 36px !important;
    height: 36px !important;
    background: #fdfdfd !important;
}

/* 6. Active View Switcher - Softer blue */
.right-filter .nav-tabs .nav-link.active {
    background: #119be623 !important;
    
}

/* ============================================================
   FIX: UNIFIED MOBILE MENU SPACING & SEPARATORS
   ============================================================ */

/* 1. Standardize every list item container */
.mobile-menu-main nav ul li {
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15) !important; /* The unified white line */
    line-height: 1.1;
}

/* 2. Remove the line from the very last item (Contact) */
.mobile-menu-main nav ul li:last-child {
    border-bottom: none !important;
}

/* 3. Force consistent height and vertical centering for the links */
.mobile-menu-main nav ul li a.main, 
.mobile-menu-main nav ul li a {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 18px 0 !important; /* This creates the equal distance */
    margin: 0 !important;
    border: none !important; /* Removes the old, inconsistent lines */
    font-size: 16px !important;
    font-weight: 600 !important;
    color: #ffffff !important;
    transition: all 0.3s ease;
}

/* 4. Fix the position of the dropdown arrows (chevrons) */
.mobile-menu-main nav ul li.has-droupdown::after {
    top: 50% !important;
    transform: translateY(-50%) !important;
    right: 0 !important;
    padding: 0 !important;
    opacity: 0.8;
}

/* 5. Add a hover/active effect for better UX */
.mobile-menu-main nav ul li a:hover {
    color: var(--color-primary) !important;
    padding-left: 5px !important; /* Subtle nudge on hover */
}

/* ============================================================
   PREMIUM FOOTER IMAGE BACKGROUND (MAP STYLE)
   ============================================================ */

.rts-footer-area-one {
    position: relative !important;
    background-color: #f5fcff !important; /* The base light blue color */
    overflow: hidden !important; /* Keeps the image inside the footer */
    z-index: 1;
}

.rts-footer-area-one::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    
    /* 1. REPLACE THE URL BELOW WITH YOUR MAP IMAGE PATH */
    background-image: url('https://www.csmtravel.com/cmss/uploads/csm/assets/images/others/footer-map.webp') !important;
    
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    
    /* 2. OPACITY: 0.1 makes it a subtle "watermark" 
       Increase to 0.2 if you want the roads to be darker */
    opacity: 0.3; 
    
    z-index: -1; /* Puts the image behind the text */
    pointer-events: none; /* Allows users to click links "through" the image */
}

/* 3. ENSURE CONTENT IS READABLE */
.rts-footer-area-one .container {
    position: relative;
    z-index: 2;
}

/* Optional: Make the text slightly darker to pop against the map */
.rts-footer-area-one p, 
.rts-footer-area-one a:not(.rts-btn), 
.rts-footer-area-one h6 {
    color: #222222 !important;
}

.rts-footer-area-one a:hover {
    color: var(--color-primary) !important;
}

/* This forces the Plane icon to drop to the next line in tour cards */
.tour-wrapper .content .meta-content {
    display: flex !important;
    flex-direction: column !important; /* This is the key line */
    align-items: flex-start !important; /* Aligns both lines to the left */
    gap: 12px !important;              /* Even vertical space between the rows */
    margin: 8px 0 !important;
}

/* Ensure icons and text look good when stacked */
.tour-wrapper .content .meta-content li {
    display: flex !important;
    align-items: center !important;
    margin: 0 !important;
    font-size: 15px !important;
    white-space: normal !important; /* Allows text to wrap if it's long */
}

.tour-wrapper .content .meta-content li svg {
    fill: var(--color-primary) !important; /* Matches your brand color */
    width: 20px !important;
    height: 20px !important;
    margin-right: 5px !important;
    flex-shrink: 0;
}

/* 1. Header & Meta Icons */
.left-content svg {
    width: 20px !important;
    height: 20px !important;
    fill: var(--color-primary) !important;
    vertical-align: middle;
    margin-right: 8px;
    display: inline-block;
}

/* 2. Highlight Checkmarks */
.tour-inclusions li svg {
    width: 18px !important;
    height: 18px !important;
    fill: var(--color-primary) !important;
    flex-shrink: 0; /* Important: stops icon from squishing if text is long */
    margin-top: 4px;
}

/* 3. Drag Cursor Icons */
.slider-drag-cursor svg {
    width: 24px !important;
    height: 24px !important;
    fill: #ffffff; /* Assuming white for the drag cursor */
}

/* 1. REMOVE THE GHOST BOX (F054) AFTER THE ARROW */
.metismenu .has-droupdown1 > a::after,
.metismenu .has-arrow::after,
#mobile-menu-active li a::after {
    content: none !important;
    display: none !important;
    visibility: hidden !important;
}

/* 2. TIGHTEN THE SUBMENU (Dropdown) LINE HEIGHT & SPACING */
.metismenu .submenu {
    padding-top: 5px !important;
    padding-bottom: 5px !important;
}

.metismenu .submenu li {
    margin-bottom: 5px !important; /* Remove gaps between items */
}

.metismenu .submenu li a {
    padding-top: 0px !important;    /* Adjust this for vertical spacing */
    padding-bottom: 0px !important; /* Adjust this for vertical spacing */
    line-height: 1.1 !important;    /* Tightens the text itself */
    font-size: 15px !important;     /* Optional: make submenu text slightly smaller */
    line-height: 2.0 !important;
}

/* 3. ENSURE MAIN ARROW ALIGNMENT */
#mobile-menu-active li a.main {
    display: flex !important;
    align-items: center;
    justify-content: flex-start; /* Keeps arrow close to text */
    gap: 10px; /* Space between word 'Packages' and your SVG arrow */
}

/* 1. Force the image area to a consistent aspect ratio */
.blog-wrapper .image-area {
    width: 100%;
     /* Adjust this value to your preferred height */
    overflow: hidden;
    position: relative;
}

.blog-wrapper .image-area img {
    width: 100%;
    height: 100%;
    min-height: 400px;
    object-fit: cover; /* This crops the image to fill the space without stretching */
    transition: transform 0.3s ease;
}

/* 2. Make all cards in a row the same height */
.rts-blog-area .row {
    display: flex;
    flex-wrap: wrap;
}

.rts-blog-area .col-lg-6 {
    display: flex;
}

.blog-wrapper {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%; /* Ensures the card fills the column height */
}

/* 3. Push content to the bottom if needed */
.content-area {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* This is the magic fix for the click issue */
.gallery-wrapper .icon {
    pointer-events: none !important;
}

/* Ensure the link covers the whole area */
a.gallery-image {
    display: block;
    position: relative;
    z-index: 1;
}

/* Make sure the image behaves */
.hover-image {
    cursor: pointer;
}

/* This allows the click to pass through the icon and hit the link */
.gallery-wrapper .icon {
    pointer-events: none !important;
}

/* --- FIX FOR MISSING INDENTATION & BULLETS --- */

/* Force the first list level to indent */
.itinerary-inner-text ul {
    padding-left: 25px !important;
    list-style-type: disc !important;
    margin: 10px 0 !important;
    display: block !important;
}

/* Force the SECOND level (the deeper items) to indent more */
.itinerary-inner-text ul ul {
    padding-left: 30px !important;
    list-style-type: circle !important;
    display: block !important;
}

/* Ensure bullet points are visible */
.itinerary-inner-text li {
    display: list-item !important; 
    margin-bottom: 8px !important;
    list-style-position: outside !important;
    color: #444 !important;
}

/* Optional: Hide the repeated Day title if it's still inside the box */
.itinerary-inner-text b, 
.itinerary-inner-text strong {
    display: none !important;
}

/* This tells the site to stop adding the auto-number */
.your-itinerary-class-name:before {
    display: none !important;
}

.rts-btn.btn-secondary:hover {
    color: #000 !important;
    background: #fff !important;
}