/* Features after tabs widget */

.features_after_tabs_widget {
	display: flex;
	flex-direction: row;
	justify-content: space-around;
}

.features_after_tabs_widget .item {
	display: flex;
	flex-direction: column;
	max-width: 280px;
	float: left;
}

.features_after_tabs_widget .item:last-child {
	margin-right: 0;
}

.features_after_tabs_widget .item .vc_btn3-container {
	display: flex;
	margin-top: auto;
	padding-top: 24px;
	margin-bottom: 36px;
}

.features_after_tabs_widget .item .wrapper {
	text-align: center;
	padding: 42px 28px 16px;
	background: #F4F4F5;
	border-radius: 12px;
}

.features_after_tabs_widget .item .wrapper img {
	max-width: 100%;
	height: auto;
	box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.2);
}

.features_after_tabs_widget .item .wrapper span {
	display: inline-block;
	margin-top: 16px;
	font-family: 'Proxima Nova';
	font-weight: bold;
	font-size: 16px;
	line-height: 20px;
}

#main_content .features_after_tabs_widget .item p {
	margin-top: 24px;
	margin-bottom: 0;
	font-size: 16px;
	line-height: 24px;
}


/* Tablet */

@media screen and (max-width: 768px) {

	.features_after_tabs_widget .item .wrapper {
		padding: 20px 20px 16px;
	}

}

/* Mobile */ 

@media screen and (max-width: 414px) {

	.features_after_tabs_widget {
		flex-direction: column;
	}

	.features_after_tabs_widget .item {
		max-width: none;
	}

	.features_after_tabs_widget .item .vc_btn3-container {
		padding-top: 0px;
	}

	.features_after_tabs_widget .item .wrapper {
		padding: 42px 52px 16px;
	}

	#main_content .features_after_tabs_widget .item p {
		margin-top: 16px;
		margin-bottom: 16px;
		text-align: left !important;
	}

}