@charset "UTF-8";

/*=====================
01. General css start
==========================*/
@font-face {
    font-family: var(--main-font);
    src: url('fonts/Nunito-Regular.ttf');
}

:root {
    --primary-color: #1F212D;
    --secondary-color: #FF5E15;
    --golden-color: #d19f29;
    --border-color: #C4C4C4;
    --light-bg: #F2F3F5;
    --text-color: #666666;
    --dark-color: #181A25;
    --dark-color-2: #11131E;
    --white-color: #ffffff;
    --black-color: #000000;
    --red-color: #d91919;
    --gradient-color: linear-gradient(to bottom, rgba(246, 251, 246, 1) 55%, rgba(255, 255, 255, 0) 95%);
    --box-shadow: 0 2px 6px 0 #20212451;
    --transition: .3s;
    --transition-md: .4375s;
    --transition-lg: .625s;
    --input-color: rgb(70 69 71 / 0.7);
    --body-font: "Inter", serif;
    --title-font: "Marcellus", serif;
    --secondary-overlay-color: 114, 6, 6;
    --scrollbar-thumb-color: var(--primary-color);
    --scrollbar-track-color: var(--dark-color);
    --selection-color: rgba(36, 77, 77, 0.1);
    --top-header: 46px;
    --main-header: 100px;
    --box-space: 120px;
    --content-space: calc(var(--box-space) - 7px);
}

::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    background-color: #F5F5F5;
}

::-webkit-scrollbar {
    width: 6px;
    background-color: #F5F5F5;
}

::-webkit-scrollbar-thumb {
    background-color: var(--primary-color);
}

body {
    position: relative;
    background: white;
    font-size: 15px;
    font-family: var(--main-font);
    overflow-x: hidden;
}

img {
    max-width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
    font-family: var(--title-font);
}

.clrblack {
    color: black !important;
}

.cleblue {
    color: var(--primary-color);
}


.loganame {
    font-size: 40px;
    color: #fff;
}

.margintop1 {
    margin-top: -13px;
    color: #fff;
    font-size: 25px;
}

.fw-medium {
    font-weight: 500 !important;
}

.text-primary {
    color: var(--primary-color) !important;
}

.text-theme {
    color: var(--primary-color) !important;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

.bg-theme {
    background-color: var(--primary-color) !important;
}

.clrw {
    color: white;
}

.theme-color {
    color: var(--primary-color);
}

.text-block {
    position: absolute;
    border: 2px solid white;
    width: 90%;
    height: 90%;
    bottom: 20px;
    right: 20px;
    color: white;
    padding-left: 20px;
    padding-right: 20px;
    box-shadow: rgb(220, 219, 216);
    text-align: left;
}

.new_container {
    max-width: 1240px;
    width: 100%;
    padding-right: var(--bs-gutter-x, .75rem);
    padding-left: var(--bs-gutter-x, .75rem);
    margin-right: auto;
    margin-left: auto;
}

.light-bg {
    background-color: var(--light-bg);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: normal;
}

h1 {
    font-size: calc(26px + (50 - 26) * ((100vw - 320px) / (1920 - 320)));
    font-weight: 700;
    letter-spacing: 0.03em;
    line-height: 1.1;
    text-transform: uppercase;
}

h2 {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 0.001em;
    line-height: 32px;
    text-transform: capitalize;
}

h3 {
    font-size: calc(20px + (24 - 20) * ((100vw - 320px) / (1920 - 320)));
    font-weight: 400;
    letter-spacing: 0.03em;
    line-height: 1.2;
}

h4 {
    font-size: calc(18px + (22 - 18) * ((100vw - 320px) / (1920 - 320)));
    font-weight: 400;
    letter-spacing: 0.03em;
    line-height: 1.2;
    text-transform: capitalize;
}

h5 {
    font-size: calc(16px + (20 - 16) * ((100vw - 320px) / (1920 - 320)));
    font-weight: 400;
    letter-spacing: 0.03em;
    line-height: 1.2;
}

h6 {
    font-size: calc(14px + (16 - 14) * ((100vw - 320px) / (1920 - 320)));
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: 0.03em;
}

ul {
    padding-left: 0;
    margin-bottom: 0;
}

li {
    font-size: 16px;
    letter-spacing: 0.03em;
}

p {
    font-size: 16px;
    /*    line-height: 18px;*/
    color: #383838;
    letter-spacing: 0.03em;
}

a {
    -webkit-transition: 0.5s ease;
    transition: 0.5s ease;
    letter-spacing: 0.03em;
    text-decoration: none;
    color: inherit;
}

a:hover {
    text-decoration: none;
    -webkit-transition: 0.5s ease;
    transition: 0.5s ease;
    color: var(--secondary-color);
}

a:focus {
    outline: none;
}

.white-text p,
.white-text h1,
.white-text h2,
.white-text h3,
.white-text h4,
.white-text h5,
.white-text h6,
.white-text .h1-title,
.white-text .h2-title,
.white-text .h3-title,
.white-text .h4-title,
.white-text .h5-title,
.white-text .h6-title,
.white-text ul li,
.white-text .read-more,
.white-text span {
    color: var(--white-color);
}

label {
    letter-spacing: 0.03em;
}

button:focus,
.btn:focus {
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}

section,
.section-t-space {
    padding-top: 50px;
}

/*==========title CSS Start==========*/
.sub-title {
    text-transform: uppercase;
    letter-spacing: 0.62em;
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--dark-color);
    font-family: var(--body-font);
}

.sec-title {
    font-size: 45px;
    font-family: var(--title-font);
    color: var(--primary-color);
    letter-spacing: -0.01em;
    line-height: 1.02;
    margin-bottom: 36px;
    position: relative;

    span {
        color: var(--secondary-color);
        width: max-content;
        position: relative;

        &::after {
            content: '';
            position: absolute;
            bottom: -10%;
            left: 0;
            height: 30%;
            mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='247' height='22' fill='none'%3E%3Cmask id='a' width='246' height='23' x='0' y='1' maskUnits='userSpaceOnUse' style='mask-type:alpha'%3E%3Cpath fill='%23D9D9D9' d='M0 1h246v23H0z'/%3E%3C/mask%3E%3Cg mask='url(%23a)'%3E%3Cpath fill='%2300a661' d='M.225 13.987c40.77-3.247 81.218-6.304 122.486-5.61 40.217.68 80.07 3.493 119.823 8.284 4.828.577 4.966-4.727.193-5.301-40.597-4.886-82.029-7.082-123.059-6.436-39.896.627-80.713 2.548-119.53 8.822-.233.04-.132.263.087.25v-.009z'/%3E%3C/g%3E%3C/svg%3E");
            mask-repeat: no-repeat;
            mask-size: 95%;
            width: 100%;
            background-color: var(--secondary-color);
            /* Fixed from background-image */
            background-repeat: no-repeat;
            animation: background-size-300 0.4s 1.5s ease-in both;
            background-size: 300%;
        }
    }
}

/*==========title CSS end==========*/


/*==========Btn CSS Start==========*/

.btn-theme {
    position: relative;
    overflow: hidden;
    background: var(--secondary-color);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
    color: var(--white-color);
    font-weight: 600;
    text-align: center;
    padding: 22px 35px;
    line-height: 1;
    cursor: pointer;
    outline: none !important;
    border: 0;
    transition: var(--transition);
    z-index: 2;
    border-radius: 5px;
    -webkit-appearance: none;
    appearance: none;
}

.btn-theme:after {
    content: '';
    position: relative;
    display: inline-block;
    --mask-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTMiIGhlaWdodD0iMTIiIHZpZXdCb3g9IjAgMCAxMyAxMiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTYuNTQ1NDcgMTEuOTk5OUM2LjM3NTI3IDEyLjAwMDkgNi4yMDg2MyAxMS45NTEyIDYuMDY2OCAxMS44NTcxQzUuOTI0OTcgMTEuNzYzIDUuODE0MzcgMTEuNjI4OCA1Ljc0OTEgMTEuNDcxNkM1LjY4MzgzIDExLjMxNDQgNS42NjY4NiAxMS4xNDE0IDUuNzAwMzMgMTAuOTc0NUM1LjczMzgxIDEwLjgwNzYgNS44MTYyMyAxMC42NTQ1IDUuOTM3MDggMTAuNTM0NkwxMC40Nzg2IDYuMDAxNjZMNS45MzcwOCAxLjQ2ODcxQzUuNzk2NjkgMS4zMDQ3OCA1LjcyMzM0IDEuMDkzOTIgNS43MzE2NyAwLjg3ODI2MkM1Ljc0IDAuNjYyNjAzIDUuODI5NCAwLjQ1ODAyOSA1Ljk4MjAxIDAuMzA1NDIxQzYuMTM0NjIgMC4xNTI4MTQgNi4zMzkxOSAwLjA2MzQxMjQgNi41NTQ4NSAwLjA1NTA4MjRDNi43NzA1MSAwLjA0Njc1MjQgNi45ODEzNyAwLjEyMDEwOCA3LjE0NTI5IDAuMjYwNDg5TDEyLjI4NjYgNS40MDE4NEMxMi40NDYyIDUuNTYyMzkgMTIuNTM1OCA1Ljc3OTU3IDEyLjUzNTggNi4wMDU5NUMxMi41MzU4IDYuMjMyMzIgMTIuNDQ2MiA2LjQ0OTUgMTIuMjg2NiA2LjYxMDA1TDcuMTQ1MjkgMTEuNzUxNEM2Ljk4NTY5IDExLjkwOTcgNi43NzAyNyAxMS45OTkgNi41NDU0NyAxMS45OTk5WiIgZmlsbD0id2hpdGUiLz4KPHBhdGggZD0iTTEuNDA0ODQgMTJDMS4yMzQ2NCAxMi4wMDEgMS4wNjgwMSAxMS45NTEzIDAuOTI2MTczIDExLjg1NzJDMC43ODQzNCAxMS43NjMxIDAuNjczNzQgMTEuNjI4OSAwLjYwODQ3NCAxMS40NzE3QzAuNTQzMjA3IDExLjMxNDUgMC41MjYyMzEgMTEuMTQxNCAwLjU1OTcwOSAxMC45NzQ2QzAuNTkzMTg4IDEwLjgwNzcgMC42NzU2MDQgMTAuNjU0NiAwLjc5NjQ1MSAxMC41MzQ3TDUuMzM3OTggNi4wMDE3NUwwLjc5NjQ1MSAxLjQ2ODc5QzAuNjM1MDk1IDEuMzA3NDMgMC41NDQ0NDYgMS4wODg1OSAwLjU0NDQ0NiAwLjg2MDM5OEMwLjU0NDQ0NiAwLjYzMjIwNiAwLjYzNTA5NSAwLjQxMzM2IDAuNzk2NDUxIDAuMjUyMDA1QzAuOTU3ODA3IDAuMDkwNjQ4OCAxLjE3NjY1IDEuNzAwMTZlLTA5IDEuNDA0ODQgMEMxLjYzMzA0IC0xLjcwMDE2ZS0wOSAxLjg1MTg4IDAuMDkwNjQ4OCAyLjAxMzI0IDAuMjUyMDA1TDcuMTU0NTkgNS4zOTMzNUM3LjMxNDE4IDUuNTUzOSA3LjQwMzc2IDUuNzcxMDggNy40MDM3NiA1Ljk5NzQ2QzcuNDAzNzYgNi4yMjM4NCA3LjMxNDE4IDYuNDQxMDIgNy4xNTQ1OSA2LjYwMTU3TDIuMDEzMjQgMTEuNzQyOUMxLjkzMzg4IDExLjgyMzkgMS44MzkyNCAxMS44ODgzIDEuNzM0OCAxMS45MzI0QzEuNjMwMzcgMTEuOTc2NSAxLjUxODIyIDExLjk5OTUgMS40MDQ4NCAxMloiIGZpbGw9IndoaXRlIi8+Cjwvc3ZnPgo=');
    -webkit-mask-image: var(--mask-image);
    mask-image: var(--mask-image);
    -webkit-mask-size: 100%;
    mask-size: 100%;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    width: 13px;
    height: 12px;
    flex-shrink: 0;
    background: var(--white-color);
    transition: var(--transition);
}

.btn-theme:hover:after {
    animation: alert 1.5s linear infinite;
}

@keyframes alert {
    0% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(4px, 0);
    }

    100% {
        transform: translate(0, 0);
    }
}

.btn-theme:hover {
    background: var(--dark-color);
    color: var(--white-color);
}

.btn-theme.hover-two:hover {
    background: var(--white-color);
    color: var(--dark-color);
}

.btn-theme.hover-two:hover:after {
    background-color: var(--dark-color);
}

.multi-button {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;

    a {
        padding: 19px 13px;
        width: 100%;
        border-radius: 5px;
        gap: 2px;
    }
}

/*==========Button CSS End==========*/


/*==========Header CSS Start==========*/
header .container-fluid {
    max-width: 1300px;
}

.site-header li {
    display: inline-block;
}

.site-header {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background-color: var(--primary-color);
    transition: 0.3s;
    border-bottom: 1px solid var(--secondary-color);
}

.site-header.sticky-header {
    box-shadow: 6px 6px 60px 0px rgba(255 255 255 / 0.0625);
    z-index: 101;
    transition: 0.3s;
    position: fixed;
    padding-block: 13px 0;
}

.header-social li a {
    display: inline-flex;
    align-items: center;
    gap: 9px;
}

.header-social li a span {
    color: inherit;
}

.header-social li a:hover {
    color: var(--secondary-color);
}

.header-social li:not(:first-child) {
    margin-left: 20px;
    padding-left: 20px;
    border-left: 1px solid rgba(255 255 255 / .2);
}

.sticky-header .header-top {
    margin-top: calc(var(--top-header) * -1);
}

.header-top {
    transition: var(--transition);
}

.top-hader-main-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-block: 3px;
}

.heder-main {
    display: flex;
    align-items: center;
    border-top: 1px solid rgba(255 255 255 / 70%);
}

.header-social {
    display: inline-flex;
    align-items: center;
    line-height: 1;
}

.main-navigation ul li ul.sub-menu {
    position: absolute;
    top: 150%;
    left: 50%;
    min-width: 275px;
    max-width: 276px;
    max-height: 375px;
    transform: translate(-50%, 0);
    background: var(--white-color);
    box-shadow: 0 0 10px rgba(60, 140, 244, 0.15);
    padding-left: 0;
    display: none;
    opacity: 0;
    overflow: auto;
}

.main-navigation ul li {
    position: relative;
    color: var(--white-color);
}

.main-navigation ul li a {
    font-family: var(--title-font);
    font-weight: 500;
    line-height: 1;
}


.main-navigation ul.main-menu>li {
    display: inline-flex;
    align-items: center;
    padding-block: 30px;
}

.main-navigation ul.main-menu>li.menu-parent>a {
    padding-right: 18px;
    position: relative;
}

.main-navigation ul li.menu-parent>a:after {
    content: "\f078";
    position: absolute;
    right: 0;
    top: 60%;
    transform: translate(0, -50%);
    font-family: "Font Awesome 5 Free";
    font-weight: bold;
    font-size: 12px;
    line-height: 1;
    color: currentColor;
    transition: transform var(--transition);
    pointer-events: none;
}

.main-navigation ul li ul.sub-menu li:not(:last-child) {
    border-bottom: 1px solid rgba(24 26 37/ .1375);
}

.main-navigation ul li ul.sub-menu li {
    display: block;
}

.main-navigation ul li ul.sub-menu li a {
    display: block;
    padding: 7px 38px 7px 18px;
    text-align: left;
    color: var(--dark-color);
}


.main-navigation ul li ul.sub-menu li a:hover,
.main-navigation ul.main-menu>li.active-menu .active-sub-menu a {
    color: var(--white-color);
    background-color: var(--secondary-color);
}

.main-navigation ul.main-menu {
    display: inline-flex;
    gap: 40px;
    align-items: center;
}

.header-mobile-menu {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 40px;
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 40px;
}

.site-branding {
    height: 100%;
    display: flex;
    align-items: center;
    margin-left: var(--spacer);
    padding-block: 3px;
}

.site-branding img {
    width: 84px;
    border-radius: 8px;
    filter: brightness(2) contrast(1.5);
}

@media (min-width: 992px) {

    .main-navigation ul.main-menu>li.menu-parent:hover ul.sub-menu {
        display: block;
        top: 75%;
        opacity: 1;
        animation: swip_up var(--transition) linear 1;
    }

    @keyframes swip_up {
        from {
            top: calc(100% + 20px);
            opacity: 0;
        }

        to {
            top: 100%;
            opacity: 1;
        }
    }


    .main-navigation ul.main-menu>li.menu-parent:hover>a:after,
    .main-navigation ul.main-menu>li.menu-parent>a:hover:after {
        transform: translate(0, -50%) rotate(-180deg);
    }

    .main-navigation ul.main-menu li a:hover,
    .main-navigation ul.main-menu>li.menu-parent:hover>a,
    .main-navigation ul.main-menu>li.active-menu>a,
    .main-navigation ul.main-menu>li.active-menu>a:after {
        color: var(--secondary-color);
    }
}

.menu-toggle {
    --menu-inset: 8px;
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    right: var(--spacer);
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    align-items: center;
    width: 44px;
    aspect-ratio: 1/1;
    padding: 0;
    background-color: var(--secondary-color);
    text-align: center;
    border: none;
    outline: none;
    display: none;
    z-index: 110;
}

.menu-toggle span {
    width: calc(100% - 16px);
    height: 3px;
    background: var(--white-color);
    display: block;
    position: relative;
    top: 0;
    opacity: 1;
    float: left;
    transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
}

@media (max-width: 991px) {
    :root {
        --main-header: 78px;
        --box-space: 100px;
    }

    .h2-title {
        margin-bottom: 20px;
    }

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

    .for-des {
        display: none !important;
    }

    .for-mob {
        display: block !important;
    }

    .for-des-flex {
        display: none !important;
    }

    .for-mob-flex {
        display: flex !important;
    }

    .menu-toggle {
        --menu-inset: 8px;
        position: absolute;
        top: 50%;
        transform: translate(0, -50%);
        right: var(--spacer);
        flex-direction: column;
        justify-content: center;
        gap: 5px;
        align-items: center;
        width: 44px;
        aspect-ratio: 1/1;
        padding: 0;
        background-color: var(--secondary-color);
        text-align: center;
        border: none;
        outline: none;
        display: none;
        z-index: 110;
    }

    .menu-toggle span {
        width: calc(100% - 16px);
        height: 3px;
        background: var(--white-color);
        display: block;
        position: relative;
        top: 0;
        opacity: 1;
        float: left;
        transition: all 0.2s cubic-bezier(0.98, 0.57, 1, 1) 0s;
    }

    .main-navigation .header-mobile-menu {
        --inline-gap: 40px;
        display: block;
        position: fixed;
        top: 0;
        right: -400px;
        width: 320px;
        height: 100vh;
        max-height: 100vh;
        overflow: auto;
        background: var(--primary-color);
        text-align: center;
        padding: 100px 0 30px;
        box-shadow: -30px 0 30px rgba(0, 0, 0, 0.1);
        transition: 0.5s;
        opacity: 0;
        z-index: 100;
    }

    .main-navigation.toggle-menu .header-mobile-menu {
        right: 0;
        opacity: 1;
        z-index: 100;
    }

    .header-top {
        display: none;
    }

    .heder-main {
        border: 0;
        height: 100%;
    }

    .site-header {
        --spacer: 30px;
        height: calc(var(--main-header) + 10px);
    }

    .site-header.sticky-header {
        padding: 0;

    }

    .heder-main .container,
    .heder-main .container .row {
        max-width: 100%;
        padding: 0;
        margin: 0;
        height: 100%;
    }

    .heder-main .row .col-lg-2 {
        height: 100%;
        padding: 0;
    }

    .main-navigation.toggle-menu button span:first-child {
        transform: rotate(45deg);
        top: var(--menu-inset);
        transform-origin: center;
    }

    .main-navigation.toggle-menu button span:last-child {
        transform: rotate(-45deg);
        top: calc(var(--menu-inset) * -1);
        transform-origin: center;
    }

    .main-navigation.toggle-menu button span:nth-child(2) {
        opacity: 0;
    }

    .banner-image-path-main,
    .banner-image-path-sub,
    .banner-image-path-sub .back-img {
        clip-path: unset;
    }

    .banner-image-path-main {
        height: 100%;
        width: 100%;
        inset: 0;
    }

    .banner-content {
        z-index: 2;
    }

    .banner-image-path-main:before {
        content: '';
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        background-color: var(--primary-color);
        opacity: .875;
    }

    .main-banner-slide {
        padding: 40px 0 0 0;
        min-height: 650px;
    }

    .banner-stripes {
        width: 100%;
        max-width: calc(100% - 100px);
        z-index: 96;
    }

    .banner-image-path-main {
        transform: translate(0);
        transition-duration: .8s;
        transition-delay: 0.8s;
    }

    .main-banner-slide.swiper-slide-active .banner-image-path-main {
        transition-delay: 1s;
    }

    .main-navigation ul.main-menu {
        display: block;
        text-align: left;
    }

    .main-navigation ul.main-menu>li {
        display: block;
        padding: 15px 15px;
        border-bottom: solid 1px rgb(225, 225, 225, 0.2);
    }

    .main-navigation ul li.menu-parent>a:after {
        top: 50%;
    }

    .main-navigation ul.main-menu>li.menu-parent.opened-menu a:after {
        transform: translate(0, -50%) rotate(-180deg);
    }

    .main-navigation ul.main-menu>li.active-menu>a,
    .main-navigation ul.main-menu>li.active-menu>a:after,
    .main-navigation ul.main-menu>li.active-menu ul li.active-sub-menu a {
        color: var(--secondary-color);
    }

    .black-shadow {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: #000000;
        opacity: 0.5;
        z-index: 90;
        display: none;
    }

    .header-cta {
        flex-flow: row-reverse;
        justify-content: flex-end;
        padding: var(--inline-gap);
    }

    .main-navigation ul li a:hover {
        color: var(--secondary-color);
    }

    .main-navigation ul.main-menu li a {
        display: inline-flex;
        gap: 10px;
        align-items: center;
        width: 100%;
    }

    .main-navigation ul li ul.sub-menu {
        position: relative;
        background: transparent;
        box-shadow: unset;
        min-width: unset;
        left: 0;
        transform: translate(00);
        white-space: unset;
        opacity: 1;
    }

    .main-navigation ul li ul.sub-menu li a {
        text-align: left;
        padding: 10px 38px 10px 18px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        background-color: transparent !important;
        color: var(--white-color);
    }

    .main-navigation ul li ul.sub-menu li:last-child a {
        border: 0;
    }

    .main-navigation ul li ul.sub-menu li a:hover {
        color: var(--secondary-color);
    }
}

/*==========Header CSS End==========*/


/**************Index Slider**************/
.slider {
    position: relative;
    width: 100%;
    height: 590px;
    background-color: var(--primary-color);
    padding-block: 40px;
}

.bg_vedio {
    position: absolute;
    top: 0;
    left: 0;
    width: 70%;
    height: 100%;

    video {
        width: 100%;
        object-fit: cover;
        height: 100%;
        filter: brightness(1);
    }
}

.slides {
    width: 100%;
    height: 100%;
    z-index: 1;
}

.slide {
    display: flex;
    justify-content: end;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s linear;
}

.slide.active {
    opacity: 1;
}

.slide .content {
    width: 51%;
    padding: 0 2% 0 1%;
    color: #333;
    margin-top: 0;
    position: absolute;
    z-index: 3;
    top: 50%;
    left: 5%;
    transform: translateY(-50%);
}

.slide h1 {
    text-transform: capitalize;
    font-size: 65px;
    line-height: 1;
    color: var(--white-color);
    font-family: var(--title-font);
    line-height: 1;
    margin-bottom: 8px;
    font-weight: 900;
    max-width: 800px;
    animation-delay: 0s;
    margin-block: 8px 12px;

    span {
        display: inline-block;
        width: max-content;
        position: relative;

        img {
            position: absolute;
            width: 100%;
            height: auto;
            bottom: -8px;
            right: 0;
            z-index: -1;
        }
    }
}

.slide h6 {
    color: var(--secondary-color);
    text-transform: uppercase;
    margin-bottom: 10px;
    font-weight: 500;
    font-size: 20px;
    letter-spacing: normal;
}

.slide p {
    color: #EDECEC;
    font-size: 22px;
    font-weight: 400;
    font-family: var(--title-font);
    line-height: 24px;
    max-width: 550px;
    margin-bottom: 40px;
    animation-delay: 0.4s;
    font-size: 18px;
    margin-bottom: 30px;
    text-transform: capitalize;
}

.slide button {
    cursor: pointer;
    animation: fadeDown 0.5s ease-in-out;
}

.slide .image {
    height: 100%;
    width: 54%;
    position: absolute;
    bottom: 0;
    right: 0;
    clip-path: polygon(55px 0, 100% 0, 100% 100%, 65px 100%, 0 67%);
    background: var(--dark-color);
    z-index: 1;
    transform: translate(70px, 0);
    transition-duration: .6s;
    transition-delay: .4s;
}

.slide .image .image-inner {
    height: 100%;
    width: 100%;
    clip-path: polygon(85px 0, 100% 0, 100% 100%, 95px 100%, 0 67%);
    background-color: var(--secondary-color);
}

.back-img {
    clip-path: polygon(115px 0, 100% 0, 100% 100%, 115px 100%, 0 67%);
}

.back-img {
    display: block;
    height: 100%;
    width: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.slide .image img {
    max-width: 100%;
    width: 100%;
    height: 100%;
    border-radius: 0px;
    object-fit: cover;
    position: relative;
    margin: 0;
}

/*.slide.active .image img {
  animation: effectMoveHorizontalZoom 7s ease;
}

.slide.active .image.odd img {
  animation: effectMoveHorizontalscale 7s ease;
}
*/
@keyframes float-bob-x {
    0% {
        transform: translateX(-30px);
    }

    50% {
        transform: translateX(-10px);
    }

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

.float-bob-x {
    -webkit-animation-name: float-bob-x;
    animation-name: float-bob-x;
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
}


@keyframes effectMoveHorizontalZoom {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }

    100% {
        transform: scale(1.2);
        opacity: 1;
    }
}

@keyframes effectMoveHorizontalscale {
    0% {
        transform: scale(1.2);
        opacity: 1;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes opacityEffect {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.8;
    }

    100% {
        opacity: 1;
    }
}

.slider .slider_btn span {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    display: block;
}

.slider_btns {
    display: flex;
    align-items: center;
    justify-content: start;
    margin-top: 38px;
    gap: 68px;
}

.slider .slider_btn {}

.slider .slider_btn a {
    font-size: 29px;
    color: #fff;
    font-weight: 900;
    display: block;
}

.slider .slider_btn a:hover {
    cursor: pointer;
    color: var(--primary-color);
}

.slider .nav-dots {
    text-align: center;
    padding-top: 20px;
    position: absolute;
    bottom: 16px;
    left: 7%;

    .dot {
        width: 13px;
        height: 13px;
        background-color: #fff;
    }

    .dot.active {
        background-color: var(--primary-color);
    }
}

.slider .nav-icons {
    position: absolute;
    left: 6%;
    bottom: 3%;
    display: flex;
    gap: 10px;
    z-index: 5;
}


.slider .nav-icon {
    background-color: var(--secondary-color);
    color: white;
    border: none;
    padding: 20px;
    font-size: 17px;
    cursor: pointer;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.4s;
    border: 2px solid var(--white-color);
}

.slider .nav-icon i {
    pointer-events: none;
}

.slider .nav-icon:hover {
    border-color: var(--secondary-color);
    background-color: #fff;

    i {
        color: var(--primary-color);
    }
}

@keyframes fadeUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes fadeDown {
    from {
        transform: translateY(-20px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@media(max-width:768px) {
    .slider .dots-container {
        top: 50%;
    }
}

@keyframes effectMoveHorizontalZoom {
    0% {
        transform: scale(1)
    }

    50% {
        transform: scale(1.1)
    }

    100% {
        transform: scale(1.2)
    }
}

@keyframes effectMoveHorizontalscale {
    0% {
        transform: scale(1.2)
    }

    50% {
        transform: scale(1.1)
    }

    100% {
        transform: scale(1)
    }
}

/***********************
* about one
***********************/
.about-section-one {
    overflow: hidden;
    position: relative;
}

.about-left-one {
    height: 100%;
}

.about-left-one img {
    position: relative;
    left: 0;
    object-fit: cover;
    width: 100%;
    height: 100%;
    border-radius: 35px;
}

.about-right-one {
    padding-left: 20px;
}

.about-section-one .sub-title {
    margin-bottom: 9px;
}

.about-details-one {
    padding-left: 16px;
    border-left: 1px solid #D4D4D4;
    position: relative;
}

.about-details-one::after {
    content: "";
    position: absolute;
    top: 0;
    left: -1px;
    width: 1px;
    height: 0;
    background-color: var(--dark-color);
    transition: all 3s;
    height: 75%;
}

.about-details-one>p {
    margin-bottom: 25px;
}

.about-details-inner-one {
    display: flex;
    align-items: center;
    column-gap: 30px;
    margin-bottom: 25px;
}

.about-details-inner-one>span {
    border-radius: 100%;
    border: 1px solid #D9D9D9;
    padding: 18px;
}

.about-details-inner-one>span>span {
    height: 96px;
    width: 96px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #EDF1F0;
}

.about-details-box-title h5 {
    margin-bottom: 3px;
    font-weight: 500;
    color: #3B4443;
    font-family: var(--body-font);
}

.about-details-box-title p {
    margin-bottom: 0;
}

.about-project-one {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    border-top: 1px solid #D4D4D4;
    margin-left: -16px;
}

.about-project-one h4 {
    font-size: 60px;
    font-weight: 700;
    font-family: var(--body-font);
    background: linear-gradient(180deg, #DADFDE 13.89%, #FFFFFF 88.89%);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    margin-bottom: 0;
    width: 50%;
    text-align: center;
    border-right: 1px solid #D4D4D4;
}

.about-project-one p {
    margin-bottom: 0;
    width: 50%;
    padding: 0 30px;
    color: #3B4443;
}

p.lead {
    font-size: 18px;
    font-weight: 400;
}

/***********Service***********/
.single-section ul {
    padding-left: 2rem;
    margin-bottom: 15px;
}

@media(max-width:768px) {
    .single-section ul {
        padding-left: 1rem;
    }

    .single-service-details {
        padding: 20px 12px;
    }
}

.service_item {
    margin-bottom: 20px;
}

.service_item.odd {
    margin-top: 40px;
}

@media(max-width:768px) {
    .service_item.odd {
        margin-top: 0;
    }
}

.place-box {
    background-color: var(--white-color);
    box-shadow: var(--box-shadow);
    overflow: hidden;
}

.place-box .image {
    height: 230px;
    overflow: hidden;
}

.place-box .image img {
    display: block;
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.place-box .icon {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 10px solid var(--white-color);
    background-color: var(--secondary-color);
    position: absolute;
    transform: translateY(-50%);
    left: 15px;
    width: 90px;
    height: 90px;

    img {
        transition: .625s;
        width: 60% !important;
        height: auto;
    }
}

.lower_content {
    position: relative;
    padding: 43px 15px 0 15px;

    .h4 {
        font-size: 24px;
        line-height: 1.4;
        color: var(--primary-color);
        font-family: var(--body-font);
        font-weight: 700;
        text-transform: capitalize;
        margin-bottom: 12px;
        display: block;
        letter-spacing: -0.02em;
    }

    .btn-theme {
        gap: 0;
        padding: 22px;
    }

    p {
        font-size: 15px;
        line-height: 1.3;
    }
}

.author-img img {
    max-width: 70px;
}

.service_item:hover .place-box .icon img {

    transform: rotatey(360deg);
}

/*==========Testimonial CSS Start==========*/
.testimonials {
    padding: var(--content-space) 0 var(--box-space);
    position: relative;
    overflow: hidden;
}

.home2-testimonials:before,
.home2-testimonials:after {
    content: '';
    position: absolute;
    bottom: -27px;
    left: -109px;
    width: 292px;
    aspect-ratio: 1/1;
    overflow: hidden;
    border-radius: 50%;
    background-color: var(--secondary-color);
    filter: blur(172px);
    opacity: .4;
}

.home2-testimonials:after {
    inset: 159px -87px 0 auto;
}

.bg-glob {
    position: absolute;
    right: 0;
    top: 0;
}

.testimonials .sec-title {
    text-align: center;
}

.testimonial-box {
    --spacer: -10px;
    --border: 293px;
    position: relative;
    padding: 30px;
    box-shadow: var(--box-shadow);
    background-color: var(--white-color);
    margin-block: 30px;
    margin-inline: 10px;
    border-radius: 10px;
    overflow: hidden;
}

.testimonial-box:before {
    content: '';
    position: absolute;
    height: 8px;
    width: var(--border);
    bottom: 0;
    left: 0;
    background-color: var(--secondary-color);
}

.testimonial-box:after {
    content: '';
    position: absolute;
    height: 8px;
    width: 36px;
    bottom: 0;
    left: var(--border);
    background: linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 25%, rgba(255, 94, 21, 1) 25%, rgba(255, 94, 21, 1) 50%, rgba(255, 255, 255, 1) 50%, rgba(255, 255, 255, 1) 75%, rgba(255, 94, 21, 1) 75%);
}

.testimonial-box>span {
    position: absolute;
    display: inline-block;
    --mask-image: url('data:image/svg+xml,%3Csvg%20width%3D%22103%22%20height%3D%2274%22%20viewBox%3D%220%200%20103%2074%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M21.7434%2053.7026C18.0169%2058.954%2010.9731%2064.6072%201.38377%2069.3135C-1.10825%2070.5365%200.0159648%2074.3273%202.76688%2073.9773C22.915%2071.4138%2035.9741%2062.5381%2043.1054%2049.3389C45.7578%2044.4297%2047.4242%2039.2044%2048.3116%2033.8703C48.8967%2030.3534%2049.0513%2027.714%2049.0513%2024.6656C49.0513%2011.0432%2038.0723%200%2024.5291%200C10.9859%200%200.00694485%2011.0432%200.00694485%2024.6656C0.00694485%2038.288%2011.1611%2049.3389%2023.9789%2049.3389C23.3027%2051.2064%2023.1403%2051.7342%2021.7434%2053.7026ZM75.6922%2053.7026C71.9656%2058.954%2064.9218%2064.6072%2055.3325%2069.3135C52.8405%2070.5365%2053.9647%2074.3273%2056.7156%2073.9773C76.8637%2071.4138%2089.9228%2062.5381%2097.0542%2049.3389C99.7065%2044.4297%20101.373%2039.2044%20102.26%2033.8703C102.845%2030.3534%20103%2027.714%20103%2024.6656C103%2011.0432%2092.0211%200%2078.4778%200C64.9346%200%2053.9557%2011.0432%2053.9557%2024.6656C53.9557%2038.288%2065.1098%2049.3389%2077.9277%2049.3389C77.2514%2051.2064%2077.089%2051.7342%2075.6922%2053.7026Z%22%20fill%3D%22%23FF5E15%22%2F%3E%3C%2Fsvg%3E');
    -webkit-mask-image: var(--mask-image);
    mask-image: var(--mask-image);
    -webkit-mask-size: 100%;
    mask-size: 100%;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    width: 103px;
    height: 74px;
    background-color: var(--secondary-color);
    top: 30px;
    right: 30px;
    opacity: .2;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: calc(calc(var(--spacer) * -1) + 20px);
    margin: calc(var(--spacer) * -1) 0 28px calc(var(--spacer) * -1);
}

.author-img {
    position: relative;
    width: 100px;
    aspect-ratio: 1/1;
}

.testimonials .author-img img {
    max-width: 100px;
    position: relative;
    z-index: 1;
    border-radius: 50%;
}

.author-img .back-img {
    position: relative;
    overflow: hidden;
    border-radius: 50%;
    z-index: 1;
}

.author-img:before,
.author-img:after {
    content: '';
    position: absolute;
    width: 100%;
    aspect-ratio: 1/1;
    border-radius: 50%;
    top: var(--spacer);
    left: var(--spacer);
    background-color: var(--secondary-color);
    opacity: .2;
}

.author-img:after {
    inset: auto var(--spacer) var(--spacer) auto;
}

.author-content span {
    font-size: 15px;
    line-height: 1.66666667;
    color: var(--secondary-color);
    display: inline-flex;
}

.star-rating-wp {
    margin-top: 6px;
}

.star-rating {
    --font: 18px;
    --spacing: 5px;
    margin: 0;
    position: relative;
    display: inline-flex;
}

.star-rating:before {
    content: "\f005\f005\f005\f005\f005";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: #e5e5e5;
    letter-spacing: var(--spacing);
    font-size: var(--font);
}

.star-rating__fill {
    position: absolute;
    display: inline-block;
    top: 0;
    left: 0;
    overflow: hidden;
    animation: fill-star 2s ease-in-out;
}

.star-rating__fill:before {
    content: "\f005\f005\f005\f005\f005";
    color: #ffc107;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    letter-spacing: var(--spacing);
    font-size: var(--font);
}

.testimonial-text.overflow-text {
    margin-bottom: 4px;

    p {
        margin-bottom: 0;
    }
}

.bg-glob {
    position: absolute;
    right: 0;
    top: 0;
    max-width: 100%;
}

.testimonials .container {
    position: relative;
    z-index: 1;
}

/*************Cabs Section*************/
.cab-card {
    position: relative;
}

.cab-img {
    height: 330px;
    width: 100%;
    overflow: hidden;

    img {
        height: 100%;
        object-fit: cover;
    }
}

.cabs_body {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--white-color);
    padding: 20px;
    margin-top: -56px;
    margin-inline: auto;
    width: 90%;
    gap: 12px;
    box-shadow: 0 4px 60px -1px rgba(0 0 0 / .1);
    z-index: 1;
    position: relative;
}

.cabs_btn .btn-theme {
    padding: 22px;
    gap: 0;
}

.cabs_btn .btn-theme:after {
    display: none;
}

/************FAqs*************/
.dark-bg {
    background-color: var(--primary-color);
}

.faq-section {
    position: relative;
    padding: 50px 0;
    overflow: hidden;
}

.faq-section .container {
    position: relative;
    z-index: 1;
}

.faq-section:before {
    content: '';
    position: absolute;
    bottom: -67px;
    left: -115px;
    width: 292px;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 50%;
    background-color: var(--secondary-color);
    opacity: .4;
    filter: blur(172px);
}

.faq-section .banner-shape {
    position: absolute;
    transform: rotate(-3deg);
    inset: 240px -200px auto auto;
    align-items: center;
}

.banner-shape {
    position: absolute;
    bottom: 266px;
    left: auto;
    right: 74%;
    transform: translate(-50%, 0);
    display: flex;
    flex-direction: column;
    gap: 110px;
}

.faq-section .banner-shape:before {
    width: 278px;
    bottom: -210px;
    left: 55px;
}

.banner-shape:before {
    content: '';
    position: absolute;
    width: 352px;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    bottom: -270px;
    left: 30px;
    background-color: var(--secondary-color);
    opacity: .4;
    filter: blur(172px);
}

.banner-shape .stripe {
    display: block;
    height: 62px;
    aspect-ratio: 1 / .13777778;
    flex: 0 0 auto;
    background-color: var(--dark-color);
    transform: skewY(45deg) rotate(-62deg);
}

.faq-section .banner-shape .stripe-secondary,
.top-footer .banner-shape .stripe-secondary {
    height: 48px;
    aspect-ratio: unset;
    width: 210px;
}

.banner-shape .stripe-secondary {
    background-color: var(--secondary-color);
    height: 48px;
    aspect-ratio: 1 / .10666667;
}

.accordion-item {
    padding: 19px 0;
    border: 0;
    border-bottom: 1px solid rgb(255 255 255 / 30%);
    background-color: transparent;
}

.accordion-button {
    padding: 0 15px !important;
    background-color: transparent !important;
    justify-content: space-between;
}

.accordion-button.collapsed {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    gap: 10px;
    margin: 0;
    padding: 0;
    transition: var(--transition);
    color: var(--white-color);
}

.accordion-button:not(.collapsed) {
    color: var(--secondary-color);
    background-color: transparent;
    box-shadow: none;
    background-color: transparent;
}

.accordion-button::after {
    display: none;
}

.accordion-button h5 {
    font-family: var(--body-font);
    font-weight: 600;
}

.accordion-body p {
    color: #fff;
}

.accordion-button:focus {
    box-shadow: none;
    border: 0;
}

.accordion-button.collapsed span {
    display: block;
    transform: none;
    transition: 1s;
}

.accordion-button span {
    transform: rotate(-90deg);
}

/******Footer*****/

.footer-wrapper.footer-layout1 {
    overflow: initial;
    background-color: #0a1660
}

.footer-wrapper.footer-layout1 {
    overflow: initial;
    background-color: #0a1660;
}

.footer-layout1 {
    background-color: var(--primary-color);
}

.footer-wrapper {
    --border-color: rgba(255, 255, 255, 0.3);
    --body-color: #222;
    position: relative;
    z-index: 2;
    background-color: var(--primary-color);
    overflow: hidden;
    border-top: 2px solid var(--secondary-color);
}

.footer-layout1 .widget-area {
    padding-top: 60px;
    padding-bottom: 0;
    position: relative;
}

.bg-footer-color {
    background-color: var(--white-color);
}

footer .container {
    max-width: 1350px;
}

.footer-border-right {
    position: relative;
}

.footer-border-right:before {
    position: absolute;
    background: #00000040;
    height: 85%;
    width: 1px;
    top: 0;
    content: "";
    right: -11px;
}

@media (max-width: 1299px) {
    .footer-border-right:before {
        display: none
    }
}

.footer-border-right:last-child:before {
    display: none
}

.widget {
    background-color: #F5F5F5;
    margin-bottom: 40px;
    position: relative;
    border-radius: 24px;
}

.footer-widget,
.footer-widget .widget {
    padding: 0;
    border: none;
    padding-bottom: 0;
    background-color: transparent;
    box-shadow: none;
}

.footer-widget {
    margin-bottom: 50px;
}

.footer-widget .widget_title {
    max-width: 270px;
    color: var(--black-color);
    text-transform: capitalize;
    margin: -0.12em 0 24px 0;
    padding: 0 0 7px 0;
    position: relative;
}

.widget_title:after,
.widget_title:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 40px;
    height: 2px;
    background-color: var(--secondary-color);
    border-radius: 20px;
}

.widget_title:after {
    left: 44px;
    width: 10px;
    background-color: var(--primary-color);
}

.widget_title {
    position: relative;
    font-size: 22px;
    font-weight: 500;
    font-family: var(--title-font);
    line-height: 1em;
    margin: -0.12em 0 28px 0;
}

.widget_nav_menu li,
.widget_meta li,
.widget_pages li,
.widget_archive li,
.widget_categories li,
.wp-block-categories li {
    display: block;
    position: relative;
}

.footer-widget.widget_meta a,
.footer-widget.widget_pages a,
.footer-widget.widget_archive a,
.footer-widget.widget_categories a,
.footer-widget.widget_nav_menu a {
    font-size: 16px;
    font-weight: 400;
    padding: 0 0 0 0px;
    margin-bottom: 18px;
    font-family: var(--body-font);
    color: #222;
    display: block;
    max-width: 100%;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    padding-right: 0;
    background-color: transparent;
    border-bottom: none;
    position: relative;
    border: 0;
}

.footer-widget.widget_nav_menu a:before {
    position: relative;
    display: inline-block;
    padding-right: 4px;
    content: '\f105';
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    transition: 0.4s;
}

.footer-widget.widget_nav_menu a:hover:before {
    transform: translateX(3px);
}

.widget_nav_menu a,
.widget_meta a,
.widget_pages a,
.widget_archive a,
.widget_categories a,
.wp-block-categories a {
    display: block;
    background-color: var(--white-color);
    margin: 0 0 14px;
    padding: 16px 30px 16px 30px;
    font-size: 16px;
    line-height: 1.313;
    color: #788094;
    border-radius: 50px;
    -webkit-transition: 0.4s all ease;
    transition: 0.4s all ease;
}

.footer-widget.widget_meta a:hover,
.footer-widget.widget_pages a:hover,
.footer-widget.widget_archive a:hover,
.footer-widget.widget_categories a:hover,
.footer-widget.widget_nav_menu a:hover {
    background-color: transparent;
    color: var(--secondary-color);
}

.th-widget-about .about-logo {
    max-width: 146px;
    height: auto;
    margin-inline: auto;
    border-radius: 18px;
    background: var(--primary-color);
    padding: 10px;
}

.th-widget-about .about-logo {
    max-width: 130px;
    height: auto;
    margin-inline: auto;
    border-radius: 8px;
}

.footer-widget .th-widget-about .about-text {
    color: #222;
}

.th-widget-about .about-text {
    margin-bottom: 30px;
    margin-top: -0.9em;
}

.footer-layout1 .th-widget-about .th-social a {
    background-color: var(--dark-color);
    border: 0;
    border-radius: 50%;
    --icon-size: 40px;
    font-size: 13px;
}

.footer-layout1 .th-social a {
    border-radius: 50%;
    background: transparent;
}

.footer-wrapper .th-social a {
    background-color: #1F2432;
    color: var(--white-color);
}

.widget .th-social a {
    box-shadow: 0px 2px 14px rgba(4, 6, 66, 0.1);
}

.th-social a {
    display: inline-block;
    width: 46px;
    height: 46px;
    line-height: 46px;
    background-color: transparent;
    color: #788094;
    font-size: 16px;
    text-align: center;
    margin-right: 5px;
    border-radius: 10px;
    border: 1px solid var(--border-color);
}

.th-widget-contact {
    max-width: 300px;
}

.info-box {
    display: flex;
    margin-bottom: 22px;
}

.info-box_icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    line-height: 40px;
    font-size: 18px;
    background-color: rgba(0, 0, 0, 0.08);
    color: var(--secondary-color);
    border-radius: 30px;
    text-align: center;
    margin-right: 15px;
    border: 0;
}

.info-box_icon i {
    -webkit-transition: .4s;
    transition: .4s;
}

.footer-layout1 .th-widget-about .th-social a:hover {
    background-color: var(--secondary-color);
    color: var(--white-color);
}

.info-box:hover .info-box_icon i {
    -webkit-transform: rotateY(-180deg);
    transform: rotateY(-180deg);
}

.th-widget-contact .footer-info-title {
    font-size: 20px;
    color: var(--body-color);
    line-height: 1;
}

.info-box_text {
    display: block;
    color: #555;
    margin-top: -0.45em;
    margin-bottom: -0.45em;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    align-self: center;
    word-break: break-word;
}

.footer-layout1 .copyright-wrap {
    padding: 7px 0;
    background-color: var(--light-bg);
    border-top: 1px solid rgba(0, 0, 0, 0.6);
}

.copyright-wrap .copyright-text {
    color: var(--dark-color);
    line-height: 1.4;
    margin-bottom: 0;
}

.copyright-wrap .copyright-text a {
    color: var(--secondary-color);
}

/***************Taxi Services****************/
.single-service-wrap {
    border-radius: 24px;
    border: 1px solid var(--border-color);
    border-bottom: 6px solid var(--border-color);
    -webkit-transition: .4s;
    box-shadow: var(--box-shadow);
    transition: .4s;
    background-color: var(--white-color);

    .thumb {
        overflow: hidden;
        border-radius: 24px;
        height: 300px;

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

    .details {
        position: relative;
        z-index: 3;
        padding: 16px;
        padding-bottom: 22px;
        border-radius: 0 0 24px 24px;
        padding-bottom: 10px;

        h5 {
            font-size: 22px;
            line-height: 1.417;
            font-weight: 900;
            margin-top: -0.32em;
            margin-bottom: 2px;
            letter-spacing: -0.02em;
        }
    }

    .destination {
        position: relative;
        top: -12px;
        width: max-content;
        background: var(--primary-color);
        color: #fff;
        padding: 2px 8px;
        border-radius: 5px;
        box-shadow: var(--box-shadow);
        margin-block: 7px 2px;
    }

    p {
        letter-spacing: -0.01em;
    }
}

.service-area .container {
    max-width: 1250px;
}

/****************about-section-three***************/
.about-section-three {
    position: relative;

    .row {
        border-radius: 24px;
        border: 1px solid var(--border-color);
        border-bottom: 6px solid var(--border-color);
        -webkit-transition: .4s;
        box-shadow: var(--box-shadow);
        overflow: hidden;
        transition: .4s;
        background-color: var(--white-color);
    }

    .about-car {
        width: 100%;
        height: 100%;

        .about-img-01 {
            height: 100%;
        }

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

    .section-header {
        margin-left: 40px;
        padding: 20px;
    }

    .order-first .section-header {
        margin-left: 0;
        margin-right: 40px;
    }

    .section-header p:last-child {
        margin-bottom: 0;
    }
}

/********Form*********/
.form_section {
    position: relative;
    z-index: 1;
    background-color: #fff;
    border: 1px solid var(--border-color);
    border-bottom: 6px solid var(--border-color);
    box-shadow: var(--box-shadow);
    padding: 20px;
    border-radius: 25px;
}

.form-control,
.form-select {
    padding: 0 10px 0 15px;
    border: 1px solid #D2D2D2;
    color: #555555;
    background-color: var(--white-color);
    border-radius: 9999px;
    border-radius: 0;
    font-size: 14px;
    width: 100%;
    border-radius: 10px;
    height: 50px;
    transition: all ease 0.4s;
}

.form-control:focus {
    box-shadow: none;
    border-color: transparent;
    box-shadow: var(--box-shadow);
}

.form-group {
    position: relative;
    margin-bottom: 17px;
}

.form-group i {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--secondary-color);
    width: 27px;
    height: 27px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 50%;
    font-size: 14px;
}

.form-title {
    font-weight: 900;
    font-size: 23px;
    margin-bottom: 16px;
}

.common-booking-form {
    margin-bottom: 20px;
}

/*******************/
.spad {
    padding-top: 100px;
    padding-bottom: 100px;
    background-repeat: no-repeat;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
}

.breadcrumb__links {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    padding-bottom: 15px;
    border-bottom: none;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}

.breadcrumb__links a {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    margin-right: 26px;
    display: inline-block;
    position: relative;
}

.breadcrumb__links span {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    margin-right: 26px;
    display: inline-block;
    position: relative;
}

.breadcrumb__links a::after {
    position: absolute;
    right: -18px;
    top: 0px;
    font-family: "Font Awesome 5 Free";
    content: "\f105";
    font-size: 20px;
    font-weight: 700;
}

.breadcrumb__links span:last-child {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    margin-right: 26px;
    display: inline-block;
    position: relative;
    color: var(--secondary-color);
}

.breadcrumb__links span {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    display: inline-block;
    margin-right: 26px;
    position: relative;
}

.breadcrumb__text h2 {
    color: #fff;
    font-size: 46px;
    font-weight: 700;
}

.single-section {
    padding: 35px 0;
}

.single-service-details {
    padding: 20px;
    background-color: #eeeeee;
    border-radius: 10px;
}

.single-section .sidebar-item {
    margin-bottom: 30px;
    position: relative;
    background-color: #eeeeee;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0px 6px 35px rgba(0, 0, 0, 0.08);
}


.sidebar-category {
    padding-left: 0;
    padding-right: 0;
    margin-bottom: 0;
}

.sidebar-category li {
    list-style: none;
    margin-bottom: 5px;
    width: 100%;
}

.sidebar-category li .active {
    background: var(--primary-color);
    color: #FFF;
}

.sidebar-category li a {
    background: #ffffff none repeat scroll 0 0;
    color: #000;
    display: block;
    font-size: 13px;
    font-weight: 500;
    padding: 12px 20px;
    text-transform: capitalize;
    box-shadow: 0px 6px 30px rgba(7, 36, 95, 0.08);
    border-radius: 6px;
}

.sidebar-category li a:hover {
    background: var(--primary-color);
    color: #fff;
}

.sidebar-category li a:after {
    content: "\f061";
    font-family: "Font Awesome 5 Free";
    float: right;
}

.single-section img {
    margin-bottom: 20px;
    border-radius: 10px;
    max-height: 400px;
    width: 100%;
    object-fit: cover;
}

/**************Contact***************/

.rs-contact.inner .content-info-part .info-item {
    background: #ffff;
    padding: 50px 30px 37px;
    text-align: center;
    box-shadow: var(--box-shadow);
    border-radius: 10px;
}

.rs-contact.inner .content-info-part .info-item .icon-part {
    width: 70px;
    height: 70px;
    line-height: 70px;
    border-radius: 100%;
    margin: 0 auto 25px;
    text-align: center;
    background: navajowhite;
    position: relative;
}

.rs-contact.inner .content-info-part .info-item .icon-part i {
    font-size: 80px;
    color: var(--primary-color);
    line-height: 1;
    margin-top: -5px;
    position: relative;
    z-index: 1;
}

.rs-contact.inner .content-info-part .info-item .icon-part i.fa-map-o {
    font-size: 65px;
    margin: 0;
}

.rs-contact.inner .content-info-part .info-item .icon-part:after {
    background: transparent;
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    animation: pulse-border 1.5s ease-out infinite;
    transition: all 0.3s ease;
}

.rs-contact.inner .content-info-part .info-item .content-part {
    font-size: 18px;
}

.rs-contact.inner .content-info-part .info-item .content-part .title {
    font-family: 'Roboto', sans-serif;
    color: #363636;
    margin-bottom: 12px;
}

.rs-contact.inner .content-info-part .info-item .content-part a {
    color: #363636;
}

.rs-contact.inner .content-info-part .info-item .content-part a:hover {
    color: #106eea;
}

.rs-contact.inner .content-info-part .info-item .content-part p {
    margin: 0;
}

.rs-contact.inner .content-info-part .info-item:hover .icon-part:after {
    background: var(--secondary-color);
}

.rs-contact.inner .contact-form-part form {
    background: var(--primary-color);
    padding: 25px 70px 30px;
}

.rs-contact.inner .contact-form-part form input,
.rs-contact.inner .contact-form-part form textarea {
    width: 100%;
    border: none;
    outline: none;
    margin-bottom: 30px;
    color: #ffffff;
    background: var(--secondary-color);
    font-size: 16px;
    padding: 11px 20px;
}

.rs-contact.inner .contact-form-part form textarea {
    display: inherit;
    height: 120px;
}

.rs-contact.inner .contact-form-part form ::-webkit-input-placeholder {
    color: #ffffff;
}

.rs-contact.inner .contact-form-part form :-ms-input-placeholder {
    color: #ffffff;
}

.rs-contact.inner .contact-form-part form ::placeholder {
    color: #ffffff;
}

.rs-contact.inner .contact-form-part .img-part {
    height: 100%;
    background: url(../images/left-img.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.rs-contact.inner .g-map {
    padding: 0 10px 10px;
}

.rs-contact.inner .g-map iframe {
    width: 100%;
    height: 560px;
    border: none;
    filter: grayscale(100%);
    display: inherit;
}

.rs-contact.inner .g-map.modify iframe {
    filter: unset;
}

.rs-contact .rs-map-6 iframe {
    width: 100%;
    height: 575px;
    border: none;
    margin: 0;
}

@media(max-width:768px) {
    .rs-contact.inner .contact-form-part form {
        padding: 30px;
    }

    .rs-contact.inner .content-info-part .info-item {
        margin-top: 15px;
    }
}

/**********Floats***********/

.popup_form {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    justify-content: center;
    align-items: center;
    z-index: 1000;
    transition: 0.4s;
}

.popup_form.active {
    display: flex;
}

.popup_content {
    background-color: white;
    padding: 20px;
    max-width: 500px;
    width: 92%;
    border-radius: 8px;
    position: relative;
}

.popup_content {
    background-color: #fff;
    padding: 20px 30px;
    border-radius: 8px;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
    width: 100%;
    max-width: 400px;
    position: relative;
}

.close_btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    color: #333;
    cursor: pointer;
}

.form_group {
    margin-bottom: 15px;
}

.form_group label {
    display: block;
    font-size: 14px;
    margin-bottom: 5px;
    color: var(--secondary-color);
}


.form_group textarea {
    resize: none;
    height: 80px;
}


/*float  buttons*/
.fixed__btns {
    position: fixed;
    right: 0;
    left: 50%;
    bottom: 13px;
    background-color: #fff;
    width: 90%;
    height: 50px;
    z-index: 99;
    padding: 0;
    gap: 0;
    overflow: hidden;
    flex-wrap: wrap;
    display: flex;
    border-radius: 40px;
    transform: translateX(-50%);
    border: 1px solid #d1d1d1;
    box-shadow: var(--box-shadow);
}

.float {
    position: relative;
    width: 35px;
    height: 100%;
    color: #FFF;
    border-radius: 0;
    text-align: center;
    font-size: 18px;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 35px;
    font-weight: 800;

    img {
        width: 35px;
    }
}

.float_whatsapp {
    background-color: #fff;
}

.float-popup {
    background-color: #fff;
    border-left: 1px solid #d1d1d1;
    color: var(--primary-color);
}

.float:hover {
    color: #000;
}

.float-call {
    background-color: #fff;
    border-left: 1px solid #d1d1d1;
    font-size: 15px;
    font-weight: 100 !important;
}

.float-mail {
    background-color: var(--secondary-color);
    font-size: 15px;
    font-weight: 100 !important;
}

.my-float {
    margin-top: 5px;
    color: #25d366;
}

.my-call {
    margin-top: 5px;
}

.phone_res-float-btn {
    width: 100%;
    display: flex;
    position: fixed;
    bottom: 0 !important;
    z-index: 111;
}

.phone_res-float-btn a {
    width: 50% !important;
    border-radius: 0;
    padding: 10px 0;
    text-align: center;
    background-color: #fff;
    border: 1px solid #bababa;
    font-size: 17px;
    display: flex;
    justify-content: center;
    gap: 4px;
    font-weight: 600;
    color: #000;
}

.phone_res-float-btn .button__1 {
    position: relative;
    left: 0 !important;
    border-top-left-radius: 20px;
}

.phone_res-float-btn .button__2 {
    position: relative;
    border-top-right-radius: 20px;
    right: 0 !important;
}

.phone_res-float-btn img {
    width: 25px;
    height: 25px;
}

@media(max-width:768px) {
    .footer-layout1 .copyright-wrap {
        padding-bottom: 80px;
    }

    .service_item {
        margin-inline: 10px;
    }

    .btn-theme {
        padding: 16px 30px;
    }
}

.booking-page .card {
    position: relative;
    padding: 20px 0;
    z-index: 1;
    background-color: #fff;
    border: 1px solid #fff;
    box-shadow: var(--box-shadow);
    border-radius: 25px;
}

.booking-page .form-group .form-control {
    height: 49px;
}

.booking-page .card .form-title {
    position: relative;
}

.booking-page .form-group textarea.form-control {
    height: 80px;
}

.footer_bootom_links h3 {
    text-align: center;
    font-weight: 700;
}

.bottom_links {
    line-height: 1.2;
}

.footer_bootom_links {
    padding-block: 20px;
}

.footer_bootom_links a {
    color: #000;
    padding-inline: 0px;
    position: relative;
    font-size: 12px;
    font-weight: 600;
    display: inline;
}

.footer_bootom_links a:after {
    position: relative;
    content: '|';
    right: 0;
    font-weight: 600;
    padding-inline: 3px;
    font-size: 11px;
    color: #000;
    top: 50%;
    display: inline;
    transform: translateY(-50%);

}

.footer_bootom_links a:hover {
    color: var(--secondary-color);

    :before {
        color: var(--secondary-color);
    }
}

/*************Why Choose US************/
.process-layout1 {
    .container {
        max-width: 1430px;
    }

    .process-inner {
        background-color: #ffeedf;
        padding: 20px 70px 40px 70px;
        border-radius: 50px;
    }

    .process-item {
        &:first-child {
            margin-top: 45px;
        }

        &:not(:last-child) {
            border-bottom: 1px dashed var(--primary-color);
            padding-bottom: 34px;
            margin-bottom: 35px;
        }

        .process-text {
            margin-top: 20px;
            margin-bottom: 0;
            text-transform: capitalize;
            font-size: 16px;
            line-height: 1.4;
            letter-spacing: -0.02em;
        }
    }

    .process-style1 {
        align-items: center;

        &:not(:last-child) {
            padding: 0;
            margin-bottom: 0px;
        }

        .process-icon {
            width: 84px;
            min-width: 84px;
            height: 84px;
            line-height: 84px;
            font-size: 24px;
            margin-right: 25px;
            color: var(--white-color);
            background-color: var(--primary-color);
            text-align: center;
            border-radius: 50%;
            transition: all ease 0.4s;

            &:hover {
                background-color: var(--secondary-color);
            }

            img {
                width: 47px;
                height: auto;
            }
        }

        .process-title {
            font-size: 22px;
            color: var(--title-color);
            text-transform: none;
            font-weight: 700;
            line-height: 1.2;
            margin: 0 0 15px 0;
        }
    }
}

.course-instructor {
    display: flex;
    align-items: center;
    padding: 22px 26px;
    border-radius: 10px;
    position: absolute;
    right: 12%;
    bottom: 30%;
    z-index: 1;

    .instructor-list {
        padding: 0;
        margin: 0;
        display: flex;
        align-items: center;
        margin-right: 15px;

        li {
            list-style: none;
            width: 50px;
            height: 50px;
            line-height: 46px;
            border-radius: 50px;
            text-align: center;
            border: 2px solid var(--white-color);
            border-radius: 50%;
            overflow: hidden;
            cursor: pointer;

            &:not(:first-child) {
                margin-left: -15px;
            }

            &:last-child {
                background-color: var(--primary-color2);
                transition: all 0.5s ease;
            }

            i {
                color: var(--white-color);
                transition: all 0.5s ease;

                &:hover {
                    color: var(--secondary-color);
                }
            }

            &:hover {
                &:last-child {
                    background-color: var(--secondary-color);
                }
            }
        }
    }

    .instructor-content {
        .media-count {
            margin-bottom: 0;
            color: var(--primary-color);
        }

        .media-title {
            margin-bottom: 0;
        }
    }
}

.process-style1 {
    position: relative;
    display: flex;
}

.img-box1 {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mega-hover {
    position: relative;
    overflow: hidden;
}


.mega-hover:after,
.mega-hover:before {
    content: "";
    position: absolute;
    pointer-events: none;
    opacity: 1;
    z-index: 3;
    transform: rotate(5deg);
}

.mega-hover:before {
    top: -10%;
    right: 51%;
    bottom: -10%;
    left: 50%;
    background: rgba(255, 255, 255, 0.3);
}

.mega-hover:after {
    top: 50%;
    right: -10%;
    bottom: 50%;
    left: -10%;
    background: rgba(255, 255, 255, 0.6);
}

.mega-hover:hover:before {
    left: 0;
    right: 0;
    opacity: 0;
    transition: all 900ms linear;
}

.mega-hover:hover:after {
    top: 0;
    bottom: 0;
    opacity: 0;
    transition: all 900ms linear;
}

.why_vs-circle {
    text-align: center;
    padding: 20px;

    .mega-hover {
        height: 350px;
        width: 350px;
        overflow: hidden;
        border-radius: 50%;
    }

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

.why_vs-circle {
    width: auto;
    height: auto;
    --circle-bg: var(--secondary-color);
    padding: 15px;
}

.why_vs-circle {
    display: inline-block;
    max-width: 380px;
    position: relative;
    max-height: 380px;
    border-radius: 50%;
    background-color: transparent;
    background-size: 380px 380px;
    background-image: linear-gradient(var(--circle-angle, -60deg), var(--circle-bg, #2F2552) var(--circle-count, 55%), transparent var(--circle-count, 55%));
}

@media(max-width:420px) {
    .vs-circle {
        max-height: 300px;
        max-width: 300px;
        background-size: 300px;
    }

    .vs-circle img {
        height: 270px;
        width: 270px;
    }
}

.ul-menu-tab {
    display: none;
    opacity: 0;
    transition: 0.3s linear;
    visibility: hidden;
}

.ul-menu-tab.active {
    display: block;
    opacity: 1;
    visibility: visible;
}

.ul-menus-tab-navs {
    display: flex;
    justify-content: space-evenly;
    padding: 0;
    gap: 5px;
    /* flex-wrap: wrap; */
    margin-bottom: 12px;
}

.ul-menus-tab-navs button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(7px, 0.53vw, 10px);
    font-weight: 600;
    transition: 0.4s linear;
    font-size: 14px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    padding: 7px;
    width: 100%;
    border-radius: 99px;
}

.ul-menus-tab-navs button:hover {
    color: var(--primary-color);
    border-color: var(--primary-color);
    background-color: var(--primary-color);
    color: #fff;
}

.ul-menus-tab-navs button.active {
    color: var(--secondary-color);
    border-color: var(--secondary-color);
    background-color: var(--secondary-color);
    color: #fff;
}

@media(max-width: 464px) {
    .ul-menus-tab-navs {
        justify-content: center;
        gap: 8px;
    }
}


.select2-container {
    width: 100% !important;
}

.select2-container--default .select2-selection--single {
    padding: 0 10px 0 5px;
    border: 1px solid #D2D2D2;
    color: #555555;
    background-color: var(--white-color);
    border-radius: 9999px;
    border-radius: 0;
    font-size: 14px;
    width: 100%;
    border-radius: 10px;
    height: 58px;
    transition: all ease 0.4s;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 52px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 58px;
}

/*==========================================================================*/
/*==========================================================================*/
.search-details {
    padding: 20px 0;
}

.search-details .locationbox {
    background-color: var(--primary-color);
    border-radius: 5px;
    padding: 5px;
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: space-between;
    color: #fff;
}

.search-details .locationbox ul {
    display: flex;
    flex-direction: row;
}

.locationbox ul .pick-up::before,
.locationbox ul .droploc::before {
    font-size: 30px;
    margin-right: 10px;
    padding: 10px;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f3c5";
    /* fa-map-marker-alt */
    color: #ffffff;
}


.locationbox ul {
    list-style-type: none;
    margin-left: 10px;
    margin-bottom: 1px !important;
}

.locationbox ul li {
    margin-left: -10px;
    display: flex;
    align-items: center;
}

.search-details .locationbox ul li span {
    font-size: 14px;
    font-weight: bold
}

.search-details .locationbox ul .icon {
    margin: 10px 20px;
}

.search-details .head {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.search-details .head p {
    margin-bottom: 0;
    font-weight: 600;
    font-size: 14px;
}

/* =====================cab list ==================== */
.cab-price-section {
    padding-top: 0;
}

.cab-box {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.4);
    margin: 10px 0;
    position: relative;
}

.cab-box .cab-body {
    padding: 20px;
}

.cab-box .cab-image {
    width: 100%;
    height: auto;
}

.cab-box .badge-cng {
    background-color: #009688;
    color: white;
    font-size: 12px;
    border-radius: 15px;
    padding: 4px 16px;
    display: inline-block;
    margin-top: 8px;
}

.cab-box .cab-title {
    font-weight: 700;
    font-size: 18px;
}

.cab-box .rating-badge {
    background-color: #2e7d32;
    color: white;
    font-size: 12px;
    border-radius: 5px;
    padding: 2px 6px;
    margin-left: 5px;
}

.cab-box .cab-details {
    font-size: 14px;
    color: #333;
    margin-top: 5px;
}

.cab-price-area {
    text-align: right;
}

.cab-box .old-price {
    font-size: 14px;
    color: #888;
    margin-left: 5px;
    position: relative;
}

.cab-box .old-price::after {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    height: 1px;
    background-color: #ff0000;
    transform: rotate(-20deg);
}

.cab-box .discount {
    color: #2e7d32;
    font-size: 13px;
    font-weight: 500;
}

.cab-box .breakup-price {
    font-size: 18px;
    font-weight: bold;
    color: #000;
    margin: 5px 0;
}

.cab-box .final-price {
    font-size: 22px;
    font-weight: bold;
    color: #000;
    margin: 5px 0;
}

.cab-box .tax-note {
    font-size: 14px;
    color: #2e7d32;
}


.cab-box .cab-footer {
    border-top: 2px solid #e0e0e0;
    padding: 10px;
    font-size: 13px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.cab-box .cab-footer a {
    color: #757575;
    text-decoration: none;
    margin-right: 20px;
    font-size: 12px;
}

.cab-box ul {
    padding-left: 12px;
    padding-bottom: 10px;
    margin-bottom: 0;
    list-style: none;
}

.cab-price-section ul li i {
    margin-right: 5px;
}

.cab-box ul li {
    font-size: 13px;
    padding: 2px 0;
}

.cab-box .btn-theme {
    padding: 10px 20px;
}


/* **************review booking******************* */
.review-area {
    background: #f2f2f2;
}

.review-area .card {
    border: none;
    border-radius: 10px;
    /* box-shadow: 0 0 10px rgba(0, 0, 0, 0.05); */
}

.review-area .right_card {
    box-shadow: none;
    background-color: transparent;
}

.review-area .right_card .alert {
    border-radius: 10px;
    padding: 10px;
    text-align: center;
    background-color: #310950 !important;
    border-color: #310950 !important;
    color: #fff !important;
}

.review-area .trip-header {
    background-color: #eaf3ff;
    padding: 20px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.review-area .inclusions,
.review-area .payment-box,
.review-area .cancel-policy {
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 0 10px rgb(0 0 0 / 9%);
}

.review-area .trip-title {
    font-weight: 600;
}

.review-area .text-muted-small {
    font-size: 0.85rem;
    color: #6c757d;
}


.review-area .cardImg {
    text-align: right;
}

.review-area .cardImg img {
    width: 100px;
}

.review-area .inclusions ul {
    padding-left: 20px;
    margin-bottom: 0;
}

.review-area .inclusions ul li {
    list-style: disc;
    font-size: 14px;
}

.review-area .traveller_details {
    padding: 20px;
    padding-bottom: 10px;
}

.review-area .traveller_details .form-control {
    height: 45px;
    background-color: #f2f2f2;
    border-radius: 8px;
    box-shadow: none !important;
}

.review-area .traveller_details .form-control::placeholder,
.review-area .traveller_details select {
    color: #000;
}

.review-area .traveller_details .list-group li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}


.fare-toggle {
    cursor: pointer;
    color: #007bff;
    text-align: center;
    font-weight: 500;
    margin-top: 10px;
}

.fare-breakup {
    font-size: 13px;
    background: #f8f9fa;
    border-radius: 6px;
    padding: 10px 15px;
}

.payment-box .Payment_List {
    list-style: none;
}

.payment-box .Payment_List li {
    padding-bottom: 5px;
}

.payment-box .Payment_List li:last-child {
    padding-bottom: 0;
}

.payment-box .Payment_List li label {
    margin-left: 10px;
}

.fr {
    float: right;
}

#fareBreakup .fareList {
    display: flex;
    justify-content: space-between;
}

#fareBreakup .TotalFare {
    display: flex;
    justify-content: space-between;
    font-weight: bold;
    border-top: 2px solid rgba(0, 0, 0, .1);
    padding-top: 5px;
    margin-top: 5px;
}

.review-area .btn-theme {
    width: 100%;
    padding: 10px 20px;
    justify-content: center;
}

.footerText {
    font-size: 14px;
    margin-top: 10px;
}

.add_on_service {
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 0 10px rgb(0 0 0 / 9%);
}

.add_on_service ul li {
    display: flex;
    align-items: normal;
    gap: 10px;
    margin-bottom: 10px;
}

.rounded-4 {
    border-radius: 1rem;
}

tbody,
td,
tfoot,
th,
thead,
tr {
    border: 2px solid var(--primary-color) !important;
    vertical-align: middle !important;
}

.review-breadcrumb {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5) 100%, rgba(0, 0, 0, 0.5)100%), url(../images/services/city-taxi-tour.jpg);
}

.cancel-policy a,
.footerText a {
    color: #0056b3;
}

.payment-breadcrumb {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5) 100%, rgba(0, 0, 0, 0.5)100%), url(../images/services/city-taxi-tour.jpg);
}

.razorpay-payment-button {
    background: var(--primary-color);
    border: none;
    padding: 8px 30px;
    border-radius: 4px;
    color: #fff;
}

/*  preload*/
.preload {
    background-color: rgb(255, 255, 255, 0.9);
    width: 100%;
    height: 100vh;
    position: fixed;
    z-index: 999999;
    display: none;
}

.preload img {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 250px;
    height: 250px;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.outstation-subtabs {
    margin-top: 15px;
}

.subtabs-nav {
    display: flex;
    margin-bottom: 15px;
    border-bottom: 1px solid #ddd;
}

.subtab-nav {
    padding: 8px 20px;
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    cursor: pointer;
    font-weight: 500;
}

.subtab-nav.active {
    border-bottom: 2px solid var(--secondary-color);
    color: var(--secondary-color);
}

.subtab {
    display: none;
}

.subtab.active {
    display: block;
}

.locationbox ul li .fa-2x {
    font-size: 25px;
}

.header-cta .btn-theme {
    padding: 15px;
    font-size: 14px;
}

/* ========================login modal========================= */

.login-modal .modal-dialog {
    max-width: 800px;
}

.login-modal .close {
    position: absolute;
    top: 5px;
    right: 10px;
}

.login-modal .modal-title {
    font-size: 25px;
    margin: auto;
}

.login-modal .modal-content {
    display: flex;
    flex-direction: row;
    border-radius: 10px;
    overflow: hidden;
}

.login-modal .modal-left {
    background: url('../images/login.avif');
    background-size: cover;
    width: 50%;
}

.login-modal .modal-right {
    padding: 30px;
    width: 50%;
    background-color: #fff;
    border-left: 1px solid #cccccc;
}

.login-modal .modal-header {
    border-bottom: none;
    flex-direction: column;
    justify-content: center;
}

.login-modal .modal-header img {
    width: 100px;
    margin: auto;
    margin-bottom: 10px;
}

.login-modal .form-control {
    border-radius: 4px;
    font-size: 14px !important;
    margin: 0;
    height: 45px;
    border: 1px solid #e2e2e2;
    margin-top: 10px;
}

.login-modal .btn-primary {
    border-radius: 20px;
    padding: 10px 25px;
}

#verifyotp {
    display: none;
}

div.dt-container .form-control {
    height: 35px;
    border-radius: 4px;
}

.dt-layout-table {
    margin: 10px 0 !important;
}

.btn-sm {
    padding: 4px 10px;
    font-size: 14px;
    background-color: var(--secondary-color) !important;
    border: none;
}

.btn-sm:hover {
    background-color: var(--primary-color) !important;
}

.dropdown-menu {
    padding: 0;
}

.phoneLoginBox {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.phoneLoginBox .btn {
    padding: 5px 14px;
    background-color: var(--secondary-color);
    color: #fff;
}