.block-2-counter{
	background-color: var(--black);
	color: var(--white);
	font-size: 3.2rem;
	font-weight: 700;
}
.block-2-counter .flexRow{
	row-gap: 5rem;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
}

.block-2-counter .counterCol{
	width: calc( 28% + 3rem);
	padding-left: 1.5rem;
	padding-right: 1.5rem;
	aspect-ratio: 1/1;
	position: relative;
}

.block-2-counter .counterInnerWrap{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	padding: 1rem;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: 2px solid rgba(255, 255, 255, var(--border-opacity));
    transition: border-color 0.1s linear;
    box-sizing: border-box;
	border-radius: 100%;
}

.block-2-counter .counterText{
	text-align: center;
	padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.block-2-counter .counterSvg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    fill: none;
    pointer-events: none;
    /* Rotiert das SVG, damit 12 Uhr der Startpunkt ist */
    transform: rotate(-90deg);
}

.block-2-counter .border-bg {
    stroke: rgba(255, 255, 255, 0.2);
    stroke-width: 1px;
}

.block-2-counter .border-draw {
    stroke: #ffffff;
    stroke-width: 1px;
    stroke-linecap: round; /* Macht die Enden der Linie schön rund */
    stroke-dasharray: 100;
    stroke-dashoffset: 100;
    transition: none;
}


@media(max-width: 767px){
	.block-2-counter .counterCol{
		width: calc( 80% + 3rem);
		padding-left: 1.5rem;
		padding-right: 1.5rem;
	}
	.block-2-counter .flexRow{
		-webkit-box-pack: center;
		    -ms-flex-pack: center;
		        justify-content: center;
	}
}