* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

/* html,
body {
	width: 100%;
	height: 100vh;
	overflow-x: hidden;
} */

.container {
	width: 100%;
	height: 100vh;
	overflow: hidden;
	display: flex;
	justify-content: center;
	align-items: center;
	background: #202217;
	font-family: "Mak";
}

.blocks {
	display: flex;
	font-size: 140px;
	color: #8d785b;
}

.circle-shape {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 800px;
	height: 800px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 100%;
}

.circle-shape-2 {
	position: absolute;
	top: 40%;
	left: 80%;
	transform: translate(-50%, -50%);
	width: 240px;
	height: 240px;
	background: #a83e0c;
	border-radius: 100%;
}

.circle-shape-3 {
	position: absolute;
	top: 70%;
	left: 10%;
	transform: translate(-50%, -50%);
	width: 140px;
	height: 140px;
	background: #a83e0c;
	border-radius: 100%;
	z-index: 2;
}

.wrapper-img {
	overflow: hidden;
	position: absolute;
	top: 35% !important;
	right: 18%;
	width: 30%;
	height: 90vh;
}

img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	width: 140%; 
	height: auto;
}

.box {
	background: #202217;
	opacity: 0;
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	z-index: 0;
}

.site-logo {
	position: fixed;
	left: 50%;
	transform: translateX(-50%);
	font-family: "Mak";
	font-size: 24px;
	line-height: 100px;
	text-transform: uppercase;
	color: #8d785b;
}

.navbar {
	position: fixed;
	width: 100%;
	height: 100px;
	padding: 0 40px;
	display: flex;
	justify-content: space-between;
	font-family: Arial, Helvetica, sans-serif !important;
	text-transform: uppercase;
	line-height: 100px;
	color: #8d785b;
}

.site-menu {
	display: flex;
}

.menu-item {
	margin-left: 60px;
}

.showreel {
	position: absolute;
	left: 0;
	bottom: 0;
	padding: 40px;
	font-family: Arial, Helvetica, sans-serif !important;
	text-transform: uppercase;
	color: #8d785b;
	text-decoration: underline;
}

@media (max-width: 900px) {
	.navbar {
		display: none;
	}
}