.containerWRightBorder {
	display: flex;
	flex-direction: row;
	position: relative;
}
.helpCentre_leftContainer {
	display: flex;
	flex-direction: column;
	background-color: white;
	margin: 0 0.5rem 1rem 0;
	border: lightgrey solid 0.2rem;
	border-radius: 1rem;
	padding: 2rem 0;
	height: max-content;
	width: 90%;
	
}

.rightBorderBlock {
	display: block;
	height: 90%;
	border-right: solid 5px rgb(221,214,229);
	border-radius: 3rem;
	position: absolute;
	right: 4%;
	top: 5%;
}
.block {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	/*flex:1;*/
	margin-bottom: 0.5rem;
}

.block p {
	color:#2c8096;
	font-size:1.6rem;
	padding: 1rem 0 0 0;
	margin: 0;
}
.imgLink {
	text-decoration: none; 
}

img.helpCentre_url {
	height: 120px;
}

@media (max-width:991.98px) {
	.helpCentre_leftContainer {
		display: flex;
		flex-direction: row;
		padding: 1rem 0 0 0;
		align-items: center;
		justify-content: center;
		width: 100%;
		height: max-content;
	}
	.helpCentre_leftContainer a {
		display:flex;
		//justify-content:center;
	}
	
	.rightBorderBlock {
		display: none;
	}

	.block {
		width: calc(33vw - 2rem);
		height: auto;
		margin-bottom: 0;
	}
	.block img{
		max-width: 50%;
		height: auto;
		width: auto;
	}
	.block p {
		font-size:1.4rem;
		text-align: center;
	}
}