/* codeDESIGN - custom_code_icons.css */
@charset "utf-8";

/* CUSTOM CODE ICONS */
div.custom_code_icons [class^="col-"],
div.custom_code_icons [class*=" col-"] {
	padding-left: 0px;
	padding-right: 0px;
}
div.custom_code_icons div.container {
	padding-left: 0px;
	padding-right: 0px;	
}
.custom_code_icon {
	background: #ffffff;
	position: relative;
	overflow: hidden;
	display: flex;
	z-index: 1;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 15px;
	min-height: 300px;
	text-align: center;
	color: #202020;
	transition: all 0.33s ease-in-out;
	-moz-transition: all 0.33s ease-in-out;
	-o-transition: all 0.33s ease-in-out;
	-webkit-transition: all 0.33s ease-in-out;
}
.custom_code_icon:hover {
	background: #202020;
	color: #ffffff;
}
.custom_code_icon::before {
	width: 50%;
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	border-bottom: 2px solid #FBB900;
	visibility: hidden;
	opacity: 0;
	transition: all 0.33s ease-in-out;
	-moz-transition: all 0.33s ease-in-out;
	-o-transition: all 0.33s ease-in-out;
	-webkit-transition: all 0.33s ease-in-out;
}
.custom_code_icon:hover::before {
	width: 100%;
	visibility: visible;
	opacity: 1;
}
a.custom_code_icon,
a.custom_code_icon:link,
a.custom_code_icon:visited {
	text-decoration: none;
	font-weight: 600;
}
.custom_code_icon i {
	font-size: 48px;
}
.custom_code_icon h5 {
	font: normal 14px/14px 'Myriad Pro Bold','Helvetica Neue',Helvetica,Arial,sans-serif !important;
	text-transform: uppercase;
	text-align: center;
	color: #202020;
	margin: 0px 0px 0px 0px;
	padding: 30px 0px 0px 0px;
	-moz-hyphens: none;
	-o-hyphens: none;
	-webkit-hyphens: none;
	-ms-hyphens: none;
	hyphens: none;
}
.custom_code_icon:hover h5 {
	color: #ffffff;	
}
@media only screen and (max-width: 991px) {	

	.custom_code_icon h5::after {
		content: "\f077";
		font-family: 'Font Awesome 5 Pro';
		font-weight: 100;
		font-size: 1.6em;
		display: block;
		position: absolute;
		right: 20px;
		bottom: calc(50% - 10px);
		-moz-transition: all 0.5s ease 0s;
		-webkit-transition: all 0.5s ease 0s;
		-o-transition: all 0.5s ease 0s;
		transition: all 0.5s ease 0s;
		-moz-transform: rotate(90deg) translateY(-50%);
		-webkit-transform: rotate(90deg) translateY(-50%);
		-o-transform: rotate(90deg) translateY(-50%);
		-ms-transform: rotate(90deg) translateY(-50%);
	}
	
}
@media only screen and (max-width: 767px) {

	.custom_code_icon {
		min-height: auto;
	}
	.custom_code_icon_inner {
		width: 100%;
	}
	.custom_code_icon h5 {
		float: right;
		margin: 15px 20px 0px 0px;
		padding: 0px 0px 0px 0px;
		word-wrap: normal;
		width: calc(80% - 20px);
	}
	
}
@media only screen and (max-width: 364px) {

	
}
@media only screen and (max-width: 300px) {

	.custom_code_icon h5 {
		font-size: 11px;
		line-height: 11px;
		font-weight: 500;
	}
	
}
@media only screen and (max-width: 991px) {

	.custom_code_icons .col-sm-6 a {
		border-bottom: 1px solid #FBB900;
	}
	.custom_code_icons .col-sm-6:hover a {
		background: #202020;
	}
	.custom_code_icon h5 {
		text-align: left;
	}
	
}