@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap');


/* common color code start */
:root {
    --black: #000;
    --white: #fff;
    --exlight-white: #FBFBFB;
    --green-color: #11A853;
    --light-green: #CCEBB3;
    --gray: #E6E6E6;
}

/* common color code end */
body {
    font-family: 'Inter';
    font-weight: 400;
    overflow-x: hidden;
    color: #666666;
    background: url(../images/body_background.png);
}

p {
    color: var(--black);
    font-weight: 400;
}

a {
    text-decoration: none !important;
}

img {
    max-width: 100%;
    height: auto;
}

.sec_btn {
    border: 0;
    outline: none;
    color: var(--white);
    background: var(--black);
    padding: 10px 45px;
    border-radius: 5px;
    text-transform: capitalize;
    font-size: 16px;
    font-weight: 400;
}

.sec_btn:hover {
    color: var(--white);
}

.page-loader {
    width: 100%;
    height: 100%;
    position: fixed;
    background: #f1f2f3;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-loader img {
    width: 300px;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* header css start */
.main_header {
    position: sticky;
    top: 0;
    background: var(--white);
    padding: 15px 0;
    box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.10);
    z-index: 999;
}

.main_navigation {
    height: 100%;
}

.main_navigation .sec_btn {
    padding: 10px 20px;
    color: var(--white);
    border: 1px solid var(--black);
    transition: 0.3s all;
}

.main_navigation .sec_btn:hover {
    background: var(--white);
    color: var(--black);
}

.ul_list {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.ul_list .li_list {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    transition: 0.5s all;
}

.ul_list .li_list:not(:last-child) {
    margin-right: 15px;
}

.ul_list .li_list .a_link {
    color: var(--black);
    text-transform: capitalize;
    font-size: 16px;
    font-weight: 400;
    transition: 0.3s all;
}

.ul_list .li_list .a_link i {
    margin-left: 10px;
    color: var(--black);
    transition: 0.3s all;
    rotate: 90deg;
}

.ul_list .li_list .a_link:hover,
.ul_list .li_list .a_link:hover i,
.ul_list .li_list.active .a_link,
.ul_list .li_list.active .a_link i {
    color: var(--green-color);
}

.ul_list .li_list.active .a_link i,
.ul_list .li_list:hover .a_link i {
    rotate: -90deg;
}

.ul_list .li_list.active .sub_menu,
.ul_list .li_list:hover .sub_menu {
    opacity: 1;
    visibility: visible;
    height: auto;
}

.sub_menu {
    position: absolute;
    top: calc(100% + 17px);
    right: 0;
    background: var(--white);
    padding: 15px;
    border-radius: 10px;
    width: max-content;
    opacity: 0;
    visibility: hidden;
    transition: 0.5s all;
    box-shadow: 0px 0px 1px 0px var(--black);
}

.sub_menu .sm_li .sm_a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--black);
    font-size: 16px;
    font-weight: 400;
    text-transform: capitalize;
    transition: 0.3s all;
}

.sub_menu .sm_li:hover .sm_a {
    color: var(--green-color);
}

.sub_menu .sm_li:hover .sm_a i {
    transform: rotate(90deg);
}

.sub_menu .sm_li:not(:last-child) {
    margin-bottom: 10px;
}

.menu_btn {
    display: none;
}

/* header css end */

/* top banner sec css start */
.top_banner_sec {
    background-color: var(--exlight-white);
    position: relative;
}

.banner_title_text {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 2;
    position: relative;
}

.banner_title_text .title_text {
    color: var(--black);
    font-size: 32px;
    font-weight: 700;
}

.banner_title_text .p_text {
    color: var(--black);
    margin-top: 10px;
    font-size: 16px;
    font-weight: 400;
}

.qr_sec {
    display: flex;
    margin-top: 23px;
    gap: 20px;
}

.qr_sec .app_store_links {
    display: flex;
    flex-direction: column;
}

.qr_sec .app_store_links span {
    color: var(--black);
    font-size: 16px;
    font-weight: 700;
}

.qr_sec .app_store_links a img {
    margin-top: 15px;
}

.banner_img {
    position: relative;
    text-align: center;
}

/* top banner sec css end */

/* payment sec css start */
.payment_sec {
    position: relative;
    padding: 40px 0 80px;
}

.sec_title {
    color: var(--black);
    font-size: 28px;
    font-weight: 700;
    text-align: center;
    text-transform: capitalize;
    margin-bottom: 35px;
}

.payment_box {
    border-radius: 10px;
    box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.12);
    background-color: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px 18px 47px;
    /* height: 100%; */
    margin: 0 15px;
}

.payment_box .rp_icons {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gray);
    display: flex;
    align-items: center;
    justify-content: center;
}

.payment_box .span_text {
    color: var(--black);
    text-align: center;
    letter-spacing: 0.1px;
    margin-top: 36px;
    font-size: 18px;
    font-weight: 400;
    text-transform: capitalize;
}

.payment_sec .slick-track {
    padding: 10px 0;
}

.slide-arrow {
    border: 0;
    background: transparent;
    color: #c2c2c2;
    position: absolute;
    bottom: -50px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    font-size: 20px;
    transition: 0.3s all;
}

.slide-arrow:hover {
    color: var(--black);
}

.slide-arrow.prev-arrow {
    right: 50%;
}

.slide-arrow.next-arrow {
    left: 50%;
}

/* payment sec css end */


/* bus overview sec css start */
.bus_overview_sec {
    position: relative;
    padding: 40px 0 80px;
}

.overview_title_text {
    position: relative;
    background: linear-gradient(to right, #25A659, #141B17);
    -webkit-background-clip: text;
    color: transparent;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 30px;
    width: 50%;
    text-align: center;
    margin: 0 auto 40px;
    z-index: 1;
}

.overview_box {
    border-radius: 30px;
    position: relative;
    background: linear-gradient(180deg, #D3E8F1 0%, #39B26A 100%);
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.15);
    padding: 30px;
    height: 100%;
    margin: 0 15px;
    transition: 0.5s ease-in-out;
}

.overview_box h3 {
    display: flex;
    align-items: center;
    gap: 15px;
    text-transform: capitalize;
    font-size: 28px;
    font-weight: 700;
    padding-bottom: 40px;
    margin: 0;
}

.overview_box span {
    width: 60px;
    height: 60px;
    background: var(--black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.overview_box p {
    padding-bottom: 40px;
    margin: 0;
}

/* bus overview sec css end */


/* prepaid card sec css start */
.prepaid_card {
    position: relative;
    padding: 40px 0;
}

.prepaid_card .sec_title {
    margin: 0 0 10px;
}

.prepaid_card .p_text {
    font-size: 16px;
    font-weight: 400;
    color: var(--black);
    text-align: center;
    width: 320px;
    margin: 0 auto;
}

.prepaid_card_img {
    text-align: center;
    margin: 20px 0 0;
}

.prepaid_card_text {
    display: flex;
    flex-direction: column;
    align-items: self-start;
    justify-content: center;
    height: 100%;
}

.prepaid_card_text ul li {
    color: var(--black);
    display: flex;
    align-items: center;
    gap: 10px;
}

.prepaid_card_text ul li:nth-child(1) {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 30px;
    text-transform: capitalize;
}

.prepaid_card_text ul li:nth-child(2),
.prepaid_card_text ul li:nth-child(3) {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 20px;
}

.prepaid_card_text ul li i {
    color: var(--green-color);
    font-size: 30px;
}

/* prepaid card sec css end */


/* home banner sec css start */
.home_banner {
    position: relative;
    padding: 100px 0;
    margin: 40px 0;
    background-image: url(../images/home-banner-img.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center;
}

.home_banner::before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(175, 242, 206, 70%);
}

/* home banner sec css end */


/* cities sec css start */
.cities_sec {
    position: relative;
    padding: 40px 0 60px;
}

.cities_sec .sec_title {
    margin: 0 0 10px;
}

.cities_sec .p_text {
    font-size: 16px;
    font-weight: 400;
    text-align: center;
    margin: 0;
}

.cities_slider {
    margin-top: 50px;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.cities_slider .city_box {
    display: flex !important;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.cities_slider .city_box img {
    border-radius: 50%;
    border: 1px solid #e6e6e6;
    margin: 0 auto;
    width: 150px;
    height: 150px;
}

.cities_slider .city_box span {
    font-size: 16px;
    font-weight: 400;
    color: var(--black);
    text-transform: capitalize;
}

/* cities sec css end */


/* our review sec css start */

.our_review_sec {
    padding: 40px 0;
    position: relative;
    background: #DFFBEC;
}

.home-trusted-stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    width: 100%;
}

.home-trusted-stat {
    grid-column-gap: 1.25em;
    grid-row-gap: 10px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    display: flex;
}

.home-trusted-stat h2 {
    color: var(--black);
    font-size: 36px;
    font-weight: 500;
    margin: 0;
}

.home-trusted-stat span {
    font-size: 18px;
    color: var(--black);
}

/* our review sec css end */

/* about us page css start */
.about_page_banner {
    background-image: url('../images/about_banner_img.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom center;
    padding: 80px 0 300px;
}

.about_page_banner p {
    font-weight: 600;
}

.about_page_banner h1 {
    font-size: 34px;
    font-weight: 700;
    margin: 0 auto;
    width: 80%;
    text-align: center;
}

.katch_about_text {
    position: relative;
    padding: 30px 0 0;
}

.katch_about_text p {
    text-align: center;
    font-weight: 600;
    font-size: 30px;
}

.grow_step_sec {
    position: relative;
    padding: 40px 0 80px;
}

.grow_step_sec h3 {
    text-align: center;
    font-size: 34px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 30px;
}

.grow_step_sec .step_slider {
    position: relative;
}

.grow_step_sec .step_slider::before {
    position: absolute;
    content: '';
    background: var(--black);
    width: 100%;
    height: 2px;
    top: 65px;
    left: 13px;
}

.grow_step_sec .step_slider .slick-list.draggable {
    padding-right: 100px;
}

.step_box {
    position: relative;
}

.step_box .year {
    color: #3AB771;
    font-size: 18px;
    font-weight: 700;
    display: block;
}

.step_box .circle {
    position: relative;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid var(--black);
    display: block;
    margin: 20px 0;
    background: var(--white);
}

.step_box .circle::before {
    position: absolute;
    content: '';
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: #3AB771;
    width: 25px;
    height: 25px;
}

.step_box .year_text {
    color: var(--black);
    font-size: 16px;
    font-weight: 700;
    padding-right: 30px;
    display: block;
}

/* about us page css end */


/* contact us page css start */
.contact_us_banner {
    position: relative;
    background-image: url('../images/contact_us_banner_img.png');
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
    padding: 120px 0;
}

.contact_us_banner h1 {
    color: var(--black);
    font-size: 34px;
    font-weight: 700;
    text-transform: capitalize;
    text-align: center;
    margin: 0;
}

.contact_us_banner p {
    text-align: center;
    font-size: 18px;
    margin: 5px 0 0;
}

.contact_us_sec {
    padding: 40px 0;
    position: relative;
}

.contact_us_sec .contact_us_img {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.contact_us_form h3 {
    color: var(--black);
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 15px;
}

.single_field {
    position: relative;
    margin-bottom: 25px;
}

.single_field label {
    font-size: 16px;
    font-weight: 400;
    color: #3a3a3a;
    display: block;
    text-transform: capitalize;
    position: absolute;
    top: -12px;
    left: 10px;
    background: var(--white);
    padding: 0 5px;
}

.single_field label span {
    color: red;
}

.single_field input,
.single_field select,
.single_field textarea {
    border: 1px solid var(--gray);
    border-radius: 5px;
    outline: none;
    width: 100%;
    padding: 10px 14px;
}

.common_bottom_sec {
    position: relative;
    margin-bottom: 30px;
}

.common_bottom_sec .inner_sec,
.common_bottom_sec .business_inner_sec {
    padding: 30px 50px;
    border-radius: 30px;
    background: var(--exlight-white);
    box-shadow: 3px 1px 12px #b2b2b3, -9px -9px 12px var(--white);
}

.common_bottom_sec .inner_sec .inner_bt_text {
    height: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.common_bottom_sec .inner_sec h5 {
    color: var(--black);
    font-size: 28px;
    font-weight: 700;
    margin: 0;
}

.common_bottom_sec .inner_sec p {
    font-size: 22px;
    margin: 0 0 15px;
}

.common_bottom_sec .inner_sec a {
    color: var(--green-color);
    text-transform: capitalize;
    font-size: 20px;
    font-weight: 700;
    text-decoration: none;
}

.common_bottom_sec .inner_sec a i {
    margin-left: 5px;
}

.common_bottom_sec .inner_bt_img {
    text-align: right;
}

.company-detail p {
    font-weight: 700;
}

.company-detail p span {
    font-weight: normal;
}

/* contact us page css end */

/* katch bus css start */
.katch_bus_overview {
    position: relative;
    margin: 40px 0;
    padding: 0 0 200px;
    border-bottom: 2px dashed #6dda9d;
}

.katch_bus_overview .bus_overview_img {
    text-align: center;
}

.katch_bus_overview p {
    font-size: 18px;
}

.katch_bus_overview .bus-bg,
.katch_bus_overview .bus-bg.business-bg {
    position: absolute;
    bottom: 0;
    background: url("../images/bg.png") no-repeat scroll center 0;
    width: 100%;
    overflow-x: hidden;
    height: 266px;
}

.katch_bus_overview .bus-bg.business-bg {
    background: url("../images/business-bg.png") no-repeat scroll center 0;
}

.katch_bus_overview .bus-bg .bus-bg-one {
    background: url("../images/bus-gif.gif") no-repeat center center;
    width: 330px;
    height: 113px;
    background-size: 100%;
    position: absolute;
    bottom: 0;
    left: 30%;
    -webkit-animation: myfirst 22s linear infinite;
    animation: myfirst 22s linear infinite;
}

.katch_bus_overview .bus-bg .taxi-bg {
    background: url("../images/taxi-gif.gif") no-repeat center center;
    width: 190px;
    height: 95px;
    background-size: 100%;
    position: absolute;
    bottom: 0;
    left: 40%;
    -webkit-animation: myfirst 40s linear infinite;
    animation: myfirst 40s linear infinite;
}

.katch_bus_overview .bus-bg .bus-bg-two {
    background: url("../images/cyclist.gif") no-repeat center center;
    width: 88px;
    height: 100px;
    background-size: 100%;
    bottom: 0;
    left: 38%;
    position: absolute;
    -webkit-animation: myfirst 30s linear infinite;
    animation: myfirst 30s linear infinite;
}

.katch_bus_overview .bus-bg .bus-bg-three {
    background: url("../images/walkah.gif") no-repeat center center;
    width: 140px;
    height: 105px;
    background-size: 100%;
    position: absolute;
    bottom: 0;
    left: 30%;
    -webkit-animation: myfirst 45s linear infinite;
    animation: myfirst 45s linear infinite;
}

@-moz-keyframes myfirst {
    0% {
        left: -25%;
    }

    100% {
        left: 100%;
    }
}

@-webkit-keyframes myfirst {
    0% {
        left: -25%;
    }

    100% {
        left: 100%;
    }
}

@keyframes myfirst {
    0% {
        left: -25%;
    }

    100% {
        left: 100%;
    }
}

@keyframes myfirst {
    0% {
        left: -35%;
    }

    100% {
        left: 100%;
    }
}

.ticketing_sec {
    position: relative;
    margin: 60px 0;
}

.ticketing_sec .ticketing_img {
    text-align: center;
}

.ticketing_sec .ticketing_text {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.ticketing_sec .ticketing_text h3 {
    color: var(--black);
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 15px;
}

.ticketing_sec .ticketing_text p {
    font-size: 18px;
}

.bus_ticket_feature {
    position: relative;
    margin: 40px 0;
}

.bus_ticket_feature .sec_title {
    margin-bottom: 20px;
}

.bus_ticket_feature .col-lg-4.col-md-6 {
    margin-bottom: 20px;
}

.pos_machine_sec {
    position: relative;
    margin: 40px 0 10px;
}

.pos_machine_sec .sec_title {
    margin-bottom: 15px;
}

.pos_machine_sec .p_text {
    font-size: 16px;
    margin: 0 auto 40px;
    text-align: center;
    width: 50%;
}

.pos_machine_sec.katch_bus .p_text {
    font-size: 18px;
    margin: 0;
    text-align: center;
    font-weight: 500;
    width: 100%;
}

.pos_machine_sec .pos_machine_img {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pos_machine_sec .pos_machine_feature {
    border-radius: 10px;
    padding: 30px 15px;
    box-shadow: 0 1px 10px 0 rgba(0, 0, 0, 10%);
    background: var(--white);
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 30px;
}

.pos_machine_sec .pos_machine_feature i {
    color: var(--green-color);
}

.pos_machine_sec .pos_machine_feature span {
    line-height: 15px;
    color: var(--black);
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 10px;
    display: block;
}

.pos_machine_sec .pos_machine_feature p {
    font-size: 16px;
    margin: 0;
}

.ticket_provide_sec {
    position: relative;
    margin: 40px 0;
}

.ticket_provide_sec .sec_title {
    margin-bottom: 15px;
}

.ticket_provide_sec .col-lg-4 {
    margin-bottom: 20px;
}

.ticket_provide_sec .ticket_feature_box {
    border-radius: 10px;
    padding: 30px 25px;
    background: #f0f0f0;
    margin-bottom: 20px;
    height: 100%;
}

.ticket_provide_sec .ticket_feature_box h5 {
    color: var(--black);
    font-size: 22px;
    font-weight: 700;
    margin: 20px 0;
}

.ticket_provide_sec .ticket_feature_box .ticket_p_text {
    margin: 0;
    font-size: 18px;
}

/* katch bus css end */


/* katch card css start */
.katch_card_form {
    position: relative;
    margin-bottom: 40px;
}

.card_form {
    padding: 50px 40px;
    background: var(--white);
    box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.10);
}

.card_form form h6 {
    font-size: 22px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 20px;
}

.card_form .sec_btn {
    margin-top: 20px;
    margin-bottom: 30px;
}

.card_form p {
    margin: 0;
}

.card_form .katch_card_img {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.single_field.with-country-code>div {
    display: flex;
    align-items: center;
}

.single_field.with-country-code>div span {
    border-radius: 5px 0 0 5px;
    padding: 10px;
    border: 1px solid var(--gray);
    border-right: 0;
}

.single_field.with-country-code>div input {
    border-radius: 0 5px 5px 0;
}

.traveling_sec {
    position: relative;
    margin-bottom: 40px;
}

.traveling_sec .sec_title {
    font-size: 34px;
    margin: 0;
    text-align: unset;
    height: 100%;
    display: flex;
    align-items: center;
}

.travel_boxes {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    gap: 15px;
}

.travel_boxes .travel_inner_box {
    width: 48%;
    display: flex;
    align-items: center;
    gap: 15px;
}

.travel_boxes .travel_inner_box span {
    font-weight: 700;
    color: var(--black);
    font-size: 28px;
}

.card_tabbing_sec {
    position: relative;
    margin: 40px 0;
}

.card_tabbing_sec .col-lg-4 {
    margin-bottom: 30px;
}

.card_tabbing_sec .nav-link {
    display: flex;
    flex-direction: column;
    align-items: self-start;
    margin: 0 0 15px;
    padding: 0 0 15px;
    border-bottom: 1px solid var(--gray);
    opacity: 0.6;
}

.card_tabbing_sec .nav-link h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--black);
}

.card_tabbing_sec .nav-link p {
    margin: 0;
}

.card_tabbing_sec .nav-link.active {
    background: unset;
    opacity: 1;
}

.card_tabbing_sec .tab-content {
    height: 100%;
    text-align: center;
}

.card_tabbing_sec .tab-pane.active {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* katch card css end */


/* katch taxi css start */
.taxi_sec_dis {
    position: relative;
    padding: 40px 0;
}

.taxi_sec_dis .taxi_dis_text h4 {
    font-size: 34px;
    font-weight: 700;
    color: var(--black);
}

.taxi_dis_text {
    height: 100%;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
}

.taxi_sec_dis .taxi_dis_text p {
    margin: 0;
    font-size: 16px;
}

.taxi_sec_dis .taxi_dis_img {
    display: flex;
    align-items: center;
    justify-content: end;
}

.taxi_booking_overview {
    position: relative;
    margin: 40px 0;
}

.booking_overview_text {
    height: 100%;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
}

.booking_overview_text h4 {
    color: var(--black);
    font-weight: 700;
    font-size: 34px;
    margin-bottom: 15px;
}

.connectivity_img {
    padding: 40px 0 0;
    display: flex;
    align-items: center;
    justify-content: end;
    height: 100%;
}

.katchapp_step {
    position: relative;
    padding: 40px 0;
}

.banner-shape {
    background-image: url(../images/step-bg.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: 100%;
    padding: 40px 0 0;
    height: 460px;
}

.katchapp_step .sec_title {
    width: 25%;
    margin: 0 auto 30px;
}

.three-step-box {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
    margin-top: -330px;
}

.three-step-box .step_inner_box:nth-child(2) {
    margin-top: 150px;
}

.step_inner_box {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.step_inner_box span {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 0 auto;
    background: var(--light-green);
    display: flex;
    align-items: center;
    justify-content: center;
}

.step_inner_box p {
    text-align: center;
    width: 40%;
    margin: 0 auto;
}

/* katch taxi css end */


/* katch business css start */

.business_img_sec {
    position: relative;
    margin: 40px 0;
}

.business_img_sec h3 {
    margin: 0 auto 30px;
    font-size: 34px;
    font-weight: 700;
    color: var(--black);
    /* width: 44%; */
    text-align: center;
}

.ityped {
    border-right: 3px solid var(--green-color);
    padding-right: 10px;
    margin-right: 10px;
}

.ityped-cursor {
    display: none;
}

.business_feature_sec {
    margin: 40px 0;
    position: relative;
}

.business_feature_box {
    display: flex;
    flex-direction: column;
    gap: 100px;
    width: 100%;
}

.business_feature_box.left-box {
    align-items: flex-end;
}

.business_feature_box .inner_box {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.business_feature_box.center {
    align-items: center;
    margin-bottom: 30px;
}

.business_feature_box.center .inner_box img {
    margin: 0 auto;
}

.business_feature_box.left-box .inner_box img {
    margin-left: auto;
}

.business_feature_box .inner_box span {
    color: var(--black);
    font-size: 22px;
    font-weight: 700;
}

.business_feature_box .inner_box p {
    margin: 0;
    font-size: 16px;
}


.business_feature_img {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.vertical_slide {
    position: relative;
    margin: 40px 0;
}

.vertical_slide .slider-title {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vertical_slide .slider-title h3 {
    font-size: 34px;
    font-weight: 700;
    color: var(--black);
    margin: 0;
}

.vertical_slide .vertical_slider {
    text-align: center;
}

.vertical_slide .vertical_slider .inner_slider_box {
    padding: 20px 60px;
    border: 1px solid var(--gray);
    border-radius: 10px;
    font-size: 30px;
    font-weight: 700;
    color: #dcdcdc;
    background: var(--white);
    width: max-content;
    margin: 0 auto;
    margin-bottom: 20px;
    transform: scale(0.8);
}

.vertical_slide .vertical_slider .inner_slider_box.slick-active {
    transform: scale(1);
    border: 1px solid var(--green-color);
    color: var(--green-color);
}

.business_sales_sec .col-lg-6 {
    margin-bottom: 30px;
}

.business_sales_sec .white_box_with_image {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.business_sales_sec .white_box_with_image h3 {
    font-size: 20px;
    margin: 0;
}

.brand-value-sec {
    padding: 230px 0 0;
}

.buiness-step-overview {
    padding: 230px 0 40px;
}

.overview-text {
    position: relative;
}

.overview-text .sec_title {
    text-align: left;
    margin-bottom: 10px;
}

.overview-text h5 {
    font-size: 16px;
    font-weight: 700;
}

.overview-text ul {
    margin: 30px 0;
}

.overview-text ul li {
    color: var(--black);
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 15px;
}

.overview-text ul li i {
    color: var(--green-color);
    margin-right: 10px;
}

.business-list-form {
    position: relative;
    background: var(--white);
    border-radius: 5px;
    box-shadow: 0 1px 15px 0 rgba(0, 0, 0, 15%);
    padding: 30px;
}

.business-list-form label {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--black);
}

.business-list-form .business-login {
    display: flex;
    width: 100%;
}

.business-list-form .number-field {
    display: flex;
    width: 100%;
}

.business-list-form .number-field input {
    outline: none;
    border: 1px solid #3d3d3d;
}

.business-list-form .number-field input:nth-child(1) {
    width: 45px;
    border-radius: 5px 0 0 5px;
    border-right: 0;
    padding-left: 10px;
}

.business-list-form .number-field input:nth-child(2) {
    padding: 14px;
    width: 100%;
    border-radius: 0;
    border-left: 0;
    border-right: 0;
}

.start-btn {
    background: var(--green-color);
    color: var(--white);
    text-transform: capitalize;
    border: 0;
    outline: none;
    border-radius: 0 5px 5px 0;
    white-space: nowrap;
    padding: 0 15px;
    font-weight: 500;
}

.modal-logo {
    text-align: center;
}

.modal-logo img {
    width: 100px;
}

.otp-text {
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    display: block;
    margin: 15px 0;
    color: var(--black);
}

.sent-code-number {
    font-size: 16px;
    font-weight: 400;
    text-align: center;
    display: block;
    color: var(--black);

}

.otp-input {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.otp-input input {
    border: 1px solid var(--gray);
    outline: none;
    border-radius: 5px;
    padding: 7px 14px;
    color: var(--black);
    font-weight: 700;
    text-align: center;
    font-size: 16px;
    width: 40px;
}

.resend-otp {
    text-align: right;
    display: block;
    color: var(--green-color);
    font-size: 16px;
    width: 318px;
    margin: 5px auto 0;
}

.resend-otp:hover {
    color: var(--green-color);
    opacity: 0.8;
}

.modal-logo .sec_btn {
    margin-top: 30px;
}

.besiness_step_design {
    position: relative;
    padding: 40px 0;
    margin: 0 0 30px;
    background: #DFF9DD;
}

.besiness_step_design .step-box {
    padding: 20px;
    border-radius: 10px;
    background: var(--white);
    box-shadow: 0 2px 20px 0 rgba(0, 0, 0, 10%);
    height: 100%;
}

.besiness_step_design .step-box span {
    background: var(--black);
    border-radius: 50%;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    font-size: 18px;
    font-weight: 700;
}

.step-box .text-center {
    width: 150px;
    height: 150px;
    margin: 25px auto;
}

/* .besiness_step_design .step-box img {
    margin: 25px 0;
} */

.besiness_step_design .step-box h5 {
    color: var(--black);
    font-size: 18px;
    font-weight: 700;
}

.besiness_step_design .step-box p {
    margin: 0;
    font-size: 16px;
    font-weight: 400;
}

/* katch business css end */


/* katch payroll css start */
.payroll_service_sec {
    position: relative;
    padding: 230px 0 40px;
}

.payroll_service_sec .sec_title {
    margin-bottom: 15px;
}

.payroll_service_sec .p_text {
    font-size: 16px;
    margin: 0 auto 40px;
    text-align: center;
    width: 50%;
}

.payroll_service_sec .payroll_dis_text {
    height: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.payroll_service_sec .payroll_dis_text h4 {
    font-size: 34px;
    font-weight: 700;
    color: var(--black);
    margin: 0 0 15px;
}

.payroll_service_sec .payroll_dis_text p {
    font-size: 16px;
    margin: 0 0 10px;
}

.payroll_service_sec .payroll_dis_text p i {
    color: var(--green-color);
    margin-right: 15px;
}

.payroll_service_sec .payroll_img {
    text-align: right;
}

/* katch payroll css end */

/* bus operator banner css start */
.bus_operator_banner {
    position: relative;
    padding: 130px 0 0;
    background-image: url(../images/bus-operator-images.png);
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
}

.bus_operator_banner .sec_title {
    color: var(--white);
    width: 50%;
    margin: 0 auto 120px;
}

.bus_operator_banner img {
    margin-bottom: -180px;
}

/* bus operator banner css end */

/* whatsapp css start */
.whatsapp-sec {
    position: relative;
    padding: 40px 0;
    background-image: url('../images/whatsapp-bg.png');
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
}

.whatsapp-sec::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    background: #E4F2F4;
    width: 100%;
    height: 100%;
    opacity: 0.7;
}

.whats-img {
    z-index: 1;
    position: relative;
    display: flex;
    align-items: center;
}

.whats-img img {
    width: 500px;
    margin: 0 auto;
}

.whats-text {
    z-index: 1;
    position: relative;
}

.whats-text h3 {
    font-size: 34px;
    font-weight: 700;
    color: #11A853;
}

.whats-text h3 span {
    color: #000;
}

.whats-text p {
    margin: 20px 0;
    font-size: 24px;
}

.whats-text ul {
    margin-bottom: 15px;
}

.whats-text li {
    margin-bottom: 15px;
    font-size: 16px;
    font-weight: 600;
    color: #000;
    display: flex;
    align-items: center;
    gap: 15px;
}

.whats-text li i {
    font-size: 20px;
    color: #11A853;
}

.whats-btn {
    background: #11A853;
    border-radius: 5px;
    padding: 7px 18px;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    width: max-content;
}

.whats-btn:hover {
    color: #fff;
}

.whats-btn i {
    font-size: 26px;
    margin-left: 10px;
}

/* bus op overview sec css start */
.bus_op_overview_sec {
    position: relative;
    padding: 230px 0 60px;
}

.bus_op_overview_sec .sec_title {
    width: 54%;
    margin: 0 auto 50px;
}

.green_box {
    position: relative;
    border-radius: 30px;
    padding: 30px;
    background: linear-gradient(180deg, #D3E8F1 0%, #39B26A 100%);
    box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 15%);
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    height: 100%;
}

.green_box span {
    background: var(--black);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.green_box h3 {
    color: var(--black);
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 25px;
}

.green_box p {
    margin: 0;
}

.white_box_with_image {
    border-radius: 30px;
    background: var(--white);
    box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 15%);
    padding: 30px;
}

.white_box_with_image img {
    margin-top: 30px;
}

.white_box_with_image h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
}

.user_app_sec .white_box_with_image {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.katch_bus .white_box_with_image {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.katch_bus .col-lg-6 {
    margin-bottom: 30px;
}

.passenger_graph_sec {
    margin: 50px 0;
    border-radius: 30px;
    padding: 40px;
    background: linear-gradient(180deg, #BDECDB 0%, #69CB91 100%);
}

.passenger_graph_sec h4 {
    color: var(--black);
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
}

.passenger_graph_sec p {
    width: 50%;
    margin: 0;
}

.passenger_graph_sec img {
    margin-top: 50px;
}

/* bus op overview sec css end */

/* responsibility sec css start */
.responsibility_sec {
    position: relative;
}

.responsibility_sec .sec_title {
    width: 50%;
    margin: 0 auto 35px;
}

.responsibility_sec .col-lg-4 {
    margin-bottom: 20px;
}

.common_box {
    position: relative;
    border: 1px solid var(--green-color);
    background-color: var(--white);
    padding: 20px;
    border-radius: 10px;
    height: 100%;
}

.common_box h4 {
    color: var(--black);
    font-weight: 700;
    font-size: 22px;
    margin: 40px 0 20px;
}

.common_box p {
    margin: 0;
    font-size: 18px;
}

/* responsibility sec css end */

/* bus pos operator sec css start */

.home_banner.bus_pos_operator {
    background-image: url(../images/pos-operator.png);
}

.home_banner.user_app {
    background-image: url(../images/smartphone-hand.png);
}

.home_banner.tracking_solution {
    background-image: url(../images/gps-device-banner.webp);
}

.home_banner.surveillance_solution {
    background-image: url(../images/camera-technology-img.webp);
}

.our_partner_sec {
    position: relative;
    padding: 0 0 50px;
}

.our_partner_logo {
    overflow: hidden;
}

.inner_logo {

    display: flex;
    /* flex-wrap: wrap; */
    gap: 30px;
    animation: slide-left 20s infinite linear;
    align-items: center;
}

.our_partner_logo img {
    width: 140px;
    height: 100%;
    flex: 0 0 auto;
}

@keyframes slide-left {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(-100%);
    }
}

/* bus pos operator sec css end */

/* tracking solution page css start */
.common-ftr-sec {
    position: relative;
    text-align: center;
    padding: 120px 0;
    background: #AFF2CE;
}

.common-ftr-sec span {
    color: var(--black);
    font-size: 16px;
    font-weight: 800;
    display: block;
}

.common-ftr-sec h5 {
    color: var(--black);
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 15px;
}

.common-ftr-sec p {
    width: 46%;
    margin: 0 auto 20px;
    text-align: center;
}

.common-ftr-sec .sec_btn {
    display: inline-block;
}

.surveillance_overview_sec .col-lg-6 {
    margin-bottom: 30px;
}

/* tracking solution page css end */

/* open data page css start */
.single-field {
    position: relative;
    box-sizing: border-box;
    width: 100%;
    margin-bottom: 30px;
}

.single-field select,
.single-field textarea,
.single-field input {
    position: relative;
    /* height: 42px; */
    width: 100%;
    display: block;
    background: #ffffff;
    border: 1px solid #DFDFDF;
    border-radius: 10px;
    font-size: 15px;
    padding: 10px;
    box-shadow: none;
    outline: none;
    transition: 0.3s all;
}

.single-field label {
    position: absolute;
    top: -9.5px;
    left: 10px;
    margin: 0;
    font-size: 14px;
    line-height: normal;
    text-transform: capitalize;
    color: #000;
    transition: 0.3s all;
    padding: 1px 5px;
    background: #ffffff;
    border-radius: 2px;
}

.single-field input[readonly] {
    background: #e9ecef;
}

.single-field:before {
    content: '';
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translate(0, -50%);
    text-align: center;
    line-height: 20px;
    color: #6c757d;
    display: none;
    pointer-events: none;
    z-index: 1;
    transition: 0.3s;
}

.single-field.select-field:before {
    content: '\f054';
    right: 15px;
    font-family: 'Fontawesome';
    font-size: 14px;
    display: block;
    transform: translate(0, -50%) rotate(90deg);
}

.single-field select {
    -moz-appearance: none;
    -webkit-appearance: none;
}

.single-field select::-ms-expand {
    display: none;
}

.single-field.search-btn input {
    padding: 10px 10px 10px 32px;
}

.single-field.search-btn i {
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
    color: #DFDFDF;
}

.single-field .date-field {
    position: relative;
    width: 100%;
}

.single-field .date-field input {
    padding-right: 30px;
}

.single-field .date-field input::-webkit-inner-spin-button,
.single-field .date-field input::-webkit-calendar-picker-indicator {
    display: none;
    -webkit-appearance: none;
}

.single-field.date-field {
    position: relative;
    width: 100%;
}

.single-field.date-field input {
    padding-right: 30px;
}

.single-field.date-field input::-webkit-inner-spin-button,
.single-field.date-field input::-webkit-calendar-picker-indicator {
    display: none;
    -webkit-appearance: none;
}

.single-field.date-field:before {
    position: absolute;
    content: '\f073';
    font-family: 'fontawesome';
    font-size: 18px;
    display: block;
}

.single-field .date-field:before {
    position: absolute;
    content: '\f073';
    font-family: 'fontawesome';
    font-size: 18px;
    display: block;
    top: 50%;
    right: 10px;
    transform: translate(0, -50%);
    z-index: 1;
}

.city_select {
    padding: 20px 0;
    border-bottom: 1px solid #CFCFCF;
    background: #fff;
    margin-bottom: 40px;
}

.common_data_box {
    position: relative;
    padding: 20px 15px;
    box-shadow: 0 1px 10px 0 rgba(0, 0, 0, 15%);
    margin-bottom: 40px;
    background: #fff;
    border-radius: 10px;
}

.common_data_box.chart-box {
    margin-bottom: 20px;
}

.all_boxes {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
}

.data_box {
    border: 1px solid #CFCFCF;
    border-radius: 10px;
    padding: 25px 10px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 23px;
    transition: 0.3s all;
}

.data_box:nth-child(1):hover,
.data_box:nth-child(2):hover,
.data_box:nth-child(3):hover,
.data_box:nth-child(4):hover,
.data_box:nth-child(5):hover,
.data_box:nth-child(6):hover {
    border-color: #A0A0A0;
}

.data_box:nth-child(1):hover {
    background: #EAFFF2;
}

.data_box:nth-child(2):hover {
    background: #EAF8FF;
}

.data_box:nth-child(3):hover {
    background: #FFF5E4;
}

.data_box:nth-child(4):hover {
    background: #EFE5FF;
}

.data_box:nth-child(5):hover {
    background: #FFF1F4;
}

.data_box:nth-child(6):hover {
    background: #EAFFFE;
}

.data_box:nth-child(1):hover h4 {
    color: #11A853;
}

.data_box:nth-child(2):hover h4 {
    color: #3D7ADC;
}

.data_box:nth-child(3):hover h4 {
    color: #E88E00;
}

.data_box:nth-child(4):hover h4 {
    color: #8A59D8;
}

.data_box:nth-child(5):hover h4 {
    color: #D42A4F;
}

.data_box:nth-child(6):hover .adult_count {
    color: #0D938C;
}

.data_box span {
    font-size: 18px;
    font-weight: 800;
    display: block;
    color: #000;
}

.data_box h4 {
    margin: 0;
    color: #000;
    font-size: 28px;
    font-weight: 800;
    transition: 0.3s all;
}

.table-container {
    margin: 0 auto;
    border-radius: 8px;
    border: 1px solid #CECECE;
    overflow: auto;
    width: 100% !important;
}

.dataTables_scrollBody::-webkit-scrollbar {
    display: none !important;
}

.dataTables_scrollBody .table-container {
    border-top: 0 !important;
    border-bottom: 0 !important;
    border-radius: 0;
}

.dataTables_scroll {
    margin: 15px 0;
    display: inline-block;
    width: 100%;
}

.dataTables_scrollHeadInner{
    width: 100% !important;
}

.dataTables_scrollHead .table-container {
    border-bottom: 0;
    border-radius: 8px 8px 0 0;
}

.dataTables_scrollFoot .table-container {
    border-radius: 0 0 8px 8px;
}

.dataTables_scrollFoot .table-container tr td:first-child {
    border-radius: 0 0 0 8px;
}

.dataTables_scrollFoot .table-container tr td:last-child {
    border-radius: 0 0 8px 0;
}

table {
    width: 100%;
    border-collapse: collapse;
}

thead {
    background-color: #f4f4f4;
}

thead th {
    text-align: center;
    padding: 10px;
    font-weight: bold;
    border-bottom: 1px solid #ddd !important;
}

thead th:first-child {
    border-radius: 8px 0 0 0;
}

thead th:last-child {
    border-radius: 0 8px 0 0;
}

thead th:not(:last-child) {
    border-right: 1px solid #ddd;
}

tbody td {
    padding: 10px;
    text-align: center;
}

tfoot td {
    background-color: #eaf6e8;
    font-weight: bold;
    padding: 10px;
    text-align: center;
    border-top: 0 !important;
}

tr:last-child td {
    border-bottom: none;
}

.table-searchbar {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.switch-container {
    /* display: flex; */
    align-items: flex-start;
    border: 1px solid #ccc;
    border-radius: 10px;
    overflow: hidden;
    /* width: 320px; */
}

.switch-btn {
    flex: 1;
    padding: 10px 20px;
    text-align: center;
    cursor: pointer !important;
    font-size: 16px;
    border: none !important;
    background-color: #ffffff !important;
    color: #000 !important;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.switch-btn:hover {
    background: #f0f0f0;
}

.switch-btn.active {
    background-color: #000 !important;
    color: #ffffff !important;
    border-radius: 0 !important;
}

.chart_title {
    display: flex;
    justify-content: space-between;
    /* margin-bottom: 10px; */
}

.yellow-color {
    color: #E88E00;
}

.purple-color {
    color: #8A59D8;
}

.pink-color {
    color: #D42A4F;
}

.sky-color {
    color: #0D938C;
}

.chart_title h6 {
    font-size: 16px;
    font-weight: 800;
    margin: 0;
}

.chart_title span {
    font-size: 14px;
    font-weight: 800;
    margin: 0;
    display: block;
    color: #000;
}

.chart_date {
    font-size: 16px;
    margin-bottom: 20px;
    display: block;
}

/* open data page css end */

/* responsive start */
@media (max-width:1399px) {
    .banner-shape {
        height: 410px;
    }

    .three-step-box {
        margin-top: -310px;
    }
}

@media (max-width:1199px) {
    .banner-shape {
        height: 360px;
    }

    .three-step-box {
        margin-top: -260px;
    }

    .three-step-box .step_inner_box:nth-child(2) {
        margin-top: 110px;
    }
}

@media (max-width:991px) {

    /* main header css start */
    .main_header .container {
        max-width: 100%;
        padding: 0 15px;
    }

    .main_navigation .ul_list {
        height: 100vh;
        position: fixed;
        top: 0;
        opacity: 0;
        left: -100%;
        width: 100%;
        background: var(--white);
        z-index: 4;
        display: inline-block;
        overflow-x: auto;
        padding: 100px 30px 20px;
        transition: .3s;
    }

    .main_navigation.toggled .ul_list {
        transition: .3s;
        opacity: 1;
        left: 0;
    }

    .menu_btn {
        padding: 0;
        margin: 0;
        border: 0;
        width: 40px;
        height: 40px;
        display: block !important;
        position: absolute;
        right: 10px;
        top: 50%;
        border-radius: 0;
        outline: 0 !important;
        background: 0 0;
        z-index: 99;
        transition: .5s all;
        transform: translate(0, -50%);
        border-radius: 50%;
    }

    .menu_btn span {
        width: 25px;
        margin-bottom: 0;
        height: 3px;
        background: var(--green-color);
        border-radius: 0;
        position: absolute;
        top: 50%;
        z-index: 1;
        transition: .3s all;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .menu_btn span:first-child {
        top: 13px;
    }

    .menu_btn span:last-child {
        top: 27px;
    }

    .toggled .menu_btn span {
        opacity: 0;
        background-color: var(--green-color);
    }

    .toggled .menu_btn span:first-child {
        transform: rotate(-45deg);
        opacity: 1;
        left: 22%;
        top: 45%;
    }

    .toggled .menu_btn span:last-child {
        transform: rotate(45deg);
        opacity: 1;
        left: 22%;
        top: 45%;
    }

    .ul_list .li_list {
        height: unset;
        display: flex;
        flex-direction: column;
        align-items: self-start;
    }

    .ul_list .li_list:not(:last-child) {
        margin-right: 0;
        margin-bottom: 20px;
    }

    .sub_menu {
        position: unset;
        height: 0;
        background-color: transparent;
        box-shadow: none;
        overflow: hidden;
        padding: 0;
        padding-left: 30px;
        transition: 300ms;
    }

    /* main header css end */
    .banner_title_text {
        padding-top: 30px;
    }

    .banner_img {
        margin-top: 30px;
    }

    .overview_img {
        margin-bottom: 30px;
        text-align: center;
    }

    .katchgo_card {
        margin-bottom: 30px;
        text-align: center;
    }

    .prepaid_card_img {
        margin: 50px 0;
    }

    .review_box {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 30px;
        padding: 30px 0;
    }

    .review_box .our_reviews {
        position: unset;
        animation: none;
    }

    .specialise-01 {
        left: 4.5%;
    }

    .specialise-02 {
        left: -13.4%;
    }

    .specialise-03 {
        right: -15.9%;
    }

    /* about page css start */
    .about_page_banner {
        padding: 80px 0 250px;
    }

    .about_page_banner h1 {
        font-size: 22px;
        width: 100%;
    }

    .katch_about_text p {
        font-size: 20px;
    }

    .grow_step_sec h3 {
        font-size: 24px;
    }

    .grow_step_sec .step_slider {
        padding: 0 15px;
    }

    .grow_step_sec .step_slider::before {
        width: 95%;
    }

    .grow_step_sec .step_slider .slick-list.draggable {
        padding-right: 50px;
    }

    /* about page css end */


    /* contact us page css start */
    .contact_us_banner {
        padding: 80px 0;
    }

    .contact_us_banner h1 {
        font-size: 30px;
    }

    .contact_us_form h3 {
        font-size: 24px;
    }

    .contact_us_sec .contact_us_img {
        margin: 0 0 30px;
        display: block;
        text-align: center;
        height: unset;
    }

    .common_bottom_sec .inner_sec,
    .common_bottom_sec .business_inner_sec {
        padding: 15px;
    }

    .common_bottom_sec .inner_sec h5 {
        font-size: 20px;
    }

    .common_bottom_sec .inner_sec p,
    .common_bottom_sec .inner_sec a {
        font-size: 18px;
    }

    .common_bottom_sec .inner_bt_img {
        text-align: center;
        margin: 30px 0 0;
    }

    /* contact us page css end */


    /* katch bus page css start */
    .bus_overview_sec.new_bus_page {
        padding: 0;
    }

    .katch_bus_overview .bus_overview_img,
    .ticketing_sec .ticketing_img,
    .pos_machine_sec .pos_machine_img {
        margin: 0 0 30px;
    }

    .ticketing_sec .ticketing_text h3 {
        font-size: 24px;
    }

    .pos_machine_sec .p_text {
        margin: 0 0 40px;
        width: 100%;
    }

    .pos_machine_sec .pos_machine_feature span {
        font-size: 18px;
    }

    .ticket_provide_sec .ticket_feature_box h5 {
        font-size: 18px;
        margin: 10px 0;
    }

    /* katch bus page css end */

    /* katch card page css start */
    .traveling_sec .sec_title {
        font-size: 28px;
        text-align: center;
        height: unset;
        margin-bottom: 30px;
        display: block;
    }

    .travel_boxes .travel_inner_box span {
        font-size: 22px;
    }

    .card_form {
        padding: 15px;
    }

    .card_form form h6 {
        font-size: 20px;
    }

    .card_tabbing_sec .key_benefits_box {
        padding: 50px 30px;
    }

    .card_tabbing_sec .key_benefits_box .span_text {
        font-size: 18px;
    }

    /* katch card page css end */


    /* katch taxi page css start */
    .taxi_sec_dis .taxi_dis_text h4 {
        font-size: 24px;
    }

    .taxi_sec_dis .taxi_dis_img {
        justify-content: center;
        padding: 30px 0 0;
    }

    .taxi_booking_overview .booking_img {
        text-align: center;
        padding: 30px 0;
    }

    .booking_overview_text h4 {
        font-size: 24px;
    }

    .connectivity_img {
        justify-content: center;
        padding: 30px 0;
    }

    .banner-shape {
        background: unset;
        height: unset;
    }

    .katchapp_step .sec_title {
        width: 100%;
    }

    .step_inner_box p {
        width: 100%;
    }

    .three-step-box {
        margin: unset;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }

    .three-step-box .step_inner_box:nth-child(2) {
        margin: 0;
    }

    /* katch taxi page css end */


    /* katch business page css start */
    .business_img_sec h3 {
        font-size: 22px;
    }

    .business_feature_box.center {
        justify-content: center;
    }

    .business_feature_box {
        flex-direction: row;
        justify-content: space-between;
    }

    .business_feature_box .inner_box {
        align-items: center;
    }

    .business_feature_box .inner_box img {
        margin: unset !important;
        width: 40px;
    }

    .business_feature_img {
        display: block;
        text-align: center;
        margin: 30px 0;
    }

    .business_feature_box .inner_box span {
        font-size: 18px;
    }

    .vertical_slide .slider-title {
        padding: 30px 0;
    }

    .vertical_slide .slider-title h3 {
        font-size: 24px;
    }

    .business_sales_sec .col-lg-3.col-md-6 {
        margin-bottom: 20px;
    }

    .step-img {
        text-align: center;
        margin-bottom: 30px;
    }

    .besiness_step_design .col-lg-3.col-md-6 {
        margin-bottom: 20px;
    }

    /* katch business page css end */


    /* katch payroll page css start */

    .payroll_service_sec {
        padding: 190px 0 40px;
    }

    .payroll_service_sec .p_text {
        width: 100%;
    }

    .payroll_service_sec .payroll_dis_text h4 {
        font-size: 24px;
    }

    .payroll_service_sec .payroll_img {
        text-align: center;
        padding: 0 0 30px;
    }

    /* katch payroll page css end */

    .overview_title_text {
        width: 100%;
    }

    .bus_operator_banner .sec_title {
        width: 100%;
        margin: 0 auto 70px;
    }

    .green_box h3 {
        margin: 30px 0 15px;
        font-size: 22px;
    }

    .white_box_with_image h3 {
        font-size: 22px;
    }

    .bus_op_overview_sec .sec_title {
        width: 100%;
    }

    .bus_op_overview_sec .col-lg-6 {
        margin-bottom: 30px;
    }

    .passenger_graph_sec {
        padding: 20px;
    }

    .passenger_graph_sec p {
        width: 100%;
    }

    .passenger_graph_sec h4 {
        font-size: 22px;
    }

    .responsibility_sec .sec_title {
        width: 100%;
    }

    .common-ftr-sec p {
        width: 100%;
    }

    .whats-text h3 {
        margin-top: 38px;
    }

    /* open data css start */
    .table-searchbar {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .switch-container {
        width: unset;
    }

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

    /* open data css end */
}

@media (max-width:767px) {

    .sec_title,
    .banner_title_text .title_text {
        font-size: 24px;
    }

    .banner_title_text .p_text {
        font-size: 14px;
    }

    .overview_text h3,
    .prepaid_card_text ul li:nth-child(1) {
        font-size: 22px;
    }

    .overview_text h4 {
        font-size: 20px;
    }

    .overview_text p {
        font-size: 14px;
        line-height: 28px;
    }

    .prepaid_card_text ul li:nth-child(2), .prepaid_card_text ul li:nth-child(3) {
        font-size: 14px;
    }

    .prepaid_card_text ul li i {
        font-size: 20px;
    }

    /* katch bus page css start */
    .pos_machine_sec .pos_machine_feature span {
        font-size: 16px;
    }

    /* katch bus page css end */

    /* katch card page css start */
    .traveling_sec .sec_title {
        font-size: 24px;
    }

    /* katch card page css end */

    /* katch business page css start */

    .brand-value-sec {
        padding: 110px 0 0;
    }

    .business_feature_box .inner_box span {
        font-size: 16px;
    }

    .buiness-step-overview {
        padding: 120px 0 40px;
    }

    /* katch business page css end */

    .payroll_service_sec {
        padding: 90px 0 40px;
    }

    .bus_operator_banner img {
        margin-bottom: -80px;
    }

    .bus_op_overview_sec {
        padding: 130px 0 60px;
    }
}

@media (max-width:576px) {

    /* about page css start */
    .about_page_banner {
        padding: 80px 0 150px;
    }

    /* about page css end */

    /* katch business page css start */
    .business_feature_box {
        gap: 30px;
    }

    .business_feature_box .inner_box {
        width: 100%;
    }

    .business-list-form .number-field input:nth-child(2) {
        border-right: 1px solid #3d3d3d;
        border-radius: 0 5px 5px 0;
    }

    .business-list-form .business-login {
        flex-direction: column;
        align-items: center;
        gap: 25px;
    }

    .start-btn {
        border-radius: 5px;
        padding: 15px;
    }

    /* katch business page css end */
}

@media (max-width:450px) {
    .home-trusted-stats {
        align-items: center;
    }

    .home-trusted-stat {
        width: 100%;
    }
}

@media (max-width:360px) {
    .resend-otp {
        width: 100%;
    }

    .otp-input input {
        width: 30px;
        padding: 3px 8px;
    }
}

/* responsive end */