html,
body {
    width: 100vw !important;
    background: #fff;
    overflow-x: hidden !important;
}
:root {
    --primary: #000;
    --secondary: #000;
    --highlights: #000;
    --title: #333;
    --body: #666;
    --border: #eee;
    --link: #000;
    --primary-btn: #000;
    --primary-btn-text: #000;
  --eerie-black-1: hsl(0, 0%, 13%);

}
.ui-header {
    border-bottom: solid 0.1px rgba(255, 255, 255, 0.05);
    /*	background: #fff;*/
}
.ui-header a {
    margin: 0 10px;
    color: rgba(000, 000, 000, 0.5);
}
.error {
    border: solid 1px #cc0000 !important;
}
.error i {
    color: #000;
}
.ui-header a:hover {
    color: #356076;
}

.space-between {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.h80 {
    height: 80px;
}
.d-flex-left {
    display: flex;
    align-items: center;
    justify-content: left;
}
.d-flex-right {
    display: flex;
    align-items: center;
    justify-content: right;
}
.content-center {
    display: flex;
    align-items: center;
    justify-content: center;
}
h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
    color: #000;
}
.ui-border {
    border-top: solid 0.1px #ddd;
}
a {
    text-decoration: none;
    color: var(--link);
    font-size: 14px;
}
p {
    color: var(--body);
    font-size: 14px;
}
.mr10 {
    margin-right: 10px;
}
.mr20 {
    margin-right: 20px;
}
.ml10 {
    margin-left: 10px;
}
.bb1 {
    border-bottom: solid 0.1px #ddd;
}
.std-btn {
    height: 40px;
    padding: 0 20px;
    float: left;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    position: relative;
    outline: none;
    border: none;
}
.std-btn:hover {
    color: #000 !important;
}
.std-btn.primary:hover {
    color: #fff !important;
}
.std-btn.primary {
    background: #000;
    color: var(--primary-btn-text);
    margin: 0;
    color: #fff;
}


.display-1 {
    font-size: calc(1.3rem + 3.5vw);
    line-height: 1em;
    color: #fff;
    font-weight: 700;

  }

  .display-4{
    font-size: calc(1.3rem + 3.5vw);
    line-height: 1em;
    color: #fff;
    font-weight: 700;

  }

  .body-2 {
    font-size: 1.5rem;
    line-height: 1.6rem;
    color: #fff;

  }
  
/*-----------------------------------*\
  #Navbar
\*-----------------------------------*/

.home-header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 100px;
    background: transparent;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;

}

.logo-nav{
    width: 250px;
}

.home-navbar a {
    position: relative;
    font-size: 18px;
    color: #fff;
    font-weight: 500;
    text-decoration: none;
    margin-left: 40px;
}

.home-navbar a::before{
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    width: 0;
    height: 2px;
    background: #fff;
    transition: .3s;
}


.home-navbar a:hover::before{
    width: 100%;
}
  
/*-----------------------------------*\
  #HEADER
\*-----------------------------------*/


.hero {
    position: relative;
    padding-block: 120px;
    min-height: 65vh;
    overflow: hidden;
    z-index: 1;
    margin-bottom: 40px;
  }


.Booking-form{
    max-width: 600px; /* Adjust the value to your desired maximum width */
    /* margin: auto; /* */
}


.hero .slider-item {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    display: grid;
    place-content: center;
    padding-block-start: 100px;
    opacity: 0;
    visibility: hidden;
    transition: 1000ms ease;
    z-index: 1;
    
  }
  
  .hero .slider-item.active {
    opacity: 1;
    
    visibility: visible;
  }
  
  .hero .slider-bg {
    
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: scale(1.15);
    pointer-events: none;
    user-select: none;
    z-index: -1;
  
  }

  .hero .slider-bg::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Adjust the color and opacity as needed */
    z-index: 1; /* Adjust the stacking order as needed */
}
  
  .hero .slider-item.active .slider-bg {
    animation: smoothScale 7s linear forwards;
  }
  
  @keyframes smoothScale {
    0% { transform: scale(1); }
    100% { transform: scale(1.15); }
  }
  
  .hero .section-subtitle::after { margin-block: 14px 20px; }
  
  .hero-text { margin-block: 10px 40px; }
  
  .hero .btn { margin-inline: auto; }
  
  .hero-btn {
    position: absolute;
    bottom: 15px;
    right: 15px;
    z-index: 2;
    background-color: var(--gold-crayola);
    width: 110px;
    height: 110px;
    padding: 12px;
    transform: scale(0.6);
  }
  
  .hero-btn img {
    margin-inline: auto;
    margin-block-end: 6px;
  }
  
  .hero-btn .span {
    color: var(--black);
    font-weight: var(--weight-bold);
    text-transform: uppercase;
    letter-spacing: var(--letterSpacing-1);
    line-height: var(--lineHeight-3);
  }
  
  .hero-btn::after {
    inset: 0;
    border: 1px solid var(--gold-crayola);
    animation: rotate360 15s linear infinite;
  }
  
  .slider-reveal {
    transform: translateY(30px);
    opacity: 0;
  }
  
  .hero .slider-item.active .slider-reveal {
    animation: sliderReveal 1s ease forwards;
  }
  
  @keyframes sliderReveal {
    0% {
      transform: translateY(30px);
      opacity: 0;
    }
  
    100% {
      transform: translateY(0);
      opacity: 1;
    }
  }
  
  .hero .slider-item.active .section-subtitle { animation-delay: 500ms; }
  
  .hero .slider-item.active .hero-title { animation-delay: 1000ms; }
  
  .hero .slider-item.active .hero-text { animation-delay: 1.5s; }
  
  .hero .slider-item.active .btn { animation-delay: 2s; }
  
  
  
.ui-hero {
    height: 70vh;
    background-size: cover;
    background-position: center;
    position: relative;
    float: let;
}
.ui-hero h1 {
    position: relative;
}
.ui-hero p {
    position: relative;
}
.ui-hero.ui-fade:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(to bottom, rgba(000, 000, 000, 0.6), transparent);
}
.ui-slide {
    height: 100%;
    display: none !important;
    background-position: center;
    background-size: cover;
}
.ui-slide.active {
    display: block !important;
}
.booking-form-options-nav {
    position: relative;
}
.booking-form-options-nav a {
    height: 50px;
    display: flex;
    align-items: center;
    padding: 0 30px;
    float: left;
    border-bottom: solid 1px #fff;
    margin-bottom: -1px;
    z-index: 4000;
    border-left: none;
    border-right: none;
    transition: 0.3s;
    color: rgba(000, 000, 000, 0.5);
    background: #fff;
}
.booking-form-options-nav a img {
    width: 40px;
}
.booking-form-options-nav a:hover {
    /*	background: rgba(53, 96, 118, 0.0001);*/
    color: #356076;
    transition: 0.3s;
}
.booking-form-options-nav a:first-child {
    border-left: solid 0.1px rgba(53, 96, 118, 0.0001) !important;
    border-radius: 10px 0 0 0;
}
.booking-form-options-nav a:last-child {
    border-right: solid 0.1px rgba(53, 96, 118, 0.0001) !important;
    border-radius: 0 10px 0 0;
}
.booking-form-category-nav {
    height: 50px;
    display: flex;
    align-items: center;
    background: transparent;
}
.booking-form-category-nav {
    /*	padding: 0 20px;*/
}
.booking-form-category-nav a {
    margin-right: 20px;
    font-size: 12px;
    opacity: 0.8;
}
.booking-form-category-nav a:hover {
    opacity: 1;
    color: #356076;
}
.col-md-12 {
    float: left;
}
.p30 {
    padding: 30px;
}
.mtn100 {
    margin-top: -100px;
}
.bgw {
    background: #fff;
}
.f-right {
    float: right;
}
.booking-form-sect {
    position: relative;
    float: left;
    width: 100%;
    padding: 20px 30px;
}
.icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 30px;
}
.wing {
    position: absolute;
    width: 19px;
    height: 30px;
    background: #fff;
    right: -20px;
    top: 0;
    z-index: 3000;
}
.wing2 {
    position: absolute;
    width: 19px;
    height: 30px;
    background: #fff;
    right: -20px;
    bottom: 0;
    z-index: 3000;
}
.mtn50 {
    margin-top: -50px;
}
.op6 {
    opacity: 0.6;
}
.dropdown-list {
    float: left;
    cursor: pointer;
    /*	color: #356076;*/
}
i {
    /*	color: rgba(255, 255, 255, .6);*/
}
#uiModalWrapper {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    display: none;
    float: left;
}
#uiModalWrapper:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: #000;
    left: 0;
    top: 0;
    opacity: 0.5;
}
.uiModal {
    padding: 10px 20px;
    position: relative;
    background: #fff;
    border-radius: 30px;
    border: solid 10px rgba(53, 96, 118, 0.1);
    display: none;
    z-index: 1;
}
.uiModalWrapper i {
    color: #000 !important;
}
.list-item {
    width: 100%;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: solid 0.1px var(--border);
}
.list-item:hover p {
    color: var(--primary);
    cursor: pointer;
}
.list-item p small {
    display: block;
}
.list-item:last-child {
    border-bottom: none;
}
.modal-search {
    padding: 10px 0 0 0;
    /*	border-bottom: solid .1px var(--border);*/
    margin-bottom: 20px;
}
.modal-search input {
    border: none;
    outline: none;
}

.datepicker {
    position: relative;
    display: inline-block;
}

#datepicker-input {
    cursor: pointer;
    padding: 8px 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

#calendarBody {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
    text-align: center;
    font-size: 14px;
}
.header {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    float: left;
    justify-content: center;
}
.day {
    width: 45px;
    height: 45px;
    float: left;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.6;
    border-radius: 50px;
}
.day.prev {
    opacity: 0.4;
    pointer-events: none;
}
.day.active {
    background: #000;
    cursor: pointer;
    color: #fff;
    opacity: 1;
}
.day:hover {
    background: #000;
    cursor: pointer;
    color: #fff;
    opacity: 1;
}
.calendarNav {
    width: 100%;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.calendarNav i {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0.6;
}
.calendarNav i:hover {
    opacity: 1;
}
#currentMonth {
    width: calc(100% - 100px);
    text-align: center;
}

.ui-header {
    height: 60px;
    /*display: flex;*/
    align-items: center;
    justify-content: space-between;
    padding: 0 25px;
}
.side-navigation {
    width: 250px;
    height: 100vh;
    position: fixed;
    left: 0;
    top: 0;
    border-right: solid 0.1px rgba(53, 96, 118, 0.09);
    transition: 0.4s;
}
.side-navigation.retracted {
    width: 70px;
}
.side-navigation.retracted .ui-header span {
    display: none;
}
.side-navigation.retracted a span {
    display: none;
}
.side-navigation.retracted .subtitle {
    display: none;
}
.side-navigation .ui-header img {
    display: block;
}
.side-navigation.retracted .ui-header img {
    display: block;
}
.side-navigation a {
    width: 100%;
    height: 45px;
    font-size: 14px;
    color: #000;
    padding: 0 25px;
    display: flex;
    align-items: center;
}
.side-navigation a span {
    opacity: 0.5;
}
.side-navigation a.active {
    color: #000;
}
.side-navigation a.active span {
    opacity: 1;
}
.side-navigation a:hover {
    color: #000;
}
.side-navigation a:hover span {
    opacity: 1;
}
.main-view {
    width: calc(100% - 250px);
    height: 100vh;
    float: right;
    transition: 0.4s;
}
.main-view.expanded {
    width: calc(100% - 70px);
}
.space-between {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.main-view-sub {
    width: 100%;
    float: left;
}
.main-view-sub.retracted {
    width: calc(100% - 500px);
}
.booking-details {
    width: 500px;
    height: auto;
    float: left;
    padding: 25px 40px;
    background: #fff;
    border: solid 0.1px #eee;
}
.avatar {
    width: 40px;
    height: 40px;
    border-radius: 40px;
    display: flex;
    background: rgba(53, 96, 118, 0.05);
    background-size: cover;
    background-position: center;
}
.subtitle {
    width: 100%;
    padding: 0 25px;
    font-size: 12px;
    opacity: 0.5;
}
.quick-view-banner {
    width: 100%;
    height: auto;
    padding: 0;
    border-radius: 10px;
}
.ui-insight {
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-right: solid 0.1px rgba(53, 96, 118, 0.1);
}
.ui-insight:hover {
    cursor: pointer;
}
.p25 {
    padding: 0 25px;
}


.mobile {
    display: none;
}
i.icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.disable {
    pointer-events: none;
}
.luggage {
    width: 40%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    text-align: center;
    opacity: 0.5;
}
.luggage:hover {
    opacity: 1;
}
.luggage img {
    margin-bottom: 20px;
}
.luggages {
    display: flex;
    align-items: center;
    justify-content: center;
}
.modalSec {
    width: 100%;
    display: none;
}
.modalSec.active {
    display: block;
}
.input-group {
    display: flex;
    align-items: center;
    height: 50px;
    border-bottom: solid 0.1px #eee;
}
.input-group i {
    margin-right: 5px;
}
.input-group input {
    width: calc(100% - 25px);
    border: none;
    outline: none;
}
.input-group select {
    width: calc(100% - 25px);
    border: none;
    outline: none;
    background: transparent;
}
.dropdown-menu {
    width: 100%;
    padding: 10px 30px;
    float: left;
    background: transparent;
}
.dropdown-menu a {
    width: 100%;
    height: 45px;
    display: flex;
    align-items: center;
    opacity: 0.6;
    border-bottom: solid 0.1px rgba(255, 255, 255, 0.09);
}
.dropdown-menu a:last-child {
    border-bottom: none !important;
}
.dropdown-menu a.active {
    opacity: 1;
}
.dropdown-menu a:hover {
    opacity: 1;
    color: #000 !important;
}
.info-box {
    width: 100%;
    padding: 30px;
    border-top: solid 0.5px #eee;
}
.mobile-navigation {
    width: 100%;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 25px;
}
.ui-card {
    width: calc(100% - 50px);
    padding: 20px;
    background: #fff;
    margin: 25px;
    border-radius: 10px;
    float: left;
}
.overview-box {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.overview-box small {
    margin-left: 10px;
    /*display: block;
	margin-top: 10px;*/
}
.right {
    display: flex;
    align-items: center;
    justify-content: right;
}
.app-view {
    width: 100%;
    height: 100vh;
    float: left;
}
.slideView {
    width: 100%;
    height: 100vh;
    position: fixed;
    left: 100%;
    top: 0;
}
.avatar {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 40px;
    background: #e8e8ea;
    background-size: cover;
    background-position: center;
}
.vehicle {
    width: 100%;
    padding: 0 30px;
}
.search-sect {
    width: 100%;
    padding: 0 25px;
    float: left;
}
.ui-sect {
    width: 100%;
    padding: 25px;
    float: left;
}
.ui-booking {
    width: 100%;
    display: flex;
    padding: 15px 20px;
    float: left;
    background: #fff;
    border: solid 0.1px #eee;
}
.ui-booking.retracted .retractables {
    display: none;
}
.ui-booking:hover {
    cursor: pointer;
    color: #000;
}
.ui-booking:hover p {
    color: #000;
}
.list-header {
    display: flex;
    padding: 0 20px;
    text-transform: uppercase;
}
.list-header.retracted .retractables {
    display: none;
}
.list-header p {
    width: 20%;
    padding-right: 20px;
    font-size: 12px;
    font-weight: bold;
}
.ui-booking p {
    width: 20%;
    padding-right: 20px;
}
.ui-booking p > small {
    display: block;
}
.booking-full-datails {
    width: calc(100%);
    padding: 0 30px;
    background: #fff;
    float: left;
}
.modal-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    left: 0;
    top: 0;
    position: fixed;
    display: none;
}
.ui-modal-body {
    background: #fff;
    padding: 40px;
    border-radius: 10px;
}
.form {
    padding: 30px;
    width: 350px;
    height: 100vh;
    background: #fff;
    position: fixed;
    right: 0;
    top: 0;
}
.form input {
    background: transparent;
}
.mr10 {
    margin-right: 10px;
}
.mr20 {
    margin-right: 20px;
}
.input-error {
    color: #cc0000 !important;
}

.error-message {
    float: left;
    width: 100%;
    display: block;
    padding: 10px 30px;
    color: #cc0000;
}

@media (max-width: 768px) {
    .desktop {
        display: none;
    }
    .mobile {
        display: block;
    }

    .booking-form-options-nav a {
        height: 50px;
        display: flex;
        align-items: center;
        padding: 0 30px;
        float: left;
        border-bottom: solid 1px #fff;
        margin-bottom: -1px;
        z-index: 4000;
        border-left: none;
        border-right: none;
        transition: 0.3s;
        color: rgba(000, 000, 000, 0.5);
        background: #fff;
    }
    .ui-hero {
        height: 300px;
    }
    .mobile-booking-form-options-nav {
        width: 100%;
        height: 50px;
        display: flex;
        align-items: center;
    }
    .mobile-booking-form-options-nav a {
        margin: 20px;
        opacity: 0.6;
        font-size: 3vw !important;
    }
    .mobile-booking-form-options-nav a.active {
        color: #000;
        opacity: 1;
    }
    .mobile-std-padding {
        padding: 20px;
    }
    .mobile-booking-form-sect {
        width: 100% !important;
        height: auto !important;
        padding: 20px;
        color: #000;
        background: #fff;
    }
    .dropdown-list {
        width: calc(100% - 60px);
        margin-right: 20px;
    }
    .selectedDateAndTime {
        width: 100%;
        padding: 10px 0;
        border: none;
        border-radius: 0;
    }
}
