html, body {
	margin: 0;
	padding: 0;
	height: 100%;
	font-family: "Poppins", sans-serif;
	color: white;
	overflow: hidden;
	background-color: #000;
}
body {
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	text-align: center;
}
video#bgVideo {
	position: fixed;
	bottom: 0;
	right: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: right bottom;
	z-index: 2;
	background: url("assets/video-bg.jpg") center center / cover no-repeat;
}
.overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	z-index: 3;
}
.content {
	z-index: 4;
	padding: 2rem;
}
h2 {
	font-size: 2.5rem;
	margin: 0.5rem 0;
}
h3 {
	font-size: 1.5rem;
	margin: 0.5rem 0;
}
.top-left {
	position: fixed;
	top: 20px;
	left: 20px;
	z-index: 6;
}
.top-left img {
	height: 100px;
	width: auto;
	display: block;
}
.top-right {
	position: fixed;
	top: 20px;
	right: 20px;
	z-index: 6;
	display: flex;
	gap: 15px;
}
.top-right a {
	color: white;
	text-decoration: none;
	font-size: 22px;
	transition: opacity 0.3s ease;
}
.top-right a:hover {
	opacity: 0.6;
}
#toggleSound i {
	font-size: 20px;
	line-height: 50px;
	color: #fff;
}
#toggleSound {
	background: none;
	border: none;
	position: fixed;
	bottom: 20px;
	left: 20px;
	z-index: 5;
	width: 50px;
	height: 50px;
	font-size: 1.5rem;
	cursor: pointer;
	display: none;
}
#volumeContainer {
	position: fixed;
	bottom: 40px;
	left: 80px;
	z-index: 5;
	display: flex;
	align-items: center;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.3s ease;
}
#volumeContainer.active {
	opacity: 1;
	transform: translateX(0) scaleX(1);
	pointer-events: auto;
}
#volumeSlider {
	-webkit-appearance: none;
	appearance: none;
	width: 120px;
	height: 4px;
	background: #fff;
	outline: none;
}
#volumeSlider::-webkit-slider-runnable-track {
 height: 4px;
 background: #fff;
}
 #volumeSlider::-webkit-slider-thumb {
 -webkit-appearance: none;
 width: 16px;
 height: 16px;
 background: #fff;
 border-radius: 50%;
 cursor: pointer;
 margin-top: -6px;
}
#volumeSlider::-moz-range-track {
 height: 4px;
 background: #fff;
}
 #volumeSlider::-moz-range-thumb {
 width: 16px;
 height: 16px;
 background: #fff;
 border-radius: 50%;
 cursor: pointer;
 border: none;
}
#volumeSlider:hover::-webkit-slider-thumb {
 background: #ffd000;
}
 #volumeSlider:hover::-moz-range-thumb {
 background: #ffd000;
}

@media screen and (min-width: 769px) {
#toggleSound {
	display: block;
}
#volumeContainer {
	display: flex;
}
}

@media screen and (max-width: 768px) {
video#bgVideo {
	top: 50%;
	left: 50%;
	bottom: auto;
	right: auto;
	width: auto;
	height: 100%;
	transform: translate(-50%, -50%);
	object-fit: initial;
}
#toggleSound {
	display: block;
}
#volumeContainer {
	display: none !important;
}
.content {
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	width: auto;
	padding: 1rem;
	text-align: right;
}
h1 {
	font-size: 1.8rem;
}
h2 {
	font-size: 1.2rem;
}
h3 {
	font-size: 1rem;
}
h2, h3 {
	margin-right: 1rem;
}
.top-right {
	top: auto;
	bottom: 30px;
	right: 20px;
}
}
.overlay, .content {
	transition: opacity 0.5s ease;
}
.hidden {
	opacity: 0;
	pointer-events: none;
}
@font-face {
	font-family: 'icomoon';
	src: url('fonts/icomoon.eot?ysekpj');
	src: url('fonts/icomoon.eot?ysekpj#iefix') format('embedded-opentype'), url('fonts/icomoon.ttf?ysekpj') format('truetype'), url('fonts/icomoon.woff?ysekpj') format('woff'), url('fonts/icomoon.svg?ysekpj#icomoon') format('svg');
	font-weight: normal;
	font-style: normal;
	font-display: block;
}
[class^="icon-"], [class*=" icon-"] {
	/* use !important to prevent issues with browser extensions that change fonts */
	font-family: 'icomoon' !important;
	speak: never;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	/* Better Font Rendering =========== */
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
.icon-sound:before {
	content: "\ea27";
}
.icon-mute:before {
	content: "\ea2a";
}
.icon-fb:before {
	content: "\ea91";
}
.icon-ig:before {
	content: "\ea92";
}
