
.section1{
	position: relative;
	width: 100%;
	height: 100vh;
	margin-top: 100px;
	justify-content: center;
	text-align: center;
	border-radius: 10px;
}
.section1 video{
	object-fit: cover;
	margin-top: auto auto;
	overflow: hidden;
	height: 95%;
	border-radius:10px;
	
}
.section1 .navigation{
	position: absolute;
	padding: 1px;
	bottom: 10%;
	left: 50%;
	transform: translateX(-50%);
	z-index: 100;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100px;
	width: 70px;
}

.section1 .navigation li{
	list-style: none;
	cursor: pointer;
	border-radius: 6px;
	margin: 1px;
	border: 1px solid #dba84d;
	opacity: 0.7;
}

.section1 .navigation li img{
	transition: 0.5s;
	width: 40px;
}
.section1 .navigation li img:hover{
	height: 150px;
	width: 100px;
	border: 2px solid #b98731;
}



@media (max-width: 768px) {
	.section1 {
		position: relative;
		width: 400px;
		height: 420px;
		justify-content: center;
		text-align: center;
		border-radius:10px;
		margin-top: 120px;

	}


	.section1 video{
		top: 0;
		left: 30%;
		width: 50%;
		height: 100%;
		object-fit: cover;
		margin-top: auto auto;

	}
}