.aurora-feature-item {
	position: relative;
	padding: 5rem 0;
	min-height: 60vw;
	display: flex;
	align-items: center;
	justify-content: center;
}

@media screen and (min-width:1200px){
	.aurora-feature-item {
		min-height: 45vw;
	}
}

.aurora-feature-item .overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgb(7, 28, 44);
	mix-blend-mode: multiply;
}

.aurora-feature-item .container-fluid {
	display: flex;

}

.aurora-feature-item .image-wrapper{
	width: 100%;
	height:100%;
	position: absolute;
	top:0;
	left:0;
	overflow:hidden;

}

.aurora-feature-item .icon-illustration {
	position: relative;
	display: flex;
	justify-content: flex-end;
}

.icon-svg {
	max-height: 350px;
}

.aurora-feature-item .image {
	background-size: cover;
	background-position: center center;
	width: 100%;
	height: calc(100% + 100px);
	position: relative;
	top: -50px;
}

.aurora-feature-item .info {
	position: relative;
	padding: 3rem;
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	border-radius: 7px;
	filter: brightness(1.05);
}


.aurora-feature-item h2.title{
	color:var(--third-color);
	margin:0;
	font-weight: 900;
	font-size: 2.25em;
	line-height: 1.25em;
}

.aurora-feature-item p {
	margin: 0.5rem 0 0 0;
	color:var(--third-color);
}

.aurora-feature-item ul{
	list-style:none;
	margin:1rem 0;
	padding-left: 0;
}

.aurora-feature-item ul li{
	position:relative;
	margin:0.5em 0;
	padding-left:2rem;
	font-size:0.875rem;
	font-weight:500;
	line-height:1.5em;
}

.aurora-feature-item ul li:before{
	content:'\f0c8';
	font-weight: 600;
	font-family:'Font Awesome 5 Pro';
	position:absolute;
	top:0;
	font-size: 0.75em;
	left:1em;
	color:var(--accent-color-lighter);
}

.aurora-feature-item a.aurora-btn {
	background: var(--third-color);
}

.aurora-feature-item a.aurora-btn:hover {
	background:#104473;
}




@media screen and (max-width:1260px){
	.aurora-feature-item .info{
		padding:2rem;
	}
}

@media screen and (max-width:992px){
	.aurora-feature-item .container-fluid {
		flex-direction: column-reverse;
	}
	
	.aurora-feature-item .icon-illustration {
		justify-content: center;
	}
	
	.aurora-feature-item .info {
		margin-top: 4rem;
	}
}

@media screen and (max-width:750px){
	
	
}

@media screen and (max-width:720px){
	.aurora-feature-item .info{
		padding:1.5rem;
	}
}