.projects-title-area {
	position: relative;
	z-index: 1;
	min-height: 520px;
	padding: 145px 0 95px;
	display: flex;
	align-items: center;
	overflow: hidden;
	background:
		linear-gradient(
			90deg,
			rgba(5, 10, 30, 0.96) 0%,
			rgba(5, 10, 30, 0.88) 45%,
			rgba(5, 10, 30, 0.68) 100%
		),
		url("../img/banner-bg.jpg");
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
}

.projects-title-area::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		radial-gradient(circle at 18% 35%, rgba(3, 196, 255, 0.18), transparent 28%),
		radial-gradient(circle at 88% 45%, rgba(0, 140, 255, 0.16), transparent 30%);
	pointer-events: none;
	z-index: -1;
}

.projects-title-content {
	text-align: left;
	max-width: 620px;
}

.projects-title-content h2 {
	color: #ffffff;
	font-size: 54px;
	line-height: 1.12;
	margin-bottom: 18px;
}

.projects-title-content p {
	color: rgba(255, 255, 255, 0.88);
	font-size: 18px;
	line-height: 1.75;
	margin-bottom: 24px;
}

.projects-title-content .page-breadcrumb {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
	padding: 0;
	margin: 0;
	list-style: none;
}

.projects-title-content .page-breadcrumb li {
	color: #ffffff;
	font-weight: 600;
}

.projects-title-content .page-breadcrumb li a {
	color: #03c4ff;
}

.projects-hero-visual {
	position: relative;
	text-align: right;
}

.projects-hero-visual::before {
	content: "";
	position: absolute;
	width: 320px;
	height: 320px;
	border-radius: 50%;
	background: rgba(3, 196, 255, 0.18);
	filter: blur(60px);
	right: 30px;
	top: 50%;
	transform: translateY(-50%);
	z-index: 0;
}

.projects-hero-visual img {
	position: relative;
	z-index: 1;
	width: 100%;
	max-width: 570px;
	height: 340px;
	object-fit: cover;
	object-position: center;
	border-radius: 22px;
	border: 1px solid rgba(255, 255, 255, 0.12);
	box-shadow: 0 32px 90px rgba(0, 0, 0, 0.42);
}

@media only screen and (max-width: 991px) {
	.projects-title-area {
		min-height: auto;
		padding: 135px 0 75px;
	}

	.projects-title-content {
		text-align: center;
		max-width: 100%;
		margin-bottom: 34px;
	}

	.projects-title-content h2 {
		font-size: 42px;
	}

	.projects-title-content .page-breadcrumb {
		justify-content: center;
	}

	.projects-hero-visual {
		text-align: center;
	}

	.projects-hero-visual img {
		height: auto;
	}
}

@media only screen and (max-width: 767px) {
	.projects-title-area {
		padding: 120px 0 65px;
	}

	.projects-title-content h2 {
		font-size: 34px;
	}

	.projects-title-content p {
		font-size: 16px;
	}
}