:root {
    /* --blue:#ddd; */
    --white: #ffffff;
    /* --bs-body-font-size: 1.125rem; */
    --primary-blue-100: #131F6B;
    --secondary-light-blue-100: #EEF0FC;
    --secondary-light-blue-200: #D8DDF8;
    --secondary-green: #1A936F;
    --neutral-gray-900: #242e42;
    --neutral-gray-800: #77757A;
    --neutral-gray-700: #858486;
    --neutral-gray-500: #adadad;
    --neutral-gray-400: #D9D9D9;
    --neutral-gray-300: #E4E4E5;
    --neutral-gray-200: #ECECEC;
    --neutral-gray-50: #F7F7F7;
    --inputs-default-text: #77757A;
    --inputs-default-state: #F7F7F7;
    --black: #1B1B1B;
    --comet-950: #25252C;
    --fills-primary: rgb(120, 120, 128);
    --yellow: #F7DE02;
    --red-bright: #D23330;
    --red-bright-light-100: #faeaea;
    --red-bright-light-200: #f6d6d6;
    --red-bright-light-300: #f1c1c0;



}

/* ----------- Start general Section ----------- */
/* @font-face {
    font-family: 'SFProText';
    src: url('../fonts/SFPro/SFProText-Medium.woff2') format('woff2'),
        url('../fonts/SFPro/SFProText-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'SFProText';
    src: url('../fonts/SFPro/SFProText-Regular.woff2') format('woff2'),
        url('../fonts/SFPro/SFProText-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'SFProText';
    src: url('../fonts/SFPro/SFProText-RegularItalic.woff2') format('woff2'),
        url('../fonts/SFPro/SFProText-RegularItalic.woff') format('woff');
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'SFProText';
    src: url('../fonts/SFPro/SFProText-Semibold.woff2') format('woff2'),
        url('../fonts/SFPro/SFProText-Semibold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'SFProText';
    src: url('../fonts/SFPro/SFProText-Bold.woff2') format('woff2'),
        url('../fonts/SFPro/SFProText-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'SFProText';
    src: url('../fonts/SFPro/SFProText-SemiboldItalic.woff2') format('woff2'),
        url('../fonts/SFPro/SFProText-SemiboldItalic.woff') format('woff');
    font-weight: 600;
    font-style: italic;
    font-display: swap;
} */

@font-face {
    font-family: 'Maven Pro';
    src: url('../fonts/MavenPro/MavenProBold.woff2') format('woff2'),
        url('../fonts/MavenPro/MavenProBold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Maven Pro';
    src: url('../fonts/MavenPro/MavenProMedium.woff2') format('woff2'),
        url('../fonts/MavenPro/MavenProMedium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Maven Pro';
    src: url('../fonts/MavenPro/MavenProBlack.woff2') format('woff2'),
        url('../fonts/MavenPro/MavenProBlack.woff') format('woff');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Maven Pro';
    src: url('../fonts/MavenPro/MavenProRegular.woff2') format('woff2'),
        url('../fonts/MavenPro/MavenProRegular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}



/* Hide controls in Safari */
video::-webkit-media-controls {
    display: none !important;
}

video::-webkit-media-controls-panel {
    display: none !important;
}

video::-webkit-media-controls-play-button {
    display: none !important;
}

video::-webkit-media-controls-timeline {
    display: none !important;
}


*:focus {
    outline: 0 !important;
    box-shadow: none !important;
}

html {
    font-size: 18px;
    scroll-behavior: smooth;
}

body {
    /* font-family: 'SFProText'; */
    font-family: 'Maven Pro';
    color: var(--neutral-gray-900);
    font-size: var(--bs-body-font-size);
    /* overflow-x: hidden; */
}

mark {
    padding: 0;
}

a {
    /* text-decoration: none; */
}

/* html,
body {
    overflow-x: hidden;
    height: 100%;
} */

body {
    position: relative;
}

body.menu-open {
    overflow: hidden;
}

p {
    font-size: 18px;
}

.form-label {
    font-weight: 600;
    font-size: 14px;
}

.form-control {
    background: var(--inputs-default-state);
    border-color: transparent;
    font-size: 0.895rem;
    color: var(--primary-blue-100);
}

.form-control::placeholder {
    color: var(--inputs-default-text);
}

.form-control:focus {
    box-shadow: none;
    border-color: var(--primary-blue-100);
    color: var(--primary-blue-100);
}

.shift-form-control {
    background: var(--inputs-default-state);
    height: 48px;
    color: var(--primary-blue-100);
    border-radius: 10px
}

.shift-form-control:focus {
    border-color: var(--primary-blue-100);
}

.shift-form-control:placeholder {
    color: var(--neutral-gray-400);
}

.form-control:read-only {
    border: 0;
    background: var(--inputs-default-state);
    color: var(--neutral-gray-900);
}

.custom-nice-select .nice-select .current {
    color: var(--neutral-gray-900);
}

textarea.shift-form-control {
    height: auto;
}

.custom-nice-select {
    min-height: 84px;
}

.custom-nice-select .nice-select {
    color: var(--neutral-gray-900);
    line-height: 34px;
}

.custom-nice-select .nice-select.wide .list {
    margin: 0;
}

.shadow-md {
    box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.08);
}

.w-115 {
    width: 115%;
}

.rotate-45 {
    transform: rotate(-45deg);
    transition: all ease 0.3s;
}

.text-green {
    color: var(--secondary-green);
}

.icon-green::before {
    color: var(--secondary-green);
}

.bg-green {
    background: var(--secondary-green);
}

.bg-gray-50 {
    background: var(--neutral-gray-50);
}

.text-red {
    color: var(--red-bright);
}

.text-blue {
    color: var(--primary-blue-100);
}

.bg-light-blue-100 {
    background: var(--secondary-light-blue-100);
}

.bg-light-red-100 {
    background: var(--red-bright-light-100);
}

/* .btn-danger{
    --bs-btn-bg : var(--red-bright);
} */

/* .custom-nice-select .nice-select */


/* .input-with-icon{
    position: relative;
}
.input-with-icon .icon{
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    font-size: 16px;
} */

.btn {
    outline: none;
}

.shift-btn {
    font-weight: 600;
    display: flex;
    align-items: center;
    padding: 8px 32px;
}

.btn .icon {
    margin-inline-start: 8px;
    font-weight: 600;
    transition: transform ease 0.3s;
}

.btn:hover .icon {
    transform: translateX(10px);
}

.shift-btn-secondary {
    background: var(--white);
    color: var(--primary-blue-100);
}

.shift-btn-secondary:hover,
.shift-btn-secondary:focus,
.shift-btn-secondary:active,
.shift-btn-secondary:focus-visible {
    background: var(--primary-blue-100) !important;
    border-color: var(--primary-blue-100) !important;
    color: var(--white);
    box-shadow: none;
}

.shift-btn-primary {
    background: var(--primary-blue-100);
    color: var(--white);
    border-color: var(--primary-blue-100);
}

.shift-btn-primary:hover,
.shift-btn-primary:focus,
.shift-btn-primary:active,
.shift-btn-primary:focus-visible {
    background: var(--white) !important;
    border-color: var(--primary-blue-100) !important;
    color: var(--primary-blue-100);
    box-shadow: none;
}

.shift-btn-link {
    background: transparent;
    color: var(--primary-blue-100);
    text-decoration: none;
}

.shift-btn-link:hover,
.shift-btn-link:focus,
.shift-btn-link:active,
.shift-btn-link:focus-visible {
    background: transparent;
    color: var(--primary-blue-100);
    box-shadow: none;
}


.shift-btn-bordered {
    background: transparent;
    color: var(--white);
    border: 1px solid var(--white);
    text-decoration: none;
}

.shift-btn-bordered:hover,
.shift-btn-bordered:focus,
.shift-btn-bordered:active,
.shift-btn-bordered:focus-visible {
    background: var(--white);
    color: var(--primary-blue-100);
    box-shadow: none;
}


.shift-btn-bordered-blue {
    background: var(--white);
    color: var(--primary-blue-100);
    border: 1px solid var(--primary-blue-100);
    text-decoration: none;
}

.shift-btn-bordered-blue:hover,
.shift-btn-bordered-blue:focus,
.shift-btn-bordered-blue:active,
.shift-btn-bordered-blue:focus-visible {
    background: var(--primary-blue-100);
    color: var(--white);
    box-shadow: none;
}


.shift-btn-white-bordered {
    background: var(--white);
    color: var(--primary-blue-100);
    border: 1px solid var(--white);
    text-decoration: none;
}

.shift-btn-white-bordered:hover,
.shift-btn-white-bordered:focus,
.shift-btn-white-bordered:active,
.shift-btn-white-bordered:focus-visible {
    background: transparent;
    color: var(--white);
    box-shadow: none;
    border: 1px solid var(--white);
}

.contact-us-btn {
    position: fixed;
    bottom: 16px;
    right: 16px;
    width: 44px;
    height: 44px;
    background: var(--yellow);
    /* color: ; */
    z-index: 20;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--black);
    border-radius: 10px;
}

.input-with-icon {
    position: relative;
}

.input-with-icon .icon {
    position: absolute;
    top: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    text-align: center;
    color: var(--inputs-default-text);
}

.input-with-icon .form-control {
    padding-inline-start: 40px;
}

.input-with-icon.end .icon {
    right: 0;
}

.input-with-icon.end .form-control {
    padding-inline-start: .75rem;
    padding-inline-end: 40px;
}

.dropdown-toggle::after {
    content: '\e90b';
    font-family: 'icomoon' !important;
    speak: never;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 20px;
    margin: 0;
    border: 0;
    vertical-align: -4px;
}

.dropdown-toggle.show::after {
    transform: rotate(180deg);
}

.custom-dropdown .dropdown-menu {
    border: 0;
    opacity: 0;
    display: block;
    visibility: hidden;
    margin-top: 10px;
    transition: all ease 0.3s;
    /* inset: 0px 0px auto auto; */
    padding: 0;
    top: 100%;
    border-radius: 0 0 8px 8px;
    overflow: hidden;
    right: 0;
}

.custom-dropdown .dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    margin-top: 0px;
}


.lang-dropdown .dropdown-menu a {
    display: flex;
    align-items: center;
    font-size: 14px;
    padding-block: 10px;
    color: var(--neutral-gray-900);
    font-weight: 600;
    transition: all ease 0.3s;
}

.shift-header .dropdown .dropdown-menu li a.dropdown-item:hover,
.shift-header .dropdown .dropdown-menu li a.dropdown-item:focus,
.shift-header .dropdown .dropdown-menu li a.dropdown-item:active {
    background: transparent;
    /* background: var(--neutral-gray-100); */
    background: var(--neutral-gray-50);
}

.lang-dropdown .dropdown-menu a span {
    flex: 0 0 24px;
    height: 24px;
    font-size: 0;
    margin-inline-end: 8px;
}

.login-dropdown .dropdown-toggle::after {
    display: none;
}

.shift-header .dropdown .has-notifications {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--red-bright);
    right: 0;
    top: 0;
}

.shift-header .dropdown .profile-pic {
    width: 42px;
    height: 42px;
    object-fit: cover;
    border-radius: 50%;
    object-position: center;
}

.shift-header .dropdown .dropdown-menu li a.dropdown-item {
    font-size: 14px;
    color: var(--neutral-gray-900);
    font-weight: 600;
    padding-block: 10px;
    transition: all ease 0.3s;
    display: flex;
    align-items: center;
    /* justify-content: space-between; */
}

.shift-header .dropdown .dropdown-menu li a.dropdown-item .num {
    border-radius: 50%;
    width: 20px;
    height: 20px;
    background: var(--red-bright);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 10px;
    color: var(--white);
    font-weight: 400;
}

.shift-header .dropdown:not(.megamenu) .dropdown-menu li {
    border-bottom: 1px solid var(--neutral-gray-200);
}

.shift-header .dropdown:not(.megamenu) .dropdown-menu li:last-child {
    border: 0;
}



/* .login-dropdown .dropdown-menu a {
    font-size: 14px;
    padding-block: 12px;
    color: var(--neutral-gray-900);
    font-weight: 600;
} */

.bottom-swiper-arrow.swiper-arrow-wrapper,
.top-end-swiper-arrow.swiper-arrow-wrapper {
    position: absolute;
    display: flex;
    justify-content: center;
    gap: 16px;
    height: 50px;
}

.top-end-swiper-arrow.swiper-arrow-wrapper {
    top: 0;
    right: 24px;
}

.bottom-swiper-arrow.swiper-arrow-wrapper {
    bottom: -23px;
    left: 0;
    right: 0;
}

.bottom-swiper-arrow.swiper-arrow-wrapper .swiper-arrow {
    position: relative;
    left: initial;
    right: initial;
    background: var(--white);
    box-shadow: 0px 2px 30px 0px rgba(0, 0, 0, 0.05);
}

.bottom-swiper-arrow.swiper-arrow-wrapper .swiper-arrow:after {
    color: var(--neutral-gray-900);
}

.top-end-swiper-arrow.swiper-arrow-wrapper .swiper-arrow {
    position: relative;
    left: initial;
    right: initial;
}


.swiper-button-prev,
.swiper-button-next {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid var(--white);
}

.swiper-button-prev:after,
.swiper-button-next:after {
    font-family: 'icomoon' !important;
    /* speak: never;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale; */
    font-size: 28px;
    color: var(--white);
}

.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
    content: '\e901';
}

.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
    content: '\e900';
}

.swiper-pagination {
    bottom: 16px;
}

.swiper-pagination .swiper-pagination-bullet {
    transition: all ease 0.3s;
    opacity: 1;
    border-radius: 10px;
    background: #ACACBC;
}

.swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: var(--white);
    width: 16px;
    opacity: 1;
}


.space-5 {
    height: 5px;
}

.space-10 {
    height: 10px;
}

.space-15 {
    height: 15px;
}

.space-20 {
    height: 20px;
}

.space-30 {
    height: 30px;
}

.space-40 {
    height: 40px;
}

.space-50 {
    height: 50px;
}

.space-100 {
    height: 100px;
}

.fs-12 {
    font-size: 12px;
}

.fs-14 {
    font-size: 14px;
}

.fs-15 {
    font-size: 15px;
}

.fs-16 {
    font-size: 16px;
}

.section-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--neutral-gray-900);
}

.custom-hr {
    border-color: var(--neutral-gray-400);
}

.dashed-hr {
    border-style: dashed;
}

.padding-top-200 {
    padding-top: 200px;
}

.padding-bottom-200 {
    padding-bottom: 200px;
}

.padding-top-100 {
    padding-top: 100px;
}

.padding-bottom-100 {
    padding-bottom: 100px;
}


.shift-tabs .nav-pills {
    display: inline-flex;
    border-radius: 12px;
    border: 1px solid var(--neutral-gray-300);
    background: var(--neutral-gray-50);
}

.w-330 {
    width: 330px;
}

.shift-tabs .nav-pills .nav-item .nav-link {
    color: var(--neutral-gray-900);
    min-width: 230px;
    padding: 12px 20px;
    border-radius: 12px;
}

.shift-tabs .nav-pills .nav-item .nav-link.active {
    background: var(--neutral-gray-900);
    color: var(--white);
}

.shift-accordion .accordion-item {
    border-radius: 12px;
    border: 1px solid #e9e9e9;
    background: rgb(249, 249, 249);
    background: linear-gradient(0deg, rgba(249, 249, 249, 1) 0%, rgba(255, 255, 255, 1) 50%, rgba(249, 249, 249, 1) 100%);
    backdrop-filter: blur(20px);
    color: var(--black);
    margin-bottom: 16px;
}

.shift-accordion .accordion-item .accordion-button {
    font-weight: 700;
    background: transparent;
    box-shadow: none;
    padding-block: 28px;
    padding-inline: 48px;
    display: flex;
    justify-content: space-between;
    font-size: 24px;
    color: var(--neutral-gray-900);
}

.shift-accordion .accordion-item .accordion-button::after {
    content: "\e900";
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    font-family: 'icomoon' !important;
    speak: never;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    transform: rotate(-45deg);
    margin: 0;
}

.shift-accordion .accordion-item .accordion-button:not(.collapsed)::after {
    transform: rotate(145deg);
}

.shift-accordion .accordion-item .accordion-body {
    padding-inline: 48px;
    font-size: 16px;
}

.shift-accordion .accordion-item .accordion-body ol {
    padding-inline-start: 20px;
}

.circle-bg {
    overflow: hidden;
    background: url('../img/circle.png') no-repeat left top;
}

.circle-trans-bg {
    background: url('../img/circle-trans.png') no-repeat left top;
}

.with-circle {
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.with-circle:after {
    border-radius: 50%;
    width: 1000px;
    height: 1000px;
    border: 90px solid var(--white);
    position: absolute;
    content: '';
    top: -50%;
    z-index: -1;
    opacity: 0.05;
    left: -10%;
}

.text-yellow {
    color: var(--yellow);
}

.text-main-color {
    color: var(--neutral-gray-900);
}

.logout:hover {
    color: var(--red-bright) !important;
}

.blue-text {
    color: var(--primary-blue-100);
}

.gray-text {
    color: var(--neutral-gray-700);
}

.blue-bg {
    background: var(--primary-blue-100);
    color: var(--white);
}

.blue-bg .section-title,
.blue-bg.cards .item .title {
    color: var(--white);
}

.blue-bg.cards .item {
    border: 1px solid rgba(255, 255, 255, 0.20);
    background: linear-gradient(0deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.05) 100%), linear-gradient(225deg, rgba(255, 255, 255, 0.01) -10.38%, rgba(153, 153, 153, 0.09) 138.2%);
    backdrop-filter: blur(40px);
}

.with-spots {
    position: relative;
    overflow: hidden;
}

.with-spots:before,
.with-spots:after {
    content: '';
    position: absolute;
    width: 934px;
    height: 677px;
    border-radius: 934px;
    background: rgba(49, 93, 255, 0.10);
    filter: blur(51.5772819519043px);
    z-index: -1;
}

.with-spots:before {
    left: 0;
    top: 0;
    transform: translateX(-70%);

}

.with-spots:after {
    right: 0;
    bottom: 40px;
    transform: translateX(30%);
}

@media (min-width: 1200px) {

    /* lg and up */
    .col-xl-5th {
        width: 20%;
    }
}

.mandatory-fields {
    font-size: 13px;
    text-align: end;
    color: var(--neutral-gray-800);
}

.form-check-label {
    font-size: 16px;
    user-select: none;
}

.form-check-input {
    border-color: var(--neutral-gray-800);
    outline: none;
    box-shadow: none !important;
    margin-top: .30em;
    border-radius: 2px !important;
}

.form-check-input[type="radio"] {
    border-radius: 50% !important;
}

.form-check-input:checked {
    border-color: var(--neutral-gray-800);
    background-color: var(--primary-blue-100);
}

.form-check-input:focus {
    border-color: var(--neutral-gray-800);
}

.white-card {
    background: var(--white);
    padding: 48px 40px;
    border-radius: 12px;
    box-shadow: 0px 0px 8px 2px rgba(0, 0, 0, 0.07);
}

.divider {
    position: relative;
    text-align: center;
}

.divider:after {
    content: '';
    position: absolute;
    height: 1px;
    width: 100%;
    background: var(--neutral-gray-300);
    top: 50%;
    left: 0;
    right: 0;
}

.divider span {
    position: relative;
    background: var(--white);
    padding: 0 16px;
    z-index: 1;
    font-size: 14px;
    color: var(--neutral-gray-800);
    text-transform: uppercase;
}

.similar-badge {
    color: var(--black);
    background: var(--secondary-light-blue-200);
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 7px;
}

.hide {
    display: none;
}

/* .radio-style-1 .form-check{
    padding: 0;
}
.radio-style-1 .form-check .form-check-label{
    background: var(--neutral-gray-50);
} */


.radio-style-1 .form-check {
    position: relative;
    padding: 0;
    margin: 0;
    flex: 1 0 0%;
}

.radio-style-1 .form-check input[type="radio"] {
    display: none;
}

.radio-style-1 .form-check label {
    display: block;
    cursor: pointer;
    padding: 15px 20px;
    border: 2px solid transparent;
    border-radius: 12px;
    background: var(--neutral-gray-50);
    min-width: 180px;
    transition: all 0.2s ease-in-out;
}

.radio-style-1 .form-check label .plan-duration {
    font-size: 16px;
    font-weight: 600;
    color: var(--neutral-gray-900);
}

.radio-style-1 .form-check label .plan-duration span {
    font-size: 13px;
    font-weight: 600;
    color: var(--neutral-gray-800);
    margin-inline-start: 6px;
}

.radio-style-1 .form-check label .plan-price {
    margin-top: 6px;
    font-size: 18px;
    font-weight: 700;
    color: var(--neutral-gray-900);
}

.radio-style-1 .form-check input[type="radio"]:checked+label {
    border-color: var(--primary-blue-100);
    /* background: #eef5ff; */
    /* box-shadow: 0 0 0 2px rgba(26, 115, 232, 0.2); */
}

/* ----------- End general Section ----------- */


/* ----------- Start header Section ----------- */

.shift-header {
    /* background: var(--white); */
    position: absolute;
    left: 0;
    right: 0;
    z-index: 15;
    font-size: 16px;
    font-weight: 600;
    top: 0;
}

.shift-header.megamenu-open:after {
    position: absolute;
    content: '';
    background: #ececec;
    inset: 0;
    z-index: -1;
    top: 100%;
    height: 56px;
}

.shift-header.sticky {
    position: fixed;
    transform: translateY(-100%);
    animation: showHeader 0.2s ease-in 0.5s forwards;
    box-shadow: 0 2px 3px rgba(0, 0, 0, 0.1);
    /* background: var(--primary-blue-100); */
}

.shift-header.sticky.megamenu-open:after {
    height: 45px;
}

.shift-header.sticky .navbar-nav .nav-item .nav-link {
    padding-block: 16px;
    font-size: 15px;
}

.shift-header.sticky .dropdown.megamenu .dropdown-menu li a.dropdown-item {
    font-size: 14px;
    padding-block: 12px;
}

@keyframes showHeader {
    0% {
        transform: translateY(-100%);
    }

    100% {
        transform: translateY(0);
    }
}

.shift-header .dropdown.megamenu {
    position: static;
}

.shift-header .dropdown.megamenu .dropdown-menu {
    margin: 0;
    width: 100%;
    border: 0;
    border-radius: 0;
    background: var(--neutral-gray-200);
    padding-block: 0;
    gap: 8px;
    box-shadow: none;
    /* box-shadow: 250px 0 0 var(--neutral-gray-200); */
}

.shift-header .dropdown.megamenu .dropdown-menu.show {
    display: flex;
}

.shift-header .dropdown.megamenu .dropdown-menu li a.dropdown-item {
    color: var(--neutral-gray-900);
    font-size: 16px;
    font-weight: 600;
    padding-inline: 0.5rem;
    padding-block: 16px;
    position: relative;
}

.shift-header .dropdown.megamenu .dropdown-menu li a.dropdown-item:after {
    content: '';
    position: absolute;
    right: 0;
    left: 0;
    bottom: 0;
    height: 3px;
    background: transparent;
    border-radius: 8px;
}

.shift-header .dropdown.megamenu .dropdown-menu li a.dropdown-item.active {
    background: transparent;
    color: var(--primary-blue-100);
}

.shift-header .dropdown.megamenu .dropdown-menu li a.dropdown-item.active:after {
    background: var(--primary-blue-100);
}

.shift-header .dropdown.megamenu .dropdown-menu li a.dropdown-item:hover,
.shift-header .dropdown.megamenu .dropdown-menu li a.dropdown-item:focus,
.shift-header .dropdown.megamenu .dropdown-menu li a.dropdown-item:active {
    background: transparent;
}

.shift-header .navbar {
    flex-wrap: nowrap;
    justify-content: flex-start;
}

.shift-header .navbar-wrapper {
    display: flex;
    flex-grow: 1;
    position: relative;
}

.shift-header .navbar-nav {
    flex-direction: row;
}

.shift-header .navbar-nav .dropdown-menu {
    position: absolute;
    box-shadow: 0 2px 3px rgba(0, 0, 0, 0.08);
}

/* .shift-header .navbar-nav .dropdown.megamenu .dropdown-menu:after {
    position: absolute;
    content: '';
    background: var(--neutral-gray-200);
    inset: 0;
    transform: translateX(-100%);
    z-index: -1;
} */

.shift-header .navbar-nav .nav-item .nav-link {
    color: var(--neutral-gray-900);
    padding-block: 30px;
    padding-inline: 0.5rem;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    gap: 4px;
}

.shift-header .navbar-nav .nav-item .nav-link:before {
    content: '';
    position: absolute;
    right: 0;
    left: 0;
    bottom: 0;
    height: 3px;
    background: transparent;
    border-radius: 8px;
}

.shift-header .navbar-nav .nav-item .nav-link.active {
    color: var(--primary-blue-100);
}

.shift-header .navbar-nav .nav-item .nav-link.active:before {
    background: var(--primary-blue-100);
}

.shift-header .search-wrapper {
    position: relative;
}

.shift-header .search-wrapper .btn {
    background: var(--white);
    width: 44px;
    height: 44px;
}

/* .shift-header .search-wrapper .form-control{
    width: 44px;
    height: 44px;
} */
.mobile-menu-wrapper {
    /* display: none; */
    position: fixed;
    z-index: 99;
    inset: 0;
    transform: translateY(-100%);
    transition: all ease 0.1s;
    background: var(--white);
    /* opacity: 0;
    visibility: hidden; */
}

.mobile-menu-wrapper.show {
    transform: translateY(0);
    /* opacity: 1;
    visibility: visible; */
}

.mobile-menu-wrapper .mobile-menu-header {
    height: 84px;
}

.mobile-menu-wrapper .mobile-menu-header ul li a {
    margin: 0;
    padding-block: 30px;
    padding-inline: 0.5rem;
    display: block;
    text-decoration: none;
    color: var(--primary-blue-100);
    font-weight: 600;
    font-size: 16px;
    line-height: 25px;
}


.mobile-menu-wrapper .search {
    padding-inline: 0.75rem;
    margin-bottom: 20px;
}

.mobile-menu-wrapper .navbar-nav {
    padding-inline: 0.75rem;
    font-size: 18px;
    margin-bottom: 16px;
    color: var(--neutral-gray-900);
    margin-inline: 0;
}

.mobile-menu-wrapper hr {
    border-color: var(--neutral-gray-400);
}

.mobile-menu-wrapper .navbar-nav .nav-item .nav-link {
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 18px;
}

.mobile-menu-wrapper .navbar-nav .dropdown-menu {
    position: static !important;
    width: 100%;
    transform: translate(0) !important;
    border: 0;
    font-size: 16px;
}

.mobile-menu-wrapper .navbar-nav .dropdown-menu .dropdown-item {
    padding-inline: 0;
    background: transparent;
    color: var(--bs-dropdown-link-color);
    font-size: 16px;
}

.mobile-menu-wrapper .navbar-nav .dropdown-menu .dropdown-item li {
    line-height: 1.5;
}

.mobile-menu-wrapper .custom-scroll {
    overflow-x: scroll;
    max-height: calc(100% - 144px);
}

/* ----------- End header Section ----------- */


/* ----------- Start Main Slider Section ----------- */

.main-slider {
    height: 100vh;
    min-height: 600px;
    /* padding-top: 84px; */
    /* background: red; */
}


.main-slider .title {
    font-size: 42px;
    font-weight: 700;
    line-height: 48px;
}

.main-slider p {
    max-width: 500px;
}

.main-slider .swiper .swiper-slide {
    overflow: hidden;
}

.main-slider .swiper .swiper-slide .slider-img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.main-slider .swiper .swiper-slide video {
    position: fixed;
    right: 0;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
    transform: translateX(calc((100% - 100vw) / 2));
    transform: translateX(calc((100% - 100vw) / 2)) translateY(calc((100% - 100vh) / 2));
}

.main-slider .swiper .swiper-slide:before {
    position: absolute;
    inset: 0;
    content: '';
    z-index: 1;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0) 60%, rgba(0, 0, 0, 0.8) 100%);
}

.main-slider .swiper .swiper-slide.slider-blue-bg:before {
    background: radial-gradient(81.44% 44.16% at 52.55% 43.7%, rgba(85, 111, 163, 0.2) 0%, rgba(85, 111, 163, 0) 100%), linear-gradient(346.31deg, rgba(27, 37, 57, 0) 18.33%, #1B2539 102.43%), linear-gradient(192.17deg, rgba(255, 255, 255, 0) 24.48%, rgba(255, 255, 255, 0.2) 125.44%), #131F6B;
}


.main-slider .swiper .swiper-slide.hide-fade::before {
    opacity: 0 !important;
}

.main-slider .swiper .swiper-slide.slider-blue-bg:after {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    /* right: 0; */
    content: attr(data-slider-text);
    font-size: 14vw;
    font-weight: 700;
    color: var(--white);
    z-index: 1;
    /* text-align: center; */
    text-transform: uppercase;
    opacity: 0.02;
    user-select: none;
    animation: animate_text 20s linear forwards infinite;
}

@keyframes animate_text {
    0% {
        text-indent: 100%;
    }

    50% {
        text-indent: 0%;
    }

    100% {
        text-indent: -100%;
    }

}

.main-slider .swiper .swiper-slide .mobile-wrapper {
    position: absolute;
    z-index: 2;
    width: 55%;
    right: 0;
    bottom: 0;
    height: calc(100% - 80px);
    display: flex;
    align-items: end;
}

.main-slider .swiper .swiper-slide .mobile-wrapper img {
    max-height: 100%;
}

.main-slider .swiper .swiper-slide .content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    min-height: 280px;
    color: var(--white);
    padding-block: 100px;
}

.main-slider .swiper .swiper-slide .content .qr-img {
    width: 170px;
}

/* ----------- End Main Slider Section ----------- */

/* ----------- Start Our Services Section ----------- */

.our-services .services-items {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.our-services .services-items .col {
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 16px;
}

.our-services .services-items .item {
    display: flex;
    background: var(--neutral-gray-50);
    border-radius: 12px;
    border: 1px solid var(--neutral-gray-300);
    background: var(--neutral-gray-50);
    overflow: hidden;
    flex: 1;
}



.our-services .services-items .item .item-img {
    border-radius: 8px;
    overflow: hidden;
    height: 100%;
    flex: 0 0 40%;
    max-width: 40%;
    min-width: 200px;
}

/* .our-services .services-items .item:nth-child(1) .item-img {
    height: 100%;
} */


.our-services .services-items .item .item-img img {
    object-fit: cover;
    height: 100%;
    width: 100%;
    transition: all ease 0.3s;
    min-height: 260px;
}

.our-services .services-items .item .item-contant {
    padding: 40px 24px;
    position: relative;
    flex: 1;
}

/* .our-services .services-items .item .item-contant p {
    margin: 0;
} */

.our-services .services-items .item .item-contant .title {
    font-size: 24px;
    font-weight: 600;
}

.our-services .services-items .item .item-contant .link {
    color: var(--neutral-gray-900);
    text-decoration: none;
    font-size: 22px;
    width: 44px;
    height: 44px;
    transform: rotate(-45deg);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all ease 0.3s;
    border-radius: 50%;
    background: transparent;
    position: absolute;
    right: 16px;
    bottom: 16px;
}

.our-services .services-items .item:hover .item-img img {
    transform: scale(1.1) rotate(3deg);
}

.our-services .services-items .item:hover .link {
    transform: rotate(0);
    background: var(--primary-blue-100);
    color: var(--white);
}

/* ----------- End Our Services Section ----------- */


/* ----------- Start Why Choose Section ----------- */
ul.big-icons-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

ul.big-icons-list li {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
    line-height: 1.5;
}

ul.big-icons-list li .icon {
    height: 80px;
    flex: 0 0 80px;
    max-width: 80px;
    background: radial-gradient(166.17% 166.17% at -6.25% 7.24%, rgba(216, 221, 248, 0.70) 0%, rgba(216, 221, 248, 0.07) 100%);
    background: #f2f4ff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    /* backdrop-filter: blur(12px); */
}

ul.big-icons-list li .title {
    font-size: 28px;
    font-weight: 700;
}

ul.big-icons-list li p {
    max-width: 500px;
}

/* ----------- End Why Choose Section ----------- */
/* ----------- Start Download App Section ----------- */
.download-app {
    position: relative;
    background: url(../img/download-bg.jpg) no-repeat center / cover;
    padding-top: 80px;
    z-index: 0;
    margin-bottom: 220px;
}

.download-app:after {
    content: 'SHIFT';
    position: absolute;
    font-size: 320px;
    line-height: 100%;
    color: var(--white);
    font-weight: 900;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: end;
    opacity: 0.02;
    z-index: -1;
}

.download-app .mobile {
    margin-bottom: -120px;
}


/* ----------- End Download App Section ----------- */


/* ----------- Start Explore Fleet Section ----------- */
.explore-fleet {
    background: radial-gradient(81.44% 44.16% at 52.55% 43.7%, rgba(85, 111, 163, 0.30) 0%, rgba(85, 111, 163, 0.00) 100%), linear-gradient(347deg, rgba(27, 37, 57, 0.00) -0.8%, #1B2539 132.59%), linear-gradient(192deg, rgba(255, 255, 255, 0.00) 24.48%, rgba(255, 255, 255, 0.20) 125.44%), var(--Primary-blue-100, #131F6B);
    color: var(--white)
}

.explore-fleet .filter {
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    list-style: none;
    gap: 12px;
    /* position: absolute; */
    left: 0;
    top: 5px;
    z-index: 2;
    width: calc(100% - 145px);
}

.explore-fleet .filter li {
    background: transparent;
    border: 1px solid var(--white);
    padding: 7px 8px;
    font-size: 14px;
    border-radius: 8px;
    color: var(--white);
    display: flex;
    align-items: center;
    cursor: pointer;
    text-transform: capitalize;
}

.explore-fleet .filter li:before {
    content: '✓';
    width: 0;
    height: 24px;
    transition: all ease 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    opacity: 0;
}

.explore-fleet .filter li.active {
    background: var(--white);
    color: var(--neutral-gray-900);
}

.explore-fleet .filter li.active:before {
    width: 24px;
    opacity: 1;
}

.explore-fleet .filter li .num {
    font-size: 12px;
    background: var(--white);
    color: var(--primary-blue-100);
    border-radius: 8px;
    padding: 2px 6px;
    margin-inline-start: 8px;
}

.explore-fleet .filter li.active .num {
    background: var(--primary-blue-100);
    color: var(--white);
}

.explore-fleet .fleet-slider {
    padding-top: 16px;
    padding-bottom: 60px;
}

.explore-fleet .fleet-slider .swiper-wrapper {
    align-items: end;
}

.explore-fleet .fleet-slider .item {
    overflow: hidden;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.30);
    background: linear-gradient(0deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.05) 100%), linear-gradient(208deg, rgba(255, 255, 255, 0.01) 16.12%, rgba(153, 153, 153, 0.09) 208.08%);
    backdrop-filter: blur(40px);
    opacity: 0.4;
    transition: all ease 0.3s;
    user-select: none;
}

.explore-fleet .fleet-slider .swiper-slide-active .item {
    opacity: 1;
}

.explore-fleet .fleet-slider .item .item-header,
.explore-fleet .fleet-slider .item .item-footer {
    padding-inline: 16px;
    padding-block: 16px;
}

.explore-fleet .fleet-slider .item .info {
    padding: 0;
    list-style: none;
    margin: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
}

.explore-fleet .fleet-slider .item .info li {
    padding: 4px 8px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.15);
}

.explore-fleet .fleet-slider .item .info li span {
    font-size: 12px;
}

.explore-fleet .fleet-slider .item figure {
    margin: 0;
    padding-block: 25px;
    /* transition: all ease 0.3s; */
}

.explore-fleet .fleet-slider .item figure img {
    max-width: 125%;
    transform: translateX(30%);
    transition: all ease 0.3s;
}

.explore-fleet .fleet-slider .swiper-slide-active .item figure {
    padding-block: 50px;
    direction: ltr;
}

.explore-fleet .fleet-slider .swiper-slide-active .item figure img {
    transform: scale(1);
    transform: translateX(0%);
}

.explore-fleet .fleet-slider .item .item-footer {
    text-align: center;
}

.explore-fleet .fleet-slider .item .item-footer .col {
    padding: 0;
}

.explore-fleet .fleet-slider .item .name {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
}

.explore-fleet .fleet-slider .item .name .year {
    font-size: 14px;
    font-weight: 400;
    display: block;
    margin-top: 8px;
    color: var(--neutral-gray-400);
}

/* ----------- End Explore Fleet Section ----------- */


/* ----------- Start Customer feedback Section ----------- */
.customer-feedback {
    background: var(--secondary-light-blue-100);
}

.customer-feedback .feedback-slider {
    padding-bottom: 70px;
}

.customer-feedback .feedback-slider .item {
    padding-top: 50px;
    padding-inline: 16px;
    text-align: center;
    max-width: 325px;
    margin: 0 auto;
    transition: all ease 0.3s;
}

.customer-feedback .feedback-slider .swiper-slide-active .item {
    padding-top: 0;
}

.customer-feedback .feedback-slider .item .stars {
    display: flex;
    padding: 0;
    list-style: none;
    font-size: 24px !important;
    gap: 4px;
    color: var(--primary-blue-100);
    justify-content: center;
}

.customer-feedback .feedback-slider .item .stars li span[class^="icon"] {
    font-size: 24px;
}

.customer-feedback .feedback-slider .item .customer .customer-img {
    flex: 0 0 40px;
    max-width: 40px;
    background: var(--secondary-light-blue-200);
    border-radius: 50%;
    font-size: 22px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-inline-end: 8px;
}

.customer-feedback .feedback-slider .item .customer .customer-name {
    font-size: 16px;
}

/* ----------- End Customer feedback Section ----------- */

/* ----------- Start Explore Fleet Section ----------- */
.news .item {
    box-shadow: 5px 2px 23.1px 0px rgba(0, 0, 0, 0.05);
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    display: block;
    color: var(--neutral-gray-900);
}

.news .item figure {
    margin: 0;
    overflow: hidden;
    border-radius: 16px;
}

.news .item figure img {
    height: 280px;
    object-fit: cover;
    object-position: center;
    transition: all .3s ease;
    width: 100%;
}

.news .item .news-content {
    background: var(--white);
    margin-top: -20px;
    border-radius: 16px;
    padding: 16px;
    position: relative;
}

.news .item .news-content .time {
    font-size: 16px;
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}

.news .item .news-content .time:before {
    width: 5px;
    height: 5px;
    background: var(--neutral-gray-900);
    border-radius: 50%;
    margin-inline-end: 5px;
    content: '';
}

.news .item .news-content .title {
    font-size: 24px;
    font-weight: 700;
    overflow: hidden;
    display: block;
    -webkit-line-clamp: 2;
    display: box;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    white-space: normal;
}

.news .item .news-content p {
    overflow: hidden;
    display: block;
    -webkit-line-clamp: 3;
    display: box;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    white-space: normal;
}

.news .item .news-content .tags {
    display: flex;
    margin: 0;
    list-style: none;
    padding: 0;
    gap: 8px;
    margin-bottom: 8px;
}

.news .item .news-content .tags p {
    font-size: 16px;
}

.news .item .news-content .tags li {
    padding: 6px 16px;
    background: var(--secondary-light-blue-100);
    border-radius: 20px;
    font-size: 16px;
}

.news .item .news-content .date {
    color: var(--neutral-gray-800);
    font-size: 16px;
}

.news .item .news-content .icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    transition: all ease 0.3s;
    transform: rotate(-45deg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.news .item:hover img {
    transform: scale(1.08) rotate(2deg);
}

.news .item:hover .news-content .icon {
    transform: rotate(0deg);
    background: var(--primary-blue-100);
    color: var(--white);
}

.news-inner .news-img {
    background: var(--neutral-gray-50);
    padding: 12px;
    border-radius: 12px;
    border: 1px solid var(--neutral-gray-400);
}

.news-inner .news-img img {
    max-height: 500px;
    border-radius: 12px;
}

/* ----------- End Explore Fleet Section ----------- */

/* ----------- Start FAQ Section ----------- */
.faq {
    background: var(--neutral-gray-50);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.faq:before,
.faq:after {
    content: '';
    position: absolute;
    width: 934px;
    height: 677px;
    border-radius: 934px;
    background: rgba(49, 93, 255, 0.10);
    filter: blur(51.5772819519043px);
    z-index: -1;
}

.faq:before {
    left: 0;
    top: 0;
    transform: translateX(-70%);

}

.faq:after {
    right: 0;
    bottom: 40px;
    transform: translateX(30%);
}

/* ----------- End FAQ Section ----------- */


/* ----------- Start Cards Section ----------- */
.cards .item {
    border-radius: 12px;
    border: 1px solid var(--neutral-gray-300);
    background: var(--white);
    padding: 24px 12px;
    text-align: center;
    background: linear-gradient(224.96deg, rgba(255, 255, 255, 0.0117) -10.38%, rgb(229 229 229 / 14%) 138.2%), linear-gradient(0deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.2));
    height: 100%;
}

.cards .item figure {
    /* margin: 0; */
    display: flex;
    height: 120px;
    justify-content: center;
    align-items: center;
}

.cards .item figure.big-icon {
    height: 180px;
}

.cards .item figure img {
    max-height: 100%;
}

.cards .item .icon {
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    height: 100px;
    width: 100px;
    color: var(--primary-blue-100);
    font-size: 46px;
    margin: 0 auto 16px;
}

.cards .item .title {
    font-size: 26px;
    color: var(--neutral-gray-900);
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 30px;
}

.cards .item p {
    font-size: 16px;
    max-width: 330px;
    margin: 0 auto;
}

/* ----------- End Cards Section ----------- */



/* ----------- Start Text Img Section ----------- */

.half-text-img .item .title {
    font-size: 48px;
    font-weight: 700;
    color: var(--neutral-gray-900);
}

/* ----------- End Text Img Section ----------- */


/* ----------- Start Partners Section ----------- */
.partners {
    overflow: hidden;
}

.partners .partner-slider {
    position: static;
}

.partners .partner-slider .swiper-slide img {
    border-radius: 12px;
    overflow: hidden;
}

/* .partners .partner-slider .swiper-wrapper{
    max-width: calc(100% - 100px);
    margin: 0 auto;
} */
.partners .partner-slider .swiper-arrow-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 50px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: -70px;
    right: -70px;
}

.partners .partner-slider .swiper-arrow {
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    margin: 0;
}

.partners .swiper-pagination {
    bottom: -50px;
}

/* ----------- End Partners Section ----------- */

/* ----------- Start blur bg Section ----------- */
.object-img-400 {
    object-fit: cover;
    object-position: center;
    height: 400px;
    overflow: hidden;
}

.blur-bg-section {
    margin-top: -120px;
}

.blur-bg-section .blur-bg {
    background: linear-gradient(224.96deg, rgba(255, 255, 255, 0.0117) -10.38%, rgba(153, 153, 153, 0.09) 138.2%),
        linear-gradient(0deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.2));
    border: 1px solid #858585;
    backdrop-filter: blur(80px);
    border-radius: 12px;
    padding: 32px;
}

.blur-bg-section .icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--primary-blue-100);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--white);
    margin: 0 auto 30px;
}

.blur-bg-section p {
    font-size: 22px;
}

/* ----------- End blur bg Section ----------- */
/* ----------- Start Img Card Section ----------- */
.img-card .item {
    position: relative;
    color: var(--white);
    z-index: 1;
    border-radius: 12px;
    overflow: hidden;
}

.img-card .item:after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
        linear-gradient(180deg, rgba(0, 0, 0, 0) 55%, rgba(0, 0, 0, 0.2) 100%);
    opacity: 0.5;
}

.img-card .item figure {
    margin: 0;
}

.img-card .item figure img {
    height: 300px;
    object-fit: cover;
    object-position: center;
}

.img-card .item .card-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    padding: 16px;
    align-items: center;
}

.img-card .item .card-info .icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--primary-blue-100);
}

.img-card .item .card-info .title {
    font-size: 20px;
    font-weight: 700;
    margin: 0;
}

.img-card .item .card-info .arrow {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    transform: rotate(-45deg);
}


/* ----------- End Img Card Section ----------- */


/* ----------- Start Job Card Section ----------- */
.job-card {
    background: var(--white);
    border-radius: 12px;
    padding: 24px 16px;
    border: 1px solid var(--neutral-gray-300);
    font-size: 17px;
    transition: all ease 0.3s;
}

.job-card a {
    text-decoration: none;
}

.job-card .icon {
    color: var(--primary-blue-100);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-inline-end: 10px;
}

.job-card .location {
    color: var(--neutral-gray-700);
    font-weight: 600;
}

.job-card .job-title {
    font-weight: 600;
    color: var(--primary-blue-100);
    margin-block: 16px;
}

.job-card .badge {
    background: var(--yellow);
    color: var(--neutral-gray-900);
    padding: 4px 14px;
    border-radius: 30px;
    line-height: 1rem;
    font-weight: 600;
}

.job-card:hover {
    background: var(--secondary-light-blue-100);
}

.job-card:hover .rotate-45 {
    transform: rotate(0deg);
}

/* ----------- End Job Card Section ----------- */

/* ----------- Start FAQ Page ----------- */

.faq-wrapper {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

.faq-wrapper .aside {
    flex: 0 0 300px;
    max-width: 300px;
}

.faq-wrapper .faq-nav-toggle {
    display: none;
    color: var(--neutral-gray-900);
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    padding: 12px 16px;
    background: var(--secondary-light-blue-100);
    border-radius: 8px;
    border: 1px solid var(--secondary-light-blue-200);
    width: 100%;
    position: sticky;
    top: 65px;
    z-index: 1;
}

.faq-wrapper .faq-nav-toggle i {
    position: absolute;
    right: 0;
    top: 50%;
    font-size: 20px;
    /* transform: translateY(-50%); */
    top: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
}

.faq-wrapper .aside ul {
    position: sticky;
    top: 65px;
    /* stick to top of viewport */
    padding: 0;
    list-style: none;
    margin: 0;
}

.faq-wrapper .aside ul li {
    margin-bottom: 16px;
}

.faq-wrapper .aside ul li a {
    text-decoration: none;
    color: var(--neutral-gray-900);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    font-size: 16px;
    font-weight: 600;
    position: relative;
    border-radius: 12px;
    border: 1px solid var(--neutral-gray-400);
    background: var(--neutral-gray-50);
}

.faq-wrapper .aside ul li a.active {
    /* border-radius: 12px; */
    border: 1px solid var(--neutral-gray-400);
    border-bottom: 0;
    background: var(--secondary-light-blue-200);
}

.faq-wrapper .aside ul li a .icon {
    width: 54px;
    height: 54px;
    flex: 0 0 54px;
    max-width: 54px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 28px;
    color: var(--primary-blue-100);
    border-radius: 12px;
    border: 2px solid #FFF;
    background: radial-gradient(166.17% 166.17% at -6.25% 7.24%, rgba(216, 221, 248, 0.70) 0%, rgba(216, 221, 248, 0.07) 100%);
    margin-inline-end: 12px;

    /* Background blur */
    backdrop-filter: blur(12px);
}

.faq-wrapper .faq-container {
    flex: 1;
}

.faq-wrapper .accordion {
    margin-bottom: 30px;
}

.faq-wrapper .accordion .accordion-item {
    border: 0;
}

.faq-wrapper .search-highlight {
    background-color: #fff3cd;
    padding: 0;
    border-radius: 4px;
    font-weight: 600;
}

.faq-search-result-count {
    color: #242e42;
    font-style: italic;
    font-size: 14px;
    position: absolute;
    bottom: -24px;
}

.faq-wrapper .accordion .accordion-button {
    padding-inline: 0;
    outline: none;
    box-shadow: none;
    color: var(--neutral-gray-900);
    font-size: 16px;
    border-color: var(--neutral-gray-200) !important;
    border-bottom: 1px solid;
    padding-block: 24px;
}

.faq-wrapper .accordion .accordion-button:not(.collapsed) {
    background: transparent;
    font-weight: 600;
    border: 0;
}

.faq-wrapper .accordion .accordion-button::after {
    background-size: 14px;
    background-position: center;
}

.faq-wrapper .accordion .accordion-body {
    background: var(--neutral-gray-50);
    font-size: 16px;
    border-radius: 8px;
}

/* ----------- Start FAQ Page ----------- */




/* ----------- Start Modal ----------- */
.shift-modal .modal-content {
    border: 0;
    color: var(--neutral-gray-900);
}

.shift-modal .modal-content .modal-header {
    border: 0;
    padding-bottom: 0;
}

.shift-modal .modal-content .modal-title {
    font-weight: 700;
}

.shift-modal .modal-content .modal-header .btn-close {
    background-size: 0.8em;
    box-shadow: none;
}

.car-specs-modal .title {
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 12px;
}

.car-specs-modal .tags {
    list-style: none;
    margin: 0;
    display: flex;
    padding: 0;
    gap: 24px;
}

.car-specs-modal .tags li {
    padding: 6px 16px;
    background: var(--secondary-light-blue-100);
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
}

.car-specs-modal .car-specs {
    margin: 0;
    padding: 0;
    list-style: none;
    gap: 24px;
}

.car-specs-modal .car-specs li {
    display: flex;
    font-size: 14px;
    justify-content: space-between;
    align-items: center;
    line-height: 30px;
}

.car-specs-modal .car-specs li .icon {
    margin-inline-end: 8px;
}

.car-specs-modal .car-specs li .spec-name {
    display: flex;
    align-items: center;
}

.car-specs-modal .car-specs li .spec-name .icon {
    font-size: 20px;
}

.terms-modal p {
    font-size: 16px;
    line-height: 1.5;
}

/* ----------- End Modal ----------- */


/* ----------- Start Find us in Social Media ----------- */
.find-social-media .title {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 24px;
}

.find-social-media ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

.find-social-media ul li a {
    display: block;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    background: var(--neutral-gray-900);
    color: var(--white);
    font-size: 24px;
}

/* ----------- End Find us in Social Media ----------- */


/* ----------- End Find us in Social Media ----------- */

.reach-us {
    padding: 50px 24px;
    background: linear-gradient(208.2deg, rgba(255, 255, 255, 0.0117) 16.12%, rgba(153, 153, 153, 0.09) 208.08%);
    backdrop-filter: blur(20px);
    border: 1px solid #707070;
    border-radius: 12px;
    color: var(--white);
    display: flex;
    margin-inline-start: -100px;
    margin-bottom: -60px;
}

.reach-us h6 {
    font-weight: 400;
    margin-bottom: 16px;
}

.reach-us .icon {
    flex: 0 0 60px;
    max-width: 60px;
    height: 60px;
    width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--primary-blue-100);
    background: var(--white);
    border-radius: 50%;
    margin-inline-end: 16px;
}

.reach-us .num {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
    display: block;
    direction: ltr;
}

.reach-us p {
    font-size: 16px;
    margin: 0;
}



/* ----------- Start Profile ----------- */
.profile-pic-wrapper {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 16px;
}

.profile-pic-wrapper .profile-pic {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 16px;
    object-fit: cover;
    object-position: center;
    margin: 0 auto;
}

.profile-pic-wrapper .profile-no-pic {
    background: var(--neutral-gray-400);
    border-radius: 50%;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--neutral-gray-900);
    font-weight: 600;
}

.profile-pic-wrapper .upload-profile-pic {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--primary-blue-100);
    text-decoration: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 20px;
    cursor: pointer;
}

.profile-list {
    padding: 0;
    list-style: none;
    margin: 0;
}

.profile-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 8px;
    border-bottom: 1px solid var(--neutral-gray-50);
}

.profile-list li:last-child {
    border-bottom: 0;
}

.profile-list li .icon {
    margin-inline-end: 8px;
    font-size: 23px;
    width: 32px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.profile-list li .icon img {
    max-height: 20px;
}

.profile-list li .img-icon {
    width: 52px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-inline-end: 8px;
}

.profile-list li .edit {
    color: var(--primary-blue-100);
    font-size: 16px;
    display: flex;
    align-items: center;
    text-decoration: none;
    font-weight: 600;
}

/*----*/
/* .crop-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
} */

.crop-modal .crop-container {
    width: 100%;
    height: 500px;
    overflow: hidden;
    background: #000;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.crop-modal #cropImage {
    max-width: 100%;
    max-height: 100%;
    display: block;
}

.crop-modal .cropper-view-box,
.crop-modal .cropper-face {
    border-radius: 50%;
}

.crop-modal .cropper-crop-box {
    width: 200px !important;
    height: 200px !important;
}


/* ----------- End Profile ----------- */


/* ----------- Start Serach Car Steps ----------- */
.serach-car-step-section .step-app>.step-steps {
    border: 1px solid var(--neutral-gray-400);
    border-radius: 12px;
    overflow: hidden;
}

.serach-car-step-section .step-app>.step-steps>li {
    background: var(--neutral-gray-200);
    color: var(--neutral-gray-800);
    text-align: center;
    border: 0;
    padding: 14px 10px;
}

.serach-car-step-section .step-app>.step-steps>li.active {
    background: var(--secondary-light-blue-200);
    color: var(--comet-950);
}


ul.filter-list {
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    list-style: none;
    gap: 8px;
}

ul.filter-list li {
    background: transparent;
    border: 1px solid var(--primary-blue-100);
    padding: 8px 16px;
    border-radius: 12px;
    color: var(--primary-blue-100);
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 14px;
}

ul.filter-list li:before {
    content: '✓';
    width: 0;
    height: 24px;
    transition: all ease 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    opacity: 0;
}

ul.filter-list li.active {
    background: var(--primary-blue-100);
    color: var(--white);
    padding-inline-start: 6px;
}

ul.filter-list li.active:before {
    width: 24px;
    opacity: 1;
}


.serach-car-step-section .filter-title {
    margin-bottom: 16px;
}


.sidebar-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--neutral-gray-900);
}

.rent-details {
    padding: 0;
    list-style: none;
    margin: 0;
}

.rent-details li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    margin-bottom: 8px;
}


.accordion-asidebar .accordion-item {
    border-width: 0;
    border-bottom-width: 1px;
    border-radius: 0;
}

.accordion-asidebar .accordion-item:last-child {
    border: 0;
}

.accordion-asidebar .accordion-button {
    padding-inline: 0;
    background: transparent;
    box-shadow: none;
    font-weight: 500;
    color: var(--neutral-gray-900);
    padding-block: 20px;
}

.accordion-asidebar .accordion-body {
    padding-inline: 0;
    padding-top: 0;
    padding-bottom: 20px;
}

.serach-car-step-section .step-app>.step-content {
    border: 0;
    margin-top: 50px;
}

.car-item-card {
    background: var(--neutral-gray-50);
    border: 1px solid var(--neutral-gray-300);
    border-radius: 12px;
    overflow: hidden;
    text-align: center;
    position: relative;
}

.car-item-card .badge-label {
    position: absolute;
    top: 50px;
    left: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
    z-index: 1;
    padding: 4px 12px;
    height: 24px;
}

.car-item-card .badge-label:after {
    content: '';
    opacity: 0.2;
    position: absolute;
    inset: 0;
    border-radius: 4px;
    z-index: -1;
}

.car-item-card .badge-label .icon {
    margin-inline-end: 4px;
}

.car-item-card .badge-label.discount:after {
    background: var(--secondary-green);
}


.car-item-card .badge-label.discount {
    color: var(--secondary-green);
}

.car-item-card .badge-label.discount .icon:before {
    color: var(--secondary-green);
}

.car-item-card .badge-label.not-available {
    color: var(--red-bright);
}

.car-item-card .badge-label.not-available:after {
    background: var(--red-bright);
}



.car-item-card .not-available-label {}

.car-item-card .item-header,
.car-item-card .item-footer {
    padding-inline: 16px;
    padding-block: 16px;
}

.car-item-card .info {
    padding: 0;
    list-style: none;
    margin: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.car-item-card .info li {
    font-size: 12px;
    font-weight: 500;
    padding: 4px 8px;
    border-radius: 8px;
    background: var(--secondary-light-blue-200);
    background: #ecedf6;
    background: var(--secondary-light-blue-100);
}

.car-item-card .info li span {
    font-size: 14px;
}

.car-item-card .info .discount {
    text-decoration: line-through;
}

.car-item-card figure {
    max-width: 300px;
    margin: 0 auto;
}

.car-item-card .name {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
}

.car-item-card .name .year {
    font-size: 14px;
    font-weight: 400;
    display: block;
    color: var(--neutral-gray-800);
}

.car-item-card .car-specs {
    margin: 0;
    padding: 0;
    list-style: none;
    gap: 24px;
    margin-bottom: 16px;
}

.car-item-card .car-specs li {
    display: flex;
    font-size: 14px;
    justify-content: space-between;
    align-items: center;
    line-height: 30px;
}

.car-item-card .car-specs li .icon {
    margin-inline-end: 8px;
}

.locations {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.locations li {
    background: var(--neutral-gray-50);
    border-radius: 12px;
    padding: 16px;
}

.locations li .title {
    font-size: 14px;
    color: var(--neutral-gray-800);
    font-weight: 600;
    margin-bottom: 8px;
}

.locations li .item {
    display: flex;
    align-items: center;
    font-size: 16px;
    margin-bottom: 8px;
}

.locations li .item:last-child {
    margin-bottom: 0;
}

.locations li .item .icon {
    margin-inline-end: 8px;
    font-size: 16px;
    flex: 0 0 24px;
    height: 24px;
    width: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.promo-code-wrapper .promo-code {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--secondary-light-blue-100);
    z-index: 2;
    border-radius: var(--bs-border-radius) 0.375rem;
    gap: 8px;
    font-size: 16px;
    font-weight: 500;
}

/* ----------- End Serach Car Steps ----------- */
/* ----------- Start My Booking ----------- */
/* .upcoming-trip .item{
    margin-bottom: 1.5rem;
}
.upcoming-trip .item:last-child{
    margin-bottom: 0;
} */
.my-booking-list-wrapper .my-booking-list {
    margin-bottom: 1.5rem;
}

/* 
.my-booking-list-wrapper .my-booking-list:last-child {
    margin-bottom: 0;
} */

.upcoming-booking .item .booking-info-wrapper {
    background: url('../img/phase-2/upcoming-bg.png') no-repeat center;
    background-size: cover;
    border-radius: 24px;
    padding: 32px;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

/* .my-booking-list:not(.upcoming-booking) .item{
    border: 1px solid var(--neutral-gray-300);
    border-radius: 16px;
    padding: 24px;
    background: var(--white);
    box-shadow: 5px 2px 23.1px 0px rgba(0, 0, 0, 0.05);
    } */
.my-booking-list:not(.upcoming-booking) .booking-wrapper {
    margin-bottom: 24px;
}

.my-booking-list:not(.upcoming-booking) .booking-wrapper:last-child {
    margin-bottom: 0;
}

.my-booking-list .item a {
    display: block;
    padding: 16px;
    border-radius: 12px;
    transition: all ease 0.3s;
}

.my-booking-list .item a:hover {
    background: var(--neutral-gray-50);
}

.my-booking-list:not(.upcoming-booking) .item {
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--neutral-gray-300);
}

.my-booking-list:not(.upcoming-booking) .item:last-child {
    margin-bottom: 0;
    border-bottom: 0;
}

.my-booking-list:not(.upcoming-booking) .item figure {
    flex: 0 0 75px;
    height: 75px;
    max-width: 75px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    margin-inline-end: 16px;
    border-radius: 50%;
}

.my-booking-list:not(.upcoming-booking) .item figure img {
    max-height: 100%;
}

/* ----------- End My Booking ----------- */

/* ----------- Start Footer ----------- */
.shift-footer {
    background: var(--black);
    padding-block: 80px 40px;
    color: var(--white);
    overflow: hidden;
}

.shift-footer hr {
    border-color: #DDE0F4;
}

.download-app-option {
    display: flex;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
    list-style: none;
    gap: 16px;
}

.footer-widget .title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 16px;
}

.footer-widget ul {
    margin: 0;
    list-style: none;
    padding: 0;
}

.footer-widget ul li {
    margin-bottom: 5px;
}

.footer-widget ul li:last-child {
    margin: 0;
}

.footer-widget ul li a {
    color: var(--white);
    text-decoration: none;
    padding-block: 5px;
    display: inline-block;
    font-size: 16px;
    transition: all ease 0.3s;
    position: relative;
    /* padding-inline-end: 8px; */
}

.footer-widget ul li a:after {
    height: 1px;
    width: 0px;
    content: '';
    background: var(--yellow);
    transition: all ease 0.3s;
    display: block;
    bottom: 0;
    position: absolute;
    left: 0;
    right: 0;
}

.footer-widget ul li a:hover {
    color: var(--yellow);
    /* padding-inline-start: 8px; */
}

.footer-widget ul li a:hover:after {
    width: 100%;
}

.shift-footer .social-media .title {
    font-size: 14px;
    margin-bottom: 24px;
}

.shift-footer .social-media ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

.shift-footer .social-media ul li a {
    display: block;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    text-align: center;
    line-height: 44px;
    background: rgba(120, 120, 128, 0.2);
    color: var(--white);
    font-size: 22px;
}

.shift-footer .footer-menu {
    padding: 0;
    list-style: none;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 4px;
}

.shift-footer .footer-menu li a {
    color: var(--white);
    font-size: 14px;
    padding: 10px;
    display: block;
    text-decoration: none;
}

.shift-footer .copyright {
    font-size: 12px;
    color: #9A9A9A;
}

/* ----------- End Footer ----------- */


/* ----------- Start Social Login ----------- */

.social-login {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin: 16px 0 0;
    padding: 0;
    list-style: none;
}

.social-login li {
    /* flex: 1; */
}

.social-login li a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 42px;
    width: 42px;
    border-radius: 50%;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border: 1px solid var(--neutral-gray-300);
    background: var(--white);
    color: var(--neutral-gray-900);
    transition: all ease 0.3s;
}

.social-login li a img {
    height: 24px;
    width: 24px;
}

/* ----------- End Social Login ----------- */

.icon-car-rental-icon {
    position: relative;
}

.icon-car-rental-icon .path1:before,
.icon-car-rental-icon .path2:before,
.icon-car-rental-icon .path3:before,
.icon-car-rental-icon .path4:before {
    margin: 0 !important;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}