/*==============================================
Counter Two
===============================================*/
.counter-two {
	position: relative;
	display: block;
	background: var(--reroof-white);
	padding: 0px 0px 90px;
	z-index: 1;
}

.counter-two__single {
	position: relative;
	display: flex;
	align-items: center;
	margin-bottom: 30px;
	border: 1px solid var(--reroof-bdr-color);
	padding: 38px 15px 43px;
	border-radius: 20px;
}

.counter-two__single-icon {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 60px;
	height: 60px;
	background: var(--reroof-base);
	border-radius: 50%;
	overflow: hidden;
}

.counter-two__single-icon span::before {
	position: relative;
	display: inline-block;
	color: var(--reroof-white);
	font-size: 35px;
	line-height: 35px;
	transition: all 500ms linear;
	transition-delay: 0.1s;
	transform: scale(1);
}

.counter-two__single:hover .counter-two__single-icon span::before {
	transform: scale(0.9);
}

.counter-two__single-content {
	position: relative;
	display: block;
	margin-left: 18px;
}

.counter-two__single-content .count-box {
	position: relative;
	display: flex;
	align-items: center;
}

.counter-two__single-content .count-box h2 {
	font-size: 50px;
	line-height: 60px;
	font-weight: 500;
	margin-bottom: 5px;
}

.counter-two__single-content .count-box .plus {
	position: relative;
	display: inline-block;
	color: var(--reroof-black);
	font-size: 50px;
	font-weight: 700;
	top: -2px;
}

.counter-two__single-content p {
	color: var(--reroof-black);
	margin:0;
	line-height: 1.2rem;
}


























/*--------------------------------------------------------------
# End
--------------------------------------------------------------*/



@media (max-width: 1399px) {
}

@media (max-width: 1199px) {
}

@media (max-width: 991px) {
}

@media (max-width: 767px) {
}

@media (max-width: 575px) {
	.counter-two__single-icon{
		width:40px;
		height:40px;
	}
	.counter-two .row{
		--bs-gutter-x: 12px;
	}
	.counter-two__single-icon span::before{
		font-size:20px;
	}
	.counter-two__single-content p {
		font-size: 14px;
		width: min-content;
	}
}