/* Header */

main {
	margin-left: 8rem;
    /*margin-top: 8rem;*/
    transition: margin-left 300ms cubic-bezier(0.785, 0.135, 0.15, 0.86);
}

@media screen and (min-width: 1024px) {

	/*#header.navbar-shrink {
		height: 6rem;
		line-height: 6rem;
	}
	#header.navbar-shrink .logo {
		font-size: 1.7em;
	}

	#header.navbar-shrink nav .button{
		padding: 0 1.5em;
		height: 2.25em;
		line-height: 2.25em;
		font-size: 1.2rem;
	}*/

}
.header {
	/*-moz-align-items: center;
	-webkit-align-items: center;
	-ms-align-items: center;
	align-items: center;*/
	background: #fff;
	cursor: default;
	height: 8rem;
	/*left: 0;*/
	/*padding-top: 1.5rem;
    padding-bottom: 1.5rem;*/
    transition: all 0.3s;
	line-height: 8rem;
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 1001;
	box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.075);
	text-align: center;
}

.header .logo {
	color: #f6755e;
	font-family: "Pacifico", cursive;
	font-size: 2.5em;
	letter-spacing: 2px;
	margin-left: -15rem;
	text-decoration: none;
	display: inline-block;
	transition: font-size 0.3s;
	
}

.header .logo img{
	width: 80%;
	margin-top: 1rem;
}

.header nav {
	position: absolute;
	top: 0;
	height: inherit;
	line-height: inherit;
}

.header nav.left {
	left: 3rem;
	display: flex;
    justify-content: center;
    align-items: center;
    transform: translateX(10px);
}

.header nav i{
	font-size: 2.7rem;
    cursor: pointer;
    position: absolute;
    color: #dee1e3;
}

.header nav.right {
	right: 10rem;
}

.header nav .button {
	padding: 0 2em;
	height: 3.25em;
	line-height: 3.25em;
	font-weight: 600;
	transition: all 0.3s;
}

.header nav a {
	text-decoration: none;
	display: inline-block;
}

/*#header nav a[href="#menu"] {
	text-decoration: none;
	-webkit-tap-highlight-color: transparent;
	font-size: 2em;
	color: #dee1e3;
	z-index: 10005;
}

#header nav a[href="#menu"]:before {
	content: "";
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
	font-family: FontAwesome;
	font-style: normal;
	font-weight: normal;
	text-transform: none !important;
}*/

.header nav a[href="#menu"] span {
	display: none;
}

.header nav a[href="#menu"]:before {
	margin: 0 0.5em 0 0;
}

@media screen and (max-width: 980px) {

	main {
		/*padding-top: 44px;*/
		/*margin-top: 5rem;*/
	}

	.header {
		height: 5rem;
		line-height: 5rem;
	}

	.header .logo {
		font-size: 1.25em;
		text-align: center;
	}

	.header nav a[href="#menu"] {
		font-size: 1.5em;
	}

	.header nav.left {
		left: 1em;
	}

	.header nav.right {
		display: none;
	}

}

@media screen and (max-width: 760px) {

	.header .logo {
		margin-left: 0;
	}
}

@media screen and (max-width: 480px) {

	.header {
		min-width: 320px;
	}

	.header .logo {
		margin-left: 0;
	}

	.header .logo img{
		width: 45%;
		margin-top: 1rem;
	}

	.scroll-up{
		right: 4rem;
	}

}