/***************
    Generic CSS Stylings
***************/

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/montserrat/montserrat-medium.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    letter-spacing: 1.5px;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/montserrat/Montserrat-Bold.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    letter-spacing: 1.5px;
}

@font-face {
    font-family: 'maragsa';
    src: url('../fonts/maragsa/maragsa-display.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
    letter-spacing: 1.5px;
}

html, body {
	font-family: 'Montserrat', sans-serif;
	font-weight: 300;
	min-height: 105vh;
	color: #33322f;
}

.ff-maragsa {
    font-family: 'maragsa' !important;
}

/***************
    Hamburger
***************/

.hamburger.is-active:hover, .hamburger:hover {
    opacity: 1;
}

.hamburger-holder {
	position: relative;
    top: 4px;
}

.hamburger {
	padding: 0;
}

.hamburger-box {
	height: 18.5px;
}

.hamburger-inner, .hamburger-inner:after, .hamburger-inner:before {
	border-radius: 0px;
	height: 1.5px;
}

.hamburger.is-active .hamburger-inner,
.hamburger.is-active .hamburger-inner:after,
.hamburger.is-active .hamburger-inner:before {
	background-color: #000;
}

.hamburger:not(.is-active) .hamburger-inner:after {
	top: 8px;
}

.hamburger:not(.is-active) .hamburger-inner:before {
    top: -8px;
}

@media (max-width: 992px) {
	.hamburger-inner, 
	.hamburger-inner:after, 
	.hamburger-inner:before {
		width: 30px !important;
	}
}


.hamburger.is-active .hamburger-inner, .hamburger.is-active .hamburger-inner::before {
	width: 40px;
}

/* End Hamburger */

/*** footer ***/

footer.main {
	padding: 80px 0 80px 0;
	background: #9F6714;
}

footer.main p {
	margin: 0;
	opacity: 0.85;
	color: white;
}

footer.main a {
	color: inherit;
}

.footer-holder > div {
	flex: 1;
	text-align: left;
}

footer .second-level p {
	font-size: 10px;
    opacity: 0.5;
    font-weight: 400;
    letter-spacing: 1px;
}

.footer-holder div p.footer-title {
	font-weight: 400;
    font-style: normal;
    font-size: 10px;
    opacity: 0.5;
    letter-spacing: 1px;
	margin-bottom: 12px;
}

@media (max-width: 992px) {
	.footer-holder div p.footer-title {
		font-size: 12px !important;
	}
}

img.social-icon {
    width: 15px;
	margin-right: 10px;
	margin-top: -4px;
}

/*** end footer ***/

.boxed-wrap {
    margin-top: 140px;
    margin-bottom: 100px;
}

/***************
    Navbar CSS Stylings
***************/

.navbar {
    padding: 0 70px;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 10;
    min-height: 65px;
    transition: all 0.8s;
    background-size: cover;
    display: flex !important;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    box-sizing: border-box;
	border: none;
}

.navbar .menu {
	font-size: 13px;
    line-height: 13px;
    margin-right: 60px;
    margin-left: auto;
    color: inherit;
	font-weight: 300;
	letter-spacing: 2px;
	color: var(--primary-headline-color);
}

@media (max-width: 768px) {
	.navbar {
		padding: 0 10px;
	}

	.navbar.white-bg {
		padding: 0 10px !important;
	}

	.navbar .menu {
		margin-right: 30px;
	}
}

.menu-holder > div {
	padding: 0 15px;
	max-width: 1100px;
}

.menu-holder {
	position: fixed;
	padding: 80px 0;
    transition: transform 0.3s;
    width: 100%;
	z-index: 10;
	background: #F5F5F5;
	overflow-y: auto;
	background-size: cover;
	top: 0px;
	transform: translateX(100%);
	height: 100%;
	will-change: transform;
    display: flex;
    align-content: center;
    align-items: center;
}

.menu-holder a,
.menu-holder p {
	display: block;
    font-size: 20px;
    margin-bottom: 10px;
	color: #575552;
	opacity: 0;
}

.menu-holder .headline {
	font-weight: 300;
	margin-bottom: 20px;
	color: #352001;
	opacity: 0;
	transform: translateX(10px);
}

.menu-is-open .menu-holder {
    transform: translateX(0) !important;
}

.menu-is-open .menu-holder a,
.menu-is-open .menu-holder p,
.menu-is-open .menu-holder .headline {
	opacity: 1;
	transform: translateX(0);
}

.menu-is-open .menu-holder .headline {
	transition: 0.8s opacity 0.4s, 0.8s transform 0.4s;
}

.menu-is-open .menu-holder a,
.menu-is-open .menu-holder p {
	transition: 0.8s opacity 0.7s;
}

.mobile-links {
	padding-bottom: 85px;
	display: none;
}

.desktop-links .menu:last-child {
	margin-right: 0;
}

.desktop-links, .hamburger-holder {
	display: inline-block;
}

.logo-holder {
	width: 256px;
}

.mobile-menu-footer * {
	font-size: 10px !important;
	line-height: 1.4em;
}

.mobile-menu-footer-holder {
	display:flex;
	justify-content: space-between;
}

h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6, .c-brown {
	color: #352001;
	transition: all 0.3s;
}


@media (max-width: 992px) {
	.logo-holder {
		width: fit-content;
	}

	.desktop-links {
		display: none;
	}

	.menu-holder {
		padding: 105px 0 45px;
	}
}

@media (max-width: 768px) {
	.menu-holder {
		padding: 95px 0 75px;
		display: block;
	}

	.mobile-links {
		padding-bottom: 55px;
	}

	.menu-holder a {
		display: block;
		font-size: 18px;
	}

	.mobile-menu-footer-holder {
		display: block;
	}

	.mobile-menu-footer-holder > div {
		margin-bottom: 17px;
	}
}

/* End Navbar */

.container-fluid.w-max {
	max-width: 1200px;
}

p {
	font-size: 15px;
    font-weight: 300;
}

@media (max-width: 992px) {
	button:not(.hamburger), html input[type=button], input[type=reset], input[type=submit] {
		font-size: 14px;
	}

	.container-fluid.w-max {
		max-width: 900px;
	}
}

@media (max-width: 768px) {
	button:not(.hamburger), html input[type=button], input[type=reset], input[type=submit] {
		font-size: 12px;
	}

	p {
		font-size: 15px;
	}

	.container-fluid.w-max {
		max-width: 700px;
	}
}

.display-block-me-on-mobile {
	display: inline-block !important;
}

@media (max-width: 576px) {
	button:not(.hamburger), html input[type=button], input[type=reset], input[type=submit] {
		font-size: 12px;
	}

	p {
		font-size: 14px;
	}

	.container-fluid.w-max {
		max-width: 550px;
	}

	.center-me-on-mobile {
		text-align: center !important;
	}

	.display-block-me-on-mobile {
		display: block !important;
	}
}

/** Other Styling **/

a:hover,
a:focus,
a:active {
    color: #9F6714;
	text-decoration: none !important;
}

hr.padding_div {
	border: none;
	margin: 0;
}

.padding_div {
    width: 100%;
}

.padding_div.aa {
    height: 150px;
}

.padding_div.bb {
    height: 100px;
}

.padding_div.cc {
    height: 75px;
}

.padding_div.dd {
    height: 50px;
}

.padding_div.ee {
    height: 25px;
}

@media (max-width: 768px) {
	.padding_div.aa {
		height: 99px;
	}

	.padding_div.bb {
		height: 66px;
	}

	.padding_div.cc {
		height: 45px;
	}

	.padding_div.dd {
		height: 33px;
	}

	.padding_div.ee {
		height: 16.5px;
	}
}

.opac-0 {
	opacity: 0;
}

.opac-60 {
	opacity: 0.6;
}

.fw-300 {
	font-weight: 300 !important;
}

.fw-400 {
	font-weight: 400 !important;
}

.fw-500 {
	font-weight: 500 !important;
}

.fw-600 {
	font-weight: 600 !important;
}

a {
	color: inherit;
}

/***************
    Sleek Scroll Bar CSS Stylings
***************/

::-webkit-scrollbar {
    width: 12px;
    height: 12px;
}

/* Track */
::-webkit-scrollbar-track {
    background: white;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #002156;
}

::-webkit-scrollbar-thumb:hover {
    background: #002156;
}

::-webkit-scrollbar-thumb:window-inactive {
	background: #B8BFC0;
}

/* End Sleek Scroll Bar */

.woocommerce-cart-form {
	border: none;
}

.cart-collaterals .cart_totals {
	border: 1px solid #e3e3e3;
}

.navbar.white-bg {
	padding: 0 20px;
    background: #FFFFFF;
    min-height: 60px;
	transition: all 0.6s;
}

.accordion p.font-weight-bold {
	cursor: pointer;
}

.accordion [data-toggle="collapse"]:after {
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .255em;
    vertical-align: .255em;
    content: "";
    border-top: .3em solid;
    border-right: .3em solid transparent;
    border-bottom: 0;
    border-left: .3em solid transparent;
	transform: rotate(180deg);
	transition: all 0.2s;
}   

.accordion [data-toggle="collapse"].collapsed:after {
  	transform: rotate(0deg) ;
	transition: all 0.2s;
}

.menu-holder .headline {
	font-size: 45px;
}

hr {
	border-top: 1px solid rgba(0,0,0,0.1) !important;
}

hr.padding_div {
    border: none !important;
    margin: 0;
}