.section-block.cards-block{
	padding: 80px 0;
	font-family: var(--primary_font);
	color: #4F5459;
	font-size: 1rem;
}

.section-block.cards-block p a{
	text-decoration: none;
	color: var(--secondary_color);
}

.section-block.cards-block p a:hover{
	text-decoration: underline;
}

.section-block.cards-block .intro{
	margin: 0 auto 30px;
}

.section-block.cards-block .block-title{
	font-weight: 400;
	margin-bottom: 20px;
	text-align: center;
	position: relative;
}

.section-block.cards-block .pre-title{
	text-align: center;
	margin-bottom: 30px;
	padding-bottom: 10px;
	position: relative;
	color: var(--secondary_color);
}

.section-block.cards-block .pre-title:after{
	content: '';
	width: 40px;
	height: 4px;
	background: var(--tertiary_color);
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	margin: 0 auto;
}

.section-block.cards-block .cards-wrap{
	display: flex;
	flex-wrap: wrap;
	gap: 23px;
}

.section-block.cards-block .card-wrap{
	background: #F5F5F5;
	width: 100%;
	text-align: center;
	position: relative;
}

.section-block.cards-block .card-wrap.style-2{
	background: var(--primary_color);
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
}

.section-block.cards-block .img-wrap{
	width: 100%;
	height: 200px;
	position: relative;
	background: #4F5459;
}

.section-block.cards-block .img-wrap img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.section-block.cards-block .card-details{
	padding: 20px 18px 10px;
}

.section-block.cards-block .style-2 .card-details{
	font-size: 1.125rem;
	color: #fff;
	padding: 40px 18px;
}

.section-block.cards-block .card-title{
	margin-bottom: 8px;
	padding: 0;
}

.section-block.cards-block .card-wrap.style-2 .card-title{
	color: #fff;
	margin-bottom: 30px;
	padding-bottom: 10px;
	position: relative;
}

.section-block.cards-block .card-wrap.style-2 .card-title:after{
	content: '';
	width: 40px;
	height: 4px;
	background: var(--tertiary_color);
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	margin: 0 auto;
}

.section-block.cards-block .card-title a{
	color: #000;
}

.section-block.cards-block .card-desc{
	padding-bottom: 20px;
}

.section-block.cards-block .btn-wrap{
	text-align: center;
	padding-bottom: 20px;
}

.section-block.cards-block.card-style-2 .card-wrap{
	border-top: 6px solid var(--secondary_color);
}

.section-block.cards-block.card-style-2 .intro{
	max-width: 680px;
}

.section-block.cards-block.card-style-2 .card-details{
	padding-top: 40px;
}

.section-block.cards-block .card-wrap.style-3{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	color: #fff;
	min-height: 450px;
}

.section-block.cards-block .card-wrap.style-3 .card-title{
	color: #fff;
	text-transform: uppercase;
}

.section-block.cards-block .card-wrap.style-3 .img-wrap{
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	height: 100%;
}

.section-block.cards-block .card-wrap.style-3 .card-details{
	padding: 30px 20px;
	position: relative;
	z-index: 1;
	display: none;
	-webkit-transition: all .1s ease;
	-moz-transition: all .1s ease;
	-ms-transition: all .1s ease;
	-o-transition: all .1s ease;
	transition: all .1s ease;
}

.section-block.cards-block .card-fader{
	background: var(--primary_color);
	opacity: 0.8;
	position: absolute;
	bottom: 0;
	right: 0;
	left: 0;
	width: 100%;
	height: 223px;
	line-height: 0;

	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-ms-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}

.section-block.cards-block .card-bottom{
	position: absolute;
	bottom: 0;
	right: 0;
	left: 0;
	height: 223px;
	padding: 30px 20px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;

	-webkit-transition: all .8s ease;
	-moz-transition: all .8s ease;
	-ms-transition: all .8s ease;
	-o-transition: all .8s ease;
	transition: all .8s ease;
}

.section-block.cards-block .card-wrap.style-3:hover .card-fader{
	height: 100%;
}

.section-block.cards-block .card-wrap.style-3:hover .card-bottom{
	display: none;
}

.section-block.cards-block .card-wrap.style-3:hover .card-details{
	display: block;
}

@media screen and (min-width: 981px) {
	.section-block.cards-block .card-wrap{
		width: calc(33.3% - 16px);
	}

	.section-block.cards-block .card-details{
		padding: 20px 18px 50px;
	}

	.section-block.cards-block .card-wrap.style-1 .btn-wrap{
		position: absolute;
		bottom: 10px;
		left: 0;
		right: 0;
	}

	.section-block.cards-block .card-wrap.style-3{
		min-height: 575px;
	}
}

@media screen and (min-width: 1100px) {
	.section-block.cards-block .cards-wrap.four-columns .card-wrap{
		width: calc(25% - 18px);
	}
}