@import url("https://fonts.googleapis.com/css2?family=Taviraj:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&amp;display=swap");

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    scroll-behavior: smooth;
    font-family: "Taviraj", serif;
}

:root {
    --primary-color: #b58c6a !important;
    --secondary-color: #000000;
    --white-color: #ffffff;
    --gray-color: #eeeeee;
}

body {
    overflow-x: hidden;
}

a {
    text-decoration: none;
}

figure {
    margin: 0;
    padding: 0;
}

.btn:focus {
    outline: none;
}

ul,
ol {
    list-style: none;
    margin: 0;
    padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
    padding: 0;
}

a,
button {
    display: inline-block;
}

button:focus {
    outline: none;
    box-shadow: none;
}

select {
    cursor: pointer;
}

.btn:focus {
    outline: none;
    box-shadow: none;
}

.form-control:focus {
    outline: none;
    box-shadow: none;
}

/************************** All Main Content css start **************************/
/* header css */
.desktop-header {
    width: 100%;
    height: 100%;
    background: var(--secondary-color);
    z-index: 999999;
    position: relative;
}

.mini-header {
    width: 100%;
    height: 100%;
    padding: 10px 0;
    border-bottom: 1px solid var(--white-color);
}

.emailDiv {
    width: 100%;
}

.emailDiv a {
    color: var(--white-color);
    transition: all 0.3s ease-in-out;
}

.emailDiv a:hover {
    color: var(--primary-color);
}

.emailDiv a i {
    padding-right: 5px;
}

.phoneDiv {
    width: 100%;
    text-align: center;
}

.phoneDiv a {
    color: var(--white-color);
    transition: all 0.3s ease-in-out;
}

.phoneDiv a:hover {
    color: var(--primary-color);
}

.phoneDiv a i {
    padding-right: 5px;
}

.socialDIv {
    width: 100%;
    display: flex;
    flex-direction: row;
    gap: 20px;
    justify-content: flex-end;
    align-items: center;
}

.socialDIv i {
    color: var(--white-color);
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.socialDIv i:hover {
    color: var(--primary-color);
}

.main-menu {
    width: 100%;
    padding: 20px 0;
}

.main-nav {
    position: relative;
    transition: all 0.3s ease;
    z-index: 10;
}

.main-nav.sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: var(--secondary-color);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    animation: fadeInDown 0.5s ease;
}

.menu-list {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.menu-link .logo {
    width: 170px;
}

.menu-link {
    color: var(--white-color);
    transition: all 0.3s ease-in-out;
}

.menu-link:hover {
    color: var(--primary-color);
}

.active-menu {
    padding: 10px 30px;
    background: var(--primary-color);
    transition: all 0.3s ease-in-out;
}

.li-list:hover .active-menu {
    background: transparent;
}

.li-list {
    position: relative;
    padding: 0 10px;
}

.li-list::before {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    height: 3px;
    width: 0%;
    background: var(--primary-color);
    transition: all 0.3s ease-in-out;
}

.li-list:hover::before {
    width: 100%;
}

.custom-btn {
    border: none;
    padding: 10px 40px;
    background: linear-gradient(-45deg, #b58c6a, #ffddc2, #000000, #7c7c7c);
    background-size: 300% 300%;
    color: var(--white-color);
    font-weight: 500;
    transition: all 0.3s ease;
    animation: buttonanimation 2s ease infinite;
}

.custom-btn:hover {
    background: var(--primary-color);
    color: var(--white-color);
}

@keyframes buttonanimation {
    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.boucne-animate {
    border: none;
    padding: 10px 40px;
    background: linear-gradient(-45deg, #b58c6a, #ffddc2, #000000, #7c7c7c);
    background-size: 300% 300%;
    color: var(--white-color);
    font-weight: 500;
    transition: all 0.3s ease;
    animation: bounceanimation 1.5s ease infinite;
}

.boucne-animate:hover {
    background: var(--primary-color);
    color: var(--white-color);
}

@keyframes bounceanimation {
    0%,
    100% {
        background-position: 0% 50%;
        transform: translateY(-10px);
    }

    50% {
        background-position: 100% 50%;
        transform: translateY(10px);
    }
}

#scrollBtn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 10px 18px;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    transition: background-color 0.3s;
}

#scrollBtn:hover {
    background-color: var(--secondary-color);
}

.desktop-header {
    display: block;
}

.mobile-header {
    display: none;
}
/* header css */
/* hero-section */
.hero-section {
    width: 100%;
    height: 80vh;
    padding: 60px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url(../images/hero-banner-img.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.main-banner {
    position: relative;
}

.main-banner::before {
    content: "";
    background-color: #000;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    opacity: 0.4;
}

.main-banner .banner-slider {
}

.main-banner .banner-slider .img-box {
}

.main-banner .banner-slider .img-box img {
    width: 100%;
    height: 85vh;
    object-fit: cover;
}

.main-banner .hero-title {
    width: 100%;
    padding: 0px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    position: absolute;
    top: 50%;
    z-index: 10;
    transform: translateY(-50%);
}

.main-banner .hero-title h1 {
    font-size: 82px;
    font-weight: 600;
    color: var(--white-color);
    text-align: center;
    animation: headingColor 2s ease-in-out infinite;
}

.main-banner .slick-prev {
    position: absolute;
    top: 50%;
    left: 1%;
    z-index: 999;
    font-size: 0;
    width: 45px;
    height: 45px;
    background-color: #b58c6a;
    border: 1px solid #b58c6a;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-banner .slick-prev::before {
    content: "\f104";
    font-family: "Font Awesome 6 Pro";
    font-size: 25px;
    position: absolute;
    color: #ffffff;
}

.main-banner .slick-next {
    position: absolute;
    top: 50%;
    right: 1%;
    z-index: 999;
    font-size: 0;
    width: 45px;
    height: 45px;
    background-color: #b58c6a;
    border: 1px solid #b58c6a;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-banner .slick-next::before {
    content: "\f105";
    font-family: "Font Awesome 6 Pro";
    font-size: 25px;
    position: absolute;
    color: #ffffff;
}

@keyframes headingColor {
    0%,
    100% {
        color: var(--white-color);
    }

    50% {
        color: var(--primary-color);
    }
}

.hero-title h3 {
    color: #fff;
    font-size: 40px;
}

.bookingForm {
    width: 100%;
    background: var(--white-color);
    border: 5px solid var(--primary-color);
    margin-top: 50px;
}

.bookingForm-left {
    width: 100%;
    min-height: 524px;
    padding: 50px 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.formHeading {
    width: 100%;
    height: 100%;
}

.formHeading h3 {
    font-size: 28px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.inoutDiv {
    width: 100%;
    height: 100%;
    margin-bottom: 26px;
    position: relative;
    overflow: hidden;
}

.inoutDiv i {
    position: absolute;
    top: 15px;
    right: 20px;
    color: var(--primary-color);
}

.form-Seelect {
    width: 100%;
    padding: 10px 20px;
    border: 2px solid var(--primary-color) !important;
}

.form-input {
    width: 100%;
    padding: 10px 20px;
    border: 2px solid var(--primary-color) !important;
}

.form-input::placeholder {
    color: var(--secondary-color);
}

.right-image-con {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.form-image {
    position: relative;
    margin-top: 50px;
}

.bg-design {
    background: linear-gradient(45deg, #b58c6a, #000000);
    width: 400px;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 0;
}
/* hero-section */
/* about us section */
.about_section {
    width: 100%;
    padding: 100px 0;
    border-bottom: 2px solid var(--primary-color);
}

.topabout-sec {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 50px;
    text-align: center;
}

.topabout-sec .logo-favicon {
    width: 100px;
    margin-bottom: 10px;
}

.topabout-sec .topstyleH {
    font-weight: 600;
    color: #7c7c7c;
    margin-bottom: 20px;
}

.topabout-sec h2 {
    font-size: 52px;
    font-weight: 600;
    color: var(--primary-color);
}

.imageAbout {
    width: 100%;
    height: 100%;
}

.textAbout {
    width: 100%;
    padding: 0px 10px;
}

.textAbout h3 {
    font-size: 32px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.textAbout p {
    margin-bottom: 10px;
    font-size: 15px;
}

.textAbout ul {
    padding-left: 20px;
    list-style: disc;
    margin-bottom: 20px;
}

.textAbout ul li {
    padding: 3px 0;
    font-size: 15px;
}

.textAbout ul li span {
    font-weight: 700;
    color: #b58c6a;
    font-size: 16px;
}
/* About Page Css */
.banner-section {
    width: 100%;
    height: 460px;
    padding: 20px;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.8)), url(../images/fleet-2.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.banner-section h2 {
    font-size: 52px;
    font-weight: 600;
    color: var(--white-color);
}

.banner-section2 {
    width: 100%;
    height: 400px;
    padding: 100px;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url(../images/slide-01.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.banner-section2 h2 {
    font-size: 52px;
    font-weight: 600;
    color: var(--white-color);
}

.breadcrumb {
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.breadcrumb-item a {
    color: var(--white-color);
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--white-color);
}

.breadcrumb-item.active {
    color: var(--primary-color);
}
/* About Page Css */
/* about us section */
/* services section */
.our-services {
    width: 100%;
    height: 100%;
    padding: 50px 0 100px 0;
    border-bottom: 2px solid var(--primary-color);
}

.main_services {
    width: 100%;
    height: 100%;
}

.maScard {
    width: 100%;
    padding: 50px;
    text-align: center;
    border: 2px solid var(--primary-color);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    min-height: 530px;
}

.maScard h3 {
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.maScard p {
    margin-bottom: 20px;
}

.mainservices {
    width: 100%;
    height: 100%;
    padding-top: 50px;
    padding-bottom: 50px;
    border-bottom: 2px solid var(--primary-color);
}

.image-seric-left {
    width: 100%;
}

.image-seric-left img {
    border: 5px solid var(--primary-color);
}

.content-servic-right {
    width: 100%;
    padding: 20px;
}

.content-servic-right h1 {
    font-size: 42px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.content-servic-right p {
    margin-bottom: 20px;
}
/* services section */
/* our fleet section */
.our-fleet {
    width: 100%;
    height: 100%;
    padding: 100px 0;
    border-bottom: 2px solid var(--primary-color);
}

.fleet-card {
    width: 100%;
    margin-top: 20px;
    border: 5px solid var(--primary-color);
    padding: 0;
}

.fleetPadd {
    padding: 10px 30px 0px 30px;
}

.fleet-card .fleet-1 {
    width: 100%;
    height: 320px;
    object-fit: cover;
}

.fleet-card h3 {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 10px;
    padding-bottom: 10px;
    text-align: center;
    border-bottom: 1px solid var(--primary-color);
}

.fleet-card .fleet-para {
    color: var(--black-color);
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--primary-color);
    text-align: center;
}

.fleet-features {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.fleet-features i {
    color: var(--primary-color);
}

.mercedes-bmw {
    width: 100%;
    height: 100%;
    padding: 100px 0;
    border-bottom: 2px solid var(--primary-color);
}

.mainFleetDiv {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 50px;
}

.fleetimage img {
    border: 10px solid var(--primary-color);
}

.fleetcontent {
    width: 100%;
}

.fleetcontent h2 {
    font-size: 52px;
    font-weight: 600;
    color: var(--primary-color);
    padding: 10px 0;
    margin-bottom: 10px;
    border-bottom: 2px solid var(--primary-color);
}

.fleetcontent p {
    padding: 10px 0;
    border-bottom: 2px solid var(--primary-color);
    margin-bottom: 10px;
}

.fleetcontent ul {
    margin-bottom: 20px;
}

.fleetcontent h4 {
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.fleetcontent ul li::marker {
    color: var(--primary-color);
}

.fleetcontent ul li {
    list-style: disc;
    margin-left: 20px;
    color: var(--secondary-color);
}
/* our fleet section */
/* contact us section */
.contact-us {
    width: 100%;
    height: 100%;
    padding: 100px 0;
    border-bottom: 2px solid var(--primary-color);
}

.main-Contact {
    width: 100%;
    height: auto;
    padding: 50px;
    margin-top: 20px;
    border: 5px solid var(--primary-color);
}

.main-Contact h3 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.CfotmInp {
    width: 100%;
    height: 100%;
}

.CfotmInp .ininput {
    width: 100%;
    padding: 10px 20px;
    border: 2px solid var(--primary-color);
    border-radius: 0;
    margin-bottom: 20px;
}

.CfotmInp .ininput:focus {
    outline: none;
    border: 2px solid var(--primary-color);
    border-radius: 0;
}

.CfotmInp .ininput::placeholder {
    color: var(--secondary-color);
}
/* contact us section */
/* footer section */
.footer {
    width: 100%;
    height: 100%;
    padding: 40px 0;
    background: var(--secondary-color);
}

.left-footer-content {
    width: 100%;
}

.left-footer-content .footer-logo {
    width: 100%;
    margin-bottom: 20px;
}

.left-footer-content p {
    font-size: 16px;
    color: var(--white-color);
}

.last-footer-content .social-icons {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-top: 20px;
    gap: 10px;
}

.last-footer-content .social-icons .icon {
    background: var(--primary-color);
    padding: 10px 20px;
    color: var(--secondary-color);
    transition: all 0.3s ease-in-out;
}

.last-footer-content .social-icons .icon:hover {
    background: var(--white-color);
    color: var(--primary-color);
}

.last-footer-content h2 {
    color: var(--primary-color);
    height: 60px;
    font-size: 22px;
    position: relative;
    overflow: hidden;
}

.last-footer-content h2::before {
    content: "";
    position: absolute;
    top: 50px;
    left: 5px;
    background: var(--white-color);
    width: 15%;
    height: 3px;
}

.center-footer-content {
    width: 100%;
    height: 100%;
}

.center-footer-content h2 {
    color: var(--primary-color);
    height: 60px;
    font-size: 22px;
    position: relative;
    overflow: hidden;
}

.center-footer-content h2::before {
    content: "";
    position: absolute;
    top: 50px;
    left: 5px;
    background: var(--white-color);
    width: 15%;
    height: 3px;
}

.right-footer-content h2 {
    color: var(--primary-color);
    height: 60px;
    position: relative;
    overflow: hidden;
    font-size: 22px;
}

.right-footer-content h2::before {
    content: "";
    position: absolute;
    top: 50px;
    left: 5px;
    background: var(--white-color);
    width: 15%;
    height: 3px;
}

.right-footer-content .getin_touch {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: flex-start;
    margin-top: 20px;
}

.getin_touch p {
    color: var(--white-color);
}

.getin_touch p > i {
    margin-right: 10px;
}

.getin_touch a {
    color: var(--white-color);
    transition: all 0.3s ease-in-out;
}

.getin_touch a:hover {
    color: var(--primary-color);
}

.getin_touch a > i {
    margin-right: 10px;
}

.footer_ul {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
    padding: 6px;
    margin-top: 20px;
}

.footer_ul .footer_li a {
    color: var(--white-color);
    transform: translateX(0px);
    transition: all 0.3s ease-in-out;
}

.footer_ul .footer_li:hover a {
    transform: translateX(10px);
}

.footer_ul .footer_li a > i {
    margin-right: 10px;
}

.bootom-footer-section {
    width: 100%;
    background: var(--primary-color);
    padding: 20px;
    text-align: center;
    color: var(--white-color);
}
/* footer section */
/************************** All Main Content css end **************************/
.sec-privacy {
    padding: 50px 0 60px;
}

.sec-privacy .content-box {
}

.sec-privacy .content-box h2 {
    text-transform: capitalize;
    position: relative;
    line-height: 27px;
    color: #000;
    font-weight: 700;
    font-size: 25px;
    padding: 10px 0;
    margin: 0;
}

.sec-privacy .content-box h3 {
    text-transform: capitalize;
    position: relative;
    padding-bottom: 0px;
    color: #b58c6a;
    font-weight: 700;
    font-size: 18px;
    margin: 0;
}

.sec-privacy .content-box p {
    padding: 3px 0;
}

.sec-privacy .content-box ul {
    padding-left: 30px;
    padding-bottom: 10px;
    list-style: none;
}

.sec-privacy .content-box ul li {
    padding: 3px 0;
    font-size: 16px;
}

.sec-privacy .content-box ul li i {
    color: #b58c6a;
    font-size: 16px;
    padding-right: 7px;
}

.sec-privacy .content-box ul li span {
}

.sec-privacy .content-box .para {
    color: #000000;
    padding: 5px 0;
    font-weight: 600;
    margin: 0;
}

.sec-privacy .content-box h6 a {
    font-size: 16px;
    color: #0089bf;
    text-decoration: underline;
}

.sec-privacy .content-box h6 span {
    font-weight: 700;
    font-size: 15px;
    color: #000;
    padding-right: 5px;
}

.sec-extra {
    padding: 60px 0;
}

.sec-extra .card-box {
    text-align: center;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    border: 2px solid #b58d6a;
    margin-bottom: 15px;
    padding: 40px 0;
    transition: 0.5s;
}

.sec-extra .card-box:hover {
    background-color: #b58c6a;
}

.sec-extra .card-box .icon-box {
    width: 70px;
    height: 70px;
    background-color: #b58d6a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: 0.5s;
}

.sec-extra .card-box:hover .icon-box {
    background-color: #000;
}

.sec-extra .card-box .icon-box i {
    font-size: 25px;
    color: #fff;
}

.sec-extra .card-box h3 {
    color: #000;
    font-size: 20px;
    font-weight: 700;
    transition: 0.5s;
}

.sec-extra .card-box:hover h3 {
    color: #fff;
}

.sec-app {
    padding: 80px 0;
    background-color: #e3e3e3;
    position: relative;
}

.sec-app .img-box {
    text-align: center;
}

.sec-app .img-box img {
    height: 400px;
}

.sec-app .text-box {
}

.sec-app .text-box h2 {
    color: #000000;
    font-size: 42px;
    letter-spacing: 0;
    line-height: 49px;
    margin-top: 4px;
    margin-bottom: 0px;
    font-weight: 600;
}

.sec-app .text-box h3 {
    color: #b58c6a;
    font-weight: bold;
    font-size: 20px;
    margin: 7px 0 0;
    line-height: 20px;
}

.sec-app .text-box h4 {
    color: #000000;
    font-size: 18px;
    letter-spacing: 0.15px;
    line-height: 30px;
    margin-bottom: 0px;
}

.sec-app .text-box .app-list {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    padding: 10px 0;
}

.sec-app .text-box .app-list li {
    color: #ffffff;
    width: 40%;
    background-color: #b58c6a;
    margin: 8px 10px 0 0;
    padding: 13px 15px;
    text-align: center;
    font-weight: 600;
}

.sec-app .text-box .app-list li i {
    padding-right: 5px;
    font-size: 18px;
}

.sec-app .text-box .btn-list {
    padding: 10px 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 70%;
}

.sec-app .text-box .btn-list li {
    width: 40%;
    padding: 10px 15px 0 0;
}

.lower-images {
    margin-bottom: 20px;
}

.lower-images .img-box {
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    margin-bottom: 15px;
}

.lower-images .img-box img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 7px;
}

.bottom-footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.bottom-footer-content .terms-ul {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.bottom-footer-content .terms-ul li {
    padding: 0 10px;
}

.bottom-footer-content .terms-ul li a {
    color: #000;
    font-weight: 600;
}

.bottom-footer-content .terms-ul li a i {
    padding-right: 5px;
}

.sec-inner-services {
    padding: 60px 0;
}

.sec-inner-services .content-box {
}

.sec-inner-services .content-box h2 {
    font-size: 40px;
    font-weight: 600;
    color: var(--primary-color);
    padding: 7px 0;
    margin-bottom: 10px;
    border-bottom: 2px solid var(--primary-color);
}

.sec-inner-services .content-box h3 {
    font-weight: 600;
    color: #000000;
    font-size: 22px;
}

.sec-inner-services .content-box h4 {
    font-weight: 600;
    color: #000000;
    font-size: 22px;
}

.sec-inner-services .content-box .para {
    padding: 10px 0;
}

.sec-inner-services .img-box img {
    border-radius: 10px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.sec-faqs {
    padding: 50px 0 60px;
    background-color: #f5f5f5;
}

.sec-faqs .sec-title {
    text-align: center;
    padding-bottom: 30px;
}

.sec-faqs .sec-title h2 {
    font-size: 30px;
    font-weight: 700;
    color: #000;
    letter-spacing: 0px;
    text-transform: uppercase;
}

.sec-faqs .faqs-box {
}

.sec-faqs .faqs-box .heading-button {
    font-size: 18px;
    font-weight: 600 !important;
    color: #ffffff !important;
    padding: 14px 20px 14px 15px;
    position: relative;
    border-bottom: 1px solid #ccc;
    width: 100%;
    margin: 5px 0 0;
    background: linear-gradient(180deg, rgb(239 177 125) 0%, rgb(181 140 106) 100%);
}

.sec-faqs .faqs-box .heading-button::before {
    content: "\f107";
    font-family: "Font Awesome 6 Pro";
    position: absolute;
    font-size: 20px;
    right: 3%;
    top: 50%;
    transform: translateY(-50%);
}

.sec-faqs .faqs-box .heading-button:not(.collapsed)::before {
    content: "\f106";
}

.sec-faqs .faqs-box .drop-box {
    padding: 10px 20px;
    background-color: #ffffff;
}

.sec-faqs .faqs-box .drop-box .para {
    padding: 5px 0;
    font-size: 15px;
}

.about-img-2 {
    border-radius: 10px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    border: 4px solid #b58c6a;
}

.sec-result {
    padding: 60px 0;
}

.sec-result .upper-list {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 7px 16px;
    background: #ebebeb;
}

.sec-result .upper-list li {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.sec-result .upper-list li .icon-box {
}

.sec-result .upper-list li .icon-box .img-icon {
    width: 60px;
    height: 100%;
    object-fit: contain;
}

.sec-result .upper-list li .text-box {
    padding: 0 10px;
}

.sec-result .upper-list li .text-box h6 {
    font-size: 16px;
    font-weight: 600;
    color: #000;
}

.sec-result .upper-list li .text-box p {
    font-size: 14px;
}

.sec-result .number-box {
    padding: 30px 40px;
}

.sec-result .number-box ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.sec-result .number-box ul li {
    width: 24%;
    position: relative;
}

.sec-result .number-box ul li .num-circle {
    text-align: center;
}

.sec-result .number-box ul li .num-circle h6 {
    background-color: #ebebeb;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 20px;
    margin: 0 auto;
    color: #000;
    font-weight: 600;
}

.sec-result .number-box ul li .num-circle p {
    font-size: 14px;
    margin-top: 15px;
    text-transform: uppercase;
    color: #000;
}

.sec-result .completed {
    background-color: #000000 !important;
    color: #ffffff !important;
}

.sec-result .for-line {
    position: relative;
}

.sec-result .for-line::before {
    content: "";
    background-color: #b48c69;
    position: absolute;
    width: 67%;
    height: 4px;
    top: 30%;
    border-radius: 10px;
    left: 70%;
}

.sec-result .cancellation-box {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 20px;
    background-color: #000000bd;
}

.sec-result .cancellation-box .img-box {
    background-color: #fff;
    padding: 10px;
    border-radius: 10px;
}

.sec-result .cancellation-box .img-box .shield-img {
    width: 50px;
}

.sec-result .cancellation-box .text-box {
    padding-left: 10px;
}

.sec-result .cancellation-box .text-box p {
    line-height: 23px;
    color: #fff;
    font-size: 18px;
}

.update-fleet-box {
    background: #ebebeb;
    margin: 20px 0;
    padding: 20px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.update-fleet-box .img-box {
    margin-bottom: 10px;
}

.update-fleet-box .img-box img {
    width: 100%;
    height: 120px;
    object-fit: contain;
}

.update-fleet-box .car-text {
    text-align: center;
    font-size: 14px;
    line-height: 18px;
    padding-bottom: 10px;
    font-weight: 700;
}

.update-fleet-box .private-text {
    font-size: 14px;
}

.update-fleet-box .star-list {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 7px 0 0;
}

.update-fleet-box .star-list li {
    padding: 0 1px;
}

.update-fleet-box .star-list li i {
    color: #b48c69;
    background-color: #000000;
    padding: 5px;
    border-radius: 5px;
    font-size: 13px;
}

.update-fleet-box .fleet-detail {
    padding: 0px 13px;
    border-right: 1px solid #b48c69;
    border-left: 1px solid #b48c69;
}

.update-fleet-box .fleet-detail h4 {
    font-size: 22px;
    font-weight: 600;
    padding-bottom: 5px;
    color: #000000;
}

.update-fleet-box .fleet-detail .passenger-list {
    display: flex;
    align-items: center;
}

.update-fleet-box .fleet-detail .passenger-list li {
    font-size: 13px;
    padding: 0 8px 0 0;
    font-weight: 600;
}

.update-fleet-box .fleet-detail .passenger-list li i {
    font-size: 16px;
}

.update-fleet-box .fleet-detail .passenger-list-2 {
    padding: 10px 0;
}

.update-fleet-box .fleet-detail .passenger-list-2 li {
    font-size: 15px;
    padding: 3px 10px;
    border: 1px solid #222222;
    margin: 3px 0;
    border-radius: 6px;
    font-size: 12px;
    background-color: #222222;
    width: fit-content;
    color: #ffffff;
}

.update-fleet-box .fleet-detail .passenger-list-2 li i {
    font-size: 16px;
    padding-right: 5px;
}

.update-fleet-box .fleet-detail .info-btn {
    color: #f9b442;
    text-decoration: underline;
    font-weight: 500;
}

.update-fleet-box .rate-box {
    margin-top: 0%;
}

.update-fleet-box .rate-box h6 {
    font-size: 15px;
    margin-top: 4px;
}

.update-fleet-box .rate-box .prize-box {
    text-align: center;
    padding: 4px 0;
    font-size: 20px;
    line-height: 29px;
    color: #000;
    font-weight: 600;
}

.update-fleet-box .rate-box .done-btn {
    padding: 0px;
    border-radius: 5px;
    text-align: center;
    color: #000000;
    font-weight: 600;
}

.right-card {
    background-color: #ebebeb;
    padding: 20px;
    margin-top: 15px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.right-card .top-heading {
    display: flex;
    align-items: center;
    padding: 10px 0 15px;
}

.right-card .top-heading i {
    font-size: 24px;
    padding-right: 10px;
    color: #000000;
}

.right-card .top-heading h5 {
    font-size: 22px;
    color: #000000;
}

.right-card .distance-box {
    padding: 20px 0;
    border-top: 1px solid #000000;
    border-bottom: 1px solid #000000;
}

.right-card .distance-box h6 {
    color: #000;
}

.right-card .distance-box ul {
    padding: 10px 0 0;
}

.right-card .distance-box ul li {
    font-size: 14px;
    padding: 5px 0px;
    color: #000;
}

.right-card .distance-box ul li i {
    font-size: 16px;
    color: #000000;
    padding-right: 5px;
}

.right-card .cal-mile {
    padding: 10px 0 0;
}

.right-card .cal-mile li {
    font-size: 16px;
    padding: 5px 0;
    color: #000;
}

.right-card .cal-mile li i {
    padding-right: 5px;
    color: #000000;
}

.right-card .distance-box-2 ul li {
    font-size: 14px;
    padding: 5px 0;
    color: #000;
}

.right-card .distance-box-2 ul li i {
    font-size: 15px;
    color: #000000;
    padding-right: 3px;
}

.ui-menu {
    height: 250px !important;
    overflow-y: scroll;
}

.Passenger-Information {
    background: #ebebeb;
    padding: 20px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.Passenger-Information h3 {
    font-size: 22px;
    font-weight: 600;
    padding-bottom: 5px;
    color: #000000;
}

.Passenger-Information .input-box {
    padding-bottom: 10px;
}

.Passenger-Information .input-box label {
    text-align: center;
    padding: 4px 0;
    font-size: 16px;
    font-weight: 600;
    line-height: 18px;
    color: #000;
    margin: 0;
}

.Passenger-Information .input-box .b-field {
    width: 100%;
    border: 1px solid #ccc !important;
    padding: 8px 10px;
}

.Passenger-Information .input-box p {
    font-size: 13px;
    padding: 4px 0;
}

.Passenger-Information .input-box-extra {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.Passenger-Information .input-box-extra input {
    margin: 0 !important;
}

.Passenger-Information .input-box-extra label {
    padding-left: 10px;
}

.ui-dialog .ui-dialog-content {
    overflow-y: hidden !important;
}

.ui-dialog .ui-dialog-buttonpane button {
    background: #000 !important;
    padding: 7px 10px !important;
    text-align: center !important;
    color: #ffffff !important;
    border-radius: 7px !important;
}

.ui-menu .ui-menu-item {
    width: 350px !important;
}

.btnbooknow {
    width: 100%;
    float: left;
    font-size: 19px;
    font-weight: 700;
    color: #fff !important;
    text-decoration: none;
    padding: 8px 30px;
    cursor: pointer;
    background: #b48c69;
    border: 1px solid #b48c69;
    transition: 0.5s;
}

.back {
    float: left;
    width: 25%;
}

.accept {
    /* float:left; */

    margin: 0px 5px 5px 37%;
}

.accept1 {
    float: left;
    margin: 0px 5px 0 0;
}

.accept2 {
    float: left;
    margin: 0 5px 0 0;
}

.next {
    float: right;
    width: 25%;
}

.payment {
    float: left;
    width: 100%;
    font-family: verdana, arial;
    font-size: 11px;
    font-weight: normal;
    color: #000;
    text-decoration: none;
    background-color: #f7f7f7;
    border: 1px solid #cccccc;
    padding-top: 1%;
    padding-right: 2%;
    padding-bottom: 1%;
    padding-left: 2%;
}

.payment img {
    display: block;
    text-align: center;
    margin: 0 auto;
}

.payment-h1 {
    float: left;
    width: 20%;
    font-size: 18px;
    font-weight: normal;
    margin-top: 15px;
    margin-left: 20px;
}

.payment-img {
    float: left;
}

#contentBook {
    width: 100%;
    float: left;
    margin-top: 30px;
}

#book {
    /* float: left; */
    /* width: 100%; */
    /* background-color: #f7f7f7; */
}

#book-left {
    float: left;
    width: 50%;
}

#book-right {
    float: left;
    width: 50%;
}

#book-h1 {
    float: left;
    width: 100%;
    font-weight: normal;
    color: #fff;
    text-decoration: none;
    font-size: 20px;
    background: #000000;
    text-align: center;
    padding: 5px 0;
}

#book-h2 {
    float: left;
    width: 520px;
    font-weight: normal;
    color: #000;
    text-decoration: none;
    font-size: 18px;
    background-color: #1a1a1a;
    text-align: center;
    background-image: url(../images/heading-bg.html);
    background-repeat: no-repeat;
    background-position: left top;
    margin-bottom: 3%;
}

.next {
    float: right;
    width: 25%;
}

.BookBackBtn {
    float: right;
    padding: 6px 30px;
    font-family: verdana, arial;
    font-size: 16px;
    font-weight: normal;
    color: #fff;
    text-decoration: none;
    background: #222;
    border-radius: 3px;
    border: none 0;
    cursor: pointer;
}

.confirmbtn {
    background: #090807;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr= '#666', endColorstr= '#000',GradientType=0);
    border: 1px solid #666;
    border-color: #090807;
    -webkit-box-shadow:
        0 1px 1px #000,
        inset 0 1px 0 #666;
    -moz-box-shadow:
        0 1px 1px #000,
        inset 0 1px 0 #666;
    box-shadow:
        0 1px 1px #000,
        inset 0 1px 0 #666;
    padding: 8px 25px;
    margin: 2% 0 0 0;
    display: inline-block;
    position: relative;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    -webkit-transition: all0.3slinear;
    -moz-transition: all0.3slinear;
    -o-transition: all0.3slinear;
    transition: all0.3slinear;
    font-size: 16px;
    color: #fff;
    cursor: pointer;
    width: 130px;
    box-shadow: none;
}
/************************** media-query **************************/

/*member login css*/
.DiscountBox {
    list-style: none;
    width: 96%;
    float: left;
    padding: 0;
    margin: 1.5% 2%;
}

.Discount {
    width: 100%;
    float: left;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    text-decoration: none;
    margin: 0.2% 0 0 0;
}

.Discount2 {
    width: 100%;
    float: left;
    font-size: 17px;
    font-weight: bold;
    color: #fff;
    text-decoration: none;
    margin: -0.5% 0 0 0;
    text-align: center;
}

.DisBig {
    color: #f7c53d;
    font-size: 24px;
}

.MemberBox {
    width: 91%;
    float: right;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 13px;
    font-weight: normal;
    color: #fff;
    text-decoration: none;
}

.MemberLogin {
    float: left;
    font-size: 14px;
    margin: 0.4% 2% 0 0;
}

.MemberField {
    float: left;
    margin: 0 1% 0 0;
}

.MemberBtn {
    float: left;
    margin: 0 1% 0 0;
}

.MemberBtn2 {
    float: left;
    font-size: 12px;
    font-weight: bold;
    color: #333;
    text-decoration: none;
    text-align: center;
    letter-spacing: normal;
    word-spacing: normal;
    white-space: normal;
    background: #f7c53d;
    padding: 6px 20px;
    text-transform: none;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    -khtml-border-radius: 3px;
    border-radius: 3px;
    border: none 0px;
    cursor: pointer;
}

.MField {
    width: 200px;
    float: left;
    font-family: Arial;
    font-size: 13px;
    font-weight: normal;
    color: #000;
    text-decoration: none;
    border: none 0;
    background: #fff;
    padding: 5px 10px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    -khtml-border-radius: 3px;
    border-radius: 3px;
}

.MField2 {
    width: 130px;
    float: left;
    font-family: Arial;
    font-size: 13px;
    font-weight: normal;
    color: #000;
    text-decoration: none;
    border: none 0;
    background: #fff;
    padding: 5px 10px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    -khtml-border-radius: 3px;
    border-radius: 3px;
}

.WrapCover {
    width: 96%;
    float: left;
    padding: 1.8%;
    margin: 2% 0 0 0.3%;
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    -khtml-border-radius: 10px;
    border-radius: 10px;
}

.login-wrap {
    float: left;
    width: 45%;
    margin: 0%;
    padding: 2%;
    background: #fff;
    -moz-border-radius: 8px;
    -webkit-border-radius: 8px;
    -khtml-border-radius: 8px;
    border-radius: 8px;
    box-shadow:
        0px 0px 6px #cfcfcf,
        0px 0px 0px #cfcfcf;
}

.login-wrap3 {
    float: right;
    width: 45%;
    margin: 0%;
    padding: 2%;
    background: #fff;
    -moz-border-radius: 8px;
    -webkit-border-radius: 8px;
    -khtml-border-radius: 8px;
    border-radius: 8px;
    box-shadow:
        0px 0px 6px #cfcfcf,
        0px 0px 0px #cfcfcf;
}

.login-wrap2 {
    float: left;
    width: 94%;
    padding: 3%;
    background: #f6f6f6;
    border: solid 1px #e0e0e0;
}

.login-h1 {
    float: left;
    width: 100%;
    color: #000;
    font-size: 22px;
    font-weight: bold;
    text-decoration: none;
    margin: 0 0 2% 0;
}

.login-list {
    float: left;
    width: 100%;
    margin: 2% 0 0 0;
}

.login-list1 {
    float: left;
    width: 25%;
    color: #000;
    font-size: 12px;
    font-weight: bold;
    text-decoration: none;
    margin: 4% 0 0 3%;
}

.login-list2 {
    float: left;
    width: 60%;
    color: #000;
    font-size: 11px;
    font-weight: bold;
    padding: 3%;
    text-decoration: none;
    background: #eeeeee;
    border: solid 1px #d1d1d1;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    -khtml-border-radius: 5px;
    border-radius: 5px;
}

.listbtn {
    float: left;
    width: 94.6%;
    margin: 5% 5.4% 0 0;
    text-align: right;
}

.LoginBtn {
    float: right;
    font-size: 14px;
    font-weight: normal;
    color: #fff;
    text-decoration: none;
    text-align: center;
    letter-spacing: normal;
    word-spacing: normal;
    white-space: normal;
    background: #303030 url(../images/SubBtn-bg.html) repeat-x left top;
    padding: 5px 35px;
    text-transform: none;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    -khtml-border-radius: 3px;
    border-radius: 3px;
    border: none 0px;
    cursor: pointer;
}

.LoginBtn:hover {
    color: #ffd654;
}

.loginfield {
    float: left;
    width: 280px;
    font-size: 16px;
    color: #333;
    font-weight: normal;
    padding: 8px 10px;
    text-decoration: none;
    background: #fff;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    -khtml-border-radius: 3px;
    border-radius: 3px;
    border: solid 1px #d1d1d1;
}

.loginlist {
    float: left;
    width: 100%;
    padding: 1% 20% 0 30%;
    font-size: 14px;
    color: #000;
    font-weight: normal;
    text-decoration: none;
    text-align: left;
}

.loginlistco {
    float: left;
    width: 100%;
    margin: 0 0 1% 0;
}

.loginlist1 {
    float: left;
    width: 25%;
    padding: 8px 0 0 0;
}

.loginlist2 {
    float: left;
    width: 75%;
}

.LoginButton {
    font-family: "PT Sans", "Myriad Web Pro", "Myriad Pro", Myriad, "Segoe UI", "Verdana", "Liberation Sans",
        "Nimbus Sans L", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 16px;
    font-weight: normal;
    color: #fff;
    text-decoration: none;
    text-align: center;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    -khtml-border-radius: 3px;
    border-radius: 3px;
    letter-spacing: normal;
    word-spacing: normal;
    white-space: normal;
    background: #000;
    padding: 6px 20px 7px 20px;
    margin: 1% 0 1% 0;
    border: none 0;
    cursor: pointer;
}

/************************************************************************************
smaller than 991
*************************************************************************************/
@media screen and (max-width: 991px) {
    .loginlist1 {
        float: left;
        width: 100%;
        padding: 8px 0 0 0;
    }
}

.GridFont,
.Test,
.rowstyle {
    text-decoration: none;
}

.booktable,
.clibooktbl {
    border-collapse: collapse;
}

#containerVehicle {
    float: left;
    width: 100%;
}

.SelectFlight {
    background-image: url(../Images/booknow.html);
    cursor: pointer;
    width: 124px;
    height: 42px;
    border: 0;
    background-color: Transparent;
    color: #000;
}

.TextBox,
.TextBox1 {
    border-style: solid;
    border-width: 1px;
}

.Button,
.SubButton {
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
}

.FlightHeaderStyle {
    font-family: tahoma;
    font-size: 14px;
    color: #fff;
    font-weight: bolder;
    background: url(../Images/box-h1.html) repeat-x #e8e8e8;
    border-color: #e8e8e8;
    cursor: default;
}

.WelComeText1,
.WelComeText2 {
    font-weight: 400;
    text-transform: uppercase;
}

.WelComeText {
    width: 200px;
    margin-top: 426px;
    margin-left: 180px;
    float: left;
    text-align: center;
    line-height: 38px;
}

.WelComeText1 {
    font-size: 42px;
    color: #f1c18e;
}

.WelComeText2 {
    font-size: 22px;
    color: #dfab73;
}

.GridFont,
.RadioButtonList,
.Text,
.Text1 {
    font-size: 7.5pt;
}

.Button,
.Label {
    font-weight: 700;
}

.welcome {
    float: left;
    height: 700px;
    width: 100%;
    padding: 0;
    background: url(../images/welcomeHome.png) left top no-repeat #f2f4ef;
}

.TextBox {
    font-family: Verdana, Helvitica, Sanserif;
    border-color: #a1bbd6;
}

.Button,
.Combo,
.GridFont,
.Label,
.RadioButtonList,
.Text,
.Text1,
.TextBox1 {
    font-family: Verdana;
}

.TextBox1 {
    border-color: #557faf;
}

.MainMenu,
.grid-header {
    font-size: 7.5pt;
    color: #000;
    font-family: Verdana;
}

.GridFont {
    color: #000;
}

.RowStyle {
    border-bottom: #a9a9a9 1px solid;
}

.RadioButtonList {
    color: #000;
}

.Text {
    color: #000;
    text-align: right;
}

.Grid,
.GridHeaderImage,
.Title,
.rowstyle {
    text-align: center;
}

.Text1 {
    color: #000;
}

.Label {
    font-size: 8pt;
    color: #000;
}

.Button {
    width: 150px;
    font-size: 10pt;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    cursor: pointer;
    padding: 9px 0;
    border: 0;
    text-border: none 0;
}

.Button:hover {
    color: #333;
}

.Combo {
    font-size: 11px;
    height: 20px;
    width: 200px;
    border-bottom-style: solid;
    border-bottom-width: 1px;
    border-bottom-color: #557faf;
}

.Title {
    font-size: 22px;
    color: #fff;
    font-family: "Oleo Script", cursive;
    font-weight: 400;
    background-color: #272727;
    -moz-border-radius: 0 0 10px 10px;
    -webkit-border-radius: 0 0 10px 10px;
    -khtml-border-radius: 0 0 10px 10px;
    border-radius: 0 0 10px 10px;
    padding: 5px 0;
}

.Grid,
.GridHeaderImage,
.Test {
    font-family: Verdana;
}

.TableBackGround {
    background-image: url(../images/tab_bg.html);
}

.SelectedMenuItemStyle {
    font-size: 8pt;
    color: #000;
    font-family: Verdana;
}

.Test {
    font-size: 7.5pt;
    color: #000;
}

.PageHeader {
    background-image: url(../images/userbar_bg.html);
    background-repeat: repeat-x;
}

.GridHeaderImage {
    font-size: 7pt;
    background-image: url(../images/grid_bg.html);
    color: #000;
    font-weight: 700;
}

.PaddingLeft {
    padding-left: 5px;
}

.Grid {
    border: 1px solid #e8e8e8;
    border-bottom: 2px solid #e8e8e8;
    background-color: #fff;
    font-size: 9pt;
}

.rowstyle,
.rowstyle2 {
    font-family: Arial, Verdana;
    font-size: 12px;
    font-weight: 700;
    color: #333;
    padding: 10px 0;
    border: 1px solid #929292;
    text-transform: uppercase;
}

.rowstyle2 {
    text-decoration: none;
    background: #eff1f1;
}

.HeaderStyle,
.HeaderStyle2 {
    font-weight: 400;
    text-decoration: none;
    font-family: Verdana;
}

.HeaderStyle {
    font-size: 13px;
    color: #fff;
    background-color: #000;
    border: 1px solid #dcdcdc;
}

.HeaderStyle th {
    text-align: center;
    padding: 2px;
}

table td {
    padding: 2px;
}

.HeaderStyle2 {
    font-size: 17px;
    color: #fff;
    padding: 3px 0;
    background-color: #333;
    border: 1px solid #fff;
    text-align: center;
}

.discount,
.discount-text {
    font-family: Arial;
    text-decoration: none;
    text-align: right;
}

.AlbumShadow {
    float: left;
    margin-top: 8px;
    margin-left: 20px;
    background: #aaa;
}

.SubButton,
.discount,
.discount-text {
    font-weight: 700;
    float: right;
}

.AlbumShadow img {
    margin: -4px 4px 4px -4px;
    display: block;
    position: relative;
    padding: 4px;
    border-left: 1px solid #ccc;
    border-top: 1px solid #ccc;
    border-right: 1px solid #888;
    border-bottom: 1px solid #000;
    background: #fcfcfc;
}

.DisplayNone,
.none {
    display: none;
}

.discount {
    width: 140px;
    height: 84px;
    background-image: url(../Images/discount.html);
    background-repeat: no-repeat;
    background-position: right center;
    padding-right: 80px;
    padding-bottom: 14px;
    font-size: 70px;
    color: #fff;
    margin-top: -10px;
}

.discount-text {
    font-size: 16px;
    color: #000;
    margin-top: 20px;
}

.SubButton,
.SubButton2 {
    color: #fff;
    text-decoration: none;
    text-align: center;
    letter-spacing: normal;
    word-spacing: normal;
    white-space: normal;
    background-color: #000000;
    cursor: pointer;
    background-image: url(../images/GetBtn.html);
    background-repeat: repeat-x;
    background-position: left top;
}

.SubButton {
    font-family: arial;
    font-size: 13px;
    -khtml-border-radius: 3px;
    border-radius: 3px;
    padding: 6px 18px;
    margin: 0 0 5px 10px;
    border: 0;
    z-index: 999;
}

.SubButton2,
.SubButton3 {
    font-family: arial;
    font-weight: 700;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    -khtml-border-radius: 3px;
    font-size: 13px;
}

.SubButton2 {
    border-radius: 3px;
    padding: 7px 20px;
    margin: 5px;
    border: 0;
}

.SubButton3 {
    color: #fff;
    text-decoration: none;
    text-align: center;
    border-radius: 3px;
    letter-spacing: normal;
    word-spacing: normal;
    white-space: normal;
    background-color: #333;
    padding: 7px 15px;
    border: 0;
    cursor: pointer;
}

.GetButton2,
.logoutbtn,
.vehiclebtn {
    font-weight: 400;
    color: #fff;
    text-decoration: none;
    letter-spacing: normal;
    text-align: center;
    word-spacing: normal;
    white-space: normal;
    cursor: pointer;
}

.GetButton2 {
    font-size: 16px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    -khtml-border-radius: 3px;
    border-radius: 3px;
    background-color: #3e3e3e;
    background-image: url(../images/GetBtn.html);
    background-repeat: repeat-x;
    background-position: left top;
    padding: 0.5% 3%;
    text-transform: uppercase;
    border: 0;
}

.vehiclebtn {
    float: left;
    width: 261px;
    margin: 10px 5px 10px 0;
    font-size: 17px;
    border-radius: 3px;
    background: #333;
    padding: 7px 0;
    border: 0;
}

.logoutbtn,
.userfield {
    -webkit-border-radius: 3px;
    -khtml-border-radius: 3px;
}

.vehiclebtn:hover {
    color: #fff;
    background: #000;
}

.logoutbtn {
    float: right;
    font-size: 14px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    background: #e84c3d;
    padding: 4px 15px;
    margin: 2px 0 0;
    border: 0;
}

.screnloading {
    position: fixed;
    text-align: center;
    height: 100%;
    width: 100%;
    top: 0;
    right: 0;
    left: 0;
    z-index: 100;
    background: #000;
    opacity: 0.6 !important;
}

.screnloading2 {
    z-index: 10;
    padding: 10px;
    position: relative;
    top: 10%;
    left: 0;
}

.lableerror {
    float: right;
    font-size: 18px;
    font-weight: 400;
    color: red;
    text-decoration: none;
    border: 0;
    letter-spacing: 0;
}

.lableerror2 ul,
.lableerror3 {
    font-size: 15px;
    color: red;
    border: 0;
    font-weight: 400;
    text-decoration: none;
}

.lableerror3 {
    float: left;
}

.lableerror2 ul {
    width: 100%;
    float: right;
}

.userfield,
.userfield2 {
    -moz-border-radius: 3px;
}

.lableerror2 li {
    float: left;
    padding: 0;
    margin: 0 16px;
}

.lableerror2 li a {
    float: left;
    padding: 0x 20px;
}

.userfield {
    width: 280px;
    float: left;
    font-size: 13px;
    font-weight: 400;
    color: #565656;
    text-decoration: none;
    padding: 5px 4px;
    border-radius: 3px;
    background: #fff;
    border: 1px solid #c8c8c8;
}

.userfield2,
.userfield3 {
    float: left;
    font-size: 13px;
    font-weight: 400;
    color: #565656;
    text-decoration: none;
    padding: 5px 4px;
    -webkit-border-radius: 3px;
    -khtml-border-radius: 3px;
    background: #fff;
    margin: 5px 10px;
}

.userfield2 {
    width: 170px;
    border-radius: 3px;
    border: 1px solid #c8c8c8;
}

.userfield3 {
    width: 250px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    border: 1px solid #c8c8c8;
}

.userfield4,
.userfield5 {
    float: left;
    font-size: 13px;
    font-weight: 400;
    color: #565656;
    text-decoration: none;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    -khtml-border-radius: 3px;
    background: #fff;
    padding: 5px 4px;
}

.userfield4 {
    width: 240px;
    margin: 5px 10px;
    border-radius: 3px;
    border: 1px solid #c8c8c8;
}

.userfield5 {
    width: 270px;
    border-radius: 3px;
    border: 1px solid #c8c8c8;
}

.clinfield,
.milefield {
    font-weight: 400;
    text-decoration: none;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    -khtml-border-radius: 3px;
    font-size: 13px;
    color: #565656;
    background: #fff;
    float: left;
}

.milefield {
    width: 100%;
    padding: 5px 4px;
    margin: 5px 0;
    border-radius: 3px;
    border: 1px solid #c8c8c8;
}

.clinfield {
    width: 100%;
    padding: 6px 4px;
    margin: 0;
    border-radius: 3px;
    border: 1px solid #c8c8c8;
}

.BackButton,
.clinfield2 {
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    -khtml-border-radius: 3px;
    font-weight: 400;
    text-decoration: none;
}

.clinfield2 {
    width: 100%;
    float: left;
    font-size: 13px;
    color: #565656;
    padding: 7px 4px;
    margin: 0 5px 0 0;
    border-radius: 3px;
    background: #fff;
    border: 1px solid #c8c8c8;
}

.BackButton {
    font-family: Verdana;
    font-size: 14px;
    color: #fff;
    text-align: center;
    border-radius: 3px;
    letter-spacing: normal;
    word-spacing: normal;
    white-space: normal;
    background-color: #3e3e3e;
    background-image: url(../images/GetBtn.html);
    background-repeat: repeat-x;
    background-position: left top;
    padding: 5px 18px;
    margin: 0 0 1%;
    float: right;
    border: 0;
    cursor: pointer;
}

.setfield {
    width: 450px;
    float: left;
    font-size: 14px;
    font-weight: 400;
    color: #333;
    text-decoration: none;
    padding: 8px 10px !important;
    margin: 0;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    -khtml-border-radius: 3px;
    border-radius: 3px;
    background: #fff;
    border: 1px solid #c8c8c8;
}

.formerror,
.formerror2 {
    font-weight: 700;
    text-decoration: none;
    padding: 5px 0;
    text-align: center;
    float: left;
    font-family: arial;
}

.required {
    border: 2px solid red;
}

.formerror {
    width: 99.8%;
    font-size: 14px;
    color: #d11919;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    margin: 8px 0 0;
    border: 1px solid #ca2020;
    background: url(../images/warning3.gif) center left no-repeat #ffdcdc;
}

.formerror2 {
    width: 100%;
    font-size: 17px;
    color: #4b890f;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    margin: 0 0 10px;
    border: 1px solid #78ca20;
    background: url(../images/warning3.gif) center left no-repeat #dbefce;
    letter-spacing: 0;
}

.cntfield {
    width: 290px;
    float: left;
    font-size: 15px;
    font-weight: 400;
    color: #646464;
    text-decoration: none;
    padding: 5px;
    border-radius: 4px;
    background: #fff;
    border: 1px solid #0f7cb1;
}

.cntupdatebtn,
.lblerrorbox {
    font-weight: 700;
    text-decoration: none;
}

.cntupdatebtn {
    font-size: 13px;
    color: #fff;
    text-align: center;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    -khtml-border-radius: 3px;
    border-radius: 3px;
    letter-spacing: normal;
    word-spacing: normal;
    white-space: normal;
    background-color: #3e3e3e;
    background-image: url(../images/GetBtn.html);
    background-repeat: repeat-x;
    background-position: left top;
    padding: 9px 30px;
    margin: 5px;
    border: 0;
    cursor: pointer;
}

.lblerrorbox {
    float: left;
    width: 92.8%;
    font-family: arial;
    font-size: 14px;
    color: #d11919;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    padding: 7px 0 7px 7%;
    margin: 0 0 8px;
    text-align: left;
    border: 1px solid #ca2020;
    background: url(../images/warning3.gif) center left no-repeat #ffdcdc;
}

.pagefooter,
.records_perPage {
    font-size: 15px;
    color: #fff;
    font-weight: 400;
    letter-spacing: normal;
}

.noerror,
.pagefooter {
    text-align: center;
    text-decoration: none;
}

.droparrowbox {
    float: right;
    /* width: 15px; */
    margin: 1px -3px 0 0;
    padding: 0;
}

.dropdownarrow:active,
.dropdownarrow:hover,
.dropdownarrow:link,
.dropdownarrow:visited,
.dropuparrow:hover {
    margin-left: 0;
    margin-right: 0;
    vertical-align: middle;
    width: 14px;
    height: 7px;
    display: inline-block;
}

.dropuparrow:active,
.dropuparrow:link,
.dropuparrow:visited {
    margin-left: 0;
    margin-bottom: 2px;
    vertical-align: middle;
    display: inline-block;
    background: url(../images/arrows.png) 28px 7px;
    width: 14px;
    height: 7px;
}

.dropuparrow:hover {
    background: url(../images/arrows.png) -15px 7px;
}

.dropdownarrow:active,
.dropdownarrow:link,
.dropdownarrow:visited {
    background: url(../images/arrows.png) 13px -15px;
}

.dropdownarrow:hover {
    background: url(../images/arrows.png) -28px 15px;
}

.pagefooter {
    word-spacing: normal;
    white-space: normal;
    background: #333;
    padding: 6px 20px;
    border-radius: 0 0 3px 3px;
    border: 0;
    cursor: pointer;
}

.records_perPage {
    float: left;
    text-decoration: none;
    padding: 0;
    border: 0;
}

.pagefield {
    width: 60px;
    font-size: 13px;
    font-weight: 400;
    color: #565656;
    text-decoration: none;
    padding: 3px 4px;
    margin: 0 0 0 5px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    -khtml-border-radius: 3px;
    border-radius: 3px;
    background: #fff;
    border: 1px solid #c8c8c8;
}

.page-arrow {
    width: 45%;
    float: right;
    font-size: 15px;
    font-weight: 400;
    color: #fff;
    text-decoration: none;
    letter-spacing: normal;
    margin: 0 0 0 -5px;
    border: 0;
    line-height: 16px;
}

.feederror3,
.noerror {
    -webkit-border-radius: 5px;
}

.noerror {
    float: left;
    width: 99.8%;
    font-family: arial;
    font-size: 14px;
    font-weight: 700;
    color: #d11919;
    border-radius: 5px;
    padding: 5px 0;
    margin: 10px 0 0;
    border: 1px solid #ca2020;
    background: #ffdcdc;
}

.clibooktbl {
    border: 1px solid #666;
    font: 14px;
    background: #fff;
}

.btnin {
    border: none;
    font-family: inherit;
    font-size: inherit;
    color: inherit;
    background: 0 0;
    cursor: pointer;
    padding: 5px 80px;
    display: inline-block;
    margin: 0;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 0;
    font-weight: 700;
    outline: 0;
    position: relative;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
}

.btnin-3e,
.surbtn {
    border-radius: 3px;
}

.btnin:after {
    content: "";
    position: absolute;
    z-index: -1;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
}

.btnin-3 {
    background: #333;
    color: #fff;
}

.btnin-3:hover {
    background: #101010;
}

.btnin-3:active {
    background: #f58500;
    top: 2px;
}

.btnin-3:before {
    position: absolute;
    height: 100%;
    left: 0;
    top: 0;
    line-height: 3;
    font-size: 16px;
    width: 60px;
}

.btnin-3e {
    padding: 8px 45px 8px 20px;
    overflow: hidden;
    font-weight: 400;
}

.btnin-3e:before {
    left: auto;
    right: 10px;
    z-index: 2;
}

.btnin-3e:after {
    width: 30%;
    height: 200%;
    background: rgba(255, 255, 255, 0.1);
    z-index: 1;
    right: 0;
    top: 0;
    margin: -5px 0 0 -5px;
    -webkit-transform-origin: 0 0;
    -webkit-transform: rotate(-20deg);
    -moz-transform-origin: 0 0;
    -moz-transform: rotate(-20deg);
    -ms-transform-origin: 0 0;
    -ms-transform: rotate(-20deg);
    transform-origin: 0 0;
    transform: rotate(-20deg);
}

.btnin4,
.btnin5 {
    padding: 7px 20px;
    margin: 0 0 0 5px;
    float: right;
}

.btnin-3e:hover:after {
    width: 40%;
}

.btnin4 {
    font-size: 13px;
}

.btnin5 {
    font-size: 14px;
    text-transform: none;
    background: #fb5f5f;
}

.excelbtn,
.surbtn {
    text-transform: uppercase;
    cursor: pointer;
}

.blutset {
    float: left;
    margin: 5px 0;
}

.lct-field {
    width: 230px;
    margin: 1px 10px 0;
    font-size: 13px;
    border: 1px solid #aaa;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    padding: 6px 5px;
    outline: 0;
    color: #272727;
}

.HeaderStyle3,
.HeaderStyle4 {
    font-size: 21px;
    font-weight: 400;
    padding: 7px 0;
    text-decoration: none;
}

.HeaderStyle3 {
    color: #697079;
    text-align: center;
    background: url(../images/scrollhd-bg2.html) left center repeat-x #e4effd;
}

.HeaderStyle4,
.surradiolist {
    color: #15428b;
    text-align: center;
}

.HeaderStyle4 {
    background: url(../images/scrollhd-bg3.html) left top repeat-x #bfdbff;
}

.surradiolist {
    font-size: 15px;
    font-weight: 400;
    margin: 0 25px 0 0;
    text-decoration: none;
    letter-spacing: 0;
}

.surfield,
.surfield2 {
    width: 250px;
    font-size: 13px;
    font-weight: 400;
    text-decoration: none;
    float: left;
}

.surradiobtn {
    margin: 0 5px 0 0;
}

.surfield {
    color: #000;
    padding: 5px 4px;
    margin: 0 10px 0 0;
    border-radius: 0;
    background: url(../images/drop-arrow.html) right center no-repeat #eaf2fb;
    border: 1px solid #abc1de;
}

.surfield2 {
    color: #565656;
    padding: 4px;
    margin: 0;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    -khtml-border-radius: 3px;
    border-radius: 3px;
    background: #fff;
    border: 1px solid #c8c8c8;
}

.scrollbox {
    width: 100%;
    max-height: 385px;
    float: left;
    overflow: scroll;
    overflow: auto;
}

.scrolltable,
.scrolltable2 {
    width: 100%;
    font-size: 14px;
    font-weight: 100;
    color: #565656;
    text-decoration: none;
}

.excelbtn,
.surbtn,
.surtextbox {
    font-weight: 400;
    text-decoration: none;
}

.surlist {
    float: left;
    padding: 0;
    margin: 0;
}

.surlist2 {
    float: left;
    margin: 3px 20px 0 0;
}

.surbtn {
    font-size: 15px;
    color: #fff;
    background: #3e3e3e;
    padding: 5px 30px;
    margin: 5px 5px 5px 0;
    border: 0;
}

.surbtn:hover {
    color: #fff;
    background: #000;
}

.excelbtn {
    font-size: 14px;
    color: #fff;
    border-radius: 3px;
    padding: 2px 0 2px 40px;
    margin: 0;
    border: 1px solid #328c5c;
    background: url(../images/excel-icon.html) left center no-repeat #1f7246;
}

.notecvr,
.surtextbox,
.surtextbox2 {
    margin: 0;
    border: none;
}

.surtextbox {
    width: 100%;
    font-size: 16px;
    color: #565656;
    text-align: center;
    padding: 4px 0;
}

.surtextbox2 {
    width: 20%;
    font-size: 13px;
    font-weight: 400;
    color: #565656;
    text-decoration: none;
    text-align: center;
    padding: 0;
}

.scrollhd,
.scrollhd2 {
    width: 48%;
    font-weight: 400;
    text-decoration: none;
    text-align: center;
}

.scrollhd {
    font-size: 18px;
    color: #27413e;
    padding: 6px 0;
    border: 1px solid #9eb6ce;
    background: url(../images/scrollhd-bg.html) center bottom repeat-x #f9fcfd;
}

.scrollhd2 {
    font-size: 18px;
    color: #fff;
    padding: 0;
    border-bottom: 1px solid #9eb6ce;
    border-right: 1px solid #9eb6ce;
}

.scrollhd3,
.scrollhd4 {
    width: 4.1%;
    border-bottom: 1px solid #9eb6ce;
    border-right: 1px solid #9eb6ce;
}

.scrollhd3 {
    font-size: 18px;
    font-weight: 400;
    color: #27413e;
    text-decoration: none;
    text-align: center;
    padding: 6px 0;
    background: url(../images/number-arrow.html) right bottom no-repeat #a9c4e9;
}

.notecvr,
.scrollhd4 {
    font-size: 16px;
    font-weight: 400;
    text-decoration: none;
    text-align: center;
}

.scrollhd4 {
    color: #000;
    padding: 0;
    background: #e4ecf7;
}

.notecvr {
    float: left;
    color: #000;
    padding: 5px 15px;
    border: 1px solid #ecc011;
    background: #f3f2b3;
    border-radius: 3px;
}

.noteicon {
    float: left;
    margin: 4px 7px 0 0;
}

.notetext {
    float: left;
}

.notebox {
    width: 150px;
    float: right;
    font-size: 14px;
    font-weight: 400;
    color: #000;
    text-decoration: none;
    text-align: center;
    padding: 2px 0 2px 35px;
    margin: 0;
    border: none;
    border: 1px solid #ecc011;
    background: url(../images/warning.html) left center no-repeat #f3f2b3;
    border-radius: 3px;
}

#notepopBox2 {
    float: left;
    color: #000;
}

#popBoxWrapper {
    width: 52px;
    height: 175px;
    position: absolute;
    margin-left: 4px;
    margin-top: 40px;
}

#popBox {
    display: none;
    float: right;
    width: 488px;
    height: 206px;
    background-color: #f7f7f7;
    -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    border: 1px solid #ccc;
    border: 1px solid rgba(0, 0, 0, 0.2);
}

#popBoxArrow {
    width: 0;
    height: 0;
    border-left: 11px solid transparent;
    border-right: 11px solid transparent;
    border-bottom: 11px solid #376091;
    position: absolute;
    left: 12px;
    top: -10px;
}

.booktable {
    float: left;
    width: 100%;
    font-family: Arial, Verdana;
    font-size: 13px;
    font-weight: 400;
    color: #333;
    text-decoration: none;
    border: 1px solid #fff;
}

.booktable-h1 {
    color: #fff;
    background-color: #1b1b1b;
}

.booktable-tr {
    color: #000;
    background-color: #eff1f1;
}

.newbooknowbtn:active,
.newbooknowbtn:link,
.newbooknowbtn:visited {
    float: left;
    width: 100%;
    font-family: Arial, Verdana;
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    text-align: center;
    background: #252729;
    padding: 7px 0 4px;
    margin: 0;
    border-radius: 3px;
    border: 0;
}

.deletelink:active,
.deletelink:hover,
.deletelink:link,
.deletelink:visited {
    float: right;
    width: 25px;
    height: 25px;
    margin: 2px 0 0;
    transition: 1s;
    color: #fff;
}

.newbooknowbtn:hover {
    color: #fff;
    background: #268935;
}

.deletelink:active,
.deletelink:link,
.deletelink:visited {
    background: url(../images/delete.png) right center no-repeat;
}

.deletelink:hover {
    background: url(../images/delete-h.png) right center no-repeat;
}

.testfield,
.testfield2 {
    font-size: 15px;
    color: #202020;
    padding: 6px 10px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    -khtml-border-radius: 3px;
    background: #fff;
    float: left;
    font-weight: 400;
    text-decoration: none;
}

.testfield {
    width: 305px;
    border-radius: 3px;
    border: 1px solid #c4c4c5;
}

.testfield2 {
    width: 80px;
    border-radius: 3px;
    border: 1px solid #c4c4c5;
}

.postbtn {
    margin: 1% 0 0;
    float: left;
    font-size: 13px;
    font-weight: 400;
    color: #fff;
    text-decoration: none;
    padding: 7px 25px;
    background: #000;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    -khtml-border-radius: 3px;
    border-radius: 3px;
    border: 0;
    cursor: pointer;
}

.feederror,
.feederror2 {
    float: left;
    transition: 1s;
    color: red;
}

.feederror {
    margin: 7px 0 0 15px;
}

.feederror2 {
    font-size: 16px;
    font-weight: 400;
    margin: 7px 0 0;
}

.feederror3,
.feederror4 {
    float: left;
    width: 99.8%;
    font-family: arial;
    font-size: 14px;
    font-weight: 700;
    padding: 5px 0;
    margin: 8px 0 0;
    text-align: center;
}

.feederror3 {
    color: #56792e;
    text-decoration: none;
    border-radius: 5px;
    border: 1px solid #759e45;
    background: #cce7ad;
}

.feederror4 {
    color: #b53535;
    text-decoration: none;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    border: 1px solid #b53535;
    background: #eebdbd;
}

.favbtn,
.favfeild {
    color: #fff;
    font-size: 14px;
    text-decoration: none;
}

.favbtn {
    padding: 4px 20px;
    margin: 0 0 0 5px;
    border: none;
    border-radius: 3px;
    background: #0897c4;
}

.favfeild {
    padding: 3px 20px;
    border: 1px solid #ccc;
    border-radius: 3px;
    background: #fff;
}

.modal {
  display: none;
  position: fixed;
  z-index: 999;
  padding-top: 100px;
  left: 0; top: 0;
  width: 100%; height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.5);
}

.modal-content {
  background-color: #fff;
  margin: auto;
  padding: 20px;
  width: 80%;
  max-width: 300px;
  text-align: center;
  border-radius: 8px;
}


@media screen and (max-width: 568px) {
    .testfield {
        width: 100%;
        float: left;
        font-size: 15px;
        font-weight: 400;
        color: #202020;
        text-decoration: none;
        padding: 6px 10px;
        -moz-border-radius: 3px;
        -webkit-border-radius: 3px;
        -khtml-border-radius: 3px;
        border-radius: 3px;
        background: #fff;
        border: 1px solid #c4c4c5;
    }
}

@media screen and (max-width: 991px) {
    .testfield,
    .testfield2 {
        float: left;
        font-size: 15px;
        font-weight: 400;
        color: #202020;
        text-decoration: none;
        padding: 6px 10px;
        background: #fff;
        margin-left: 5px;
    }

    .testfield {
        width: 305px;
        -moz-border-radius: 3px;
        -webkit-border-radius: 3px;
        -khtml-border-radius: 3px;
        border-radius: 3px;
        border: 1px solid #c4c4c5;
    }

    .testfield2 {
        width: 80px;
        -moz-border-radius: 3px;
        -webkit-border-radius: 3px;
        -khtml-border-radius: 3px;
        border-radius: 3px;
        border: 1px solid #c4c4c5;
    }
}

#lkbtn_lgout {
    color: #fff;
}

.rs_top-section {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.about-inner-app {
    padding: 0 !important;
    list-style: none !important;
    display: flex;
}

.about-inner-app li {
    width: 200px;
    padding: 15px 10px 0 0 !important;
}

.about-inner-app li img {
}

.loadingDiv {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #00000067;
    display: flex;
    align-items: center;
    justify-content: center;
}

#loadingDiv {
    text-align: center;
    background: rgba(0, 0, 0, 0.5) url(images/ajax-loader.html) no-repeat right center;
    display: none;
    position: fixed;
    z-index: 99999999999;
    height: 100vh;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
}

.get-off {
    font-size: 36px !important;
    color: #ffffff !important;
}

.g-recaptcha {
    /* transform: scale(0.9); */
    position: relative;
    z-index: 99;
}

.four_0_four img.thnkimg {
    margin: 0px auto;
    display: block;
    width: 70%;
}
.four_0_four h2 {
    color: #000;
    font-size: 32px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-transform: capitalize;
    padding-bottom: 28px;
    text-align: center;
    color: #263238;
    padding-bottom: 12px;
}
.four_0_four h2::after {
    display: none;
}
.four_0_four a {
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    font-family: "Playfair", serif;
    padding: 15px 40px;
    background: linear-gradient(
        251deg,
        #ccab54 -2.7%,
        #e0cc6b 27.47%,
        #f4e980 49.26%,
        #cdb457 69.38%,
        #c3a34b 91.17%,
        #c09f49 113.52%,
        #c09f49 113.52%,
        #c3a34b 141.17%,
        #cdb457 169.38%,
        #f4e980 189.26%,
        #e0cc6b 217.47%,
        #ccab54 233.52%
    );
    background-size: 200% 100%;
    background-position: left;
    transition: all 0.5s ease-in-out;
    box-shadow: -3px 4px 3.1px 0 rgba(205, 180, 87, 0.25);
    color: #000;
    text-align: center;
    font-size: 13px;
    margin: 0px auto;
    display: table;
    transition: 0.5s;
}
.four_0_four a i {
    padding-left: 18px;
    color: #000;
    transition: color 0.5s ease-in-out;
}
.four_0_four a:hover {
    background-position: right;
    color: #fff;
    box-shadow: -3px 4px 3.1px 0 rgba(205, 180, 87, 0.25);
}
.four_0_four a:hover i {
    color: #fff;
}

.thanku {
    padding: 0 0 40px;
}
.thanku::before {
    display: none;
}
.thanku img.thnk {
    width: 50%;
    margin: auto;
    display: block;
}
.thanku a.backhme {
    border: none;
    padding: 10px 40px;
    background: linear-gradient(-45deg, #b58c6a, #ffddc2, #000000, #7c7c7c);
    background-size: 300% 300%;
    color: var(--white-color);
    font-weight: 500;
    transition: all 0.3s ease;
    animation: buttonanimation 2s ease infinite;
    margin: 0px auto;
    display: table;
}

.thanku a.backhme:hover {
    background: var(--primary-color);
    color: var(--white-color);
}
.thanku a.backhme:hover i {
    color: #fff;
}

.fromcaptcharow {
    width: 60%;
    margin: 0px auto;
    align-items: center;
}
.fromcaptcharow .custom-btn {
    padding: 20px 40px !important;
}

.submit_btn.custom-btn{
    border: none;
    padding: 10px 40px;
    background: linear-gradient(-45deg, #B58C6A, #ffddc2, #000000, #7c7c7c);
    background-size: 300% 300%;
    color: var(--white-color);
    font-weight: 500;
    transition: all 0.3s ease;
    animation: buttonanimation 2s ease infinite;
}

#thankYouModal {
  position: fixed;
  z-index: 1000;
  padding-top: 100px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.6);
  display: none;
}
#thankYouModal .custom-modal-content {
  background-color: #fff;
  margin: auto;
  padding: 30px;
  border: 1px solid #888;
  width: 90%;
  max-width: 500px;
  text-align: center;
  border-radius: 8px;
  position: relative;
}
#thankYouModal .custom-modal-content p {
  margin-top: 15px;
}
#thankYouModal .close-modal {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 28px;
  cursor: pointer;
}

@media only screen and (min-width: 1921px) and (max-width: 7368px) {
}

@media only screen and (min-width: 1600px) and (max-width: 1920px) {
}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {
    html {
        overflow-x: hidden;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .textAbout h3 {
        font-size: 24px;
    }

    html {
        overflow-x: hidden;
    }

    .maScard {
        padding: 10px;
    }

    .sec-app .text-box h2 {
        font-size: 32px;
        line-height: 39px;
    }

    .fleet-card .fleet-1 {
        height: 300px;
        object-fit: cover;
    }

    .fleetPadd {
        padding: 10px 30px 10px 30px;
    }

    .bookingForm-left {
        min-height: 560px;
    }

    .sec-extra .card-box h3 {
        font-size: 15px;
    }

    .about_section {
        padding: 30px 0;
    }

    .textAbout h3 {
        font-size: 26px;
    }

    .main-banner .hero-title h1 {
        font-size: 54px;
    }

    .main-banner .hero-title {
        gap: 20px;
    }

    .main-banner .banner-slider .img-box img {
        height: 550px;
        object-fit: cover;
    }

    .custom-btn {
        padding: 10px 20px;
    }

    .phoneDiv {
        text-align: right;
    }

    .sec-app {
        padding: 50px 0;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    html {
        overflow-x: hidden;
    }

    .maScard {
        padding: 10px;
    }

    .maScard h3 {
        font-size: 20px;
    }

    .sec-app {
        padding: 50px 0;
    }

    .fleet-card .fleet-1 {
        height: 240px;
        object-fit: cover;
    }

    .fleetPadd {
        padding: 10px 30px 10px 30px;
    }

    .bookingForm-left {
        min-height: 560px;
    }

    .sec-extra .card-box h3 {
        font-size: 15px;
    }

    .about_section {
        padding: 30px 0;
    }

    .textAbout h3 {
        font-size: 26px;
    }

    .main-banner .hero-title h1 {
        font-size: 54px;
    }

    .main-banner .hero-title {
        gap: 20px;
    }

    .main-banner .banner-slider .img-box img {
        height: 550px;
        object-fit: cover;
    }

    .custom-btn {
        padding: 10px 20px;
    }

    .phoneDiv {
        text-align: right;
    }

    #lblEmail {
        font-size: 13px;
    }

    .fromcaptcharow {
        width: 85%;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    html {
        overflow-x: hidden;
    }

    .desktop-header {
        display: none;
    }

    .mobile-header {
        display: block;
    }

    .mobile-logo {
        width: 140px;
    }

    .mobile-header {
        width: 100%;
        height: 100%;
        padding: 10px 0;
        background: var(--secondary-color);
    }

    .navbar-light .navbar-toggler {
        background: var(--primary-color);
    }

    .navbar-nav {
        margin-top: 20px;
        gap: 10px;
    }

    .navbar-nav .nav-item {
        text-align: center;
        width: 100%;
        border-bottom: 1px solid var(--white-color);
    }

    .navbar-nav .nav-item .nav-link {
        color: var(--white-color) !important;
    }

    .main-banner .hero-title {
        gap: 10px;
    }

    .main-banner .hero-title h1 {
        font-size: 45px;
    }

    .hero-title h3 {
        font-size: 34px;
        text-align: center;
    }

    .main-banner .banner-slider .img-box img {
        height: 400px;
    }

    .main-banner .slick-next {
        top: unset;
        bottom: 5%;
        right: 3%;
        width: 45px;
        height: 45px;
    }

    .main-banner .slick-prev {
        left: unset;
        bottom: 5%;
        right: 10%;
        width: 45px;
        height: 45px;
        top: unset;
    }

    .sec-app {
        padding: 30px 0;
    }

    .sec-app .text-box h2 {
        font-size: 30px;
        line-height: 36px;
    }

    .sec-app .text-box {
        margin-top: 20px;
    }

    .sec-app .text-box .btn-list {
        padding: 0px 0;
        width: 100%;
    }

    .about_section {
        padding: 30px 0;
    }

    .textAbout {
        padding: 10px 0px;
    }

    .textAbout h3 {
        font-size: 24px;
    }

    .our-services {
        padding: 30px 0 30px 0;
    }

    .maScard {
        padding: 30px 10px;
        min-height: auto;
    }

    .our-fleet {
        padding: 30px 0;
    }

    .fleet-card .fleet-1 {
        height: 230px;
    }

    .fleetPadd {
        padding: 20px 30px 20px 30px;
    }

    .contact-us {
        padding: 30px 0;
    }

    .topabout-sec h2 {
        font-size: 40px;
    }

    .topabout-sec {
    }

    .main-Contact {
        height: auto;
        padding: 30px 15px;
    }

    .main-Contact h3 {
        margin-bottom: 20px;
    }

    .bootom-footer-section {
        padding: 10px;
    }

    .bookingForm-left {
        padding: 30px 15px;
    }

    .bottom-footer-content {
        flex-direction: column;
    }

    .topabout-sec .topstyleH {
        margin-bottom: 0px;
    }

    .left-footer-content .footer-logo {
        width: 60%;
    }

    .center-footer-content h2 {
        margin-top: 20px;
    }

    .mercedes-bmw {
        padding: 30px 0;
    }

    .fleetimage img {
        border: 5px solid var(--primary-color);
    }

    .mainFleetDiv {
        gap: 10px;
    }

    .fleetcontent {
        padding-left: 0;
    }

    .fleetcontent h2 {
        font-size: 40px;
    }

    .sec-result .upper-list {
        display: none;
    }

    .sec-result {
        padding: 30px 0;
    }

    .sec-result .number-box {
        padding: 10px 0px;
    }

    .sec-result .for-line::before {
    }

    .update-fleet-box .fleet-detail {
        padding: 10px 0;
        border-right: unset;
        border-left: unset;
    }

    .loginlist {
        padding: 1% 0% 0 0%;
    }

    .loginlist2 {
        width: 100%;
    }

    .loginfield {
        width: 100%;
    }

    .welcome {
        height: 400px;
        background-size: cover;
    }

    .WelComeText {
        width: 200px;
        margin-top: 234px;
        margin-left: 60px;
        line-height: 28px;
    }

    .WelComeText1 {
        font-size: 25px;
        color: #f1c18e;
    }

    .WelComeText2 {
        font-size: 20px;
        color: #dfab73;
    }

    .setfield {
        width: auto;
    }
    .thanku img.thnk {
        width: 80%;
    }
    .thanku img.thnk {
        width: 80%;
    }

    .fromcaptcharow {
        width: 95%;
    }
    .fromcaptcharow .custom-btn{
        margin-left: auto;
        display: block;
    }
}

@media only screen and (min-width: 481px) and (max-width: 767px) {
    html {
        overflow-x: hidden;
    }

    .desktop-header {
        display: none;
    }

    .mobile-header {
        display: block;
    }

    .mobile-logo {
        width: 140px;
    }

    .mobile-header {
        width: 100%;
        height: 100%;
        padding: 10px 0;
        background: var(--secondary-color);
    }

    .navbar-light .navbar-toggler {
        background: var(--primary-color);
    }

    .navbar-nav {
        margin-top: 20px;
        gap: 10px;
    }

    .navbar-nav .nav-item {
        text-align: center;
        width: 100%;
        border-bottom: 1px solid var(--white-color);
    }

    .navbar-nav .nav-item .nav-link {
        color: var(--white-color) !important;
    }

    .main-banner .hero-title {
        gap: 10px;
    }

    .main-banner .hero-title h1 {
        font-size: 40px;
    }

    .hero-title h3 {
        font-size: 30px;
        text-align: center;
    }

    .main-banner .banner-slider .img-box img {
        height: 400px;
    }

    .main-banner .slick-next {
        top: unset;
        bottom: 5%;
        right: 3%;
        width: 35px;
        height: 35px;
    }

    .main-banner .slick-prev {
        left: unset;
        bottom: 5%;
        right: 15%;
        width: 35px;
        height: 35px;
        top: unset;
    }

    .sec-app {
        padding: 30px 0;
    }

    .sec-app .text-box h2 {
        font-size: 30px;
        line-height: 36px;
    }

    .sec-app .text-box {
        margin-top: 20px;
    }

    .sec-app .text-box .btn-list {
        padding: 0px 0;
        width: 100%;
    }

    .about_section {
        padding: 30px 0;
    }

    .textAbout {
        padding: 10px 0px;
    }

    .textAbout h3 {
        font-size: 24px;
    }

    .our-services {
        padding: 30px 0 30px 0;
    }

    .maScard {
        padding: 30px 10px;
        min-height: auto;
    }

    .our-fleet {
        padding: 30px 0;
    }

    .fleet-card .fleet-1 {
        height: 230px;
    }

    .fleetPadd {
        padding: 20px 30px 20px 30px;
    }

    .contact-us {
        padding: 30px 0;
    }

    .topabout-sec h2 {
        font-size: 40px;
    }

    .topabout-sec {
    }

    .main-Contact {
        height: auto;
        padding: 30px 15px;
    }

    .main-Contact h3 {
        margin-bottom: 20px;
    }

    .bootom-footer-section {
        padding: 10px;
    }

    .bookingForm-left {
        padding: 30px 15px;
    }

    .bottom-footer-content {
        flex-direction: column;
    }

    .topabout-sec .topstyleH {
        margin-bottom: 0px;
    }

    .left-footer-content .footer-logo {
        width: 60%;
    }

    .center-footer-content h2 {
        margin-top: 20px;
    }

    .mercedes-bmw {
        padding: 30px 0;
    }

    .fleetimage img {
        border: 5px solid var(--primary-color);
    }

    .mainFleetDiv {
        gap: 10px;
    }

    .fleetcontent {
        padding-left: 0;
    }

    .fleetcontent h2 {
        font-size: 40px;
    }

    .sec-result .upper-list {
        display: none;
    }

    .sec-result {
        padding: 30px 0;
    }

    .sec-result .number-box {
        padding: 10px 0px;
    }

    .sec-result .for-line::before {
    }

    .update-fleet-box .fleet-detail {
        padding: 10px 0;
        border-right: unset;
        border-left: unset;
    }

    .loginlist {
        padding: 1% 0% 0 0%;
    }

    .loginlist2 {
        width: 100%;
    }

    .loginfield {
        width: 100%;
    }

    .welcome {
        height: 400px;
        background-size: cover;
    }

    .WelComeText {
        width: 200px;
        margin-top: 234px;
        margin-left: 60px;
        line-height: 28px;
    }

    .WelComeText1 {
        font-size: 25px;
        color: #f1c18e;
    }

    .WelComeText2 {
        font-size: 20px;
        color: #dfab73;
    }

    .setfield {
        width: auto;
    }

    .fromcaptcharow {
        width: 100%;
    }
    .fromcaptcharow .custom-btn{
        display: block;
        margin: 0px auto;
    }
    .g-recaptcha {
        margin: auto;
        display: table;
        margin-bottom: 10px;
    }
}

@media only screen and (min-width: 300px) and (max-width: 480px) {
    html {
        overflow-x: hidden;
    }

    .desktop-header {
        display: none;
    }

    .mobile-header {
        display: block;
    }

    .mobile-logo {
        width: 100px;
    }

    .mobile-header {
        width: 100%;
        height: 100%;
        padding: 10px 0;
        background: var(--secondary-color);
    }

    .navbar-light .navbar-toggler {
        background: var(--primary-color);
    }

    .navbar-nav {
        margin-top: 20px;
        gap: 10px;
    }

    .navbar-nav .nav-item {
        text-align: center;
        width: 100%;
        border-bottom: 1px solid var(--white-color);
    }

    .navbar-nav .nav-item .nav-link {
        color: var(--white-color) !important;
    }

    .main-banner .hero-title {
        gap: 10px;
    }

    .main-banner .hero-title h1 {
        font-size: 40px;
    }

    .hero-title h3 {
        font-size: 30px;
        text-align: center;
    }

    .main-banner .banner-slider .img-box img {
        height: 400px;
    }

    .main-banner .slick-next {
        top: unset;
        bottom: 5%;
        right: 3%;
        width: 35px;
        height: 35px;
    }

    .main-banner .slick-prev {
        left: unset;
        bottom: 5%;
        right: 15%;
        width: 35px;
        height: 35px;
        top: unset;
    }

    .sec-app {
        padding: 30px 0;
    }

    .sec-app .text-box h2 {
        font-size: 30px;
        line-height: 36px;
    }

    .sec-app .text-box {
        margin-top: 20px;
    }

    .sec-app .text-box .btn-list {
        padding: 0px 0;
        width: 100%;
    }

    .about_section {
        padding: 30px 0;
    }

    .textAbout {
        padding: 10px 0px;
    }

    .textAbout h3 {
        font-size: 24px;
    }

    .our-services {
        padding: 30px 0 30px 0;
    }

    .maScard {
        padding: 30px 10px;
        min-height: auto;
    }

    .our-fleet {
        padding: 30px 0;
    }

    .fleet-card .fleet-1 {
        height: 170px;
    }

    .fleetPadd {
        padding: 20px 30px 20px 30px;
    }

    .contact-us {
        padding: 30px 0;
    }

    .topabout-sec h2 {
        font-size: 40px;
    }

    .topabout-sec {
    }

    .main-Contact {
        height: auto;
        padding: 30px 15px;
    }

    .main-Contact h3 {
        margin-bottom: 20px;
    }

    .bootom-footer-section {
        padding: 10px;
    }

    .bookingForm-left {
        padding: 30px 15px;
    }

    .bottom-footer-content {
        flex-direction: column;
    }

    .topabout-sec .topstyleH {
        margin-bottom: 0px;
    }

    .left-footer-content .footer-logo {
        width: 60%;
    }

    .center-footer-content h2 {
        margin-top: 20px;
    }

    .mercedes-bmw {
        padding: 30px 0;
    }

    .fleetimage img {
        border: 5px solid var(--primary-color);
    }

    .mainFleetDiv {
        gap: 10px;
    }

    .fleetcontent {
        padding-left: 0;
    }

    .fleetcontent h2 {
        font-size: 40px;
    }

    .sec-result .upper-list {
        display: none;
    }

    .sec-result {
        padding: 30px 0;
    }

    .sec-result .number-box {
        padding: 10px 0px;
    }

    .sec-result .for-line::before {
        left: 77%;
    }

    .update-fleet-box .fleet-detail {
        padding: 10px 0;
        border-right: unset;
        border-left: unset;
    }

    .loginlist {
        padding: 1% 0% 0 0%;
    }

    .loginlist2 {
        width: 100%;
    }

    .loginfield {
        width: 100%;
    }

    .welcome {
        height: 400px;
        background-size: cover;
    }

    .WelComeText {
        width: 200px;
        margin-top: 234px;
        margin-left: 60px;
        line-height: 28px;
    }

    .WelComeText1 {
        font-size: 25px;
        color: #f1c18e;
    }

    .WelComeText2 {
        font-size: 20px;
        color: #dfab73;
    }

    .setfield {
        width: auto;
    }

    .four_0_four {
        padding-top: 80px;
    }
    .four_0_four img.thnkimg {
        width: 100%;
    }
    .four_0_four a.backhme {
        padding: 15px 30px;
    }
    .thanku {
        padding: 0 0 40px;
    }
    .thanku img.thnk {
        width: 100%;
    }
    .thanku a.backhme {
        padding: 15px 30px;
        margin-top: 20px;
    }
}
