@charset "utf-8";
/* CSS Document */

/* ------------------------------------------------------------------- 
 * ## main navigation 
 * ------------------------------------------------------------------- */
.header-nav {
	width: 440px;
	height: 100%;
	background: #ffffff;
	-webkit-transition: all 0.5s ease;
	transition: all 0.5s ease;
	-webkit-transform: translateZ(0);
	-webkit-backface-visibility: hidden;
	-webkit-transform: translateX(-100%);
	-ms-transform: translateX(-100%);
	transform: translateX(-100%);
	visibility: hidden;
	overflow-y: auto;
	overflow-x: hidden;
	padding: 3.6rem 3rem 3.6rem 3.6rem;
	position: fixed;
	left: 0;
	top: 0;
	z-index: 9999999999;
	display:none;
}
.header-nav:after { 
	content: "";
	width: 89.3%;
	float: left;
	background: url(../images/logo-rustic-rose-plain-symbol.svg) no-repeat center / 100%;
	opacity: 0.1;
	margin: 0 0 0;
	padding: 0 0 84.6%;
	position: absolute;
	right: -4%;
	bottom: 4%;
	z-index: -9;
}
.header-nav p {
	float: none;
    font-size: 14px;
    font-weight: 400;
    color: #202527;
    letter-spacing: normal;
    line-height: 1.86;
    margin: 0 0 16px;
}
.header-nav h3 {
	font-size: 16px;
    font-weight: 600;
    color: #ccb6a5;
    letter-spacing: 9px;
    line-height: 1.63;
	text-transform: uppercase;
    margin: 0 0 0;
}
.header-nav a:hover, .header-nav a:focus, .header-nav a:active {
	color: white;
}
.header-nav__content {
	position: relative;
	left: 50px;
	opacity: 0;
	visibility: hidden;
}
.header-nav__list li {
	line-height: 4.8rem;
}
.header-nav__list li li {
	line-height: 3rem;
}
.header-nav__list a::before {
	content: counter(ctr, decimal-leading-zero) ".";
	counter-increment: ctr;
	font-size: 11px;
	color: #ccb6a5;
	-webkit-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
	position: absolute;
	left: 3px;
	top: 0;
}
.header-nav__list a:hover::before {
	color: #202527;
}
.header-nav__social {
	width: 100%;
	float: left;
	margin: 20px 0 0;
}
.header-nav__social li {
	width: 50px;
	float: left;
	margin: 0 8px 0 0;
}
.header-nav__social li:last-child {
	margin: 0;
}
.header-nav__close {
	height: 30px;
	width: 30px;
	display: block;
	background: #202527;
	border-radius: 50%;
	font: 0/0 a;
	text-shadow: none;
	color: transparent;
	transition: all 0.25s ease-out 0s;
	position: absolute;
	top: 24px;
	right: 30px;
	z-index: 800;
}
.header-nav__close:hover {
	background: #ccb6a5;
}
.header-nav__close span::before, .header-nav__close span::after {
	content: "";
	display: block;
	height: 2px;
	width: 12px;
	background-color: #ffffff;
	position: absolute;
	top: 50%;
	left: 9px;
	margin-top: -1px;
}
.header-nav__close span::before {
	-webkit-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	transform: rotate(-45deg);
}
.header-nav__close span::after {
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}
/* menu is open
 * ----------------------------------------------- */
.menu-is-open .header-nav {
	-webkit-transform: translateX(0);
	-ms-transform: translateX(0);
	transform: translateX(0);
	visibility: visible;
	-webkit-overflow-scrolling: touch;
}
.menu-is-open .header-nav .header-nav__content {
	opacity: 1;
	visibility: visible;
	-webkit-transition-property: all;
	transition-property: all;
	-webkit-transition-duration: 0.5s;
	transition-duration: 0.5s;
	-webkit-transition-timing-function: ease-in-out;
	transition-timing-function: ease-in-out;
	-webkit-transition-delay: 0.3s;
	transition-delay: 0.3s;
	left: 0;
}
/* ------------------------------------------------------------------- 
 * ## mobile menu toggle 
 * ------------------------------------------------------------------- */
.header-menu-toggle {
	width: 38px;
	float: left;
	text-align: center;
	border-radius: 50%;
	-webkit-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
	margin: 0 0 0;
	position: fixed;
	top: 12px;
	left: 20px;
	z-index: 99999999;
	display:none;
}
.header-menu-toggle img {
	width: 100%;
	display: block;
}
.header-menu-toggle::after {
	content: "Menu";
	float: right;
	font-size: 14px;
	font-weight: 500;
	color: #c1ab9b;
	letter-spacing: 2px;
	line-height: 1.9;
	text-transform: uppercase;
	transform: translateY(-50%);
	margin: 0 0 0;
	position: absolute;
	top: 50%;
	right: -58px;
}
.header-menu-toggle.opaque {
	top: 12px;
}
.header-menu-toggle.opaque::before {
	display: none;
}

/*Smartphone css*/
@media screen and (max-width: 480px) {
.header-menu-toggle {
	width: 38px;
	margin: 0 0 0;
	position: fixed;
	top: 16px;
	left: 5%;
	display:block;
}
.header-menu-toggle::after {
	font-size: 12px;
	letter-spacing: 1.60px;
	position: absolute;
	right: -50px;
}
.header-nav {
	width: 320px;
	padding: 6.6rem 1rem 3.6rem;
	display:block;
}
.header-nav p {
	font-size: 13px;
}
.header-nav h3 {
	font-size: 14px;
	letter-spacing: 7px;
}
.header-menu-toggle.opaque {
	top: 16px;
}
.header-nav__social li {
	width: 42px;
	margin: 0 8px 0 0;
}
}

@media screen and (min-width:481px) and (max-width:600px) {
.header-menu-toggle {
	width: 38px;
	margin: 0 0 0;
	position: fixed;
	top: 16px;
	left: 5%;
	display:block;
}
.header-menu-toggle::after {
	font-size: 12px;
	letter-spacing: 1.60px;
	position: absolute;
	right: -50px;
}
.header-nav {
	width: 320px;
	padding: 6.6rem 1rem 3.6rem;
	display:block;
}
.header-nav p {
	font-size: 13px;
}
.header-nav h3 {
	font-size: 14px;
	letter-spacing: 7px;
}
.header-menu-toggle.opaque {
	top: 16px;
}
.header-nav__social li {
	width: auto;
	margin: 0 10px 0 0;
}
}

@media screen and (min-width:601px) and (max-width:767px) {
.header-menu-toggle {
	width: 38px;
	margin: 0 0 0;
	position: fixed;
	top: 16px;
	left: 5%;
	display:block;
}
.header-menu-toggle::after {
	font-size: 12px;
	letter-spacing: 1.60px;
	position: absolute;
	right: -50px;
}
.header-nav {
	width: 320px;
	padding: 6.6rem 1rem 3.6rem;
	display:block;
}
.header-nav p {
	font-size: 13px;
}
.header-nav h3 {
	font-size: 14px;
	letter-spacing: 7px;
}
.header-menu-toggle.opaque {
	top: 16px;
}
.header-nav__social li {
	width: auto;
	margin: 0 10px 0 0;
}
}

@media screen and (min-width:768px) and (max-width:900px) {
.header-menu-toggle {
	top: 12px;
	left: 3%;
}
.header-menu-toggle::after {
	font-size: 12px;
	letter-spacing: 1.40px;
	display: none;
	right: -50px;
}
.header-nav {
	width: 340px;
	padding: 3.6rem 2rem 3.6rem;
}
.header-nav p {
	font-size: 13px;
}
.header-nav h3 {
	font-size: 18px;
}
}

@media screen and (min-width:901px) and (max-width:1024px) {
.header-menu-toggle {
	top: 12px;
	left: 3%;
}
.header-menu-toggle::after {
	font-size: 13px;
	letter-spacing: 1.70px;
	display: none;
	right: -50px;
}
.header-nav {
	width: 360px;
	padding: 3.6rem 2.50rem 3.6rem;
}
.header-nav p {
	font-size: 14px;
}
.header-nav h3 {
	font-size: 19px;
}
}

@media screen and (min-width:1025px) and (max-width:1240px) {
.header-menu-toggle {
	top: 12px;
	left: 3%;
}
.header-menu-toggle::after {
	display: none;
}
}

@media screen and (min-width:1241px) and (max-width:1340px) {
.header-menu-toggle {
	top: 12px;
	left: 3%;
}
.header-menu-toggle::after {
	display: none;
}
}

@media screen and (min-width:1341px) and (max-width:1440px) {
.header-menu-toggle {
	top: 12px;
}
.header-menu-toggle::after {
	display: none;
}
}