.cBlock2list {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 40px;
}
.cBlock2list .cBlock2Item .cBlock2Item_img img {
	border-radius: 20px;
	background: rgba(25, 140, 240, 1);
	width: 100%;
}
.cBlock2list .cBlock2Item .cBlock2Item_img {
	max-width: 448px;
	width: 100%;
}
.cBlock2list .cBlock2Item .cBlock2Item_left {
	width: 60px;
	height: 100px;
	color: rgba(255, 255, 255, 1);
	font-family: Montserrat;
	font-size: 100px;
	font-weight: 600;
	line-height: 100%;
	letter-spacing: 0;
	text-align: center;
}
.cBlock2list .cBlock2Item {
	width: 100%;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: 60px;
	padding: 50px 40px;
	color: #fff;
	box-sizing: border-box;
	border-radius: 20px;
	background: linear-gradient(90.00deg, rgba(81, 156, 212, 0.2) 64%,rgba(42.02830123901367, 80.94339752197266, 110, 0) 100%);
}
.pageContent h2.cBlock2heading {
	color: #fff;
	font-family: Montserrat;
	font-size: 35px;
	font-weight: 600;
	line-height: 100%;
	letter-spacing: 0;
	text-align: left;
	margin-top: 80px;
	margin-bottom: 40px;
}
.cBlock2Item_right {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 10px;


}
.cBlock2Item_title {
	color: rgba(255, 255, 255, 1);
	font-family: Montserrat;
	font-size: 25px;
	font-weight: 600;
	line-height: 100%;
	letter-spacing: 0;
	text-align: left;
}

.cBlock2Item_text {
	color: rgba(255, 255, 255, 1);
	font-family: Montserrat;
	font-size: 18px;
	font-weight: 400;
	line-height: 100%;
	letter-spacing: 0%;
	text-align: left;
}

.cBlock2 .formBtn {
	width: 100%;
	height: 62px;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: 10;
	padding: 10px 20px 10px 20px;
	border-radius: 50px;
	color: #fff;
	text-decoration: none;
	background: rgba(76, 175, 250, 1);
	margin-top: 15px;
	box-sizing: border-box;
}

@media screen and (max-width: 1440px) {
	.pageContent h2.cBlock2heading {
		margin-top: 40px;
	}
	.cBlock2list .cBlock2Item {
		display: grid;
	}

	.cBlock2flex {
		flex-direction: column;
	}

	.cBlock2Item {
		display: grid;
		grid-template-columns: auto 1fr;
		grid-template-rows: auto auto;
		column-gap: 20px;
	}

	.cBlock2Item_left {
		grid-column: 1;
		grid-row: 1;
	}

	.cBlock2Item_right {
		grid-column: 2;
		grid-row: 1;
	}

	.cBlock2Item_img {
		grid-column: 1 / span 2;
		grid-row: 2;
		margin-top: 15px;
		text-align: center;
	}

	.cBlock2Item_img img {
		max-width: 100%;
		height: auto;
	}
	.cBlock2list .cBlock2Item {
		gap: 25px;
		padding: 20px;
	}
	.cBlock2list .cBlock2Item .cBlock2Item_left {
		width: 40px;
		font-size: 70px;
	}
}