/* Imports */
/* Icons */
@import url("https://site-assets.fontawesome.com/releases/v6.0.0/css/all.css");
/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

:root {
	--white: #ffffff;
	--black: #000;
	--primary: #0073f0;
	--text-color: #1f1f1f;
}

::selection {
	background-color: var(--white);
	color: var(--black);
}

/* General Styling */
* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
	text-decoration: none !important;
	list-style-type: none;
	font-family: "Inter", sans-serif;
	overflow-wrap: break-word;
}

html {
	scroll-behavior: smooth;
}


body {
	overflow-x: clip;
	color: var(--text-color);
	background: var(--white);
}

a,
button {
	-webkit-transition: all 0.5s ease;
	transition: all 0.5s ease;
	display: inline-block;
}

ul,
ol,
dl,
address,
label,
figure {
	margin-bottom: 0;
}

p {
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.75;
}

section {
	position: relative;
	overflow: clip;
}

.padd-y {
	padding: 5rem 0;
}


/* LENIS */
html.lenis,
html.lenis body {
	height: auto;
}

.lenis.lenis-smooth {
	scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
	overscroll-behavior: contain;
}

.lenis.lenis-stopped {
	overflow: hidden;
}

.lenis.lenis-smooth iframe {
	pointer-events: none;
}

/* PRELOADER */

/* THEMEBTN */
.themeBtn {
	width: fit-content;
	display: block;
	background-color: var(--black);
	color: var(--white);
	font-size: 1rem;
	font-weight: 500;
	padding: 0.75em 2.25em;
	border-radius: 3.125rem;
}

.themeBtn_borderless {
	background-color: transparent;
	color: var(--black);
	border: 1px solid var(--black);
}

.themeBtn_borderless:hover {
	background-color: var(--black) !important;
	color: var(--white);
}

.themeBtn:hover {
	background: var(--primary);
	color: var(--white);
}

/* HEADINGS */
.sectionHeading {
	font-size: 3.75rem;
	font-weight: 600;
	text-transform: capitalize;
}

.heading {
	font-size: 2.5rem;
	font-weight: 700;
}

.subHeading {
	font-size: 1.75rem;
	font-weight: 600;
	text-transform: uppercase;
}

/* HEADER */
.header {
	width: 100%;
	position: sticky;
	top: 0;
	left: 0;
	z-index: 999;
	padding: 1em 0;
	transition: 0.3s ease-in-out;
	background: var(--white);
	box-shadow: 0 0 #0000, 0 0 #0000, 0 1px 0 0 #f0f0f0;
}

.header-main__logo {
	padding: 0;
	margin: 0;
	width: 180px;
}

.header-main__logo h3 {
	color: var(--black);
	font-weight: 800;
	font-size: 3.125rem;
}

.header-main__logo>img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.header-main__nav li a {
	color: var(--black);
	font-size: 1rem;
	font-weight: 500;
	padding: 0.35rem 0.25rem;
	margin: 0 1rem;
	text-transform: capitalize;
	position: relative;
}

.header-main__nav li a::after {
	content: "";
	width: 0;
	height: 2px;
	background-color: var(--black);
	position: absolute;
	right: 0;
	bottom: 0;
	transition: all 300ms ease-in-out;
}

.header-main__nav li a:hover::after,
.header-main__nav li a.active::after {
	width: 100%;
	right: auto;
	left: 0;
}


/* main_banner */
.main_banner {
	background: #d7f0ff;
}

.main_banner_content h1 {
	font-size: 3rem;
	font-weight: 700;
	margin: 0 0 1rem;
}

.main_banner_content>p {
	font-size: 1.25rem;
	margin-bottom: 2rem;
}

.main_banner_content p {
	line-height: 1.5;
}

.main_banner_form_wrap {
	width: 100%;
	max-width: 508px;
}

.main_banner_form {
	position: relative;
	display: flex;
	align-items: stretch;
}

.main_banner_form input {
	width: 100%;
	padding: 1.25em 1.25em;
	border: 2px solid transparent;
	border-radius: 10px;
	font-size: 1rem;
	font-weight: 500;
	display: none;
}

.main_banner_form .themeBtn {
	position: absolute;
	right: .7em;
	top: 50%;
	transform: translateY(-50%);
	border: none;
	outline: none;
	padding: 0.75em 1.5em;
}

.identifierinput_explainerbtn {
	position: absolute;
	top: 50%;
	right: 9.5rem;
	transform: translateY(-50%);
	color: #d6d6d6;
}

.dont_have_vin .themeBtn {
	font-size: .875rem;
	padding: .5em 0.875em;
}

.main_banner_form input.active {
	display: block;
}

/* Loader Styles */
.loading-spinner {
	width: 1.2em;
	height: 1.2em;
	border: 2px solid #fff;
	border-top: 2px solid transparent;
	border-radius: 50%;
	animation: spin 0.8s linear infinite;
	display: inline-block;
	vertical-align: middle;
	margin-left: 8px;
}

@keyframes spin {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

.dont_have_vin .themeBtn {
	font-size: .875rem;
	padding: .5em 0.875em;
}

.we_check_items {
	display: flex;
	align-items: center;
	gap: 1rem;
	margin: 1rem 0 2rem;
}

.we_check_items p {
	color: #4d4d4d;
	font-size: .875rem;
	font-weight: 600;
	line-height: normal;
}

.main_banner_info {
	width: 100%;
	max-width: 600px;
}

.main_banner_info p,
.main_banner_price p {
	font-size: .875rem;
	font-weight: 600;
	color: var(--text-color);
	margin: 0 0 1rem;
}

.main_banner_info ul {
	display: flex;
	flex-flow: row wrap;
	gap: .75rem 1.25rem;
}

.main_banner_info li i {
	color: var(--primary);
	margin-right: .5rem;
}

.main_banner_info li {
	font-size: .875rem;
	color: var(--text-color);
}

.main_banner_price {
	margin: 1rem 0 0;
}

.main_banner_price p {
	margin: 0 0 .5rem;
}

/* what_we */
.what_we_title p {
	font-size: 1.25rem;
}

.what_we_tab_nav {
	gap: 1rem;
	justify-content: center;
}

.what_we_tab_nav .nav-link {
	padding: .375em 1em;
	border: none;
	outline: 1px solid #f0f0f0;
	background: var(--white);
	font-size: .875rem;
	border-radius: 3.125rem;
}

.what_we_tab_nav .nav-link:hover,
.what_we_tab_nav .nav-link.active {
	background: var(--primary);
	color: var(--white);
}

.what_we_tab_content .tab-pane {
	padding: 3rem 4rem;
	background: #eff9ff;
	border-radius: 12px;
}

.what_we_tab_inner_content h4 {
	font-size: 2rem;
	font-weight: 700;
}

.what_we_tab_inner_content p {
	margin: 0;
}

/* why-we */
.why-we {
	background: #eff9ff;
}

.why-we_item span {
	display: inline-block;
	vertical-align: top;
	height: 240px;
	margin-bottom: 1.5rem;
}


.why-we_item svg,
.turning_data_item_icon svg,
.hear_people_card_icon svg,
.cta_item li span svg {
	width: 100%;
	height: 100%;
	display: block;
}

.why-we_item h4 {

	font-size: 1.5rem;

	font-weight: 700;
}

.why-we_item p {
	margin: 0;
}

/* hear_people */
.hear_people_card {
	position: relative;
	padding: 0.75rem 1.5rem 1.5rem;
	background: var(--white);
	border-radius: 12px;
	border: 1px solid #e6e6e6;
	height: 100%;
}

.hear_people_card_icon {
	position: absolute;
	top: -24px;
	width: 48px;
	height: 48px;
	display: inline-block;
	vertical-align: top;
}

.hear_people_card_content {
	padding: 32px 0 0;
	margin: 0 0 24px;
}

.hear_people_card_content p {
	line-height: 1.5rem;
	margin: 0;
}

.hear_people_card_bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin: 1rem 0 0;
}

.hear_people_card_wrap {
	display: flex;
	align-items: center;
	gap: .75rem;
}

.hear_people_card_user {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: #aadcff;
	display: grid;
	place-items: center;
}

.hear_people_card_user_title p {
	line-height: normal;
	margin: 0;
	font-weight: 600;
}

.hear_people_card_verified {
	display: inline-flex;
	align-items: center;
	border-radius: 4px;
	padding: 4px 8px;
	background: #8de398;
}

.hear_people_card_verified svg {
	margin: 0 4px 0 0;
	width: 1rem;
	height: 1rem;
}

.hear_people_card_verified p {
	font-size: .75rem;
	font-weight: 700;
	margin: 0;
}

/* let_data */
.let_data {
	padding-top: 0 !important;
}

.let_data_wrapper {
	padding: 3rem 6.5rem 2.5rem;
	background: var(--primary);
	border-radius: 12px;
}

.let_data_content * {
	color: var(--white);
}

.let_data .dont_have_vin .themeBtn_borderless {
	border-color: var(--white);
	color: var(--white);
}

.let_data .dont_have_vin .themeBtn_borderless:hover {
	background: var(--white) !important;
	color: var(--black);
}

.let_data_content .main_banner_info {
	max-width: 100%;
}

.let_data_content .main_banner_info ul {
	justify-content: center;
}

.let_data_content .main_banner_info li,
.let_data_content .main_banner_info li i {
	color: var(--white);
}

/* leading_automotive */
.leading_automotive {
	padding: 7.5rem 0;
	background: var(--white) url("../images/map.webp") no-repeat center / cover;
}

.country_flag_item:not(:last-child) {
	margin-bottom: 1.5rem;
}

.country_flag_item span {
	display: block;
	font-size: .75rem;
	padding-left: .5rem;
	margin: 0 0 .5rem;
	font-weight: 500;
}

.country_flag_item_wrapper {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
}

.country_flag_item_inner {
	outline: 1px solid transparent;
	color: var(--black);
	padding: 4px 6px;
	background: var(--white);
	border-radius: 3.125rem;
	display: flex;
	align-items: center;
	gap: 4px;
}

.country_flag_item_inner img {
	width: 16px;
	aspect-ratio: 1;
	object-fit: cover;
	border-radius: 50%;
}

.country_flag_item_inner p {
	font-size: .75rem;
	font-weight: 600;
	line-height: 1rem;
	margin: 0;
}

/* turning_data */
.turning_data_item_icon {
	display: inline-block;
	vertical-align: top;
	width: 100px;
	height: 100px;
	margin: 0 0 1.25rem;
}

.turning_data_item_content h4 {
	margin: 0 0 1rem;
}

.turning_data_item_content p {
	font-size: 1.125rem;
	margin: 0;
}

/* cta_section */
.cta_wrapper {
	padding: 6rem 4rem;
	background: #d7f0ff;
	border-radius: 16px;
}

.cta_team_list {
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 0 1rem;
}

.cta_team_list li:not(:last-child) {
	margin-right: -12px;
}

.cta_team_list li img {
	width: 56px;
	aspect-ratio: 1;
	border: 2px solid var(--white);
	border-radius: 50%;
}

.cta_content .heading {
	margin: 0 0 1rem;
}

.cta_content p {
	font-size: 1.125rem;
	margin: 0;
}

.cta_item {
	display: flex;
	align-items: center;
	justify-content: space-evenly;
	margin: 3rem 0 0;
}

.cta_item li span {
	display: inline-block;
	vertical-align: top;
	width: 64px;
	height: 64px;
	margin: 0 0 .25rem;
}

.cta_item li h4 {
	font-size: 2rem;
	font-weight: 700;
}

.cta_item li p {
	font-size: 1rem;
}

/* footer */
.footer {
	padding: 3rem 0 0;
	background: var(--black);
}

.footer_nav {
	display: flex;
	align-items: center;
	justify-content: flex-start;
    flex-wrap: wrap;
	gap: 1.5rem;
}

.footer_nav li a {
	font-size: .875rem;
	font-weight: 400;
	color: var(--white);
}

.footer_copyright {
	margin: 3rem 0 0;
	padding: 1em 0;
	border-top: 1px solid var(--text-color);
	text-align: center;
}

.footer_copyright p {
	font-size: .75rem;
	color: #858585;
	margin: 0;
}

/* inner_banner */

.inner_banner {
	background: #d7f0ff;
	padding: 5rem 0;
}

/* contact_section */
.contact_form_input label,
.contact_form_checkbox label {
	font-size: .875rem;
	line-height: 1.25rem;
	margin-bottom: .5rem;
}

.contact_form_input :is(input, select, textarea) {
	display: block;
	width: 100%;
	font-weight: 400;
	font-size: 1rem;
	line-height: 1.5;
	color: var(--text-color);
	padding: 12px 16px;
	border: none;
	border-radius: 10px;
	background: var(--white);
	box-shadow: inset 0 0 0 1px #858585;
	margin-bottom: calc(8px*2);
}

.contact_form_checkbox {
	margin-bottom: 2rem;
}

.footer p {
	color: var(--white);
}

.about_us .row:not(:last-child) {
	margin-bottom: 3rem;
}

/* terms-section */
.terms-section {
	padding: 0 0 4rem;
}

.terms-section .breadcrumb {
	background: transparent;
	gap: 0.625rem;
	padding: 2.5rem 0;
	margin: 0;
}

.terms-section .breadcrumb li,
.terms-section .breadcrumb li a {
	font-size: 14px;
}

.terms-section .breadcrumb li a {
	color: var(--primary);
}

.terms-section .breadcrumb li {
	color: var(--grey);
}

.terms-content h1 {
	font-size: 2.25rem;
	font-weight: 700;
	color: var(--black);
	margin-bottom: 2.5rem;
}

.terms-content h3 {
	font-size: 1.75rem;
	font-weight: 700;
	color: var(--black);
	margin: 1.125rem 0;
}

.terms-content p {
	font-size: 15px;
	color: var(--black);
	line-height: 1.6;
	margin: 0 0 1.125rem;
	font-weight: 400;
}

.terms-content p a {
	color: var(--primary);
	text-decoration: underline !important;
}

.terms-content ul li {
	font-size: 15px;
	line-height: 1.6;
	margin-bottom: 0.75rem;
	padding-left: 2rem;
	position: relative;
	color: var(--black);
	font-weight: 400;
}

.terms-content ul li::before {
	background-color: var(--primary);
	border-radius: 50%;
	content: "";
	height: 8px;
	left: 8px;
	position: absolute;
	top: 8px;
	width: 8px;
}

.hf-message.hf-message-success {
    margin: 1em 0;
    font-size: 12px;
    background: var(--primary);
    color: var(--white);
    padding: 1em;
    border-radius: .5em;
    text-align: center;
}