@charset "utf-8";

.counters .counter-container {
	position: relative;
	padding: 0 1.4rem .2rem;
}
.counters .counter-bg {
	position: absolute;
	height: -webkit-calc( 100% - 2.4rem );
	height: -moz-calc( 100% - 2.4rem );
	height: calc( 100% - 2.4rem );
	width: 100%;
	left: 0;
	bottom: 0;
	border: .2rem solid #d6d6d6;
	z-index: 1;
}
	.counters .counter-bg::before,
	.counters .counter-bg::after {
        content: '';
        position: absolute;
        width: 0;
        height: 0;
        bottom: -.2rem;
        left: -.2rem;
        border-style: solid;
        border-color: transparent;
        border-width: 1.2rem 0 0 1.2rem;
	}
    .counters .counter-bg::before {
        border-left-color: #d6d6d6;
        border-width: 1.5rem 0 0 1.5rem;
    }
    .section:nth-of-type( odd ) .counters .counter-bg::after {
        border-left-color: #fff;
    }
    .section:nth-of-type( even ) .counters .counter-bg::after {
        border-left-color: #f5f5f5;
    }
.counters .counter-wrapper {
	position: relative;
	z-index: 10;
}
.counters .counter-value-wrapper {
	position: relative;
	background-color: #6bbacd;
	color: #fff;
}
	.counters .counter-value-wrapper::before {
		content: '';
		position: absolute;
		width: 0;
		height: 0;
		top: 0;
		right: 0;
		border-style: solid;
		border-color: transparent;
		border-width: 0 1.2rem 1.2rem 0;
	}
	.section:nth-of-type( odd ) .counters .counter-value-wrapper::before {
		border-right-color: #fff;
	}
	.section:nth-of-type( even ) .counters .counter-value-wrapper::before {
		border-right-color: #f5f5f5;
	}
.counters .counter-value {
	font-size: 3.2rem;
	line-height: 2;
}
.counters .counter-pre-value span,
.counters .counter-post-value span {
	font-size: 2.4rem;
	line-height: 2;
	opacity: .67;
}
	.counters .counter-pre-value span {
		margin-right: .6rem;
	}
	.counters .counter-post-value span {
		margin-left: .6rem;
	}
	.counters .counter-pre-value.small span,
	.counters .counter-post-value.small span {
		font-size: 1.6rem;
	}
.counters .counter-label {
	line-height: 2;
	text-align: center;
	min-height: 1.2rem;
}