.tf-step .step {
	display: flex;
	display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
	flex-wrap: wrap;
	margin-left: -32px;
	position: relative;
}
.tf-step .step .item-step {
	margin-left: 32px;
	display: flex;
	display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
}

.tf-step.column-1 .step .item-step {
	width: calc(100% - 32px);
}
.tf-step.column-2 .step .item-step {
	width: calc(50% - 32px);
}
.tf-step.column-3 .step .item-step {
	width: calc(33.33333% - 32px);
}
.tf-step.column-4 .step .item-step {
	width: calc(25% - 32px);
}
.tf-step.column-5 .step .item-step {
	width: calc(20% - 32px);
}

.tf-step .inner {
	border-radius: 16px;
	backdrop-filter: blur(6px);
	padding: 54px 32px 32px 32px;
	display: flex;
	display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
	flex-direction: column;
	margin-bottom: 60px;
	-webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -ms-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

.tf-step .number-step {
    border-radius: 20px;
    background: var(--theme-secondary-color);
    width: 80px;
    height: 80px;
    color: #fff;
    display: grid;
    align-items: center;
    justify-content: center;
    margin-top: -95px;
    margin-bottom: 14px;
	margin-left: 3px;
}
.tf-step .heading {
	font-size: 20px;
	font-weight: 700;
	line-height: 28px;
	text-transform: capitalize;
	color: #fff;

}
.tf-step .text {
	font-size: 16px;
	font-weight: 400;
	line-height: 26px;
	color: #B1B1B1;
}

.tf-step.dark .inner {
	border: 1px solid var(--theme-primary-color);
	background: var(--theme-primary-color);
}

.tf-step .inner {
	border: 1px solid rgba(255, 255, 255, 0.08);
	background: radial-gradient(41.35% 54.74% at 33.03% -4.74%, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.00) 100%);
}

.tf-step.light .inner:hover {
	transform: translateY(-5px);
}

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

@media (max-width: 991px) {
	.tf-step.column-md-1 .step .item-step {
		width: calc(100% - 32px);
	}
	.tf-step.column-md-2 .step .item-step {
		width: calc(50% - 32px);
	}
	.tf-step.column-md-3 .step .item-step {
		width: calc(33.33333% - 32px);
	}
}

@media (max-width: 767px) {
	.tf-step.column-xs-1 .step .item-step {
		width: calc(100% - 32px);
	}
	.tf-step.column-xs-2 .step .item-step {
		width: calc(50% - 32px);
	}
}