/* Component 2 -------------------------- */
.component_2{
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	background-color: #5D71DD;
	color: white;
	padding: 30px;
	/* margin: 20px; */
	border-radius: 10px;
	width: 320px;
	height: 400px;
	cursor: pointer;
	transition: transform 0.1s;
}
.component_2:hover{
	box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4);
	transform: translateY(-2px);
}
		/* Title Component */
		.component_2_titleContainer{
			
		}
				/* Tag */
				.component_2_tag{
					background-color: #7D8DE4;
					padding: 8px 16px;
					border-radius: 6px;
					display: inline-flex;
				}
				.component_2_title{
					font-size: 24px;
					line-height: 30.77px;
					font-weight: 450;
					margin-top: 30px;
				}


/* Для смены изображений */
.change_image1{
	background-image: url(../src/image1.svg);
}
.change_image2{
	background-image: url(../src/image2.svg);
}

/* Перезаписывающие свойства */
/* for component_2_tag */
.bg255_255_255_0_2{
	background-color: rgba(255, 255, 255, 0.2);
}

/* end -------------------------- */