@charset "utf-8";
*{
	margin:0;
	padding: 0;
	font-family: Gotham, "Helvetica Neue", Helvetica, Arial, "sans-serif";
}

#container{
	width: 100%;
	height: 15vh;
	background: black;
}

.logo{
	width: 160px;
	height: 80px;
	margin-top: 20px;
}

.text-logo{
	text-align: left;
	color: white;
	padding-left: 175px;
	margin-top: -50px;
}

.text-logo h1{
	font-size: 15px;
	font-family: Gotham, "Helvetica Neue", Helvetica, Arial, "sans-serif";
}

.text-logo h2{
	font-size: 15px;
	font-family: Gotham, "Helvetica Neue", Helvetica, Arial, "sans-serif";
}

.nav-area{
	position: fixed;
	top:0;
	right: 0;
	z-index: 1;
}

.nav-area .hamburger-menu{
	position: absolute;
	top: 0;
	right: 0;
	z-index: 2;
	cursor: pointer;
	width: 50px;
	height: 50px;
	opacity: 0;
}

.nav-area .nav-icon{
	position:absolute;
	top: 15px;
	right: 15px;
	z-index: 1;
	width: 50px;
	height: 50px;
	padding: 16px;
	background: rgba(160,0,2,0.84);
	display: flex;
	align-items: center;
	justify-content: center;
}

.nav-area .nav-icon > div{
	display:flex;
	align-items: center;
	justify-content: center;
	transition: 0.5s ease;
	position: relative;
	width: 100%;
	height: 2px;
	background: black
}

.nav-area .nav-icon > div:before,
.nav-area .nav-icon > div:after{
	content: '';
	position: absolute;
	z-index: 1;
	top: -8px;
	width: 100%;
	height: 2px;
	background: inherit;
}

.nav-area .nav-icon >div:after{
	top: 8px;
}

.nav-area .hamburger-menu:checked + .nav-icon > div{
	transform: rotate(135deg);
}

.nav-area .hamburger-menu:checked + .nav-icon > div:before,
.nav-area .hamburger-menu:checked + .nav-icon > div:after{
	top: 0;
	transform: rotate(90deg);
}

.nav-area .hamburger-menu:checked:hover + .nav-icon > div{
	transform: rotate(225deg);
}

.nav-area .hamburger-menu:checked ~ .main-menu{
	visibility: visible;
}

.nav-area .hamburger-menu:checked ~ .main-menu > div{
	transform: scale(1);
	transition-duration: 0.8s;
}

.nav-area .hamburger-menu:checked ~ .main-menu > div > div{
	opacity: 1;
	transition: opacity 0.5s ease;
}

.nav-area .main-menu{
	display:flex;
	align-items: center;
	justify-content: center;
	position: fixed;
	top: 0;
	right: 0;
	width:100%;
	height:100%;
	visibility: hidden;
	overflow: hidden;
}

.nav-area .main-menu > div{
	display: flex;
	flex: none;
	align-items: center;
	justify-content: center;
	transform: scale(0);
	transition: 0.5s ease;
	background: rgba(160,0,2,0.84);
	border-radius: 50%;
	width: 200vw;
	height: 200vw;
}

.nav-area .main-menu > div > div{
	text-align: center;
	max-width: 90vw;
	max-height: 100vh;
	opacity: 0;
	transition:opacity 0.5 ease;
}

.nav-area .main-menu > div > div > ul > li{
	list-style: none;
	color:white;
	font-size: 24px;
	padding: 16px;
}

.nav-area .main-menu > div > div > ul > li > a{
	color: inherit;
	text-decoration: none;
	transition: color 0.5s ease;
	font-family: Gotham, "Helvetica Neue", Helvetica, Arial, "sans-serif";
}



section{
	background:white;
	font-family: Gotham, "Helvetica Neue", Helvetica, Arial, "sans-serif";
}

.text-box h1{
	font-size: 80px;
	margin-top:50px;
}

.text-box > h2{
	font-size: 80px;
	margin-top: 50px;
}

h3{
	font-size:80px;
	margin-top: 50px;
}

h4{
	font-size:80px;
	margin-top: 50px;
}

h5{
	font-size:40px;
	margin-top: 20px;
}

p{
	font-size:30px;
}

article{
	font-size: 30px;
}
.text-image{
	max-width: 400px;
	float: right;
	margin-top: 83px;
}
	
footer{
	color: white;
	background-color: black;
	text-align: center;
	margin-top: 60px;
}