* {
	box-sizing: border-box;
}

body {
	margin: 0;
	color: #65615b;
	font: 0.85em/1.65em 'Roboto', sans-serif;
	overflow-x: hidden;
	overflow-y: scroll;
}

img {
	margin-bottom: -6px;
}

h1, h2, h3 {
	font-weight: normal;
}

h1, h2, h3, strong {
	color: #333;
}


.container {
	margin: 0 auto;
	padding: 0 1em;
	max-width: 1670px;
}


.header {
	width: 100%;
	height: 100vh;
	background-image: url(image/background.jpg);
	background-position:center;
	background-size: contain;
}

.header .logo {
	position: absolute;
	right: 0;
	top: 50%;
	transform: translate(0, -50%);
	max-width: 330px;
	pointer-events: none;
}


a {
	text-decoration: none;
}

.box a {
	color: #3E9AF9;
	transition: color .2s;
}

.box:not(.contact-us) a:hover {
	text-decoration: none;
	color: #4BA4FF;
}


/*
	Menu
*/
.menu {
	position: fixed;
	width: 100%;
	text-align: right;
	font-weight: bold;
	text-transform: uppercase;
	transition: background .2s, box-shadow .2s;
	z-index: 1;
	background: rgb(66, 66, 66);
}

.menu a {
	display: block;
	padding: 1.5em 1.7em;
	color: #ffffff;
}

.menu ul {
	margin: 0;
	padding: 0;
	padding-top: 4em;
	list-style: none;
	display: none;
}

.menu .toggle {
	position: absolute;
	right: 0;
	top: 0;
	padding: 0.7em;
	color: #FFF;
	background: #424242;
	font-size: 1.7em;
	cursor: pointer;
}






/*
	Box
*/
.box {
	overflow: auto;
	text-align: left;
}

.box:nth-child(even) {
	background: rgba(0,0,0,.03);
}

.box img {
	width: 100%;
}

.box h1 {
	line-height: 1.3;
	text-align: left;
	margin-bottom: .8em;
	font-size: 1.5em;
}

.box h1, .box h2, .box h3 {
	margin-top: 0;
}

.box .padding {
	padding: 0 4em;
}

.box ul {
	list-style: none;
	padding-left: 1.2em;
}







/*
	Contact Area
*/
.contact-us {
	color: #FFF;
	background: #f15a23;
	text-align: center;
}

.contact-us .fa {
	display: block;
	margin-bottom: 0.4em;
	font-size: 2em;
}

.contact-us .card {
	display: inline-block;
	margin-top: 3em;
	margin-bottom: 3em;
	width: 24%;
	font-size: 1.5em;
}

.contact-us .card a,
.contact-us .card span {
	display: block;
}

.contact-us  a {
	color: #FFF;
}








/* Screen is bigger than 800px (tablet and above) */
@media (min-width: 800px) {

	.contact-us .info {
		margin-left: 3em;
	}

	.menu .toggle {
		display: none;
	}

	.menu ul {
		display: initial !important;
		padding: 0;
	}

	.menu li {
		display: inline-block;
		margin-right: -4px;
	}

	.menu a {
		display: inline-block;
		padding: 1.9em 2.1em;
	}

	.box h1 {
		font-size: 1.7em;
	}
	
	.box {
		padding: 5em 0;
		position: relative;
	}
	
}


/* Screen is smaller than 800px (tablet and below) */
@media (max-width: 800px) {
	
	.header > .logo {
		max-width: 200px;
	}

	.box .padding {
		padding: 3em;
	}

	.box .center {
		display: flex;
		flex-direction: column;
	}

	.box:nth-child(even) .center > div:first-child {
		order: 2;
	}

	.contact-us .card {
		font-size: 1.3em;
	}

}



/*
	Resets
*/
:focus {
	outline: none;
}

::-webkit-scrollbar {
	width: 0;
}
