@import url(../font/stylesheet.css);

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    font-family: "Manrope";
}

/* scroll css start */
::-webkit-scrollbar {
    width: 10px;
}

li {
    list-style: none;
    font-size: 16px;
    color: #5e6075;
}

/* Track */
::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px grey;
    border-radius: 10px;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #2ea3ef;
    border-radius: 10px;
}

/* scroll css end */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type="number"] {
    -moz-appearance: textfield;
}

html {
    overflow-x: hidden;
}

body {
    overflow-x: hidden;
}

@keyframes infiniteScale {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
        /* Scale to 150% of original size */
    }

    100% {
        transform: scale(1);
        /* Back to original size */
    }
}

/* html {
    overflow-x: hidden ;
  } */

a {
    text-decoration: none;
}

select {
    cursor: pointer;
}

.btn:focus {
    outline: none;
}

ul,
ol {
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 16px;
    color: #5e6075;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
    padding: 0;
    color: #5e6075;
}

input:focus {
    outline: none;
    box-shadow: none;
}

button:focus {
    outline: none;
    box-shadow: none;
}

.btn:focus {
    outline: none;
    box-shadow: none;
}

/* main-header */

.main-header {
    position: absolute;
    z-index: 99;
    left: 0;
    right: 0;
    top: 0;
}

.main-header .top-header {
    background-color: #ffffff;
}

.main-header .top-header .txt {
    text-align: center;
    font-family: 'SF Pro Display';
    color: #959191;
    font-size: 13px;
    padding: 10px 0;
}

.main-header .navbar-brand img {
    width: 150px;
}

.main-header .navbar-nav {
    gap: 0 40px;
}

.main-header .nav-item .nav-link {
    color: #fff;
    font-family: 'SF Pro Display';
}


/* .main-banner */

.main-banner {
    background-image: url(../images/banner-img.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    height: unset;
    padding: 160px 0 50px;
    position: relative;
    z-index: 1;
}

.main-banner::before {
    background: linear-gradient(to bottom, rgba(11, 11, 12, 0.01) 0%, rgba(11, 11, 12, 0.28) 100%);
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    content: "";
}

.main-banner .content {}

.main-banner .content h1 {
    font-family: 'Helvetica Neue';
    color: #fff;
    font-size: 50px;
    text-align: center;
}

.main-banner .content p {
    font-family: 'SF Pro Display';
    color: #fff;
    text-align: center;
    padding: 5px 0 11px;
}

.btn-ban {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    gap: 0 15px;
    padding-top: 17px;
}

.btn-learn {
    font-family: 'SF Pro Display';
    background-color: #ffff;
    color: #000;
    padding: 10px 70px;
    font-size: 14px;
    text-transform: uppercase;
    border-radius: 5px;
    font-weight: 500;
    letter-spacing: 1px;
    position: relative;
    transition: 0.6s;
    border: none;
    outline: none;
}

.btn-learn:hover {
    color: #000;
    opacity: .87;
}

.btn-learn::before,
.btn-book::before {
    content: "\f061";
    font-family: "Font Awesome 6 Pro";
    position: absolute;
    right: 32px;
    top: 50%;
    transform: translate(0%, -50%);
    opacity: 0;
    transition: 0.6s;
    color: #000;
}

.btn-learn:hover::before,
.btn-book:hover::before {
    transform: translate(10px, -50%);
    opacity: 1;
}

.btn-book {
    background-color: rgb(52, 82, 255);
    color: #fff;
}

.btn-book:hover {
    color: #fff;
    opacity: .87;
}

.btn-book::before {
    color: #fff;
}

.main-banner .banner-form {
    /* background: #ffffffa8 !important; */
    padding: 20px;
    border-radius: 10px !important;
    box-shadow: 1px 1px 11px #0000005c;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(3.7px);
    -webkit-backdrop-filter: blur(3.7px);
    border: 1px solid rgba(255, 255, 255, 0.24);
    background: rgba(255, 255, 255, 0.40);
}

.main-banner .banner-form .nav-tabs {
    padding: 0 0 10px;
    border: none;
}

.main-banner .banner-form .nav-item {
    width: 50%;
}

.main-banner .banner-form .nav-item .nav-link {
    width: 100%;
    font-size: 17px;
    font-weight: 500;
    font-family: 'SF Pro Display';
    text-transform: capitalize;
    color: #000;
}

.main-banner .banner-form .nav-item .nav-link.active {}

.banner-form-fields .form-box {
    background: #f6f6f6;
    width: 100%;
    position: relative;
    padding: 4px 36px;
    border-radius: 5px;
    font-family: 'SF Pro Display';
    font-size: 16px;
    font-weight: 500;
}

.banner-form-fields .form-box i {
    position: absolute;
    left: 11px;
    top: 50%;
    transform: translateY(-50%);
}

.banner-form-fields .form-box input,
.banner-form-fields .form-box select {
    WIDTH: 100%;
    outline: none;
    background: transparent;
    border: none;
    font-family: 'SF Pro Display';
}

.banner-form-fields .form-box select option {
    font-family: 'SF Pro Display';
}

.banner-form-fields input[type="time"]::-webkit-calendar-picker-indicator {
    opacity: 0;
    position: absolute;
    width: 100%;
    cursor: pointer;
}

.banner-slider .card {
    background-color: transparent;
    border: none;
    text-align: center;
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(3.7px);
    -webkit-backdrop-filter: blur(3.7px);
    border: 1px solid rgba(255, 255, 255, 0.24);
    background: rgba(255, 255, 255, 0.30);
    padding: 0 30px 15px;
}

.banner-slider .card img {
    width: 85%;
    margin: 0 auto;
}

.banner-slider .card h3 {
    font-family: 'Helvetica Neue';
    color: #fff;
    font-size: 34px;
    text-transform: capitalize;
    text-align: left;
}

.banner-slider .card p {
    font-family: 'SF Pro Display';
    color: #fff;
    text-align: center;
    padding: 0px 0 5px;
    text-align: left;
}

.stay-com-sec {
    background-image: url(../images/banner-2.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    height: 120vh;
    padding: 45px 0 60px;
    position: relative;
    z-index: 1;
    background-attachment: fixed;
}

.stay-com-sec::before {
    background: linear-gradient(to bottom, rgba(11, 11, 12, 0.01) 0%, rgba(11, 11, 12, 0.28) 100%);
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    content: "";
}

.stay-com-sec .main-content .title h2 {
    font-family: 'Helvetica Neue';
    color: #fff;
    font-size: 50px;
    text-align: center;
}

.stay-com-sec .main-content .title p {
    font-family: 'SF Pro Display';
    color: #fff;
    text-align: center;
    padding: 5px 0 11px;
}

.stay-com-sec .main-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    height: 100%;
}

.stay-com-sec.sec-img-2 {
    background-image: url(../images/banner-3.jpg);
}

.stay-com-sec.sec-img-3 {
    background-image: url(../images/banner-4.jpg);
}

.professional-sec {
    position: relative;
    z-index: 2;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    /* margin-bottom: 500px; */
}

.professional-sec .title h2 {
    font-family: 'Helvetica Neue';
    color: #fff;
    font-size: 50px;
}

.professional-sec::before {
    background: linear-gradient(to bottom, rgba(11, 11, 12, 0.01) 0%, rgba(11, 11, 12, 0.28) 100%);
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    content: "";
}

.professional-sec video {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    z-index: -2;
    object-fit: cover;
    object-position: center;
    height: 100%;
}

/* footer  */

.footer-gap {
    /* height: 500px; */
    width: 100%;
    margin: 0 0 500px;
    position: relative;
}

footer {
    /* position: absolute; */
    bottom: 0;
    right: 0;
    left: 0;
    z-index: -1;
    padding: 70px 0 0;
}

footer .social-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0 10px;
    padding: 0 0 30px;
}

footer .social-icons li a {
    color: #969696;
    border: 2px solid #d9d0d0;
    height: 45px;
    width: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    transition: 0.7s;
}

footer .txt li {
    font-family: 'SF Pro Display';
    color: #969696;
    text-align: center;
    font-size: 14px;
    padding: 0 0 15px;
    font-weight: 500;
}

footer .quick-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0 23px;
}

footer .quick-links li a {
    font-family: 'SF Pro Display';
    color: #969696;
    font-size: 14px;
    transition: 0.7s;
}

footer p {
    font-family: 'SF Pro Display';
    color: #969696;
    font-size: 13px;
    text-align: center;
    padding: 25px 0 15px;
}

footer ul li a:hover {
    color: #30a1ed;
    border-color: #30a1ed;
}

.inner-banner {
    background-image: url(../images/inner-banner.webp);
    background-repeat: no-repeat;
    background-size: cover;
    height: 65vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
    background-attachment: fixed;
    padding-top: 53px;
    background-position: center;
}

.inner-banner::before {
    background-color: #939393;
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    content: "";
    opacity: .65;
}

.inner-banner .title h1 {
    font-family: 'Helvetica Neue';
    color: #fff;
    font-size: 55px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* booking-form-sec */

.booking-form-sec {
    padding: 0px 0 50px;
}

.booking-form.head {
    box-shadow: 0 2px 10px 0 rgba(0, 0, 0, .05), 0 -1px 10px 0 rgba(0, 0, 0, .01);
    padding: 20px 0 20px;
}

.booking-form-sec .booking-form {
    /* box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.2), 0 -1px 10px 0 rgba(0, 0, 0, .01);
    border-radius: 13px; */
    /* padding: 0; */
}

.booking-form-sec .booking-form .stepss {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0 45px;
    padding: 0 0 27px;
}

.booking-form-sec .booking-form .stepss li {
    position: relative;
    font-family: 'SF Pro Display';
    font-weight: 500;
    font-size: 17px;
    color: #000;
    z-index: 1;
}

.booking-form-sec .booking-form .stepss li::after {
    content: "";
    position: absolute;
    background: #e3e5ea;
    height: 2px;
    left: 50%;
    top: 35px;
    right: -116px;
    z-index: -2;
}

.booking-form-sec .booking-form .stepss li::before {
    content: "";
    position: absolute;
    border: 2px solid #d0d6e3;
    height: 15px;
    width: 15px;
    top: 28px;
    border-radius: 50%;
    left: 50%;
    background: #fff;
    z-index: -1;
}

.booking-form-sec .booking-form .stepss li.active::before {
    background: #000;
    border-color: #000;
}

.booking-form-sec .booking-form .stepss li.active::after {
    background: #000;
}

.booking-form-sec .booking-form .stepss li:nth-last-child(1)::after,
.booking-form-sec .booking-form .stepss li.active:nth-last-child(1)::after {
    background: #fff;
}

.booking-form-sec .step {
    padding: 40px 0 0;
}

.booking-form-sec .step .location-detail {
    background-color: #f0f2f7;
    border-radius: 10px;
    padding: 11px 13px;
}

.booking-form-sec .step .location-detail h2 {
    color: #000;
    font-size: 17px;
    font-family: 'SF Pro Display';
    padding: 0 0px 9px;
}

.booking-form-sec .step .location-detail p {
    color: #64666b;
    font-family: 'SF Pro Display';
    font-size: 14px;
}

.booking-form-sec .step .location-detail p i {
    color: #000;
    padding: 0 6px;
}

.booking-form-sec .step .car-detail {
    padding-top: 50px;
}

.booking-form-sec .step .car-detail .txt {
    font-family: 'SF Pro Display';
    color: #000;
    font-size: 15px;
    padding: 0 0 7px;
}

.booking-form-sec .step .car-box {
    background-color: #fff;
    outline: 1px solid #e3e5ea;
    padding: 25px 10px;
    border-radius: 11px;
}

.booking-form-sec .step .car-box .car-info {
    display: flex;
    justify-content: space-between;
    align-items: start;
    position: relative;
}

.booking-form-sec .step .car-detail input[type="radio"]:checked+label {
    outline: 2px solid #000;
    background: #f0f2f7;
}

.booking-form-sec .step .car-box .car-img {
    width: 25%;
}

.booking-form-sec .step .car-box .car-type ul {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 0 10px;
    padding: 6px 0 5px;
}

.booking-form-sec .step .car-box .car-type ul li {
    font-family: 'SF Pro Display';
    color: #000;
}

.booking-form-sec .step .car-box .car-type h4 {
    font-family: 'Helvetica Neue';
    font-size: 18px;
    color: #000;
}

.booking-form-sec .step .car-box .car-type p {
    font-family: 'SF Pro Display';
    color: #000;
    font-size: 15px;
}

.booking-form-sec .step .car-box .price h3 {
    font-family: 'Helvetica Neue';
    color: #000;
    padding-right: 36px;
    font-size: 20px;
}

.booking-form-sec .step .car-box:focus {
    outline: 2px solid #000;
}

.booking-form-sec .step .car-detail .btn-arrow {
    position: absolute;
    right: 5px;
    top: 4px;
}

.booking-form-sec .step .car-detail .car-box .advance-info {
    border-top: 1px solid #e3e5ea;
    margin-top: 15px;
    padding-top: 20px;
}

.booking-form-sec .step .car-detail .car-box .advance-info h4 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 10px;
}

.booking-form-sec .step .car-detail .car-box .advance-info h4 span {
    font-family: 'SF Pro Display';
    color: #000;
    font-size: 16px;
}

.booking-form-sec .step .car-detail .car-box .advance-info ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 10px;
}

.booking-form-sec .step .car-detail .car-box .advance-info ul::after {
    content: "";
    position: absolute;
}

.booking-form-sec .step .car-detail .car-box .advance-info ul li {
    font-family: 'SF Pro Display';
    color: #000;
    font-size: 14px;
    font-weight: 400;
}

.booking-form-sec .step .car-detail .advance-info {
    display: none;
    /* Hidden by default */
}

.booking-form-sec .step .car-detail .btn-arrow.rotate {
    transform: rotate(180deg);
    /* Rotate arrow when active */
}

.booking-form-sec .step .benefit {
    background-color: #fff;
    outline: 1px solid #e3e5ea;
    padding: 25px 18px;
    border-radius: 11px 11px 0 0;
}

.booking-form-sec .step .benefit.note {
    border-radius: 0 0 11px 11px;
}

.booking-form-sec .step .benefit p {
    font-family: 'SF Pro Display';
    color: #64666b;
    font-size: 14px;
}

.booking-form-sec .step .benefit ul li {
    font-family: 'SF Pro Display';
    color: #64666b;
    position: relative;
    margin-top: 12px;
    font-size: 14px;
    padding-left: 24px;
    font-weight: 600;
}

.booking-form-sec .step .benefit ul li::after {
    content: "\f00c";
    position: absolute;
    font-family: "Font Awesome 6 Pro";
    left: 0;
    font-size: 8px;
    height: 15px;
    width: 15px;
    background: #64666b;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 3px;
    border-radius: 50%;
    color: #fff;
}

.booking-form-sec .step .pickup-info h3 {
    font-family: 'SF Pro Display';
    color: #000;
    font-size: 21px;
    text-transform: capitalize;
    padding: 26px 0 10px;
}

.booking-form-sec .step .pickup-info .box-info {
    background-color: #fff;
    outline: 1px solid #e3e5ea;
    padding: 25px 18px;
    border-radius: 11px 11px 0 0;
}

.booking-form-sec .step .pickup-info .box-info label {
    font-family: 'SF Pro Display';
    color: #64666b;
    font-size: 15px;
    width: 100%;
}

.booking-form-sec .step .pickup-info .box-info input[type="radio"] {
    margin-right: 5px;
}

.booking-form-sec .step .pickup-info .box-info .add textarea {
    width: 100%;
    border: none;
    background: #f0f2f7;
    padding: 5px 7px;
    font-family: 'SF Pro Display';
    border-radius: 5px;
    font-size: 14px;
}

.booking-form-sec .step .pickup-info .box-info .add label {
    padding: 10px 5px;
    font-size: 14px;
}

.booking-form-sec .step {
    display: none;
}

.booking-form-sec .step.active {
    display: block;
}

.booking-form-sec .txt-box label {
    font-family: 'SF Pro Display';
    font-size: 16px;
    font-weight: 500;

}

.booking-form-sec .txt-box input {
    width: 100%;
    font-family: 'SF Pro Display';
    border-radius: 5px;
    border: 1px solid #9b9b9b;
    padding: 4px 10px;
}

.booking-form-sec .thankyou {
    text-align: center;
}

.booking-form-sec .thankyou h3 {
    font-family: 'Helvetica Neue';
    color: #000;
    font-size: 35px;
}

.booking-form-sec .thankyou p {
    font-family: 'SF Pro Display';
    color: #000;
    font-size: 20px;
    font-weight: 500;
}

.booking-form-sec .title h3 {
    text-align: left;
    font-family: 'Helvetica Neue';
    color: #000;
    font-size: 36px;
    text-transform: capitalize;
    letter-spacing: 2px;
}

.booking-form-sec .signup label {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.booking-form-sec .signup label a {
    color: #3452fe;
    font-family: 'SF Pro Display';
}

/* contact-us */

.contact-sec {
    padding: 70px 0;
}

.contact-sec .title {
    padding: 0 0 30px;
    text-align: center;
}

.contact-sec .title h2 {
    font-family: 'Helvetica Neue';
    color: #000;
    text-align: center;
    font-weight: 700;
    font-size: 40px;
    padding: 0px 0 12px;
}

.contact-sec .title p {
    font-family: 'SF Pro Display';
    color: #000;
    text-align: center;
    font-size: 15px;
    padding: 0 0 20px;
}

.contact-sec .card {
    padding: 15px 13px 35px;
    background: #2a3654;
    border-radius: 10px;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.contact-sec .card .content h4 {
    font-family: 'SF Pro Display';
    color: #fff;
    text-align: center;
    font-size: 17px;
    padding: 30px 0 15px;
}

.contact-sec .card .content p,
.contact-sec .card .content a {
    font-family: 'SF Pro Display';
    color: #fff;
    text-align: center;
    font-size: 15px;
}

/* contact-form-sec */

.contact-form-sec {
    background-image: url(../images/contactus-bg.webp);
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
    background-attachment: fixed;
    padding: 70px 0;
}

.contact-form-sec::before {
    background: linear-gradient(90deg, #0a0a0a 0%, #0a0a0a 100%);
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    content: "";
    opacity: 0.3;
}

.contact-form-sec .title h3 {
    font-family: 'Helvetica Neue';
    text-align: center;
    color: #fff;
    font-size: 42px;
    font-weight: 700;
}

.contact-form-sec .txt-box label {
    font-family: 'SF Pro Display';
    color: #fff;
}

.contact-form-sec .txt-box input,
.contact-form-sec .txt-box textarea {
    font-family: 'SF Pro Display';
    background-color: #ffffffbf;
    border: none;
    position: relative;
    border-bottom: 2px solid #e0e0e0;
    width: 100%;
    padding: 5px 8px;
}

/* chauffeur-applay-sec */

.chauffeur-applay-sec {
    padding: 70px 0 0;
}

.chauffeur-applay-sec .title {
    padding: 0 0 0px;
    text-align: center;
}

.chauffeur-applay-sec .title h4 {
    font-family: 'Helvetica Neue';
    color: #000;
    text-align: center;
    font-weight: 700;
    font-size: 30px;
}

.chauffeur-applay-sec .title h2 {
    font-family: 'Helvetica Neue';
    color: #000;
    text-align: center;
    font-weight: 700;
    font-size: 40px;
}

.chauffeur-applay-sec .title p {
    font-family: 'SF Pro Display';
    color: #000;
    text-align: center;
    font-size: 15px;
    padding: 10px 0 20px;
}

.chauffeur-applay-sec .title.sec {
    padding-bottom: 30px;
}

.chauffeur-applay-sec .box {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
}

.chauffeur-applay-sec .box .icon {
    background-color: rgba(136, 136, 136, 0.17);
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}

.chauffeur-applay-sec .box .icon i {
    color: #000;
    font-size: 19px;
}

.chauffeur-applay-sec .box .content h5 {
    font-family: 'Helvetica Neue';
    color: #000;
    padding: 10px 0 10px;
}

.chauffeur-applay-sec .box .content p {
    font-family: 'SF Pro Display';
    color: #000;
    font-size: 15px;
}


.our-company-sec {
    padding: 70px 0 30px;
}

.our-company-sec .content h2 {
    font-family: 'Helvetica Neue';
    color: #000;
    font-weight: 700;
    font-size: 40px;
    padding: 0 0 25px;
}

.our-company-sec .content h6 {
    font-family: 'Helvetica Neue';
    color: #000;
    font-weight: 600;
    font-size: 15px;
}

.our-company-sec .content p,
.our-company-sec .content ul li {
    font-family: 'SF Pro Display';
    color: #000;
    font-size: 14px;
    padding: 10px 0 20px;
    line-height: 20px;
    font-weight: 500;
}

.our-company-sec .content ul {
    padding: 0 0 15px;
}

.our-company-sec .content ul li {
    padding: 7px 0 0;
}

.booking-form-sec.login-sec {
    padding: 50px 0 50px;
}

/* .about-sec */

.about-sec{
    padding: 50px 0;
}

.about-sec .about-img{
    position: relative;
}

.about-sec .about-img .img-a{
    transform: translateX(-35%);
}

.about-sec .about-img .img-b{
    position: absolute;
    top: 50%;
    width: 271px;
    object-fit: cover;
    right: 70px;
    height: 300px;
    transform: translateY(-50%);
}

.about-sec .about-img .img-b img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.about-sec .content h2{
    font-family: 'Helvetica Neue';
    color: #000;
    font-weight: 700;
    font-size: 40px;
    padding: 0 0 25px;
}

.about-sec .content h6{
    font-family: 'Helvetica Neue';
    color: #000;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 2px;
}

.about-sec .content p{
    font-family: 'SF Pro Display';
    color: #000;
    font-size: 14px;
    padding: 10px 0 20px;
    line-height: 20px;
    font-weight: 500;
}

/* story-sec */

.story-sec{
position: relative;
}
.story-sec .story-box{
    background-image: url(../images/story.webp);
    background-repeat: no-repeat;
    border-radius: 10px;
    background-size: cover;
    text-align: center;
    padding: 80px 10px;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    z-index: 1;
}

.story-sec .story-box::before{
    content: "";
    position: absolute;
    background: linear-gradient(135deg, #41537e 0%, #190707 100%);
    opacity: 0.8;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    z-index: -1;
    border-radius: 10px;
}


.story-sec .story-box .content h2{
    font-family: 'Helvetica Neue';
    color: #fff;
    font-weight: 700;
    font-size: 40px;
    padding: 0 0 0px;
}

.story-sec .story-box .content p{
    font-family: 'SF Pro Display';
    color: #fff;
    font-size: 16px;
    padding: 10px 0 36px;
    line-height: 20px;
    font-weight: 400;
    line-height: 28px;
}




/* font-family */
/* font-family: 'Helvetica Neue';
font-family: 'SF Pro Display'; */


@media only screen and (max-width: 1920px) {}

@media only screen and (max-width: 1599px) {}

@media only screen and (max-width: 1444px) {}

@media only screen and (max-width: 1399px) {}

@media only screen and (max-width: 1199px) {
    .btn-learn {
        padding: 10px 56px;
    }
}

@media only screen and (max-width: 991px) {}

@media only screen and (max-width: 767px) {
    .main-header .top-header .txt {
        font-size: 11px;
    }

    .main-header .navbar-brand img {
        width: 130px;
    }

    .main-header .navbar {
        padding: 0;
    }

    .main-header .navbar-toggler-icon {
        color: #fff;
        align-content: center;
    }

    .main-banner .content h1 {
        font-size: 42px;
    }

    .main-banner {
        height: unset;
        padding-top: 132px;
    }

    .btn-learn {
        padding: 10px 31px;
    }

    .btn-ban {
        gap: 0 12px;
        padding-top: 0;
        justify-content: center;
    }

    .stay-com-sec .main-content .title h2 {
        font-size: 36px;
    }

    .stay-com-sec {
        height: 100vh;
        padding: 45px 0 45px;
    }

    .professional-sec .title h2 {
        font-size: 36px;
        text-align: center;
        padding-bottom: 10px;
    }

    footer {
        padding: 45px 0 0;
    }

    footer .txt li {
        padding: 0 0 12px;
    }

    footer .social-icons {
        gap: 0 10px;
        padding: 0 0 15px;
    }

    footer .quick-links {
        gap: 0 15px;
    }

    footer p {
        padding: 15px 0 15px;
    }

    .navbar-collapse {
        align-items: center;
        background: #000;
        text-align: center;
    }

    /* inner pages  */
    .inner-banner {
        height: 360px;
        padding-top: 43px;
    }
    .inner-banner .title h1 {
        font-size: 36px;
        letter-spacing: 0px;
    }

    .contact-sec {
        padding: 45px 0;
    }

    .contact-sec .title h2 {
        font-size: 36px;
        padding: 0px 0 12px;
    }

    .contact-sec .title {
        padding: 0 0 0px;
    }

    .contact-sec .card .content h4 {
        font-size: 17px;
        padding: 15px 0 5px;
    }

    .contact-form-sec .title h3 {
        font-size: 36px;
    }

    .contact-form-sec {
        padding: 45px 0;
    }

    .booking-form-sec.login-sec {
        padding: 50px 0 0px;
    }

    .chauffeur-applay-sec {
        padding: 45px 0 0;
    }
    .about-sec .about-img .img-a {
        transform: translateX(-20%);
    }
    .about-sec .about-img .img-b {
        width: 171px;
        right: 10px;
        height: 200px;
    }
    .about-sec .content h2 {
        font-size: 36px;
        padding: 0 0 10px;
    }
    .story-sec .story-box .content p {
        padding: 10px 0 20px;
        line-height: 20px;
    }
    .story-sec .story-box {
        padding: 40px 10px;
    }
    .booking-form-sec .booking-form .stepss {
        gap: 0 12px;
    }
    .booking-form-sec .booking-form .stepss li {
        font-size: 11px;
    }
    .booking-form-sec .step .car-detail {
        padding-top: 20px;
    }
    .booking-form-sec .step .car-box .price h3 {
        padding-right: 24px;
        font-size: 15px;
    }
    .booking-form-sec .step .car-detail .btn-arrow {
        top: 2px;
        font-size: 14px;
    }
    .booking-form-sec .step .car-box .car-type p {
        font-size: 12px;
    }
    .booking-form-sec .step .car-box .car-type h4 {
        font-size: 17px;
    }
    .booking-form-sec .step .car-box .car-img {
        width: 31%;
        padding-right: 3px;
    }
    .booking-form-sec .step .car-box {
        padding: 15px 10px;
    }
    .booking-form-sec .step .car-detail .car-box .advance-info ul {
        padding-bottom: 0px;
    }
}

@media only screen and (max-width: 576px) {}

@media only screen and (max-width: 414px) {}

@media only screen and (max-width: 376px) {}