/* ======================================================================================================= */
@font-face {
	font-family: 'Proxima Nova';
	src: url('../assets/fonts/proximanova_regular.ttf') format('truetype');
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Proxima Nova';
	src: url('../assets/fonts/proximanova_bold.otf') format('opentype');
	font-weight: 700;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Proxima Nova';
	src: url('../assets/fonts/proximanova_boldit.otf') format('opentype');
	font-weight: 700;
	font-style: italic;
	font-display: swap;
}

@font-face {
	font-family: 'Proxima Nova';
	src: url('../assets/fonts/proximanova_black.otf') format('opentype');
	font-weight: 900;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Proxima Nova';
	src: url('../assets/fonts/proximanova_blackit.otf') format('opentype');
	font-weight: 900;
	font-style: italic;
	font-display: swap;
}

:root {
	--font-primary: 'Proxima Nova', Arial, sans-serif;
	--font-size-base: 18px;
	--font-size-paragraph: 20px;
	--color-background: #FFFFFF;
	--color-text: #0E0E11;
	--color-accent: #1894FF;
	--color-hero-overlay: rgba(0, 0, 0, 0.45);
	--color-header-bg: transparent;
	--container-width: 1680px;
}

.container {
	width: 100%;
	max-width: var(--container-width);
	margin: 0 auto;
}

/* ============================================
CSS RESET & BASE STYLES
============================================ */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: var(--font-primary);
	font-size: var(--font-size-base);
	line-height: 1.6;
	color: var(--color-text);
	background-color: var(--color-background);
	overflow-x: hidden;
}

p {
	font-size: var(--font-size-paragraph);
	font-weight: 400;
}

a {
	color: inherit;
}

/* ============================================
HEADER & NAVIGATION
============================================ */
header {
	position: absolute;
	top: -100%;
	left: 0;
	width: 100%;
	z-index: 1000;
	padding: 10px 0;
}

header.head_show {
	top: -0%;
	transition: all 1s;
}

.header-inner {
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: 32px;
}

.header-inner .logo {
	justify-self: start;
}

.header-inner nav {
	justify-self: center;
}

.header-inner .btn-primary {
	justify-self: end;
	margin-left: 0;
}

.logo {
	display: inline-flex;
	align-items: center;
	text-decoration: none;
	color: #fff;
}

.logo img {
	display: block;
	height: auto;
	width: auto;
}

/* nav {
display: flex;
align-items: center;
justify-content: center;
gap: 32px;
} */

nav ul {
	display: flex;
	list-style: none;
	gap: 30px;
}

nav ul li a {
	color: #E6E6E6;
	text-decoration: none;
	font-weight: 400;
	transition: opacity 0.3s ease;
}

nav ul li a:hover {
	opacity: 0.8;
}

.btn-primary {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background-color: #ffffff;
	color: var(--color-text);
	padding: 13px 20px;
	border: 1px solid transparent;
	border-radius: 4px;
	text-decoration: none;
	font-weight: 400;
	letter-spacing: 0.04em;
	transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
	white-space: nowrap;
	position: relative;
	overflow: hidden;
}

.btn-primary:before {
	content: "";
	background: #1894FF;
	width: 350px;
	height: 230px;
	position: absolute;
	top: 100%;
	border-radius: 100%;
	transition: all 0.5s;
	z-index: -9;
}

.btn-primary:hover:before {
	top: -30%;
}

.header-inner .btn-primary {
	margin-left: auto;
}


/* .btn-primary:hover {
background-color: #1894FF;
color: #ffffff;
border-color: #1894FF;
} */

/* .header-inner .btn-primary {
margin-left: auto;
} */

/* Mobile Menu Toggle */
.menu-toggle {
	display: none;
	background: none;
	border: none;
	color: #fff;
	font-size: 24px;
	cursor: pointer;
}

/* ============================================
HERO SECTION
============================================ */
.hero {
	position: relative;
	width: 100%;
	min-height: 100vh;
	display: flex;
	align-items: end;
	justify-content: center;
	background-color: #000;
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
	text-align: center;
	color: #fff;
	padding: 0;
}

/* Overlay for better text readability */
.hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: var(--color-hero-overlay);
	z-index: 2;
}

.hero-content {
	position: relative;
	z-index: 2;
	padding: 88px;
}

.hero-title {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-wrap: nowrap;
	gap: 15px;
	font-size: 84px;
	font-style: italic;
	font-weight: 700;
	margin: 0 auto 32px;
	line-height: normal;
	text-transform: uppercase;
	letter-spacing: -1.68px;
	white-space: nowrap;
	text-align: center;
	padding-right: 10px;
}

.hero-word {
	display: inline-block;
	white-space: nowrap;
}

.hero-title-logo {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0px 16px;
}

.hero-title-logo img {
	width: 176px;
	height: auto;
}

.hero .tagline {
	font-size: 24px;
	font-weight: 400;
	margin-bottom: 40px;
	line-height: normal;
	width: 100%;
	max-width: 900px;
	margin: 0 auto;
	text-align: center;
}

.hero .btn-container {
	margin-top: 32px;
}

.hero .btn-primary {
	background-color: transparent;
	color: #ffffff;
	border: 1px solid rgba(255, 255, 255, 0.85);
	padding: 14.5px 40px;
	line-height: normal;
	font-weight: 400 !important;
}

/* .hero .btn-primary:hover {
background-color: #1894FF;
border-color: #1894FF;
color: #ffffff;
} */

/* ============================================
HEARTBEAT SECTION
============================================ */
.heartbeat-section {
	background-color: #fff;
	padding: 100px 0;
	position: relative;
	overflow: hidden;
}

/* Large faded background text */
.faded-bg-text {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 0;
	pointer-events: none;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0px;
	text-transform: uppercase;
	user-select: none;
	width: 100%;
}

.faded-line {
	font-family: var(--font-primary);
	font-size: 334px;
	font-style: italic;
	font-weight: 900;
	letter-spacing: -6.68px;
	text-transform: uppercase;
	color: rgba(14, 14, 17, 0.07);
	line-height: 79%;
	opacity: 0.4;
}

.faded-line:first-child {
	display: inline-block;
}

.faded-line:last-child {
	display: inline-block;
}

.heartbeat-content {
	position: relative;
	z-index: 1;
	margin: 0 auto;
	text-align: center;
	max-width: 1320px;
	margin-top: 30px;
}

.heartbeat-content h2 {
	font-size: 70px;
	font-style: italic;
	font-weight: 900;
	margin-bottom: 16px;
	color: var(--color-text);
	text-transform: uppercase;
	line-height: 90%;
	max-width: 750px;
	margin: 0 auto 41px;
}

.heartbeat-content .subtitle {
	font-size: 24px;
	font-style: italic;
	font-weight: 700;
	margin-bottom: 32px;
	color: var(--color-text);
	letter-spacing: 0.08em;
}

.year {
	color: var(--color-accent);
}

.heartbeat-content p {
	font-size: 24px;
	line-height: 116.667%;
	font-style: normal;
	font-weight: 400;
	color: rgba(14, 14, 17, 0.85);
	max-width: 1320px;
	margin: 0 auto;
}

/* ============================================
TRUSTED BRANDS SECTION
============================================ */
.brands-section {
	background-color: #1A1E26;
	padding: 100px 0;
	overflow: hidden;
}

.brands-header {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	margin-bottom: 100px;
	flex-wrap: wrap;
	gap: 32px;
}

.brands-header h3 {
	font-size: 54px;
	font-style: italic;
	font-weight: 700;
	color: #fff;
	line-height: normal;
	text-transform: uppercase;
	flex: 1;
	/* min-width: 280px; */
}

.brands-header .brands-description {
	flex: 1;
	max-width: 630px;
	text-align: right;
	color: #BFBFBF;
	font-size: 22px;
	line-height: normal;
	font-weight: 400;
	/* align-self: center; */
}

.brands-slider {
	position: relative;
	width: 100%;
	padding: 0px;
}

.brands-slider .slick-list {
	overflow: visible !important;
}

.brands-slider .slick-track {
	display: flex;
	align-items: center;
	column-gap: 40px;
}

.brands-slider .slick-slide {
	overflow: visible !important;
	padding: 50px 28px;
}

.brands-slider .slick-slide>div {
	display: flex;
	justify-content: center;
	position: relative;
	height: 100%;
}

.brands-slider .slick-arrow,
.brands-slider .slick-dots {
	display: none !important;
}

.brand-logo {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 24px 40px;
	width: 100%;
	min-height: 130px;
	height: 100%;
	isolation: isolate;
	overflow: visible;
}

.brand-card-svg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	z-index: 0;
	display: block !important;
	visibility: visible !important;
	opacity: 1 !important;
}

.brand-logo .brand-card-svg {
	width: 100%;
	height: 100%;
}

.brand-logo img {
	position: relative;
	z-index: 1;
	max-height: 72px;
	width: auto;
	/* filter: brightness(0) invert(1); */
	opacity: 0.92;
	margin: 0 auto;
}

/* .brands-section .brand-logo img {
filter: brightness(0) invert(1);
transition: filter 0.5s ease;
} */
.brands-section .brand-logo img
{
	transition: filter 0.5s ease;
	filter: brightness(0) invert(1) sepia(1) hue-rotate(200deg) saturate(500%);
}
.brands-section .brand-logo:hover img {
	filter: none;
}

/* ============================================
OUR BRANDS SECTION
============================================ */

.slide_info {
	color: #DDDDDE;
	text-align: center;
	line-height: normal;
	font-size: 18px;
}

.our-brands-section {
	background-color: #fff;
	padding: 120px 0;
}

.our-brands-header {
	text-align: center;
	margin-bottom: 64px;
	max-width: 1320px;
	margin-left: auto;
	margin-right: auto;
}

.our-brands-header h3 {
	font-size: 54px;
	font-style: italic;
	font-weight: 700;
	color: var(--color-text);
	text-transform: uppercase;
	margin-bottom: 16px;
	line-height: normal;
}

.our-brands-description {
	font-size: 22px;
	line-height: normal;
	font-weight: 400;
	color: #595959;
	max-width: 920px;
	margin: 0 auto;
}

.our-brands-slider {
	position: relative;
	padding-bottom: 60px;
}

.our-brands-slider .slick-track {
	display: flex;
	align-items: stretch;
	transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.our-brands-slider .slick-slide {
	padding: 0 16px;
	height: auto;
	transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.8s ease;
	opacity: 0.7;
}

.our-brands-slider .slick-slide.slick-active {
	opacity: 1;
}

.our-brands-slider .slick-slide>div {
	height: 100%;
	transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.brand-card {
	height: 100%;
	position: relative;
	transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.brand-card-image {
	position: relative;
	width: 100%;
	height: 500px;
	overflow: hidden;
	border-radius: 8px;
	transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.brand-card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.brand-logo-overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 50%, transparent 100%);
	padding: 10px 10px 20px 10px;
	display: flex;
	align-items: flex-end;
	justify-content: center;
}

.brand-logo-overlay img {
	max-width: 200px;
	height: auto;
	filter: none;
	opacity: 1;
}

/* Slick Arrows for Our Brands */
.our-brands-slider .slick-arrow,
.testimonials-container .slick-arrow {
	position: absolute;
	bottom: 0;
	width: 48px;
	height: 48px;
	background-color: #000;
	border: none;
	cursor: pointer;
	z-index: 10;
	display: flex !important;
	align-items: center;
	justify-content: center;
	transition: background-color 0.3s ease;
	border-radius: 4px;
}

.our-brands-slider .slick-arrow:hover {
	background-color: #1894FF;
}

.our-brands-slider .slick-arrow::before {
	content: '';
	width: 0;
	height: 0;
	border-style: solid;
}

.our-brands-slider .slick-prev {
	right: 56px;
}

.our-brands-slider .slick-prev::before {
	border-width: 8px 12px 8px 0;
	border-color: transparent #fff transparent transparent;
	margin-left: -2px;
}

.our-brands-slider .slick-next {
	right: 0;
}

.our-brands-slider .slick-next::before {
	border-width: 8px 0 8px 12px;
	border-color: transparent transparent transparent #fff;
	margin-right: -2px;
}

/* Slick Scrollbar */
.our-brands-slider .slick-dots {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 120px;
	display: flex !important;
	align-items: center;
	height: 4px;
	background-color: #E0E0E0;
	border-radius: 2px;
	list-style: none;
	margin: 0;
	padding: 0;
	overflow: hidden;
}

.our-brands-slider .slick-dots::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	background-color: #000;
	border-radius: 2px;
	width: var(--scrollbar-progress, 0%);
	transition: width 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	z-index: 1;
}

.our-brands-slider .slick-dots li {
	flex: 1;
	height: 100%;
	margin: 0;
	padding: 0;
	position: relative;
	z-index: 2;
}

.our-brands-slider .slick-dots li button {
	width: 100%;
	height: 100%;
	padding: 0;
	border: none;
	background: transparent;
	font-size: 0;
	cursor: pointer;
	position: relative;
	z-index: 2;
}

.brands-header {
	align-items: flex-start;
	gap: 16px;
}

.brands-header h2 {
	font-size: 36px;
}

.brands-description {
	text-align: left;
	font-size: 18px;
	line-height: 30px;
}

.brands-slider .slick-slide {
	padding: 60px;
}

.brand-logo {
	padding: 16px 24px;
}

.brand-logo img {
	max-height: 56px;
}

.btn-primary {
	padding: 13px 20px;
	font-size: 22px;
}

.our-brands-section {
	padding: 80px 0;
}

.our-brands-header h2 {
	font-size: 36px;
}

/* .our-brands-description {
font-size: 22px;
line-height: 28px;
} */

.brand-card-image {
	height: 400px;
}

.our-brands-slider .slick-dots {
	right: 100px;
}

/* Focus styles for keyboard navigation */
a:focus,
button:focus {
	outline: 2px solid #0066cc;
	outline-offset: 2px;
}

/* Skip to main content link for screen readers */
.skip-link {
	position: absolute;
	top: -40px;
	left: 0;
	background: #000;
	color: #fff;
	padding: 8px;
	text-decoration: none;
	z-index: 10000;
}

.skip-link:focus {
	top: 0;
}


/*  */
.flex-column {
	flex-direction: column;
	align-items: center;
}

.offwhite-text {
	color: #fff;
}

/* ============================================
NUMBERS / PROVEN BY THE NUMBERS SECTION
============================================ */
.numbers-section {
	background-color: #1A1E26;
	color: #fff;
	padding: 120px 0;
	position: relative;
	overflow: hidden;
}

.numbers-inner {
	display: flex;
	justify-content: space-between;
	gap: 141px;
	/* align-items: center; */
	/* padding: 48px 32px 32px; */
}

.numbers-eyebrow {
	font-size: 54px;
	font-weight: 700;
	font-style: italic;
	text-transform: uppercase;
	letter-spacing: -1.08px;
	line-height: normal;
	color: #fff;
	max-width: 570px;
}

.numbers-center .numbers-intro {
	color: #E8E9E9;
	max-width: 778px;
	font-size: 20px;
	line-height: 130%;
	/* margin-bottom: 28px; */
}

.stats-row {
	display: flex;
	gap: 200px;
	align-items: flex-end;
	flex-wrap: wrap;
	justify-content: center;
	padding-top: 100px;
}

.stat {
	text-align: left;
}

.stat-number,
.pr_symbol {
	font-size: 110px;
	font-weight: 900;
	font-style: italic;
	color: #fff;
	line-height: normal;
	letter-spacing: -2.2px;
}

.flex_div {
	display: flex;
	align-items: center;
}

.stat-label {
	font-size: 20px;
	color: #E8E9E9;
	text-transform: none;
}


/* Blue ribbon (marquee) */
.blue-ribbon {
	background-color: #1894FF;
	overflow: hidden;
}

.ribbon-scroller {
	display: flex;
	gap: 50px;
	align-items: center;
	padding: 14px 32px;
	white-space: nowrap;
	color: #fff;
	font-weight: 700;
	text-transform: uppercase;
	/* 	animation: ribbon-scroll 18s linear infinite; */
}

.ribbon-scroller span {
	flex: 0 0 auto;
}

@keyframes ribbon-scroll {
	0% {
		transform: translateX(0);
	}

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

/* ============================================
TESTIMONIALS SECTION
============================================ */
.testimonials-section {
	background-color: #FCFCFC;
	padding: 120px 0;
	position: relative;
	overflow: hidden;
}

.testimonials-container {
	position: relative;
	margin: 0 auto;
}

.testimonial-card {
	padding: 0px;
	border-radius: 8px;
	position: relative;
}

.testimonial-header {
	display: flex;
	align-items: flex-start;
	gap: 32px;
	justify-content: space-between;
}

.brand-logo-testimonial {
	flex-shrink: 0;
	width: 350px;
	height: 80px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.brand-logo-testimonial img {
	width: 100%;
	height: auto;
	object-fit: contain;
}

.author-info h5 {
	text-align: right;
}

.author-name {
	font-size: 30px;
	line-height: 86.667%;
	font-weight: 700;
	color: var(--color-text);
	margin-bottom: 10px;
}

.author-title {
	font-size: 20px;
	line-height: 130%;
	color: #1A1E26;
	font-weight: 400;
}


.testimonial-quote {
	margin: 0 0 40px 0;
	padding: 0;
}

.testimonial-quote h4 {
	font-size: 38px;
	font-weight: 700;
	font-style: italic;
	line-height: 147.368%;
	color: var(--color-text);
	letter-spacing: -0.76px;
	margin: 0;
	text-transform: uppercase;
	max-width: 1175px;
}

.testimonial-footer {
	display: flex;
	align-items: center;
	gap: 16px;
	justify-content: flex-end;
}

.quote-icon {
	width: 48px;
	height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background-color: #1894FF;
	flex-shrink: 0;
}

.quote-icon svg {
	width: 28px;
	height: 28px;
}

.author-avatar {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	overflow: hidden;
	flex-shrink: 0;
}

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

.testimonial-controls {
	display: flex;
	justify-content: flex-end;
	gap: 12px;
	margin-top: 32px;
}

.testimonial-arrow {
	width: 44px;
	height: 44px;
	background-color: #1a1a1a;
	border: none;
	color: #fff;
	font-size: 18px;
	cursor: pointer;
	border-radius: 4px;
	transition: background-color 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
}

.testimonial-arrow:hover {
	background-color: #1894FF;
}

.testimonial-prev,
.testimonial-next {
	font-weight: 700;
}

/* ============================================
NEWSLETTER SECTION
============================================ */
.newsletter-section {
	margin-bottom: -245px;
	display: flex;
}

/* .newsletter-container {
max-width: 1200px;
margin: 0 auto;
padding: 0 32px;
} */

.newsletter-card {
	background: linear-gradient(135deg, #1894FF 0%, #0d7bd4 100%);
	padding: 60px 48px;
	border-radius: 16px;
	text-align: center;
	/* 	box-shadow: 0 20px 60px rgba(24, 148, 255, 0.3); */
	z-index: 999;
	position: relative;
}

.newsletter-title {
	font-size: 54px;
	font-weight: 700;
	font-style: italic;
	color: #fff;
	text-transform: uppercase;
	margin-bottom: 10px;
	letter-spacing: -1.04px;
	line-height: normal;
}

.newsletter-subtitle {
	font-size: 20px;
	color: #fff;
	margin-bottom: 40px;
	max-width: 100%;
	margin-left: auto;
	margin-right: auto;
	line-height: 130%;
}

.newsletter-form {
	display: flex;
	gap: 12px;
	max-width: 500px;
	margin: 0 auto;
	justify-content: center;
	flex-wrap: wrap;
}

.newsletter-input {
	flex: 1;
	min-width: 240px;
	padding: 14px 20px;
	border: 1px solid rgba(255, 255, 255, 0.3);
	border-radius: 4px;
	background-color: rgba(255, 255, 255, 0.1);
	color: #fff;
	font-size: 14px;
	font-family: var(--font-primary);
	transition: all 0.3s ease;
}

.newsletter-input::placeholder {
	color: rgba(255, 255, 255, 0.6);
}

.newsletter-input:focus {
	outline: none;
	border-color: rgba(255, 255, 255, 0.6);
	background-color: rgba(255, 255, 255, 0.15);
}

.newsletter-submit {
	padding: 14px 32px;
	background-color: #fff;
	color: #1894FF;
	border: none;
	border-radius: 4px;
	font-weight: 700;
	font-size: 14px;
	cursor: pointer;
	transition: all 0.3s ease;
	text-transform: uppercase;
	letter-spacing: 0.02em;
	white-space: nowrap;
}

.newsletter-submit:hover {
	background-color: #f0f0f0;
	transform: translateY(-2px);
	box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* ============================================
BRANDS SECTION LOGO
============================================ */

.brands-section .slick-initialized .slick-slide {
	width: 332.609px !important;
	height: 170px; 
}
.brands-section .slick-slide img
{
	width: 215px;
	height: 51px;
	object-fit: contain;
}

/* ============================================
FOOTER
============================================ */
footer {
	background-color: #0E0E11;
	color: #fff;
	padding-top: 305px;
	padding-bottom: 0;
}

.footer-content {
	display: flex;
	/* grid-template-columns: 1.2fr 1fr; */
	justify-content: space-between;
	gap: 60px;
	padding-bottom: 70px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.footer-logo {
	width: 372px;
	height: auto;
}

.footer-logo img {
	width: 100%;
	height: auto;
	display: block;
}

.footer-description {
	font-size: 20px;
	line-height: 120%;
	color: #A9A9A9;
	max-width: 550px;
}

.footer-socials {
	display: flex;
	gap: 16px;
	/* 	margin-top: 16px; */
}

.social-icon {
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 50%;
	color: #fff;
	transition: all 0.3s ease;
	text-decoration: none;
}

.social-icon:hover {
	background-color: #1894FF;
	border-color: #1894FF;
	transform: translateY(-3px);
}

/* .social-icon svg {
width: 20px;
height: 20px;
} */

.footer-links {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 170px;
}

.footer-column {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.footer-column-title {
	font-size: 16px;
	font-weight: 700;
	color: #fff;
	text-transform: uppercase;
	letter-spacing: 0.02em;
}

.footer-column ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.footer-column ul li a {
	font-size: 24px;
	color: #fff;
	text-decoration: none;
	transition: color 0.3s ease;
}

.footer-column ul li a:hover {
	color: #1894FF;
}

.footer-bottom {
	background-color: #0E0E11;
	padding: 24px 0;
	text-align: center;
}

.footer-copyright {
	font-size: 20px;
	color: #ccc;
	margin: 0;
	line-height: 130%;
	text-align: left;
}

/* Custom CSS */
.brand-card-image .slide_info {
	height: 100%;
	max-height: 0;
	overflow: hidden;
	transition: all 1s !important;
}

.brand-card-image:hover .slide_info {
	max-height: 150px;
	overflow: hidden;
	transition: all 1s !important;
}

.white_bg {
	background-color: #ffffff;
	border-radius: 4px;
}

.white_bg .btn-primary {
	z-index: 9 !important;
	font-size: 20px;
	line-height: normal;
}

.btn-primary:hover {
	border-color: #1894FF;
	color: #ffffff;
}

.our-brands-slider .slick-dots {
	max-width: 90%;
	margin-left: 16px;
}

.our-brands-slider .slick-arrow {
	top: auto;
	bottom: -40px !important;
}

.our-brands-slider .slick-next::before,
.testimonials-container .slick-next::before {
	border-style: none;
	background-image: url("../image/Right-arrow.svg");
	height: 30px;
	width: 30px;
}

.our-brands-slider .slick-prev {
	right: 64px;
	left: auto;
}

.our-brands-slider .slick-prev::before,
.testimonials-container .slick-prev::before {
	border-style: none;
	background-image: url("../image/Left-arrow.svg");
	height: 30px;
	width: 30px;
}

.testimonials-container .slick-arrow:before {
	content: "";
}

.slick-prev:focus,
.slick-next:focus {
	background: #000 !important;
}

.ribbon-scroller span {
	font-size: 32px;
	font-weight: 600;
	line-height: normal;
	letter-spacing: -0.64px;
	text-transform: uppercase;
}

.author-pics {
	display: flex;
	padding-top: 30px;
	justify-content: end;
}

.quote_icon {
	margin-right: -18px;
	z-index: 9;
}

.testimonials-container .slick-arrow {
	top: auto;
	bottom: -55px !important;
	background: #000;
	border-radius: 4px;
}

.testimonials-container .slick-prev:hover,
.testimonials-container .slick-prev:focus,
.testimonials-container .slick-next:hover,
.testimonials-container .slick-next:focus {
	background-color: #000 !important;
}

.testimonials-container .slick-prev {
	left: auto;
	right: 58px;
}

.testimonials-container .slick-next {
	right: 0px;
}

.contact_heading {
	font-size: 54px;
	font-style: italic;
	font-weight: 700;
	line-height: normal;
	letter-spacing: -1.08px;
	text-transform: uppercase;
}

.contact-us-sec {
	padding: 120px 0;
}

.info_col {
	max-width: 387px;
}

/* ---------- Loading Animation ---------- */
.front_animation {
	background: #1A1E26;
	height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
	position: fixed;
	top: 0;
	z-index: 99999 !important;
	width: 100%;
}

.front_wrapper {
	display: flex;
	align-items: center;
}

.seven_front,
.four_front {
	position: relative;
}

.front_wrapper {
	position: relative;
}

.four_front {
	margin: 0 -101px;
}


/**/
.front_animation:before {
	content: "";
	background: #1A1E26;
	height: 50%;
	width: 100%;
	position: absolute;
	top: 0;
	z-index: 999;
	animation: 2s blickAnimationTop forwards;
}

.front_animation:after {
	content: "";
	background: #1A1E26;
	height: 50%;
	width: 100%;
	position: absolute;
	bottom: 0;
	z-index: 999;
	animation: 2s blickAnimationBottom forwards;
}

@keyframes blickAnimationTop {
	0% {
		top: 0%;
	}

	25% {
		top: -2%;
	}

	50% {
		top: 0%;
	}

	100% {
		top: -50%;
	}
}

@keyframes blickAnimationBottom {
	0% {
		bottom: 0%;
	}

	25% {
		bottom: -2%;
	}

	50% {
		bottom: 0%;
	}

	100% {
		bottom: -50%;
	}
}

.front_wrapper img.four_front {
	opacity: 1 !important;
}

/**/


/*  */
.front-active {
	overflow: hidden !important;
}

.front_animation {
	overflow: hidden;
	will-change: transform, opacity;
}

.two_front {
	animation: twoFrontAnim 1.2s ease-out forwards;
	animation-delay: 0.3s;
}

.seven_front {
	animation: sevenFrontAnim 1.2s ease-out forwards;
	animation-delay: 0.5s;
}

.four_front {
	animation: fadeIn 1s ease forwards;
	animation-delay: 1s;
}

.front_animation.slide-up {
	animation: slideUpSection 1s ease-in-out forwards;
}

@keyframes slideUpSection {
	0% {
		transform: translateY(0);
		opacity: 1;
	}

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

.front_wrapper {
	position: relative;
	min-height: 300px;
}



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

.front_wrapper img {
	position: relative;
	opacity: 0;
	transition: opacity 0.5s ease;
}

.two_front {
	animation: twoFrontAnim 1.2s ease-out forwards;
	animation-delay: 2s;
}

@keyframes twoFrontAnim {
	0% {
		transform: translate(-200%, 200%);
		opacity: 0;
	}

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

.seven_front {
	animation: sevenFrontAnim 1.2s ease-out forwards;
	animation-delay: 2s;
}

@keyframes sevenFrontAnim {
	0% {
		transform: translate(200%, -200%);
		opacity: 0;
	}

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

.four_front {
	animation: fadeIn 1s ease forwards;
	animation-delay: 1s;
}

@keyframes fadeIn {
	0% {
		opacity: 0;
		transform: scale(0.9);
	}

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


.overflow_h .tagline {
	transform: translatey(100%);
}

.overflow_h {
	overflow: hidden;
}

.hero_show .overflow_h .tagline {
	transform: translatey(0%) !important;
	transition: all 1s;
}

.right_scroll {
	transform: translatex(100%);
}

.left_scroll {
	transform: translatex(-110%);
}

.hero_show .left_scroll,
.hero_show .right_scroll {
	transform: translatex(0%);
	transition: all 1s;
}

.brand-card:hover .brand_card_bg {
	transform: scale(1.1);
}

.header-inner nav ul li a {
	font-size: 22px;
}

.testimonial-header .line {
	position: absolute;
	width: 80%;
	height: 1px;
	background: #000;
	z-index: 99;
	top: 130px;
}

.stat:hover * {
	color: #1894FF;
}

.stat * {
	transition: all 1s;
}

.author-pics img {
	border-radius: 50%;
}

.transparent_btn .btn-primary {
	padding: 14.5px 40px;
}

.phone_menu {
	display: none;
}


/* ---------- Loading Animation END ---------- */



/* ----- Hero Bg Video ----- */
.hero video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 1;
}

/* ----- Hero Bg Video END ----- */

/* ----- Hero Bg Video END ----- */
.numbers-section video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 1;
	opacity: 0.30;
	mix-blend-mode: luminosity;
}

/* ----- Hero Bg Video END ----- */

.numbers-section div {
	z-index: 999;
}

.open_icon {
	filter: invert(1);
}

.menu-toggle[aria-expanded="false"] .open_icon {
	display: block;
}

.menu-toggle[aria-expanded="false"] .close_icon {
	display: none;
}

.menu-toggle[aria-expanded="true"] .open_icon {
	display: none;
}

.menu-toggle[aria-expanded="true"] .close_icon {
	display: block;
}

.open_icon,
.close_icon {
	height: 24px;
	width: 24px;
}



.blue-ribbon {
	display: flex;
}

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

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


/* Form Desing */
.form_sc .check_box.gfield .gfield_label,
.form_sc .gform_required_legend {
	display: none;
}

.form_sc {
	width: 100%;
}

.form_sc * {
	font-family: var(--font-primary);
}

.form_sc label {
	font-size: 20px !important;
}

.form_sc input,
.form_sc textarea {
	font-size: 16px !important;
	line-height: normal !important;
	padding: 18px 16px !important;
	border: 1px solid#E8E9E9 !important;
	border-radius: 4px;
}

.form_sc input::placeholder,
.form_sc textarea::placeholder {
	color: #878787 !important;
	font-size: 16px !important;
}

.gform_wrapper.gravity-theme .gform_fields {
	grid-column-gap: 40px !important;
	grid-row-gap: 20px !important;
}

.form_sc {
	padding: 30px 40px;
	border-radius: 16px;
	border: 1px solid var(--Foundation-Blue-Light, #E8E9E9);
	box-shadow: 0 0 20px 0 rgba(69, 69, 69, 0.05);
}

.form_sc .gform_wrapper.gravity-theme .gform_footer,
.form_sc .gform_wrapper.gravity-theme .gform_page_footer {
	margin: 0px;
	padding: 0px;
	margin-top: 30px;
	background: #1A1E26;
	border-radius: 10px !important;
}

.form_sc .gform_footer input {
	cursor: pointer;
	margin-bottom: 0 !important;
	padding: 14.5px 40px !important;
	font-size: 22px !important;
	color: #fff !important;
	background: #1A1E2600;
	border-radius: 4px !important;
	z-index: 99;
	position: relative;
}

.form_sc .gform_footer:before {
	content: "";
	background: #1894FF;
	width: 350px;
	height: 230px;
	position: absolute;
	top: 100%;
	left: -50%;
	border-radius: 100%;
	transition: all 0.5s;
	z-index: 1;
}

.form_sc .gform_footer:hover:before {
	top: -40%;
}

.form_sc .gform_footer {
	position: relative;
	overflow: hidden;
}

.form_sc label {
	font-size: 20px !important;
	line-height: normal !important;
	margin-bottom: 10px !important;
}

.check_box label {
	margin-bottom: 0 !important;
}

.gform_footer {
	display: inline-block !important;
	width: auto !important;
}

.check_box label {
	font-size: 14px !important;
}

.check_box .gfield-choice-input {
	height: 24px;
	width: 24px;
}


.newsletter-card form {
	display: flex !important;
	column-gap: 14px;
}

body .newsletter-card .es-field-wrap {
	width: 100%;
	margin-bottom: 0 !important;
}

.newsletter-card .es-submit-container {
	width: auto !important;
}

.newsletter-card label {
	font-size: 0 !important;
	display: block !important;
	width: 100%;
}

body form.es_subscription_form[data-form-id="1"].wysiwyg-form input.es-subscribe-btn {
	margin-top: 0 !important;
}

body .newsletter-card .es-form-1 input[type='email'] {
	font-size: 20px !important;
	padding: 18px 28px !important;
	color: #fff !important;
	width: 100% !important;
	border-radius: 4px !important;
	border: 1.2px solid #FFF !important;
	background: rgba(255, 255, 255, 0.20) !important;
}

body .newsletter-card .es-form-1 input[type='email']::placeholder {
	color: #fff;
}

.es-form-1 form {
	background: #ffffff00 !important;
	padding: 0 !important;
}


html body form.es_subscription_form[data-form-id="1"].wysiwyg-form input.ig-es-submit-btn,
html body form.es_subscription_form[data-form-id="1"].wysiwyg-form input.es-subscribe-btn,
html body form.es_subscription_form[data-form-id="1"].wysiwyg-form .ig-es-submit-btn,
html body form.es_subscription_form[data-form-id="1"].wysiwyg-form .es-subscribe-btn {
	background-color: #007CBA !important;
	background-image: none !important;
	background: #ffffff00 !important;
	color: #000 !important;
	border: 1px solid #007CBA00 !important;
	border-radius: 4px !important;
	padding: 14px 67px !important;
	height: 100% !important;
	font-size: 22px !important;
	font-weight: 400 !important;
	cursor: pointer !important;
	box-sizing: border-box !important;
	white-space: nowrap !important;
	text-decoration: none !important;
	display: inline-block !important;
	line-height: normal !important;
	margin-top: 0em !important;
	z-index: 999;
}

.es_form_wrapper.es-form-1.ig-es-form-wrapper,
.es-form-1 form {
	max-width: 815px !important;
}

html body .es-form-1 form {
	max-width: 818px !important;
}


.es-field-wrap.es-submit-container:before {
	content: "";
	background: #0E0E11;
	width: 350px;
	height: 230px;
	position: absolute;
	top: 100%;
	border-radius: 100%;
	transition: all 0.5s;
	z-index: 1;
	left: 50%;
	transform: translatex(-50%);
}

html body .es-field-wrap.es-submit-container {
	overflow: hidden !important;
	max-width: 204px;
	float: left !important;
	width: 100% !important;
	position: relative;
	background: #fff;
	border-radius: 4px !important;
}

.es-field-wrap.es-submit-container:hover:before {
	top: -35%;
}

html body form.es_subscription_form[data-form-id="1"].wysiwyg-form input.es-subscribe-btn:hover {
	color: #fff !important;
}

html body .newsletter-card form.es_subscription_form[data-form-id="1"].wysiwyg-form input.es-subscribe-btn {
	color: #1A1E26 !important;
}

html body .newsletter-card form.es_subscription_form[data-form-id="1"].wysiwyg-form input.es-subscribe-btn:hover {
	color: #fff !important;
}

.main-menu {
	list-style: none;
	display: flex;
	gap: 30px;
	padding: 20px 40px;
	background: #fff;
	margin: 0;
	position: relative;
	border-bottom: 1px solid #eee;
}

.main-menu li a {
	text-decoration: none;
	color: #000;
	font-weight: 500;
	padding: 10px;
}

.mega-menu {
	position: absolute;
	top: 100%;
	right: 0;
	width: 100vw;
	background: #fff;
	padding: 56px 60px 50px;
	display: none;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
	z-index: 1000;
}

.mega-menu.open {
	display: block;
}

.mega-close {
	position: absolute;
	top: 20px;
	right: 25px;
	background: #000;
	color: #fff;
	padding: 5px 10px;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	font-size: 16px;
}

.mega-newsletter {
	text-align: center;
	padding-bottom: 80px;
	border-bottom: 1px solid #E5E5E5;
}

.mega-newsletter h2 {
	font-size: 40px;
	margin-bottom: 10px;
}

.mega-newsletter p {
	color: #737373;
	max-width: 600px;
	margin: 20px auto 40px;
	font-size: 18px;
	font-weight: 400;
}

.article-card {
	display: flex;
	gap: 20px;
	align-items: center;
}

.newsletter-form {
	display: flex;
	justify-content: center;
	gap: 12px;
}

.newsletter-form input {
	width: 350px;
	padding: 12px 16px;
	border: 1px solid #ccc;
	border-radius: 6px;
	font-size: 16px;
}

.newsletter-form button {
	padding: 12px 20px;
	background: #111;
	color: #fff;
	border: none;
	border-radius: 6px;
	font-size: 16px;
	cursor: pointer;
}

.mega-articles {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 65px 60px;
	max-width: 660px;
	padding-top: 50px;
}

.article-card img {
	width: 100px;
	height: 100px;
	border-radius: 6px;
	object-fit: cover;
}

.article-card .edition {
	font-size: 18px;
	color: #737373;
	/* margin-top: 12px; */
}

.article-card h6 {
	margin-top: 5px;
	font-size: 24px;
	font-weight: 600;
	color: #1A1E26;
}

/*  */
.mega-newsletter {
	color: #000;
	font-size: 50px;
	font-style: italic;
	font-weight: 700;
	line-height: normal;

}




.mega-open {
	position: fixed;
	left: 0;
	right: 0;
	overflow: hidden;
	width: 100%;
}


.mega-menu:before {
	content: "";
	background: url("/wp-content/uploads/2025/11/247.webp");
	height: 527px;
	width: 772px;
	position: absolute;
	right: 0;
	bottom: 0;
	background-size: cover;
}

.has-mega a:after {
	content: "";
	background: url("/wp-content/uploads/2025/11/Arrow.svg");
	background-size: cover;
	background-repeat: no-repeat;
	height: 13px;
	width: 23px;
	top: 50%;
	right: -30px;
	transform: translatey(-50%);
	position: absolute;
}

.has-mega a {
	position: relative;
}

.menu-item a:focus {
	outline: 0px !important;
}

.social-icon .hover_img {
	display: none;
}

.social-icon:hover img {
	display: none;
}

.social-icon img {
	display: block;
}

.social-icon:hover .hover_img {
	display: block;
}

.mega-menu .es-field-label {
	font-size: 0 !important;
	display: inline-block !important;
	width: 100% !important;
}

.es-field-wrap.ig-es-form-field {
	width: 100%;
	display: flex;
}

.mega-menu .es-field-label input {
	width: 100% !important;
}

.mega-menu form {
	display: flex !important;
	column-gap: 20px !important;
}
/* ============================================
PRIVACY POLICY SECTION
============================================ */
.privacy-container{
	width: 100%;
	max-width: var(--container-width);
	margin: 0 auto;
	padding:100px 28px;
}

.data ul{
	padding-left:40px;
}
.data h4{
	padding-top:30px;
}



html body .es-form-1 input[type='email'] {
	font-size: 20px !important;
	padding: 18px 28px !important;
	color: #fff !important;
	width: 100% !important;
	border-radius: 4px !important;
	border: 1.2px solid #000 !important;
	background: rgba(255, 255, 255, 0.20) !important;
}
.ig_es_subscription_form .es_spinner_image img {
	display: none;
}
.mega-newsletter .es-field-wrap.es-submit-container:before {
	top: -40%;
}

.mega-newsletter .es-field-wrap.es-submit-container:hover:before {
	top: 100%;
}

html body form.es_subscription_form[data-form-id="1"].wysiwyg-form input.es-subscribe-btn {
	color: #fff !important;
}

html body form.es_subscription_form[data-form-id="1"].wysiwyg-form input.es-subscribe-btn:hover {
	color: #000 !important;
	border-color: #000 !important;
}
body:not(.page-template-page-home) header {
	position: relative;
	background: #1A1E26;
}
body:not(.page-template-page-home) footer {
	padding-top:100px;
}