.aurora-feature-item{
	color: #fff;
	margin: 30px 0;
	position: relative;
}

.aurora-feature-item .image{
	background-size:cover;
	background-position:center center;
	padding-bottom:40%;
	width:100%;
	position:relative;
}

.aurora-feature-item .image .icon {
	position: absolute;
	right: 0;
	top: 20px;
	background: var(--accent-color);
	width: 48px;
	height: 48px;
	color: var(--dark-background-color-darker);
	justify-content: center;
	align-items: center;
	display: flex;
	font-size: 24px;
	clip-path: var(--clip-10px-bottom-left);
}

.aurora-feature-item .wrapper {
	position: relative;
	border-radius: 5px;
	overflow: hidden;
}

.aurora-feature-item .info-layout {
	position: absolute;
	padding: 5%;
	z-index: 10;
	width: 100%;
	height: 100%;
	top: 0;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	max-width: 480px;
	background-color: rgba(81, 109, 128, 0.3);
	backdrop-filter: blur(12px);
}

.aurora-feature-item .info{
	color:#fff;
}

.aurora-feature-item .info h1,
.aurora-feature-item .info h2,
.aurora-feature-item .info h3,
.aurora-feature-item .info p{
	color:#fff;
}

@media screen and (max-width:900px){
	.aurora-feature-item .info-layout{
		position:relative;
		max-width:none;
		background-color:var(--brand-dark-color);
	}
	.aurora-feature-item .image{
		padding-bottom:66%;
	}
}



