.wow {
    visibility: hidden;
}

@-webkit-keyframes fade_top {
    0% {
        opacity: 0;
        -webkit-transform: translateY(30px);
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes fade_top {
    0% {
        opacity: 0;
        -webkit-transform: translateY(30px);
        -ms-transform: translateY(30px);
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
}

.fade_top {
    -webkit-animation-name: fade_top;
    animation-name: fade_top;
}

.swiper-pagination-progressbar {
    background: rgb(0 0 0 / 3%);
}

@-webkit-keyframes slide_left {
    0% {
        left: 0%;
    }

    100% {
        left: -30%;
    }
}

@keyframes slide_left {
    0% {
        left: 0%;
    }

    100% {
        left: -30%;
    }
}

.slide_left {
    -webkit-animation-name: slide_left;
    animation-name: slide_left;
}

@-webkit-keyframes slide_right {
    0% {
        right: 0%;
    }

    100% {
        right: -30%;
    }
}

@keyframes slide_right {
    0% {
        right: 0%;
    }

    100% {
        right: -30%;
    }
}

.slide_right {
    -webkit-animation-name: slide_right;
    animation-name: slide_right;
}


@font-face {
    font-family: 'Poppins-SemiBold';
    src: url('../fonts/poppins/Poppins-SemiBold.woff2') format('woff2'),
        url('../fonts/poppins/Poppins-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins-Black';
    src: url('../fonts/poppins/Poppins-Black.woff2') format('woff2'),
        url('../fonts/poppins/Poppins-Black.woff') format('woff');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins-Bold';
    src: url('../fonts/poppins/Poppins-Bold.woff2') format('woff2'),
        url('../fonts/poppins/Poppins-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins-Light';
    src: url('../fonts/poppins/Poppins-Light.woff2') format('woff2'),
        url('../fonts/poppins/Poppins-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins-Medium';
    src: url('../fonts/poppins/Poppins-Medium.woff2') format('woff2'),
        url('../fonts/poppins/Poppins-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins-Regular';
    src: url('../fonts/poppins/Poppins-Regular.woff2') format('woff2'),
        url('../fonts/poppins/Poppins-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}



:root {
    /* colors */
    --primary-color: #333333;
    --secondary-color: #D81224;
    --white-color: #FFFFFF;
    --highlight-color: #e1e4e8;
    --background-smoke: #fafbfc;
    --background-gray: #f6f8fa;
    --secondary-highlight-color: #0366D6;
    --pure-black-color: #000000;
    /* font-sizes */
    --banner-title-font-size: 3.5rem;
    --section-title-font-size: 3.25rem;
    --section-subtitle-font-size: 2rem;
    --paragraph-font-size: 1.5rem;
    --content-font-size: 1.15rem;
    --link-font-size: 1rem;
    /* font-families */
    --light-font-family: "Poppins-Light";
    --regular-font-family: "Poppins-Regular";
    --medium-font-family: "Poppins-Medium";
    --semibold-font-family: "Poppins-SemiBold";
    --bold-font-family: "Poppins-Bold";
    --black-font-family: "Poppins-Black";
    /* other */
    --common-transition: all 0.6s ease;
    --web-border-radius: 0.625rem;
    --mobile-border-radius: 0.6rem;
    --common-gap-size: 1rem;
    --small-gap-size: 1.5rem;
    --medium-gap-size: 3rem;
    --big-gap-size: 6rem;
}

.bold-fonts {
    font-family: var(--bold-font-family) !important;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
    font-family: var(--regular-font-family);
    color: var(--primary-color);
}

html {
    height: auto;
    font-size: 16px;
    scroll-behavior: smooth;
}

* {
    line-height: 1.2;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

body {
    line-height: 1.2;
    width: 100%;
}

::-webkit-scrollbar {
    width: 0px !important;
    cursor: pointer;
}

::-webkit-scrollbar-track {
    background: #cccccc !important;
}

::-webkit-scrollbar-thumb {
    background: #000000 !important;
}

::-webkit-scrollbar-thumb:hover {
    background: #000000 !important;
}

body.no-scroll-body {
    overflow-y: hidden;
}

ol,
ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: "";
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

a {
    background-color: transparent;
    color: unset;
    outline: none;
    text-decoration: none;
    -webkit-transition: all ease-in-out 0.4s;
    -moz-transition: all ease-in-out 0.4s;
    -ms-transition: all ease-in-out 0.4s;
    -o-transition: all ease-in-out 0.4s;
    transition: all ease-in-out 0.4s;
}

a:focus,
a:hover {
    outline: 0;
    text-decoration: unset;
    color: unset;
}

img {
    max-width: 100%;
    transition: var(--common-transition);
    width: 100%;
    object-fit: cover;
    cursor: pointer;
    display: block;
}

.relative {
    position: relative;
}

.uppercase {
    text-transform: uppercase;
}

.capitalize {
    text-transform: capitalize;
}

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

.text-left {
    text-align: left;
}

.p0 {
    padding: 0 !important;
}


.main-container-fluid {
    width: 90%;
    margin: 0 auto;
}

.main-container {
    width: 75%;
    margin: 0 auto;
}


.mini-container {
    width: 65%;
    margin: 0 auto;
}

.content_accordian {
    display: none;
}

.section-padding {
    padding: 8rem 0;
}

.section-padding-small {
    padding: 2rem 0;
}

.hover-enable {
    display: none;
}

.hover-disable {
    display: inline-block;
}

.mobile-image {
    display: none;
}

.web-image {
    display: block;
}

div:focus-visible,
img:focus-visible,
button:focus-visible {
    outline: none;
    border: none;
}

body.no-scroll-body {
    overflow-y: hidden;
}

.visible-tab-mobile {
    display: none !important;
}

.hide-tab-mobile {
    display: block !important;
}


.inner-flex {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.inner-flex.inner-flex-small {
    gap: var(--small-gap-size);
}

.inner-flex.inner-flex-medium {
    gap: var(--medium-gap-size);
}

.inner-flex.inner-flex-big {
    gap: var(--big-gap-size);
}

.inner-flex.inner-flex-large {
    gap: 10rem;
}

.inner-flex.inner-flex-common {
    gap: var(--common-gap-size);
}

.inner-flex.inner-flex-center {
    text-align: center;
    align-items: center;
}

.flex-row {
    display: flex;
    gap: 0.5rem;
    flex-direction: row;
}

.alc {
    align-items: center;
}

.j-c-sb {
    justify-content: space-between;
}

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

.black-color {
    color: var(--pure-black-color) !important;
}

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

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

.secondary-highlight-color {
    color: var(--secondary-highlight-color) !important;
}

/* fonts css */

.material-symbols-outlined {
    font-family: 'Material Symbols Outlined' !important;
}

.banner-title h1,
.banner-title h1 span,
.banner-title h2,
.banner-title h2 span {
    font-size: var(--banner-title-font-size);
    font-family: var(--semibold-font-family);
}

.banner-title h1 span,
.banner-title h2 span {
    color: var(--secondary-color);
}

.section-title h1,
.section-title h1 span,
.section-title h2,
.section-title h2 span {
    font-size: var(--section-title-font-size);
    font-family: var(--semibold-font-family);
}

.section-title h1 span,
.section-title h2 span {
    color: var(--secondary-color);
}

.section-content p,
.section-content p span {
    font-size: var(--content-font-size);
    line-height: 1.5;
}

.section-content p span {
    color: var(--secondary-color);
}


.section-paragraph p,
.section-paragraph p span {
    font-size: var(--paragraph-font-size);
    line-height: 1.5;
}

.section-paragraph p span {
    color: var(--secondary-color);
}


.section-text p,
.section-text p span {
    font-size: 1.15rem;
    line-height: 1.5;
}

.section-text p span {
    color: var(--secondary-color);
}

.section-subtitle h4,
.section-subtitle h4 span {
    font-size: var(--section-subtitle-font-size);
    font-family: var(--semibold-font-family);
    color: var(--primary-color);
}

.section-subtitle h4 span {
    color: var(--secondary-color);
}

.smallest-font p {
    font-size: 0.85rem;
}

.link-font-size a p,
.link-font-size a p span.material-symbols-outlined,
.link-font-size p {
    font-size: var(--link-font-size);
}

.corfu-button {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 1.2rem;
    transition: var(--common-transition);
    border-radius: 0.5rem;
    width: fit-content;
    justify-content: center;
}

.corfu-button p,
.corfu-button span {
    line-height: 1 !important;
}

.button-style-primary {
    border: 1px solid var(--primary-color);
    background-color: var(--primary-color);
}

.button-style-primary span,
.button-style-primary p {
    color: var(--white-color);
    transition: var(--common-transition);
    font-size: 1rem;
}

.button-style-primary:hover {
    border: 1px solid var(--primary-color);
    background-color: transparent;
    transition: var(--common-transition);
}

.button-style-primary:hover span,
.button-style-primary:hover p {
    color: var(--primary-color);
    transition: var(--common-transition);
}

.button-style-secondary {
    border: 1px solid var(--secondary-color);
    background-color: var(--secondary-color);
}

.button-style-secondary span,
.button-style-secondary p {
    color: var(--white-color);
    transition: var(--common-transition);
    font-size: 1.15rem;
}

.button-style-secondary:hover {
    border: 1px solid var(--secondary-color);
    background-color: transparent;
    transition: var(--common-transition);
}

.button-style-secondary:hover span,
.button-style-secondary:hover p {
    color: var(--secondary-color);
    transition: var(--common-transition);
}

.button-style-white {
    border: 1px solid var(--white-color);
    background-color: transparent;
}

.button-style-white span,
.button-style-white p {
    color: var(--primary-color);
    transition: var(--common-transition);
    font-size: 1.15rem;
}

.button-style-white:hover {
    border: 1px solid var(--white-color);
    background-color: var(--white-color);
    transition: var(--common-transition);
}

.button-style-white:hover span,
.button-style-white:hover p {
    color: var(--primary-color);
    transition: var(--common-transition);
}


.visible-tab-mobile {
    display: none !important;
}

.hide-tab-mobile {
    display: block !important;
}

/* CSS STarts here */


.header-wrapper {
    position: fixed;
    background-color: var(--white-color);
    transition: var(--common-transition);
    top: 0rem;
    border-bottom: 0px solid var(--primary-color);
    left: 0;
    width: 100%;
    padding: 0;
    z-index: 99999999999999999;
}

.header-links-ul.mobie_navigation {
    padding-top: 5rem;
    background-color: #fff;
    position: fixed;
    left: 0;
    top: -100%;
    width: 100%;
    transition: var(--common-transition);
    z-index: 9999;
    height: fit-content;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
}

.header-links-ul.mobie_navigation.active {
    transition: var(--common-transition);
    top: 0;
}

/* .header-wrapper.black-header {
	background-color: transparent;
	border-bottom: 0px solid transparent;
} */

.header-flex {
    display: flex;
    justify-content: space-between;
    gap: var(--small-gap-size);
    align-items: center;
}

.header-links-ul ul {
    display: flex;
    align-items: center;
    gap: var(--small-gap-size);
}

.header-links-ul ul li a,
.header-links-ul ul li span,
.header-links-ul ul li p {
    color: var(--primary-color);
}

.header-links-ul ul li a {
    display: flex;
    padding: 1rem;
    gap: 0.5rem;
    align-items: center;
    color: var(--primary-color);
}

.header-logo {
    width: 13rem;
}

.nav_dropdown_list {
    display: none;
    background-color: #F3F3F3;
    position: absolute;
    top: 110%;
    left: 0;
    width: 15rem;
}

.nav_dropdown_list.active {
    display: block;
}

.nav_dropdown_link.active-link {
    color: var(--secondary-color);
}

.corfu-button-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.5rem 1rem;
    transition: var(--common-transition);
    border-radius: 0.15rem;
    border: 1px solid var(--primary-color);
    background-color: transparent;
    width: fit-content;
}

.corfu-button-header p {
    font-size: var(--link-font-size);
    color: var(--primary-color);
}

.header-links-ul {
    width: fit-content;
    /* width: -webkit-fill-available; */
}

.li-button-header {
    margin-left: auto;
}

/* HOME PAGE CSS */

.home-page-banner {
    height: 75lvh;
}

.quote-page-banner {
    height: 60lvh;
}

.quote-page-banner img,
.home-page-banner img {
    height: 100%;
}

.black-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(0 0 0 / 30%);
}

.pull-right,
.pull-left {
    float: unset !important;
}

small {
    padding: 0.5rem;
    display: block;
}

.page-banner-abs {
    width: 85%;
    margin: 0 auto;
    position: absolute;
    top: 65%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.booking-grid-wrapper {
    display: flex;
    flex-direction: row;
    gap: 6rem;
    justify-content: space-between;
    align-items: start;
}

.overview-flex-wrapper {
    display: flex;
    flex-direction: column;
    gap: var(--medium-gap-size);
    justify-content: space-between;
    align-items: start;
    width: calc(100% - 60% - 3rem);
    flex-basis: calc(100% - 60% - 3rem);
}

.booking-grid-wrapper>div:nth-child(2) {
    width: calc(100% - 40% - 3rem);
    flex-basis: calc(100% - 40% - 3rem);
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.cars-list-wrapper-booking {
    width: 100%;
    flex-basis: 100%;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.overview-flex-wrapper>div:nth-child(1) {
    width: 100%;
    flex-basis: 100%;
}

.overview-flex-wrapper>div:nth-child(2) {
    width: 100%;
    flex-basis: 100%;
}

.select2-container .select2-selection--single,
.form-control-corfu {
    width: 100%;
    padding: 0.65rem 1.5rem 0.65rem 3rem;
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
    border: 1px solid #F3F3F3;
    border-radius: 0.5rem;
    height: 48px;
    background-color: #F3F3F3;
    -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
    -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    font-size: 1rem !important;
    font-family: var(--light-font-family);
    color: var(--primary-color);
}

.corfutextarea {
    padding: 1.25rem 1.5rem 1.25rem 1.5rem;
    background-color: #F3F3F3;
    border: 1px solid #F3F3F3;
    border-radius: 0.5rem;
    color: var(--primary-color);
    -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
    -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    font-size: var(--link-font-size);
    font-family: var(--medium-font-family);
    resize: none;
    width: 100%;
}

select.form-control-corfu option {
    padding: 0.5rem 0.5rem;
}

.form-control-corfu:focus,
.form-control-corfu:focus-visible {
    border: 1px solid var(--primary-color);
    background-color: transparent;
    outline: none;
}

::placeholder {
    color: var(--primary-color);
    font-size: var(--link-font-size);
}

.form-justify-space-iconsflex-1 {
    position: absolute;
    /* top: 0.75rem; */
    left: 0.75rem;
    display: block;
    line-height: 1;
}

.form-justify-space-iconsflex-2 {
    position: absolute;
    /* top: 0.75rem; */
    right: 0.75rem;
    display: block;
    line-height: 1;
}

.form-justify-space-iconsflex-2,
.form-justify-space-iconsflex-1 {
    top: 50%;
    transform: translateY(-50%);
}

.form-justify-space-iconsflex span {
    font-size: 1.5rem;
}

.location-select-dropdown {
    position: absolute;
    width: 100%;
    border-radius: 0.5rem;
    display: none;
    background-color: var(--white-color);
    z-index: 99;
    height: unset;
    padding: 0.5rem 0;
    border: 1px solid #DEDEDE;
    margin-top: 0.2rem;
    /* border-radius: 0.25rem; */
    max-height: 28vh;
    overflow-y: scroll;
}

/* Custom Scrollbar */
.location-select-dropdown::-webkit-scrollbar {
    width: 12px;
    /* width of the entire scrollbar */
}

.location-select-dropdown::-webkit-scrollbar-track {
    background: #f1f1f1;
    /* color of the scrollbar track */
    border-radius: 0.25rem;
    /* add some rounding to the track */
}

.location-select-dropdown::-webkit-scrollbar-thumb {
    background-color: #000;
    /* color of the scrollbar thumb */
    border-radius: 10px;
    /* roundness of the scrollbar thumb */
    border: 3px solid #f1f1f1;
    /* creates padding around thumb */
}

.location-select-dropdown::-webkit-scrollbar-thumb:hover {
    background: #555;
    /* color of the scrollbar thumb when hovered */
}

/* For Mozilla Firefox */
.location-select-dropdown {
    scrollbar-width: thin;
    scrollbar-color: #000 #f1f1f1;
}

.location-select-dropdown::-webkit-scrollbar-corner {
    background: transparent;
    /* color of the bottom corner */
}

.location-select-dropdown.location-select-dropdown-active {
    display: block;
}

.location-select-dropdown ul {
    display: flex;
    align-items: start;
    gap: 0rem;
    flex-direction: column;
}

.location-select-dropdown ul li {
    display: flex;
    width: 100%;
    cursor: pointer;
    align-items: center;
    gap: 1rem;
    padding: 0.5rem 1rem;
    justify-content: space-between;
}

.location-select-dropdown li p,
.location-select-dropdown li span {
    color: var(--primary-color);
    font-size: 1rem;
}

.form-control-card-select02 {
    display: flex;
    width: 100%;
    padding: 1.25rem 1.5rem 1.25rem 4rem;
    border: 1px solid var(--primary-color);
    border-radius: 0.25rem;
    gap: 1.5rem;
    color: var(--primary-color);
    background-color: transparent;
    -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
    -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    font-size: var(--link-font-size);
    font-family: var(--medium-font-family);
}

.form-control-corfu-select {
    color: var(--primary-color);
    font-size: var(--link-font-size);
    font-family: var(--medium-font-family);
    background-color: transparent;
    border: 0px !important;
    outline: none !important;
    height: 20px;
}

.my-location-icon:hover {
    color: var(--secondary-color) !important;
}

.return-journey-option {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.return-journey-option p {
    font-size: var(--link-font-size);
    color: var(--primary-color);
}

.return-journey-option span {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.return-journey-option.return-journey-option-active p,
.return-journey-option.return-journey-option-active span {
    color: var(--secondary-color) !important;
}

/* .submit-button {
    width: 100%;
} */

.date-and-time-flex {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--small-gap-size);
}

.cars-list-card {
    padding: 0rem;
    padding-right: 0.5rem;
    display: flex;
    cursor: pointer;
    flex-direction: row;
    align-items: center;
    gap: var(--small-gap-size);
    border: 3px solid transparent;
    border-radius: 0.5rem;
}

.cars-list-card.active,
.cars-list-card:hover {
    background-color: transparent;
    border-color: var(--primary-color);
}

.cars-list-card>div:nth-child(1) {
    width: calc(100% - 80% - 0.75rem);
    padding-left: 0.5rem;
    flex-basis: calc(100% - 80% - 0.75rem);
}

.cars-list-img img {
    aspect-ratio: 1;
    object-fit: contain;
}

.cars-list-card>div:nth-child(2) {
    width: calc(100% - 20% - 0.75rem);
    padding: 1rem 1rem 1rem 0;
    flex-basis: calc(100% - 20% - 0.75rem);
}

.capacity-flex {
    display: flex;
    margin-top: 0.5rem;
    align-items: center;
    gap: var(--medium-gap-size);
}

.capacity-flex>div {
    display: flex;
    opacity: 0.6;
    flex-direction: row;
    gap: 0.5rem;
    align-items: center;
}

.cars-list-content-flex {
    display: flex;
    flex-direction: row;
    gap: var(--medium-gap-size);
    align-items: center;
}

.cars-list-content-flex>div:nth-child(1) {
    width: calc(100% - 20% - 1.5rem);
    flex-basis: calc(100% - 20% - 1.5rem);
}

.cars-list-content-flex>div:nth-child(2) {
    width: calc(100% - 80% - 1.5rem);
    text-align: right;
    flex-basis: calc(100% - 80% - 1.5rem);
}

.home-banner-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 9rem;
    width: 65%;
    margin: 0 auto;
    padding: 5rem 0;
    align-items: center;
}

/* .home-banner-grid>div:nth-child(2) {
    border-bottom: .25rem solid var(--secondary-color);
    border-left: .25rem solid var(--secondary-color);
} */

.abs-banner-small {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    text-align: right;
    color: var(--white-color);
}

.quote-book-card-form {
    padding: 1.5rem;
    border: 1px solid #F3F3F3;
    border-radius: 0.5rem;
    width: calc(100% - 70% - 1.5rem);
    flex-basis: calc(100% - 70% - 1.5rem);
}

.quote-book-banner-grid>div:nth-child(2) {
    width: calc(100% - 55% - 1.5rem);
    flex-basis: calc(100% - 55% - 1.5rem);
    height: fit-content;
    position: relative;
    display: flex;
    padding-bottom: 6rem;
    /* overflow-y: scroll; */
    flex-direction: column;
    gap: 1.5rem;
}

.quote-book-banner-grid {
    display: flex;
    flex-direction: row;
    gap: var(--medium-gap-size);
    align-items: start;
    padding-top: 2rem;
    padding-bottom: 4rem;
}

.is_child_seat_required_top {
    margin-top: 0.5rem;
}

.end-row-flex {
    display: flex;
    flex-direction: row;
    gap: 0.5rem;
    align-items: end;
}

.icon-capacity {
    line-height: 0.85 !important;
}

.icon-capacity.section-text p {
    font-size: 0.85rem;
    line-height: 0.85 !important;
}

.icon-capacity.section-text span {
    font-size: 1rem;
    line-height: 0.85 !important;
}

.smallest-icon-row {
    display: flex;
    flex-direction: row;
    gap: 0.25rem;
    align-items: center;
}

.lh1 {
    line-height: 0.9 !important;
}

.smallest-font {
    padding-top: 10px;
}

.normal-description {
    padding-top: 5px;
}

.readmore_click {
    opacity: 0.6;
    font-size: 0.85rem !important;
}


.quote-book-banner-grid>div:nth-child(2)::-webkit-scrollbar {
    width: 12px;
    /* width of the entire scrollbar */
}

.quote-book-banner-grid>div:nth-child(2)::-webkit-scrollbar-track {
    background: transparent;
    /* color of the scrollbar track */
    border-radius: 0.25rem;
    /* add some rounding to the track */
}

.quote-book-banner-grid>div:nth-child(2)::-webkit-scrollbar-thumb {
    background-color: #000;
    /* color of the scrollbar thumb */
    border-radius: 10px;
    /* roundness of the scrollbar thumb */
    border: 3px solid transparent;
    /* creates padding around thumb */
}

.quote-book-banner-grid>div:nth-child(2)::-webkit-scrollbar-thumb:hover {
    background: #555;
    /* color of the scrollbar thumb when hovered */
}

/* For Mozilla Firefox */
.quote-book-banner-grid>div:nth-child(2) {
    scrollbar-width: thin;
    scrollbar-color: #000 transparent;
}

.quote-book-banner-grid>div:nth-child(2)::-webkit-scrollbar-corner {
    background: transparent;
    /* color of the bottom corner */
}

.quote-book-banner-grid>div:nth-child(2)::-webkit-scrollbar-button {
    display: none;
}

.book-payment-bottom-strip {
    position: absolute;
    bottom: 1rem;
    width: 95%;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: rgba(0, 0, 0, 0.16) 0px 4px 16px;
    border-radius: 0.85rem;
    padding: 1rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    align-items: center;
}

.book-btn-100 {
    width: 100%;
}

.link-btn-payment-method {
    display: inline-flex;
    gap: 0.75rem;
    cursor: pointer;
    align-items: center;
}

.link-btn-payment-method .paymet-link0btn-icon {
    width: 1.25rem;
    flex-basis: 1.25rem;
}

.link-btn-payment-method p {
    font-size: 1rem;
    font-family: var(--semibold-font-family);
}

.link-btn-payment-method span {
    font-size: 1.25rem;
}

.popup-overlay-div {
    background-color: rgba(0, 0, 0, 0.5);
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    backdrop-filter: blur(2px);
    z-index: 99;
    /*z-index: 999999999;*/
    opacity: 0;
    visibility: hidden;
    transition: var(--common-transition);
}

.popup-overlay-div.popup-overlay-div-active {
    opacity: 1;
    visibility: visible;
    transition: var(--common-transition);
}

.selection-popup-card-wrapper {
    width: 75lvh;
    height: 75lvh;
    border-radius: 0.5rem;
    background-color: var(--white-color);
    padding: 1.5rem;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    position: fixed;
    z-index: 100;
    /*z-index: 9999999999;*/
    display: none;
    flex-direction: column;
    gap: var(--small-gap-size);
}

.selection-popup-card-wrapper.selection-popup-card-wrapper-active {
    display: flex;
}

.selection-popup-card-header {
    display: flex;
    width: 100%;
    align-items: center;
    gap: 1rem;
    justify-content: space-between;
}

.close-icon {
    width: 1.15rem;
}

.selection-popup-card-footer {
    margin-top: auto;
}

.selection-popup-card-body-ul ul {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    align-items: start;
}

.selection-popup-card-body-ul ul li {
    display: flex;
    flex-direction: row;
    gap: 2rem;
    align-items: start;
    width: 100%;
}

.selection-popup-card-body-ul .selection-popup-card-body-ul-icon {
    width: 1.5rem;
}

.selection-popup-card-body-ul li p {
    font-family: var(--medium-font-family);
    text-transform: capitalize;
}

.selection-popup-card-body-ul li {
    cursor: pointer;
}

.selection-popup-card-body-ul .popup-body-radio-flex {
    width: calc(100% - 3.5rem);
    flex-basis: calc(100% - 3.5rem);
    display: flex;
    align-items: center;
    flex-direction: row;
    gap: 1rem;
    padding-bottom: 1.25rem;
    justify-content: space-between;
    border-bottom: 1px solid var(--highlight-color);
}

.selection-popup-card-body-ul .payment-method-selected .popup-body-radio-flex.popup-body-radio-flex-100 {
    border-color: var(--primary-color);
}

.selection-popup-card-body-ul .return-method-selected .popup-body-radio-flex.popup-body-radio-flex-100 {
    border-color: var(--primary-color);
}

.selection-popup-card-body-ul .popup-body-radio-flex.popup-body-radio-flex-100 {
    width: 100%;
    flex-basis: 100%;
    padding: 1rem;
    border: 2px solid var(--highlight-color);
    border-radius: 0.5rem;
}

.selection-popup-card-body-ul .popup-body-radio-flex>div.radio-btn-popup {
    width: 1rem;
    height: 1rem;
    background-color: transparent;
    border: 1px solid #000000;
    border-radius: 50%;
    position: relative;
}

.selection-popup-card-body-ul .payment-method-selected .popup-body-radio-flex>div.radio-btn-popup {
    background-color: transparent;
}

.selection-popup-card-body-ul .return-method-selected .popup-body-radio-flex>div.radio-btn-popup {
    background-color: transparent;
}

.selection-popup-card-body-ul .return-method-selected .popup-body-radio-flex>div.radio-btn-popup::after,
.selection-popup-card-body-ul .payment-method-selected .popup-body-radio-flex>div.radio-btn-popup::after {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    content: "";
    width: 0.5rem;
    height: 0.5rem;
    background-color: var(--primary-color);
    border-radius: 50%;
    z-index: 5;
}

.lh13 {
    line-height: 1.3 !important;
}

.selection-popup-card-body {
    padding-top: 1.5rem;
    display: flex;
    height: -webkit-fill-available;
    flex-direction: column;
    justify-content: space-between;
}

.error-message {
    color: #FF0000;
}

label.error {
    position: absolute;
    top: 100%;
    left: 0;
    font-size: 12px;
    color: #FF0000;
}

.return-journey-form-wrapper-active {
    margin-top: 1.5rem;
}

.return-journey-click0btn {
    margin-top: 0.5rem;
}

/* .end-btn-confirm-booking {
    align-self: end;
    padding-bottom: 6rem;
    margin-left: auto;
} */
.end-btn-confirm-booking {
    align-self: end;
    /* padding-bottom: 6rem; */
    margin-left: auto;
    position: fixed;
    background: white;
    display: flex;
    width: 37%;
    left: 49%;
    transform: translateX(-50%);
    bottom: 5%;
    padding: 1rem;
    border: 1px solid #F3F3F3;
    border-radius: 1rem;
    justify-content: space-between;
    z-index: 45;
}

.payment-icon {
    width: 1.5rem;
}

.payment-method-fex {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.payment-dropdwon-type {
    padding-left: 0.5rem;
}

.quote-book-banner-grid .form-control-corfu {
    padding: 1rem 1rem 1rem 4rem;
    height: 64px;
}

.dg2thankyou {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--small-gap-size);
}

.booking-confirmation-form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--medium-gap-size);
    padding: 2.5rem 0;
}

.journey-detail-card {
    padding: 1.5rem;
    border: 1px solid #F3F3F3;
    border-radius: 0.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.journey-detail-card-grid {
    gap: 1rem;
    row-gap: 1.5rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin-bottom: 1.5rem;
}

.car-confrimation-flex {
    display: flex;
    flex-direction: row-reverse;
    margin-top: 0.5rem;
    gap: 1.5rem;
}

.car-confrimation-flex>div:nth-child(1) {
    width: calc(100% - 75% - 0.75rem);
    flex-basis: calc(100% - 75% - 0.75rem);
}

.car-confrimation-flex>div:nth-child(2) {
    width: calc(100% - 25% - 0.75rem);
    flex-basis: calc(100% - 25% - 0.75rem);
}

.opacity5 {
    opacity: 0.5;
}

.booking-confirmation-img img {
    transform: scale(2) translate(-25px, -10px);
}

.select-dropdown {
    width: 500px;
}

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

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 26px;
    position: absolute;
    top: 1px;
    right: 1px;
    width: 0px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
    border-color: #888 transparent transparent transparent;
    border-style: solid;
    border-width: 5px 4px 0 4px;
    height: 0;
    left: 50%;
    margin-left: -4px;
    margin-top: -2px;
    position: absolute;
    top: 50%;
    width: 0;
    display: none;
}

.select2-dropdown {
    background-color: #F3F3F3;
    border: 1px solid transparent;
    border-radius: 0rem 0rem 0.5rem 0.5rem;
    box-sizing: border-box;
    display: block;
    position: absolute;
    left: -100000px;
    width: 100%;
    z-index: 1051;
}

.select2-selection__rendered {
    color: var(--primary-color);
    background-color: #F3F3F3;
    font-size: var(--link-font-size);
    font-family: var(--light-font-family);
}

.margin-left-auto {
    margin-left: auto;
}

/* .corfu-page-wrapper{
    padding-top: 5rem;
} */

.three-column-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--small-gap-size);
}

.no-cars-available-card {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 1.5rem;
    align-items: center;
    border-radius: 0.5rem;
    border: 2px solid #F3F3F3;
}

/* .form-justify-space-iconsflex-2,
.form-justify-space-iconsflex-1 {
    z-index: 99999999999;
} */
.select2-container .select2-selection--single .select2-selection__rendered {
    padding-left: 0 !important;
}

/* .select2-container {
    z-index: 9999999999999;
} */

.thankyou-page-wrapper {
    padding: 4rem 0;
}

.two-cardgrid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem;
}

.two-cardgrid .journey-detail-card-grid {
    margin: 0 !important;
}

.thank-you-image-car {
    width: 20%;
}

.corfu-page-wrapper input[type="date"] {
    position: relative;
    color: transparent;
}

.corfu-page-wrapper input[type="date"]:before {
    position: relative;
    content: attr(data-date);
    display: inline-block;
    font-size: 1rem !important;
    font-family: var(--light-font-family);
    color: var(--primary-color);
}

.corfu-page-wrapper input[type="date"]::-webkit-datetime-edit,
.corfu-page-wrapper input[type="date"]::-webkit-inner-spin-button,
.corfu-page-wrapper input[type="date"]::-webkit-clear-button {
    display: none;
}

.corfu-page-wrapper input[type="date"]::-webkit-calendar-picker-indicator {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    color: black;
    /* opacity: 1; */
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    font-size: 1rem !important;
    font-family: var(--light-font-family);
    color: var(--primary-color);
}

.home-form-wrpper {
    width: 100%;
}

.booking-height-sticky {
    height: fit-content;
    position: sticky;
    top: 5rem;
}

.my-rides-main-wrapper-grid {
    display: grid;
    gap: var(--medium-gap-size);
    grid-template-columns: repeat(4, 1fr);
    grid-template-areas: 'rideSform rideSlist rideSlist rideSlist';
}

.my-rides-main-wrapper-grid>div:nth-child(1) {
    grid-area: rideSform;
    padding: 1rem;
    border: 1px solid #DEDEDE;
    height: fit-content;
    border-radius: 0.5rem;
}

.my-rides-main-wrapper-grid>div:nth-child(2) {
    grid-area: rideSlist;
}

.booking-list-card-listpage {
    padding: 1.5rem;
    border: 1px solid #DEDEDE;
    border-radius: 1rem;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: var(--medium-gap-size);
    align-items: start;
}

.small-fonts-paragraph p {
    font-size: 0.85rem;
}

.switch-mobile-email {
    display: flex;
    flex-direction: row;
    justify-content: end;
}

thead {
    background-color: var(--primary-color);
}

thead th {
    padding: 0.5rem;
}

.action-btn-small {
    height: 40px;
    width: 40px;
    background-color: #dedede82;
    border-radius: 0.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.action-btn-small span.material-symbols-outlined {
    font-size: 24px;
}

.action-btns-flex {
    display: flex;
    flex-direction: row;
    justify-content: end;
    gap: var(--common-gap-size);
}

.action-btn-view span.material-symbols-outlined {
    color: green;
}

.action-btn-download span.material-symbols-outlined {
    color: var(--secondary-color);
}

.header-links-ul ul li a.active-link p,
.header-links-ul ul li a.active-link span {
    color: var(--secondary-color);
}

.list-flex-row {
    display: flex;
    flex-direction: row;
    gap: 0.5rem;
    align-items: center;
}

.two-box-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
}

.three-form-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--small-gap-size);
}

.one-form-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1rem;
}

.corfu-faqs-wrapper {
    margin-top: 3rem;
}

.corfu-faqs-wrapper .faqs-container {
    display: flex;
    gap: 4rem;
    flex-direction: row;
}

.corfu-faqs-wrapper .faq-type-title {
    font-size: 1.2rem;
    font-weight: 600;
}

.corfu-faqs-wrapper .faqs-type-sticky {
    background-color: #e1e4e8;
    padding: 1.5rem 1rem 16px 1rem;
    position: sticky;
    top: 9rem;
    width: 30%;
    height: fit-content;
}

.corfu-faqs-wrapper .faq_type_list {
    list-style: disc;
    padding-left: 1.5rem;
}

.corfu-faqs-wrapper .faq_type_list li {
    margin-bottom: 1rem;
    font-size: 1rem;
}

.corfu-faqs-wrapper .faq-container-list {
    width: 70%;
}

.corfu-faqs-wrapper .faq-list-title h2 {
    font-weight: 600;
    font-size: 1.6rem;
}

.corfu-faqs-wrapper .faqs-que-ans {
    font-size: 1rem;
    border-bottom: 1px solid #F3F3F3;
}

.corfu-faqs-wrapper .faqs-question {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    /* font-size: 1.15rem; */
    font-weight: 600;
    padding: 1rem 1.25rem;
    cursor: pointer;
}

.corfu-faqs-wrapper .faqs-question p {
    font-size: 1rem;
    font-weight: 600;
}

.corfu-faqs-wrapper .down_arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 30px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.corfu-faqs-wrapper .down_arrow span {
    font-weight: 600;
}

.corfu-faqs-wrapper .faqs-answer {
    padding: 1.5rem;
}

.corfu-faqs-wrapper .faqs-answer p {
    font-size: 1rem;
}

.corfu-faqs-wrapper .accordion_click.active .down_arrow {
    transform: rotate(180deg);
}

.corfu-faqs-wrapper .accordion_click.active .down_arrow span {
    color: var(--secondary-color);
}

.corfu-faqs-wrapper .faqs-type-mobile-fixed {
    position: fixed;
    bottom: 6.5rem;
    right: 1.5rem;
    /* display: none; */
    z-index: 1000;
    max-height: 0;
    transition: var(--common-transition);
    overflow-y: scroll;
    transform-origin: bottom right;
    transform: scale(0);
}

.corfu-faqs-wrapper .faqs-type-mobile-fixed.active {
    transition: var(--common-transition);
    max-height: 50vh;
    /* display: block; */
    transform-origin: bottom right;
    transform: scale(1);
}

/* services page css */

.corfu-services-wrapper {
    padding-bottom: 2rem;
}

.corfu-services-wrapper .section-padding-bottom {
    padding-bottom: 2rem;
}

.corfu-services-wrapper .services_cards {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.corfu-services-wrapper .services_card {
    width: calc(25% - 1rem);
    flex-basis: calc(25% - 1rem);
    padding: 1rem;
    border-radius: 0.5rem;
    background: #F3F3F3;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.corfu-services-wrapper .services_card_text {
    width: 70%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.corfu-services-wrapper .services_card_img {
    width: 30%;
}

.corfu-services-wrapper .services_card_title {
    font-size: 1rem;
    font-weight: 500;
}

.corfu-services-wrapper .services_card_sub_title {
    margin-top: 0.7rem;
    font-size: 0.75rem;
}

.corfu-services-wrapper .card_detail_link {
    width: fit-content;
    border-radius: 2rem;
    background-color: rgb(255, 255, 255);
    padding: 10px 12px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease-in-out;
}

.corfu-services-wrapper .card_detail_link:hover {
    background: rgb(221, 221, 221);
}

.corfu-services-wrapper .corfu-services-section-2-text .section-title p {
    margin-bottom: 1rem;
}

.corfu-services-wrapper .corfu-services-section-2-subtitle p {
    margin-top: 2rem;
    margin-bottom: 2rem;
    line-height: 1.8;
    font-size: 1rem;
}

.corfu-services-wrapper .benifit_list ul {
    list-style: disc;
    padding-left: 1.1rem;
}

.corfu-services-wrapper .benifit_list ul li {
    line-height: 1.8;
    font-size: 1rem;
    margin-top: 0.5rem;
}

.corfu-services-wrapper .benifit_list ul li span {
    font-weight: 600;
}

.corfu-services-wrapper .corfu-services-section-2 {
    display: flex;
    flex-direction: row;
    gap: 2.5rem;
}

.corfu-services-wrapper .corfu-services-section-2>div {
    width: 50%;
    flex-basis: 50%;
}

.corfu-services-wrapper .corfu-services-section-2-img>img {
    height: 43rem;
    /* height: 100%; */
}

.corfu-services-wrapper .about_us_btn {
    margin-top: 2.5rem;
}

.corfu-services-wrapper .small_imgs {
    margin-top: 2rem;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.corfu-services-wrapper .small_imgs>img {
    width: 24%;
}

.corfu-services-wrapper .corfu-services-section-3-grid {
    display: grid;
    gap: 3rem;
    grid-template-columns: repeat(3, 1fr);
}

.corfu-services-wrapper .corfu-services-section-3-grid-card p.car_type {
    border-bottom: 0.14rem solid var(--secondary-color);
    padding-bottom: 0.125rem;
    font-size: 1.2rem;
    font-weight: 600;
    width: fit-content;
}

.corfu-services-wrapper .corfu-services-section-3-grid-card p {
    font-size: 1rem;
    text-align: left;
}

.corfu-services-wrapper .corfu-services-section-3-grid-card p>span {
    font-weight: 600;
}

.corfu-services-wrapper .corfu-services-section-4 .corfu-services-section-4-card:nth-child(odd) .section-4-card-text {
    order: 1;
}

.corfu-services-wrapper .corfu-services-section-4 .corfu-services-section-4-card:nth-child(even) .section-4-card-img {
    order: 2;
}

.corfu-services-wrapper .corfu-services-section-4 .corfu-services-section-4-card .section-4-card-img {
    /* width: 10rem; */
    aspect-ratio: 1;
    background-color: #ccc;
}

.corfu-services-wrapper .corfu-services-section-4-card {
    display: flex;
    gap: 2.5rem;
    align-items: center;
    padding: 4rem;
}

.corfu-services-wrapper .corfu-services-section-4-card>div {
    width: calc(50% - 1.25rem);
    flex-basis: calc(50% - 1.25rem);
}

.corfu-services-wrapper .section-4-card-title h3 {
    font-size: 2rem;
    font-weight: 600;
}

.corfu-services-wrapper .corfu-services-section-4-card .section-4-card-img {
    border-radius: 1rem;
    overflow: hidden;
}

.corfu-services-wrapper .corfu-services-section-4-card .section-4-list {
    list-style: disc;
    padding-left: 1.1rem;
}

.corfu-services-wrapper .corfu-services-section-4-card .section-4-list li {
    line-height: 1.8;
    font-size: 1rem;
}

.corfu-services-wrapper .corfu-services-section-4-card .section-4-list li>span {
    color: var(--secondary-color);
}

.corfu-services-wrapper .routes_grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(3, 1fr);
}

.corfu-services-wrapper .routes_grid>div {
    padding: 1rem;
    background-color: #F3F3F3;
    border-radius: 0.5rem;
}

.corfu-services-wrapper .routes_grid>div .route_title {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.corfu-services-wrapper .routes_grid>div .route_distance {
    margin-top: 0.8rem;
}

.corfu-services-wrapper .routes_grid>div .route_distance span {
    margin-left: 1rem;
}

.corfu-services-wrapper .testimonials_swiper {
    margin-bottom: 3rem;
    /* margin: 0 auto 3rem;
    width: 80%; */
}

.corfu-services-wrapper .testimonials_swiper_card {
    display: flex;
    gap: 1rem;
    flex-direction: column;
    align-items: flex-start;
    background-color: #F3F3F3;
    border-radius: 0.5rem;
    padding: 1rem;
}

.corfu-services-wrapper .testimonials_swiper_card .reviewer_data .reviewer_profile_img {
    border-radius: 50%;
    width: 70px;
    aspect-ratio: 1;
    background-color: #ccc;
    margin-right: 0.7rem;
}


.corfu-services-wrapper .testimonials_swiper_card .reviewer_data .reviewer_profile_title {
    text-align: left;
}

.corfu-services-wrapper .testimonials_swiper_card .testimonials_content {
    font-size: 1.1rem;
}

.corfu-services-wrapper .testimonials_swiper_card p {
    font-size: 1rem;
}

.corfu-services-wrapper .testimonials_swiper_card .google_icon_rating_text img {
    width: 1rem;
}

.corfu-services-wrapper .testimonials_swiper_card .five_star {
    display: flex;
    flex-direction: row;
    gap: 0.2rem;
    align-items: center;
}

.corfu-services-wrapper .testimonials_swiper_card .five_star img {
    width: 1rem;
}

.corfu-services-wrapper .testimonials_swiper_card .reviewer_data .reviewer_profile_title p:nth-child(1) {
    font-size: 1.2rem;
    font-weight: 600;
    font-family: var(--bold-font-family);
    /* margin-bottom: 0.5rem; */
}


/* .corfu-services-wrapper.corfu-faqs-wrapper .faq-container-list {
    width: 100%;
} */

.swiper-pagination.fleets_swiper_pagination,
.swiper-pagination.testimonials_swiper_pagination {
    left: 50%;
    transform: translateX(-50%);
}

.swiper-pagination.testimonials_swiper_pagination .swiper-pagination-bullet,
.swiper-pagination.fleets_swiper_pagination .swiper-pagination-bullet {
    margin: 0 0.15rem;
}

.swiper-pagination.testimonials_swiper_pagination .swiper-pagination-bullet.swiper-pagination-bullet-active,
.swiper-pagination.fleets_swiper_pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: var(--secondary-color);
}

/* services page css */
.form-title-label {
    margin-bottom: 1rem;
}

.corfu-contact-wrapper {
    width: 80%;
    margin: 0 auto;
    padding-bottom: 3rem;
    display: flex;
    flex-direction: row;
    gap: 3rem;
    margin-top: 3rem;
}

.corfu-contact-wrapper>div {
    width: calc(50% - 1.5rem);
    flex-basis: calc(50% - 1.5rem);
}

.corfu-contact-wrapper .contact_wrapper_img {
    width: 100%;
    aspect-ratio: 1;
    background-color: #ccc;
    border-radius: 1rem;
    height: max-content;
}

.mobie_navigation .accordian-title {
    padding: 1rem;
}

.mobie_navigation .accordion_click {
    cursor: pointer;
}

.mobie_navigation .accordion_click.accordion_click_relative.active .minusimg,
.mobie_navigation .accordion_click.accordion_click_relative .plusimg {
    display: block;
}

.mobie_navigation .accordion_click.accordion_click_relative .minusimg,
.mobie_navigation .accordion_click.accordion_click_relative.active .plusimg {
    display: none;
}

.mobie_navigation .accordian-icon img {
    height: 1.5rem;
    width: 1.5rem;
}

.mobie_navigation .accordion-dec-padding {
    padding-top: 1.5rem;
    /* padding-left: 1.5rem; */
}

.mobie_navigation .accordion_click_relative .icon_rotate {
    transition: var(--common-transition);
}

.mobie_navigation .accordion_click_relative.active .icon_rotate {
    transform: rotate(180deg);
}

.web_navigation span.icon_rotate {
    transition: var(--common-transition);
}

.web_navigation span.icon_rotate.active {
    transform: rotate(180deg);
}

.form-card-input-flex {
    display: flex;
    gap: 1rem;
    flex-direction: column;
}


/* Country Code Style */

.conatct_number_input {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    padding: 1.5rem;
}

.display_country_code {
    width: 35px;
}

.country_code_data {
    display: flex;
    align-items: center;
    cursor: pointer;
    gap: 5px;
    font-size: var(--moblink-size);
}

.country_code_list_data ul {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.country_code_list_data ul li {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    transition: all ease 0.2s;
}

.country_code_list_data ul li:hover {
    background-color: #dddddd;
}

.country_code_list_data li>div {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.country_code_list_data {
    position: absolute;
    top: 100%;
    left: 0;
    height: 40vh;
    overflow-y: scroll;
    width: 300px;
    z-index: 99999;
    padding-top: 1rem;
    padding-bottom: 1rem;
    background-color: #ffffff;
    border: 1px solid #999999;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.search_c-code {
    padding: 0 1rem;
    padding-bottom: .5rem;
}

.search_c-code input {
    position: relative;
    border-radius: var(--border-radius);
    border: 1px solid #999999;
    width: 100%;
    padding: 0.7rem;
}

.country_code_overlay {
    position: absolute;
    height: 100%;
    width: 100%;
    display: none;
}

.country_code_overlay.code_overlay {
    display: block;
    /* z-index: 999; */
}

.country_code_list_data {
    display: none;
}

.country_code_list_data.active {
    display: block;
}

.country_code_list_data img {
    width: 25px !important;
}

.contact_lable ::-webkit-scrollbar {
    width: 8px !important;
    cursor: pointer;
}

.contact_lable ::-webkit-scrollbar-track {
    background: #ffffff !important;
}

.contact_lable ::-webkit-scrollbar-thumb {
    background: #000000 !important;
}

.contact_lable ::-webkit-scrollbar-thumb:hover {
    background: #000000 !important;
}

.contact_country_flag {
    width: 25px;
}

.countryFlex {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
}

.country-control-corfu {
    flex-basis: 25%;
    padding: 1rem 0;
}

.country-control-input {
    width: 100%;
}


.country_code_data .section-text p,
.country_code_data .section-text span,
.country_code_data .section-text p span {
    font-size: 1rem !important;
    line-height: 0.3 !Important;
}

.country-control-input .form-control-corfu {
    padding-left: 0;
    padding-top: 1px;
    padding-bottom: 1px;
}

.country-control-input .form-control-corfu:focus,
.country-control-input .form-control-corfu:focus-visible {
    border: 1px solid transparent;
    background-color: transparent;
    outline: none;
}

/* .country-control-input:focus,
.country-control-input:focus-visible {
    border: 1px solid var(--primary-color);
    background-color: transparent;
    outline: none;
} */