.paragon-hero {
	position: relative;
	width: 100%;
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	display: flex;
	align-items: center;
}

.paragon-hero:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.15) 50%, rgba(0,0,0,0) 100%);
	z-index: 1;
}

.paragon-hero-content {
	position: relative;
	z-index: 2;
	width: auto;
	max-width: 1050px;
	margin: 0 auto;
	padding-left: 0%;
	box-sizing: border-box;
	text-align: left;
}

.paragon-hero-title {
	margin: 0 0 25px 0;
	padding: 0;
	color: #ffffff;
	font-size: 50px;
	line-height: 54px;
	font-style: normal;
	font-weight: 200;
	letter-spacing: 0;
	text-shadow: none;
	text-align: left;
	width: 60%;
}

.paragon-hero-text {
	margin: 0 0 25px 0;
	color: #ffffff;
	font-size: 18px;
	line-height: 26px;
	font-weight: 300;
	text-shadow: none;
}

.paragon-hero-buttons {
	display: flex;
	gap: 10px;
}

.paragon-hero-btn {
	position: relative;
	display: inline-block;
	height: 39px;
	line-height: 39px;
	padding: 0 23px;
	border: 2px solid #303030;
	border-radius: 4px;
	font-size: 13px;
	font-weight: 700;
	text-align: left;
	text-decoration: none;
	text-transform: uppercase;
	letter-spacing: 1px;
	white-space: nowrap;
	transition: color .1s linear, background-color .1s linear, border-color .1s linear;
}

.paragon-hero-btn i {
	margin-left: 10px;
}

.paragon-hero-btn-green {
	color: #ffffff;
	background-color: #1abc9c;
	border-color: #1abc9c;
}

.paragon-hero-btn-green:hover {
	background-color: #ffffff;
	border-color: #ffffff;
	color: #a2a2a2;
}

.paragon-hero-btn-white {
	color: #ffffff;
	background-color: transparent;
	border-color: #ffffff;
}

.paragon-hero-btn-white:hover {
	background-color: #1abc9c;
	border-color: #1abc9c;
	color: #ffffff;
}

@media (max-width: 1000px) {
	.paragon-hero-content {
		width: 80%;
		padding-left: 8%;
	}

	.paragon-hero-title {
		font-size: 36px;
		line-height: 42px;
	}
}

@media (max-width: 600px) {
	.paragon-hero {
		height: 500px !important;
	}

	.paragon-hero-content {
		width: 90%;
		padding-left: 5%;
	}

	.paragon-hero-title {
		font-size: 28px;
		line-height: 34px;
	}

	.paragon-hero-buttons {
		flex-direction: column;
		gap: 8px;
	}
}
