.hero-section {
	margin: 0;
	position: relative;
	min-height: 770px;
	padding-top: 100px;
	padding-bottom: 110px;
}

.video-wrapper {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
}

.video-wrapper video {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero-section:before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	background: radial-gradient(circle at 70% 18%, rgba(255, 255, 255, .16), transparent 34%), linear-gradient(90deg, rgba(13, 10, 8, .92) 0%, rgba(13, 10, 8, .66) 45%, rgba(13, 10, 8, .20) 100%);
	width: 100%;
	height: 100%;
	z-index: 1;
}

.hero-section .wrapper {
	position: relative;
	z-index: 2;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}

.hero-section .wrapper .left-col {
	width: 56%;
}

.hero-section .wrapper .right-col {
	width: 40%;
}

.hero-content p {
	font-size: 20px;
	line-height: 1.65;
	color: rgba(255, 255, 255, .82);
	max-width: 680px;
	margin: 0 0 30px;
}

.hero-content {
	margin-bottom: 30px;
}

.state-wrapper {
	display: flex;
	flex-wrap: wrap;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 14px;
	margin-top: 42px;
	max-width: 720px;
}

.state-wrapper>div {
	width: 100%;
	padding: 18px;
	border: 1px solid rgba(255, 255, 255, .17);
	border-radius: 18px;
	background: rgba(255, 255, 255, .09);
	backdrop-filter: blur(10px);
}

.state-wrapper>div h3 {
	display: block;
	font-size: 26px;
	color: #fff;
	line-height: 1;
	margin: 0;
}

.state-wrapper>div p {
	font-size: 13px;
	color: rgba(255, 255, 255, .75);
	line-height: 1.4;
	display: block;
	margin-top: 8px;
}

.hero-card {
	background: rgba(255, 248, 235, .94);
	border-radius: 32px;
	padding: 18px;
	box-shadow: 0 24px 70px rgba(18, 15, 12, .18);
	position: relative;
}

.hero-card:before {
	content: "";
	position: absolute;
	inset: -12px;
	border: 1px solid rgba(255, 255, 255, .18);
	border-radius: 38px;
	z-index: -1;
}

.hero-card .card-image {
	position: relative;
	padding-bottom: 70%;
}

.hero-card .card-image img {
	border-radius: 24px;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero-card .card-text {
	padding: 20px 20px 10px 20px;
}

.category-panel .wrapper {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 14px;
	background: #fff;
	border-radius: 28px;
	padding: 14px;
	box-shadow: 0 24px 70px rgba(18, 15, 12, .18);
}

.quick-card {
	position: relative;
	overflow: hidden;
	border-radius: 20px;
	min-height: 178px;
	color: #fff;
	display: flex;
	align-items: flex-end;
	padding: 18px;
	isolation: isolate
}

.quick-card::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, transparent 20%, rgba(0, 0, 0, .76) 100%);
	z-index: -1
}

.quick-card img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: -2;
	transition: .45s ease
}

.quick-card:hover img {
	transform: scale(1.08)
}

.quick-card h3 {
	margin: 0;
	font-size: 19px;
	color: #fff;
}

.quick-card span {
	display: block;
	margin-top: 6px;
	font-size: 13px;
	color: rgba(255, 255, 255, .78);
	line-height: normal;
	font-weight: 400;
}

.category-panel {
	margin-top: -74px;
	z-index: 1;
	position: relative;
	margin-bottom: 20px;
}


@media only screen and (max-width:1199px) {
	.hero-card .card-text {
		padding: 10px 0 0 0;
	}

	.hero-section {
		padding-top: 50px;
		padding-bottom: 100px;
		min-height: 700px;
	}

	.state-wrapper>div {
		padding: 12px 10px;
		border-radius: 10px;
	}

	.state-wrapper>div h3 {
		font-size: 18px;
	}

	.hero-content p {
		font-size: 18px;
		line-height: 1.5;
		margin-bottom: 20px;
	}

	.hero-content {
		margin-bottom: 0;
	}

	.hero-content p {
		margin-bottom: 20px;
	}

	.state-wrapper {
		margin-top: 20px;
	}
}

@media only screen and (max-width:991px) {
	.hero-section .wrapper .left-col {
		width: 100%;
	}

	.hero-section .wrapper .right-col {
		width: 100%;
		margin-top: 30px;
	}

	.category-panel .wrapper {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media only screen and (max-width:767px) {
	.category-panel {
		margin-top: -34px;
	}

	.state-wrapper {
		grid-template-columns: repeat(1, 1fr);
	}

	.state-wrapper>div {
		padding: 18px;
	}

	.state-wrapper>div h3 {
		font-size: 20px;
	}

	.category-panel .wrapper {
		grid-template-columns: repeat(1, 1fr);
	}
}