.section-heading {
	text-align: center;
}

.ve-get-current-rates-wrapper {
	display: flex;
	flex-direction: column;
	gap: 20px;
	padding: 40px;
}

.min-and-max-row {
	display: flex;
	flex-direction: row;
	justify-content: center;
	gap: 20px;
}

.rate-box {
	width: 400px;
	padding: 20px;
	border: 2px solid #d8d8d8;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	font-size: 21px;
}

.rate-box .label-rate {
	font-size: 21px;
}

.rate-box h2 {
	font-size: 38px;
}


.average-row {
	display: flex;
	justify-content: center;
}

.rate-box.blue {
	border-color: #0000FF;
}

.blue .label-rate, .blue h2 {
	color: #0000FF!important;
}

@media only screen and (max-width: 768px) {
	.min-and-max-row {
		flex-direction: column;
	}
	
	.rate-box {
		width: 100%;
	}
	
	.label-rate {
		text-align: center;
	}
}