.navbar {
	background: #fff;
	height: 90px;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 18px;
	position: sticky;
	top: 0;
	z-index: 999;
	box-shadow: 0 2px 2px rgba(0, 0, 0, 0.26);
}

.navbar__container {
	display: flex;
	justify-content: space-between;
	height: 50px;
	z-index: 1;
	width: 100%;
	margin: 0 auto;
	padding: 0 50px;
}

.navbar__img--container {
	text-align: center;
}

#navbar__img {
	background-size: 100%;
	height: 100%;
	width: 100%;
	display: flex;
	align-items: center;
	cursor: pointer;
	text-decoration: none;
}

#navbar__logo {
	background-size: 100%;
	display: flex;
	align-items: center;
	cursor: pointer;
	text-decoration: none;
}

.fa-gem {
	margin-right: 0;
}

.navbar__menu {
	display: flex;
	align-items: center;
	list-style: none;
	text-align: center;
}

.navbar__item {
	height: 80px;
}

.navbar__links {
	font-family: "Gotham Black";
	color: #131313;
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	padding: 0 1rem;
	height: 100%;
}

.navbar__links:hover {
	color: #cc2d2d;
	transition: all 0.3s ease;
}

.navbar__toggle {
	display: none;
	cursor: pointer;
	transition: all 0.3s ease-in-out;
}

@media screen and (max-width: 960px) {
	.navbar__container {
		display: flex;
		justify-content: space-between;
		height: 80px;
		z-index: 1;
		width: 100%;
		max-width: 1300px;
		padding: 0;
	}

	.navbar__menu {
		display: grid;
		grid-template-columns: auto;
		margin: 0;
		width: 100%;
		position: absolute;
		top: -1000px;
		opacity: 0;
		transition: all 0.5s ease;
		height: 70vh;
		z-index: -1;
		background: #fff;
	}

	.navbar__menu.active {
		background: #fff;
		top: 100%;
		opacity: 1;
		transition: all 0.5s ease;
		height: 70vh;
		font-size: 1.6rem;
	}

	.navbar__img--container {
		align-items: center;
		display: flex;
		margin-left: 20px;
	}

	#navbar__img {
		height: 65%;
		width: auto;
	}

	#navbar__logo {
		padding-left: 25px;
	}

	.navbar__toggle {
		align-items: center;
		margin-right: 20px;
	}

	.navbar__toggle.toggle-bar {
		display: flex;
	}

	.navbar__toggle.active.toggle-bar {
		display: none;
	}

	.navbar__toggle.active.toggle-x {
		display: flex;
	}

	.navbar__toggle:hover {
		color: #cc2d2d;
		transition: all 0.3s ease;
	}

	.navbar__item {
		width: 100%;
	}

	.navbar__links {
		text-align: center;
		width: 100%;
		display: table;
		padding: 0;
	}
}
