@charset "utf-8";
/* CSS Document 
body{
	margin: 0;
	padding: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	font-family: Courier New;

}
.border{
	width: 100%;
	height: 50px;
	background: #858584;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 10px;
	margin-bottom: 10px;
	
	}
.border:hover{background: #FF9E00;}

.border .box{
	position: relative;
	width: 300px;
	height: 50px;
	box-sizing: border-box;
	text-align: center;
	border-right: 1px solid rgba(0,0,0,.2);
	color: black;
	overflow: hidden;
	text-shadow: 20px 10px 35px rgba(0,0,0,1)
	
}

.border .box:last-child{
	border: none;
}
.border .box .icon{
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	font-size: 28px;
	transition: 0.5s;
	
}

.border .box .icon .fa{
	padding-right: 10px;
	transition: 0.5s;
	color: black;
}


.border .box:hover .icon{
	transform: translateY(-100%);
	
}

.border .box:hover .icon .fa{
	transform: translateY(-100%);
	font-size: 80px;
	opacity: .1;
	transition-delay: .5s;
	z-index: -1;
	
}

.border .box .details{
	position: absolute;
	top: 0;
	left: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	transform: translateY(100%);
	transition: 0.5s;
	font-size: 28px;
}
.border .box:hover .details{
	transform: translateY(0);
	
}
@media screen and (max-width: 768px){
	.border .box .details{
		font-size: 15px;
	}
	.border .box .icon{
		font-size: 15px;
	}
}*/
body{
	
	margin: 0;
	padding: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 100vh;
	font-family: Courier New;
}
.border{
	border-top: 1px solid black;
	width: auto;
	margin: 0 auto;
	margin-top: 20px;
	display: flex;
	justify-content: space-between;
	margin-right: 20px;
	margin-left: 20px;
	
}
.border .box{
	text-align: center;
}
 
.border .box .icon .fa{
	font-size: 30px;
	cursor: pointer;
	text-shadow: 20px 10px 35px rgba(0,0,0,5);
	
}


.border .box .icon h3 {
position: relative;
	overflow: hidden;
	font-weight: 400px;
	margin: 0;
	padding:2px 5px;
	font-size: 24px;
	transition-delay: 0.3333s;
	color: transparent;
}
/*--------------------------------------------------------------*/
.border .box .icon h3 a{
position: relative;
	overflow: hidden;
	font-weight: 400px;
	margin: 0;
	padding:2px 5px;
	font-size: 24px;
	transition-delay: 0.3333s;
	color: transparent;
}
.border .box .fa:hover ~ h3 a
{
	color: #000;
}

.border .box .fa:hover ~ h3 a:before
{
	left: -100%;
}
/*------------------------------------------------------------*/
.border .box .fa:hover ~ h3
{
	color: #000;
}
.border .box .icon h5{
	font-weight: 600;
	margin: 5px 0;
	font-style: 30px;
}
.border .box .icon h3:before{
	content: '';
	position: absolute;
	top: 0;
	left: 100%;
	width: 100%;
	height: 100%;
	background: #00bcd4;
	transition: 1s;
	
}

.border .box .fa:hover ~ h3:before
{
	left: -100%;
}
@media screen and (max-width: 768px){
	.ab{margin-top: 15px;}
	.ab1{font-size: 10px;width: 100%;margin-left: 2px;}
	.border .box .icon .fa{font-size: 15px;}
	.border .box .icon h3{font-weight: 100px;font-size: 10px; }
	.border .box .icon h3 a{font-size: 10px; }
}











