@font-face {
    font-family: 'Cormorant Garamond';
    src: url('./font/CormorantGaramond/CormorantGaramond-Italic.woff2') format('woff2'),
        url('./font/CormorantGaramond/CormorantGaramond-Italic.woff') format('woff');
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Google Sans Flex 9pt';
    src: url('./font/GoogleSansFlex/GoogleSansFlex9pt-Black.woff2') format('woff2'),
        url('./font/GoogleSansFlex/GoogleSansFlex9pt-Black.woff') format('woff');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Google Sans Flex 9pt';
    src: url('./font/GoogleSansFlex/GoogleSansFlex9pt-Bold.woff2') format('woff2'),
        url('./font/GoogleSansFlex/GoogleSansFlex9pt-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Google Sans Flex 9pt';
    src: url('./font/GoogleSansFlex/GoogleSansFlex9pt-ExtraBold.woff2') format('woff2'),
        url('./font/GoogleSansFlex/GoogleSansFlex9pt-ExtraBold.woff') format('woff');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Google Sans Flex 9pt';
    src: url('./font/GoogleSansFlex/GoogleSansFlex9pt-Light.woff2') format('woff2'),
        url('./font/GoogleSansFlex/GoogleSansFlex9pt-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Google Sans Flex 9pt';
    src: url('./font/GoogleSansFlex/GoogleSansFlex9pt-Medium.woff2') format('woff2'),
        url('./font/GoogleSansFlex/GoogleSansFlex9pt-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Google Sans Flex 9pt';
    src: url('./font/GoogleSansFlex/GoogleSansFlex9pt-Regular.woff2') format('woff2'),
        url('./font/GoogleSansFlex/GoogleSansFlex9pt-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Google Sans Flex 9pt';
    src: url('./font/GoogleSansFlex/GoogleSansFlex9pt-SemiBold.woff2') format('woff2'),
        url('./font/GoogleSansFlex/GoogleSansFlex9pt-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Google Sans Flex 9pt';
    src: url('./font/GoogleSansFlex/GoogleSansFlex9pt-Thin.woff2') format('woff2'),
        url('./font/GoogleSansFlex/GoogleSansFlex9pt-Thin.woff') format('woff');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('./font/Poppins/Poppins-Bold.woff2') format('woff2'),
        url('./font/Poppins/Poppins-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('./font/Poppins/Poppins-Medium.woff2') format('woff2'),
        url('./font/Poppins/Poppins-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('./font/Poppins/Poppins-Regular.woff2') format('woff2'),
        url('./font/Poppins/Poppins-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('./font/Poppins/Poppins-SemiBold.woff2') format('woff2'),
        url('./font/Poppins/Poppins-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

:root {
    --black: #111111;
    --cream: #DEB96D;
    --font-heading: 'Google Sans Flex 9pt', sans-serif;
    --font-sub-heading: 'Cormorant Garamond', sans-serif;
    --font-body: 'Poppins', sans-serif;
}

body {
    font-family: var(--font-body);
    overflow-x: hidden;
}

.section-padding {
    padding: 60px 0;
}

.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    padding: 20px 0;
    background: transparent;
    transition: all .3s ease;
}

.main-header.sticky {
    background: #000000;
    padding: 10px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, .20);
}

.header-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

nav ul {
    display: flex;
    align-items: center;
    gap: 31px;
    margin: 0;
    padding: 0;
    list-style: none;
}

nav ul li .nav-link {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 300;
    transition: .3s;
    padding: 20px 0;
}

nav ul li a:hover, .nav-link:focus, .nav-link:hover {
    color: var(--cream);
}

.book-btn {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #fff;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, .5);
    border-radius: 50px;
    padding: 2px 2px 2px 25px;
    font-size: 14px;
    font-weight: 600;
}

.book-btn span {
    width: 35px;
    height: 35px;
    background: var(--cream);
    color: #111;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slider {
    position: relative;
}

.hero-item {
    position: relative;
    height: 100vh;
}

.hero-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .55);
}

.hero-content {
    position: absolute;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2;
    width: 100%;
    max-width: 900px;
	padding: 10px;
}

.hero-content h3 {
    color: #fff;
    font-size: 52px;
    line-height: 1.2;
    font-family: var(--font-heading);
    font-weight: 600;
    MARGIN-BOTTOM: 0;
}

.hero-content h3 span {
    color: var(--cream);
    font-family: var(--font-sub-heading);
    font-style: italic;
    FONT-WEIGHT: 500;
    font-size: 70px;
    line-height: 1;
}

.hero-content p {
    color: #fff;
    font-size: 18px;
    margin: 17px 0 23px;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    background: var(--cream);
    color: #111;
    text-decoration: none;
    padding: 2px 2px 2px 22px;
    border-radius: 60px;
    font-weight: 600;
    border: 0;
	margin-bottom: 10px;
}

.hero-btn span {
    width: 35px;
    height: 35px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo img {
    width: 207px;
}


.hero-slider .slick-dots {
    position: absolute;
    bottom: 35px;
    left: 50%;
    transform: translateX(-50%);
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 10px;
    z-index: 10;
}

.hero-slider .slick-dots li {
    width: auto;
    height: auto;
    margin: 0;
}

.hero-slider .slick-dots li button {
    width: 12px;
    height: 12px;
    border: 1px solid rgba(255, 255, 255, .4);
    border-radius: 50%;
    padding: 0;
    transition: .3s;
}

.hero-slider .slick-dots li button:before {
    display: none;
}

.hero-slider .slick-dots li button:hover {
    border-color: var(--cream);
}

.hero-slider .slick-dots li.slick-active button {
    background: var(--cream);
    border-color: var(--cream);
    position: relative;
}

.hero-slider .slick-dots li.slick-active button::after {
    content: '';
    position: absolute;
    width: 22px;
    height: 22px;
    border: 1px solid var(--cream);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.hero-slider .slick-arrow {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .2);
    background: rgba(255, 255, 255, .08);
    backdrop-filter: blur(10px);
    z-index: 20;
}

.hero-slider .slick-prev {
    left: 40px;
}

.hero-slider .slick-next {
    right: 40px;
}

.slick-dotted.slick-slider {
    margin-bottom: 0px;
}

.fleet-section {
    overflow: hidden;
}

.fleet-card {
    position: relative;
    min-height: 407px;
    padding: 20px 26px 0;
    text-align: center;
    overflow: hidden;
}

.business-card {
    background: #F6F6F6;
}

.premium-card {
    background: #F2EEE5;
}

.luxury-card {
    background: #1B1F24;
}

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

.fleet-content h3 {
    font-family: var(--font-heading);
    font-size: 31px;
    font-weight: 700;
    color: #111;
    margin-bottom: 5px;
}

.luxury-card h3 {
    color: #fff;
}

.fleet-content p {
    font-size: 16px;
    color: #777;
    margin-bottom: 6px;
}

.luxury-card p {
    color: #ddd;
}

.fleet-content h5 {
    font-size: 17px;
    font-weight: 600;
    color: #111;
}

.luxury-card h5 {
    color: #fff;
}

.fleet-img {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 410px;
    border-radius: 0;
}

.fleet-img img {
    width: 100%;
    max-width: 520px;
    transition: .5s;
}

.fleet-card:hover .fleet-img img {
    transform: scale(1.05);
}

@media(max-width:991px) {

    .fleet-card {
        min-height: 350px;
    }

    .fleet-content h3 {
        font-size: 36px;
    }
}

.about-section {
    padding: 70px 0 0 0;
    background: #ffffff;
}

.sub-title {
    display: block;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--cream);
    margin-bottom: 15px;
    font-family: 'Cormorant Garamond';
    font-style: normal;
    font-size: 18px;
    text-transform: uppercase;
}

.about-content h1 {
    font-size: 36px;
    line-height: 1.15;
    font-family: var(--font-heading);
    font-weight: 700;
    color: #111;
    margin-bottom: 25px;
}

.heading span {
    color: var(--cream);
    font-style: italic;
    font-weight: 400;
    font-size: 42px;
}

.about-content p {
    font-size: 18px;
    color: #777;
    margin-bottom: 18px;
}

.about-image img,
.about-car img {
    width: 100%;
    display: block;
}

.about-bottom {
    margin-top: 40px;
}

.about-bottom-text {
    max-width: 850px;
    color: #777;
    line-height: 1.9;
    margin-bottom: 22px;
}

.counter-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 31px;
}

.counter-box {
    display: flex;
    align-items: center;
    gap: 18px;
}

.counter-box i {
    font-size: 40px;
    color: #111;
}

.counter-box h3 {
    margin: 0;
    font-size: 33px;
    line-height: 1;
    color: var(--cream);
    font-weight: 600;
    font-family: 'Poppins';
}

.counter-box p {
    margin: 5px 0 0;
    color: #444;
}

button.menu-toggle {
    display: none;
}
@media(max-width:991px) {

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

    .about-content h2 {
        font-size: 42px;
    }

    .counter-wrapper {
        flex-direction: column;
    }

    .counter-box h3 {
        font-size: 36px;
    }
	nav.main-nav {
    position: absolute;
    background: #000;
    width: 100%;
    left: 0;
    top: 77px;
}

nav.main-nav ul#menu-primary-menu {
    display: block;
}

nav.main-nav ul#menu-primary-menu a {
    padding: 10px 4px;
}

nav.main-nav ul#menu-primary-menu {
    padding: 16px;
}

button.menu-toggle {
    display: block;
    border: none;
    background: #d3b067a8;
    border-radius: 3px;
    padding: 2px;
}

button.menu-toggle span {
    width: 16px;
    height: 3px;
    margin: 4px;
    display: block;
    background: #000;
}
}

section.about-bottom-section {
    position: relative;
    margin-bottom: 70px;
}

.about-car img {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 380px;
    height: 265px;
    object-fit: cover;
}

.counter-box h3 span {
    font-family: 'Poppins';
    font-style: normal;
    FONT-WEIGHT: 600;
}

.counter-box svg {
    font-size: 52px;
    color: #deb96d;
}

@media(max-width:991px) {

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

    .about-content h2 {
        font-size: 42px;
    }

    .counter-wrapper {
        flex-direction: column;
    }

    .counter-box h3 {
        font-size: 36px;
    }
}

.services-section {
    padding: 60px 0 70px 0;
    background: #f8f8f8;
}

.services-slider {
    margin: 0 -15px;
}

.service-item {
    padding: 0 15px;
}

.service-card {
    position: relative;
    background: #fff;
    height: 397px;
    overflow: hidden;
}

.service-bg {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: .5s;
}

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

.service-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .65);
    opacity: 0;
    transition: .5s;
}

.service-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 75px 60px;
}

.service-content h3 {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.4;
    color: #111;
    margin-bottom: 20px;
    transition: .4s;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.service-content p {
    color: #777;
    line-height: 1.9;
    margin-bottom: 25px;
    transition: .4s;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.line {
    display: block;
    width: 1px;
    height: 30px;
    background: #999;
    margin: 0 auto 15px;
    transition: .4s;
}

.service-content a {
    text-decoration: none;
    color: var(--cream);
    font-size: 14px;
    font-weight: 600;
}

/* Hover Effect */

.service-card:hover .service-bg {
    opacity: 1;
}

.service-card:hover .service-overlay {
    opacity: 1;
}

.service-card:hover h3 {
    color: var(--cream);
}

.service-card:hover p {
    color: #fff;
}

.service-card:hover .line {
    background: #fff;
}

.service-prev,
.service-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 1px solid #cfcfcf;
    background: #fff;
    z-index: 10;
}

.service-prev {
    left: -65px;
}

.service-next {
    right: -65px;
}

.service-prev i {
    color: var(--cream);
}

.service-next i {
    color: #999;
}

.services-section-second {
    background-image: url(../images/bg.png);
    position: relative;
    padding: 70px 0;
    color: #fff;
}

.service-image {
    height: 100%;
}

.service-image img {
    width: 100%;
    border-radius: 10px;
    object-fit: cover;
}

.services-section .section-title p {
    color: #b8b8b8;
    margin-top: 20px;
    max-width: 650px;
}

.service-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 30px 25px;
    min-height: 180px;
    transition: .4s;
}

.service-box svg {
    font-size: 32px;
    color: var(--cream);
    margin-bottom: 20px;
}

.service-box h5 {
    color: #fff;
    font-size: 17px;
    line-height: 1.5;
    margin: 0;
}

.service-image-point {
    position: relative;
    height: -webkit-fill-available;
}

.service-image-point img {
    position: absolute;
    top: 0;
    height: 716px;
    width: 95%;
    z-index: 9;
    border-radius: 0;
}

.service-box:hover {
    transform: translateY(-8px);
    border-color: #d4af37;
}

.heading span, .fleet-content h3 span {
    color: var(--cream);
    font-family: 'Cormorant Garamond';
}

.testimonial-section {
    background: #ffffff;
    padding: 90px 0;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 21px;
}

.testimonial-nav {
    display: flex;
    gap: 12px;
}

.testimonial-nav button {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    border: 1px solid #ddd;
    background: #fff;
    transition: .4s;
}

.testimonial-nav button:hover {
    background: var(--cream);
    color: #fff;
    border-color: var(--cream);
}

.testimonial-item {
    display: flex !important;
    gap: 30px;
    padding: 20px;
}

.client-image img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
}

.quote-icon {
    color: var(--cream);
    font-size: 40px;
    margin-bottom: 10px;
}

.testimonial-content p {
    color: #777;
    font-size: 18px;
    margin-bottom: 20px;
}

.testimonial-content h5 {
    color: var(--cream);
    margin-bottom: 5px;
}

.testimonial-content span {
    color: #111;
    font-family: 'Poppins';
    font-style: normal;
}

.booking-section {
    background: #cba24a;
    position: relative;
    overflow: hidden;
    height: 550px;
}

.booking-content p {
    max-width: 520px;
    margin-top: 14px;
    color: #333;
    margin-bottom: 43px;
}

.booking-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.booking-form {
    background: #fff;
    padding: 40px;
    position: relative;
    z-index: 2;
    box-shadow: 0 15px 50px rgba(0, 0, 0, .08);
    margin-bottom: 62px;
}

.ride-tabs {
    display: flex;
    gap: 15px;
    margin-bottom: 28px;
    flex-wrap: wrap;
    align-items: center;
}

.ride-btn {
    border: 1px solid #ddd;
    background: #fff;
    padding: 9px 28px;
    border-radius: 50px;
    transition: .4s;
}

.ride-btn.active {
    background: #0f172a;
    color: #fff;
    border-color: #0f172a;
}

.ride-btn i {
    margin-right: 8px;
}
.ride-tabs p {
    display: flex;
    ex; */
;
    MARGIN: 0;
    GAP: 9PX;
}

.ride-tabs p .ride-btn {
    display: flex;
    place-items: center;
    gap: 15px;
}

.ride-tabs p .ride-btn br {
    display: none;
}

.booking-form input,
.booking-form select {
    width: 100%;
    height: 41px;
    border: 1px solid #ddd;
    padding: 0 20px;
    outline: none;
}

.reserve-btn {
    width: 100%;
    height: 60px;
    border: none;
    background: #cba24a;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: .4s;
}

.reserve-btn span {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.reserve-btn:hover {
    transform: translateY(-3px);
}

.trip-type {
    display: flex;
    gap: 40px;
    /* margin-bottom: 30px; */
    flex-wrap: wrap;
}

.radio-item {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 16px;
    color: #666;
    position: relative;
}

.radio-item input {
    /* display: none; */
}

.radio-item span {
    /* width: 18px; */
    /* height: 18px; */
    /* border: 2px solid #d8d8d8; */
    border-radius: 50%;
    display: block;
    position: relative;
}

.radio-item input:checked+span {
    border-color: #cba24a;
}

.radio-item input:checked+span::after {
    content: "";
    width: 8px;
    height: 8px;
    background: #cba24a;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    DISPLAY: NONE;
}

.booking-image img {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 552px;
    object-fit: cover;
}

.booking-section span.sub-title,
.booking-section .heading span {
    color: #fff;
}

button.hero-btn {
    padding: 4px 3px 4px 14px;
    gap: 8px;
}

.footer-section {
    background: #050505;
    position: relative;
    color: #fff;
    overflow: hidden;
}

.footer-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url('../images/footer-pattern.png');
    opacity: .08;
    pointer-events: none;
}

.footer-top {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border: 1px solid rgba(255, 255, 255, .1);
    margin-bottom: 80px;
}

.contact-box {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 30px;
    border-right: 1px solid rgba(255, 255, 255, .08);
}

.contact-box:last-child {
    border-right: none;
}

.contact-box .icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #d4af37;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.contact-box span {
    color: #ddd;
    display: block;
    margin-bottom: 5px;
}

.contact-box h6 {
    margin: 0;
    color: #fff;
    font-size: 18px;
}

.footer-logo img {
    max-width: 220px;
    margin-bottom: 25px;
}

.footer-main p {
    color: #c5c5c5;
    line-height: 1.9;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 25px;
}

.social-links a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px solid rgba(212, 175, 55, .6);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: .4s;
}

.social-links a:hover {
    background: #d4af37;
    color: #000;
}

.footer-main h4 {
    color: #d4af37;
    margin-bottom: 25px;
}

.footer-main ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-main ul li {
    margin-bottom: 12px;
}

.footer-main ul li a {
    color: #fff;
    text-decoration: none;
    transition: .3s;
}

.footer-main ul li a:hover {
    color: #d4af37;
    padding-left: 5px;
}

.subscribe-form {
    position: relative;
    margin-top: 25px;
}

.subscribe-form input {
    width: 100%;
    height: 65px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 50px;
    padding: 0 80px 0 25px;
    color: #fff;
}

.subscribe-form button {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 55px;
    height: 55px;
    border: none;
    border-radius: 50%;
    background: #d4af37;
    color: #000;
}

.footer-bottom {
    margin-top: 70px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, .1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    margin: 0;
    color: #c5c5c5;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
}

.footer-section {
    background-image: url('../images/bg.png');
    position: relative;
    color: #fff;
    overflow: hidden;
    background-size: cover;
    padding-top: 70px;
}

.footer-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #000;
    pointer-events: none;
}

.footer-top {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border: 1px solid rgba(255, 255, 255, .1);
    margin-bottom: 58px;
}

.contact-box {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 30px;
    background: #000;
    border: 0;
}

.contact-box:last-child {
    border-right: none;
}

.contact-box .icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--cream);
    color: #000;
    display: flex;
    align-items: center;
    padding: 18px;
    justify-content: center;
    font-size: 22px;
}

.contact-box span {
    color: #ddd;
    display: block;
    margin-bottom: 5px;
    font-family: 'Poppins';
    font-style: normal;
}

.contact-box h6,
.contact-box h6 a {
    margin: 0;
    color: #fff;
    font-size: 15px;
    text-decoration: none;
    word-break: break-all;
}

.footer-logo img {
    max-width: 220px;
    margin-bottom: 25px;
}

.footer-main p {
    color: #ffffff;
    line-height: 1.9;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 25px;
}

.social-links a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px solid #cba24a;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: .4s;
}

.social-links a:hover {
    background: #d4af37;
    color: #000;
}

.footer-main h4 {
    color: var(--cream);
    margin-bottom: 25px;
}

.footer-main ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-main ul li {
    margin-bottom: 12px;
}

.footer-main ul li a {
    color: #fff;
    text-decoration: none;
    transition: .3s;
}

.footer-main ul li a:hover {
    color: var(--cream);
    padding-left: 5px;
}

.subscribe-form {
    position: relative;
    margin-top: 25px;
}

.subscribe-form input {
    width: 100%;
    height: 53px;
    background: #ffffff00;
    border: 1px solid rgb(255 255 255 / 56%);
    border-radius: 50px;
    padding: 0 80px 0 25px;
    color: #ffffff;
}

.subscribe-form button {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 43px;
    height: 43px;
    border: none;
    border-radius: 50%;
    background: var(--cream);
    color: #000;
}

.footer-bottom {
    margin-top: 60px;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, .1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    margin: 0;
    color: #ffffff;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
}

.inner-banner {
    position: relative;
    padding: 160px 0 66px;
    overflow: hidden;
    /* Top, Bottom, Left, Right ÃƒÂ Ã‚Â¤Ã‚Â¸ÃƒÂ Ã‚Â¤Ã‚Â¬ÃƒÂ Ã‚Â¤Ã¢â‚¬Â¢ÃƒÂ Ã‚Â¥Ã¢â‚¬Â¹ 0 ÃƒÂ Ã‚Â¤Ã¢â‚¬Â¢ÃƒÂ Ã‚Â¤Ã‚Â° ÃƒÂ Ã‚Â¤Ã‚Â¦ÃƒÂ Ã‚Â¥Ã¢â‚¬Â¡ÃƒÂ Ã‚Â¤Ã‚Â¤ÃƒÂ Ã‚Â¤Ã‚Â¾ ÃƒÂ Ã‚Â¤Ã‚Â¹ÃƒÂ Ã‚Â¥Ã‹â€  */
}

.inner-banner-content {
    text-align: center;
    color: #fff;
    z-index: 9;
    position: relative;
}

.inner-banner h3 {
    color: #fff;
    margin: 20px 0;
	font-size: 40px;
}

.inner-banner h3 span {
    color: var(--theme-color);
}

.breadcrumb-list {
    display: flex;
    justify-content: center;
    gap: 15px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.breadcrumb-list li {
    color: #fff;
}

.breadcrumb-list a {
    color: var(--cream);
    text-decoration: none;
    position: relative;
    padding-right: 27px;
}

.inner-banner img {
    position: absolute;
    inset: 0;
    margin: auto;
    width: 100%;
	    object-fit: cover;
    height: 100%;
}

.inner-banner:after {
    background: #0a1215db;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: "";
    position: absolute;
}

.about-images {
    position: relative;
    padding-right: 80px;
}

.main-image {
    width: 100%;
    border-radius: 10px;
}

.experience-box {
    position: absolute;
    right: 9px;
    bottom: 50px;
    background: var(--cream);
    color: #fff;
    padding: 26px;
    text-align: center;
    min-width: 180px;
    border-radius: 8px;
}

.experience-box h3 {
    font-size: 50px;
    margin-bottom: 5px;
}

.about-content p {
    margin-bottom: 20px;
}

.experience-box span {
    color: #000;
    font-family: 'Poppins';
    font-style: inherit;
    FONT-WEIGHT: 600;
}

.service-locations {
    padding: 60px 0;
    background: #f8f8f8;
}

.location-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.location-box {
    background: #fff;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    transition: .4s;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.location-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, .08);
}

.count {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 58px;
    font-weight: 700;
    color: #f3ede2;
    line-height: 1;
    font-family: 'Cormorant Garamond';
}

.location-box .icon {
    width: 90px;
    height: 90px;
    margin: auto;
    border-radius: 50%;
    background: #cfa24b;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.service-locations .icon svg {
    color: #fff;
    font-size: 34px;
}

.service-locations .location-box h3 {
    font-size: 20px;
    line-height: 1.3;
    margin-bottom: 15px;
    color: #000000;
}

.location-box p {
    font-size: 17px;
    line-height: 1.8;
    color: #666;
}

.location-box:not(:nth-child(4n))::after {
    content: "";
    position: absolute;
    top: 70px;
    right: -30px;
    width: 30px;
    height: 2px;
    background: #cfa24b;
}

@media(max-width:991px) {

    .location-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .location-box::after {
        display: none;
    }
}

@media(max-width:767px) {

    .location-grid {
        grid-template-columns: 1fr;
    }
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

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

@media (max-width: 575px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}


.services-grid .service-item {
    padding: 0;
}

.fleet-section {
    background: #f8f8f8;
}

.fleet-card {
    background: #fff;
    overflow: hidden;
    transition: .4s;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .05);
    height: 460px;
}

.fleet-image {
    background: #ffffff;
    height: 108px;
}

.fleet-image img {
    width: 100%;
    transition: .4s;
}

.fleet-card:hover .fleet-image img {
    transform: scale(1.05);
}

.fleet-content {
    padding: 30px;
    text-align: left;
}

.fleet-features {
    list-style: none;
    padding: 0;
    margin: 0 0 25px;
    text-align: -webkit-auto;
}

.fleet-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.fleet-features svg {
    color: var(--cream);
}

.fleet-card:hover {
    transform: translateY(-10px);
}

.fleet-stats {
    background: #000000;
    padding: 60px 0;
}

.stat-box {
    text-align: center;
    display: flex;
    align-items: center;
    gap: 10px;
}

.stat-box h3 {
    color: #bb9544;
    font-size: 40px;
    margin-bottom: 10px;
    margin: 8px 0 0 0;
}

.stat-box span {
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    font-size: 19px;
    FONT-WEIGHT: 500;
    line-height: 1;
    margin-top: 4px;
}

.blog-page {
    background: #f8f8f8;
}

.blog-card {
    background: #fff;
    overflow: hidden;
    height: 100%;
    transition: .4s;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .05);
}

.blog-card:hover {
    transform: translateY(-10px);
}

.blog-image {
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    transition: .5s;
    height: 350px;
    object-fit: cover;
}

.blog-card:hover .blog-image img {
    transform: scale(1.08);
}

.blog-content {
    padding: 30px;
}

.blog-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    font-size: 14px;
    color: #777;
}

.blog-meta i {
    color: var(--theme-color);
    margin-right: 5px;
}

.blog-content h3 {
    font-size: 21px;
    line-height: 1.4;
    margin-bottom: 15px;
}

.blog-content h3 a {
    color: #222;
    text-decoration: none;
}

.blog-content p {
    margin-bottom: 20px;
}

.read-more {
    color: var(--theme-color);
    font-weight: 600;
    text-decoration: none;
}

.read-more i {
    margin-left: 8px;
}

.contact-card {
    background: #fff;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 4px 13px rgb(0 0 0 / 14%);
    height: 100%;
    transition: .4s;
}

.contact-card:hover {
    transform: translateY(-10px);
}

.contact-card .icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    border-radius: 50%;
    background: var(--theme-color);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--cream);
    font-size: 28px;
}

.contact-card a {
    color: var(--cream);
    font-weight: 600;
    text-decoration: auto;
    color: var(--cream);
}

.contact-form-wrapper {
    padding-left: 40px;
}

.contact-form-wrapper input,
.contact-form-wrapper textarea {
    width: 100%;
    border: 1px solid #ffffff;
    padding: 7px 20px;
    background: #f5f5f5;
    outline: none;
    border-radius: 5px;
}

.contact-form-wrapper textarea {
    resize: none;
}

.contact-image img {
    width: 100%;
    border-radius: 10px;
}

section.fleet-section-home {
    overflow: hidden;
}

section.fleet-section-home .fleet-card {
    height: auto;
    transition: none;
}

section.fleet-section-home .fleet-card:hover {
    transform: none;
}

section.fleet-section-home .fleet-content {
    justify-items: center;
}

section.about-bottom-section .col-lg-3 {
    position: relative;
}

section.about-bottom-section .col-lg-9 {
    padding-left: 50px;
}

.heading {
    FONT-WEIGHT: 600;
}

ul.custom-dropdown {
    display: block;
    position: absolute;
    width: 315px;
    background: #ffffff;
    padding: 0px;
    top: 85px;
    display: none;
}

ul.custom-dropdown li {
    background: var(--cream);
    color: #000;
    padding: 3px 9px;
    font-size: 17px;
    border-top: 2px solid #ffffff4d;
    border-radius: 3px;
}

ul.custom-dropdown li a {
    color: #000;
}

ul.custom-dropdown li:hover {
    background: #0000;
}

li.dropdown ul.custom-dropdown {
    display: none;
}

li.dropdown:hover ul.custom-dropdown {
    display: block;
}

.how-it-works {
    position: relative;
    background: #f8f8f8;
    overflow: hidden;
}

.section-heading span {
    color: #D4A85A;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.section-heading h2 {
    font-size: 48px;
    font-weight: 700;
    color: #0D1B2A;
    margin: 10px 0 15px;
}

.section-heading p {
    max-width: 650px;
    margin: auto;
    color: #666;
    line-height: 1.8;
}

.timeline-wrapper {
    position: relative;
    margin-top: 70px;
}

.timeline-line {
    position: absolute;
    top: 55px;
    left: 10%;
    width: 80%;
    height: 2px;
    background: #D4A85A;
    z-index: 1;
}

.process-box {
    position: relative;
    background: #fff;
    padding: 40px 25px;
    border-radius: 20px;
    text-align: center;
    transition: .4s;
    z-index: 2;
    height: 100%;
}

.process-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.process-number {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 50px;
    font-weight: 700;
    color: rgba(212, 168, 90, .12);
    line-height: 1;
}

.process-icon {
    width: 90px;
    height: 90px;
    background: #D4A85A;
    border-radius: 50%;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.process-icon svg {
    color: #fff;
    font-size: 34px;
}

.process-box h4 {
    font-size: 24px;
    font-weight: 700;
    color: #0D1B2A;
    margin-bottom: 15px;
}

.process-box p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 0;
}

@media(max-width:991px) {

    .timeline-line {
        display: none;
    }

    .section-heading h2 {
        font-size: 36px;
    }

    .process-box {
        margin-bottom: 20px;
    }
}

.fleet-section {
    background: #fff;
}

.fleet-card {
    background: #fff;
    /* border-radius:20px; */
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
    transition: .4s;
}

.fleet-card:hover {
    transform: translateY(-10px);
}

.fleet-card img {
    width: 100%;
    /* height:260px; */
    object-fit: cover;
    border-radius: 0;
}

.fleet-content {
    padding: 25px;
    text-align: center;
}

.fleet-content h4 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 10px;
}

.areas-section {
    background: #f8f8f8;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 30px;
}

.area-item {
    background: #fff;
    padding: 18px 20px;
    border-radius: 12px;
    font-weight: 600;
}

.area-item svg {
    color: #D4A85A;
    margin-right: 10px;
}

.custom-faq .accordion-item {
    border: none;
    margin-bottom: 20px;
    border-radius: 15px !important;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, .08);
}

.custom-faq .accordion-button {
    padding: 12px 25px;
    font-weight: 600;
    font-size: 18px;
}

.custom-faq .accordion-button:not(.collapsed) {
    background: #D4A85A;
    color: #fff;
    box-shadow: none;
}

.custom-faq .accordion-button:focus {
    box-shadow: none;
}

.custom-faq .accordion-body {
    padding: 20px 25px;
    color: #666;
    line-height: 1.8;
}

.booking-form {
    max-width: 100%;
}

.booking-form .form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
}

.booking-form .form-group {
    flex: 1;
}

.booking-form label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: #111;
    margin-bottom: 8px;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
    width: 100%;
    height: 52px;
    padding: 0 16px;
    border: 1px solid #d9d9d9;
    background: #fff;
    font-size: 14px;
    color: #333;
    outline: none;
    border-radius: 0;
    transition: all .3s ease;
}

.booking-form textarea {
    height: 160px;
    padding: 15px 16px;
    resize: vertical;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
    border-color: #0f2d45;
}

.booking-form input::placeholder,
.booking-form textarea::placeholder {
    color: #9a9a9a;
}

.booking-form .full-width {
    width: 100%;
    margin-bottom: 20px;
}

.booking-form .submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 180px;
    height: 54px;
    padding: 0 30px;
    border: none;
    background: #0f2d45;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: .3s;
}

.booking-form .submit-btn:hover {
    background: #000;
}

.booking-form select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 45px;
}

@media (max-width: 767px) {
    .booking-form .form-row {
        flex-direction: column;
        gap: 15px;
    }
}

.blog-details-section {
    padding: 60px 0;
}

.blog-wrapper {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 380px;
    gap: 50px;
}

.blog-image {
    border-radius: 24px;
    overflow: hidden;
    margin-bottom: 24px;
}

.blog-image img {
    width: 100%;
    display: block;
}

.blog-meta {
    display: flex;
    gap: 11px;
    margin-bottom: 11px;
    font-size: 14px;
    FONT-WEIGHT: 600;
    color: var(--cream);
}

.blog-content h1 {
    margin-bottom: 25px;
}

.blog-content p {
    margin-bottom: 25px;
}

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

.blog-content blockquote {
    padding: 20px 31px;
    border-left: 4px solid var(--cream);
    background: #f7f7f7;
    border-radius: 20px;
    margin: 16px 0;
}

.blog-image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 20px 0;
}

.blog-image-grid img {
    width: 100%;
    border-radius: 20px;
}

.blog-sidebar {
    position: sticky;
    top: 120px;
    height: max-content;
}

.sidebar-widget {
    margin-bottom: 30px;
    padding: 22px 22px;
    border-left: 4px solid var(--cream);
    background: #F7F7F5;
    border-radius: 14px;
}

.sidebar-widget h4 {
    margin-bottom: 16px;
    color: #000000;
}

.sidebar-widget input {
    width: 100%;
    height: 43px;
    padding: 0 20px;
    border: 1px solid #ddd;
    border-radius: 12px;
}

.sidebar-widget ul {
    list-style: none;
}

.sidebar-widget ul li:not(:last-child) {
    margin-bottom: 15px;
}

.sidebar-widget ul li a {
    display: flex;
    justify-content: space-between;
    position: relative;
    color: #000;
    text-decoration: none;
}

.recent-post {
    display: flex;
    gap: 15px;
}

.recent-post:not(:last-child) {
    margin-bottom: 20px;
}

.post-thumb {
    width: 90px;
    flex-shrink: 0;
}

.post-thumb img {
    width: 100%;
    border-radius: 12px;
    aspect-ratio: 1/1;
    object-fit: cover;
}

.recent-post span {
    display: block;
    font-size: 13px;
    margin-bottom: 6px;
    font-family: 'Poppins';
}

.hero-content .icon svg {
    color: var(--cream);
}

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tags a {
    padding: 4px 18px;
    border-radius: 50px;
    background: #deb96d;
    text-decoration: none;
    FONT-WEIGHT: 400;
    color: #000;
}
section.fleet-section.last-fleet .fleet-card {
    height: auto;
}
@media(max-width:991px) {

    .blog-wrapper {
        grid-template-columns: 1fr;
    }

    .blog-sidebar {
        position: relative;
        top: 0;
    }
}

section.fleet-section.section-padding .fleet-card {
    height: auto;
}

section.fleet-section.section-padding .fleet-card .fleet-content {
    text-align: left;
}

section.fleet-section.section-padding .fleet-card .fleet-content h3 {
    font-size: 25px;
    margin: 12px 0;
}

section.blog-page.section-padding .blog-image {
    margin: 0;
}

section.blog-page.section-padding .blog-meta {
    margin: 0;
}

section.blog-page.section-padding span {
    font-family: var(--font-body);
}

section.blog-page.section-padding h3 {
    margin: 10px 0;
    font-size: 20px;
}

section.blog-page.section-padding p {
    margin: 0 0 8px 0;
}

a.read-more svg {
    color: var(--cream);
}
.blog-details-section .blog-content {
    padding: 0;
}

.blog-details-section .blog-content .blog-meta span {
    font-family: 'Poppins';
}

.blog-details-section .blog-content h1.heading {
    font-size: 32px;
    margin-bottom: 11px;
}

.blog-details-section .blog-content h3 {
    margin: 10px 0;
    /* color: #000; */
}

.sidebar-widget ul li:before {
    clip-path: polygon(0 0, 100% 50%, 0 100%, 38% 50%);
    position:absolute;
    top: 5px;
    left: -26px;
    content: "";
    background: var(--cream);
    width: 11px;
    height: 13px;
}

.sidebar-widget ul li {
    position: relative;
}

.sidebar-widget a {
    text-decoration: none;
    color: #000;
    font-size: 16px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}
.breadcrumb-list a:after {
    clip-path: polygon(0 0, 100% 50%, 0 100%, 38% 50%);
    position: absolute;
    top: 5px;
    right: 0;
    content: "";
    background: var(--cream);
    width: 11px;
    height: 13px;
}

.booking-form label {
    display: flex;
    GAP: 15PX;
    align-items: center;
    MARGIN: 0;
}
.about-content ul {
    padding: 0;
    margin: 0;
}

.about-content ul li {
    padding-left: 25px;
    list-style: none;
    width: 49%;
    display: inline-block;
    margin-bottom: 13px;
    position: relative;
    FONT-WEIGHT: 500;
}

.about-content ul li:before {
    position: absolute;
    top: 2px;
    left: -1px;
    width: 20px;
    height: 20px;
    content: "";
    background: #deb96d;
    clip-path: circle(50% at 50% 50%);
}

.about-content ul li:after {
    position: absolute;
    top: 7px;
    left: 4px;
    width: 10px;
    height: 10px;
    content: "";
    background: #ffffff;
    clip-path: polygon(40% 67%, 88% 15%, 100% 38%, 41% 100%, 0 59%, 13% 38%);
}
.services-detail-full .why-image {float: left;width: 600px;margin: 0 26px 20px 0;}

.services-detail-full h1 {
    font-size: 29px;
    margin-bottom: 16px;
}

.services-detail-full .why-image img {
    width: 100%;
    object-fit: cover;
    min-height: 500px;
}

.about-content.services-detail-full ul li {
    width: 100%;
	color: #777;
	font-weight: 400;
}
.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
    margin-bottom: 15px;
}
.about-content.services-detail-full ul {
    margin-bottom: 10px;
}
a {
	text-decoration: none;
}
button.hero-btn br {
    display: none !important;
}
.contact-form-wrapper .row>* {
    margin: 0 !important;
}
nav ul li .custom-dropdown li a {
    padding: 0;
}

nav ul li:hover .custom-dropdown {
    display: block;
}
form.wpcf7-form.init {
    /* margin-top: 40px; */
}

.services-detail-full h1, .services-detail-full h2, .services-detail-full h3, .services-detail-full h4, .services-detail-full h5 {
    FONT-WEIGHT: 600;
}

.services-detail-full h2 {
    font-size: 26px;
}

.services-detail-full h3 {
    font-size: 24px;
}
b, strong {
    font-weight: 600 !important;
}
.services-detail-full span {
    font-weight: revert !important;
}
.custom-ser .fleet-card {
    height: -webkit-fill-available;
}
.trip-type input[type="radio"]{
    appearance: none;
    -webkit-appearance: inner-spin-button;
    width: 0;
    height: 36px;
    border: 2px solid #cba24a;
    border-radius: 50%;
    background: #fff;
    cursor: pointer;
}

.trip-type input[type="radio"]:checked{
    background: #cba24a;
    box-shadow: inset 0 0 0 4px #fff;
}


span.wpcf7-spinner {
    display: none;
}

input.wpcf7-form-control.wpcf7-submit.has-spinner.hero-btn {
    background: #cba24a;
    color: #fff;
    border-color: #cba24a;
    border-radius: 31px;
}
@media only screen and (max-width: 1280px) {	
  
}
@media only screen and (max-width: 1299px) {
  .container, .container-lg, .container-md, .container-sm {
        max-width: 1140px;
    }
}
.main-header.sticky ul.custom-dropdown {
    top: 75px;
}
@media only screen and (max-width: 1140px) {
  .container, .container-lg, .container-md, .container-sm {
        max-width: 1024px;
    }
	.logo img {
    width: 142px;
    height: unset;
}
.services-detail-full .why-image {
    width: 400px;
}

.services-detail-full .why-image img {
    min-height: 400px;
}
nav ul {
    gap: 17px;
}

nav ul li .nav-link {
    margin-bottom: 0 !important;
}
.about-images {
    padding-right: 40px;
}
    .about-content h1 {
        font-size: 29px;
        line-height: 1;
    }

p, .about-bottom-text, ul li a {
    margin-bottom: 15px;
    line-height: 1.5;
    font-size: 15px !important;
}

.counter-box svg {
    font-size: 27px;
}

.counter-box h3 {
    font-size: 25px;
}

.counter-wrapper {
    gap: 11px;
}

.service-content {
    padding: 60px 20px;
}

.service-content p {
    -webkit-line-clamp: 2;
}

.service-card {
    height: auto;
}

.service-box {
    padding: 6px;
    min-height: 100px;
}

.service-box h5 {
    FONT-WEIGHT: 400;
    font-size: 15px;
}
.inner-banner h3 {
    font-size: x-large;
}
.service-image-point img {
    height: 600Px;
}
		.main-header.sticky ul.custom-dropdown {
    top: 60px;
}
	section.fleet-section-home .fleet-card .fleet-img {
    height: 350px;
}

section.fleet-section-home .fleet-card {
    min-height: 350px;
}
	.service-prev {
    left: 0;
}
    .counter-wrapper {
        gap: 11px;
        justify-content: space-between;
    }
	.blog-content h3 a {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
		-webkit-box-orient: vertical;}
.service-next {
    right: 0;
}
	.fleet-content {
    padding: 0;
}
	.fleet-card {
    padding: 20px;
    min-height: -webkit-fill-available;
}
}
@media only screen and (max-width: 1024px) {
	  .container, .container-lg, .container-md, .container-sm {
        max-width: 991px;
    }
	.breadcrumb-list {
    display: none;
}

}
@media only screen and (max-width: 991px) {

    .main-nav {
        display: none;
        width: 100%;
    }

    .main-nav.active {
        display: block;
    }

    .menu-item-has-children {
        position: relative;
    }

    .submenu-toggle {
        position: absolute;
        right: 15px;
        top: 15px;
        color: #d4af37;
        cursor: pointer;
        z-index: 2;
        font-size: 16px;
    }

    .custom-dropdown {
        display: none;
    }

    .menu-item-has-children.open > .custom-dropdown {
        display: block;
    }
	nav ul li:hover .custom-dropdown {
    width: 100%;
    position: relative;
    top: 0;
}
.fleet-section-home .fleet-card img {
    height: 360px;
}

.about-section {
    padding: 40px 11px;
}


.about-car img {
    display: none;
}
	.about-content.services-detail-full ul li {
    width: 100%;
}
.services-section {
    padding: 60px 10px;
}

.services-slider {
    padding-top: 42px;
}

.service-image-point img {position: relative;}

section.about-bottom-section {
    padding-left: 0;
}

section.about-bottom-section .col-lg-9 {
    padding: 0 20px;
}

section.about-bottom-section .col-lg-3 {
    display: none;
}

.service-image-point .service-image {
    text-align: -webkit-center;
    margin-bottom: 31px;
}

.testimonial-section {
    padding: 60px 10px;
}

.testimonial-item {
    BACKGROUND: #EEE;
    BORDER: 5PX SOLID #FFF;
}
.blog-page .blog-image img {
    height: 233px;
}
.section-padding {
    PADDING: 60PX 10PX 50PX 10PX;
    HEIGHT: AUTO;
}

.booking-image img {
    DISPLAY: NONE;
}

.booking-content p {
    max-width: MAX-CONTENT;
}

.footer-section {
    PADDING: 60PX 10PX 10PX 10PX;
}

.contact-box .icon svg.svg-inline--fa.fa-location-dot {
    WIDTH: 50PX;
}
	.contact-form-wrapper {
    padding: 30px 0 0 0;
}
	.main-header.sticky nav.main-nav {TOP: 62px;}
		  .container, .container-lg, .container-md, .container-sm {
        max-width: 840px;
    }
	.footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    background: #000;
    background: #000;
}
}
@media only screen and (max-width: 840px) {
	  .container, .container-lg, .container-md, .container-sm {
        max-width: 800px;
    }
}
@media only screen and (max-width: 800px) {
	  .container, .container-lg, .container-md, .container-sm {
        max-width: 734px;
    }
}
@media only screen and (max-width: 734px) {
	  .container, .container-lg, .container-md, .container-sm {
        max-width: 640px;
    }
	.hero-content h3 {
    font-size: 32px;
}

.hero-content h3 span {
    font-size: 36px;
}

.fleet-img img {
    max-width: -webkit-fill-available;
}
	.services-detail-full .why-image {
    width: 100%;
}
	
	.footer-bottom {
    text-align: center;
    display: block;
}

.footer-bottom .footer-links {
    justify-self: center;
    margin-top: 17px;
}
    .fleet-content h3 {
        font-size: 27px;
    }
	
.services-section-second .px-5 {
    padding-right: 10px !important;
    padding-left: 10px !important;
}
}
@media only screen and (max-width: 640px) {
	  .container, .container-lg, .container-md, .container-sm {
        max-width: 600px;
    }
	    .service-content {
        padding: 20% 10%;
    }
	.about-content.services-detail-full ul li {
        width: 100%;
    }
	.footer-top {
    display: block;
}
}
@media only screen and (max-width: 600px) {
	  .container, .container-lg, .container-md, .container-sm {
        max-width: 568px;
    }
	
	.experience-box {
    POSITION: RELATIVE;
    TOP: 0;
    LEFT: 0;
    DISPLAY: flex;
    ALIGN-ITEMS: center;
    GAP: 22PX;
    PADDING: 7px 27px;
    MARGIN-TOP: 12px;
}
.about-content ul li {
    WIDTH: 100%;
}
.about-images {
    PADDING: 0;
}
}
@media only screen and (max-width: 568px) {
	  .container, .container-lg, .container-md, .container-sm {
        max-width: 480px;
    }
	.ride-tabs p .ride-btn {
    padding: 7px 11px;
    gap: 5px;
}

.radio-item span {
    margin: 0;
}

.booking-form label {
    gap: 8px;
}
.booking-form p {
    margin: 0;
}
.trip-type input[type="radio"] {padding: 8px;height: 14px;}

.booking-form {
    padding: 20px;
}
	.booking-form {
    margin: 0;
}

.booking-content p {
    margin: 0;
}

.booking-form p {
    display: block;
}

.trip-type p .radio-item {display: inline-grid;gap: 15px;}

.section-padding {
    padding: 20px 10px;
}

.section-header {
    display: block;
}

.services-section {
    padding: 20px 10px;
}

section.about-bottom-section {
    margin-bottom: 20px;
}

.about-bottom {
    margin: 0;
}

section.about-bottom-section .col-lg-9 {
    padding: 9px;
    margin: 0;
}

.about-section {
    padding: 20px 10px;
}
.blog-details-section .blog-content h1.heading {
    font-size: 23px;
    margin-bottom: 11px;
}
.row>* {
    margin-top: 10px;
}
}
@media only screen and (max-width: 480px) {
	  .container, .container-lg, .container-md, .container-sm {
        max-width: 414px;
    }
	header.main-header .book-btn {
    display: none;
}
	.service-image-point img
Specificity: (0,1,1)
 {
        height: auto;
    }
	.service-image-point .service-image {
    display: none;
}

}
@media only screen and (max-width: 414px) {
	  .container, .container-lg, .container-md, .container-sm {
        max-width: 384px;
    }
}
@media only screen and (max-width: 384px) {
		  .container, .container-lg, .container-md, .container-sm {
        max-width: 375px;
    }
}
@media only screen and (max-width: 375px) {
		  .container, .container-lg, .container-md, .container-sm {
        max-width: 360px;
    }
}
@media only screen and (max-width: 360px) {
		  .container, .container-lg, .container-md, .container-sm {
        max-width: 324px;
    }
}