.advantages {
	padding: 80px 0;
}
.advantages__row {
	display: flex;	
	flex-wrap: wrap;
	gap: 20px;
}
.advantages__item {
	flex: 1 1 49%;
	min-height: 140px;
	position: relative;
	border-radius: 20px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding: 10px 20px;
	background-color: linear-gradient(315deg, rgba(160, 100, 255, 0.20) 0%, rgba(10, 0, 25, 0.00) 100%), rgba(255, 255, 255, 0.05);
	background-repeat: no-repeat;
	background-position: right top;	
	border-radius: 20px;	
	backdrop-filter: blur(25px);
}
.advantages__item_image-1 {
	background: url("../img/advantages/1.png") no-repeat right top, linear-gradient(315deg, rgba(160, 100, 255, 0.20) 0%, rgba(10, 0, 25, 0.00) 100%), rgba(255, 255, 255, 0.05);
}
.advantages__item_image-2 {
	background: url("../img/advantages/2.png") no-repeat right top, linear-gradient(315deg, rgba(160, 100, 255, 0.20) 0%, rgba(10, 0, 25, 0.00) 100%), rgba(255, 255, 255, 0.05);
}
.advantages__item_image-3 {
	background: url("../img/advantages/3.png") no-repeat right top, linear-gradient(315deg, rgba(160, 100, 255, 0.20) 0%, rgba(10, 0, 25, 0.00) 100%), rgba(255, 255, 255, 0.05);
}
.advantages__item_image-4 {
	background: url("../img/advantages/4.png") no-repeat right top, linear-gradient(315deg, rgba(160, 100, 255, 0.20) 0%, rgba(10, 0, 25, 0.00) 100%), rgba(255, 255, 255, 0.05);
}
.advantages__item_image-5 {
	background: url("../img/advantages/5.png") no-repeat right top, linear-gradient(315deg, rgba(160, 100, 255, 0.20) 0%, rgba(10, 0, 25, 0.00) 100%), rgba(255, 255, 255, 0.05);
}
.advantages__item_image-6 {
	background: url("../img/advantages/6.png") no-repeat right top, linear-gradient(315deg, rgba(160, 100, 255, 0.20) 0%, rgba(10, 0, 25, 0.00) 100%), rgba(255, 255, 255, 0.05);
}
.advantages__item_image-7 {
	background: url("../img/advantages/7.png") no-repeat right top, linear-gradient(315deg, rgba(160, 100, 255, 0.20) 0%, rgba(10, 0, 25, 0.00) 100%), rgba(255, 255, 255, 0.05);
}
.advantages__item_image-8 {
	background: url("../img/advantages/8.png") no-repeat right top, linear-gradient(315deg, rgba(160, 100, 255, 0.20) 0%, rgba(10, 0, 25, 0.00) 100%), rgba(255, 255, 255, 0.05);
}
.advantages__subtitle {
	font-size: 30px;
	font-family: Furore, sans-serif;
	line-height: 40px;
	letter-spacing: 1.5px;
	color: rgba(255, 0, 255, 1);
}
.advantages__text {
	font-size: 18px;
	font-family: Montserrat, sans-serif;
	line-height: 24px;
	color: rgba(220, 220, 240, 1);
}
.advantages__hover {
	position: absolute;
	height: 0;
	bottom: -50px;
	left: 0;
	width: 100%;
	border-radius: 20px;
	background: rgba(150, 0, 255, 1);
	backdrop-filter: blur(25px);
	font-size: 18px;
	font-family: Montserrat, sans-serif;
	line-height: 24px;
	color: rgba(220, 220, 240, 1);
	padding: 10px 20px;
	transition: all 0.3s ease-in-out;
}
.advantages__item:hover .advantages__hover {
	height: 100%;
	bottom: 0;
}
@media(max-width: 596px) {
	.advantages__hover {
		font-size: 14px;
		line-height: 20px;
	}
}
@media(max-width: 394px) {
	.advantages__hover {		
		line-height: 18px;
		padding: 10px;
	}
}