body {
	margin: 0;
	padding: 0;
}
#hero {
	position: relative;
}
#hero video {
	height: 98vh;
	width: 100%;
	background-position: absolute;
	z-index: 10;
	object-fit: cover;
}
#hero .content {
	background-color: rgba(0,0,0,0.5);
	height: 93vh;
	width: 100%;
	z-index: 20;
	position: absolute;
	top: 60px;
	left: 0;
	text-align: center;
	
	display: flex;

	
}
#hero .content h1 {
	color: white;
	font-family: "Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, "sans-serif";
}
.grid-gallery{
	width: 100%;
	max-width: 1800px;
	margin: auto;
	padding: 0px 0px 30px 0px;
	display: grid;
    grid-template-columns: repeat(8, 1fr);
    grid-auto-rows: 250px 250px;
    grid-auto-flow: dense;
    grid-gap: 10px;
	
}
.grid-gallery .grid-item{
    position: relative;
    background-color: #efefef;
    overflow: hidden;
}
.grid-gallery .grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: thick;
    border-color: aliceblue;	
 	overflow: hidden;
}
.grid-gallery .grid-item:hover img{
	transform: scale(1.1);
}
.grid-gallery .grid-item a {
	cursor: zoom-in;
}
.grid-gallery .grid-item:nth-child(3n - 2) {
	grid-column: span 2;
	grid-row: span 2;	
}
.text{
	position: absolute;
	bottom: 10px;
	left: 50%;
	transform: translate(-50%);
	color: aliceblue;
	background-color: rgba(3,3,3,0.77);
	padding: 5px;
	text-align: center;
}
@media (max-width: 768px) {
	.grid-gallery {
		grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
		grid-auto-rows: 250px;
	}
	.grid-gallery .grid-item:nth-child(3n - 2){
		grid-column: unset;
		grid-row: unset;
	}
}
.card-img{
	height: 350px;
	width: 100%;
	overflow: hidden;
}
.card-text{
	position: absolute;
	bottom: 10px;
	left: 50%;
	transform: translate(-50%);
	color: aliceblue;
	background-color: rgba(0,0,0,0.81);
	padding: 5px;
	text-align: center;
}
.container-fluid{
	overflow: scroll;
	height: inherit;
}
.navbar {
	background-color: rgba(0,0,0,0.5);
}
.footer {
	color: white;
}
