/* comman style */
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: "Roboto", sans-serif;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
}

ul,
ul li {
    margin: 0;
    padding: 0;
    list-style: none;
}

.banner-kar-report {
    padding: 50px 0;
    background-position: center;
    background-size: cover;
    position: relative;
    /* z-index: -1; */
}

.banner-kar-report:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000000a7;
    /* z-index: 0; */
}

.banner-kar-report .row {
    align-items: center;
    z-index: 1;
    position: relative;
}

.banner-kar-report .row .col-12 {
    padding: 0;
}

.history-form-card-main {
    background: #ffffff;
    border-radius: 20px;
    padding: 32px 24px;
    position: relative;
    z-index: 5;
}

.history-form-card-main .main-heading {
    font: 600 24px /100% "Roboto", sans-serif;
    color: #000000;
    text-align: center;
    padding-bottom: 24px;
}

.history-form-card-main #pills-tab {
    border: 0.5px solid #000000;
    border-radius: 10px;
    margin-bottom: 24px;
}

.history-form-card-main .nav-pills .nav-item {
    width: 100%;
}

.history-form-card-main .nav-pills .nav-link {
    background: transparent;
    border-radius: 10px;
    width: 100%;
    font: 500 20px /100% "Roboto", sans-serif;
    padding: 15px 0;
    color: #787878;
}

.history-form-card-main .nav-pills .nav-link.active {
    background: #000000;
    color: #ffffff;
}

.kar-report-input {
    padding: 18px;
    border: 0.5px solid #000000;
    font: 400 16px /100% "Roboto", sans-serif;
    color: #000000;
    border-radius: 10px;
    width: 100%;
    margin-bottom: 24px;
}

.kar-report-input::placeholder {
    color: #787878;
}

.kar-report-input:focus-visible {
    box-shadow: none;
    outline: none;
}

#pills-tabContent {
    width: 100%;
}

.kar-report-form-details-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-height: 100%;
    flex-direction: column;
    width: 100%;
}
.tab-content form {
    width: 100%;
}

.get-started-report-btn {
    background: #e07900;
    width: 100%;
    padding: 13px 0;
    font: 600 20px /100% "Roboto", sans-serif;
    color: #ffffff;
    border: 1px solid #e07900;
    border-radius: 10px;
    transition: background-color 0.8s ease-in-out, color 0.8s ease-in-out;
}

.get-started-report-btn:hover {
    background: transparent;
    color: #e07900;
}

.kar-report-content {
    padding-left: 73px;
}

.kar-report-logo {
    width: 159px;
    height: 31px;
    margin-bottom: 20px;
}

.kar-report-content-heading {
    font: 600 27px /100% "Roboto", sans-serif;
    color: #ffffff;
    padding-bottom: 13px;
}

.kar-report-content p {
    font: 400 18px /26px "Roboto", sans-serif;
    color: #ffffff;
}

/* Custom Select */
.custom-select {
    position: relative;
    width: 100%;
}

.custom-select.open .kar-report-input {
    /* border: 0.6px solid #00000080; */
    border-radius: 8px 8px 0 0;
    border-bottom: 0;
}

.select-state .kar-report-input {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    position: relative;
    cursor: pointer;
}

.select-state .kar-report-input::after {
    content: "";
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%) rotate(0deg);
    font-size: 14px;
    transition: transform 0.3s ease;
    pointer-events: none;
    background: url(../Images/drop-down.svg);
    width: 13px;
    height: 8px;
}

.custom-select.open .kar-report-input::after {
    transform: translateY(-50%) rotate(180deg);
}

.options {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 0 0 8px 8px;
    margin-top: 0;
    list-style: none;
    padding: 0;
    z-index: 10;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.3s ease;
}

.custom-select.open .options {
    max-height: 250px;
    opacity: 1;
    overflow-y: auto;
}

.options li {
    padding: 10px;
    cursor: pointer;
    font: 400 16px / 20px "Ubuntu", sans-serif;
    font-size: 16px;
    border-bottom: 1px solid #00000050;
}

.options li:last-child {
    border-bottom: none;
}

.options li:hover {
    background: #5e005375;
    color: #ffffff;
}

.options li.selected-option {
    background: #e07900;
    color: #ffffff;
    border-bottom: 1px solid #e07900;
}

/*  History  Check*/
.history-check-main {
    padding: 60px 0;
    text-align: center;
}

.history-heading {
    font: 600 32px/100% "Roboto", sans-serif;
    color: #000000;
    padding-bottom: 20px;
}

.history-content {
    font: 400 20px/100% "Roboto", sans-serif;
    color: #000000;
    padding-bottom: 36px;
}

#reportTab {
    border: none;
    justify-content: start;
    gap: 40px;
    margin-bottom: 36px;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
}

#reportTab .nav-link {
    font: 400 20px/100% "Roboto", sans-serif;
    color: #000000;
    padding: 25px 57px;
    background: #ffebd3;
    border-radius: 10px;
    white-space: nowrap;
}

#reportTab .nav-link.active {
    font-weight: 500;
    color: #ffffff;
    background: #e07900;
}

.nav-tabs .nav-link:focus,
.nav-tabs .nav-link:hover {
    border-color: transparent;
}

.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
    background: #e07900;
    border-color: transparent;
}
.tab-pane.fade.show.active {
    display: flex;
    align-items: center;
    gap: 20px;
}
.tab-content-main-box {
    text-align: left;
}

.vehicle-specification {
    width: 761px;
    height: 441px;
    margin-bottom: 40px;
}

.tab-content-main {
    font: 400 18px/24px "Roboto", sans-serif;
    color: #393938;
    padding-bottom: 30px;
}

.sample-report-button {
    padding: 19px 23px;
    background: #e07900;
    border: 1px solid #e07900;
    font: 500 20px/100% "Roboto", sans-serif;
    border-radius: 8px;
    color: #ffffff;
    transition: all 1s ease-in-out;
}

.sample-report-button:hover {
    background: transparent;
    color: #e07900;
}

/* About  */
.about-report {
    background: #f4f4f4;
}
.about-report-inner-left-card {
    padding: 43px 0;
    text-align: left;
}

.about-report p.main-content-text {
    text-align: left;
}

.main-line-heading {
    font: 600 32px /38px "Roboto", sans-serif;
    padding-bottom: 14px;
    text-align: center;
}

.main-content-text {
    font: 400 18px /20px "Roboto", sans-serif;
    color: #393938;
    padding-bottom: 24px;
    text-align: center;
}

.about-report-inner-card {
    display: flex;
    align-items: center;
    gap: 120px;
}

.left-content-card {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 29px;
}

.inner-image-box {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 100px;
    height: 100px;
    background: #ffffff;
    box-shadow: 0px 0px 4px 0px #00000040;
    border-radius: 10px;
}

.inner-icon {
    width: 100%;
    height: 100%;
    max-width: 30px;
    max-height: 30px;
}

.inner-content-text {
    font: 400 18px /27px "Roboto", sans-serif;
    text-align: left;
}

.right-image-about {
    width: 571px;
    height: 464px;
}

/* Data Service */
.data-service-main {
    padding: 60px 0;
}

.data-service-main .row.desktop {
    display: flex;
}

.data-service-main .container {
    position: relative;
}

.data-service-main .main-content-text {
    padding-bottom: 40px;
}

.get-full-report {
    padding: 16px 20px;
    border-radius: 8px;
    border: 1px solid #e07900;
    background: #e07900;
    font: 500 20px /22px "Roboto", sans-serif;
    color: #ffffff;
    position: absolute;
    right: 0;
    top: 19px;
    transition: all 0.9s ease-in-out;
}

.get-full-report:hover {
    color: #e07900;
    background: transparent;
}

.data-car-card {
    display: flex;
    align-items: center;
    margin-bottom: 24px;
}
.card-inner-main {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #f1f1f1cc;
    width: 95%;
    padding: 15px;
    border-radius: 10px;
}
.data-card-btn {
    position: absolute;
    right: 0;
}
.data-car-card-image-box {
    background: #e07900;
    padding: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
}

.data-car-card-image {
    width: 73px;
    height: 41px;
}

.data-car-card-heading {
    color: #393938;
    font: 600 24px /30px "Roboto", sans-serif;
    /* padding-bottom: 10px; */
}

.data-car-card-text {
    color: #393938;
    font: 400 16px /22px "Roboto", sans-serif;
}

.data-card-btn {
    padding: 16px 41px;
    background: #e07900;
    border: 1px solid #e07900;
    font: 500 20px/22px "Roboto", sans-serif;
    border-radius: 8px;
    color: #ffffff;
    transition: all 1s ease-in-out;
}

.data-card-btn:hover {
    background: transparent;
    color: #e07900;
}

/* How its Work */
.how-its-work {
    padding: 60px 0 88px;
    background: #f4f4f4;
}

.how-its-work .main-content-text {
    padding-bottom: 80px;
}

.how-its-work-cards {
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 70px;
}

.works-card {
    width: 244px;
    height: 244px;
    border-radius: 50px;
    padding-top: 110px;
    /* display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column; */
    /* gap: 21px; */
    background: #e07900;
    position: relative;
    text-align: center;
}
.works-card-image-box {
    position: absolute;
    top: -70px;
    left: 50%;
    transform: translate(-50%, 0);
    background: #e07900;
    border-radius: 50%;
    border: 5px solid #ffffff;
    width: 134px;
    height: 134px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.works-card.black .works-card-image-box {
    background: #000000;
}
.works-card.black {
    background: #000000;
}

.how-its-work-cards h3 {
    font: 500 20px /30px "Roboto", sans-serif;
    color: #ffffff;
    max-width: 150px;
    margin: 0 auto;
}

.card-icon-works {
    width: 100px;
    height: 70px;
    max-height: 70px;
}

/* Testimonial */
.Testimonial {
    padding: 60px 0;
}

.Testimonials-card {
    box-shadow: 0px 2px 18px 0px #6e82d02b;
    background: #ffffff;
    padding: 40px 11px 29px 25px;
    position: relative;
    margin: 30px 2px 13px;
    border-radius: 10px;
}

#Testimonials-slider .owl-wrapper {
    margin-top: 30px;
}

.Testimonials-card:after {
    content: "";
    position: absolute;
    background: url(/assets/forntend/images/vehicle-history/div.bde-icon-icon.svg),
        no-repeat;
    background-position: center;
    background-size: cover;
    width: 72px;
    height: 72px;
    top: -30px;
    right: 0px;
}

.user-info-box {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.profile-testimonials {
    width: 80px !important;
    height: 80px;
    border-radius: 50%;
    border: 4px solid #ffffff;
    filter: drop-shadow(0px 6px 20px #d3dce8);
}

.user-about h3 {
    font: 600 24px / 33px "Roboto", sans-serif;
    color: #071537;
}

.Testimonials-card {
    font: 400 14px / 20px "Roboto", sans-serif;
    color: #000000;
}

/* Report Benefits */
.benefits-report {
    padding: 60px 0;
}

.benefits-report .main-content-text {
    padding-bottom: 46px;
}

.benifits-main-content-box {
    display: flex;
    align-items: center;
    gap: 252px;
    flex-direction: column;
}

.benifits-content-box {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 17px;
    background: #e07900;
    border-radius: 10px;
}

.benifits-main-content-box .inner-box {
    margin-left: 42px;
}

.benifits-content-box.inner-right-box {
    margin-right: 27px;
}

.undraw-image {
    min-width: 629px !important;
    height: 348px;
    position: absolute;
    z-index: -1;
    left: -106px;
    top: 28px;
}

.download-report .sample-report-button {
    display: block;
    max-width: 150px;
    text-decoration: none;
    margin: 0 auto 20px;
}

.benefits-content {
    font: 400 18px /20px "Roboto", sans-serif;
    color: #ffffff;
}
.check-icon {
    width: 20px;
    height: 20px;
}

/* Download Reports  */
.download-report {
    background: #f4f4f4;
    padding: 60px 0;
    text-align: center;
}

.download-report .main-content-text {
    padding-bottom: 30px;
}

.download-report .data-card-btn {
    margin-bottom: 40px;
}

.download-report-image {
    width: 802px;
    height: 489px;
    display: block;
    margin: 0 auto;
}

.desktop {
    display: block;
}

.mobile {
    display: none !important;
}

.is-invalid {
    border: 0.6px solid #ff0018 !important;
    border-radius: 10px !important;
}

.report-tabs {
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.report-tabs::-webkit-scrollbar {
    display: none;
}

/* Responsive */
@media (max-width: 1366px) {
    .history-form-card-main .main-heading {
        font: 600 24px /100% "Roboto", sans-serif;
        padding-bottom: 20px;
    }

    .history-form-card-main .nav-pills .nav-link {
        font: 500 18px /100% "Roboto", sans-serif;
        padding: 13px 0;
    }

    .kar-report-content-heading {
        font: 600 24px /100% "Roboto", sans-serif;
    }

    .kar-report-content p {
        font: 400 16px /20px "Roboto", sans-serif;
    }

    section {
        padding: 40px 0 !important;
    }

    .history-heading {
        font: 600 24px/100% "Roboto", sans-serif;
        padding-bottom: 16px;
    }

    .history-content {
        font: 400 16px/100% "Roboto", sans-serif;
        padding-bottom: 26px;
    }

    #reportTab {
        gap: 30px;
        margin-bottom: 26px;
    }

    #reportTab .nav-link {
        font: 400 16px/100% "Roboto", sans-serif;
    }

    .vehicle-specification {
        margin-bottom: 30px;
    }

    .tab-content-main {
        font: 400 14px/100% "Roboto", sans-serif;
        padding-bottom: 20px;
    }

    .sample-report-button {
        padding: 16px 19px;
        font: 500 16px/100% "Roboto", sans-serif;
    }

    .main-line-heading {
        font: 600 24px /28px "Roboto", sans-serif;
        padding-bottom: 24px;
    }

    .main-line-heading:after {
        bottom: 10px;
    }

    .main-content-text {
        font: 400 16px /18px "Roboto", sans-serif;
        padding-bottom: 24px;
    }

    .inner-content-text {
        font: 400 14px /18px "Roboto", sans-serif;
        text-align: left;
    }

    .inner-image-box {
        min-width: 80px;
        height: 80px;
    }
    .tab-content-main-box {
        text-align: center;
    }

    .inner-icon {
        max-width: 50px;
        max-height: 50px;
    }

    .about-report-inner-card {
        gap: 70px;
    }

    .right-image-about {
        width: 531px;
        height: 374px;
        object-fit: cover;
        object-position: center;
    }

    .get-full-report {
        padding: 10px 16px;
        font: 500 16px /19px "Roboto", sans-serif;
        top: 9px;
    }

    .data-car-card-image {
        width: 121px;
        height: 51px;
        margin-bottom: 14px;
    }

    .data-car-card-heading {
        font: 600 20px /20px "Roboto", sans-serif;
        padding-bottom: 10px;
    }

    .data-car-card-text {
        font: 400 14px /20px "Roboto", sans-serif;
        padding-bottom: 16px;
    }

    .data-card-btn {
        padding: 10px 16px;
        font: 500 16px/20px "Roboto", sans-serif;
    }

    .data-car-card {
        padding: 24px;
    }

    .how-its-work-cards h3 {
        font: 500 16px /20px "Roboto", sans-serif;
        max-width: 140px;
    }

    .card-icon-works {
        width: 90px;
        height: 50px;
    }

    .works-card:after {
        width: 80px;
        height: 80px;
        font: 600 30px /30px "Roboto", sans-serif;
    }

    .how-its-work .main-content-text {
        padding-bottom: 30px;
    }

    .works-card {
        width: 243px;
        height: 243px;
    }

    .Testimonials-card:after {
        width: 52px;
        height: 52px;
        top: -20px;
    }

    .benefits-content {
        font: 400 14px /20px "Roboto", sans-serif;
    }

    .download-report .data-card-btn {
        margin-bottom: 20px;
        padding: 7px 52px;
    }
}

@media (max-width: 1199px) {
    .history-form-card-main .main-heading {
        font: 600 24px /100% "Roboto", sans-serif;
        padding-bottom: 16px;
    }

    .history-form-card-main .nav-pills .nav-link {
        font: 500 16px /100% "Roboto", sans-serif;
        padding: 10px 0;
        border-radius: 6px;
    }

    .kar-report-content p {
        font: 400 16px /20px "Roboto", sans-serif;
        padding-bottom: 16px;
    }

    section {
        padding: 24px 0 !important;
    }

    .history-heading {
        font: 600 20px/100% "Roboto", sans-serif;
        padding-bottom: 16px;
    }

    .history-content {
        font: 400 14px/20px "Roboto", sans-serif;
        padding-bottom: 26px;
    }

    #reportTab {
        gap: 24px;
        margin-bottom: 16px;
    }

    #reportTab .nav-link {
        font: 400 14px/100% "Roboto", sans-serif;
    }

    .vehicle-specification {
        margin-bottom: 14px;
    }

    .tab-content-main {
        font: 400 14px/20px "Roboto", sans-serif;
        padding-bottom: 20px;
    }

    .sample-report-button {
        padding: 16px 18px;
        font: 500 16px/100% "Roboto", sans-serif;
    }

    .main-line-heading {
        font: 600 18px /24px "Roboto", sans-serif;
        padding-bottom: 16px;
    }

    .main-line-heading:after {
        bottom: 7px;
    }

    .main-content-text {
        font: 400 14px /20px "Roboto", sans-serif;
        padding-bottom: 20px;
    }

    .inner-content-text {
        font: 400 14px /20px "Roboto", sans-serif;
    }

    .inner-image-box {
        min-width: 62px;
        height: 62px;
    }

    .inner-icon {
        max-width: 31px;
        max-height: 31px;
    }

    .about-report-inner-card {
        gap: 40px;
    }

    .right-image-about {
        width: 480px;
        height: 334px;
        object-fit: cover;
        object-position: center;
    }

    .get-full-report {
        padding: 10px 16px;
        font: 500 14px /16px "Roboto", sans-serif;
        top: 9px;
    }

    .data-car-card-image {
        width: 100px;
        height: 40px;
        margin-bottom: 10px;
    }

    .data-car-card-heading {
        font: 600 20px /20px "Roboto", sans-serif;
        padding-bottom: 10px;
    }

    .data-card-btn {
        padding: 12px 15px;
        font: 500 16px/16px "Roboto", sans-serif;
    }

    .data-car-card {
        padding: 20px;
    }

    .how-its-work-cards h3 {
        font: 500 14px /18px "Roboto", sans-serif;
        max-width: 140px;
    }

    .undraw-image {
        width: 100%;
        height: 300px;
    }

    .card-icon-works {
        width: 70px;
        height: 30px;
    }

    .works-card:after {
        width: 73px;
        height: 73px;
        font: 600 29px /29px "Roboto", sans-serif;
    }

    .how-its-work .main-content-text {
        padding-bottom: 24px;
    }

    .works-card {
        width: 200px;
        height: 200px;
    }

    .Testimonials-card:after {
        width: 32px;
        height: 32px;
        top: -20px;
    }
}

@media (max-width: 991px) {
    .about-report-inner-card {
        gap: 21px;
        flex-direction: column-reverse;
    }
    .kar-report-content-heading {
        font: 600 16px /100% "Roboto", sans-serif;
    }

    .get-full-report {
        position: static;
        margin: 0 auto 20px;
        display: block;
    }

    .works-card {
        width: 203px;
        height: 203px;
        margin: 0 auto;
    }

    .card-icon-works {
        width: 83px !important;
        height: 63px;
    }

    .works-card h3 {
        font: 400 14px/22px "Roboto", sans-serif;
        max-width: 100px;
        color: #ffffff;
    }
    .benifits-main-content-box .inner-box,
    .benifits-content-box.inner-right-box {
        margin: 0px;
    }

    .benifits-main-content-box {
        gap: 16px;
        margin-bottom: 16px;
    }

    .undraw-image {
        width: 182px;
        height: 191px;
        margin: 0 auto;
        display: block;
    }

    .benefits-report .main-content-text {
        padding-bottom: 28px;
    }

    .benefits-report {
        padding-top: 0 !important;
    }

    .data-service-main .row.desktop .col-lg-4 {
        margin-bottom: 20px;
    }

    .how-its-work-cards {
        gap: 30px;
    }

    .kar-report-content {
        padding-left: 0;
        margin-top: 16px;
        text-align: center;
    }
}

@media (max-width: 575px) {
    .desktop {
        display: none !important;
    }

    .mobile {
        display: block !important;
    }

    .banner-kar-report .row {
        justify-content: center;
    }

    .kar-report-content {
        padding-left: 0;
        text-align: center;
        margin: 0;
    }

    .kar-report-logo {
        width: 131px;
        height: 25px;
        margin-bottom: 16px;
    }

    .history-form-card-main {
        background: #ffffff;
        border-radius: 12px;
        padding: 20px 14px;
    }

    .banner-kar-report .row .col-12 {
        padding: 0 16px;
    }

    .history-form-card-main .main-heading {
        font: 600 17px /100% "Roboto", sans-serif;
    }

    .kar-report-content p {
        font: 400 14px /20px "Roboto", sans-serif;
        padding-bottom: 10px;
    }

    .history-form-card-main .nav-pills .nav-link {
        font: 500 13px /100% "Roboto", sans-serif;
        padding: 9px 0;
    }

    .history-form-card-main #pills-tab {
        border: 0.5px solid #000000;
        border-radius: 6px;
        margin-bottom: 14px;
    }

    .kar-report-input {
        padding: 9px 18px;
        font: 400 13px /100% "Roboto", sans-serif;
        margin-bottom: 14px;
        border-radius: 6px;
    }

    .get-started-report-btn {
        padding: 8px 0;
        font: 600 16px /100% "Roboto", sans-serif;
    }

    .history-heading {
        font: 600 16px/24px "Roboto", sans-serif;
        padding: 0 0 5px 0;
    }

    .history-content {
        padding-bottom: 10px;
    }

    #reportTab .nav-link {
        white-space: nowrap;
        padding: 16px;
    }
    .tab-pane.fade.show.active {
        gap: 16px;
        flex-direction: column;
    }

    #reportTab {
        gap: 24px;
        margin-bottom: 16px;
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: start;
        overflow-y: hidden;
    }

    .vehicle-specification {
        max-width: 100%;
        max-height: 180px;
    }

    .right-image-about {
        width: 343px;
        height: 223px;
    }

    .left-content-card {
        gap: 10px;
        margin-bottom: 24px;
    }

    .get-full-report {
        position: static;
    }

    .data-service-main .main-content-text {
        padding-bottom: 20px;
    }

    .owl-dots {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 5px;
        margin-top: 20px;
    }

    .owl-dot span {
        background: #bababa;
        display: block;
        width: 10px;
        height: 10px;
        border-radius: 6px;
    }

    .owl-dot.active span {
        background: #e07900;
    }

    .Testimonials-card {
        margin: 20px 2px 2px;
        border-radius: 10px;
    }

    .download-report-image {
        width: 100%;
        height: 215px;
    }
    .check-icon {
        padding-top: 4px;
    }
    .about-report-inner-left-card {
        padding: 0;
    }
    .data-service-main {
        text-align: center;
    }
    .data-card-btn {
        position: static;
    }
    .card-inner-main {
        display: flex;
        align-items: start;
        gap: 20px;
        background: #f1f1f1cc;
        width: 100%;
        padding: 15px;
        border-radius: 10px;
        flex-direction: column;
    }
    .car-card-content {
        text-align: left;
    }
    .data-car-card-image-box {
        padding: 12px;
    }
    .data-car-card {
        padding: 0 16px;
        margin: 0;
    }
    .works-card {
        margin: 66px auto 0;
    }
    .works-card h3 {
        margin: 0 auto;
    }
    .undraw-image {
        position: static;
        min-width: 100% !important;
        max-width: 100%;
    }
    .make-order {
        order: 3;
    }

    .history-form-card-main .main-heading {
        font: 600 18px /100% "Roboto", sans-serif;
    }
    .history-heading {
        font: 600 18px/24px "Roboto", sans-serif;
        padding: 0 0 5px 0;
    }
    #reportTab .nav-link {
        white-space: nowrap;
        padding: 7px 11px;
        border-radius: 5px;
    }
    .main-line-heading {
        font: 600 20px /24px "Roboto", sans-serif;
        padding-bottom: 6px;
        text-align: center;
    }
    .benefits-report .main-content-text {
        padding-bottom: 16px;
        text-align: center;
    }
    .kar-report-content-heading {
        font: 600 20px /100% "Roboto", sans-serif;
        padding-bottom: 6px;
    }
    .benefits-content {
        font: 400 16px /20px "Roboto", sans-serif;
    }
}

.mobile-nav {
    display: none;
}
