@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&display=swap");

@import url("https://fonts.googleapis.com/css2?family=Crimson+Text:ital,wght@0,400;0,600;0,700;1,400;1,600;1,700&display=swap");

@import url("https://fonts.googleapis.com/css2?family=Crimson+Text:ital,wght@0,400;0,600;0,700;1,400;1,600;1,700&family=Dancing+Script:wght@400..700&display=swap");

@import url("https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

/*  */
:root {
  /* --primary-font: "Poppins", sans-serif; */
  --primary-font: "Montserrat", sans-serif;
  --header-font: "Barlow", sans-serif;

  --header-font: "Playfair Display SC", serif;

  /*--header-font: "Merriweather", serif;*/

  /*--header-font: "Crimson Text", serif;*/
  --script-font: "Dancing Script", cursive;

  --primary-color: #000;
  --primary-color2: #000;

  --secondary-color: #333;
  --secondary-color2: #444;
  --light-gray: #efefef;

  --gold-light: #edc25b;
  --gold-dark: #a17b1a;

  --rose-gold: #d48069;

  --primary-grad: linear-gradient(
    45deg,
    var(--primary-color),
    var(--primary-color2)
  );
  --primary-grad-reverse: linear-gradient(
    45deg,
    var(--primary-color2),
    var(--primary-color)
  );

  --secondary-grad: linear-gradient(
    45deg,
    var(--secondary-color),
    var(--secondary-color2)
  );
  --secondary-grad-reverse: linear-gradient(
    45deg,
    var(--primary-color2),
    var(--primary-color)
  );
  --gold-grad: linear-gradient(
    330.24deg,
    var(--gold-dark) 11.99%,
    var(--gold-light) 88.79%
  );
  --silver-grad: rgba(0, 0, 0, 0) linear-gradient(90deg, #fff 43%, #d3cbd4 80%)
    repeat scroll 0 0;

  --gold-bright: linear-gradient(
    -60deg,
    #ccab5c 10%,
    #ffd809 70%,
    #d2ac47 85%,
    #edc967 100%
  );
  --light-grad: linear-gradient(45deg, var(--light-gray), var(--gold-light));

  --western-blue: #182026;
  --primary-dark: #061221;
  --ganesh-gray: #f5f3ed;
  --header-bg-color: #fff;

  --box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.05),
    0 -1px 10px 0 rgba(0, 0, 0, 0.01);
  --text-color: #313131;
  --light-bg: #f8f8f8;
  --grey-color: #f0f2f7;

  --grey-grad: linear-gradient(45deg, #f0f2f7, #e0e3ea);

  --black-grad: linear-gradient(45deg, black, #3a3a3a);
  --black-grad-reverse: linear-gradient(45deg, #3a3a3a, #111);
  --light-grad: linear-gradient(45deg, var(--light-gray), var(--gold-light));
  --light-grad-reverse: linear-gradient(
    45deg,
    var(--gold-light),
    var(--light-gray)
  );
  --welcome-grad: linear-gradient(45deg, var(--primary-color), #3b249d);
  --welcome-grad-reverse: linear-gradient(45deg, #3b249d, var(--primary-color));
  --light-grad: linear-gradient(
    to right,
    #f9f9f9 0%,
    #eaeaea 40%,
    #dcdcdc 70%,
    #cfcfcf 100%
  );
  --dark-grad: linear-gradient(
    to right,
    #1c1c1c 0%,
    #2a2a2a 40%,
    #3b3b3b 70%,
    #4d4d4d 100%
  );

  --brand-grad1: linear-gradient(
    45deg,
    var(--brand-color),
    var(--deep-blue-dark)
  );

  --kush-blue: #e1f4fa;
  --kush-navy: #0a3d62;
  --kush-teal: #0fa3b1;
  --kush-slate: #4a5568;
  /* --- BRAND COLORS --- */
  --deep-blue: #158ace; /* Primary brand color */
  --deep-blue-dark: #3271ce; /* Hover/active shade */

  --brick-blue: #0a64df;
  --all-brown: #861f22;

  --metabolic-teal: #19afa1; /* Secondary accent */
  --metabolic-teal-dark: #148d82;

  --teal-grad: linear-gradient(
    45deg,
    var(--metabolic-teal),
    var(--metabolic-teal-dark)
  );

  --sky-blue: #49b6ff; /* Highlight color */

  /* --- BACKGROUNDS --- */
  --bg-white: #ffffff; /* Main background */
  --bg-light-blue: #f7fbfe; /* Light tint for sections */
  --bg-light-teal: #f2fbf9; /* Optional teal tint */

  /* --- TEXT COLORS --- */
  --text-dark: #212121; /* Main text */
  --text-mid: #616161; /* Sub text */
  --text-light: #efefef; /* Weak text */

  --text-foreground: var(--text-mid);
  --text-button: var(--text-light);

  /* --- BORDERS & LINES --- */
  --border-soft: #e8eef3;
  --border-blue: #d6e9f7;
  --border-radius: 10px;
  /* --- BUTTON COLORS --- */
  --btn-primary: var(--all-brown);
  --btn-primary-hover: var(--deep-blue-dark);

  --btn-secondary: var(--metabolic-teal);
  --btn-secondary-hover: var(--metabolic-teal-dark);

  /* --- SPECIAL UI COLORS --- */
  --success: #26c281;
  --warning: #ffc107;
  --danger: #e53935;
  --accent-blue: #111a30;
  --accent-yellow: #c9a646;
  --brand-color: var(--gold-dark);
  --brand-color2: var(--metabolic-teal);
  --brand-accent: var(--accent-yellow);
}

img {
  max-width: 100%;
}
ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
* {
  text-decoration: none;
  transition: 0.5s linear;
}
a {
  color: #1a3e5d;
}
body {
  font-family: var(--primary-font);
  overflow-x: hidden;
}

.brand-color {
  color: var(--brand-color);
}
.brand-bg {
  background: var(--brand-color);
}
.brand-bg2 {
  background: var(--accent-blue);
}
.text-light {
  color: var(--text-light);
}
.text-dark {
  color: var(--text-dark);
}
.brand-accent-bg {
  background: var(--brand-accent);
}

/* Buttons CSS */

/* Base button */

.btn-book-now {
  background: linear-gradient(177deg, #fcc150c2, #b1691ccf);
  color: #fff;
}

.btn-lgx {
  display: inline-block;
  padding: 12px 26px;
  font-size: 15px;
  font-weight: 600;

  position: relative;
  overflow: hidden;
  text-decoration: none;
  transition: color 0.3s ease;
}

.border-brand {
  border-radius: var(--border-radius);
}
.border-5 {
  border-radius: 5px;
}
.border-10 {
  border-radius: 10px;
}
.border-50 {
  border-radius: 50px;
}

/* Brand Color Themes */
.btn-theme {
  background: var(--brand-color);
}

.btn-theme-accent {
  background: var(--brand-accent);
}

.color-light {
  color: #efefef;
}
.color-dark {
  color: #000;
}
.color-brand {
  color: var(--brand-color);
}

.btn-theme-gold {
  background-color: #cca54a;
  color: #fff;
}
.btn-theme-blue {
  background-color: #0d6efd;
  color: #fff;
}
.btn-theme-black {
  background-color: #000;
  color: #fff;
}
.btn-theme-red {
  background-color: #e63946;
  color: #fff;
}
.btn-theme-green {
  background-color: #198754;
  color: #fff;
}

/* Slide Right Fill Effect */

.btn-hover-slide-right::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.25);
  transform: translateX(-100%);
  transition: transform 0.4s ease;
}

.btn-hover-slide-right:hover::before {
  transform: translateX(0);
}

/* Slide-Up Glow Effect */

.btn-hover-slide-up::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(100%);
  transition: 0.35s ease;
}

.btn-hover-slide-up:hover::before {
  transform: translateY(0);
}

/* Border Reveal Effect */

.btn-hover-border {
  border: 2px solid transparent;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.btn-hover-border:hover {
  border-color: currentColor;
  background: transparent;
  color: inherit;
}

/* Shine Sweep Effect */

.btn-hover-shine {
  overflow: hidden;
}

.btn-hover-shine::after {
  content: "";
  position: absolute;
  top: 0;
  left: -80%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255, 255, 255, 0.4) 50%,
    transparent 100%
  );
  transform: skewX(-20deg);
  transition: 0.5s;
}

.btn-hover-shine:hover::after {
  left: 130%;
}

/* Pulse Background Effect */

.btn-hover-pulse:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.25);
}

/* Button CSS Ends */

/* Animation Classes Start */
/* ===== Generic scroll reveal utilities ===== */

.reveal-on-scroll {
  opacity: 0;
  transform: translate3d(0, 20px, 0);
  transition: opacity 1.2s ease-out, transform 1.2s ease-out;
  will-change: opacity, transform;
}

/* Direction variants */
.reveal-on-scroll--left {
  transform: translate3d(-60px, 0, 0);
}

.reveal-on-scroll--right {
  transform: translate3d(60px, 0, 0);
}

.reveal-on-scroll--up {
  transform: translate3d(0, 60px, 0);
}

.reveal-on-scroll--scale {
  transform: scale(0.96);
}

/* Final state when visible */
.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: none;
}

/* Slightly stagger children if you ever need it */
.reveal-on-scroll.is-visible > * {
  transition-delay: 0.05s;
}

/* Animation Classes End */

.carousel-control-next,
.carousel-control-prev {
  display: none;
}
.carousel-indicators {
  display: none;
}

/* Bootstrap 3 FIXES Start */
/* Bootstrap 3 style floats for col-* without row */
[class*="col-sm-"] {
  /* float: left; */
  box-sizing: border-box;
  padding-left: 10px; /* left gutter */
  padding-right: 10px; /* right gutter */
}

/* Typical widths */
.col-sm-6 {
  width: 50%;
}
.col-sm-4 {
  width: 33.3333%;
}
.col-sm-3 {
  width: 25%;
}
.col-sm-12 {
  width: 100%;
}

/* On mobile, force full width */
@media (max-width: 575.98px) {
  .col-sm-6,
  .col-sm-4,
  .col-sm-3 {
    width: 100%;
  }
}

/* Add clearfix to parent containers (simulate Bootstrap 3 row) */

.quote-tabs {
  display: flex;
  font-size: 14px;
}

@media (max-width: 768px) {
  .quote-tabs {
    flex-direction: column;
    width: 100;
  }
}

.quote-tabs::after,
form::after,
div::after {
  content: "";
  display: table;
  clear: both;
}

/* Bootstrap 3 FIXES END */

/* Reservation Form Fixes Start */
/* --- Make the two columns reliably 50/50 on md+ even if old BS3 styles linger --- */
@media (min-width: 768px) {
  /* your two columns already have .col-sm-12 .col-md-6; this enforces 50% width */
  .row.g-3 > .col-sm-12.col-md-6 {
    flex: 0 0 auto;
    width: 50%;
  }
}

/* --- Normalize the inline select widths (DATE) --- */
#monthSelect,
#daySelect,
#yearSelect {
  text-align-last: center; /* center the values */
}
#monthSelect,
#daySelect {
  flex: 0 0 6rem; /* fixed width for MM & DD */
  max-width: 6rem;
}
#yearSelect {
  flex: 0 0 7rem; /* fixed width for YYYY */
  max-width: 7rem;
}

/* --- Make TIME block visually match the input-group look --- */
.time-select-container {
  display: flex;
  align-items: stretch;
  width: 100%;
  background: #fff;
  border: 1px solid #ced4da; /* same as .form-control */
  /* border-radius: 0.375rem; same as .form-control */
  overflow: hidden; /* tidy corners */
  font-size: 14px;
}

/* Time selects: fixed widths + center text, remove inner borders */
#pickupHour2,
#pickupMinute2,
#pickupAmPm2 {
  text-align-last: center;
  border: 0; /* we draw the outer border on the container */
  border-radius: 0;
  box-shadow: none;
}

/* HH & MM ~ 6rem, AM/PM a bit narrower */
#pickupHour2,
#pickupMinute2 {
  flex: 0 0 6rem;
  max-width: 6rem;
}
#pickupAmPm2 {
  flex: 0 0 5rem;
  max-width: 5rem;
}

/* The colon styled like input-group-text */
.time-select-container .colon {
  display: flex;
  align-items: center;
  padding: 0.375rem 0.75rem;
  margin: 0;
  background: #e9ecef; /* like .input-group-text */
  color: #000;
  border-left: 1px solid #ced4da;
  border-right: 1px solid #ced4da;
}

/* Prevent the selects inside input-groups from stretching unpredictably */
.input-group .form-select.select-inline {
  flex: 0 0 auto; /* we control widths via the ID rules above */
}

/* Reservation Form Fixes End */

@media (max-width: 992px) {
  .hide-after-992 {
    display: none;
  }
}
/* Fleet 3 Light (Glass) Starts */

/* Root tokens — light theme */
:root {
  --f3-bg: #f6f7fb;
  --f3-surface: rgba(255, 255, 255, 0.6); /* glass base */
  --f3-card: rgba(255, 255, 255, 0.55); /* card glass */
  --f3-text: #0e1320;
  --f3-muted: #5b6474;
  --f3-line: rgba(14, 19, 32, 0.08);
  --f3-brand: #0ea5e9; /* refine to your brand */
  --f3-brand-2: #6366f1; /* secondary accent */
  --f3-radius: 18px;
  --f3-shadow: 0 18px 40px rgba(14, 19, 32, 0.08);
  --f3-maxw: 1200px;
}
/* Section */
.fleet3 {
  position: relative;
  /* background: radial-gradient(
      900px 500px at 10% 0%,
      rgba(99, 102, 241, 0.1),
      transparent 60%
    ),
    radial-gradient(
      900px 500px at 90% 100%,
      rgba(14, 165, 233, 0.1),
      transparent 60%
    ),
    var(--f3-bg); */
  background: var(--dark-bg);
  color: var(--f3-text);
  padding: clamp(48px, 6vw, 96px) 24px;
  overflow: hidden;
}

.fleet3::before {
  /* soft top highlight */
  content: "";
  position: absolute;
  inset: -20% -20% auto -20%;
  height: 60%;
  background: radial-gradient(
    1200px 600px at 50% -10%,
    rgba(255, 255, 255, 0.65),
    transparent 60%
  );
  pointer-events: none;
}

/* Header */
.fleet3__header {
  max-width: var(--f3-maxw);
  margin: 0 auto clamp(28px, 4vw, 48px);
  text-align: center;
  backdrop-filter: saturate(140%) blur(6px);
}

.fleet3__title {
  font-size: clamp(28px, 5vw, 44px);
  line-height: 1.1;
  margin: 0 0 8px;
  letter-spacing: -0.02em;
  /* background: linear-gradient(92deg, #0e1320, #2a3350 40%, #3c4a7a); */
  background: var(--light-bright);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-family: var(--header-font);
  font-weight: 700;
  text-transform: uppercase;
}

.fleet3__subtitle {
  font-size: clamp(14px, 1.6vw, 16px);
  color: #888;
  margin: 0;
}

/* Grid */
.fleet3__grid {
  max-width: var(--f3-maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(16px, 2vw, 24px);
}

@media (min-width: 992px) {
  .fleet3__card {
    grid-column: span 4;
  }
}
@media (min-width: 576px) and (max-width: 991.98px) {
  .fleet3__card {
    grid-column: span 6;
  }
}
@media (max-width: 575.98px) {
  .fleet3__card {
    grid-column: span 12;
  }
}

/* Card — glassmorphism */
.fleet3__card {
  background: linear-gradient(
    180deg,
    var(--f3-card),
    rgba(255, 255, 255, 0.42)
  );
  /* border: 1px solid rgba(14, 19, 32, 0.06); */
  border-radius: var(--f3-radius);
  box-shadow: var(--f3-shadow);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease,
    border-color 0.25s ease, background 0.25s ease;
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(8px) saturate(140%);
  -webkit-backdrop-filter: blur(8px) saturate(140%);
}

.fleet3__card:hover {
  transform: translateY(-4px);
  border-color: rgba(14, 19, 32, 0.12);
  box-shadow: 0 24px 48px rgba(14, 19, 32, 0.12);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.68),
    rgba(255, 255, 255, 0.5)
  );
}

/* Image as cover with safe ratio */
.fleet3__image-link {
  display: block;
  position: relative;
}
.fleet3__image {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 */
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.fleet3__image::after {
  /* subtle top to bottom sheen */
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.22),
      transparent 40%
    ),
    linear-gradient(180deg, transparent 60%, rgba(14, 19, 32, 0.1));
  pointer-events: none;
}

/* Body */
.fleet3__body {
  padding: 18px 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: var(--dark-grad);
}

.fleet3__name {
  margin: 0;
  font-size: clamp(18px, 2.2vw, 22px);
  line-height: 1.3;
  letter-spacing: -0.01em;
  text-align: center;
}
.fleet3__name a {
  color: var(--ganesh-gray);
  text-decoration: none;
}
.fleet3__name a:hover {
  color: #253058;
}

/* Meta badges */
.fleet3__meta {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 1fr;
  gap: 10px;
}
.fleet3__meta-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
  line-height: 1.4;
  color: #aaa;
  /* background: rgba(255, 255, 255, 0.65); */
  background: #000;
  border: 1px solid rgba(14, 19, 32, 0.06);
  border-radius: 999px;
  padding: 8px 12px;
  white-space: nowrap;
  backdrop-filter: blur(6px) saturate(120%);
  -webkit-backdrop-filter: blur(6px) saturate(120%);
}
.fleet3__meta-item i {
  font-size: 14px;
  opacity: 0.85;
}

/* Actions */
.fleet3__actions {
  margin-top: 6px;
  text-align: center;
}

.fleet3__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 0.02em;
  /* background: linear-gradient(90deg, var(--f3-brand), var(--f3-brand-2)); */
  background: var(--brand-color);
  box-shadow: 0 10px 24px rgba(14, 19, 32, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
  transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
}
.fleet3__btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 34px rgba(14, 19, 32, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.32);
  color: #fff;
}
.fleet3__btn:active {
  transform: translateY(0);
}

/* View more */
.fleet3__more {
  max-width: var(--f3-maxw);
  margin: clamp(20px, 3vw, 36px) auto 0;
  text-align: center;
}
.fleet3__link {
  color: #666;
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px dashed rgba(42, 74, 255, 0.4);
}
.fleet3__link:hover {
  color: #192dd1;
  border-bottom-color: rgba(25, 45, 209, 0.8);
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .fleet3__card {
    transition: none;
  }
  .fleet3__btn {
    transition: none;
  }
}

/* Fleet 3 Ends */
/* Custom Nav Starts Here */

.main-top-video-navbar .navbar-nav .nav-link {
  color: #fff;
}

.custom-nav {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent; /* keep video visible */
  color: #fff;
  font-family: sans-serif;
}
/* Logo */

.logo-text {
  color: #fff;
  font-size: 32px;
  font-weight: 700;
  box-shadow: var(--box-shadow);
  /* background: var(--dark-grad); */
  /* padding: 8px;
  border-radius: 10px; */
}
.logo-text-footer {
  color: #fff;
  font-size: 32px;
  font-weight: 700;
  box-shadow: var(--box-shadow);
}
.custom-nav__logo-image {
}
.custom-nav__logo img {
  width: 300px;
  margin-top: 5px;
  display: block;
}
.custom-nav__logo a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.25rem;
}
/* Menu container */
.custom-nav__menu-large-screen {
  flex-grow: 1;
  display: flex;
  justify-content: center;
}
.custom-nav__menu-items {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 5px;
}
.custom-nav__menu-item a {
  text-decoration: none;
  color: #fff;
}
.custom-nav__menu-item .nav-link {
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  transition: color 0.2s ease-in-out;
}
.custom-nav__menu-item .nav-link:hover,
.custom-nav__menu-item .nav-link.active {
  color: #f33;
}

/* Button */
.custom-nav__buttons .new-star-header_button {
  background: var(--brand-color);
  color: #fff;
  padding: 8px 16px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.2s ease-in-out;
}
.custom-nav__buttons .new-star-header_button:hover {
  background: var(--accent-blue);
}

/* Mobile toggle row */
.custom-nav__mobile-toggle {
  display: none; /* hidden by default */
  width: 100%;
  padding: 10px 0px;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.custom-nav__mobile-text {
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
}
.custom-nav__hamburger {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.custom-nav__hamburger span {
  display: block;
  width: 25px;
  height: 2px;
  background: #fff;
}

/* Mobile menu (dropdown) */
.custom-nav__mobile-navbar {
  z-index: 2;
  margin-top: 20px;
}
.custom-nav__mobile-toggle {
  display: none;
}
.custom-nav__mobile-menu {
  display: none;
  background: rgba(0, 0, 0, 0.85);
  width: 100%;
}
.custom-nav__mobile-menu ul {
  list-style: none;
  margin: 0;
  padding: 10px 20px;
}
.custom-nav__mobile-menu li {
  margin: 10px 0;
}
.custom-nav__mobile-menu a {
  color: #fff;
  text-decoration: none;
}
@media (max-width: 991px) {
  .custom-nav {
    flex-wrap: wrap;
  }
  .custom-nav__menu-large-screen,
  .custom-nav__buttons {
    display: none; /* hide desktop menu + button */
  }
  .custom-nav__mobile-toggle {
    display: flex; /* show mobile toggle row */
  }
}
/* Custom Nav Ends Here */
/* 
Video Header Starts Here
*/
/* Video background */
.navbar-video {
  min-height: 35px !important;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: transparent !important;
  z-index: 1000;
}
.video-header__bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  object-fit: cover;
  z-index: -2;
}

/* Dark overlay */
.video-header__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  z-index: -1;
}

/* Video header container */
.video-header {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Content */
.video-header__content {
  z-index: 2;
  padding: 0 20px;
}
.video-header__content-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.video-header__content-buttons a {
  width: 312px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

@media (max-width: 768px) {
  .video-header__content-buttons {
    flex-direction: column;
  }
  .video-header__content-buttons a {
    width: 280px;
  }
  .video-header {
    height: 80vh;
  }
  .video-header__content {
    margin-top: 99px;
  }
}

/* 
Video Header Ends Here
*/

/* ---- Hero / Carousel (fixed) ---- */
/* Height of the logo/nav that floats over the hero */
:root {
  --nav-h: 90px;
} /* tweak to your actual navbar+logo height */

/* Hero wrapper: full viewport, but leave room for the navbar at the top */
.hero-header {
  position: relative;
  height: 100vh;
  min-height: 520px;
  padding-top: var(--nav-h); /* keeps content below logo/nav */
  overflow: hidden;
  isolation: isolate;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Carousel acts as background */
.hero-carousel {
  position: absolute;
  inset: 0;
  height: 100%;
  z-index: 1;
}
.hero-carousel .carousel-inner,
.hero-carousel .carousel-item {
  height: 100%;
}
.hero-carousel .carousel-item {
  position: relative;
}

.hero-slide-img,
.hero-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

/* Overlay above images */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2;
}

/* Content: centered within the padded hero */
.hero-content {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  text-align: center;
  justify-content: center;

  padding: 0 20px;
  /* occupy the remaining height after navbar padding */
  height: calc(100vh - var(--nav-h));
}

/* Buttons */
.hero-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.hero-buttons a {
  width: 312px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

/* Controls */
.hero-header .carousel-control-prev-icon,
.hero-header .carousel-control-next-icon {
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.35));
}

/* Mobile tweaks */
@media (max-width: 768px) {
  :root {
    --nav-h: 117px;
  } /* usually taller on mobile */
  .hero-header {
    height: 80vh;
  }
  .hero-content {
    height: calc(90vh - var(--nav-h));
    margin-top: 0;
  }
  .hero-buttons {
    flex-direction: column;
  }
  .hero-buttons a {
    width: 280px;
  }
}

/* Hero Banner Carousel Ends */

.gold-title {
  font-weight: 700;
  text-transform: capitalize;
  font-size: 50px;
  margin-bottom: 0;
  background: var(--brand-color);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.white-title {
  font-weight: 700;
  text-transform: capitalize;
  font-size: 50px;
  margin-bottom: 0;
  background: var(--light-grad);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
.dark-title {
  font-weight: 700;
  text-transform: capitalize;
  font-size: 50px;
  margin-bottom: 0;
  background: var(--dark-grad);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.button_center {
  /* float: left; */
  width: 100%;
  /* margin: 20px; */
  text-align: center;
}

/* Airport 3 Starts */
.airports3 {
  /* /* float: left; */
  margin: 0;
  padding: 100px 0;
  text-align: center;
  background-image: url("../images/airport.jpg");
  width: 100%;
  background-position: center;
  /*filter: grayscale(1);*/
  background-attachment: fixed;
  background-size: cover;
}
.airports3 h2 {
  text-align: center;
  margin: 20px auto;
  font-size: 42px;
  color: #fff;
  font-family: var(--header-font);
  font-weight: 700;
  text-transform: uppercase;
}
.airports3__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.airports3__item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: var(--black-grad-reverse);
  padding: 20px;
  border: 1px solid #555;
  color: #fff;
}
.airports3__item:hover {
  background: var(--black-grad);
}
.airports3__item-image i {
  font-size: 43px;
  color: var(--brand-color);
}

.airports3__item-title h3 {
  font-size: 43px;
  color: #fff;
}
.airports3__item-content p {
  font-size: 19px;
}

@media (max-width: 992px) {
  .airports3__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .airports3__grid {
    grid-template-columns: repeat(1, 1fr);
  }
}

/* Airport 3 Ends */
/* Oregon Footer Contact Starts */
.action-section {
  background: #000;
  width: 100%;
  /* float: left; */
  padding: 5rem 1rem;
  text-align: center;
}

.action-section_grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.action-section__book-buttons {
  background: linear-gradient(45deg, #363535, var(--fortis-brown));
  padding: 2rem 2rem 4rem;
  border-radius: 8px;
}
.action-section__call-buttons {
  background: linear-gradient(45deg, var(--fortis-brown), #363535);
  padding: 2rem 2rem 4rem;
  border-radius: 8px;
}

.book-buttons-items {
  display: flex;
  gap: 2rem;
  justify-content: center;
  align-items: center;
}

.action-section__call-buttons h2,
.action-section__book-buttons h2 {
  color: #efef;
  font-size: 23px;
  margin-bottom: 24px;
}
.hero-btn {
  display: inline-block;
  /* border: 2px solid var(--primary-color); */
  padding: 7px 19px;
  font-size: 18px;
  color: #fff;
  background: var(--primary-grad);
}
.hero-btn:hover {
  color: #fff;
  background: var(--primary-grad-reverse);
}

@media (max-width: 992px) {
  .action-section_grid {
    grid-template-columns: repeat(1, 1fr);
  }
  .book-buttons-items {
    flex-direction: column;
  }
  .hero-btn {
    width: 260px;
    padding: 20px;
  }
}

/* Oregon Footer Contact Ends */

/**/
.western-fleet {
  background: #f0f2f7;
  color: #fff;
  /* /* float: left; */
  width: 100%;
  padding: 50px 2px;
  margin: 0 auto;
}
.western-fleet__header h2 {
  text-align: center;
  font-size: 48px;
  color: #333;
  /* font-family: "Taviraj", serif; */
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 40px;
  font-family: var(--header-font);
}

.western-fleet__items {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  padding: 8px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.08);
  margin-bottom: 30px;
  text-align: center;
}

.western-fleet__image-box {
  width: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 6px;
}

.western-fleet__image {
  width: 100%;
  padding-top: 60%; /* 4:3 Aspect Ratio */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.western-fleet__description h5 {
  font-size: 1.3rem;
  /* float: left; */
  width: 100%;
  max-height: 45px;
  overflow: hidden;
  min-height: 45px;
  /* font-family: "Taviraj", serif; */
  font-weight: 500;
}

.western-fleet__description__pax-luggage {
  font-size: 16px;
  margin-bottom: 19px;
  color: #444;
}

/* Western Fleet Ends */

.reservation-btn {
  display: inline-block;
  padding: 15px 30px;
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: var(--brand-color);
  color: #fff;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  text-align: center;
  text-decoration: none;
  margin-top: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  font-family: var(--header-font);
  font-weight: 500;
  cursor: pointer;
  position: relative;
  transition: 0.5s;
}

.reservation-btn:hover {
  background-color: black; /* A darker shade for hover effect */
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  color: #777;
  text-decoration: none;
  /*border:2px solid #555;*/
  /*  padding-right: 24px;*/
  /*padding-left:8px;*/
  padding: 15px 30px;
}

.reservation-btn:after {
  content: "»";
  position: absolute;
  opacity: 0;
  top: 14px;
  right: -20px;
  transition: 0.5s;
}

.reservation-btn:hover:after {
  opacity: 1;
  right: 10px;
}

.reservation-btn:active {
  transform: translateY(0);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.main-video {
  /* float: left; */
  width: 100%;
  /* padding: 20px; */
}

/* Luxury Text Section */

.luxury-text {
  background-attachment: fixed;
  background-size: cover;
  background-position: center;

  padding: 120px 0;
  width: 100%;
  position: relative;
  background-image: url(../images/oversized.jpg);
  color: #fff;
}

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

.luxury-text__text,
.button_center {
  position: relative;
  z-index: 10;
  background: #ffffffde;
  padding: 20px;
  border-radius: var(--radius);
}
.luxury-text__text h2 {
  font-size: 70px;
  font-weight: 400;
  margin: 0 0 30px;
  text-align: center;
  width: 100%;
  color: var(--accent-blue);
  line-height: 1.3em;
  /* font-family: var(--header-font); */
  /* text-shadow: 2px 1px 1px rgb(0 0 0 / 76%), 2px 2px 2px rgba(0, 0, 0, 0.08),
    3px 3px 3px rgba(0, 0, 0, 0.06); */
}
.luxury-text h3 {
  font-size: 41px;
  /* font-weight: 700; */
  margin: 0 0 30px;
  text-align: center;
  width: 100%;
  color: var(--brand-color);
  line-height: 1.3em;
  /* font-family: var(--header-font);
  text-shadow: 2px 1px 1px rgb(0 0 0 / 76%), 2px 2px 2px rgba(0, 0, 0, 0.08),
    3px 3px 3px rgba(0, 0, 0, 0.06); */
}
.luxury-text__text span {
  color: var(--brand-color);
  font-weight: 700;
  text-transform: capitalize;
}
.luxury-text .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%; /* ensures the container takes the full height of the parent */
  z-index: 11;
  position: relative;
}

@media (max-width: 768px) {
  .luxury-text__text h2 {
    font-size: 35px;
  }
}

/* Luxury Text Section Ends */
.footer-social-icons ul {
  padding-left: 0;
  margin: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center; /* Center horizontally */
  align-items: center;
}

.footer-social-icons ul li a {
  font-size: 30px;
  color: var(--brand-color);
  transition: color 0.3s, transform 0.3s;
  background: #fff;
  padding: 10px;
  border-radius: 50%;
  height: 60px;
  width: 60px;
  display: block;
}
.footer-social-icons ul li a:hover {
  color: #f8c146; /* Highlight color on hover */
  transform: scale(1.2); /* Slight zoom effect */
}
.payment-icons li {
  color: #fff;
  transition: color 0.3s, transform 0.3s;
  background: var(--fortis-brown);
  border-radius: 3px;
}
.payment-icons li i {
  font-size: 30px;
  padding: 10px;
  background: var(--brand-color);
  border-radius: 5px;
}
.payment-icons {
  display: flex; /* not inline-flex */
  flex-wrap: wrap; /* allow wrapping */
  gap: 1rem;
  padding-left: 0;
  margin: 0;
  list-style: none;
  max-width: 100%;
  justify-content: center; /* optional */
  align-items: center;
}
.payment-icons > li {
  flex: 0 0 auto; /* keep each icon's size */
}
.payment-icons img,
.payment-icons svg {
  width: 40px;
  height: auto;
}

@media (max-width: 420px) {
  .payment-icons {
    gap: 0.5rem;
  }
}

/* Services Area 1 Starts */

.service_areas1 {
  /* float: left; */
  margin: 0;
  padding: 50px 0;
  width: 100%;
  background: #f7f7f7;
}
.service_areas1 h2 {
  /* float: left; */
  font-size: 38px;
  margin: 0 0 20px;
  padding: 0;
  text-align: center;
  width: 100%;
  font-family: var(--header-font);
  font-weight: 700;
  text-transform: uppercase;
}

/* .service_areas1 h2:before {
  content: "";
  width: 50px;
  height: 2px;
  background: var(--secondary-color);
  display: inline-block;
  margin: 0 15px 10px 0;
}
.service_areas1 h2:after {
  content: "";
  width: 50px;
  height: 2px;
  background: var(--secondary-color);
  display: inline-block;
  margin: 0 0px 10px 15px;
} */

.service_areas1 .city-badge ul {
  display: inline-block;
  text-align: center;
}
.city-badge ul li {
  font-size: 18px;
  background: var(--primary-color);
  color: #fff;
  display: inline-block;
  padding: 5px 15px;
  border-radius: 15px;
  margin: 10px 3px;
}
.city-badge ul li:hover {
  background: #6d5000;

  transform: scale(1.06);
}
/*Cookie Consent message */

.cookies-message {
  background: #333;
}

.cookies-message p {
  color: #ddd;
}

/* Winner Footer Start */
.winner-footer {
  /* float: left; */
  width: 100%;
  padding: 30px;
  background: #222;
}
.winner-footer__grid-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.winner-footer__item {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  background: var(--primary-grad);
  padding: 25px 3px;
  gap: 2rem;
  border-radius: 20px;
}
.winner-footer__item .book-button {
  background: var(--brand-color);
  color: #000 !important;
  width: 230px;
  border-radius: 12px;
}

.winner-footer__list-items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}
.winner-footer__list-items a {
  color: #fff;
  letter-spacing: 1px;
}

.winner-footer__icon i {
  font-size: 5rem;
  margin: 20px;
  color: var(--foreground-color2);
  background: var(--brand-color);
  padding: 20px;
  width: 100px;
  height: 100px;
  line-height: 57px;
  text-align: center;
  border-radius: 50%;
  color: var(--primary-color);
}

@media (max-width: 1200px) {
  .winner-footer__grid-items {
    grid-template-columns: repeat(1, 1fr);
  }
  .winner-footer__item {
    flex-direction: column;
  }
}

/* Winner Footer Ends */

.bg_grad_primary {
  background: var(--primary-grad);
}
.bg_grad_secondary {
  background: var(--secondary-grad);
}

.bg_grad_light {
  background: var(--light-grad);
}

.bg_grad_light_reverse {
  background: var(--light-grad-reverse);
}

.title-bottom-border {
  width: 220px;
  height: 2px;
  background: var(--secondary-color);
  margin: 0 auto;
}

/*Animation Classes Start*/

/* Keyframes for slide-in-left animation */
@keyframes slideInLeft {
  0% {
    transform: translateX(-100%); /* Start off-screen to the left */
    opacity: 0; /* Fully transparent */
  }
  100% {
    transform: translateX(0); /* End in original position */
    opacity: 1; /* Fully visible */
  }
}

/* Slide-in-left animation class */
.slide-in-left {
  animation: slideInLeft 2s ease-out forwards; /* Adjust duration and easing as needed */
}

/*Slide In Right*/

/* Keyframes for slide-in-right animation */
@keyframes slideInRight {
  0% {
    transform: translateX(100%); /* Start off-screen to the right */
    opacity: 0; /* Fully transparent */
  }
  100% {
    transform: translateX(0); /* End in original position */
    opacity: 1; /* Fully visible */
  }
}

/* Slide-in-right animation class */
.slide-in-right {
  animation: slideInRight 2s ease-out forwards; /* Adjust duration and easing as needed */
}

/*Slide From Bottom*/

@keyframes slideInBottom {
  0% {
    transform: translateY(1000%); /* Start further down */
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

.slide-in-bottom {
  animation: slideInBottom 2s ease-out forwards;
  position: relative; /* Ensure positioning for visibility */
  z-index: 999; /* Ensure it's above other elements */
}

/*Animation Classes End*/

/* New Star Header Section Starts */

.new-star-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--accent-blue);
  min-height: 121px;
}
.new-star-header__logo {
  background-size: 100% 100%;
  width: 430px;
  /*background: rgba(0, 0, 0, 0) linear-gradient(180deg, #272425 34%, #111111 100%) repeat scroll 0 0;*/
  z-index: 999999;
  /* clip-path: polygon(0 0, 100% 0%, 80% 100%, 0% 100%); */
  text-align: center;
}

.new-start-header__logo-box img {
  width: 241px;
  margin-top: 0px;
  padding: 13px 1px 13px 10px;
  /* filter: brightness(1.1); */
}

.new-star-header_buttons {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  /* padding: 0 3rem; */
}

.new-star-header_button {
  display: inline-block;
  padding: 12px 28px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius);
  text-align: center;
  cursor: pointer;
  border: none;
  background: var(--brand-color);
  color: #fff;
  text-decoration: none;
  letter-spacing: 0.5px;

  /* Subtle shadow */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);

  /* Smooth animation */
  transition: all 0.3s ease;
}

.new-star-header_button:hover {
  transform: translateY(-2px);
  /* box-shadow: 0 6px 14px rgba(0, 0, 0, 0.2); */
  background: var(--secondary-color);
  text-decoration: none;
  color: #fff;
}

.new-star-header_button:active {
  transform: translateY(0);
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
}

.new-star-header__call {
  display: flex;
  gap: 1.5rem;
}

.new-star-header__call a {
  --pill-bg: rgb(255 255 255 / 31%);
  --pill-bd: rgb(255 255 255 / 7%);
  --text-muted: #9aa0a6;
  --text-strong: #e6e6e6;
  border-radius: var(--radius);
  padding: 10px 16px;
  text-decoration: none;
  width: 300px;
  /* background: linear-gradient(180deg, var(--pill-bg), rgb(255 255 255 / 9%)); */
  backdrop-filter: saturate(140%) blur(2px);
  transition: transform 0.18s ease, box-shadow 0.18s ease,
    border-color 0.18s ease, background 0.18s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.new-star-header__call i {
  background: var(--brand-color);
  color: #fff;
  width: 40px;
  height: 40px;
  margin-right: 5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-size: 20px;
}

.new-star-header__call i:hover {
  background: var(--primary-grad-reverse);
  color: #fff;
}
.new-star-header__smalltext {
  color: var(--primary-color);
  font-size: 1rem;
}
.new-star-header__smalltext {
  color: var(--accent-blue);
  font-size: 1rem;
}

.new-star-header__colortext {
  text-decoration: none;
  color: var(--brand-color);
  font-size: 1rem;
  font-weight: 500;
}

.new-star-header__call {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  justify-content: center;
}

/* each phone block */
.new-star-header__callitem {
  display: flex;
  align-items: center;
  gap: 12px;

  padding: 12px 16px;
  min-width: 260px;
  max-width: 360px;

  border-radius: 14px;
  text-decoration: none;

  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(239, 207, 160, 0.22);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.22);

  transition: transform 180ms ease, border-color 180ms ease,
    background 180ms ease;
}

.new-star-header__callitem:hover {
  transform: translateY(-2px);
  border-color: rgba(239, 207, 160, 0.5);
  background: rgba(255, 255, 255, 0.06);
}

/* icon badge */
.new-star-header__callicon {
  width: 46px;
  height: 46px;
  border-radius: 14px;

  display: grid;
  place-items: center;

  background: rgba(239, 207, 160, 0.14);
  border: 1px solid rgba(239, 207, 160, 0.35);
  flex: 0 0 46px;
}

.new-star-header__callicon i {
  font-size: 18px;
  color: #efcfa0;
}

/* text stack */
.new-star-header__calltext {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  text-align: left;
}

.new-star-header__callprefix {
  font-size: 12px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: rgba(239, 207, 160, 0.75);
  margin-bottom: 4px;
}

.new-star-header__callnumber {
  font-size: 18px;
  font-weight: 500;
  color: #f7cd6b;
}

/* keep it nice on small screens */
@media (max-width: 420px) {
  .new-star-header__callitem {
    min-width: 0;
    width: 100%;
  }
  .new-star-header__callnumber {
    font-size: 22px;
  }
}

@media (max-width: 1200px) {
  .new-star-header {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.2rem;
    padding: 0 0 30px;
  }
  .new-star-header__logo {
    background: none;
    clip-path: none;
    text-align: center;
    max-width: 100%;
  }
  .new-star-header_button {
    width: 300px;
    text-align: center;
  }
  .new-star-header .smalltext {
    display: none;
  }
  .new-star-header .colortext {
    font-size: 22px;
  }
}

@media (max-width: 768px) {
  .new-star-header_buttons {
    flex-direction: column;
  }
  .new-star-header__call {
    flex-direction: column;
  }
}

@media (max-width: 576px) {
  .new-star-header .smalltext {
    display: none;
  }
  .new-star-header .colortext {
    font-size: 22px;
  }
}

/*New Star Header ends*/
.title-bottom-border2 {
  width: 80px;
  height: 4px;
  background: var(--silver-grad);
  margin: 0 auto;
  margin-bottom: 20px;
}

.fleet_icons ul {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.fleet_icons ul li {
  background: var(--light-gray);
  padding: 4px 7px;
  border-radius: 50px;
  border: 1px solid #dcdbdb;
  color: #474747;
  font-weight: 500;
  font-size: 15px;
}

.pax_luggage img {
  width: 75px;
  filter: hue-rotate(164deg);
}
.pax_luggage i {
  padding-right: 6px;
}
.pax_luggage span {
  font-size: 1.6rem;
}
/*Reservation Form Custom CSS Starts*/
.quote-tabs div {
  padding: 10px;
  border: 1px solid #ccc;
  cursor: pointer;
  text-align: center;
  background-color: #f0f2f7;
}

.ex_black .quote-tabs i {
  margin-right: 6px;
  color: #555;
}

.ex_black .quote-tabs .active {
  background-color: #222;
  color: #fff;
  font-weight: bold;
}
.ex_black .quote-tabs .active i {
  color: #fff;
}

.fromFields,
.dropFields,
.returnFields {
  background: #e0e0e0;
  padding: 10px;
  border-radius: 10px;
  color: #fff;
  border: 1px solid #eeeded;
  box-shadow: 1px 1px 7px 1px #00000042;
  margin: 20px auto;
}
.form-control {
  font-size: 14px !important;
}
.form-select {
  font-size: 14px !important;
}
.fromFields .form-group label {
  color: #111;
}

.input-group .form-control.select-inline {
  display: inline-block;
  width: auto;
  margin-right: 5px;
}

/*.month-field, */
/*.date-field,*/
/*.time-field{*/
/*    width: 70px !important;*/
/*}*/

.time-select-container {
  display: flex;
  background: #fff;
  justify-content: center;
  align-items: center;
  text-align: center;
  /*border-radius:5px;*/
}

.time-select-container .colon {
  color: #000;
}
.time-select-container select {
  margin-right: 5px;
}
.time-select-container select.hide-arrow {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  padding: 0;
  border: none;
  text-align: center;
}
.btn-toggle {
  padding: 10px 20px;
  border: 1px solid #ccc;
  background-color: #f8f9fa; /* Default background */
  color: #000;
  margin-right: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.btn-toggle:hover {
  background-color: #ddd;
}

.btn-toggle.active {
  background-color: #000; /* Black background for selected button */
  color: #fff; /* White text for selected button */
}

/*Reservation Form CSS ends*/

/*MSLux infocol Starts*/

.infocol h3 {
  font-family: "Figtree", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
}
.infocol_left {
  /*border-right: 1px solid #919191;*/
  /*padding: 0px 30px 0px 0px;*/
}
.infocol {
  text-align: left;
}

.infocol_section {
  /* float: left; */
  margin: 0;
  padding: 50px 0;
  text-align: center;
  width: 100%;
  background: #f0f2f8;
}

.info_box1 {
  /*background: #f1f1f1;*/
  padding: 30px;
  height: 528px;
  border-right: 1px solid #999;
  text-align: left;
}
.info_box2 {
  /*background: #f1f1f1;*/
  padding: 30px;
  height: 528px;

  text-align: left;
}
.info_box3 {
  /*background: #f1f1f1;*/
  padding: 30px;
  height: 528px;
  border-left: 1px solid #999;
  text-align: left;
}

.infocol {
  font-weight: 200 !important;
  letter-spacing: 0.25px;
  line-height: 28px;
}

.infocol img {
  max-height: 231px !important;
  margin-bottom: 20px !important;
  /* filter: grayscale(1); */
  border-radius: 50%;
}

.infocol p {
  line-height: 1.5;
}

.infocol h2 {
  line-height: 1.5;
}

.infocol_items {
  display: flex;
  align-items: center;
}

.infocol_right {
  width: 50%;
  text-align: left;
  padding: 20px;
}
/*MsLux Infocol ends*/

.book_color1 a {
  color: #fff;
  background: var(--primary-grad);
}

.book_color1 a:hover {
  color: #fff;
  background: var(--primary-grad-reverse);
}

.book_color2 a {
  color: #fff;
  background: var(--secondary-grad);
}

.book_color1 a:hover {
  color: #fff;
  background: var(--secondary-grad-reverse);
}

/*Service Area Badge Code Starts*/

.service_areas1 {
  /* float: left; */
  margin: 0;
  padding: 50px 0;
  width: 100%;
  background: #000;
}
.service_areas1 h2 {
  /*/* float: left; */
  font-size: 38px;
  margin: 0 0 10px;
  padding: 0;
  text-align: center;
  width: 100%;
  font-family: var(--header-font);
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
}

/*.service_areas1 h2:before{*/
/*    content: "";*/
/*    width: 50px;*/
/*    height: 2px;*/
/*    background: var(--secondary-color);*/
/*    display: inline-block;*/
/*        margin: 0 15px 10px 0;*/
/*}*/
/*.service_areas1 h2:after{*/
/*    content: "";*/
/*    width: 50px;*/
/*    height: 2px;*/
/*    background: var(--secondary-color);*/
/*    display: inline-block;*/
/*        margin: 0 0px 10px 15px;*/
/*}*/

.service_areas1 .city-badge {
  display: flex;
  justify-content: center;
  align-items: center;
}
.service_areas1 .city-badge ul {
  display: inline-block;
  text-align: center;
}
.city-badge ul li {
  font-size: 18px;
  background: var(--primary-color);
  color: #fff;
  display: inline-block;
  padding: 10px 21px;
  /* border-radius: 15px; */
  margin: 10px 3px;
}
.city-badge ul li:hover {
  background: #6d5000;

  transform: scale(1.06);
}

.city-badge ul li i {
  margin-right: 8px;
}

/*Service Area Badge Code Ends*/

/* Service Areas Table Starts */
.service_areas_table {
  /* float: left; */
  margin: 0;
  padding: 50px 0;
  width: 100%;
  background: #fff;
}
.service_areas_table h2 {
  font-size: 38px;
  margin: 0 0 20px;
  padding: 0;
  text-align: center;
  width: 100%;
  font-family: var(--header-font);
  font-weight: 700;
  text-transform: uppercase;
}

/* .service_areas_table h2:before {
  content: "";
  width: 50px;
  height: 2px;
  background: var(--secondary-color);
  display: inline-block;
  margin: 0 15px 10px 0;
}
.service_areas_table h2:after {
  content: "";
  width: 50px;
  height: 2px;
  background: var(--secondary-color);
  display: inline-block;
  margin: 0 0px 10px 15px;
} */

.service_areas_table .city-badge ul {
  display: inline-block;
  text-align: center;
}
.city-badge ul li {
  font-size: 20px;
  background: var(--fortis-brown);
  color: #fff;
  display: inline-block;
  padding: 5px 15px;
  border-radius: 5px;
  margin: 10px 3px;
}
.city-badge ul li a {
  color: #fff;
}
.city-badge ul li:hover {
  background: #6d5000;
  text-decoration: none;

  transform: scale(1.06);
}

.city-list-item {
  font-size: 18px;
  line-height: 2;
}

.city-page-state {
  font-size: 21px;
}

.city-area-bannerbg .image-container {
  display: flex;
  justify-content: center;
  align-items: center;
}
.city-list i {
  margin-right: 7px;
  color: var(--gold-dark);
}
.city-list ul li {
  line-height: 2;
  background: var(--ganesh-gray);
  padding: 4px 9px;
  margin-bottom: 1rem;
  text-align: left;
  border: 1px solid #e9e8e4;
  font-size: 1.5rem;
  font-weight: 600;
}

.city-list ul li:hover {
  transform: scale(1.1);
}
/* Service Areas Table Ends */

/*our services & fleet list left side bar stars*/

.our_services_list {
  padding: 2px 5px;
  /* background: #eee; */
}

.our_services_list h3 {
  font-family: var(--header-font);
  font-weight: 400;
}

.our_services_list a {
  color: #4f5051;
  display: block;
  text-decoration: none;
}

.our_services_list ul li {
  position: relative;
  list-style-type: none;
  margin: 5px auto;
  padding: 16px 30px;
  background: linear-gradient(45deg, black, #4b4b4b);
  border-radius: 5px;
  box-shadow: 1px 3px 7px 2px rgb(65 65 65 / 38%);
  color: #fff;
  font-size: 17px;
}

.our_services_list ul li:before {
  content: "\f105";
  font-family: "FontAwesome";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  top: 50%;
  transform: translateY(-50%);
  margin-left: 9px;
}
.our_services_list ul li:hover {
  color: #000000;
  background: #ffffff;
  transform: scale(1.03);
}

.our_fleet_list {
  padding: 2px 5px;
  /* background: #eee; */
}

.our_fleet_list h3 {
  font-family: var(--header-font);
  font-weight: 400;
}

.our_fleet_list a {
  color: var(--brand-accent);
  display: block;
  text-decoration: none;
}

.our_fleet_list ul li {
  position: relative;
  list-style-type: none;
  margin: 5px auto;
  padding: 16px 30px;
  background: linear-gradient(45deg, black, #4b4b4b);
  border-radius: 5px;
  box-shadow: 1px 3px 7px 2px rgb(65 65 65 / 38%);
  color: #fff;
  font-size: 17px;
}

.our_fleet_list ul li:before {
  content: "\f105";
  font-family: "FontAwesome";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  top: 50%;
  transform: translateY(-50%);
  margin-left: 9px;
}

.our_fleet_list ul li:hover {
  color: #fff;
  background: #444;
  transform: scale(1.05);
}

/*Our services and Fleet list left side bar ends*/

/* contact 4 css starts here*/

.contact-4 {
  /* float: left; */
  padding: 40px 0;
  position: relative;
  width: 100%;
  /*background: #d0dae3;*/
}

.contact-4 .contact_box1 {
  background: linear-gradient(45deg, #f6f6f6, #cacaca);
  min-height: 261px;
}
.contact-4 .contact_box1:hover {
  background: linear-gradient(45deg, #cacaca, #f1f1f1);
  min-height: 261px;
}
.contact-4 .contact_box2 {
  background: linear-gradient(45deg, #efefef, #f6f6f6);
  min-height: 261px;
}
.contact-4 .contact_box2:hover {
  background: linear-gradient(45deg, #efefef, #c9c9c9);
  min-height: 261px;
}

.contact-4 .contact-form {
  /*background: linear-gradient(45deg, #e9e9e9, #cdc7c7);*/
  min-height: 522px;
}
/* CSS for call-to-action rows */
.contact-4 .call-to-action-row {
  margin-bottom: 20px;
  padding: 15px;
  /*background-color: #f7f7f7;*/
  /*border: 1px solid #ddd;*/
  border-radius: 5px;
}

.contact-4 .call-to-action-row .coninfologo {
  font-size: 24px;
  margin-bottom: 10px;
  display: flex;
  align-content: space-around;
  justify-content: center;
}

.contact-4 .call-to-action-row .coninfotitle {
  font-weight: bold;
}

.contact-4 .call-to-action-row .coninfocontent {
  color: #333;
}

/* contact4 css ends here */

.book-button {
  padding: 7px 18px;
  font-size: 19px;
  font-family: var(--header-font);
  font-weight: 700;
  text-transform: uppercase;
  display: flex;
  justify-content: center;
}
.navbar {
  min-height: 100px !important;
  padding: 3px !important;
}

@media (max-width: 991.98px) {
  .navbar-collapse {
    background: var(--brand-color);
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    padding: 1rem;
    z-index: 999;
    border: 2px solid #ddd;
  }

  .navbar-collapse .nav-link {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
  }

  .navbar-collapse .nav-link.active {
    color: #f8d43f; /* highlight */
  }
}

@media (max-width: 991px) {
  .navbar {
    background: var(--accent-blue);
    color: #fff;
    min-height: 50px !important;
  }
}
.book_btn.navbar-right a {
  border-radius: 0px;
  display: inline-block;
  font-size: 15px;
  font-weight: 600;
  margin-top: 10px;
  padding: 8px 25px;
  text-decoration: none;
  text-transform: uppercase;
}
/* New footer section Aug 23 */

.footer_col1_data {
  padding: 0px 0px 40px;
}

.footer23_section a {
  color: #fff;
  text-decoration: none;
  font-size: 19px;
}

.footer_col1 {
  color: #fff;
  font-size: 20px;
  border-right: 1px solid #fff;
}
.footer_col2 {
  color: #fff;
  font-size: 20px;
}
.footer_col3 {
  color: #fff;
  font-size: 20px;
  border-left: 1px solid #fff;
}

.footer_logo {
  margin: 10px 0px;
  /* filter: brightness(27.5); */
  max-width: 100%;
}
.footer_address {
  font-size: 15px;
  color: #dddd;
}
.footer_address i {
  color: var(--brand-color);
  font-size: 28px;
  margin-right: 8px;
}

.footer23_section {
  padding: 50px 0;
  background-color: var(--primary-dark);
  /* float: left; */
  margin: 0;
  padding: 50px 0;
  text-align: center;
  width: 100%;
}

.contact-icon {
  font-size: 36px;
  margin-right: 10px;
  vertical-align: middle;
  filter: hue-rotate(182deg);
}

.contact-info {
  display: inline-block;
  vertical-align: middle;
}

.divider {
  height: 2px;
  background-color: #ccc;
  margin: 15px 0;
}

/*New footer Ends */

/*Floating whatsapp button*/

.float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 10px;
  left: 10px;
  background: var(--brand-accent);
  color: #fff;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 3px #999;
  z-index: 100;
  border-radius: 50%;
}

.my-float {
  margin-top: 16px;
}

/*Whatsap Float ends*/
/* Base styles for slide-from-left-effect button */
.book-btn {
  padding: 7px 18px;
  font-size: 19px;
  font-family: var(--primary-font);
  font-weight: 700;
  text-transform: uppercase;
  display: flex;
  justify-content: center;
}

.book-btn.slide-from-left-effect {
  font-size: 18px;
  background: var(--primary-grad);
  color: #fff;
  border: 1px solid #777;
  padding: 8px 15px;
  margin: 30px 0 0px 0px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  text-decoration: none;
  /* display: flex; */
  display: block;
  /*width: 34%;*/
  text-align: center;
  line-height: 34px;
  font-family: var(--primary-font);
  font-weight: 400;
}

.book-btn.slide-from-left-effect:hover {
  color: var(--primary-color);
  font-family: var(--primary-font);
  font-weight: 400;
}

.book-btn.slide-from-left-effect::after {
  content: "";
  background: #fff;
  position: absolute;
  z-index: -1;
  padding: 12px 15px;
  display: block;
  transition: all 0.35s;
  top: 0;
  bottom: 0;
  left: -100%;
  right: 100%;
}

.book-btn.slide-from-left-effect:hover::after {
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  transition: all 0.35s;
}

.book-button.slide-from-left-effect {
  font-size: 15px;
  background: var(--primary-color);
  color: #fff;
  border: 1px solid var(--primary-color);
  padding: 0.85em 0.75em;
  margin: 1rem;
  position: relative;
  z-index: 1;
  overflow: hidden;
  text-decoration: none; /* remove underline from anchor */
  display: flex; /* to apply padding and dimensions to inline element */
}

.book-button.slide-from-left-effect:hover {
  color: var(--primary-color);
}

.book-button.slide-from-left-effect::after {
  content: "";
  background: #fff;
  position: absolute;
  z-index: -1;
  padding: 0.85em 0.75em;
  display: block;
  transition: all 0.35s;
  top: 0;
  bottom: 0;
  left: -100%;
  right: 100%;
}

.book-button.slide-from-left-effect:hover::after {
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  transition: all 0.35s;
}

.reservation-btn:after {
  content: "»";
  position: absolute;
  opacity: 0;
  top: 14px;
  right: -20px;
  transition: 0.5s;
}

.button_center {
  /* float: left; */
  width: 100%;
  margin: 0 auto;
  text-align: center;
}
/* New header 23 Starts*/

.footerBookBtn {
  position: relative;
  padding: 17px 30px 17px 55px !important;
}
.footerBookBtn .flaticon-edit {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 50px;
  line-height: 58px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  margin-left: 0;
  text-align: center;
}
.footerTable {
  background: var(--primary-grad);
  padding: 10px 5px 5px 5px;
  border-radius: 12px;
}

.footerTable h2 {
  color: #fff !important;
}

.featureIcons {
  margin: 20px 0px;
}

.fleetFeatures {
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
}
.fleetFeatures li {
  padding: 2px 6px;
}
.fleetFeatures img {
  width: 40px;
  height: 40px;
  background: #d7d7d7;
  padding: 7px;
  border-radius: 5px;
  color: #fff;
}

/*Airport 2 Starts*/

.airport2 {
  /* float: left; */
  margin: 0;
  padding: 100px 0;
  text-align: center;
  background-image: url("../images/airport.jpg");
  width: 100%;
  background-position: center;
  /*filter: grayscale(1);*/
  background-attachment: fixed;
  background-size: cover;
}

.airport2 .box_flex {
  display: inline-flex;
  align-items: center;
  margin: 10px 0px;
}
.airport2 h2 {
  color: #fff;
  font-weight: 900;
  font-size: 44px;
  text-shadow: 2px 1px 1px #00000075;
}
.airport2 .box_airport2 .box-img {
  background: var(--primary-grad);
  min-height: 120px;
  line-height: 117px;
  width: 60px;
}
.airport2 .box_airport2 .box-img i {
  font-size: 30px;
  color: #fff;
}
.airport2 .box_airport2 .box-text {
  background: linear-gradient(200deg, #ffffff, #dddddd);
  min-height: 120px;
  width: 320px;
  border: 1px solid #bbb;
}
.airport2 .box_airport2 .box-text--header {
  /*background: #eee;*/
  color: #333;
}
.airport2 .box_airport2 .box-text--header h3 {
  font-size: 30px;
  color: var(--primary-color);
}
.airport2 .box_airport2 .box-text--content p {
  color: #444;
  font-size: 18px;
}

@media (min-width: 320px) and (max-width: 479px) {
  .airport2 .box_airport2 .box-text {
    width: 280px;
  }
}
@media (min-width: 220px) and (max-width: 320px) {
  .airport2 .box_airport2 .box-text {
    max-width: 280px;
  }
}

/*Airport module Css*/

.airports {
  /* float: left; */
  margin: 0;
  padding: 50px 0;
  text-align: center;
  width: 100%;
  background: #f6fbff;
}

.airport-section {
  /* float: left; */
  margin: 0;
  padding: 50px 0;
  text-align: center;
  width: 100%;
  background: #f6fbff;
}
.airports h2 {
  /* float: left; */
  font-size: 30px;
  font-weight: 600;

  padding: 0;
  text-align: center;
  width: 100%;
  font-family: var(--primary-font);
  font-weight: 700;
  text-transform: uppercase;
}
.airports .thumb {
  cursor: pointer;
  /* float: left; */
  margin: 15px 0;
  overflow: hidden;
  padding: 0;
  position: relative;
  width: 100%;
  text-align: center;
  border-radius: 5px;
  box-shadow: 0 13px 27px 0 rgba(255, 82, 2, 0.11);
}
.airports_box {
  margin: 30px 0;
}
.airports .thumb .inner_thumb {
  left: 0;
  padding: 15px 0;
  position: absolute;
  text-align: center;
  top: 0;
  width: 100%;
}
.airports .thumb h3 {
  font-size: 17px;
  text-align: left;
  -webkit-font-smoothing: antialiased;
  font-family: var(--primary-font);
  font-weight: 400;
}

.airports .thumb h4 {
  position: absolute;
  top: 43%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 66px;
  color: white;
  text-shadow: 1px 1px #000;
  font-family: var(--primary-font);
  font-weight: 700;
  text-transform: uppercase;
}
.airports .thumb img {
  width: 100%;
  height: 175px;
  /*object-position: 0px -6px;*/
  object-fit: cover;
  filter: grayscale(0);
}
.airports .btm_txt h3 {
  font-size: 14px;
  text-align: center;
  -webkit-font-smoothing: antialiased;
  font-family: var(--primary-font);
  font-weight: 700;
  text-transform: uppercase;
}
.airports .thumb:hover img {
  transform: scale(1.1);
  filter: grayscale(0);
}

/*Airport module css ends*/

/*Airport 2 Ends*/

/*Top Container CSS STARTS */
.topheader_container {
  /* float: left; */
  width: 100%;
  background: linear-gradient(325.24deg, #eee 11.99%, #ccc 88.79%);
  padding: 15px 0;
  color: #fff;
  position: fixed;
  top: 0px;
  z-index: 9999;
  max-height: 35px;
  min-height: 50px;
}
.topheader_container_link {
  /* float: left; */
  width: 100%;
  text-align: center;
  padding: 0 10px;
}
.topheader_container a {
  color: #fff;
  background: #158ace;
  padding: 8px 10px;
  border-radius: 5px;
  text-decoration: none;
  margin: 0px 10%;
  font-size: 13px;
  letter-spacing: 1px;
}

.topheader_container_fixedheight {
  /*height: 35px;*/
  /* float: left; */
  width: 100%;
}

/*Top Container CSS ENDS*/

.slicklogoslider img {
  width: 100px;
  height: 100px;

  filter: grayscale(100%);
}

.slicklogoslider img:hover {
  filter: grayscale(0%) !important;
}

.service_provider {
  margin: 10px 0 0;
  padding: 25px 0;
  /* float: left; */
  width: 100%;
}
.service_provider ul {
  display: inline-block;
  width: 100%;
}
.service_provider ul li {
  display: inline-block;
  padding: 0 10px;
}
.service_provider ul li a {
  display: inline-block;
}
.navigation {
  border: medium none;
  /* float: left; */
  margin: 0;
  padding: 0;
  position: relative;
  width: 100%;
}
.navigation .navbar-header {
  margin: 0;
  padding: 0;
  /* float: left; */
  width: 33.3%;
}
.navigation .container {
  padding: 1px 0;
}
.navigation .navbar-header .navbar-brand {
  font-size: 30px;
  font-weight: 600;
  height: auto;
  letter-spacing: 2px;
  margin-top: 0px;
  padding: 0;
  text-transform: uppercase;
  line-height: 32px;
}
.navbar-brand img {
  width: 170px;
  margin-top: 5px;
  margin-left: 20px;
  border-radius: 5px;
  /* filter: brightness(1.1); */
}

.footer .in_sec_ft .store_app {
  width: 100%;
  text-align: center;
  margin: 20px 0 0;
}

.footer .in_sec_ft .store_app li {
  display: inline-block;
  width: 44%;
  margin: 0 15px 0 0px;
}
.navigation .center_custom {
  /* float: left; */
  margin: 10px 0 0;
  padding: 5px 0 0;
  text-align: center;
  width: auto;
}
.navigation .center_custom ul {
  display: inline-block;
  text-align: center;
  width: 100%;
}
.navigation .center_custom ul li {
  display: inline-block;
  float: none;
  padding: 0;
}
.navigation .center_custom ul li a {
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 0 10px;
  text-transform: uppercase;
}
.navigation .center_custom ul li a i {
  border-radius: 10%;
  /* float: left; */
  font-size: 18px;
  height: 40px;
  margin-right: 5px;
  padding: 9px;
  text-align: center;
  width: 40px;
  line-height: 24px;
}
.navigation .center_custom ul li a .txt {
  /* float: left; */
  padding: 10px 5px;
}
.navigation .book_btn {
  float: right;
  text-align: right;
  padding: 10px 6px;
}
.navigation .book_btn i {
  margin-right: 8px;
}
.book_btn.navbar-right a {
  border-radius: 0px;
  display: inline-block;
  font-size: 15px;
  font-weight: 600;

  padding: 8px 25px;
  text-decoration: none;
  /*text-transform: uppercase */
}
.navigation .container-fluid {
  padding: 0;
}
.navigation .navbar-collapse.collapse {
  /* float: left; */
  /* padding: 5px 0; */
  width: 100%;
  background: #efefef;
}
.navigation .inner_sec {
  padding: 3px 0;
  width: 100%;
  /* float: left; */
}
.navigation .navbar-collapse.collapse ul {
  display: inline-block;
  text-align: center;
  width: 100%;
}
.navigation .navbar-collapse.collapse ul li {
  display: inline-block;
  float: none;
  /* font-weight: 300; */
  /* text-transform: uppercase; */
  font-size: 18px;
  /* background: var(--primary-grad); */
}
.navigation .navbar-collapse.collapse ul li a {
  padding: 10px 15px;
  color: #efefef;
  border-radius: 5px;
  font-weight: 500;
  letter-spacing: 1px;
}
.navigation .navbar-collapse.collapse ul li a:hover {
  background: #aaa;
  color: var(--primary-color);
}
.navbar-dark .navbar-nav .nav-link.active,
.navbar-dark .navbar-nav .show > .nav-link {
  color: var(--accent-blue);
}
.glyphicon-chevron-left::before {
  content: none;
}
.glyphicon-chevron-right::before {
  content: none;
}
.carousel-inner .item a img,
.carousel-inner .item img {
  width: 100%;
}
.banner .carousel-inner .item img,
.carousel-inner .item a img {
  height: auto !important;
  width: 100%;
  filter: grayscale(100%);
}
.banner .carousel-inner .item img,
.carousel-inner .item a img:hover {
  filter: grayscale(0%) !important;
}
.modren {
  /*/* float: left; */
  margin: 0;
  padding: 50px 0;
  /*text-align: center;*/
  width: 100%;
}
.modren .trends {
  margin: 0 auto;
  max-width: 100%;
}
.modren .trends h3 {
  /* float: left; */
  margin: 15px 0;
  width: 100%;
  font-family: "Nunito Sans", sans-serif !important;
}
.modren .trends h2 {
  /* float: left; */
  font-size: 30px;
  font-weight: 600;
  margin: 0 0 40px;
  padding: 0;
  width: 100%;
  font-family: "Nunito Sans", sans-serif !important;
}
.modren .trends p {
  /* float: left; */
  font-size: 16px;
  letter-spacing: 1px;
  line-height: 30px;
  margin: 0;
  padding: 0;
  text-align: left;
  width: 100%;
  font-weight: 400;
}
.service {
  /* float: left; */
  margin: 0;
  padding: 50px 0;
  width: 100%;
  background: var(--ganesh-gray);
}
.service h2 {
  /*/* float: left; */
  font-size: 38px;
  margin: 0 0 10px;
  padding: 0;
  text-align: center;
  width: 100%;
  font-family: var(--header-font);
  font-weight: 700;
  text-transform: uppercase;
}

.top-side h2 {
  /*/* float: left; */
  font-size: 48px;
  margin: 0 0 10px;
  padding: 0;
  text-align: center;
  width: 100%;
  font-family: var(--header-font);
  font-weight: 700;
  text-transform: uppercase;
}
.service .thumb {
  cursor: pointer;
  /* float: left; */
  margin: 15px 0;
  overflow: hidden;
  padding: 0;
  position: relative;
  width: 100%;
}
.service .thumb .inner_thumb {
  left: 0;
  padding: 28px 0;
  /* position: absolute; */
  text-align: center;
  top: 0;
  width: 100%;
  height: 113px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service .thumb .inner_thumb i {
  padding-left: 5px;
}
.service .thumb .inner_thumb h3 {
  font-size: 17px;
  margin: 0;
  /*text-transform: uppercase;*/
  -webkit-font-smoothing: antialiased;

  /* font-family: var(--header-font); */
  font-weight: 700;
  text-transform: uppercase;
}
.service .thumb:hover img {
  transform: scale(1.1);
}
.black {
  /* float: left; */
  width: 100%;
}
.black .main_div {
  /* float: left; */
  margin: 0;
  max-width: 100%;
  padding: 15px;
  width: 100%;
}
.black .main_div h4 {
  /* float: left; */
  font-size: 25px;
  font-weight: 600;
  margin: 10px 0 0;
  padding: 0;
  text-transform: uppercase;
}
.black .main_div a {
  display: inline-block;
  font-size: 15px;
  float: right;
  font-weight: 600;
  padding: 10px 25px;
  text-decoration: none;
  text-transform: uppercase;
  border-radius: 30px;
}
.slick-slide {
  margin: 0;
}
.slick-slide img {
  width: 100%;
}
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}
.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: 0;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}
.slick-slider .slick-list,
.slick-slider .slick-track {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
}
.slick-track:after,
.slick-track:before {
  display: table;
  content: "";
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}
.slick-slide {
  display: none;
  /* float: left; */
  height: 100%;
  min-height: 1px;
}
[dir="rtl"] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
}
.slick-arrow.slick-hidden {
  display: none;
}
.carousel-item > div {
  /* float: left; */
}
.carousel-by-item [class*="cloneditem-"] {
  display: none;
}
.carousel-inner .item a img,
.carousel-testi .carousel-inner .item img {
  width: auto;
}
.carousel-testi {
  background-attachment: fixed;
  background-size: cover;
  /*/* float: left; */
  padding: 75px 0;
  width: 100%;
  position: relative;
}
.carousel-testi::before {
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
.carousel-testi h2 {
  /* float: left; */
  font-size: 30px;
  font-family: "Nunito Sans", sans-serif !important;
  font-weight: 400;
  letter-spacing: 3px;
  margin: 0 0 30px;
  text-align: center;
  width: 100%;
}
.carousel-testi h2::before {
  bottom: 0;
  content: "";
  height: 1px;
  left: 46%;
  position: absolute;
  right: 46%;
}
.carousel-testi .star_ff {
  text-align: center;
  width: 100%;
}
.carousel-testi .star_ff h5 {
  font-size: 35px;
  /*font-family: 'Pinyon Script', cursive;*/
}
.carousel-testi .item {
  background: radial-gradient(
      circle at top right,
      rgba(52, 211, 153, 0.15),
      transparent 55%
    ),
    rgba(15, 23, 42, 0.92);
  border-radius: 18px;
  padding: 30px 26px 24px;
  border: 1px solid rgba(148, 163, 184, 0.25);
  box-shadow: 0 22px 40px rgba(15, 23, 42, 0.7), 0 0 0 1px rgba(15, 23, 42, 0.8);
  backdrop-filter: blur(6px);
  max-width: 920px;
  margin: 0 auto;
  color: #fff;
}

.book_btn.navbar-banner {
  font-size: 18px;
  padding: 12px;
  text-align: center;
}

.book_btn.navbar-banner a {
  border-radius: 10px;
  display: inline-block;
  font-size: 22px;
  font-weight: 200;
  padding: 10px 25px;
  text-decoration: none;
  text-transform: uppercase;
  font-family: "Nunito Sans", sans-serif !important;
}

#fade-quote-carousel.carousel {
  padding-bottom: 60px;
}
#fade-quote-carousel.carousel .carousel-inner .item {
  opacity: 0;
  -webkit-transition-property: opacity;
  -ms-transition-property: opacity;
  transition-property: opacity;
}
#fade-quote-carousel.carousel .carousel-inner .active {
  opacity: 1;
  -webkit-transition-property: opacity;
  -ms-transition-property: opacity;
  transition-property: opacity;
}
#fade-quote-carousel.carousel .carousel-indicators {
  bottom: 10px;
}
#fade-quote-carousel.carousel .carousel-indicators > li {
  border: none;
}
#fade-quote-carousel blockquote {
  text-align: center;
  border: none;
  padding: 34px;
  position: relative;
  margin: 0 0 5px;
}
.carousel-testi blockquote::before {
  content: "";
  font-family: fontawesome;
  font-size: 30px;
  left: 0;
  position: absolute;
  top: 0;
}
.carousel-testi blockquote::after {
  content: "\f10e";
  font-family: fontawesome;
  font-size: 30px;
  right: 0;
  position: absolute;
  bottom: 0;
}
#fade-quote-carousel .profile-circle {
  width: 100px;
  height: 100px;
  margin: 0 auto;
  border-radius: 100px;
  display: none;
}
.highlight {
  /* float: left; */
  margin: 0;
  padding: 20px 0;
  width: 100%;
}
.highlight .patren .inner_thumb .left_sec {
  /* float: left; */
  font-size: 30px;
  height: 100%;
  text-align: right;
  width: 15%;
}
.highlight .patren .inner_thumb .right_sec {
  /* float: left; */
  padding: 0 15px;
  width: 85%;
}
.highlight .patren .inner_thumb {
  /* float: left; */
  padding: 10px 0;
  width: 100%;
}
.highlight .patren .inner_thumb .right_sec h3 {
  /* float: left; */
  font-size: 25px;
  font-weight: 600;
  margin: 0;
  padding: 0;
  width: 100%;
}
.highlight .patren .inner_thumb .right_sec p {
  /* float: left; */
  font-size: 13px;
  margin: 10px 0 0;
  width: 100%;
}
footer {
  /* float: left; */
  padding: 20px 0 0;
  width: 100%;
  background: #000;
  color: #fff;
  border-top: 4px solid var(--brand-color);
}
footer .in_sec_ft h3 {
  /* float: left; */
  font-size: 27px;
  /* margin: 10px 0 25px; */
  padding: 0 0 15px;
  position: relative;
  text-transform: uppercase;
  width: 100%;
  text-align: center;
  font-weight: 700;
}
/*footer .in_sec_ft h3::before {*/
/*    bottom: 0;*/
/*    content: "";*/
/*    height: 1px;*/
/*    left: 0;*/
/*    position: absolute;*/
/*    width: 40px */
/*}*/
footer p {
  font-size: 16px;
  letter-spacing: 1px;
  line-height: 2;
  text-align: center;
}
footer .in_sec_ft {
  /* float: left; */
  margin: 0;
  width: 100%;
}
footer .information .in_sec_ft ul {
  /* float: left; */
  width: 50%;
}
footer .information .in_sec_ft ul li {
  padding: 0 33px;
}
.in_sec_ft ul li {
  /* float: left; */
  font-size: 17px;
  line-height: 34px;
  padding: 0;
  width: 100%;
  color: #ddd !important;
  background: var(--primary-dark);
  margin: 3px 0px;
  display: flex;
  align-items: center;
  justify-content: left;
}
.in_sec_ft ul li span {
  border-radius: 5px;
  /* float: left; */
  font-size: 15px;
  height: 35px;
  line-height: 35px;
  margin-bottom: 10px;
  margin-right: 14px;
  text-align: center;
  width: 35px;
}
.copyright_top {
  /* float: left; */
  margin: 0;
  padding: 0;
  text-align: center;
  width: 100%;
}
.copyright_top .d1 ul {
  display: inline-block;
  margin: 10px 0 0;
}
.contact-text {
  /* float: left; */
  margin: 0;
  padding: 30px 0 5px;
  width: 100%;
  text-align: center;
  font-size: 16px;
}
.copyright_top .d1 ul li {
  display: inline-block;
}
.copyright_top .d1 ul li a {
  display: inline-block;
  padding: 0 5px;
}
.copyright {
  /* float: left; */
  margin: 0;
  padding: 0;
  text-align: center;
  width: 100%;
}
.copyright .d1 {
  height: 82px;
  margin: 20px 0 0;
  padding: 10px 0;
}
.copyright .d1 h3 {
  /* float: left; */
  font-family: roboto;
  font-size: 16px;
  letter-spacing: 2px;
  margin: 0;
  padding: 0;
  text-transform: uppercase;
  width: 100%;
}
.copyright .d1 ul {
  display: inline-block;
  margin: 10px 0 0;
}
.copyright .d1 ul li {
  display: inline-block;
}
.copyright .d1 ul li a {
  display: inline-block;
  padding: 0 5px;
}

.copyright .d1 ul li a img {
  filter: grayscale(100%);
}

.copyright .d1 ul li a img:hover {
  filter: grayscale(0%) !important;
}

footer .copyright a {
  text-decoration: none;
}
footer .copyright > p {
  /* float: left; */
  margin: 0;
  padding: 20px 0;
  width: 100%;
}
footer .in_sec_ft ul li span {
  margin-left: 13px;
  margin-top: 9px;
}
.bottom_slider .carousel-inner .item {
  backface-visibility: hidden;
  perspective: 1000px;
  transition: all 0.4s linear 0;
}
.bottom_slider {
  /* float: left; */
  padding: 50px 0;
  width: 100%;
}
.bottom_slider .container-fluid {
  padding: 0;
}
.bottom_slider .col-xs-12.col-sm-12.col-md-12 {
  padding: 0;
}
.bottom_slider .col-xs-12.col-sm-3.col-md-3 {
  padding: 0 1px;
}
.bottom_slider h2 {
  display: inline-block;
  font-size: 40px;
  font-weight: 600;
  margin: 0 0 50px;
  padding: 0;
  font-family: "Nunito Sans", sans-serif !important;
  text-align: center;
  text-transform: uppercase;
  width: 100%;
}
.bottom_slider .item .inner_col h3 {
  /* float: left; */
  font-size: 15px;
  font-weight: 700;
  margin-top: 12px;
  text-align: center;
  text-transform: uppercase;
  width: 100%;
}
.bottom_slider .item .inner_col span {
  /* float: left; */
  font-size: 12px;
  font-weight: 600;
  margin: 0;
  padding: 8px 0 0;
  text-transform: uppercase;
  width: 100%;
}
.bottom_slider .item .inner_col {
  padding: 0 5px;
  text-align: center;
  width: 100%;
}
.bottom_slider .item .inner_col a {
  border-radius: 0;
  display: inline-block;
  /* float: left; */
  font-size: 14px;
  padding: 8px 0;
  text-decoration: none;
  width: 100%;
}
.bottom_slider #slider-text {
  padding-top: 40px;
  display: block;
}
.bottom_slider #slider-text .col-md-6 {
  overflow: hidden;
}
.bottom_slider #slider-text h2 {
  font-family: "Josefin Sans", sans-serif;
  font-weight: 400;
  font-size: 30px;
  letter-spacing: 3px;
  margin: 30px auto;
  padding-left: 40px;
}
.bottom_slider #slider-text h2::after {
  content: "";
  position: absolute;
  bottom: 35px;
  width: 100%;
}
.bottom_slider #slider-control img {
  padding-top: 60%;
  margin: 0 auto;
}
@media screen and (max-width: 992px) {
  .bottom_slider #slider-control img {
    padding-top: 70px;
    margin: 0 auto;
  }
}
.bottom_slider .carousel-showmanymoveone .carousel-control {
  background-image: none;
  width: 1%;
  margin-top: 6%;
}
.bottom_slider .carousel-showmanymoveone .carousel-control.left {
  margin-left: 5px;
}
.bottom_slider .carousel-showmanymoveone .carousel-control.right {
  margin-right: 5px;
}
.carousel-showmanymoveone .cloneditem-1,
.carousel-showmanymoveone .cloneditem-2,
.carousel-showmanymoveone .cloneditem-3,
.carousel-showmanymoveone .cloneditem-4,
.carousel-showmanymoveone .cloneditem-5 {
  display: none;
}
@media all and (min-width: 768px) {
  .carousel-showmanymoveone .carousel-inner > .active.left,
  .carousel-showmanymoveone .carousel-inner > .prev {
    left: -50%;
  }
  .carousel-showmanymoveone .carousel-inner > .active.right,
  .carousel-showmanymoveone .carousel-inner > .next {
    left: 50%;
  }
  .carousel-showmanymoveone .carousel-inner > .active,
  .carousel-showmanymoveone .carousel-inner > .left,
  .carousel-showmanymoveone .carousel-inner > .prev.right {
    left: 0;
  }
  .carousel-showmanymoveone .carousel-inner .cloneditem-1 {
    display: block;
  }
}
@media all and (min-width: 768px) and (transform-3d),
  all and (min-width: 768px) and (-webkit-transform-3d) {
  .carousel-showmanymoveone .carousel-inner > .item.active.right,
  .carousel-showmanymoveone .carousel-inner > .item.next {
    -webkit-transform: translate3d(50%, 0, 0);
    transform: translate3d(50%, 0, 0);
    left: 0;
  }
  .carousel-showmanymoveone .carousel-inner > .item.active.left,
  .carousel-showmanymoveone .carousel-inner > .item.prev {
    -webkit-transform: translate3d(-50%, 0, 0);
    transform: translate3d(-50%, 0, 0);
    left: 0;
  }
  .carousel-showmanymoveone .carousel-inner > .item.active,
  .carousel-showmanymoveone .carousel-inner > .item.left,
  .carousel-showmanymoveone .carousel-inner > .item.prev.right {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    left: 0;
  }
}
@media all and (min-width: 992px) {
  .carousel-showmanymoveone .carousel-inner > .active.left,
  .carousel-showmanymoveone .carousel-inner > .prev {
    left: -16.666%;
  }
  .carousel-showmanymoveone .carousel-inner > .active.right,
  .carousel-showmanymoveone .carousel-inner > .next {
    left: 16.666%;
  }
  .carousel-showmanymoveone .carousel-inner > .active,
  .carousel-showmanymoveone .carousel-inner > .left,
  .carousel-showmanymoveone .carousel-inner > .prev.right {
    left: 0;
  }
  .carousel-showmanymoveone .carousel-inner .cloneditem-2,
  .carousel-showmanymoveone .carousel-inner .cloneditem-3,
  .carousel-showmanymoveone .carousel-inner .cloneditem-4,
  .carousel-showmanymoveone .carousel-inner .cloneditem-5,
  .carousel-showmanymoveone .carousel-inner .cloneditem-6 {
    display: block;
  }
}
.service .btm_txt {
  /* float: left; */
  padding: 15px;
  width: 100%;
}
.service .btm_txt p {
  font-size: 15px;
  font-weight: 500;
  height: 122px;
  letter-spacing: 0;
  line-height: 28px;
  margin: 0;
  overflow: hidden;
  text-align: left;
}
.in_service .col-sm-4 {
  margin-bottom: 30px;
}
.service_bg {
  /* float: left; */
  padding: 200px 0;
  position: relative;
  width: 100%;
}

.service_bg::before {
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  background: rgb(0 13 18 / 75%) none repeat scroll 0 0;
}
.service_bg h2 {
  /* float: left; */
  font-size: 34px;
  font-weight: 400;
  margin: 0;
  top: 80px;
  padding: 0;
  text-align: center;
  width: 100%;
  text-transform: uppercase;
  position: relative;
  /* text-shadow: 1px 0px 3px #000; */
}

@media (max-width: 768px) {
  .service_bg {
    padding: 60px;
  }
  .service_bg h2 {
    top: 1px;
  }
}
.fleet_slide {
  /* float: left; */
  padding: 60px 0;
  width: 100%;
}
.fleet_slide .thumbnail {
  margin-bottom: 0;
  padding: 0;
}
.fleet_slide .thumbnails .col-sm-3 {
  padding: 2px 0;
}
.fleet_slide #slide-content h2 {
  /* float: left; */
  font-size: 23px;
  font-weight: 700;
  margin: 0;
  padding: 0;
  text-transform: uppercase;
  width: 100%;
  color: var(--primary-color);
}
.fleet_slide #slide-content h3 {
  color: #444;
  /* float: left; */
  font-size: 19px;
  font-weight: 400;
  margin: 0;
  padding: 30px 0;
  text-transform: uppercase;
  width: 100%;
}
.fleet_slide #slide-content h3 span {
  display: inline-block;
}
.fleet_slide .slide-content h3 span ul {
  display: inline-block;
  margin-left: 50px;
}
.fleet_slide #slide-content h3 span ul li {
  display: inline-block;
  font-weight: 300;
  padding: 0 10px;
}
.fleet_slide #slide-content h3 span ul li:last-child {
  border: none;
}
.fleet_slide #slide-content p {
  /* float: left; */
  font-size: 16px;
  font-weight: 400;
  line-height: 29px;
  margin: 0;
  padding: 0;
  width: 100%;
  margin-bottom: 9px;
}
.fleet_slide #slide-content a {
  /* float: left; */
  font-size: 20px;
  margin: 30px 0 0;
  padding: 8px 30px;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
}
.DvCont .thumb-box {
  padding: 1.4em 0 1em;
  margin-left: -1%;
  width: 102%;
}
.DvCont .thumb-box .thumbs-ad li {
  /* float: left; */
  width: 25%;
  text-align: center;
  padding: 0 1%;
}
.DvCont .thumb-box .thumbs-ad li img {
  width: 100%;
  opacity: 0.8;
}
.DvCont .thumb-box .thumbs-ad li img.active {
  opacity: 1;
}
.DvCont .thumb-box .thumbs-ad li:hover img {
  opacity: 1;
}
.make_reservation {
  /* float: left; */
  margin: 0;
  padding: 0;
  text-align: center;
  width: 100%;
}
.make_reservation .main_div {
  margin: 0 auto;
  max-width: 85%;
}
.make_reservation .inner_sec {
  /* float: left; */
  margin: -51px 0 -50px;
  padding: 30px 35px;
  position: relative;
  width: 100%;
}
.make_reservation .inner_sec > h2 {
  /* float: left; */
  font-size: 35px;
  font-weight: 500;
  margin: 0;
  padding: 0;
}
.make_reservation .inner_sec > h2 strong {
  font-weight: 600;
}
.make_reservation .inner_sec a {
  float: right;
  font-size: 16px;
  font-weight: 600;
  padding: 9px 20px 9px 40px;
  position: relative;
  text-decoration: none;
}
.make_reservation .inner_sec a::before {
  content: "";
  font-family: fontawesome;
  font-size: 25px;
  left: 15px;
  position: absolute;
  top: 3px;
}
.in_testil .carousel-inner {
  padding: 5px 0;
}
.blog {
  background-image: url(../images/blog.jpg);
  background-size: cover;
  /* float: left; */
  padding: 100px 0;
  width: 100%;
}
.thumb_blog {
  /* float: left; */
  width: 100%;
  padding: 50px 0 80px;
  line-height: 1.9;
}
.thumb_blog .inner {
  border-radius: 12px;
  /* float: left; */
  margin: 30px 0;
  overflow-wrap: break-word;
  padding: 35px;
  position: relative;
  text-align: center;
  width: 100%;
}
.thumb_blog .inner .txt {
  /* float: left; */
  margin: 0;
  padding: 0;
  width: 100%;
}
.thumb_blog .inner .txt h2 {
  /* float: left; */
  font-size: 25px;
  font-weight: 400;
  margin: 0;
  padding: 0;
  width: 100%;
}
.thumb_blog .inner .txt h6 {
  /* float: left; */
  font-family: roboto;
  font-size: 13px;
  font-weight: 500;
  margin: 0;
  padding: 15px 0;
  width: 100%;
}
.thumb_blog .inner .txt p {
  /* float: left; */
  font-size: 16px;
  letter-spacing: 1px;
  line-height: 28px;
  margin: 0;
  padding: 0;
  text-align: left;
  width: 100%;
}
.thumb_blog .inner a {
  display: inline-block;
  font-size: 16px;
  margin: 15px 0 0;
  padding: 8px 35px;
  text-decoration: none;
}
.thumb_blog .main_div {
  margin: 0 auto;
  max-width: 80%;
  text-align: justify;
}
.thumb_blog .main_div p {
  font-weight: 400;
  letter-spacing: 1px;
  line-height: 36px;
  font-size: 17px;
}
.thumb_blog .main_div h2 {
  /* float: left; */
  font-size: 25px;
  font-weight: 700;
  margin: 0 0 20px;
  padding: 0;
  width: 100%;
}
.contact {
  background-image: url(../images/contact.jpg);
  background-size: cover;
  /* float: left; */
  padding: 100px 0;
  width: 100%;
}
.way {
  /* float: left; */
  margin: 0;
  padding: 50px 0;
  width: 100%;
}
.way .left_sec {
  text-align: center;
}
.way .left_sec .inner_form {
  border-radius: 15px;
  /* float: left; */
  margin: 0 0 20px;
  padding: 20px 10px;
  width: 100%;
  height: 310px;
}
.way .right_sec {
  border-radius: 15px;
  /* float: left; */
  margin: 0 0 20px;
  padding: 20px 25px 33px;
  height: 310px;
}
.way h3 {
  font-size: 23px;
  font-weight: 700;
  margin: 0 0 30px;
  padding: 0;
  text-align: center;
  width: 100%;
  font-size: 23px;
  font-weight: 500;
  margin: 0 0 30px;
  padding: 0;
  text-align: center;
  width: 100%;
}
.way .left_sec .inner_form .form-group input {
  background: 0 0;
  border-radius: 0;
  height: 37px;
}
.way .left_sec .inner_form .form-group textarea {
  background: 0 0;
  border-radius: 0;
}
.way .right_sec .inner {
  height: 198px;
  padding: 15px 30px;
}
.way .right_sec .inner li {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}
.way .right_sec .inner li a {
  text-decoration: none;
}
.way .right_sec .inner li p {
  /* float: left; */
}
.way .left_sec a {
  border-radius: 30px;
  display: inline-block;
  font-size: 15px;
  font-weight: 600;
  padding: 10px 25px;
  text-decoration: none;
  text-transform: uppercase;
}
.map {
  /* float: left; */
  margin-bottom: -5px;
  width: 100%;
}
.map iframe {
  width: 100%;
}
.last_sec {
  /* float: left; */
  margin-top: 80px;
  width: 100%;
}
.way .left_sec .inner_form:input[placeholder] {
  opacity: 1;
}
.detail_service {
  /* float: left; */
  margin: 60px 0 0;
  padding: 0;
  text-align: center;
  width: 100%;
}
.detail_service .inner {
  margin: 0 auto;
  max-width: 960px;
  position: relative;
}
.detail_service .inner h2 {
  font-weight: 400;
  letter-spacing: 1px;
  margin: 0;
  padding: 18px 0;
  position: absolute;
  text-transform: uppercase;
  top: 0;
  width: 100%;
  font-size: 40px !important;
}
.steps-form-2 {
  display: table;
  width: 100%;
  position: relative;
  margin-bottom: 70px;
}
.steps-form-2 .steps-row-2 {
  display: table-row;
}
.steps-form-2 .steps-row-2::before {
  bottom: 0;
  content: " ";
  height: 40px;
  position: absolute;
  top: 0;
  width: 100%;
}
.steps-form-2 .steps-row-2 .steps-step-2 {
  display: table-cell;
  text-align: center;
  position: relative;
}
.steps-form-2 .steps-row-2 .steps-step-2 p {
  margin-top: 0.5rem;
}
.steps-form-2 .steps-row-2 .steps-step-2 button[disabled] {
  opacity: 1 !important;
}
.steps-form-2 .steps-row-2 .steps-step-2 .btn-circle-2 {
  border: none !important;
  height: 40px;
  margin-top: 0;
  padding: 0;
  width: 40px;
}
.steps-form-2 .steps-row-2 .steps-step-2 .btn-circle-2 .fa {
  font-size: 1.7rem;
}
.ride_trail {
  /*  background-image: url(../images/reserve.jpg); */
  background-size: cover;
  /* float: left; */
  margin: 0;
  padding: 50px 0;
  width: 100%;
}
.ride_trail .inner {
  /* float: left; */
  margin: 0;
  padding: 70px 15px 30px;
  position: relative;
  width: 100%;
}
.ride_trail .inner h3 {
  /* float: left; */
  font-size: 22px;
  margin: 0 0 35px;
  padding: 0 0 20px;
  position: relative;
  text-align: center;
  width: 100%;
}
.ride_trail .inner h3::before {
  bottom: 10px;
  content: "";
  height: 2px;
  left: 45%;
  position: absolute;
  right: 45%;
}
.ride_trail .inner .form-group .input-group input {
  border-radius: 0;
  font-size: 14px;
  height: 40px;
}
.ride_trail .input-group {
  width: 100%;
}

.ride_trail .inner .form-group .input-group .input-group-addon {
  border-radius: 0;
  width: 40px;
}
.form-group .input-group .input-group-addon {
  background: #ebebeb;
}
.ride_trail .inner .move_btn {
  margin-top: 15px;
  text-align: center;
}
.btn.btn-mdb-color.btn-rounded.nextBtn-2.float-right {
  border: medium none;
  display: inline-block;
  font-family: roboto;
  font-size: 18px;
  letter-spacing: 2px;
  padding: 7px 50px;
}

.ex_black i {
  color: #333;
  padding: 1px;
}
.btn.btn-mdb-color.btn-rounded.prevBtn-2.float-left {
  border: medium none;
  display: inline-block;
  font-family: roboto;
  font-size: 18px;
  letter-spacing: 2px;
  padding: 7px 50px;
}
.btn.btn-mdb-color {
  text-transform: uppercase;
  width: 170px;
}
.custom-select {
  position: relative;
  font-family: Arial;
}
.custom-select select {
  display: none;
}
.select-selected:after {
  position: absolute;
  content: "";
  top: 17px;
  right: 10px;
  width: 0;
  height: 0;
}
.select-selected.select-arrow-active:after {
  top: 7px;
}
.select-items div,
.select-selected {
  cursor: pointer;
  height: 40px;
  padding: 8px 16px;
}
.select-items {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 99;
}
.select-hide {
  display: none;
}
.realtives {
  position: relative;
}
#owl-demo .item {
  margin: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  text-align: center;
}
#owl-demo .item img {
  width: 100%;
  height: 100px;
}
.customNavigation {
  text-align: right;
  visibility: hidden;
}
.customNavigation a {
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.ride_trail #demo .inner {
  padding: 5px 10px;
}
.ride_trail #demo .item .inner h3 {
  font-size: 16px;
  font-weight: 700;
  height: 50px;
  letter-spacing: 1px;
  margin: 15px 0 10px;
  padding: 0;
}
.ride_trail #demo .item .inner p {
  /* float: left; */
  font-size: 13px;
  margin: 0;
  width: 100%;
}
.ride_trail #demo .item .inner h2 {
  /* float: left; */
  font-size: 17px;
  font-weight: 700;
  margin: 0;
  padding: 15px 0;
  width: 100%;
}
.ride_trail #demo .item .inner a {
  border-radius: 4px;
  display: inline-block;
  font-weight: 600;
  margin: -10px 0 0;
  padding: 5px 25px;
  position: relative;
  text-decoration: none;
  top: -25px;
}
.ride_trail #demo .item .inner a:hover {
  background: #bdcc29;
}
.ride_trail .customlide {
  border: none;
  padding: 0;
  box-shadow: none;
}
.ride_trail .inner .vechile_custom {
  margin: 0;
}
.ride_trail #demo .inner ul {
  display: inline-block;
  list-style: outside none none;
  margin: 0;
  padding: 0;
  float: right;
}
.ride_trail #demo .inner .left_sec {
  /* float: left; */
}
.ride_trail #demo .inner ul li {
  display: inline-block;
  padding: 3px 6px;
}
.ride_trail #demo .inner .custom_outer_lugage {
  /* float: left; */
  margin: 0;
  padding: 0;
  width: 100%;
}
.ride_trail .item .inner .color_option {
  border: medium none;
  /* float: left; */
  padding: 0 0 5px;
  width: 100%;
}
.ride_trail .color_option p {
  float: left !important;
  font-size: 14px !important;
  margin: 0 !important;
  width: auto !important;
}
.ride_trail .color_option ul {
  border: none !important;
  float: right;
  text-align: right;
  width: 80%;
}
.ride_trail .color_option ul li {
  border: medium none;
  float: right;
  padding: 0 2px !important;
  width: 22%;
}
.ride_trail .color_option ul li img {
  height: 20px !important;
  cursor: pointer;
}
.ride_trail .color_option ul li:last-child {
  border: none !important;
}
.ride_trail .map_sec ul {
  list-style: outside none none;
  margin: 0;
  padding: 0;
}
.ride_trail .map_sec ul li {
  /* float: left; */
  margin-bottom: 12px;
  width: 100%;
}
.customlide #demo {
  /* float: left; */
  padding: 15px;
  width: 100%;
}
.ride_trail .customlide .item {
  /* float: left; */
  padding: 15px 10px;
  text-align: center;
}
.main_vechile {
  margin: 0 auto;
  max-width: 70%;
}
.vechile_custom_btn {
  margin-bottom: 35px;
}
.detail_address select {
  padding: 4px;
  margin: 0;
  border: none;
  outline: 0;
  display: inline-block;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  width: 150px;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}
@media screen and (-webkit-min-device-pixel-ratio: 0) {
  .detail_address select {
    padding-right: 18px;
  }
}
.detail_address label {
  position: relative;
  width: 100%;
}
.detail_address label::after {
  content: "";
  font-family: FontAwesome;
  font-size: 18px;
  padding: 0 0 2px;
  pointer-events: none;
  position: absolute;
  right: 10px;
  top: 8px;
  font-weight: 400;
}
.detail_address label:before {
  content: "";
  right: 4px;
  top: 0;
  width: 23px;
  height: 18px;
  position: absolute;
  pointer-events: none;
  display: block;
}
.detail_address label select {
  border-radius: 0;
  font-size: 13px;
  height: 40px;
  width: 100%;
  font-family: open sans;
  font-weight: 400;
  padding: 0 10px;
}
.detail_address label select option {
  font-size: 13px;
  padding: 10px;
}
.ride_trail .main_div {
  margin: 0 auto;
  max-width: 65%;
}
.ride_trail .ex_black h2 {
  font-size: 22px;
  left: 0;
  margin: 0;
  padding: 10px 0;
  position: absolute;
  text-align: center;
  text-transform: uppercase;
  top: 0;
  width: 100%;
}
.btn.btn-success.btn-rounded.float-right {
  display: inline-block;
  font-family: roboto;
  font-size: 18px;
  letter-spacing: 2px;
  padding: 7px 50px;
}
.ride_trail .loginr_btn {
  /* float: left; */
  margin: 0 0 50px;
  padding: 0;
  width: 100%;
}
.ride_trail .loginr_btn .btn.btn-mdb-color {
  margin: 0;
}
.color_option > span {
  float: right;
}
.bootstrap-touchspin .input-group-btn-vertical {
  position: relative;
  white-space: nowrap;
  width: 1%;
  vertical-align: middle;
  display: table-cell;
}
.bootstrap-touchspin .input-group-btn-vertical > .btn {
  display: block;
  float: none;
  width: 100%;
  max-width: 100%;
  padding: 8px 10px;
  margin-left: -1px;
  position: relative;
}
.bootstrap-touchspin .input-group-btn-vertical .bootstrap-touchspin-up {
  border-radius: 0;
  border-top-right-radius: 4px;
}
.bootstrap-touchspin .input-group-btn-vertical .bootstrap-touchspin-down {
  margin-top: -2px;
  border-radius: 0;
  border-bottom-right-radius: 4px;
}
.bootstrap-touchspin .input-group-btn-vertical i {
  position: absolute;
  top: 3px;
  left: 5px;
  font-size: 9px;
  font-weight: 400;
}
.spin_move .bootstrap-touchspin .input-group-btn button {
  height: 40px;
  border-radius: 0;
}
.spin_move .input-group-addon.bootstrap-touchspin-prefix {
  display: none;
}
.spin_move label {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
}
.detail_address .child_age {
  /* float: left; */
  padding: 0 0 5px;
  width: 100%;
  font-family: roboto;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
}
.detail_address label {
  margin-bottom: 0;
}
.spin_move .children_count {
  visibility: hidden;
}
.switch {
  opacity: 0;
  position: absolute;
  z-index: 1;
  width: 18px;
  height: 18px;
  cursor: pointer;
}
.switch + .lable {
  position: relative;
  display: inline-block;
  margin: 0;
  line-height: 20px;
  min-height: 18px;
  min-width: 18px;
  font-weight: 400;
  cursor: pointer;
}
.switch + .lable::before {
  cursor: pointer;
  font-family: fontAwesome;
  font-weight: 400;
  font-size: 12px;
  content: "\a0";
  border-radius: 0;
  display: inline-block;
  text-align: center;
  height: 16px;
  line-height: 14px;
  min-width: 16px;
  margin-right: 1px;
  position: relative;
  top: -1px;
}
.switch:checked + .lable::before {
  display: inline-block;
  content: "\f00c";
}
.switch + .lable {
  margin: 0 4px;
  min-height: 24px;
}
.switch + .lable::before {
  font-weight: 400;
  font-size: 11px;
  line-height: 17px;
  height: 20px;
  overflow: hidden;
  border-radius: 12px;
  text-align: left;
  /* float: left; */
  padding: 0;
  width: 52px;
  text-indent: -21px;
  margin-right: 0;
  -webkit-transition: text-indent 0.3s ease;
  -o-transition: text-indent 0.3s ease;
  transition: text-indent 0.3s ease;
  top: auto;
}
.switch.switch-bootstrap + .lable::before {
  font-family: FontAwesome;
  content: "\f00d";
  box-shadow: none;
  border-width: 0;
  font-size: 16px;
  width: 52px;
  height: 22px;
  line-height: 21px;
  text-indent: 32px;
  -webkit-transition: background 0.1s ease;
  -o-transition: background 0.1s ease;
  transition: background 0.1s ease;
}
.switch.switch-bootstrap + .lable::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 3px;
  border-radius: 12px;
  width: 18px;
  height: 18px;
  text-align: center;
  -webkit-transition: left 0.2s ease;
  -o-transition: left 0.2s ease;
  transition: left 0.2s ease;
}
.switch.switch-bootstrap:checked + .lable::before {
  content: "\f00c";
  text-indent: 6px;
}
.switch.switch-bootstrap:checked + .lable::after {
  left: 32px;
}
.switch-square {
  opacity: 0;
  position: absolute;
  z-index: 1;
  width: 18px;
  height: 18px;
  cursor: pointer;
}
.switch-square + .lable {
  position: relative;
  display: inline-block;
  margin: 0;
  line-height: 20px;
  min-height: 18px;
  min-width: 18px;
  font-weight: 400;
  cursor: pointer;
}
.switch-square + .lable::before {
  cursor: pointer;
  font-family: fontAwesome;
  font-weight: 400;
  font-size: 12px;
  content: "\a0";
  border-radius: 0;
  display: inline-block;
  text-align: center;
  height: 16px;
  line-height: 14px;
  min-width: 16px;
  margin-right: 1px;
  position: relative;
  top: -1px;
}
.switch-square:checked + .lable::before {
  display: inline-block;
  content: "\f00c";
}
.switch-square + .lable {
  margin: 0 4px;
  min-height: 24px;
}
.switch-square + .lable::before {
  font-weight: 400;
  font-size: 11px;
  line-height: 17px;
  height: 20px;
  overflow: hidden;
  border-radius: 2px;
  text-align: left;
  /* float: left; */
  padding: 0;
  width: 52px;
  text-indent: -21px;
  margin-right: 0;
  -webkit-transition: text-indent 0.3s ease;
  -o-transition: text-indent 0.3s ease;
  transition: text-indent 0.3s ease;
  top: auto;
}
.switch-square.switch-bootstrap + .lable::before {
  font-family: FontAwesome;
  content: "\f00d";
  box-shadow: none;
  border-width: 0;
  font-size: 16px;
  height: 22px;
  line-height: 21px;
  text-indent: 32px;
  -webkit-transition: background 0.1s ease;
  -o-transition: background 0.1s ease;
  transition: background 0.1s ease;
}
.switch-square.switch-bootstrap + .lable::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 3px;
  border-radius: 12px;
  width: 18px;
  height: 18px;
  text-align: center;
  -webkit-transition: left 0.2s ease;
  -o-transition: left 0.2s ease;
  transition: left 0.2s ease;
}
.switch-square.switch-bootstrap:checked + .lable::before {
  content: "\f00c";
  text-indent: 6px;
}
.switch-square.switch-bootstrap:checked + .lable::after {
  left: 32px;
}
.switch-square.switch-bootstrap + .lable::after {
  border-radius: 2px;
}
.switch_puff {
  /* float: left; */
  padding-top: 5px;
  width: 100%;
}
.switch_puff .switch-primary h5 {
  /* float: left; */
  font-size: 16px;
  margin: 0 20px 0 0;
  padding: 1px 0;
}
.switch_puff .label-switch.switch-primary {
  margin-top: 30px;
  text-align: right;
  width: 100%;
}
.container1 {
  margin-right: 10px;
  cursor: pointer;
  display: inline-block;

  font-size: 15px;
  font-weight: 500;
  margin-bottom: 12px;
  padding-left: 35px;
  position: relative;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.container1 input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  border-radius: 50%;
}
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
.container1 input:checked ~ .checkmark:after {
  display: block;
}
.container1 .checkmark:after {
  top: 9px;
  left: 9px;
  width: 8px;
  height: 8px;
}
.round_radio {
  padding-top: 5px;
}
.billing_addrs h4 {
  /* /* float: left; */
  margin: 0 0 10px;
  padding: 0 0 25px;
  position: relative;
  text-align: center;
  width: 100%;
  margin-top: 20px;
  font-size: 22px;
}
.billing_addrs h4::before {
  bottom: 10px;
  content: "";
  height: 2px;
  left: 45%;
  position: absolute;
  right: 45%;
}
.billing_addrs a {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 1px;
  margin: 0;
  text-decoration: underline;
  float: right;
}
.loginr_btn .btn.btn-mdb-color.navbar-right {
  float: right;
}
.ride_trail .inner .move_btn .skip_btn {
  border-radius: 5px;
  display: inline-block;
  font-size: 16px;
  margin: 0;
  padding: 8px 20px;
  position: relative;
  text-decoration: none;
  top: 2px;
}
.outer_userform {
  /* float: left; */
  width: 100%;
}
.outer_userform .nt_pd {
  padding: 0;
}
.outer_userform .nt_pd label {
  /* float: left; */
  margin-bottom: 20px;
  text-align: center;
  width: 100%;
  font-size: 16px;
  font-weight: 500;
}
.outer_userform .nt_pd .login_btnn {
  text-align: center;
}
.outer_userform .nt_pd .login_btnn a {
  border-radius: 5px;
  display: inline-block;
  font-family: roboto;
  font-size: 14px;
  padding: 7px 35px;
  text-decoration: none;
}
.outer_userform .left_custom .register_now {
  margin: 20px 0 0;
  text-align: center;
}
.owl-nav {
  margin: 15px auto 0;
  width: 35px;
  position: absolute;
  top: -45px;
  right: 0;
}
.owl-nav .owl-prev {
  /* float: left; */
  margin-right: 10px;
}
.owl-nav .owl-next i,
.owl-nav .owl-prev i {
  font-size: 25px;
}
.outer_userform ul {
  list-style: outside none none;
  margin: 0;
  padding: 0;
}
.outer_userform ul li {
  margin: 0 0 10px;
  padding: 5px 10px;
}
.outer_userform ul li span {
  font-weight: 700;
}
.outer_userform .notes {
  /* float: left; */
  font-size: 13px;
  padding: 10px;
  width: 100%;
}
.outer_userform .notes p {
  /* float: left; */
  margin: 0;
  padding: 0;
  width: 100%;
}
.outer_userform .payment {
  /* float: left; */
  margin: 20px 0 15px;
  width: 100%;
}
.outer_userform .payment h5 {
  /* float: left; */
  font-size: 18px;
  font-weight: 600;
  margin: 0 10px 0 0;
  padding: 5px 0;
}
.outer_userform .payment span {
  display: inline-block;
  font-size: 15px;
  padding: 5px 20px;
}
.outer_userform .add_card {
  text-align: center;
}
.outer_userform .add_card a {
  font-size: 13px;
  text-decoration: underline;
}
.outer_userform .quote_btn {
  /* float: left; */
  margin: 20px 0 0;
  padding: 0;
  text-align: center;
  width: 100%;
}
.outer_userform .quote_btn .btn.btn-warning {
  border: medium none;
  border-radius: 0;
  font-weight: 600;
  margin: 5px 0 0;
  padding: 10px 0;
  width: 100%;
}
.currentactive {
  border: none !important;
  width: 25px !important;
}
.currentactive a {
  padding: 0 !important;
}
.prevactive {
  pointer-events: none;
  border: none !important;
  height: 64px;
}
.steps-step-2 a {
  pointer-events: none;
}
.btndisable {
  pointer-events: none;
  display: none !important;
}
.spnper {
  font-weight: 500;
}
#BI .spnper {
  display: inline-block;
  padding: 10px 0;
}
.inner.ex_black .form-group label {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
  margin: 10px;
}
.inner.ex_black
  .outer_userform
  .quote_btn
  .btn.btn-mdb-color.btn-rounded.prevBtn-2.float-left {
  border-radius: 0;
  font-family: "Open Sans", sans-serif;
  font-size: 15px;
  font-weight: 600;
  width: 100%;
}
.owl-dots {
  clear: both;
  /* float: left; */
  margin: 30px 0 15px;
  text-align: center;
  width: 100%;
}
.owl-dots .owl-dot {
  border-radius: 50%;
  display: inline-block;
  height: 20px;
  margin: 0 3px;
  width: 20px;
}
.outer_userform .nt_pd .form-group > label {
  margin: 0 0 5px;
  text-align: left;
}
.skip_btn {
  margin: -15px 0 5px;
  text-align: center;
}
.skip_btn > a {
  font-weight: 600;
  letter-spacing: 2px;
  text-decoration: underline;
}
.inner .dropon {
  float: right;
  list-style: outside none none;
  margin: 0;
  padding: 0;
  position: absolute;
  right: 15px;
  top: 7px;
  display: none;
}
.inner .dropon .dropdown-menu {
  border-radius: 0;
  left: auto;
  margin: 14px 0 0;
  right: 0;
}
.inner .dropon .dropdown-menu li a {
  padding: 4px 20px 8px;
}
.inner .dropon .dropdown-menu li:last-child a {
  border: medium none;
}
.inner .dropon .dropdown-menu li a:hover {
  background: 0 0;
}
.bootom_bar .steps-step-2 a {
  pointer-events: auto;
}
.bootom_bar {
  /* float: left; */
  margin: 0;
  width: 100%;
}
.bootom_bar .steps-form-2 .steps-row-2::before {
  height: 64px;
  border-radius: 5px;
}
.bootom_bar .steps-form-2 .steps-row-2 .steps-step-2 .btn-circle-2 .fa {
  border-radius: 50%;
  font-size: 35px;
  height: 55px;
  line-height: 50px;
  margin: 4px 0 0;
  padding: 0;
  transition: all 0.5s linear 0;
  width: 55px;
}
.bootom_bar .steps-form-2 .steps-row-2 .steps-step-2 .btn-circle-2 .fa:hover {
  transition: 0.5s linear;
  transform: scale(1.2);
}
.bootom_bar .steps-form-2 .steps-row-2 .steps-step-2 .btn-circle-2:hover {
  border: medium none;
  border-radius: 0;
}
.bootom_bar .steps-form-2 {
  /* float: left; */
  width: 100%;
}
.diff_ress {
  font-size: 23px;
  font-weight: 700;
  letter-spacing: 2px;
  margin: 0;
  opacity: 0.16;
  position: absolute;
  text-align: center;
  text-transform: uppercase;
  top: 3px;
  width: 100%;
  z-index: 9;
}
.in_service {
  padding-bottom: 80px;
}
.in_service .thumb {
  margin: 0;
}
.banner {
  /* float: left; */
  position: relative;
  width: 100%;
  /* box-shadow: 0 2px 5px 0 rgb(0 0 0 / 16%), 0 2px 10px 0 rgb(0 0 0 / 12%); */
}
.banner .enquiry_custom {
  z-index: 999;
}
.banner .enquiry_custom .main_div {
  border-radius: 0;
  display: inline-block;
  margin: 0 auto;
  /*max-width: 395px;*/
  padding: 60px 15px 20px;
  position: relative;
}
.enquiry_custom .main_div > h2 {
  /* float: left; */
  font-size: 20px;
  font-weight: 700;
  left: 0;
  letter-spacing: 1px;
  margin: 0;
  padding: 10px 0;
  position: absolute;
  text-align: center;
  top: 0;
  width: 100%;
  font-family: "Nunito Sans", sans-serif !important;
}
.enquiry_custom .input-group-addon {
  border-radius: 0;
  min-width: 40px;
}

.banner .enquiry_custom .main_div .form-control {
  border-radius: 0;
  height: 33px;
  color: #333;
}
.banner .enquiry_custom .main_div .form-control::placeholder {
  color: #444;
}
.enquiry_custom .col-sm-12,
.enquiry_custom .col-sm-6 {
  padding: 0 5px;
}
.enquiry_custom .btn.btn-default {
  border: medium none;
  border-radius: 0;
  font-size: 18px;
  font-weight: 200;
  letter-spacing: 1px;
  text-transform: uppercase;
  width: 100%;
}
.banner .enquiry_custom textarea {
  height: 50px;
}

.faq_sec {
  /* float: left; */
  margin: 0;
  padding: 50px 0;
  width: 100%;
}
.faq_sec .main_div {
  margin: 0 auto;
  max-width: 85%;
}
.faq_sec .main_div h3 {
  display: inline-block;
  font-size: 28px;
  font-weight: 700;
  margin: 0 0 30px;
  padding: 0;
  text-align: center;
  text-transform: uppercase;
  width: 100%;
}
.faq_sec #accordion .panel-heading {
  padding: 0;
}
.faq_sec #accordion .panel-title a {
  display: block;
  padding: 0.4em 0.6em;
  outline: 0;
  font-weight: 600;
  text-decoration: none;
  line-height: 25px;
}
.faq_sec #accordion .panel-title a.accordion-toggle::before,
.faq_sec #accordion a[data-toggle="collapse"]::before {
  content: "";
  /* float: left; */
  font-family: fontawesome;
  font-size: 24px;
  font-weight: 600;
  margin-right: 1em;
  margin-top: -5px;
}
.faq_sec #accordion .panel-title a.accordion-toggle.collapsed::before,
.faq_sec #accordion a.collapsed[data-toggle="collapse"]::before {
  content: "";
}
.faq_sec h4 a {
  padding: 16px 20px !important;
}
.faq_sec .panel-body {
  line-height: 30px;
  padding: 15px 25px;
}
.faq_sec .panel-group .panel {
  border-radius: 4px;
  margin-bottom: 10px;
}
.ride_trail form {
  margin-bottom: 20px;
}
.in_service .shadow_service {
  /* float: left; */
  margin: 74px 0px;
  width: 100%;
  max-height: 500px;
}
.modren .mod_pcustom .trends p {
  text-align: left;
}
.navigation .menu_btn {
  bottom: 0;
  display: none;
  /* float: left; */
  font-size: 20px;
  font-weight: 600;
  margin: 1px 0 0;
  padding: 0 10px;
  position: relative;
  text-transform: uppercase;
  top: 0;
  width: 100%;
}
.navigation .menu_btn > span {
  left: 25px;
  position: absolute;
  z-index: 0;
}
.navigation .navbar-toggle {
  background-image: none;
  border-radius: 4px;
  float: right;
  margin-bottom: 8px;
  margin-right: 15px;
  margin-top: 8px;
  padding: 8px 10px;
  position: relative;
  text-align: right;
  width: 100%;
  z-index: 1;
}
.navigation .navbar-toggle .icon-bar {
  border-radius: 1px;
  clear: both;
  display: block;
  float: right;
  height: 2px;
  text-align: right;
  width: 22px;
}
.navbar-inverse .navbar-toggle:focus,
.navbar-inverse .navbar-toggle:hover {
  background-color: transparent;
}
.in_testil .top_icon_social {
  margin: 0 0 30px;
  padding: 0;
  /* float: left; */
  width: 100%;
  text-align: center;
  position: relative;
  z-index: 1;
}
.in_testil .top_icon_social ul {
  display: inline-block;
  width: 100%;
  text-align: center;
}
.in_testil .top_icon_social ul li {
  display: inline-block;
  padding: 0 10px;
}
.in_testil .top_icon_social ul li a {
  display: inline-block;
  font-size: 24px;
  text-shadow: 1px 0 10px #ccc;
}
.in_testil .top_icon_social ul li a span {
  font-size: 16px;
  display: inline-block;
  margin-left: 10px;
}
.in_testil .top_icon_social ul li a span:hover {
  text-decoration: underline;
}
@media (min-width: 320px) and (max-width: 479px) {
  .carousel-testi {
    background: #777;

    width: 100%;
    background-position: center;
  }
  .custom_form {
    margin-left: -26px;
  }

  .ride_trail {
    padding: 20px 0;
  }
  .ride_trail .main_div {
    max-width: 100%;
  }
  .ride_trail .setup-content-2 .col-md-12 {
    padding: 0;
  }
  .btn.btn-mdb-color {
    font-size: 12px;
    width: 140px;
  }
  .ride_trail .ex_black h2 {
    font-size: 14px;
  }
  .ride_trail .inner {
    padding: 60px 10px 27px;
    border: none;
  }
  .ride_trail .inner .form-group .input-group input {
    font-size: 13px;
  }
  .btn.btn-mdb-color.btn-rounded.nextBtn-2.float-right {
    font-size: 14px;
    width: 100%;
  }
  .btn.btn-mdb-color.btn-rounded.prevBtn-2.float-left {
    font-size: 14px;
    margin-bottom: 5px;
    padding: 7px 30px;
  }
  .billing_addrs h4 {
    font-size: 15px;
  }
  .billing_addrs a {
    font-size: 12px;
  }
  #owl-demo .item img {
    height: auto;
    width: auto;
  }
  .spin_move .children_count {
    display: none;
  }
  .switch_puff .label-switch.switch-primary {
    margin-top: 20px;
  }
  .ride_trail .inner .move_btn .skip_btn {
    font-size: 16px;
    margin: 0 0 7px;
    width: 100%;
  }
  .btn.btn-mdb-color.btn-rounded.prevBtn-2.float-left {
    width: 100%;
  }
  .btn.btn-success.btn-rounded.float-right {
    width: 100%;
  }
  .navigation .navbar-header {
    width: 100%;
  }
  .navigation .navbar-header .navbar-brand {
    margin: 0;
    text-align: center;
    width: 100%;
  }
  .navigation .center_custom {
    margin: 0;
    width: 100%;
  }
  .navigation .center_custom ul li {
    padding: 0;
    width: auto;
  }
  .navigation .center_custom ul li a {
    font-size: 13px;
    padding: 0 5px;
  }
  .navigation .center_custom ul li a i {
    font-size: 16px;
    height: 28px;
    margin-right: 5px;
    padding: 7px;
    width: 28px;
    background: none !important;
  }
  .navigation .center_custom ul li a .txt {
    padding: 4px 0;
  }
  .navigation .book_btn {
    padding: 5px 11px 16px 0;
    text-align: center;
    width: 100%;
  }
  .book_btn.navbar-right a {
    font-size: 10px;
    margin-top: 10px;
    padding: 5px 12px;
  }

  .banner .enquiry_custom .main_div {
    max-width: 100%;
    width: 100%;
  }
  .navigation .navbar-collapse.collapse ul {
    margin: 0;
    width: 100%;
  }
  .navigation .navbar-collapse.collapse ul li {
    text-align: left;
    width: 100%;
  }
  .navigation .navbar-collapse.collapse ul li a {
    border-radius: 0;
  }
  .enquiry_custom .main_div > h2 {
    font-size: 18px;
  }
  .enquiry_custom .btn.btn-default {
    font-size: 16px;
  }
  .modren {
    padding: 20px 0;
  }
  .modren .trends {
    max-width: 100%;
  }
  .modren .trends h2 {
    font-size: 24px;
    margin: 0 0 10px;
  }
  .modren .trends p {
    font-size: 12px;
    line-height: 25px;
  }
  .service {
    padding: 20px 0;
  }
  .service h2 {
    font-size: 28px;
    margin: 0 0 10px;
    font-weight: 200;
    letter-spacing: 2px;
  }
  .service .thumb .inner_thumb h3 {
    font-size: 14px;
  }
  .bottom_slider h2 {
    font-size: 18px;
    margin: 0 0 20px;
    font-weight: 200;
    letter-spacing: 2px;
  }
  .bottom_slider {
    padding: 20px 0;
  }
  .carousel-testi {
    padding: 25px 0;
  }
  .carousel-testi .star_ff h5 {
    font-size: 16px;
  }
  .carousel-testi blockquote p {
    font-size: 15px;
  }
  .carousel-testi blockquote::before {
    font-size: 14px;
  }
  .carousel-testi blockquote::after {
    font-size: 14px;
  }
  .carousel-testi h2 {
    font-size: 18px;
    margin: 0 0 20px;
    font-weight: 200;
    letter-spacing: 2px;
  }
  .make_reservation .main_div {
    max-width: 100%;
  }
  .make_reservation .inner_sec {
    margin: 0;
    padding: 15px;
  }
  .make_reservation .inner_sec h2 {
    font-size: 18px;
    text-align: center;
    width: 100%;
  }
  .make_reservation .inner_sec a {
    display: inline-block;
    float: none;
    font-size: 14px;
    margin: 10px 0 0;
  }
  footer {
    padding: 20px 0 0;
  }
  footer .in_sec_ft h3 {
    margin: 10px 0 15px;
  }
  footer p {
    font-size: 18px;
  }
  footer .in_sec_ft ul li a {
    font-size: 14px;
  }
  footer .information {
    display: inline-block;
    margin-bottom: 10px;
  }
  .in_sec_ft ul li {
    font-size: 14px;
    line-height: 23px;
  }
  .in_sec_ft ul li span {
    margin-bottom: 12px;
  }
  .service_provider {
    margin: 10px 0 0;
    padding: 25px 0;
    /* float: left; */
    width: 100%;
  }
  .service_provider ul {
    display: inline-block;
    width: 100%;
  }
  .service_provider ul li {
    display: inline-block;
    padding: 0 10px;
  }
  .service_provider ul li a {
    display: inline-block;
  }
  .copyright .d1 {
    height: auto;
  }
  .copyright .d1 h3 {
    font-size: 12px;
  }
  .navigation .navbar-header {
    position: relative;
  }
  .navigation .navbar-header .navbar-toggle {
    margin: 0;
    max-width: 30px;
    position: absolute;
    left: 15px;
    top: 5px;
  }
  .navigation .navbar-header .navbar-brand img {
    margin: 0 auto;
    max-width: 334px;
    background: none !important;
  }
  .navbar-inverse .navbar-toggle:focus,
  .navbar-inverse .navbar-toggle:hover {
    background-color: transparent;
  }
  .way .left_sec .inner_form {
    height: auto;
  }
  .way .right_sec {
    /* float: left; */
    height: auto;
  }
  .way .right_sec .inner {
    display: inline-block;
    height: auto;
    padding: 15px;
  }
  .in_sec_ft ul li span {
    margin-right: 10px;
  }
  .way .right_sec .inner li p {
    width: 80%;
  }
  .service .col-sm-4 {
    margin: 0 auto;
    max-width: 100%;
  }
  .fleet_slide .inner #slide-content ul {
    display: inline-flex;
    padding: 0 0 0 15px;
  }
  .fleet_slide.odd .slippry_box.thumbnails {
    margin-top: 100px;
  }
  .fleet_slide #slide-content h2 {
    margin-top: 30px;
  }
  .banner .carousel-caption {
    padding-bottom: 0px !important;
  }
  .banner .item .carousel-caption p span {
    display: none;
  }
  .navigation .inner_sec {
    padding: 10px 0 0;
  }
  .navbar-inverse .navbar-toggle {
    border-color: transparent;
    margin: 0;
  }
  .navigation .container {
    padding: 10px 0 0;
  }
  .navigation .menu_btn {
    display: block;
  }
  .faq_sec #accordion .panel-title a {
    font-size: 14px;
  }
}
@media (min-width: 360px) and (max-width: 479px) {
  .custom_form {
    margin-left: -26px;
  }

  .ride_trail #demo .item .inner p {
    font-size: 11px;
  }
  .ride_trail #demo .item .inner h2 {
    font-size: 12px;
  }
  .ride_trail #demo .item .inner h3 {
    font-size: 12px;
    height: 43px;
  }
}
@media (min-width: 480px) and (max-width: 639px) {
  .book_btn.navbar-right a {
    font-size: 20px;
    padding: 2px;
  }
  .banner .carousel-caption {
    padding-bottom: 0px !important;
  }

  .custom_form {
    margin-left: -26px;
  }
  .ride_trail {
    padding: 20px 0;
  }
  .ride_trail .main_div {
    max-width: 100%;
  }
  .ride_trail .setup-content-2 .col-md-12 {
    padding: 0;
  }
  .btn.btn-mdb-color {
    font-size: 12px;
    width: 140px;
  }
  .ride_trail .ex_black h2 {
    font-size: 14px;
  }
  .ride_trail .inner {
    padding: 60px 0 30px;
    border: none;
  }
  .ride_trail .inner .form-group .input-group input {
    font-size: 13px;
  }
  .btn.btn-mdb-color.btn-rounded.nextBtn-2.float-right {
    font-size: 14px;
  }
  .btn.btn-mdb-color.btn-rounded.prevBtn-2.float-left {
    font-size: 14px;
    padding: 7px 30px;
  }
  .billing_addrs h4 {
    font-size: 15px;
  }
  .billing_addrs a {
    font-size: 12px;
  }
  #owl-demo .item img {
    height: auto;
    width: auto;
  }
  .ride_trail #demo .item .inner h3 {
    font-size: 15px;
  }
  .spin_move .children_count {
    display: none;
  }
  .switch_puff .label-switch.switch-primary {
    margin-top: 20px;
  }
  .ride_trail .inner .move_btn .skip_btn {
    padding: 5px 20px;
  }
  .btn.btn-success.btn-rounded.float-right {
    font-size: 16px;
    padding: 5px 50px;
  }
  .navigation .navbar-header {
    width: 100%;
  }
  .navigation .navbar-header .navbar-brand {
    width: 180px;
  }
  .navigation .center_custom {
    margin: 0;
    width: 70%;
  }
  .navigation .center_custom ul li {
    /* float: left; */
    padding: 0;
    width: auto;
  }
  .navigation .center_custom ul li a {
    font-size: 11px;
    padding: 0 5px;
  }
  .navigation .center_custom ul li a i {
    font-size: 10px;
    height: 28px;
    margin-right: 5px;
    padding: 7px;
    width: 28px;
  }
  .navigation .center_custom ul li a .txt {
    padding: 4px 0;
  }
  .navigation .book_btn {
    padding: 0 5px 0 0;
    width: 30%;
  }
  .book_btn.navbar-right a {
    font-size: 10px;
    margin-top: 10px;
    padding: 5px 12px;
  }

  .banner .enquiry_custom .main_div {
    max-width: 100%;
    width: 100%;
  }
  .navigation .navbar-collapse.collapse ul {
    margin: 0;
    width: 100%;
  }
  .navigation .navbar-collapse.collapse ul li {
    text-align: left;
    width: 100%;
  }
  .navigation .navbar-collapse.collapse ul li a {
    border-radius: 0;
  }
  .enquiry_custom .main_div > h2 {
    font-size: 18px;
    font-weight: 200;
    letter-spacing: 2px;
  }
  .enquiry_custom .btn.btn-default {
    font-size: 16px;
  }
  .modren {
    padding: 20px 0;
  }
  .modren .trends {
    max-width: 100%;
  }
  .modren .trends h2 {
    font-size: 18px;
    margin: 0 0 10px;
  }
  .modren .trends p {
    font-size: 12px;
    line-height: 25px;
  }
  .navbar-inverse .navbar-toggle {
    border-color: transparent;
  }
  .service {
    padding: 20px 10px;
  }
  .service .col-sm-4 {
    /* float: left; */
    padding: 0 8px;
    width: 50%;
  }
  .service h2 {
    font-size: 24px;
    margin: 0 0 10px;
    font-weight: 200;
    letter-spacing: 2px;
  }
  .service .thumb {
    margin: 10px 0;
  }
  .service .thumb .inner_thumb h3 {
    font-size: 14px;
  }
  .bottom_slider h2 {
    font-size: 18px;
    margin: 0 0 20px;
    font-weight: 200;
    letter-spacing: 2px;
  }
  .bottom_slider {
    padding: 20px 0;
  }
  .carousel-testi {
    padding: 25px 0;
  }
  .carousel-testi .star_ff h5 {
    font-size: 16px;
  }
  .carousel-testi blockquote p {
    font-size: 12px;
  }
  .carousel-testi blockquote::before {
    font-size: 14px;
  }
  .carousel-testi blockquote::after {
    font-size: 14px;
  }
  .carousel-testi h2 {
    font-size: 18px;
    margin: 0 0 20px;
    font-weight: 200;
    letter-spacing: 2px;
  }
  .make_reservation .main_div {
    max-width: 100%;
  }
  .make_reservation .inner_sec {
    margin: 0;
    padding: 15px;
  }
  .make_reservation .inner_sec h2 {
    font-size: 18px;
    text-align: center;
    width: 100%;
  }
  .make_reservation .inner_sec a {
    display: inline-block;
    float: none;
    font-size: 14px;
    margin: 10px 0 0;
  }
  footer {
    padding: 20px 0 0;
  }
  footer .in_sec_ft h3 {
    margin: 10px 0 15px;
  }
  footer p {
    font-size: 12px;
  }
  footer .in_sec_ft ul li a {
    font-size: 12px;
  }
  footer .information {
    display: inline-block;
    margin-bottom: 10px;
  }
  .in_sec_ft ul li {
    font-size: 12px;
    line-height: 23px;
  }
  .in_sec_ft ul li span {
    margin-bottom: 12px;
  }
  .copyright .d1 {
    height: auto;
  }
  .copyright .d1 h3 {
    font-size: 12px;
  }
  .way .left_sec .inner_form {
    height: auto;
  }
  .way .right_sec {
    /* float: left; */
    height: auto;
  }
  .way .right_sec .inner {
    display: inline-block;
    height: auto;
    padding: 15px;
  }
  .in_sec_ft ul li span {
    margin-right: 10px;
  }
  .way .right_sec .inner li p {
    width: 80%;
  }
  .fleet_slide .inner #slide-content ul {
    display: inline-block;
    padding: 0 0 0 15px;
  }
  .fleet_slide.odd .slippry_box.thumbnails {
    margin-top: 100px;
  }
  .banner .item .carousel-caption p span {
    display: none;
  }
  .navigation .inner_sec {
    padding: 10px 0 0;
  }
  .navbar-inverse .navbar-toggle {
    border-color: transparent;
    margin: 0;
  }
  .navigation .container {
    padding: 10px 0 0;
  }
  .navigation .menu_btn {
    display: block;
  }
  .faq_sec #accordion .panel-title a {
    font-size: 14px;
  }
}

/*#ipad*/
@media (min-width: 768px) and (max-width: 1024px) {
  .custom_form {
    width: 647px;
  }
  .banner .carousel-caption {
    padding-bottom: 0px !important;
  }
}

/* #ipad Pro 
@media (min-width:1024px) and (max-width:1366px) {
   
   .custom_form {
       
       width:758px;
       
   }
   
}

*/

/* #landscape */
@media (min-width: 667px) and (max-width: 684px) {
  .custom_form {
    width: 623px !important;
  }
}

/* #surface pro duo 
@media (min-width:540px) and (max-width:720px) {
   
   .custom_form {
       
       margin-left: -228px;
       
   }
   
}

*/

/* #Galaxy Fold 
@media (min-width:280px) and (max-width:653px) {
   
   .custom_form {
       
       margin-left: -53px;
       
   }
   
}

*/

@media (min-width: 640px) and (max-width: 767px) {
  .custom_form {
    width: 647px;
  }

  .ride_trail .main_div {
    max-width: 100%;
  }
  .ride_trail .setup-content-2 .col-md-12 {
    padding: 0;
  }
  .ride_trail .inner {
    border: none;
  }
  .ride_trail #demo .item .inner h3 {
    font-size: 14px;
    font-weight: 600;
    height: 60px;
  }
  .navigation .inner_sec .navbar-header {
    /* float: left; */
    width: 150px;
  }
  .navigation .navbar-toggle {
    margin-right: 3px;
    padding: 9px 10px;
    position: absolute;
    right: 0;
  }
  .navigation .center_custom {
    /* float: left; */
    margin: 0;
    width: 58%;
  }
  .navigation .center_custom ul li {
    /* float: left; */
    padding: 0;
    width: auto;
  }
  .navigation .center_custom ul li a {
    font-size: 10px;
    padding: 0 3px;
  }
  .navigation .center_custom ul li a i {
    font-size: 10px;
    height: 22px;
    margin-right: 5px;
    padding: 4px;
    width: 22px;
  }
  .navigation .center_custom ul li a .txt {
    padding: 0;
  }
  .navigation .book_btn {
    /* float: left; */
    padding: 0 5px 0 0;
    width: 15%;
  }
  .book_btn.navbar-right a {
    /* float: left; */
    font-size: 10px;
    margin-top: 10px;
    padding: 5px 8px;
    position: relative;
    right: 14px;
  }

  .banner .enquiry_custom .main_div {
    max-width: 100%;
    width: 100%;
  }
  .navigation .navbar-collapse.collapse ul {
    margin: 0;
    width: 100%;
  }
  .navigation .navbar-collapse.collapse ul li {
    text-align: left;
    width: 100%;
  }
  .navigation .navbar-collapse.collapse ul li a {
    border-radius: 0;
  }
  .enquiry_custom .main_div > h2 {
    font-size: 18px;
  }
  .enquiry_custom .btn.btn-default {
    font-size: 16px;
  }
  .modren {
    padding: 20px 0;
  }
  .modren .trends {
    max-width: 100%;
  }
  .modren .trends h2 {
    font-size: 18px;
    margin: 0 0 10px;
  }
  .modren .trends p {
    font-size: 12px;
    line-height: 25px;
  }
  .navbar-inverse .navbar-toggle {
    border-color: transparent;
  }
  .navbar-inverse .navbar-toggle .icon-bar {
    background-color: #f0ca92;
  }
  .service {
    padding: 20px 15px;
  }
  .service h2 {
    font-size: 18px;
    margin: 0 0 20px;
  }
  .service .col-sm-4 {
    /* float: left; */
    padding: 0 10px;
    width: 50%;
  }
  .service .thumb {
    margin: 10px 0;
  }
  .service .thumb .inner_thumb h3 {
    font-size: 14px;
  }
  .bottom_slider h2 {
    font-size: 18px;
    margin: 0 0 20px;
  }
  .bottom_slider {
    padding: 20px 0;
  }
  .carousel-testi {
    padding: 25px 0;
  }
  .carousel-testi .star_ff h5 {
    font-size: 16px;
  }
  .carousel-testi blockquote p {
    font-size: 12px;
  }
  .carousel-testi blockquote::before {
    font-size: 14px;
  }
  .carousel-testi blockquote::after {
    font-size: 14px;
  }
  .carousel-testi h2 {
    font-size: 18px;
    margin: 0 0 20px;
  }
  .make_reservation .main_div {
    max-width: 100%;
  }
  .make_reservation .inner_sec {
    margin: 0;
    padding: 15px;
  }
  .make_reservation .inner_sec h2 {
    font-size: 18px;
    text-align: center;
    width: 100%;
  }
  .make_reservation .inner_sec a {
    display: inline-block;
    float: none;
    font-size: 14px;
    margin: 10px 0 0;
  }
  footer {
    padding: 20px 0 0;
  }
  footer .in_sec_ft h3 {
    margin: 10px 0 15px;
  }
  footer p {
    font-size: 12px;
  }
  footer .in_sec_ft ul li a {
    font-size: 12px;
  }
  footer .information {
    display: inline-block;
    margin-bottom: 10px;
  }
  .in_sec_ft ul li {
    font-size: 12px;
    line-height: 28px;
  }
  .in_sec_ft ul li span {
    margin-bottom: 12px;
  }
  .copyright .d1 {
    height: auto;
  }
  .copyright .d1 h3 {
    font-size: 12px;
  }
  footer .copyright a {
    text-decoration: none;
  }
  .way .left_sec .inner_form {
    height: auto;
  }
  .way .right_sec {
    /* float: left; */
    height: auto;
  }
  .way .right_sec .inner {
    display: inline-block;
    height: auto;
    padding: 15px;
  }
  .way .right_sec .inner li p br:first-child {
    display: none;
  }
  .fleet_slide .inner #slide-content ul {
    display: inline-block;
    padding: 0 0 0 15px;
  }
  .fleet_slide.odd .slippry_box.thumbnails {
    margin-top: 100px;
  }
  .banner .item .carousel-caption p span {
    display: none;
  }
  .navigation .inner_sec {
    padding: 10px 0 0;
  }
  .navbar-inverse .navbar-toggle {
    border-color: transparent;
    margin: 0;
  }
  .navigation .container {
    padding: 10px 0 0;
  }
  .navigation .menu_btn {
    display: block;
  }
  .faq_sec #accordion .panel-title a {
    font-size: 14px;
  }
}

/*Laptop*/
@media (min-width: 768px) and (max-width: 991px) {
  .ride_trail .main_div {
    max-width: 80%;
  }
  .ride_trail #demo .item .inner h3 {
    font-size: 14px;
    font-weight: 600;
    height: 60px;
  }
  .navigation .navbar-header {
    width: 185px;
  }
  .navigation .center_custom {
    width: 58%;
  }
  .navigation .center_custom ul li a {
    font-size: 11px;
    padding: 0 5px;
  }
  .navigation .center_custom ul li a i {
    font-size: 18px;
    height: 30px;
    margin-right: 3px;
    padding: 5px;
    width: 30px;
  }
  .navigation .book_btn {
    margin-right: 10px;
  }
  .book_btn.navbar-right a {
    font-size: 12px;
    margin-top: 5px;
    padding: 8px 25px;
  }
  .navigation .center_custom ul li a .txt {
    padding: 5px;
  }
  .navigation .navbar-collapse.collapse ul li {
    font-size: 13px;
  }
  .navigation .navbar-collapse.collapse ul li a {
    padding: 10px 7px;
  }
  .way h3 {
    font-size: 20px;
  }
  .way .right_sec .inner {
    padding: 15px;
  }
  .make_reservation .main_div {
    margin: 0 auto;
    max-width: 88%;
  }
  .make_reservation .inner_sec {
    padding: 20px 35px;
  }
  .make_reservation .inner_sec > h2 {
    font-size: 22px;
    margin: 5px 0 0;
  }
  footer .information {
    width: 66%;
  }
  footer .col-sm-4:last-child {
    width: 100%;
  }
  .carousel-showmanymoveone .cloneditem-1,
  .carousel-showmanymoveone .cloneditem-2,
  .carousel-showmanymoveone .cloneditem-3,
  .carousel-showmanymoveone .cloneditem-4,
  .carousel-showmanymoveone .cloneditem-5 {
    display: block;
  }

  .banner .enquiry_custom .main_div {
    max-width: 100%;
  }
  .modren .left_sec iframe {
    height: 196px;
  }
  .modren .trends p {
    font-size: 14px;
    letter-spacing: 1px;
    line-height: 31px;
  }

  .service .thumb .inner_thumb h3 {
    font-size: 19px;
  }
}

/*Laptop*/
@media (min-width: 992px) and (max-width: 1199px) {
  .ride_trail .main_div {
    max-width: 70%;
  }
  .ride_trail #demo .item .inner h3 {
    font-size: 14px;
    font-weight: 600;
    height: 60px;
  }
  .navigation .navbar-header {
    width: 185px;
  }
  .navigation .center_custom {
    width: 58%;
  }
  .navigation .center_custom ul li a {
    font-size: 11px;
    padding: 0 5px;
  }
  .navigation .center_custom ul li a i {
    font-size: 18px;
    height: 30px;
    margin-right: 3px;
    padding: 5px;
    width: 30px;
  }
  .navigation .book_btn {
    margin-right: 10px;
  }
  .book_btn.navbar-right a {
    font-size: 12px;
    margin-top: 5px;
    padding: 8px 25px;
  }
  .navigation .center_custom ul li a .txt {
    padding: 5px;
  }
  .navigation .navbar-collapse.collapse ul li {
    font-size: 14px;
  }
  .navigation .navbar-collapse.collapse ul li a {
    padding: 10px;
  }

  .banner .enquiry_custom .main_div {
    border-radius: 0;
    display: flow-root;
    margin: 0 auto;
    max-width: 730px;
    padding: 60px 15px 20px;
    position: relative;
  }
  .service .thumb .inner_thumb h3 {
    font-size: 14px;
  }
}
@media (min-width: 1250px) and (max-width: 1900px) {
  .banner .carousel-caption {
    left: auto;
    padding-bottom: 0px !important;
    right: 12%;
    top: 35%;
  }
}
.banner .carousel-inner .homebannercaption p {
  position: fixed;
  top: 12%;
  /* float: left; */
  right: 60px;
  padding: 20px 20px 13px 20px;
  line-height: 43px;
  text-transform: uppercase;
  font-size: 28px;
  font-weight: 200;
  font-family: "Nunito Sans", sans-serif !important;
  letter-spacing: 1px;
  color: #fff;
  text-align: center;
}
.hide-homebannercaption {
  display: block;
  padding-bottom: 0 !important;
}
@media screen and (max-width: 479px) {
  .banner .carousel-inner .homebannercaption p {
    top: 15%;
    right: 5px;
    padding: 0 10px;
    line-height: 28px;
    font-size: 14px;
  }
  .hide-homebannercaption {
    display: none;
  }
}
@media screen and (min-width: 480px) and (max-width: 767px) {
  .banner .carousel-inner .homebannercaption p {
    top: 20%;
    right: 5px;
    padding: 0 10px;
    line-height: 25px;
    font-size: 14px;
  }
  .hide-homebannercaption {
    display: none;
  }
}
@media only screen and (min-width: 768px) and (max-width: 959px) {
  .banner .carousel-inner .homebannercaption p {
    right: 20px;
    padding: 5px 10px;
    line-height: 26px;
    font-size: 16px;
  }
  .hide-homebannercaption {
    display: none;
  }
}
@media only screen and (min-width: 960px) and (max-width: 1024px) {
  .banner .carousel-inner .homebannercaption p {
    right: 20px;
    padding: 5px 10px;
    font-size: 22px;
  }
  .hide-homebannercaption {
    display: none;
  }
}

.faq_sec ul{
      list-style: disc !important;
  padding-left: 40px;

  font-weight: 200;
  letter-spacing: 1.5px;
  line-height: 36px;
}
ul.showbullets {
  list-style: disc !important;
  padding-left: 20px;

  font-weight: 200;
  letter-spacing: 1.5px;
  line-height: 36px;
}
.customrowmargin .row {
  margin: 0;
}
.social_top {
  float: right;
  width: 100%;
  text-align: right;
  margin-right: -15px;
}
.social_top ul {
  float: right;
  display: inline-block;
  text-align: right;
}
.social_top ul li {
  /* float: left; */
  margin: 0 2px;
}
@media screen and (max-width: 479px) {
  .social_top {
    float: right;
    width: 100%;
    text-align: center;
    margin-right: 0;
    margin-top: 20px;
  }
  .social_top ul {
    float: none;
    display: inline-block;
    text-align: center;
    width: 150px;
    margin: 0 auto;
  }
}
@media screen and (min-width: 480px) and (max-width: 767px) {
  .navigation .center_custom {
    /* float: left; */
    margin: 0;
    width: 62%;
  }
  .social_top {
    float: right;
    width: 100%;
    text-align: right;
    margin-right: 0;
    margin-top: 0;
  }
  .social_top ul {
    float: none;
    display: inline-block;
    text-align: center;
    width: 150px;
    margin: 0 auto;
  }
}
@media only screen and (min-width: 768px) and (max-width: 959px) {
  .navigation .center_custom {
    width: 81%;
    /* float: left; */
  }
  .navigation .navbar-header {
    width: 185px;
    margin: 0 auto;
    float: none;
  }
  .navigation .center_custom ul {
    display: inline-block;
    text-align: center;
    width: 100%;
  }
  .social_top {
    float: right;
    width: 100%;
    text-align: right;
    margin-right: 0;
    margin-top: 10px;
  }
}
@import url(https://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700,800|Poiret+One|Roboto:100,300,400,500,700,900);
@import url(https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css);
@import url(https://fonts.googleapis.com/css?family=Roboto);
.servicesdetails .main_div {
  margin: 0 auto;
  max-width: 100%;
  text-align: left;
}
/* css script for google translator */
div#google_translate_element {
  position: fixed;
  right: 0;
  top: 38%;
  z-index: 9999;
  padding: 10px;
  width: 50px;
  webkit-transform: rotate(-270deg);
  -ff-transform: rotate(-270deg);
  transform: rotate(-270deg);
}
.goog-te-gadget-simple {
  font-size: 11pt;

  display: inline-block;
  padding: 10px 5px !important;
  cursor: pointer;
  zoom: 1;
  display: inline;

  text-transform: uppercase;
}
.goog-te-gadget-simple .goog-te-menu-value {
  text-decoration: none !important;
  font-weight: bold !important;
}
.goog-te-gadget img {
  display: none !important;
}
.goog-te-gadget-simple .goog-te-menu-value span {
  text-decoration: none;
  margin: 2px !important;
}
/* css script for google translator */
/* script for submenu css */
.navigation .navbar-collapse.collapse ul li ul.subnav {
  display: none;
}
.navigation .navbar-collapse.collapse ul li:hover > ul.subnav {
  display: block;
  /* float: left; */
  width: 100%;
  line-height: 30px;
  position: absolute;
  text-align: left;
  padding: 10px;
  background: var(--primary-color);
  /*border-bottom: 2px solid #ccab5c;*/
  /*border-top: 3px solid #ccab5c;*/
  min-width: 320px;
  left: -50%;
}
.navigation .navbar-collapse.collapse ul li ul.subnav li {
  /* float: left; */
  width: 100%;
  text-align: center;
}
.navigation .navbar-collapse.collapse ul li ul.subnav li a {
  /* float: left; */
  width: 100%;
  padding: 0px;
}
.navigation .navbar-collapse.collapse ul li ul.subnav li a:hover {
  text-align: center;
  text-decoration: none;
  color: var(--primary-color);
}
.submenu-icon {
  width: 16px;
  float: right;
  position: absolute;
  top: 13px;
  right: 0;
}
@media screen and (max-width: 479px) {
  .navigation .navbar-collapse.collapse ul li:hover > ul.subnav {
    position: relative;
    left: 0;
  }
}
@media screen and (min-width: 480px) and (max-width: 767px) {
  .navigation .navbar-collapse.collapse ul li:hover > ul.subnav {
    position: relative;
    left: 0;
  }
}
/* script for submenu css */
/* OUR TEAM CSS */
.ourteam_container {
  /* float: left; */
  width: 100%;
  height: 280px;
  overflow: hidden;
}
.otmargin {
  margin: 0 auto;
  max-width: 1100px;
}
.otfullwidth {
  /* float: left; */
  width: 100%;
  background: #333;
  padding: 20px;
  color: #fff;
}
.otleft {
  /* float: left; */
  width: 25%;
}
.otimage {
  /* /* float: left; */
  width: 100%;

  margin: 0 auto;
  width: 140px;
}
.otright {
  /* float: left; */
  width: 70%;
  padding-left: 30px;
}
.otname {
  /* float: left; */
  width: 100%;
  font-size: 32px;
  text-transform: uppercase;
}
.otname span {
  font-size: 14px;
}
.otdegiantion {
  /* float: left; */
  width: 100%;
  font-size: 24px;
}
.otcontent {
  /* float: left; */
  width: 100%;
  line-height: 25px;
  font-size: 18px;
  margin-top: 10px;
  margin-bottom: 20px;
}
.slick-slider {
  max-height: 300px;
}
.slick-prev,
.slick-next {
  width: 40px !important;
  background: #000 !important;
  height: 40px !important;
  display: none !important;
}
.slickslider .slick-dots {
  display: block !important;
}
.slick-dots li {
  background: #ccab5c !important;
  border-radius: 50% !important;
}
.slick-dots li button:before {
  font-size: 30px !important;
  color: #fff !important;
}
.otsection.slick-slide {
  height: 220px;
  /* float: left; */
}
a.otviewbtn {
  color: #ccab5c !important;
  text-decoration: none !important;
  font-size: 14px;
}
@media screen and (max-width: 479px) {
  .otleft {
    /* float: left; */
    width: 100%;
  }
  .otright {
    /* float: left; */
    width: 100%;
    padding-left: 0;
  }
  .ourteam_container {
    width: 100%;
    height: 500px;
  }
  .otsection.slick-slide {
    height: 500px;
    /* float: left; */
  }
  .otname {
    font-size: 18px;
    margin-top: 20px;
  }
  .otdegiantion {
    font-size: 16px;
  }
  .otcontent {
    font-size: 15px;
  }
  .slickslider .slick-dots {
    display: none !important;
  }
}
@media screen and (min-width: 480px) and (max-width: 767px) {
  .otleft {
    /* float: left; */
    width: 100%;
  }
  .otright {
    /* float: left; */
    width: 100%;
    padding-left: 0;
  }
  .ourteam_container {
    width: 100%;
    height: 500px;
  }
  .otsection.slick-slide {
    height: 500px;
    /* float: left; */
  }
  .otname {
    font-size: 18px;
    margin-top: 20px;
  }
  .otdegiantion {
    font-size: 16px;
  }
  .otcontent {
    font-size: 15px;
  }
  .slickslider .slick-dots {
    display: none !important;
  }
}
@media only screen and (min-width: 768px) and (max-width: 959px) {
  .otsection.slick-slide {
    height: 330px;
    /* float: left; */
  }
  .slickslider .slick-dots {
    display: block !important;
  }
}
@media only screen and (min-width: 960px) and (max-width: 1024px) {
}
/* OUR TEAM CSS */
.getinstantquote a {
  position: fixed;
  right: -65px;
  top: 50%;
  z-index: 9999;
  padding: 10px;
  width: 170px;
  webkit-transform: rotate(-270deg);
  -ff-transform: rotate(-270deg);
  transform: rotate(-270deg);
  background: red;
  color: #fff;
  text-transform: uppercase;
  font-weight: bold;
  text-decoration: none;
  border: 2px solid #ccab5c;
}
li.sy-slide.horizontal.useCSS.sy-active {
  /* border: 2px solid #ccab5c;
    */
  margin-bottom: 5px;
  /* float: left; */
  width: 100%;
  padding: 5px;
}
ul.showbullets {
  /* float: left; */
  width: 100%;
}
@media screen and (max-width: 479px) {
  .getinstantquote a {
    top: 40%;
  }
  .service .thumb img {
    width: 100%;
  }
}
@media screen and (min-width: 480px) and (max-width: 767px) {
  .getinstantquote a {
    top: 40%;
  }
  .service .thumb img {
    width: 100%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 959px) {
  .getinstantquote a {
    top: 30%;
  }
}
@media only screen and (min-width: 960px) and (max-width: 1024px) {
  .getinstantquote a {
    top: 30%;
  }
}
/* new header design */
.navigation .center_custom {
  /* float: left; */
  margin-bottom: 0px;
  margin-top: 0px;
  width: 100%;
  background: var(--lightBlue);
  /*box-shadow: 0 2px 5px 0 rgb(0 0 0 / 16%), 0 2px 10px 0 rgb(0 0 0 / 12%);*/
}
.navigation .center_custom .container {
  padding: 3px 0;
}
.navigation .center_custom ul li {
  padding: 0 30px;
}
.navigation .center_custom ul li a {
  font-size: 28px;
}
.book_btn.navbar-right a {
  font-size: 20px;
  padding: 9px 25px;
  text-decoration: none;
  /* text-transform: uppercase; */
  font-weight: 700;
  /* border-radius: 5px; */
  /* box-shadow: 0px 17px 19px -16px #777; */
  font-family: "Nunito Sans", sans-serif !important;
  width: 278px;
  text-align: center;
}
.navigation .center_custom ul li a .txt span.smalltext {
  font-size: 17px;

  letter-spacing: 1px;
  font-weight: normal;
}
.navigation .center_custom ul li a .txt span.colortext {
  font-size: 18px;

  letter-spacing: 1px;
  font-weight: normal;
}
/* new header design */
#navbar1 {
  /* float: left; */
  width: 100%;
  z-index: 999;
}
.fixedheadertopmargin {
  display: none;
}
.desktopfixedheadertopmargin {
  /* float: left; */
  width: 100%;
  margin-top: 4px;
}
.toprow2 {
  /*  position: absolute;
    top: 53px;*/
  /* float: left; */
  width: 100%;
  z-index: 100;
  margin-top: 5px;
}
@media screen and (max-width: 479px) {
  .desktopfixedheadertopmargin {
    display: none;
  }
  .fixedheadertopmargin {
    /*margin-top: 44px;*/
    display: block;
  }
  .navigation .center_custom ul li a .txt span.smalltext {
    font-size: 14px;
  }
  .navigation .center_custom ul li a .txt span.colortext {
    font-size: 18px;
  }
  .navigation .center_custom ul li {
    padding: 0;
    margin: 5px 0px;
  }
  .navbar-nav {
    margin: 0;
  }
  .toprow2 {
    background: #fff;
    position: relative;
    top: 0;
    /* float: left; */
    width: 100%;
  }
  /* 17-02-2020 */
  ul.showbullets {
    /* float: left; */
    width: 100%;
  }
  .detail_service {
    margin-top: 0px;
  }
  footer .copyright > p {
    padding: 20px;
  }
  .detail_service .inner h2 {
    font-size: 18px !important;
  }
  /* 17-02-2020 */
}
@media screen and (min-width: 480px) and (max-width: 767px) {
  .fixedheadertopmargin {
    margin-top: 110px;
  }
  .navigation .center_custom ul li a .txt span.smalltext {
    font-size: 14px;
  }
  .navigation .center_custom ul li a .txt span.colortext {
    font-size: 18px;
  }
  /* 17-02-2020 */
  ul.showbullets {
    /* float: left; */
    width: 100%;
  }
  .book_btn.navbar-right a {
    font-size: 15px;
  }
  .navigation .book_btn {
    /* float: left; */
    padding: 0 5px 0 0;
    width: 38%;
  }
  .book_btn.navbar-right.outr_txt_btn {
    width: 25%;
    /* float: left; */
  }
  .navigation .inner_sec .navbar-header {
    /* float: left; */
    width: 36%;
  }
  a.navbar-brand img {
    width: 170px;
  }
  .toprow2 {
    position: relative;
  }
  .navigation .navbar-toggle {
    position: relative;
  }
  .detail_service {
    margin-top: 0px;
  }
  .desktopfixedheadertopmargin {
    /*margin-top: 50px;*/
  }
  footer .copyright > p {
    padding: 20px;
  }
  .detail_service .inner h2 {
    font-size: 18px !important;
  }
  /* 17-02-2020 */
}
@media only screen and (min-width: 768px) and (max-width: 959px) {
  .fixedheadertopmargin {
    margin-top: 250px;
  }
}
@media only screen and (min-width: 960px) and (max-width: 1024px) {
  .fixedheadertopmargin {
    margin-top: 140px;
  }
}
/* Header Menu Responsive Work */
@media only screen and (min-width: 768px) and (max-width: 959px) {
  .navigation .navbar-header {
    width: 278px;
    margin: 0 auto;
    /* float: left; */
    margin-top: 20px;
  }
  .navigation .center_custom ul li {
    padding: 0;
  }
}

/* Blog Page images size ratio Fixed */
.thumb_blog .main_div img {
  height: auto;
}
/* Blog Page images size ratio Fixed */

/*New Footer Section */
.footercontactinfosection {
  /* float: left; */
  width: 100%;
}
.footercontactinfosection .fcis-row {
  /* float: left; */
  width: 100%;
}
.footercontactinfosection .fcis-col-md-4 {
  /* float: left; */
  width: 33.33%;
  text-align: center;
}
.footercontactinfosection .fci-col1 {
  /*background: linear-gradient(to right, #881a1a, #f62221);    */
  background: rgba(0, 0, 0, 0) linear-gradient(90deg, #292929 0%, #595959 100%)
    repeat scroll 0 0;
}
.footercontactinfosection .fci-col2 {
  background: rgba(0, 0, 0, 0) linear-gradient(90deg, #292929 0%, #595959 100%)
    repeat scroll 0 0;
}
.footercontactinfosection .fci-col3 {
  /*background: linear-gradient(to right, #881a1a, #f62221);    */
  background: rgba(0, 0, 0, 0) linear-gradient(90deg, #292929 0%, #595959 100%)
    repeat scroll 0 0;
}
.footercontactinfosection .vu_info-item {
  position: relative;
  padding: 25px;
  max-width: 520px;
  width: 100%;
  min-height: 140px;
  /* float: left; */
  text-align: center;
}
.footercontactinfosection .vu_ii-details {
  /* float: left; */
  width: 100%;
  text-align: center;
  padding: 30px 0;
}
.footercontactinfosection .vu_info-item.vu_ii-style-1 .vu_ii-icon {
  position: absolute;
  left: 60px;
  top: 10%;
  margin-top: 0px;
  width: 70px;
  height: 70px;
  line-height: 70px;
  font-size: 36px;
  text-align: center;
  margin-left: 30px;
  color: #fff;
}

.footercontactinfosection .fa-map-marker:before {
  content: "\f041";
}
.footercontactinfosection .fa-envelope-o:before {
  content: "\f003";
}
.footercontactinfosection .fa-phone:before {
  content: "\f095";
}
.footercontactinfosection .vu_info-item .vu_ii-title {
  display: block;
  font-size: 28px;
  color: inherit;
  margin: 0 0 3px 0;
  padding: 0;
  color: #fff;
  line-height: 1.7;
}
.footercontactinfosection .vu_info-item .vu_ii-desc {
  font-size: 16px;
  line-height: 1.4;
  font-weight: normal;
  color: inherit;
  margin-bottom: 0;
  color: #fff;
  margin-top: 15px;
}
.footercontactinfosection .vu_ii-details a {
  font-size: 20px;
  padding: 10px 40px;
  text-decoration: none;
  text-transform: uppercase;
  margin: 20px 0 0 0;
  font-weight: 200;
}
.foo-follow-cards {
  /* float: left; */
  width: 100%;
  text-align: center;
  /*margin-top: 19px;*/
  color: var(--primary-color);
}

.foo-follow-cards img {
  filter: grayscale(1);
}
.foo-follow-cards img:hover {
  filter: grayscale(0%) !important;
  transform: scale(1.1);
}

.cardsection img {
  filter: grayscale(1);
}
.cardsection img:hover {
  filter: grayscale(0%) !important;
}
.cardsection {
  float: left;
  width: 100%;
  margin-top: 30px;
  text-align: center;
}
.foo-follow-cards ul li {
  display: inline-block;
  padding: 0 4px;
}
/*New Footer Section */

/*.topbooknowbtn::before, .topbooknowbtn::after {
   content: '';
   position: absolute;
   top: 0;
   width: 51%;
   height: 100%;
   z-index: -1;
   background: #ff5202;
   -webkit-transition: 0.5s;
   transition: 0.5s;
}
.topbooknowbtn:hover, .topbooknowbtn:focus {
   color: #ffffff;
   background: #0d1028;
   -webkit-box-shadow: 0 13px 27px 0 rgba(255, 82, 2, 0.11);
   box-shadow: 0 13px 27px 0 rgba(255, 82, 2, 0.11);
}*/
.app_text {
  margin: 130px 150px 150px 150px;
}

.app_text p {
  font-size: 19px;
  font-weight: 200;
  margin-bottom: 31px;
}

.topbooknowbtn {
  position: relative;
  /*padding: 15px 20px 15px 60px!important;*/
}
.topbooknowbtn .fa-file-text:before {
  content: "\f15c";
  font-size: 18px;
}
.topbooknowbtn .flaticon-right:before {
  font-size: 24px;
}
.topbooknowbtn .flaticon-edit {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 50px;
  line-height: 45px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  margin-left: 0;
  text-align: center;
}
.topbooknowbtn .flaticon-right {
  margin-left: 10px;
}

/*our fleet */
.portfolio.section {
  background: #fefef7;
  color: #444;
  /* float: left; */
  width: 100%;
  padding: 50px 0;
  min-height: 650px;
}
.portfolio.section .col-sm-4 {
  min-height: 300px;
  /* float: left; */
}
.section.portfolio .filters {
  text-align: left;
  margin-top: 50px;
}
.section.portfolio .filters ul {
  padding: 0;
}
.section.portfolio .filters ul li {
  list-style: none;
  display: inline-block;
  padding: 10px 20px;
  cursor: pointer;
  position: relative;
  break-after: avoid;
  border: 1px solid #ff5202;
  font-size: 18px;
  font-weight: normal;
  margin-left: 10px;
}
.section.portfolio .filters ul li.active {
  background: #ff5202;
}
.section.portfolio .filters ul li.active:after {
  width: calc(100% - 60px);
}
.section.portfolio .filters ul li:after {
  display: block;
  width: calc(0% - 60px);
  position: absolute;
  height: 2px;
  background: #333;
  transition: width 350ms ease-out;
}
.section.portfolio .filters-content {
  margin-top: 50px;
}
.section.portfolio .filters-content .item {
  text-align: center;
  cursor: pointer;
  margin-bottom: 60px;
  box-shadow: 2px 15px 20px 5px #6a6a6a45;
  transition: 0.5s;
}

/*
.section.portfolio .filters-content .item:hover{
        border-color: #ff5202;
        color: #fff;
}
*/
.section.portfolio .filters-content .item img {
  width: 100%;
  transition: 0.5s;
}
.section.portfolio .filters-content .item:hover img {
  width: 100%;
  background: #fff;
}

.section.portfolio .filters-content .item .p-inner h5 {
  font-size: 20px;
  /* float: left; */
  width: 100%;
  max-height: 45px;
  overflow: hidden;
  min-height: 45px;
  text-transform: uppercase;
  font-family: "Nunito Sans", sans-serif !important;
  font-weight: 700;
}
.section.portfolio .filters-content .item .p-inner .cat {
  font-size: 16px;
}
/*our fleet */

/*Services section*/
.service .container {
  width: 100%;
}
.service .col-sm-3 {
  padding-left: 0px;
  padding-right: 0px;
}
.service .thumb img {
  width: 100%;
}

/*New Full Width Menu */
.fullwidthmenu {
  width: 100%;
  color: #fff;
  background: var(--brand-color);
  padding: 18px 0;
  /* margin: 20px 0; */
  text-align: center;
}
.fullwidthmenu ul {
  /*/* float: left; */
  width: 100%;
  display: inline-block;
}
.fullwidthmenu ul li {
  float: none;
  display: inline-block;
  padding: 0 18px;
}
.fullwidthmenu ul li a {
  /*/* float: left; */
  color: #fff;
  font-size: 18px;
  text-decoration: none;
  font-weight: 500;
}
.fullwidthmenu ul li a:hover {
  transform: scale(1.1);
  color: var(--accent-blue);
}
/*New Full Width Menu */
.newcontactinfo .col-sm-3 {
  padding-left: 0;
  padding-right: 0;
}
.coninforow {
  /*/* float: left; */
  width: 100%;
  text-align: center;
  line-height: 30px;
  padding: 10px;
  margin: 15px 0;
  color: #fff;
  padding: 15px;
  min-height: 240px;
}
.coninfologo {
  /*/* float: left; */
  width: 100%;
  text-align: center;
  margin: 15px 0;
}
.coninfologo i {
  font-size: 28px;
  color: #fff;
}
.coninfotitle {
  font-size: 20px;
  /*/* float: left; */
  width: 100%;
  margin: 10px 0;
  text-align: center;
}
.coninfocontent {
  font-size: 16px;
  /*/* float: left; */
  width: 100%;
  text-align: center;
}
.coninfocontent a {
  color: #494949 !important;
  text-decoration: none;
}
.coninfologo span {
  border-radius: 50px;
  height: 80px;
  width: 80px;
  line-height: 3.5;
  background: var(--brand-color);
}
.coninforow1 {
  background: rgba(0, 0, 0, 0) linear-gradient(90deg, #1c1c1c 0%, #3c3c3c 100%)
    repeat scroll 0 0;
}
.coninforow2 {
  background: rgba(0, 0, 0, 0) linear-gradient(90deg, #1c1c1c 0%, #3c3c3c 100%)
    repeat scroll 0 0;
}
.coninforow3 {
  background: rgba(0, 0, 0, 0) linear-gradient(90deg, #1c1c1c 0%, #3c3c3c 100%)
    repeat scroll 0 0;
}
.coninforow4 {
  background: rgba(0, 0, 0, 0) linear-gradient(90deg, #1c1c1c 0%, #3c3c3c 100%)
    repeat scroll 0 0;
}

.portfolio .top-side {
  text-align: center;
}

.banner .enquiry_custom {
  left: auto;
  position: absolute;
  top: 2%;
  /* float: left; */
  padding: 0;
  width: 450px;
}

@media screen and (max-width: 479px) {
  .footercontactinfosection .fcis-col-md-4 {
    /* float: left; */
    width: 100%;
    text-align: center;
    margin-bottom: 10px;
  }
  .footercontactinfosection .vu_info-item.vu_ii-style-1 .vu_ii-icon {
    left: 35px;
  }
  .fullwidthmenu ul li {
    padding: 9px;
  }
  .applinksection {
    /* float: left; */
    width: 100%;
  }
  .section.portfolio .filters ul li {
    margin: 10px;
  }
  .app_text {
    margin: 30px;
  }
  .trends iframe {
    height: 315px;
    padding: 10px;
  }
  .modren .trends .right_sec {
    padding: 30px;
  }
  .banner .enquiry_custom {
    left: auto;
    position: static;
    top: 40%;
    /* float: left; */
    padding: 0;
    width: 100%;
  }
  .banner .carousel-inner .item img {
    transform: scale(1.1);
    position: relative;
    left: 4px;
    /*top: -50px;*/
  }
  .banner img {
    transform: scale(1.1);
    position: relative;
    left: -46px;
  }
}

@media screen and (min-width: 480px) and (max-width: 767px) {
  .footercontactinfosection .fcis-col-md-4 {
    /* float: left; */
    width: 100%;
    text-align: center;
    margin-bottom: 10px;
  }
  .footercontactinfosection .vu_info-item.vu_ii-style-1 .vu_ii-icon {
    left: 85px;
  }
  .fullwidthmenu ul li {
    padding: 15px;
  }
  .applinksection {
    /* float: left; */
    width: 100%;
  }
  .section.portfolio .filters ul li {
    margin: 10px;
  }
  .app_text {
    margin: 30px;
  }
  .in_service .shadow_service {
    max-height: 350px;
  }
  .trends iframe {
    height: 315px;
    padding: 10px;
  }
  .modren .trends .right_sec {
    padding: 30px;
  }
  .banner .enquiry_custom {
    left: auto;
    position: static;
    top: 40%;
    /* float: left; */
    padding: 0;
    width: 100%;
  }
  .banner .carousel-inner .item img {
    transform: scale(1.6);
    position: relative;
    left: -100px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 959px) {
  .fullwidthmenu ul li {
    padding: 9px;
  }
  .section.portfolio .filters ul li {
    margin: 10px;
  }
  .footercontactinfosection .vu_info-item.vu_ii-style-1 .vu_ii-icon {
    left: 0;
    font-size: 29px;
    margin-left: 10px;
  }
  .banner .enquiry_custom {
    left: 0;
    position: static;
    top: 40%;
    /* float: left; */
    padding: 0;
    width: 100%;
  }
}

@media only screen and (min-width: 960px) and (max-width: 1296px) {
  .banner .enquiry_custom {
    left: 0;
    position: static;
    top: 40%;
    /* float: left; */
    padding: 0;
    width: 100%;
  }
}

@media (max-width: 1400px) {
}
@media (max-width: 1200px) {
}

@media (max-width: 992px) {
  .infocol_items {
    flex-direction: column;
  }
  .infocol_left,
  .infocol_right {
    width: 100%;
    padding: 20px 0px;
  }
}

@media (max-width: 768px) {
}

@media (max-width: 576px) {
}
