body {
	background-color: #FEF6EA;
	overflow-x: hidden;
	-webkit-overflow-scrolling: touch;
}

header{
	position: fixed;
	background-color: #FEF6EA;
	top:0;
	width: 100%;
	z-index: 10;
}

li{
	list-style: none;
}

/*Start font formatting*/
.dropdown-link > a{
	list-style: none;
	display: flex;
	color: #444444;
	padding-top: 0.3rem;
	padding-right: 1rem;
	white-space: nowrap;
	font-size: 1.0625rem;	
	align-items: center;
	justify-content: space-between;
	transition: 0.2s;
	font-family: 'Karla', sans-serif;
}

.active-link {
    	border-bottom: 3px solid #D9C5A8;
    	padding: 0;
    	top: 0!important;
    	font-weight: 900;
}

.dropdown-link:nth-last-child(1){
	padding-bottom: 0.3rem;
}

.nav-link > a{
	line-height: 1;
	color: #444444;
	font-size: 1.1rem;
	display: flex;
	align-items: center;
	font-family: 'Karla', sans-serif;
	justify-content: space-between;
	transition: 0.5s;
}

@media(hover: hover) and (pointer: fine) {
	.dropdown-link:hover{
		font-weight: 900;
	}

	.nav-link:hover > a{
		font-weight: 900;
	}
	
}


/*Start structural format*/
.navbar{
	height: 8.375rem;
	padding: none;
	margin-right: 10rem; 
	margin-left: 9rem;
	background-color: #FEF6EA;
}

.logo-image{
	height:8.375rem;
	background-color: #FEF6EA;
	width: auto;
}

.logo-container{
	top: 0;
	position: fixed;
	float: left;
	flex: 1;
	display: flex;	
	background-color: #FEF6EA;
	z-index: 30;
}

@media (max-width: 1300px){
	.navbar{
		margin-right: 5rem; 
		margin-left: 5rem;
	}
}

@media (max-width: 1120px){
	.navbar{
		margin-right: 3rem; 
		margin-left: 3rem;
	}
}

@media (max-width: 1000px){
	.navbar{
		margin-right: 1rem; 
		margin-left: 2rem;
	}

	.logo-image{
		height: 7.75rem;
		width: auto;
	}
}

/*Start code for mobile hamburger menu button*/
#check{
	position: absolute;
	top: 50%;
	right: 2rem;
	transform: translateY(-50%);
	width: 2.5rem;
	height: 2.5rem;
	cursor: pointer;
	opacity: 0;
	display: none;
}

.hamburger-menu-container{
	flex: 1;
	align-items: center;
	justify-content: flex-end;
	display: none;
	z-index: 30;
}

.hamburger-menu{
	width: 2rem;
	height: 2rem;
	display: flex;
	align-items: center;
	justify-content: center;
}

.hamburger-menu div{
	width: 1.5rem;
	height: 4px;
	border-radius: 3px;
	background-color: #333333;
	position: relative; 
	transition: 0s;
}

.hamburger-menu div:before,
.hamburger-menu div:after{
	content: '';
	position: absolute;
	width:inherit;
	height: inherit;
	background-color: #333333;
	border-radius: 3px; 
	transition: 0s;
}

.hamburger-menu div:before{
	transform: translateY(-9px);
}

.hamburger-menu div:after{
	transform: translateY(9px);
}


.hamburger-menu.responsive div{
	background-color: transparent;
	transition: 0s;

}

.hamburger-menu.responsive div:before{
	transform: translateY(0) rotate(-45deg);
}


.hamburger-menu.responsive div:after{
	transform: translateY(0) rotate(45deg);
}

@media (max-width: 1120px){
	.hamburger-menu-container{
		display: flex;
		margin-right: 2rem;
	}

	#check{
		display: block;
		opacity: 0;
		z-index: 35;
	}
}

/*end hamburger menu code*/
/*Start navgroup format*/
.navgroup{
	height: auto;
	float: right;
	flex: 3;
	float: right;
	margin: 0;
	margin-top: auto;
	margin-bottom: auto;
}

.main-links{
	flex: 2;
	align-self: right;
	float: right;
	background-color: #FEF6EA;
}

.main-list{
	margin-bottom: auto;
	margin-top: auto;
}

.main-links > ul{
	display: flex;
	justify-content: right;
	align-items: right;
	float: right;
	margin-top: auto;
}

.nav-link{
	position: relative;
}

@media(min-width: 1120px){
	.nav-link{
		margin-top: 1.3rem;
	}
}

/*Start dropdown formatting*/
.dropdown ul{
	position: relative;
	padding-left: 1rem;
}

.dropdown{
	position: absolute;
	top: 100%;
	left: 0;
	width: auto;
	transform: translateY(10px);
	opacity: 0;
	pointer-events: none;
	background-color: #FEF6EA;
	transition: 0.5s;
	box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
}

.dropdown.responsive{
	transform: translate(0,0);
	opacity: 1;
	pointer-events: auto;
}

.secondary-list{
	width: 100%;
}


.nav-link:hover > .dropdown, .dropdown-link:hover > .dropdown{
	transform: translate(0,0);
	opacity: 1;
	pointer-events: auto;
}


/*Mobile dropdown formatting*/
@media (max-width: 1120px){
	.navgroup{
		position: fixed;
		display: flex;
		top: 8.375rem;
		bottom: 0;
		left: 0;
		width: 100%;
		max-height: 100%;
		flex-direction: column;
		align-items: center;
		justify-content: space-between;
		overflow-x: hidden;
		overflow-y: scroll;
		transform: translateY(-100%);
		transition: .65s;
		opacity: 0;
		z-index: 5;
	}

	.navgroup::-webkit-scrollbar {
  		display: none;
	}

	/* Hide scrollbar for IE, Edge and Firefox */
	.navgroup {
	  -ms-overflow-style: none;  /* IE and Edge */
	  scrollbar-width: none;  /* Firefox */
	}

	.navgroup.responsive{
		transform: translateY(0);
		opacity: 1;
	}


	.main-links{
		flex: initial;
		width: 100%
	}

	.main-links > ul{
		flex-direction: column;
		float: left;
	}

	.dropdown.responsive{
		display: block;
	}

	.dropdown{
		position: initial;
		top: initial;
		left: initial;
		transform: initial;
		opacity: 1;
		pointer-events: auto;
		width: 100%;
		padding: 0;
		display: none;
		box-shadow: none;
	}

	#cart{
		padding-bottom: 1rem;
		height: 2.8rem;
		margin-top: auto;
		margin-top: none!important;
		margin-bottom: auto;
		position: top;
		width: auto;
	}


	@media(hover: hover) and (pointer: fine) {
		.nav-link:hover > .dropdown{
			display: block;
		}
	}

	.dropdown.responsive{
		display: block;
	}

}

@media(min-width: 1120px){
	#cart{
		height: 1.8rem;
		margin-top: auto;
		margin-top: none!important;
		margin-bottom: auto;
		position: top;
		width: auto;
		padding: none;
	}
}

/*Footer Styling*/
/*Footer Styling has been included in navstyle as it is universally present across website while most pages have unique individual stylesheets*/
/* Style all font awesome icons */
footer{
	margin: auto;
	text-align: center;
}

.fa{
  font-size: 1rem!important;
  padding: 6.5px;
  width: 28px;
  height: 28px;
  text-align: center;
  vertical-align: text-top;
  text-decoration: none;
  border-radius: 50%;
  margin-bottom: 0.4em;
}

.fa:hover {
  opacity: 0.7;
  background: #6F3236;
  color: white;
}

.footer{
	font-size: 0.7rem;
	font-family: karla, sans-serif;
	margin: none;
	padding-bottom: 0;
	line-height: 1.5rem;
}

 /*Facebook*/ 
.fa-facebook {
  background: #6F3236;
  color: white;
}

.fa-instagram {
  background: #6F3236;
  color: white;
}

.fa-youtube {
  background: #6F3236;
  color: white;
}

.fa-envelope {
  background: #6F3236;
  color: white;
}

.footer-link{
	background-color: #fef6ea;
	color: #444444;
	font-family: Karla;
	font-feature-settings: "'liga' 1";
	font-kerning: auto;
	font-style: normal;
	font-size: 0.7rem;
	font-weight: 400;
	letter-spacing: 0;
	text-decoration: none;
	text-transform: none;
	word-spacing: 0;
	padding: none;
}

.footer-link:hover{
	font-weight: bold;
	color: #444444;

}