/*
Author: Mohammad Zare
Author URI: http://mohammadz.com/
*/
@charset "UTF-8";

:root {
  --color-Orange-0: #ea5d0f;
  --color-Orange-50: #ff6708;
  --color-Orange-100: #f4aa83;
  --color-Orange-200: #fbe3d6;
  --color-Orange-300: #fdf1ea;
  --color-Orange-400: #fef8f5;

  --color-Success: #1b852d;
  --color-Success-BG: #e7fed9;
  --color-Error: #ea3328;
  --color-Error-BG: #ffe5e3;
  --color-Warning: #e39e2a;
  --color-Warning-BG: #fff8ec;
  --color-Info: #3f65f6;
  --color-Info-BG: #ecf0ff;

  --color-White: #fff;
  --color-Black: #000;

  --color-Gray-50: #fafafa;
  --color-Gray-100: #f5f5f5;
  --color-Gray-200: #eeeeee;
  --color-Gray-300: #e0e0e0;
  --color-Gray-400: #adadad;
  --color-Gray-500: #9e9e9e;
  --color-Gray-600: #757575;
  --color-Gray-700: #5b5b5b;
  --color-Gray-800: #424242;
  --color-Gray-900: #212121;

  --filter-Orange-0: brightness(0) saturate(100%) invert(48%) sepia(55%) saturate(5186%) hue-rotate(359deg) brightness(96%) contrast(91%);
  --filter-Orange-50: brightness(0) saturate(100%) invert(66%) sepia(82%) saturate(5567%) hue-rotate(356deg) brightness(102%) contrast(101%);

  --typography-Display-Large: 72px/116.67% "Franie";
  --typography-Display-Medium: 56px/110.71% "Franie";
  --typography-Display-Small: 40px/125% "Franie";
  --typography-Headline-Large: 600 40px/120% "General Sans";
  --typography-Headline-ExtraMedium: 28px/114.29% "Franie";
  --typography-Headline-Medium: 36px/138.88% "Franie";
  --typography-Headline-Medium-Medium: 600 32px/135% "General Sans";
  --typography-Headline-Small: 600 28px/114.29% "General Sans";
  --typography-Headline-Small-Medium: 500 28px/142.86% "General Sans";
  --typography-Subtitle-Large-Franie: 24px/125% "Franie";
  --typography-Subtitle-Large: 600 24px/125% "General Sans";
  --typography-Subtitle-Display: 20px/140% "Franie";
  --typography-Subtitle-Small: 600 20px/140% "General Sans";
  --typography-Body-Large: 500 20px/140% "General Sans";
  --typography-Body-Medium-Semibold: 600 16px/125% "General Sans";
  --typography-Body-Medium-Medium: 500 16px/150% "General Sans";
  --typography-Body-Medium-Regular: 400 16px/150% "General Sans";
  --typography-Body-Small-Medium: 500 14px/142.86% "General Sans";
  --typography-Body-Small-Regular: 400 14px/142.86% "General Sans";
  --typography-Uppercase-Mobile: 500 14px/128.57% "General Sans";
  --typography-Caption: 500 12px/150% "General Sans";

  --animate-duration: 1000ms;
  --animate-delay: 150ms;

  --gutter-x: 20px;
  --gutter-y: 20px;
}

@media (max-width: 767.98px) {
  :root {
    --typography-Display-Large: 32px/125% "Franie";
    --typography-Display-Medium: 32px/125% "Franie";
    --typography-Display-Small: 32px/125% "Franie";
    --typography-Headline-Large: 600 40px/120% "General Sans";
    --typography-Headline-ExtraMedium: 28px/114.29% "Franie";
    --typography-Headline-Medium: 28px/114.29% "Franie";
    --typography-Headline-Medium-Medium: 600 28px/114.29% "General Sans";
    --typography-Headline-Small: 600 28px/114.29% "General Sans";
    --typography-Headline-Small-Medium: 500 20px/140% "General Sans";
    --typography-Subtitle-Large-Franie: 24px/125% "Franie";
    --typography-Subtitle-Large: 600 24px/125% "General Sans";
    --typography-Subtitle-Display: 16px/150% "Franie";
    --typography-Subtitle-Small: 600 20px/140% "General Sans";
    --typography-Body-Large: 400 16px/150% "General Sans";
    --typography-Body-Medium-Semibold: 600 16px/125% "General Sans";
    --typography-Body-Medium-Medium: 500 16px/150% "General Sans";
    --typography-Body-Medium-Regular: 400 16px/150% "General Sans";
    --typography-Body-Small-Medium: 500 14px/142.86% "General Sans";
    --typography-Body-Small-Regular: 400 14px/142.86% "General Sans";
    --typography-Uppercase-Mobile: 500 14px/128.57% "General Sans";
    --typography-Caption: 500 12px/150% "General Sans";
  }
}

@font-face {
  font-family: "Franie";
  src: url("../fonts/Franie-SemiBold.otf") format("opentype");
}

@font-face {
  font-family: "General Sans";
  src: url("../fonts/GeneralSans-Variable.ttf") format("truetype-variations");
  font-weight: 1 999;
}

:focus {
  outline: 0 !important;
}

::selection {
  background: rgba(0, 0, 0, 0.1);
}

::-moz-selection {
  background: rgba(0, 0, 0, 0.1);
}

a {
  color: #110f10;
  text-decoration: none !important;
}

a:hover {
  color: var(--color-Black);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Franie", sans-serif;
  font-weight: 800;
  line-height: 1.4;
}

html {
  background: var(--color-Black);
}

html,
body {
  width: 100vw;
  min-height: 100%;
  min-height: 100svh;
  position: relative;
  overflow-x: clip;
}

body {
  font-family: "General Sans", sans-serif;
  font-weight: 300;
  font-size: 14px;
  line-height: 130%;
  direction: ltr;
  background: #fff;
  color: #4e4a49;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  transition: background-color 1.5s;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  backface-visibility: hidden;
}

.overlay-link {
  font-size: 0;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  z-index: 10;
  cursor: pointer;
}

.body-overlay {
  position: fixed !important;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 100;
  cursor: pointer;
  background: rgba(66, 66, 66, 0.6);
  backdrop-filter: blur(60px);
}

.body-overflow {
  overflow: hidden;
}

label,
th,
.control-label {
  font-weight: 700;
  font-size: 14px;
}

a>i:only-child,
button>i:only-child {
  line-height: inherit;
}

ol {
  list-style-type: decimal;
}

strong,
b {
  font-weight: 500;
}

.row.v-gutters {
  margin-top: -15px;
  margin-bottom: -15px;
}

.row.v-gutters>div {
  padding: 15px;
}

.sm-gutters {
  margin-left: -5px;
  margin-right: -5px;
}

.sm-gutters>.col,
.sm-gutters>[class*="col-"] {
  padding-left: 5px;
  padding-right: 5px;
}

.row.sm-gutters.v-gutters {
  margin-top: -5px;
  margin-bottom: -5px;
}

.row.sm-gutters.v-gutters>div {
  padding: 5px;
}

.lg-gutters {
  margin-left: -30px;
  margin-right: -30px;
}

.lg-gutters>.col,
.lg-gutters>[class*="col-"] {
  padding-left: 30px;
  padding-right: 30px;
}

.row.lg-gutters.v-gutters {
  margin-top: -30px;
  margin-bottom: -30px;
}

.row.lg-gutters.v-gutters>div {
  padding: 30px;
}

.tab-pane {
  display: none;
}

.tab-pane.active {
  display: block;
}

.fade {
  opacity: 0;
  transition: opacity 0.15s linear;
}

.fade.in {
  opacity: 1;
}

.collapse {
  display: none;
}

.collapse.in {
  display: block;
}

tr.collapse.in {
  display: table-row;
}

tbody.collapse.in {
  display: table-row-group;
}

.collapsing {
  position: relative;
  height: 0;
  overflow: hidden;
  transition-property: height, visibility;
  transition-duration: 0.35s;
  transition-timing-function: ease;
}

.modal-dialog {
  min-height: 100svh;
  display: flex;
  align-items: center;
}

.page-navigation {
  margin: 50px 0 0;
  text-align: center;
  background: rgb(204, 213, 214);
  padding: 40px;
}

.pagination {
  margin: 50px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.pagination>li>a,
.pagination>li>.current {
  width: 32px;
  height: 32px;
  background: var(--color-White);
  color: var(--color-Orange-50);
  font: var(--typography-Body-Medium-Medium);
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}

.pagination>li>.prev,
.pagination>li>.next {
  font-size: 0;
  position: relative;
}

.pagination>li>.prev::after,
.pagination>li>.next::after {
  background-image: url(../img/icon-arrow.svg);
  background-size: 96px 64px;
  background-position: left top;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  content: "";
}

.pagination>li>.prev::after {
  transform: scaleX(-1);
}

.pagination>li>.prev:hover::after,
.pagination>li>.next:hover::after {
  filter: brightness(0) invert(1);
}

.pagination>li>a:hover,
.pagination>li>.current {
  background: var(--color-Orange-50);
  color: var(--color-White);
}

/*Custom*/
.container-fluid {
  max-width: 1500px;
  /* max-width: 97vw; */
}

.row {
  --gutter-x: clamp(12px, 0.76vw + 9.03px, 20px);
  --gutter-y: clamp(12px, 0.76vw + 9.03px, 20px);
}

.section {
  background: #fff;
  position: relative;
  z-index: 1;
}

.section-full {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100svh;
}

.section-header+.section-body,
.section-body+.section-footer,
.section-header+.section-footer {
  margin-top: 40px;
}

.section-wrapper {
  padding: 100px 0;
  position: relative;
  z-index: 1;
}

.section:first-of-type .section-wrapper,
.section.section-covered .section-wrapper {
  padding-top: 100px !important;
}

.section:last-of-type .section-wrapper {
  padding-bottom: 0;
}

.section:not(.section-covered)+.section .section-wrapper {
  padding-top: 0;
}

.section-cover,
.subsection-cover {
  position: relative;
}

.section-cover img,
.subsection-cover img,
.section-cover svg,
.subsection-cover svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

img.section-bg {
  width: 100%;
  height: 100%;
  max-height: 100%;
  object-fit: cover;
}

div.section-bg {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.section-overlay>.section-wrapper {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.section-divider {
  display: block;
  margin: 0 auto;
}

.section-title {
  font: var(--typography-Body-Medium-Medium);
  color: var(--color-Orange-50);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: 0;
}

.section-subtitle {
  font: var(--typography-Headline-Medium);
  color: var(--color-Black);
  letter-spacing: -2px;
  margin: 0;
}

.section-desc {
  font: var(--typography-Body-Medium-Medium);
  color: var(--color-Gray-700);
  margin: 0;
}

.section-title+.section-desc,
.section-subtitle+.section-desc {
  margin-top: 27px;
}

.section-title+.section-subtitle {
  margin-top: 20px;
}

.subsection-header+.subsection-body,
.subsection-body+.subsection-footer,
.subsection-header+.subsection-footer {
  margin-top: 32px;
}

.subsection-title {
  color: var(--color-Black);
  margin: 0;
}

.subsection-subtitle {
  color: var(--color-Black);
  margin: 0;
}

.subsection-desc {
  font-weight: 300;
  font-size: 16px;
  line-height: 160%;
  color: #4e4a49;
  margin: 0;
}

.subsection-nav {
  margin-top: 32px;
}

.subsection-info {
  margin: 12px 0 0;
}

.subsection-bg {
  position: relative;
  width: 100%;
  max-height: 100%;
  margin-top: auto;
  overflow: hidden;
}

.subsection-bg>img,
.subsection-bg>svg {
  width: 100%;
  height: 100%;
}

.button {
  font: var(--typography-Body-Medium-Medium);
  line-height: 1;
  padding: 0 20px;
  gap: 10px;
  min-width: 91px;
  height: 48px;
  border-radius: 44px;
  text-wrap: nowrap;
  text-transform: capitalize;
  margin: 0;
  border: 1px solid transparent;
  background: none;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.button-block {
  display: flex;
  width: 100%;
}

.button-block+.button-block {
  margin-top: 15px;
}

.button-fill-primary {
  background: var(--color-Orange-50);
  border-color: var(--color-Orange-50);
  color: var(--color-White);
}

.button-fill-primary:hover {
  background: var(--color-Black);
  border-color: var(--color-Black);
  color: var(--color-White);
}

.button-outline-primary {
  background: transparent;
  border-color: var(--color-Orange-50);
  color: var(--color-Orange-50);
}

.button-outline-primary:hover {
  background: var(--color-Orange-50);
  border-color: var(--color-Orange-50);
  color: var(--color-White);
}

.button-fill-secondary {
  background: var(--color-White);
  border-color: var(--color-White);
  color: var(--color-Black);
}

.button-fill-secondary:hover {
  background: var(--color-Black);
  border-color: var(--color-Black);
  color: var(--color-White);
}

.button-outline-secondary {
  background: transparent;
  border-color: var(--color-White);
  color: var(--color-White);
}

.button-outline-secondary:hover {
  background: var(--color-white);
  border-color: var(--color-white);
  color: var(--color-Black);
}

.button.disabled,
.button:disabled {
  background: var(--color-Gray-300);
  color: var(--color-White);
}

.badge {
  padding: 0 8px;
  gap: 10px;
  height: 28px;
  border-radius: 44px;
  font: var(--typography-Body-Small-Medium);
  text-transform: uppercase;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.badge-default {
  background: var(--color-Gray-300);
  color: var(--color-Black);
}

.badge-primary {
  background: var(--color-Orange-300);
  color: var(--color-Orange-0);
}

.badge-success {
  background: var(--color-Success-BG);
  color: var(--color-Success);
}

.badge-error {
  background: var(--color-Error-BG);
  color: var(--color-Error);
}

.badge-warning {
  background: var(--color-Warning-BG);
  color: var(--color-Warning);
}

.badge-info {
  background: var(--color-Info-BG);
  color: var(--color-Info);
}

.form-group {
  display: flex;
  flex-direction: column;
  padding: 12px 16px;
  gap: 4px;
  height: 100%;
  background: #fafafa;
  border: 0.5px solid #e0e0e0;
  backdrop-filter: blur(60px);
  border-radius: 4px;
  position: relative;
}

.form-group .form-label {
  font: var(--typography-Body-Small-Medium);
  color: var(--color-Gray-600);
  cursor: pointer;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 4px;
}

.form-group .form-control {
  font: var(--typography-Body-Medium-Medium);
  color: var(--color-Black);
  padding: 0;
  border: none;
  background: none;
}

.form-group textarea.form-control {
  resize: none;
}

.form-action {
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.form-action>button:only-of-type {
  margin-left: auto;
}

#header {
  padding: 30px 0;
  width: 100vw;
  transition: all 0.3s ease-in-out;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

#header.sticky {
  background-color: #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  padding: 20px 0;
}

#header>div {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo>img {
  height: 27px;
}

body.page-template-page-contact .logo>img {
  filter: brightness(0) invert(0);
}

.user-nav {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 0 0 0 auto;
  padding: 0;
  list-style: none;
}

.user-nav>li>a {
  width: 18px;
  height: 18px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  font-size: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  filter: brightness(0) invert(0);
}

.user-nav>li.btn-booking>a {
  background-image: url(../img/icon-booking.svg);
}

.user-nav>li.btn-login>a {
  background-image: url(../img/icon-login.svg);
}

.user-nav>li.btn-account>a {
  background-image: url(../img/icon-user-01.svg);
}

.user-nav>li.btn-lang>a {
  background-image: url(../img/icon-globe.svg);
}

.user-nav>li.btn-nav>a {
  background-image: url(../img/icon-menu.svg);
}

body.page-template-page-booking #header:not(.sticky) .user-nav>li>a,
body.post-type-archive-vehicle #header:not(.sticky) .user-nav>li>a,
body.error404 #header:not(.sticky) .user-nav>li>a,
body.page-template-page-home #header:not(.sticky) .user-nav>li>a,
body.page-template-page-about #header:not(.sticky) .user-nav>li>a {
  filter: brightness(0) invert(1);
}

.user-nav>li>a:hover {
  filter: var(--filter-Orange-0) !important;
}

#header.sticky .user-nav>li>a>span {
  font: var(--typography-Body-Medium-Medium);
  color: var(--color-White);
}

.section-hero {
  background: var(--color-Black);
  height: 100vh;
}

.section-hero .section-wrapper {
  padding: 96px 0 47px;
}

.section-hero .section-wrapper>div,
.section-hero .section-wrapper>div>div,
.section-hero .section-wrapper>div>div>div:first-child {
  height: 100%;
}

.section-hero .section-body {
  display: flex;
  flex-direction: column;
  padding: 20px;
  gap: 16px;
  width: 100%;
  height: 100%;
  background: rgba(66, 66, 66, 0.6);
  backdrop-filter: blur(60px);
  border-radius: 8px;
}

.section-hero .section-subtitle {
  font: var(--typography-Display-Medium);
  color: var(--color-White);
  letter-spacing: -2px;
}

.section-hero .section-subtitle>b {
  color: var(--color-Orange-0);
}

.section-hero .section-body>form {
  height: 100%;
}

.hero-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  height: 100%;
}

.hero-card-title {
  color: #FFFFFF;
  font: 20px/1.40 'Franie';
  letter-spacing: -1px;
  margin: 0;
}

.hero-card-body .form-group {
  border: 0.5px solid #ADADAD;
  background: rgba(0, 0, 0, 0.15);
}

.hero-card-body .form-group .form-label {
  color: #FFFFFF;
}

.hero-card-body .form-group .form-control {
  color: #ADADAD;
  font: normal 400 16px/1.50 'General Sans';
}

.hero-card-body>fieldset {
  --gutter-x: 0;
  --gutter-y: 8px;
}

.hero-card-body>fieldset>div:nth-child(2)>.form-group,
.hero-card-body>fieldset>div:nth-child(4)>.form-group {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-right: none;
}

.hero-card-body>fieldset>div:nth-child(3)>.form-group,
.hero-card-body>fieldset>div:nth-child(5)>.form-group {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-left: none;
}

.hero-card-footer {
  margin-top: auto;
}

.how-grid {
  counter-reset: how;
  position: relative;
}

.how-grid::before {
  transition: all 1000ms 200ms ease-in-out;
  position: absolute;
  content: "";
}

.how-card-title {
  font: var(--typography-Subtitle-Display);
  color: var(--color-Orange-50);
  letter-spacing: -1px;
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
}

.how-card-title::before {
  font: var(--typography-Display-Small);
  color: var(--color-Orange-200);
  letter-spacing: -2px;
  counter-increment: how;
  content: counter(how, decimal-leading-zero);
}

.category-card {
  background: url(../img/bg-05.svg) no-repeat center/cover;
  border: 1px solid var(--color-Orange-200);
  border-radius: 12px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

.category-card-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 22px;
}

.category-card-title {
  font: var(--typography-Subtitle-Display);
  color: var(--color-Black);
  letter-spacing: -1px;
  margin: 0;
}

.category-card-desc {
  font: var(--typography-Body-Medium-Medium);
  color: var(--color-Black);
  opacity: 0.5;
}

.category-card-btn {
  font: var(--typography-Body-Medium-Medium);
  color: var(--color-Black);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.category-card-btn::after {
  width: 32px;
  height: 32px;
  background-image: url(../img/icon-arrow.svg);
  background-size: 96px 64px;
  background-position: left top;
  background-repeat: no-repeat;
  border-radius: 50%;
  content: "";
}

.category-card:hover .category-card-btn::after {
  background-position: center top;
}

.category-card-footer {
  padding-left: 22.1962617%;
}

.category-card-img {
  width: 100%;
  aspect-ratio: 1/0.720108696;
}

.section-featured .section-inner {
  padding: 56px;
  background: var(--color-Black);
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}

.section-featured .section-subtitle {
  color: var(--color-White);
}

.vehicle-card {
  background-color: var(--color-Gray-200);
  border-radius: 12px;
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
}

.vehicle-card-header {
  padding: 0 15px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.vehicle-card-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.vehicle-card-title {
  font: var(--typography-Subtitle-Display);
  color: var(--color-Black);
  margin: 0;
}

.vehicle-card-subtitle {
  font: var(--typography-Body-Small-Regular);
  color: var(--color-Gray-700);
  margin: 0;
}

.price {
  color: var(--color-Black);
  display: inline-flex;
  align-items: end;
  gap: 2px;
}

.price .price-label,
.price .price-currency,
.price .price-period {
  font: var(--typography-Body-Small-Medium);
}

.price .price-label {
  color: var(--color-Gray-900);
}

.price .price-amount {
  font: var(--typography-Headline-Small);
}

.price .price-currency {
  text-transform: uppercase;
}

.price .price-period {
  text-transform: capitalize;
}

.price.small .price-label,
.price.small .price-currency,
.price.small .price-period {
  font: var(--typography-Caption);
}

.price.small .price-amount {
  font: var(--typography-Body-Medium-Medium);
}

.price.large .price-label,
.price.large .price-currency,
.price.large .price-period {
  font: var(--typography-Body-Small-Medium);
}

.price.large .price-amount {
  font: var(--typography-Headline-Small);
}

.vehicle-card-price {
  margin: 12px 0 0;
}

.vehicle-card-tag {
  margin: 0 0 12px;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.vehicle-card-tag>li {
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  gap: 4px;
  height: 28px;
  background: rgba(66, 66, 66, 0.6);
  border-radius: 44px;
}

.vehicle-card-tag>li>img {
  height: 14px;
}

.vehicle-card-tag>li>span {
  font: var(--typography-Body-Small-Medium);
  color: var(--color-Gray-200);
}

.vehicle-card-img {
  width: 100%;
}

.vehicle-card-badge {
  display: inline-flex;
  align-items: center;
  padding: 0 8px;
  gap: 10px;
  height: 28px;
  background: var(--color-Orange-50);
  font: var(--typography-Body-Small-Medium);
  color: var(--color-White);
  border-radius: 44px;
  position: absolute;
  top: 8px;
  left: 8px;
  display: none;
}

.vehicle-card-compare {
  display: none;
}

.vehicle-carousel .slick-list {
  overflow: visible;
}

.vehicle-carousel::before {
  width: 100%;
  height: 100%;
  background: var(--color-Black);
  position: absolute;
  top: 0;
  right: 100%;
  content: "";
  z-index: 1;
  pointer-events: none;
}

.section-featured .section-inner::after {
  width: 26.661631419%;
  height: 100%;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0) 11.05%, #000000 96.6%);
  opacity: 0.6;
  position: absolute;
  top: 0;
  right: -56px;
  content: "";
}

.vehicle-carousel .vehicle-card {
  background-color: var(--color-White);
}

.vehicle-carousel .slick-arrow {
  font-size: 0;
  width: 32px;
  height: 32px;
  background-image: url(../img/icon-arrow.svg);
  background-size: 96px 64px;
  background-position: left bottom;
  background-repeat: no-repeat;
  border-radius: 50%;
  padding: 0;
  border: none;
  content: "";
  position: absolute;
  right: 0;
  bottom: 100%;
  margin-bottom: 40px;
  z-index: 1;
}

.vehicle-carousel .slick-arrow:hover {
  background-position: center bottom;
}

.vehicle-carousel .slick-arrow.slick-prev {
  transform: scaleX(-1);
  right: 44px;
}

.vehicle-carousel .vehicle-card-tag {
  display: none;
}

.overlay-masonry>div:nth-child(1) .overlay-card-desc,
.overlay-masonry>div:nth-child(2) .overlay-card-desc {
  display: none;
}

.overlay-card {
  border-radius: 12px;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.overlay-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  position: absolute;
  top: 0;
  left: 0;
}

.overlay-card-body {
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: 24px;
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg,
      rgba(0, 0, 0, 0) 18.04%,
      rgba(0, 0, 0, 0.5) 100%);
}

.overlay-card-title {
  font: var(--typography-Subtitle-Large-Franie);
  color: var(--color-White);
  margin: 0;
}

.overlay-card-title>b {
  color: var(--color-Orange-50);
}

.overlay-card-desc {
  font: var(--typography-Body-Medium-Medium);
  color: var(--color-Gray-200);
  margin: 16px 0 0;
}

.overlay-card-btn {
  font: var(--typography-Body-Medium-Medium);
  color: var(--color-Gray-100);
  display: inline-flex;
  align-items: center;
  margin: 20px 0 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.overlay-card-btn::after {
  width: 32px;
  height: 32px;
  background-image: url(../img/icon-arrow.svg);
  background-size: 96px 64px;
  background-position: left top;
  background-repeat: no-repeat;
  border-radius: 50%;
  content: "";
}

.overlay-card:hover .overlay-card-btn::after {
  background-position: center top;
}

.section-cta .section-inner {
  background: url(../img/bg-03.svg) no-repeat center/cover;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
}

.section-cta .section-bg {
  background: url(../img/bg-01.svg) no-repeat center;
  height: 129.655172%;
  max-height: unset;
  opacity: 0.2;
  width: auto;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.section-cta .section-subtitle {
  font: var(--typography-Display-Large);
  color: var(--color-White);
}

#footer {
  padding-top: 100px;
  margin-top: auto;
}

.footer-inner {
  background: var(--color-Black);
  color: var(--color-Gray-400);
  padding: 44px;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}

.fblock {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.fblock-title {
  font: var(--typography-Body-Small-Medium);
  color: var(--color-Gray-600);
  margin: 0;
}

.footer-nav,
.footer-social {
  font: var(--typography-Body-Medium-Regular);
  color: var(--color-Gray-300);
  margin: 0;
  padding: 0;
  list-style: none;
}

.copyright {
  margin: 13px 0 4px;
}

.copyright+.footer-nav {
  color: var(--color-Gray-400);
  font-size: 14px;
}

.fblock-body a {
  color: inherit;
}

.fblock-body a:hover {
  color: var(--color-Orange-0);
}

.footer-contact {
  font: var(--typography-Body-Medium-Regular);
  color: var(--color-Gray-300);
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-contact a {
  color: inherit;
}

.footer-logo>img {
  max-width: 100%;
  height: 50.44px;
}

.section-contact-hero {
  background: url(../img/bg-04.svg) no-repeat center/cover;
  height: 69.4444444vh;
  height: auto;
  position: relative;
  overflow: hidden;
}

.section-contact-hero>.section-bg {
  height: 129.655172%;
  max-height: unset;
  opacity: 0.2;
  width: auto;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.section-contact-hero .section-wrapper {
  z-index: 2;
}

.section-contact-hero .section-title {
  font: var(--typography-Display-Large);
  color: var(--color-Black);
  letter-spacing: -2px;
  text-transform: unset;
}

.contact-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  height: 100%;
  padding: 32px;
  gap: 20px;
  background: var(--color-Gray-50);
  border-radius: 12px;
}

.contact-card-icon {
  height: 32px;
}

.contact-card-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-card-title {
  font: var(--typography-Subtitle-Small);
  color: var(--color-Orange-50);
}

.contact-card-desc {
  font: var(--typography-Body-Medium-Medium);
  color: var(--color-Gray-700);
}

.section-about-hero {
  min-height: 100vh;
  background: var(--color-Black);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.section-about-hero .section-bg {
  height: auto;
}

.section-about-hero .section-title {
  font: var(--typography-Display-Large);
  color: var(--color-White);
  text-transform: unset;
}

.section-about-hero .section-title>b {
  color: var(--color-Orange-50);
}

.section-about-hero .section-wrapper {
  padding: 176px 0 0;
}

.section-about-hero .section-bg {
  text-align: end;
}

.section-about-hero .section-bg>img {
  width: 100%;
  height: auto;
}

.section-about-intro .section-desc {
  font: var(--typography-Headline-Small-Medium);
  color: var(--color-Gray-700);
  text-align: center;
}

.section-about-motion .section-header {
  display: inline-flex;
  position: relative;
}

.section-about-motion .section-title {
  /* width: 62.3111782%; */
  height: 131.68px;
  padding-right: 47px;
  position: relative;
  display: inline-flex;
  align-items: center;
  font: var(--typography-Display-Medium);
  color: var(--color-Black);
  letter-spacing: -2px;
  line-height: 1;
  text-transform: unset;
}

.section-about-motion .section-header {
  transform: translateX(-150%);
  transition: transform 0.6s ease-out;
}

.section-about-motion .section-header.active {
  transform: translateX(0);
}

.section-about-motion .section-header .section-title>span {
  opacity: 0;
  visibility: hidden;
  transition: all 0.6s ease-out;
  white-space: nowrap;
}

.section-about-motion .section-header.active .section-title>span {
  opacity: 1;
  visibility: visible;
}

.section-about-motion .section-header::before,
.section-about-motion .section-header::after {
  width: 100vw;
  height: 175.675881%;
  position: absolute;
  right: 0;
  background-size: contain;
  background-repeat: no-repeat;
  content: "";
}

.section-about-motion .section-header::before {
  background-image: url(../img/object-03.svg);
  background-position: bottom right;
  bottom: 100%;
}

.section-about-motion .section-header::after {
  background-image: url(../img/object-04.svg);
  background-position: top right;
  top: 100%;
}

.section-about-motion .section-title>i {
  width: 100%;
  height: 147.554678%;
  background: url(../img/object-05.svg) no-repeat left center;
  background-size: auto 100%;
  position: absolute;
  top: 50%;
  left: 100%;
  transform: translateY(-53%);
}

.value-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.value-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  padding-left: 48px;
}

.value-card::before {
  width: 32px;
  height: 32px;
  background: url(../img/icon-check-small.svg) no-repeat center/cover;
  position: absolute;
  top: 0;
  left: 0;
  content: "";
}

.value-card-title {
  font: var(--typography-Subtitle-Display);
  color: var(--color-Black);
  margin: 0;
}

.value-card-desc {
  font: var(--typography-Body-Medium-Regular);
  color: var(--color-Gray-700);
}

.section-about-value .section-cover>img {
  border-radius: 12px;
}

.section-about-motion {
  z-index: 2;
}

.section-about-mission .section-desc {
  font: var(--typography-Body-Large);
  color: var(--color-Gray-700);
}

.stat-card {
  border-radius: 12px;
  padding: 32px;
  gap: 40px;
  display: flex;
  flex-direction: column;
}

.stat-grid>div:nth-child(1) .stat-card {
  background-color: var(--color-Orange-50);
  color: var(--color-White);
}

.stat-grid>div:nth-child(2) .stat-card {
  background-color: var(--color-Gray-300);
  color: var(--color-Black);
}

.stat-grid>div:nth-child(3) .stat-card {
  background-color: var(--color-Black);
  color: var(--color-White);
}

.stat-card-value {
  font: var(--typography-Display-Small);
  letter-spacing: -2px;
}

.stat-card-body {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.stat-card-title {
  font: var(--typography-Subtitle-Display);
  letter-spacing: -1px;
  margin: 0;
}

.stat-card-desc {
  opacity: 0.8;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-card {
  border-radius: 8px;
  background: var(--color-Gray-50);
}

.faq-card-header {
  padding: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-card-header::after {
  width: 24px;
  height: 24px;
  background: url(../img/icon-plus.svg) no-repeat center/cover;
  content: "";
}

.faq-card.active .faq-card-header::after {
  background-image: url(../img/icon-minus.svg);
}

.faq-card:not(.active) .faq-card-body {
  display: none;
}

.faq-card-title {
  font: var(--typography-Body-Large);
  color: var(--color-Black);
  margin: 0;
}

.faq-card-body {
  font: var(--typography-Body-Medium-Regular);
  color: var(--color-Gray-600);
  padding: 0 24px 24px;
}

.page-header-title {
  font: var(--typography-Display-Medium);
  color: var(--color-Black);
  margin: 0;
}

.page-header-subtitle {
  font: var(--typography-Body-Large);
  color: var(--color-Gray-700);
  margin: 24px 0 0;
}

#page-header+#page-body {
  padding-top: 0;
}

.blog-card {
  display: flex;
  flex-direction: column;
  padding: 20px;
  gap: 18px;
  background: var(--color-Gray-100);
  backdrop-filter: blur(60px);
  border-radius: 12px;
  height: 100%;
}

.blog-card-meta {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.blog-card-img {
  width: 100%;
  aspect-ratio: 1/0.691309619;
  object-fit: cover;
  object-position: center;
  background-color: var(--color-Gray-400);
  border-radius: 4px;
}

.blog-card-title {
  font: var(--typography-Subtitle-Large);
  color: var(--color-Black);
  margin: 12px 0 0;
}

.blog-card-desc {
  margin: 20px 0 0;
}

.section-404 {
  background: var(--color-Black);
  text-align: center;
  height: 100svh;
}

.section-404 .section-wrapper {
  padding: 100px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.section-404 .section-subtitle {
  color: var(--color-Orange-0);
}

.section-404 .section-desc {
  color: var(--color-White);
}

#page-header.page-wizard {
  padding: 0;
}

.page-wizard .page-wizard-top {
  background-color: var(--color-Gray-900);
  padding-top: 96px;
}

.wizard-progress {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
}

.wizard-progress>li {
  width: 20%;
  display: flex;
  flex-direction: column;
  padding: 12px 12px 24px;
  gap: 4px;
  border-bottom: 6px solid var(--color-Orange-50);
  position: relative;
}

.wizard-progress>li.active~li {
  border-bottom-color: transparent;
}

.wizard-progress>li:first-child {
  padding-left: 0;
}

.wizard-progress>li:first-child::before {
  background: var(--color-Orange-50);
  width: 100vw;
  height: 6px;
  position: absolute;
  right: 100%;
  top: 100%;
  content: "";
}

.wizard-progress>li:last-child {
  padding-right: 0;
}

.wizard-progress>li>strong {
  font: var(--typography-Body-Small-Medium);
  color: var(--color-Gray-200);
}

.wizard-progress>li.active~li>strong {
  color: var(--color-Gray-700);
}

.wizard-progress>li>div {
  font: var(--typography-Caption);
  color: var(--color-Gray-400);
}

.page-gallery {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.page-gallery-big {
  position: relative;
}

.page-gallery-big .slick-arrow {
  font-size: 0;
  width: 32px;
  height: 32px;
  background-image: url(../img/icon-arrow.svg);
  background-size: 96px 64px;
  background-position: left bottom;
  background-repeat: no-repeat;
  border-radius: 50%;
  padding: 0;
  border: none;
  content: "";
  position: absolute;
  top: 50%;
  z-index: 1;
}

.page-gallery-big .slick-arrow:hover {
  background-position: center bottom;
}

.page-gallery-big .slick-arrow.slick-next {
  right: 16px;
}

.page-gallery-big .slick-arrow.slick-prev {
  transform: scaleX(-1);
  left: 16px;
}

.page-gallery-image img {
  width: 100%;
  object-fit: cover;
}

.page-gallery-thumb .slick-track {
  gap: 8px;
}

.page-gallery-big .page-gallery-image img {
  aspect-ratio: 1/0.598132065;
  border-radius: 12px;
}

.page-gallery-thumb .page-gallery-image img {
  aspect-ratio: 1/0.693548387;
  border-radius: 8px;
  border: 1px solid var(--color-Gray-400);
  cursor: pointer;
}

.page-gallery-thumb .slick-slide:not(.slick-current) {
  opacity: 0.4;
  transition: all 500ms linear;
}

.page-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.page-info-title {
  font: var(--typography-Display-Small);
  color: var(--color-Black);
  letter-spacing: -2px;
  margin: 0;
}

.page-info-desc {
  font: var(--typography-Body-Medium-Medium);
  color: var(--color-Gray-700);
}

.page-info-tag {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.page-info-tag>li {
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  gap: 4px;
  height: 28px;
  background: rgba(66, 66, 66, 0.6);
  border-radius: 44px;
}

.page-info-tag>li>img {
  height: 14px;
}

.page-info-tag>li>span {
  font: var(--typography-Body-Small-Medium);
  color: var(--color-Gray-200);
}

.page-tab-nav {
  margin: 0;
  padding: 0;
  list-style: none;
  border-bottom: 0.5px solid var(--color-Gray-500);
  display: flex;
  align-items: end;
}

.page-tab-nav>li>a {
  font: var(--typography-Body-Medium-Medium);
  color: var(--color-Gray-600);
  padding: 12px;
  gap: 10px;
  display: inline-flex;
  align-items: center;
}

.page-tab-nav>li.active>a {
  color: var(--color-Gray-900);
  position: relative;
}

.page-tab-nav>li.active>a::after {
  background: var(--color-Orange-50);
  width: 100%;
  height: 1px;
  transform: translateY(50%);
  position: absolute;
  left: 0;
  bottom: 0;
  content: "";
}

.page-tab-pane {
  padding: 20px 0 0;
  font: var(--typography-Body-Medium-Regular);
}

.page-tab-pane-info {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.page-tab-pane-info>li>strong {
  font: var(--typography-Body-Medium-Regular);
  color: var(--color-Gray-700);
}

.page-tab-pane-info>li>span {
  font: var(--typography-Body-Medium-Medium);
  color: var(--color-Black);
}

.entry {
  display: flex;
  flex-direction: column;
}

.entry-breadcrumb {
  margin: 0 0 20px;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.entry-breadcrumb>li:not(:last-child)::after {
  content: "|";
  color: var(--color-Gray-600);
  margin: 0 12px;
  display: inline-flex;
}

.entry-breadcrumb>li>a {
  font: var(--typography-Body-Medium-Regular);
  color: var(--color-Gray-500);
}

.entry-breadcrumb>li:last-child>a,
.entry-breadcrumb>li>a:hover {
  color: var(--color-Gray-900);
}

.entry-cover-overlay,
.entry-cover {
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}

.entry-cover-overlay>img,
.entry-cover>img {
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 100%;
}

.entry-cover-overlay>img {
  aspect-ratio: 1/0.401826484;
}

.entry-cover-inner {
  background: linear-gradient(180deg,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, 0.6) 100%);
  padding: 32px;
  gap: 16px;
  display: flex;
  flex-direction: column;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.entry-cover-title {
  font: var(--typography-Display-Small);
  color: var(--color-White);
  margin: 0;
}

.entry-cover-title {
  font: var(--typography-Display-Small);
  color: var(--color-White);
  margin: 0;
}

.entry-cover-desc {
  font: var(--typography-Body-Large);
  color: var(--color-White);
}

.entry-cover>img {
  aspect-ratio: 1/0.514840183;
}

.entry-info {
  margin: 40px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.entry-info-date {
  font: var(--typography-Body-Medium-Regular);
  color: var(--color-Gray-900) entry-share;
}

.entry-title {
  font: var(--typography-Headline-Medium-Medium);
  color: var(--color-Black);
  margin: 0;
}

.entry-excerpt {
  display: flex;
  flex-direction: row;
  padding: 20px;
  gap: 10px;
  background: var(--color-Orange-400);
  border-left: 1px solid var(--color-Orange-0);
  backdrop-filter: blur(60px);
  border-radius: 8px;
  font: var(--typography-Body-Large);
  color: var(--color-Orange-0);
}

.entry-title,
.entry-excerpt {
  margin-top: 20px;
}

.entry-content {
  font: var(--typography-Body-Large);
  color: var(--color-Gray-700);
}

.entry-content h3 {
  font: var(--typography-Headline-Small);
  color: var(--color-Black);
}

.entry-share>strong {
  font: var(--typography-Body-Large);
  color: var(--color-Gray-800);
  margin-right: 35px;
  display: inline-flex;
  vertical-align: middle;
}

.entry-share>ul {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.entry-share>ul a>img {
  height: 20px;
}

.entry-share>ul a:hover>img {
  filter: var(--filter-Orange-0);
}

body.page-template-page-booking #footer,
body[data-step="review"] .wizard-action .wizard-price,
body[data-step="review"] .wizard-action [data-target=next] {
  display: none;
}

.wizard-action {
  padding: 20px 0;
  background: rgba(255, 255, 255, 0.05);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(60px);
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100vw;
  z-index: 100;
}

.wizard-action>div {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.section.section-wizard .section-wrapper {
  padding: 40px 0 200px !important;
}

.section-wizard .section-subtitle {
  font: var(--typography-Headline-Small);
  letter-spacing: 0;
}

.section-wizard .section-desc {
  font: var(--typography-Body-Medium-Regular);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
}

.section-wizard .section-desc::before {
  min-width: 22px;
  max-width: 22px;
  height: 22px;
  background: url(../img/icon-annotation-alert.svg) no-repeat center/cover;
  content: '';
}

.protection-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 24px;
  gap: 25px;
  background: var(--color-Gray-50);
  border: 1px solid transparent;
  border-radius: 12px;
  cursor: pointer;
}

.protection-card.featured {
  background: url(../img/bg-06.svg) no-repeat center/cover;
  border-color: var(--color-Orange-200);
}

.protection-card:hover,
.protection-card.active {
  background-color: var(--color-Orange-300);
  border-color: var(--color-Orange-50);
}

.protection-card-header {
  display: flex;
  flex-direction: column;
  padding: 0px 0px 20px;
  gap: 8px;
  border-bottom: 0.5px solid #E0E0E0;
}

.protection-card-title {
  font: var(--typography-Subtitle-Display);
  color: var(--color-Black);
  margin: 0;
}

.protection-card-subtitle {
  font: var(--typography-Caption);
  color: var(--color-Gray-600);
  margin: 0;
}

.protection-card-feature {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.protection-card-feature>li {
  font: var(--typography-Body-Small-Medium);
  color: var(--color-Gray-900);
  display: flex;
  align-items: start;
  gap: 8px;
}

.protection-card-feature>li::before {
  min-width: 18px;
  max-width: 18px;
  height: 18px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  content: '';
}

.protection-card-feature>li.enabled::before {
  background-image: url(../img/icon-check.svg);
}

.protection-card-feature>li.disabled {
  color: var(--color-Gray-400);
}

.protection-card-feature>li.disabled::before {
  background-image: url(../img/icon-x.svg);
}

.addon-card {
  display: flex;
  flex-direction: column;
  padding: 16px;
  gap: 40px;
  background: var(--color-Gray-50);
  border: 1px solid transparent;
  border-radius: 12px;
  cursor: pointer;
}

.addon-card:hover,
.addon-card.active {
  border-color: var(--color-Orange-50);
}

.addon-card-header {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.addon-card-title {
  font: var(--typography-Subtitle-Small);
  color: var(--color-Black);
  margin: 0;
}

.addon-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: end;
}

.addon-card-price .price-currency {
  color: var(--color-Gray-600);
}

.addon-card-btn {
  font: var(--typography-Body-Small-Medium);
  display: inline-flex;
  text-decoration-line: underline !important;
  color: var(--color-Gray-800);
  opacity: 0.6;
}

.booking-summary {
  display: flex;
  flex-direction: column;
  padding: 24px;
  gap: 44px;
  background: var(--color-Gray-50);
  border-radius: 12px;
}

.booking-summary-header .vehicle-card {
  border-radius: 0;
  padding: 0;
  background: none;
}

.vehicle-card.small {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 12px;
}

.vehicle-card.small .vehicle-card-header {
  min-width: 31.578947%;
  max-width: 31.578947%;
  background: var(--color-Gray-300);
  padding: 4px;
  border-radius: 8px;
  height: fit-content;
  border-bottom: 0.5px solid var(--color-Gray-200);
}

.vehicle-card.small .vehicle-card-body {
  padding: 0;
}

.vehicle-card.small .vehicle-card-title {
  font: var(--typography-Body-Medium-Semibold);
}

.vehicle-card.small .vehicle-card-subtitle {
  font: var(--typography-Body-Small-Medium);
}

.vehicle-card.small .vehicle-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex: 100%;
}

.vehicle-card.small .vehicle-card-price {
  margin: 0;
}

.vehicle-card-booked {
  font: var(--typography-Body-Small-Medium);
  color: var(--color-Gray-800);
}

.booking-summary-address {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  padding: 0px 0px 16px;
  gap: 16px;
  border-bottom: 0.5px solid var(--color-Gray-200);
}

.booking-summary-address>li {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.booking-summary-address>li>span {
  font: var(--typography-Body-Small-Medium);
  color: var(--color-Gray-600);
  display: flex;
  align-items: center;
  gap: 6px;
}

.booking-summary-address>li>span::before {
  background: url(../img/icon-location.svg) no-repeat center/cover;
  filter: brightness(0) invert(0) opacity(.6);
  min-width: 18px;
  max-width: 18px;
  height: 18px;
  content: '';
}

.booking-summary-address>li>div {
  font: var(--typography-Body-Small-Medium);
  color: var(--color-Black);
}

.booking-summary-address>li>strong {
  font: var(--typography-Body-Small-Medium);
  color: var(--color-Gray-700);
}

.booking-summary-invoice {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.booking-summary-invoice {
  margin: 0;
  padding: 0;
  list-style: none;
}

.booking-summary-invoice>li {
  display: flex;
  justify-content: space-between;
  align-items: end;
  padding: 0px 0px 4px;
  border-bottom: 0.5px solid var(--color-Gray-200);
}

.booking-summary-invoice>li>span {
  font: var(--typography-Body-Small-Medium);
  color: var(--color-Gray-700)
}

.booking-summary-invoice>li>strong {
  font: var(--typography-Subtitle-Display);
  color: var(--color-Gray-700)
}

.booking-fieldset>legend {
  font: var(--typography-Headline-Small);
  color: var(--color-Black);
  margin: 0 0 32px;
}

.booking-fieldset+.booking-fieldset {
  margin-top: 60px;
}

/*Components*/
.form-switch {
  width: 48.86px;
  height: 24px;
  position: relative;
  display: inline-flex;
  user-select: none;
  cursor: pointer;
}

.form-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.form-switch>span {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--color-Gray-400);
  transition: background-color 0.4s ease;
  border-radius: 24px;
}

.form-switch>span::before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 2px;
  bottom: 2px;
  background-color: var(--color-White);
  transition: transform 0.4s ease;
  border-radius: 50%;
}

.form-switch input:checked+span {
  background-color: var(--color-Orange-50);
}

.form-switch input:checked+span::before {
  transform: translateX(24px);
}

.form-switch input:disabled+span {
  background-color: var(--color-Black);
  cursor: not-allowed;
}

.form-number {
  display: flex;
  align-items: center;
  overflow: hidden;
}

.form-number>button,
.form-number>input {
  height: 24px;
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.form-number input[type="number"] {
  min-width: 24px;
  width: fit-content;
  font: var(--typography-Body-Medium-Medium);
  -moz-appearance: textfield;
}

.form-number input[type=number]::-webkit-inner-spin-button,
.form-number input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
}

.form-number>button {
  min-width: 24px;
  max-width: 24px;
  border-radius: 50%;
  background: var(--color-White);
  cursor: pointer;
  transition: background 0.3s;
}

.form-number>button>span {
  background: url(../img/icon-plus.svg) no-repeat center/cover;
  filter: brightness(0) invert(0);
  width: 14px;
  height: 14px;
  font-size: 0;
}

.form-number>button.form-number-decrement>span {
  background-image: url(../img/icon-minus.svg);
}

.form-number>button:hover {
  background: var(--color-Orange-50);
}

.form-number>button:hover>span {
  filter: brightness(0) invert(1);
}

.dashboard-nav>ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.dashboard-nav>ul>li>a {
  background: transparent;
  font: var(--typography-Body-Medium-Medium);
  color: var(--color-Gray-600);
  display: flex;
  align-items: center;
  padding: 0 16px;
  gap: 8px;
  height: 48px;
  border-radius: 4px;
}

.dashboard-nav>ul>li.active>a {
  background: var(--color-Orange-300);
  color: var(--color-Orange-50);
}

.dashboard-nav>ul>li>a::before {
  min-width: 20px;
  max-width: 20px;
  height: 20px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  content: '';
}

.dashboard-nav>ul>li.active>a::before {
  filter: var(--filter-Orange-50);
}

.dashboard-nav>ul>li.dashboard-nav-main>a::before {
  background-image: url(../img/icon-annotation-alert.svg);
}

.dashboard-nav>ul>li.dashboard-nav-order>a::before {
  background-image: url(../img/icon-car-01.svg);
}

.dashboard-nav>ul>li.dashboard-nav-profile>a::before {
  background-image: url(../img/icon-user-02.svg);
}

.dashboard-nav>ul>li.dashboard-nav-logout>a::before {
  background-image: url(../img/icon-logout-01.svg);
}

.dashboard-card {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.dashboard-card-header {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.dashboard-card-title {
  font: var(--typography-Headline-Small);
  letter-spacing: 0;
  color: var(--color-Black);
  margin: 0;
}

.dashboard-card-tab {
  display: flex;
  align-items: end;
  border-bottom: 0.5px solid var(--color-Gray-500);
  margin: 0;
  padding: 0;
  list-style: none;
}

.dashboard-card-tab>li>a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 12px;
  gap: 10px;
  color: var(--color-Gray-600);
  border-bottom: 1px solid transparent;
  font: var(--typography-Body-Medium-Semibold);
}

.dashboard-card-tab>li.active>a {
  color: var(--color-Black);
  border-bottom-color: var(--color-Orange-50);
}

.booking-card {
  display: flex;
  flex-direction: row;
  border-radius: 12px;
  overflow: hidden;
  background: var(--color-Gray-200);
}

.booking-card-header {
  min-width: 39.0692641%;
  max-width: 39.0692641%;
}

.booking-card-body {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 24px;
  gap: 12px;
}

.booking-card-subheader {
  display: flex;
  justify-content: space-between;
  align-items: end;
}

.booking-card-title {
  font: var(--typography-Subtitle-Display);
  margin: 0;
}

.booking-card-subtitle {
  font: var(--typography-Subtitle-Small);
  color: var(--color-Orange-50);
  margin: 0;
}

.booking-card-date {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.booking-card-date>li {
  display: flex;
  align-items: center;
  gap: 12px;
}

.booking-card-date>li>span {
  font: var(--typography-Body-Medium-Regular);
}

.booking-card-date>li>div {
  font: var(--typography-Body-Medium-Medium)
}

.booking-card-price {
  margin-top: 12px;
}

.booking-card-subfooter {
  text-align: end;
}

.booking-card-subfooter>button {
  font: var(--typography-Body-Medium-Medium);
  text-decoration: underline !important;
  color: var(--color-Gray-800);
  background: none;
  border: none;
  padding: 0;
}

.booking-card-subfooter>a {
  font: var(--typography-Body-Medium-Regular);
  color: var(600);
  margin-right: 24px;
}

.vehicle-widget-card {
  background: #EEEEEE;
  border-radius: 12px;
  padding: 32px;
  position: relative;
}

.vehicle-widget-card>.row>div:last-child {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.vehicle-widget-card .vehicle-card {
  flex-direction: column-reverse;
}

.vehicle-widget-card .vehicle-card-price {
  display: none;
}

.vehicle-widget-card .vehicle-card-tag {
  order: 3;
}

.vehicle-widget-body {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.vehicle-option {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.vehicle-option-title {
  color: #000000;
  font: normal 500 16px/1.50 'General Sans';
  margin: 0;
}

.vehicle-option-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.vehicle-option-list>li {
  padding: 12px 16px;
  border: 0.5px solid #EEEEEE;
  border-radius: 4px;
  background: #FAFAFA;
  backdrop-filter: blur(60px);
  display: flex;
  gap: 8px;
  cursor: pointer;
  position: relative;
}

.vehicle-option-list>li>div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.vehicle-option-list>li>div>strong {
  color: #212121;
  font: normal 600 16px/1.25 'General Sans';
}

.vehicle-option-list>li>div>span {
  color: #757575;
  font: normal 400 14px/1.71 'General Sans';
}

.vehicle-option-list>li>input {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden
}

.vehicle-option-list>li:has(input)::before {
  min-width: 16px;
  max-width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--Neutral-100, #F5F5F5);
  border: 1px solid var(--Neutral-400, #ADADAD);
  content: '';
}

.vehicle-option-list>li:has(input):hover::before,
.vehicle-option-list>li:has(input).active::before {
  border-color: var(--color-Orange-50);
  background: var(--color-Orange-50);
  box-shadow: inset 0 0 0 3px #F5F5F5;
}

.vehicle-widget-footer {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.vehicle-widget-action {
  display: flex;
  align-items: center;
  gap: 12px;
}

.vehicle-widget-action>.button {
  width: 100%;
}

.vehicle-widget-wrapper {
  display: none;
}

.protection-card {
  position: relative;
}

.protection-card input {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
}

/*Plugins*/
.daterangepicker .calendar-table td,
.daterangepicker .calendar-table th {
  font: var(--typography-Body-Small-Medium);
  padding: 0 10px;
  min-width: 62px;
  height: 42px;
}

.daterangepicker,
.daterangepicker .drp-calendar {
  width: fit-content;
  max-width: unset;
}

.daterangepicker th.month {
  font: var(--typography-Body-Medium-Semibold);
}

.daterangepicker td.in-range {
  background-color: var(--color-Orange-300);
  color: var(--color-Black);
}

.daterangepicker td.available:hover,
.daterangepicker th.available:hover {
  background-color: var(--color-Orange-300);
  color: var(--color-Orange-50);
}

.daterangepicker td.active,
.daterangepicker td.active:hover {
  background-color: var(--color-Orange-50);
  color: var(--color-White);
}

.timepicker-dropdown {
  position: absolute;
  background: var(--color-White);
  z-index: 100;
  display: none;
  border-radius: 4px;
  padding: 12px;
  min-width: 220px;
}

.timepicker-title {
  font: var(--typography-Body-Small-Medium);
  color: var(--color-Gray-600);
  margin: 0 0 8px;
}

.timepicker-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 12px;
  row-gap: 4px;
  max-height: 200px;
  overflow-y: auto;
}

.timepicker-option {
  font: var(--typography-Body-Medium-Regular);
  color: var(--color-Gray-900);
  padding: 0 12px;
  height: 40px;
  text-align: center;
  border-radius: 2px;
  cursor: pointer;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.timepicker-option:hover,
.timepicker-option.active {
  background: var(--color-Orange-300);
  color: var(--color-Orange-50);
}

.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: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.slick-track:before,
.slick-track:after {
  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;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

.slick-track {
  display: flex !important;
}

.slick-slide {
  height: inherit !important;
}

/*CMS*/
/*Responsive*/
@media (max-width: 767.98px) {

  .section-header+.section-body,
  .section-body+.section-footer,
  .section-header+.section-footer {
    margin-top: 32px;
  }

  .section-wrapper {
    padding: 80px 0;
  }

  .section:first-of-type .section-wrapper,
  .section.section-covered .section-wrapper {
    padding-top: 80px !important;
  }

  .overlay-masonry {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .section-hero .section-wrapper>div>div>div:first-child {
    height: 0;
  }

  #page-header {
    padding: 86px 0 32px;
  }

  #page-body {
    padding: 86px 0 40px;
  }

  #header {
    padding: 20px 0;
  }

  #navigation {
    background: var(--color-Black);
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    padding: 10px 0.75rem 38px;
    transform: translateY(-100%);
    transition: all 300ms linear;
    opacity: 0;
    visibility: hidden;
    z-index: -1;
  }

  #navigation>ul {
    font: var(--typography-Body-Medium-Medium);
    gap: 16px;
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
  }

  #navigation li>a {
    color: var(--color-White);
  }

  #navigation li>a:hover,
  #navigation li.current-menu-item>a {
    color: var(--color-Orange-0);
  }

  body.nav-opened .logo>img {
    filter: none;
  }

  body.nav-opened #header {
    background: var(--color-Black);
  }

  body.nav-opened .user-nav>li>a {
    filter: brightness(0) invert(1);
  }

  body.nav-opened .user-nav>li.btn-nav>a {
    background-image: url(../img/icon-x-close.svg);
  }

  body.nav-opened #navigation {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .logo>img {
    height: 22.48px;
  }

  .user-nav {
    gap: 12px;
  }

  .how-grid {
    gap: 24px;
    padding-left: 26px;
  }

  .how-grid::before {
    width: 4px;
    height: 0;
    background-image: linear-gradient(180deg,
        #ff6708 0%,
        rgba(236, 113, 48, 0) 100%);
    top: 0;
    left: 0;
  }

  .section-how.active .how-grid::before {
    height: 100%;
  }

  .section-featured .section-inner {
    padding: 24px;
  }

  .section-featured .section-body {
    margin-top: 24px;
  }

  .vehicle-carousel {
    padding-top: 64px;
  }

  .vehicle-carousel .slick-arrow {
    margin: 0;
    right: auto;
    left: 0;
    bottom: 0;
    top: 0;
  }

  .vehicle-carousel .slick-arrow.slick-next {
    left: 44px;
  }

  .overlay-masonry+.blog-grid {
    margin-top: 0;
  }

  .overlay-masonry>div:nth-child(1),
  .overlay-masonry>div:nth-child(2) {
    aspect-ratio: 1/0.651428571;
  }

  .overlay-masonry>div:nth-child(3),
  .overlay-masonry>div:nth-child(4) {
    aspect-ratio: 1/1.22857143;
  }

  .overlay-card-body {
    padding: 16px;
  }

  .section-cta .section-inner {
    padding: 32px 32px;
  }

  .section-cta .section-footer {
    margin-top: 118px;
  }

  .footer-inner {
    padding: 44px 15px;
    text-align: center;
  }

  .entry {
    gap: 44px;
  }

  .entry-info {
    margin-top: 24px;
  }

  .entry-content h3 {
    margin: 0 0 16px;
  }

  .entry-content p+h3 {
    margin-top: 44px;
  }

  .wizard-progress {
    display: none;
  }

  .section-about-hero .section-title {
    word-spacing: 100vw;
  }

  .section-about-motion.section-covered .section-wrapper {
    padding: 0 !important;
  }

  .section-about-motion .section-inner {
    transform: scale(0.466976864);
  }

  .vehicle-carousel .slick-list {
    padding-right: 60px;
  }

  .vehicle-carousel .vehicle-card {
    margin-right: 12px;
  }

  .vehicle-card-body {
    padding: 15px;
  }

  .entry-cover-overlay {
    aspect-ratio: 1/0.777142857;
  }

  .entry-cover-inner {
    padding: 10px;
    gap: 10px;
  }

  .entry-cover-title {
    font: var(--typography-Headline-Small);
  }

  .footer-logo>img {
    height: 41.12px;
  }

}

@media (min-width: 768px) {

  #navigation {
    display: none;
  }

  #page-header {
    padding: 116px 0 60px;
  }

  #page-body {
    padding: 96px 0 120px;
  }

  .user-nav>li.btn-nav {
    display: none;
  }

  .overlay-masonry {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(4, auto);
    gap: 20px;
  }

  .overlay-masonry>div:nth-child(1) {
    aspect-ratio: 1/0.654205607;
    grid-area: 1 / 1 / 2 / 2;
  }

  .overlay-masonry>div:nth-child(2) {
    aspect-ratio: 1/0.654205607;
    grid-area: 2 / 1 / 3 / 2;
  }

  .overlay-masonry>div:nth-child(3) {
    aspect-ratio: 1/0.662100457;
    grid-area: 1 / 2 / 3 / 4;
  }

  .overlay-masonry>div:nth-child(4) {
    aspect-ratio: 1/0.438066465;
    grid-area: 3 / 1 / 5 / 4;
  }

  .overlay-masonry>div:nth-child(3) .overlay-card-desc,
  .overlay-masonry>div:nth-child(4) .overlay-card-desc {
    width: 45%;
  }

  .overlay-masonry>div:nth-child(3) .overlay-card-title,
  .overlay-masonry>div:nth-child(4) .overlay-card-title {
    font: var(--typography-Display-Small);
  }

  .overlay-masonry>div:nth-child(3) .overlay-card-btn,
  .overlay-masonry>div:nth-child(4) .overlay-card-btn {
    position: absolute;
    bottom: 24px;
    right: 24px;
  }

  .section-cta .section-inner {
    padding: 154px 100px;
  }

  .section-cta .section-footer {
    margin-top: 56px;
  }

  .section-cta .section-subtitle {
    max-width: 60%;
  }

  .how-grid::before {
    width: 0;
    height: 4px;
    background-image: linear-gradient(90deg,
        #ff6708 0%,
        rgba(236, 113, 48, 0) 100%);
    top: 50%;
    left: 0;
    transform: translateY(-50%);
  }

  .section-how.active .how-grid::before {
    width: 100%;
  }

  .how-card {
    display: flex;
    flex-direction: column;
  }

  .how-grid>div:nth-child(even) {
    padding-top: 100px;
  }

  .how-grid>div:nth-child(odd)>.how-card {
    padding-bottom: 32px;
  }

  .how-grid>div:nth-child(event)>.how-card {
    padding-top: 32px;
  }

  .stat-grid>div:nth-child(1) .stat-card {
    gap: 140px;
  }

  .stat-grid>div:nth-child(3) .stat-card {
    gap: 80px;
  }

  .vehicle-carousel .slick-list {
    margin-right: -150px;
  }

  .vehicle-carousel .vehicle-card {
    margin-right: 20px;
  }

  .vehicle-card-body {
    padding: 24px;
  }

  .entry {
    gap: 72px;
  }

  .entry-content h3 {
    margin: 0 0 20px;
  }

  .entry-content p+h3 {
    margin-top: 72px;
  }

  .dashboard-card {
    padding: 32px;
    background: var(--color-Gray-50);
    border-radius: 12px;
  }

  .dashboard-card-footer {
    text-align: end;
  }
}

@media (orientation: landscape) {
  .section-contact-hero.section-covered .section-wrapper {
    padding: 15.7407407svh 0 34.259259259svh !important;
  }

  .section-about-hero.section-covered .section-wrapper {
    padding-top: 20.37037037svh !important;
  }

  .section-about-hero .section-bg {
    padding-left: 30.1388889%;
  }

  .section-about-motion.section-covered .section-wrapper {
    padding: 200px 0 !important;
  }
}

@media (orientation: portrait) {
  .section-contact-hero.section-covered .section-wrapper {
    padding: 14.3518519svh 0 10.4166667svh !important;
  }

  .section-about-hero.section-covered .section-wrapper {
    padding-top: 20.616113744svh !important;
  }

  .section-about-hero .section-bg {
    padding-left: 09.743589743%;
  }
}