/* Import Google Fonts */
@import 'https://fonts.googleapis.com/css?family=Material+Icons|Roboto:100,200,300,400,500,600,700,800,900|Roboto+Condensed:100,200,300,400,500,600,700,800,900|Open+Sans+Condensed:100,200,300,400,500,600,700,800,900|Righteous:100,200,300,400,500,600,700,800,900';

/* Set a unified style */
*{
	box-sizing:border-box;
	margin:0px;
	padding:0px;
	text-decoration:none;
	list-style:none;
	border:0px;
}
body{
	font-size:24px;
	font-family:'Roboto';
}
a{
	transition:all ease 0.3s;
}
.section{
	margin-top: 30px;
	scroll-margin-top: 110px;
}
.section-header{
	font-size:24px;
	font-weight:500;
	margin:30px 0px;
	text-align: center;
	
}

/* Set the layouts */
.lx-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    margin-bottom: 48px; /* space before next section */
}
.lx-galleryItem{
	position:relative;
	opacity:1.0;
	overflow:hidden;
	-webkit-transition: all 0.8s;
	transition: all 0.8s;
}

@media(max-width:767px){
	.lx-galleryItem{
		padding:0px;
	}

}