.card {
	position: relative;
	padding: 50px;
	border-radius: 30px;
}

.card_black-gradient {
	background: rgb(47, 50, 75);
	background: radial-gradient(circle, rgba(47, 50, 75, 1) 0%, rgba(43, 51, 58, 1) 100%);
}

.card_black {
	background-color: #353845;
}

.card_grey-gradient {
	background: rgb(228, 228, 245);
	background: radial-gradient(circle, rgba(228, 228, 245, 1) 0%, rgba(246, 247, 249, 1) 100%);
}

.card__bottom-texts {
	display: flex;
	justify-content: space-between;
}

.card__bottom-text {
	width: calc(33% - 10px);
}

.card__bottom-text__title {
	color: white;
	font-size: 24px;
	font-weight: 500;
}

.card__bottom-text__description {
	color: white;
	font-size: 16px;
	line-height: 25px;
	font-weight: 400;
}

.card__bottom-text__divider {
	width: 100%;
	height: 1px;
	background-color: hsl(215, 30.5%, 58.2%, 0.3);
	opacity: 1;
}

@media (max-width: 991px) {
	.card:not(.demo) {
		padding: 100px 25px;
	}
}

@media (max-width: 575px) {
	.card:not(.demo) {
		padding: 50px 10px;
	}
}
