body{
	margin: 0;
	padding: 0;
	font-size: 15px;
	font-family: Raleway;
	background-color: #f4f4f4;
}

.container{
	width: 82%;
	margin: auto;
	overflow: hidden;
}

.mobile-menu{
	float: right;
	display: none;
	padding: 13px;
}

.mobile-menu:hover{
	cursor: pointer;
}

#check{
	display: none;
}

.sidebar{
	position: fixed;
	color: #1a1c20;
	top: 0;
	bottom: 0;
	left: -300px;
	width: 250px;
	background-color: rgba(26, 28, 32, .9);
	transition: 0.3s;
}

.sidebar ul li a{
	color: #FFF;
}

.sidebar ul li{
	padding: 20px;
	transition: 0.3s;
	transition-property: background-color;
}

.sidebar ul li:hover{
	background-color: #f0a500;
}

#check:checked ~ .sidebar {
	left: 0;
}

header{
	background: #1a1c20;
	color: #FFF;
	padding-top: 5px;
	min-height: 70px; 
}

header #branding h1{
	float: left;
}

header nav{
	float: right;
	margin-top: 13px;
}

header li{
	float: left;
	display: inline;
	padding: 0 20px 0px 20px;
}

header a{
	color: #f4f4f4;
	text-decoration: none;
	text-transform: uppercase;
	font-size: 16px;
	transition: .3s;
}


header #branding, header .active a{
	color: #fff;
	font-weight: bold;
}

header a:hover{
	color: #f0a500;
	font-weight: bold;
}


#showcase{
	min-height: 340px;
	background: #1a1c20; 
	background-size: 110%;
	color: #fff;
	text-align: center;
}


#showcase h1{
	margin-top: 90px;
	font-size: 50px;
	margin-bottom: 10px;
	text-shadow: 2px 2px 2px #000;
}

#showcase p{
	font-size: 18px;
	text-shadow: 2px 2px 2px #000;
}

#newsletter{
	padding: 10px;
	color: #000;
	background: #94b4a4; 
}

#newsletter h1{
	float: left;
}

#newsletter form{
	float: right;
	margin-top: 15px;
}

#newsletter input[type="text"]{
	font-family: Raleway;
	padding: 4px;
	height: 22px;
	width: 230px;
	padding-left: 7px;
	border-radius: 8px;
	border: none;
}

.search button{
	width: 40px;
	height: 29px;
	padding: 2px;
	margin-top: -1px; 
	background-position: center;
	background-color: #eee;
	border: none;
	border-radius: 8px;
}

button:hover{
	color: #f0a500;
}

#boxes {
	margin-left: 32.7%;
}

/*#boxes .containerisi{
	margin: 30px 0px 30px 38.8%;
}*/

#boxes .box{
	text-align: center;
	width: 290px;
	height: 200px;		
	padding: 10px;	
	background-color: #b2deec;
	border-radius: 20px;
}

#boxes .box .isi img{
	position: center;
	width: 120px;
}

#boxes .box .isi{
	padding: 15px;
	font-size: 19px;
	text-align: center;
}

#boxes .box .isi a{
	color: #1a1c20;
	text-decoration: none;
	margin-top: 2px;
	font-size: 20px;
	font-weight: bold;
}

section h3{
	padding-bottom: 20px;
	text-align: center;
	margin: 40px 20px 20px 20px;
	color: #000;
	position: relative;
}

section h3::before{
	content: '';
	display: block;
	position: absolute;
	bottom: 0;
	width: 120px;
	height: 1px;
	background-color: #ddd;
	left: calc(50% - 60px);
}

section h3::after{
	content: '';
	display: block;
	position: absolute;
	bottom: -1px;
	width: 40px;
	height: 4px;
	background-color: #f0a500;
	left: calc(50% - 20px);
}

#about p{
	text-align: center;
	text-indent: 30px;
	line-height: 25px;
	margin-bottom: 15px;
	color: #000;
	font-size: 17px;
}

.col-3{
	width: 33.33%;
	box-sizing: border-box;
	float: left;
	text-align: center;
	padding: 50px 10px;
	margin-top: -20px;
}

.col-3 h4{
	padding-bottom: 10px;
	border-bottom: 1px solid #ddd;
	margin-bottom: 15px;
}

footer{
	padding: 8px;
	margin-top: 20px;
	color: #fff;
	background: #1a1c20;
	text-align: center;
	font-family: Montserrat;
}

@media(max-width: 768px){
	.mobile-menu{
		display: block;
	}

	.sidebar{
		width: 190px;
		margin-left: -40px;
	}

	header ul{
		display: none;
		text-decoration: none;
	}
	header #branding,
	header nav,
	header nav li
	#newsletter h1
	#newsletter form
	#boxes .box .isi
	{
		float: none;
		text-align: center;
		width: 100%;
	}
	#boxes {
		margin-left: 8%;
	}
	#showcase h1{
		font-size: 37px;
	}

	#showcase p{
		font-size: 14px;
	}

	#contact p{
		font-size: 12px;
	}
}