.banner {
	position: relative;
	width: 100%;
	height: 95svh;
	overflow: hidden;
	/* background-image: url('../../img/banners/banner-bg-1-desk.webp'); */
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

.banner-2 {
	position: relative;
	width: 100%;
	height: 95svh;
	overflow: hidden;
	background-image: url('../../img/banners/banner-bg-2-desk.webp');
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

@media screen and (max-width: 1540px) {
	/* .banner {
		background-image: url('../../img/banners/banner-bg-1-notebook.webp');
	} */
    .banner-2 {
		background-image: url('../../img/banners/banner-bg-2-desk.webp');
	}
}

.banner-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
	pointer-events: none;
}

.banner__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
}

.banner-inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	max-width: 1272px;
	width: 100%;
	margin: 0 auto;
	padding-top: 130px;
	color: var(--color-white);
	height: 100%;
}

.banner-dealer-info {
	display: none;
	align-items: center;
	justify-content: center;
	gap: 10px;
	margin-bottom: 20px;
	padding: 8px 16px;
	background-color: rgba(0, 0, 0, 0.6);
	border-radius: 4px;
	backdrop-filter: blur(5px);
	-webkit-backdrop-filter: blur(5px);
}

.banner-dealer-info img {
	flex-shrink: 0;
	height: auto;
}

.banner-dealer-info span {
	font-size: 12px;
	font-weight: 600;
	color: var(--color-white);
	line-height: 1.2;
	text-align: center;
}

.banner-subtitle {
	margin-bottom: 15px;
	font-size: 32px;
	background: linear-gradient(
		90deg,
		rgba(0, 0, 0, 0) 0%,
		rgba(0, 0, 0, 0.7) 29.81%,
		rgba(0, 0, 0, 0.7) 54.26%,
		rgba(0, 0, 0, 0.483) 82.33%,
		rgba(0, 0, 0, 0) 100%
	);
	width: 100%;
	text-align: center;
	padding: 6px 0;
	line-height: 1;
}
.banner-title {
	text-align: center;
	margin-bottom: 10px;
	font-weight: 500;
	font-size: 62px;
	line-height: 1.2;
	text-transform: uppercase;
}

.banner-offer-btn {
	max-width: 240px;
	height: 50px;
	border: 1px solid var(--color-white);
}

.banner-utp {
	margin-top: auto;
	margin-bottom: 52px;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	width: 100%;
	gap: 12px;
}
.banner-utp-item {
	height: 134px;
	position: relative;
	padding: 10px;
	z-index: 1;
}

.banner-utp-item-text {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 5px;
	height: 100%;
}

.banner-utp-bg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
	pointer-events: none;
}

.banner-utp-item-title {
	font-size: 19px;
}
.banner-utp-item-subtitle {
	font-size: 18px;
	font-weight: 600;
	padding: 2px 9px;
	background-color: var(--color-accent);
	border-radius: 24px;
}

.banner-utp-item-subtitle sup {
	font-size: 11px;
}

@media (max-width: 1540px) {
	.banner-inner {
		max-width: 1200px;
		padding-top: 106px;
	}
	.banner-subtitle {
		font-size: 24px;
		margin-bottom: 8px;
	}
	.banner-title {
		font-size: 50px;
		margin-bottom: 0;
	}
	.banner-utp-item {
		height: 124px;
	}
	.banner-utp-item-title {
		font-size: 18px;
	}

	.banner-utp {
		margin-bottom: 40px;
	}
	.banner-offer-btn {
		max-width: 208px;
	}
}

@media (max-width: 1240px) {
	.banner-inner {
		padding-left: 20px;
		padding-right: 20px;
	}
	.banner-utp-item-title {
		font-size: 15px;
	}
}

@media (max-width: 1024px) {
	.banner-dealer-info {
		display: flex;
		font-size: 10px;
		gap: 10px;
		padding: 6px 12px;
		margin-bottom: 15px;
	}

	.banner-dealer-info span {
		font-size: 16px;
	}
}

@media (max-width: 992px) {
	.banner-dealer-info img {
		max-width: 20px;
	}

	.banner-utp {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		grid-template-rows: repeat(2, 1fr);
		gap: 10px;
	}

	.banner-utp-item {
		height: 100px;
	}
}

@media (max-width: 768px) {
	/* .banner {
		background-image: url(../../img/banners/banner-bg-1-mob.webp);
	} */
    .banner-2 {
		background-image: url(../../img/banners/banner-bg-2-mob.webp);
	}
	.banner-title {
		font-size: 35px;
		margin-bottom: 0;
	}
	.banner-inner {
		padding-top: 50px;
		display: flex;
		flex-direction: column;
	}
}

@media (max-width: 540px) {
	.banner-dealer-info span {
		font-size: 14px;
	}
	.banner-title {
		font-size: 24px;
	}
	.banner-subtitle {
		font-size: 16px;
		margin-bottom: 8px;
	}
	.banner-dealer-info {
		order: 1;
	}
	.banner-title {
		order: 2;
	}
	.banner-subtitle {
		order: 3;
	}
	.banner-offer-btn {
		order: 5;
		margin-bottom: 40px;
		max-width: 100%;
		height: 44px;
	}
	.banner-utp {
		order: 4;
		margin-bottom: 6px;
	}

	.banner-utp-item {
		height: 70px;
		padding: 5px;
	}
	.banner-utp-item-title {
		font-size: 11px;
	}
	.banner-utp-item-subtitle {
		font-size: 13px;
	}
	.banner-utp-item-subtitle sup {
		font-size: 8px;
	}
}
