.counters {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    justify-content: center;
    overflow: hidden;
    margin: 0 -2em;
}
.counter {
	color: #00357d;
	font-weight: 700;
	text-align: center;
	width: 100%;
	visibility: hidden;
	opacity: 0;
	transition: all .5s ease-in-out;
}
.counter a {
	color: #00357d;
	text-decoration: none;
}
.counter a:hover {
	color: #000000;
}
.counter.is-visible {
    visibility: visible;
	opacity: 1;
}
@media (min-width: 480px) {
	.counter {
		width: 50%;
	}
}
@media (min-width: 768px) {
	.counter {
		width: 33.33%;
	}
}
.counter__container {
	padding: 1em 2em;
}
.counter__container svg {
	height: 100px;
}
.counter__number {
	font-size: 3em;
	display: block;
	line-height: 1.25em;
}
.counter__title {
	text-transform: uppercase;
	display: block;
}