*
{
	margin: 0;
	padding: 0;
}
/*--------Navigation--------*/
#nav-bar{
	position: sticky;
	top: 0;
	z-index: 10;
}
.navbar-brand img
{
	height: 73px;
	padding-left: 40px;


}
.navbar-brand p
{
	font-size: 11px;
	font-family: sans-serif;
	margin-bottom: 0;
	margin-top: 5px;
	margin-left: 28px;
}
.navbar-nav li
{
	padding: 0 10px;
}
.navbar-nav li a
{
	float: right;
	text-align: left;
	margin-top: 25px;
}
#nav-bar ul li a:hover{
	color: #007bff;
}
.navbar
{
	background: #fff;

}
.navbar-toggler
{
	border: none;
}
.nav-link 
{
	color: #555;
	font-weight: 600;
	font-size: 16px; 
}
/*------------------------------About----------------*/
/*--------AbotUs-----------*/
#about
{
	padding-top: 50px;
	padding-bottom: 50px;
	color: #555;
	background: #efefef;
}
h1
{
	text-align: center;
	color: #555;
	padding-bottom: 10px;
}
h1::after
{
	content: '';
	background: #007bff;
	display: block;
	height: 3px;
	width: 250px;
	margin: 20px auto 5px;
}
.container
{
	width: 1280px;
	margin: 10px auto;
}
.container .box
{
	position: relative;
	width: 300px;
	height: 300px;
	background: #ff0;
	margin: 10px;
	box-sizing: border-box;
	display: inline-block;
	margin-left: 50px; 
}
.container .box .ImgBox
{
	position: relative;
	overflow: hidden;
}
.container .box .ImgBox img
{
	max-width: 100%;
	transition: transform 2s;
}

.container .box:hover .ImgBox img
{
	transform: scale(1.2);
}
.container .box .details
{
	position: absolute;
	top: 10px;
	left: 10px;
	bottom: 10px;
	right: 10px;
	background: rgba(0,0,0,0.5);
	transform: scaleY(0);
	transition: transform .5s;

}
.container .box:hover .details
{
    transform: scaleY(1);
}
.container .box .details .content
{
	position: absolute;
	top: 70px;
	left: 20px;
	transform: translateY(-50%);
	padding: 15px;
	font-size: 20px;
	font-family: sans-serif;
	color: #fff;
	text-align: center;
	margin-top: 60px;
}
.container .box .details .content p
{
	margin: 10px 0 0;
	padding: 0;

}
.about-content
{
	padding: 100px;
	font-size: 20px;
	font-family: sans-serif;
	font-weight: lighter;
	text-align: center;
}
/*--------footer-------*/
#footer
{
	padding: 12px;
}
.fa-copyright
{
	margin: 5px;
}
.fa
{
  width: 30px;
  height: 30px;
}
