:root {
	--primary-colour: rgba(13, 110, 139, 0.75);
	--overlay-colour: rgba(24,39, 51, 0.85);
	--menu-speed: 1.5s;
}
* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}
body {
	font-family: 'Verdana', sans-serif;
	line-height: 1.5;
}

/*---Menu---*/
.menu-wrap {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1;
}
.menu-wrap .toggler {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
	cursor: pointer;
	width: 50px;
	height: 50px;
	opacity: 0;
}
.menu-wrap .menu-icon {
	position: absolute;
	top: 0;
	left: 500;
	z-index: 1;
	width: 60px;
	height: 60px;
	padding: 1rem;
	background: var(--primary-colour);
	display: flex;
	align-items: center;
	justify-content: center;
}

/*---menu-icon Lines---*/
.menu-wrap .menu-icon > div {
	position: relative;
	width: 100%;
	height: 2px;
	background-color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.4s ease-in;
}
.menu-wrap .menu-icon > div:before,
.menu-wrap .menu-icon > div:after {
	content: '';
	position: absolute;
	z-index: 1;
	top: -10px;
	width: 100%;
	height: 2px;
	background: inherit;
}
.menu-wrap .menu-icon > div:after {
	top: 10px;
}

/*---menu-icon Toggler Animate---*/
.menu-wrap .toggler:checked + .menu-icon > div {
	transform: rotate(135deg);
}

/*---Turn menu-icon lines into X---*/
.menu-wrap .toggler:checked + .menu-icon > div:before,
.menu-wrap .toggler:checked + .menu-icon > div:after {
	top: 0;
	transform: rotate(90deg);
}

/*---Rotate menu-icon on hover when checked---*/
.menu-wrap .toggler:checked:hover + .menu-icon > div {
	transform: rotate(225deg);
}

/*---Show Menu---*/
.menu-wrap .toggler:checked ~ .menu {
	visibility: visible;
}

.menu-wrap .toggler:checked ~ .menu > div {
	transform: scale(1);
	transition-duration: var(--menu-speed);
}

.menu-wrap .toggler:checked ~ .menu > div > div {
	opacity: 1;
	transition: opacity .4s ease;
}

/*---Menu Items---*/
.menu-wrap .menu {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	visibility: hidden;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
}
.menu-wrap .menu > div {
	background: var(--overlay-colour);
	border-radius: 50%;
	width: 300vw;
	height: 300vw;
	display: flex;
	flex: none;
	align-items: center;
	justify-content: center;
	transform: scale(0);
	transition: all 0.4s ease;
}
.menu-wrap .menu > div > div {
	text-align: center;
	max-width: 90vw;
	max-height: 100vh;
	opacity: 0;
	transition: opacity 0.4s ease;
}
.menu-wrap .menu > div > div > ul > li {
	list-style: none;
	color: #fff;
	font-size: 2rem;
	padding: 1rem;
}
.menu-wrap .menu > div > div > ul > li > a {
	color: inherit;
	text-decoration: none;
	transition: color 0.4s ease;
}

/*---Showcase Area---*/
.container {
	max-width: 960px;
	margin: auto;
	overflow: hidden;
	padding: 0 3rem;
}
.showcase {
	background-color: var(--primary-colour);
	color: #fff;
	height: 100vh;
	position: relative;
}
.showcase:before {
	content:'';
	background: url('../images/ocean.jpeg') no-repeat center center/cover;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
}
.showcase .showcase-inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	height: 100%;
}
.showcase h1 {
	font-family: 'Anonymous Pro', monospace;
	font-size: 6rem;
	line-height: 1.2;
	margin-bottom: 1rem;
}

.showcase h1 > span {
}

.showcase p {
	font-size: 1.4rem;
	margin-bottom: .5rem;
}
.btn {
	display: inline-block;
	border: none;
	border-radius: .4rem;
	background-color: var(--primary-colour);
	color: #fff;
	padding: .75rem 1.5rem;
	margin-top: 1rem;
	text-decoration: none;
	transition: opacity .6s ease-in;
}
.btn:hover {
	opacity: .7;
}
