/* Navbar & Navmenu color */
:root {
	--background-navbar: rgba(62, 187, 209, 0.98);
}

header {
	display: flex;
	justify-content: center;
}

.header {
	position: fixed;
	top: 0;
	width: 100%;
	display: flex;
	flex-direction: row;
	z-index: 10;

}

.header img {
	width: 80%;
	height: 20%;
}

.header label {
	width: 20%;
	background: white;
}

.header ul {
	display: flex;
	flex-wrap: wrap;
}

.header ul>li {
	width: 50%;
	background: var(--background-navbar);
}

/* Nav items */
.menu {
	list-style: none;
	position: absolute;
	width: 100%;
	height: auto;
	top: 0;
	margin-top: 19.5vw;
	padding: 0;
	clear: both;
	transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
	transform: scale(1, 0);
	transform-origin: top;
}

.menu a {
	display: block;
	line-height: 1.4em;
	padding-top: 26px;
	padding-bottom: 28px;
	text-decoration: none;
	font-weight: 500;
	letter-spacing: 2px;
	font-size: 16px;
	text-transform: capitalize;
	color: #fff;
	opacity: 0;
	transition: 0.5s;
}

.menu li {
	text-align: center;
	border-top: 1px solid rgb(255, 255, 255);
	/* margin: 0 54px; */
	opacity: 0;
	transition: 0.5s;

}

.menu li:nth-child(2n) {
	border-left: 1px solid rgb(255, 255, 255);
}

/* Hamburger menu button */
.menu-btn {
	display: none;

}

.menu-btn:checked~.menu {
	transform: scale(1, 1);
	transform-origin: top;
	transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;

}

.menu-btn:checked~.menu a,
.menu-btn:checked~.menu li {
	opacity: 1;
	transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.2s;

	/* &:hover {
				opacity: 0.5;
			} */
}

/* Hamburger menbu text */


.menu-icon {
	display: inline-block;
	position: relative;
	cursor: pointer;
	padding: 6.8vw 3.8vw 0;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.menu-icon div {
	font-size: 3.5vw;
	color: #e50012;
	margin-top: 4.5vw;
	text-align: center;
}

.navicon {
	background: #e50012;
	display: block;
	height: 1.2vw;
	position: relative;
	transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
}

.navicon:before,
.navicon:after {
	content: "";
	display: block;
	height: 100%;
	width: 100%;
	position: absolute;
	background: #e50012;
	transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
}

.navicon:before {
	top: 3vw;
}

.navicon:after {
	bottom: 3vw;
}

/* Hamburger Menu Animation Start */
.menu-btn:checked~.menu-icon .navicon {
	background: rgba(0, 0, 0, 0);
	transition: 0.2192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
}

.menu-btn:checked~.menu-icon .navicon:before {
	transform: rotate(-45deg);
}

.menu-btn:checked~.menu-icon .navicon:after {
	transform: rotate(45deg);
}

.menu-btn:checked~.menu-icon:not(.steps) .navicon:before {
	top: 0;
}

.menu-btn:checked~.menu-icon:not(.steps) .navicon:after {
	bottom: 0;
}


/* Hamburger Menu Animation End */

/* Navbar Container */
.navtext-container {
	width: 100%;
	height: 52px;
	position: absolute;
	box-sizing: border-box;
	display: flex;
	justify-content: center;
	align-items: center;
}

/* Navbar Text */
.navtext {
	position: absolute;
	text-transform: uppercase;
	color: #ddd;
	letter-spacing: 4px;
	font-size: 20px;
}

.top-content {
	margin-top: 19.5vw;
}

.top-margin {
	height: 19.5vw;
}

@media screen and (min-width: 768px) {
	.menu {
		margin-top: 123px;

	}

	.menu-icon {
		padding: 41px 20px 0;
	}

	.menu-icon div {
		font-size: 20px;
		margin-top: 25px;
	}

	.navicon {
		height: 9px;

	}

	.navicon:before {
		top: 20px;
	}

	.navicon:after {
		bottom: 20px;
	}

	.top-content {
		margin-top: 123px;
	}

	.top-margin {
		height: 123px;
	}
}