/*********************************
3. Header
*********************************/

.header
{
	position: fixed;
	top: 0;
	left: 0;
    width: 100%;
    color: black;
    background-color: white;
	/*background-color: rgb(198, 167, 143);*/
	z-index: 200;
	border-bottom: solid 1px transparent;
	/*border-image: linear-gradient(to right, #487fee, #32fa95);*/
	/* border-image: linear-gradient(to right, #c9ad85, #c9ad85);  */
    border-image-slice: 1;
    -webkit-transition: all 200ms ease;
	-moz-transition: all 200ms ease;
	-ms-transition: all 200ms ease;
	-o-transition: all 200ms ease;
	transition: all 200ms ease;
}
.header_content
{
	height: 80px;
	-webkit-transition: all 200ms ease;
	-moz-transition: all 200ms ease;
	-ms-transition: all 200ms ease;
	-o-transition: all 200ms ease;
	transition: all 200ms ease;
}


.main_nav {
	margin-right: auto;
}

.main_nav ul li {
	display: inline-block;
}


.main_nav ul li:not(:last-child) {
	margin-left: 60px;
}

.main_nav ul li a {
	font-size: 20px;
	font-weight: 500;
	color: black;
	-webkit-transition: all 200ms ease;
	-moz-transition: all 200ms ease;
	-ms-transition: all 200ms ease;
	-o-transition: all 200ms ease;
	transition: all 200ms ease;
}

.main_nav ul li.active a,
.main_nav ul li a:hover {
	color: #c6a68f; 
}

.hamburger
{
	display: none;
	cursor: pointer;
}
.hamburger i
{
	font-size: 18px;
	color: black;
	-webkit-transition: all 200ms ease;
	-moz-transition: all 200ms ease;
	-ms-transition: all 200ms ease;
	-o-transition: all 200ms ease;
	transition: all 200ms ease;
}
.hamburger i:hover
{
	color: #4e4441;
}

@media only screen and (max-width: 575px) {

	.logo {
		width: 70px;
	}	

	.header_content {
		height: 60px;
	}
}