


/* HEADER STYLE */
.header-area{
	position: fixed;
	width: 100%;
	top: 0;
	left: 0;
	right: 0;
	margin: auto;
	z-index: 999;
	padding: 30px 0;
	background: #fff;
	opacity: 80%;
}
.pertica-logo {
	position: absolute;
	top: 0;
	left: 0;
	padding: 5px 0 0 15px;
	width: 157px;
}
.pertica-logo img{
	width: 100%;
	height: auto;
}
#nav-wrap{
	position: absolute;
	top: 0;
	right: 0;
	padding: 25px 30px 20px 0;
}
.header-menu{
	display: flex;
}
ul,li{
	list-style: none;
	margin: 0;
}
.header-menu li a{
	cursor: pointer;
	padding: 0 10px;
	text-decoration: none;
	color: #333;
}
#header-switch{
	display: none;
}
@media screen and (max-width:768px) {
	#header-switch ~ label {
		padding: 12px 12px;
		width: 60px;
		height: 60px;
		background: #333;
		position: fixed;
		box-sizing: border-box;
		top: 0;
		right: 0;
		z-index: 999;
		cursor: pointer;
	}
	#header-switch ~ label span{
		display: block;
		width:22px;
		height:2px;
		top: 50%;
		left: 0;
		right: 0;
		margin:auto;
		background: #fff;
		position: absolute;
		-webkit-transition: 0.2s transform;
		transition: 0.2s transform;
	}
	#header-switch ~ label span:before,
	#header-switch ~ label span:after{
		content: "";
		display: block;
		background: #fff;
		position: absolute;
		width:22px;
		height:2px;
		left: 0;
		right: 0;
		margin: auto;
	}
	#header-switch ~ label span:before{
		top: -9px;
	}
	#header-switch ~ label span:after{
		top: 9px;
	}
	#nav-wrap{
		padding-top: 0;
		position: fixed;
		top: -100%;
		left: 0;
		width: 100%;
		height: 100%;
		background: rgba(255,255,255,0.9);
		transition: all 0.4s;
		padding: 60px;
		box-sizing: border-box;
	}
	#header-switch:checked ~ #nav-wrap { 
		display: block; 
		top: 60px;
	}
	.header-menu{
		display: flex;
		flex-direction: column;
	}
	.header-menu li{
		margin: 0 auto 30px;
	}
	.header-menu li a{
		color: #000;
	}
	.scroll-prevent {
		position: fixed;
		z-index: -1;
		width: 100%;
		height: 100%;
	}
}

/* FOOTER STYLE*/
.footer-main-area {
	margin: 0 auto 0;
	width: 100%;
	height: 450px;
	background-image: url("../images/footer-back-img.jpg");
	background-size: cover;
	background-position: bottom;
}
.footer-main-inner {
	width: 80%;
	margin: 0 auto 0;
	padding: 3rem 0 0;
	text-align: center;
	color: #fff;
}
.footer-contents {
	margin: 0 0 2rem;
}
.footer-contents h3 {
	margin: 0 0 1rem;
}
.footer-contents p {
	margin: 0 0 1rem;
}
.footer-last-contents {
	margin: 0 0 3rem;
}
.footer-copy {
	text-align: center;
	color: #fff;
}
@media screen and (max-width:768px) {
.footer-copy {
	font-size: .9rem;
}
}
