*
{
	margin: 0;
	padding: 0;
}

#nav-bar
{
	position: sticky;
	top: 0;
	z-index: 10;
}
.navbar-brand img
{
	height: 60px;
	padding-left: 50px;

}
.navbar-nav li
{
	padding: 0 10px;

}
.navbar-nav li a 
{
	float: right;
	text-align: left;
}
#nav-bar ul li a:hover{
	color: #007bff!important;

}
.navbar
{
	background: #fff;
}
.navbar-toggler
{
	border: none!important;

}
.nav-link
{
	color: #555!important;
	font-weight: 600;
	font-size: 16px;
}

body{
	font-family: sans-serif;
	background-color: #efefef;
}
h1 
{

 text-align: center;
 color:#555!important;
 padding-bottom: 10px;

}

h1::after
{
	content: '';
	background: #007bff;
	display: block;
	height: 3px;
	width: 170px;
	margin: 20px auto 5px;
}
.gallery{
	margin: 10px 50px;
}
.gallery img{
	width: 200px;
	padding: 5px;
	
	transition: 1s;
}
.gallery img:hover{
	filter: grayscale(0);
	transform: scale(1.1);
}

/* 
  ##Device = Desktops
  ##Screen = 1281px to higher resolution desktops
*/

@media (min-width: 1281px) {
  
  //CSS
  
}

/* 
  ##Device = Laptops, Desktops
  ##Screen = B/w 1025px to 1280px
*/

@media (min-width: 1025px) and (max-width: 1280px) {
  
  //CSS
  
}

/* 
  ##Device = Tablets, Ipads (portrait)
  ##Screen = B/w 768px to 1024px
*/

@media (min-width: 768px) and (max-width: 1024px) {
  
  //CSS
  
}

/* 
  ##Device = Tablets, Ipads (landscape)
  ##Screen = B/w 768px to 1024px
*/

@media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
  
  //CSS
  
}

/* 
  ##Device = Low Resolution Tablets, Mobiles (Landscape)
  ##Screen = B/w 481px to 767px
*/

@media (min-width: 481px) and (max-width: 767px) {
  
  //CSS
  
}

/* 
  ##Device = Most of the Smartphones Mobiles (Portrait)
  ##Screen = B/w 320px to 479px
*/

@media (min-width: 320px) and (max-width: 480px) {
  
  //CSS
  
}