body,
html {
	margin: 0;
	padding: 0;
	height: 100%;
	overflow: hidden;
}

.hero-container {
	position: relative;
	height: 100vh;
	width: 100vw;
	overflow: hidden;
}

.hero-image {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	background-size: cover;
	background-position: top center;
	background-repeat: no-repeat;
	transition: opacity 1s ease-in-out;
}

.hero-logo {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	transition: opacity 1s ease-in-out;
}

.gallery {
	position: absolute;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 10px;
}

.gallery-item {
	width: 160px;
	height: 100px;
	background-size: cover;
	background-position: center;
	cursor: pointer;
	transition: transform 0.3s ease;
}

.gallery-item:hover {
	transform: scale(1.1);
}

.sliding-div {
	position: fixed;
	top: 50%;
	width: 30%;
	padding: 20px;
	background-color: none;
	z-index: 9999;
	transform: translateY(-50%);
}

.left-slide {
	left: -100%;
	height: 500px;
	background-color: none;
	overflow: hidden;
	animation: slideInLeft 0.5s forwards;
}

.left-slide img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center;
	display: block;
}

.right-slide {
	right: -100%;
	background-color: #0f0f0f;
	color: #f0f0f0;
	animation: slideInRight 0.5s forwards;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.right-slide video {
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center;
}

.right-slide a {
	text-decoration: none;
	color: #f0f0f0;
	cursor: pointer;
}

.right-slide img {
	max-width: 100%;
	max-height: 100%;
	width: auto;
	height: auto;
	object-fit: contain;
}

@keyframes slideInLeft {
	100% {
		left: calc(33.33% - 20%);
	}
}

@keyframes slideInRight {
	100% {
		right: calc(33.33% - 20%);
	}
}

#logo {
  position: fixed;
  bottom: 20px;
  left: 60px;
  z-index: 9999;
  width: 160px;
}

#logo img {
  width: 100%;
  height: auto;
  display: block;
}

