:root {
	--white: #ffffff;
	--black: #000000;
	--primary-100: #ffeeee;
	--primary-200: #ff8787;
	--primary-300: #e53b3b;
	--primary-400: #ba1515;
	--grey-100: #f5f5f5;
	--grey-200: #ebebeb;
	--grey-300: #d9d9d9;
	--grey-400: #a0a0a0;
	--grey-500: #707070;
	--grey-600: #525252;
	--grey-700: #333333;
	--font-primary: "Poppins", sans-serif;
}
* {
	margin: 0px;
	padding: 0px;
}
a,
a:hover {
	text-decoration: none;
}
ol,
ul {
	margin: 0;
	padding: 0;
	list-style: none;
}
h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0;
	padding: 0;
}
p {
	margin: 0;
	padding: 0;
}
input,
input:focus {
	outline: none;
}
div {
	outline: none;
	border: none;
	border-color: transparent;
}
body {
	font-size: 14px;
	font-weight: 400;
	overflow-y: scroll;
	line-height: 24px;
	color: var(--grey-500);
	background: var(--white);
	-ms-overflow-style: none;
	font-family: var(--font-primary);
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}
*:focus {
	outline: none;
}

.landing-page-wrapper {
	width: 100vw;
	height: 100vh;
	display: flex;
	overflow-x: none;
}
.landing-page-left {
	width: 50%;
	height: 100%;
	display: flex;
	overflow: hidden;
	min-height: 100vh;
	position: relative;
	align-items: center;
	background: rgb(172, 172, 172);
	background: -moz-linear-gradient(
		180deg,
		rgba(172, 172, 172, 1) 0%,
		rgba(208, 208, 208, 1) 100%
	);
	background: -webkit-linear-gradient(
		180deg,
		rgba(172, 172, 172, 1) 0%,
		rgba(208, 208, 208, 1) 100%
	);
	background: linear-gradient(
		180deg,
		rgba(172, 172, 172, 1) 0%,
		rgba(208, 208, 208, 1) 100%
	);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#acacac",endColorstr="#d0d0d0",GradientType=1);
}
.landing-page-left > img {
	z-index: 1;
	width: 100%;
	height: auto;
	object-fit: cover;
	position: relative;
}
.landing-page-right {
	width: 50%;
	height: 100%;
	display: flex;
	align-items: center;
	position: relative;
	justify-content: center;
}
.landing-page-brand {
	left: 50%;
	top: 50px;
	z-index: 2;
	width: 180px;
	height: auto;
	margin-left: -20px;
	position: absolute;
	transform: translateX(-50%);
}
.landing-page-brand img {
	width: 100%;
	height: auto;
}
.landing-page-content {
	max-width: 410px;
}
.landing-page-content h1 {
	font-size: 75px;
	font-weight: 600;
	line-height: 75px;
	margin-bottom: 35px;
	color: var(--primary-300);
	font-family: var(--font-primary);
}
.landing-page-content h1 span {
	display: block;
	line-height: 1;
	font-size: 35px;
	font-weight: 500;
	position: relative;
	color: var(--grey-700);
	font-family: var(--font-primary);
}
.landing-page-content h1 span:last-child {
	text-align: right;
}
.landing-page-content h1 span:last-child:before {
	left: 0;
	top: 50%;
	height: 1px;
	content: "";
	position: absolute;
	width: calc(100% - 175px);
	transform: translateY(-50%);
	background: var(--primary-300);
}
.landing-page-content p {
	font-size: 18px;
	font-weight: 400;
	line-height: 28px;
	color: var(--grey-500);
	font-family: var(--font-primary);
}
.landing-page-content a {
	width: 100%;
	height: 50px;
	display: flex;
	font-size: 14px;
	font-weight: 500;
	border-radius: 5px;
	align-items: center;
	color: var(--white);
	justify-content: center;
	background: var(--primary-300);
	font-family: var(--font-primary);
	transition: background 0.2s ease-in-out;
	padding: 0 15px;
}
.landing-page-content a:hover {
	background: var(--primary-400);
}

/* Responsive CSS */
@media (max-width: 1399.98px) {
	.landing-page-content {
		max-width: 300px;
	}
	.landing-page-content h1 {
		font-size: 55px;
		line-height: 70px;
	}
	.landing-page-content h1 span {
		font-size: 30px;
	}
	.landing-page-content h1 span:last-child:before {
		width: calc(100% - 155px);
	}
	.landing-page-content p {
		font-size: 14px;
		line-height: 22px;
	}

}

@media (max-width: 1199.98px) {
}

@media (max-width: 991.98px) {
	.landing-page-wrapper {
		overflow-x: none;
		flex-direction: column;
	}
	.landing-page-left {
		width: 100%;
		overflow: hidden;
		min-height: auto;
		max-height: calc(100vh - 65%);
	}
	.landing-page-right {
		width: 100%;
		max-height: calc(100vh - 55%);
	}
	.landing-page-brand {
		left: 0;
		right: 0;
		top: 25px;
		width: 150px;
		transform: none;
		margin: auto !important;
	}
	.landing-page-content {
		display: flex;
		max-width: 100%;
		align-items: center;
		flex-direction: column;
		justify-content: center;
	}
	.landing-page-content h1 {
		font-size: 40px;
		max-width: 300px;
		line-height: 40px;
		margin-bottom: 25px;
	}
	.landing-page-content h1 span {
		font-size: 22px;
	}
	.landing-page-content h1 span:last-child:before {
		width: calc(100% - 115px);
	}
	.landing-page-content p {
		font-size: 13px;
		max-width: 230px;
		line-height: 18px;
	}

}

@media (max-width: 767.98px) {
}

@media (max-width: 575.98px) {
}

@media (max-width: 767.98px) {
	/* Hide the background image on mobile */
	.landing-page-left > img {
		display: none;
	}
	
	/* Adjust layout for mobile view */
	.landing-page-wrapper {
		flex-direction: column;
		height: auto;
	}
	
	.landing-page-left {
		width: 100%;
		background: var(--grey-200); /* Optional: Add a fallback background */
	}
	
	.landing-page-right {
		width: 100%;
	}
	
	.landing-page-content {
		padding: 20px;
		text-align: center;
	}
	
	.landing-page-content h1 {
		font-size: 36px;
		line-height: 44px;
	}
	
	.landing-page-content h1 span {
		font-size: 18px;
	}
	
	.landing-page-content h1 span:last-child:before {
		width: 50px;
	}
	
	.landing-page-content p {
		font-size: 14px;
		line-height: 20px;
		margin-bottom: 20px;
	}
	
	.download-link {
		flex-direction: column;
		align-items: center;
	}
	
	.download-link img {
		margin: 0 0 10px 0;
	}
	
}
.landing-page-brand-right{
	padding-bottom: 20px;
}

.download-link {
	display: flex;
	align-items: center;
	margin-bottom: 30px;
}

.download-link img {
	margin-right: 10px;
}

.download-link a {
	text-decoration: none;
	font-weight: 500;
}


