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

/*colors
	darkest brown: #52433A
	dark brown:    #756155
	medium brown:  #B9A497
	light brown:   #DCCDC4
	beige:         #f2E2D9
	white:         #FFFCFB
	dark orange:   #A58264
	muted orange:  #D3AE8F
*/

/*-----defaults-----*/

body{
    background-color:#FFFCFB;
	font-family: "lato", "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", "DejaVu Sans", Verdana, "sans-serif";
	color: #52433A;
	margin: 0;
}
img{
	height: auto;
}
h1 {
    font-size: 4.375em;
	font-weight: 600;
	line-height: 1.1em;
   	letter-spacing: -0.02em;
}
h2 {
    font-size: 4em;
	font-weight: 600;
	line-height: 1.1em;
   	letter-spacing: -0.025em;
}
h3 {
	font-size: 3em;
	font-weight: 600;
	line-height: 1.2em;
   	letter-spacing: -0.02em;
}
h4 {
    font-size: 1.5em;
	font-weight: 600;
	line-height: 1.2em;
   	letter-spacing: -0.02em;
}
h5 {
	font-size: 1.5em;
	font-weight: 600;
	line-height: 1.2em;
   	letter-spacing: -0.02em;
	color: #B9A497;
}
h6 {
	font-size: 1.5em;
	font-weight: 600;
	line-height: 1.2em;
   	letter-spacing: -0.02em;
	color:#A58264;
}
p {
    font-size: 1.125em;
	font-weight: 400;
    line-height: 1.45em;
    letter-spacing: -0.005em;
}
li {
    list-style-type: circle;
    font-size: 1.125em;
    font-weight: 400;
	line-height: 1.45em;
	letter-spacing: -0.005em;
	}
a{
	color:#A58264; 
	text-decoration: none;
	}
a:visited{
	color:#756155;
	}
a:hover{
	color:#D3AE8F; 
	}
input{
	color: #756155;
	font-weight: 300;
	font-size: .875em;
	margin: 10px 0px;
	padding: 10px 10px;
	box-sizing: border-box;
	border: none;
	display: block;
	border-radius: 10px;
}
.inputfield{
	position: relative;
}
.inputfield input:focus{
	outline: none;
}
.inputfield input:focus + label{
	top: -12px;
	color: #A58264;
}
.inputfield input:not(:placeholder-shown) + label{
	top: -12px;
	color: #A58264;
}
.inputfield label{
	position: absolute;
	top: 6px;
	left: 0px;
	padding: 0 10px;
	pointer-events: none;
	transition: top .2s;
	color: #756155;
}
.button, a.button{
    background-color: #756155;
	color: #FFFCFB;
	font-weight: 500;
	font-size: 1em;
    letter-spacing: 0.005em;
	padding: 12px 16px;
	border: none;
	border-radius: 14px;
	display: inline-block;
}
.button:hover {
    background-color: #A58264;
}
.wrapper{
	padding: 64px 64px;
	margin-left: auto;
	margin-right: auto;
}

/* ----- header and nav ----- */
#site-header {
	background-color: #DCCDC4;
}
#header-bar {
	padding: 24px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
#site-header .logo img {
	height: 32px;
}
#site-header ul{
	padding: 0;
	margin: 0;
}
#site-header li{
	padding: 0;
	margin: 0;
	list-style: none;
	text-transform: lowercase;
	font-size: 1em;
	font-weight: 500;
}
#site-header a{
	color: #52433A;
}
#site-header a:hover{
	color: #A58264;
}
#nav-toggle {
	display: block;
	cursor: pointer;
}

#nav-toggle img {
	width: 24px;
	height: 24px;
}

#search .inputfield{
	font-weight: 300;
	position: relative;
}
#search-query{
	min-width:300px;
}
#search .inputfield label{
	top: 17px;
}
#search .inputfield input:focus + label{
	top: -2px;
}
#search .inputfield input:not(:placeholder-shown) + label{
	top: -2px;
}
#searchbutton{
	background-color: #DCCDC4;
	border-style: none;
}
#nav{
	display:flex;
	justify-content: space-between;
	align-items: center;
}
#nav ul{
	display: flex;
	justify-content: flex-start;
}
#nav li{
	display: inline;
	margin-left: 22px;
	margin-right: 22px;
	white-space: nowrap;
}
.navlistitem {
	display: inline-flex;
	align-items: center;
	white-space: nowrap;
}
#nav-links-container{
	display: flex;
	align-items: center;
}
#socials-container{
	display: flex;
	align-items: center;
}
#socialsandsub{
	display:flex;
	justify-content: flex-end;
	align-items: center;
}
#search {
	display: none;
}
#nav-top-row {
	display: none;
}
#desktop-nav-logo {
	display: none;
}
#desktop-search {
	display: none;
}
#socialsandsub li{
	display: inline;
	margin-left: 12px;
	margin-right: 12px;
}
#socialsandsub .button{
	color: #FFFCFB;
	height: 24px;
}
#socialsandsub .button:hover{
	color: #FFFCFB;
}

.nav-collapse ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.nav-collapse.opened {
	max-height: 9999px;
}

.nav-toggle {
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	-o-user-select: none;
	user-select: none;
}

/* Mobile nav collapse behavior */
.js .nav-collapse {
	clip: rect(0 0 0 0);
	max-height: 0;
	position: absolute;
	display: block;
	overflow: hidden;
	zoom: 1;
}

.nav-collapse {
	display: block;
	width: 100%;
}

.nav-collapse.opened {
	padding: 0 24px 24px 24px;
}

.nav-collapse ul {
	width: 100%;
	display: block;
}

.nav-collapse li {
	width: 100%;
	display: block;
}

/* ----- valueprop ----- */

#valuepropbg{
	background-image: url("images/valueprop.jpg");
	height: 540px;
	background-size: cover;
	background-position: right bottom;
	position: relative;
}
#valueprop{
	width: 593px;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: 100px;
}
#valueprop h1{
	font-weight: 500;
	line-height: 1.1em;
	letter-spacing: -.0214375em;
}

/* ----- homepage content -----*/
.content-title  h1, h2{
	font-weight: 500;
	margin-top: 20px;
	font-size: 3em;
}

.articlecards{
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}

.articlecard{
	width: 320px;
	background-color: #b9A497;
	border: none;
	border-radius: 16px;
	margin: 24px;
}
.articlecard img{
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
    display: block;
}
.articlecard h3{
	font-size: 1.25em;
	font-weight: 500;
	margin-top: 0px;
	margin-bottom: 12px;
	color: #FFFCFB;
}
.articlecard p{
	color: #FFFCFB;
	font-weight: 300;
	line-height: 1em;
	margin-top: 12px;
	margin-bottom: 30px;
}
.articlecard .button{
	background-color: #b9A497;
	font-weight: 400;
	padding: 0px;
	color: #52433A;
}
.articlecardtext{
	padding: 24px;
}

/* ----- subscription -----*/

#subscriptioncontainer{
	background-image: url("images/scandipatternbeigerepeating.jpg");
	background-size: 300px;
	background-repeat: repeat;
	padding-top: 50px;
	padding-bottom: 50px;
	display: flex;
	justify-content: center;
}
#subscriptionbox{
	background-color: #FFFCFB;
	display: flex;
	width: 820px;
	height: 200px;
	border-radius: 16px;
}
#subscriptionbox img{
	border-bottom-left-radius: 16px;
	border-top-left-radius: 16px;
}
#subscriptionformtext{
	padding: 24px;
}
#subscriptionformtext h2{
	font-size: 1.5em;
	margin-top: 0px;
	margin-bottom: 10px;
}
#subscriptionformtext p{
	font-weight: 400;
	margin: 0px;
}
#subscriptionemailinput{
	background-color: #DCCDC4;
	height: 62px;
	width: 380px;
	display: flex;
	justify-content: center;
	align-items: center;
}
#subscriptionemailinput input{
	margin:0px;
	border-radius: 6px;
	margin-right: 10px;
}
#mc_embed_signup_scroll{
	display: flex;
	justify-content: center;
	align-items: center;	
}
#mc_embed_signup{
	display: flex;
	justify-content: center;
	align-items: center;
}
#subscriptionemailinput .inputfield label{
	font-weight: 300;
}
#mc-embedded-subscribe{
	height:36px;
	padding: 10px 16px;
}

/* ----- recommended products -----*/

.recommendedproducts{
	display: flex;
	justify-content: center;
	align-content:flex-start;
	flex-wrap: wrap;
}

.recommendedproduct{
	width: 320px;
	margin:20px;
}
.recommendedproduct img{
	width: 320px;
	border: none;
	border-radius: 16px;
	margin: 24px;
	background-color: #FFFCFB;
}

/* ----- footer -----*/
#footer{
	background-color: #DCCDC4;
	padding: 80px 64px;
	display:flex;
	justify-content: space-between;
}
#footer ul{
	padding:0px;
}
#footer p{
	font-size: 1em;
	font-weight: 400;
}
#footer li{
	padding: 0;
	margin: 0;
	list-style: none;
}
#footersocials li{
	display: inline;
}
#footersocials{
	margin-top: 40px;
	display:flex;
	align-items: center;
}
#footersocials li{
	display: inline;
	margin-right: 20px;
}
#footersocials ul{
	padding: 0px;
	display:flex;
	align-items: center;
}
#footerlogo p{
	margin-top: 0px;
	font-weight: 300;
}
#footersitemap{
	display:flex;
}
#footersitemap h2{
	font-size: 1em;
	font-weight: 500;
}
.footersitemapsection{
	margin-left: 40px;
}
#footersitemap li{
	font-size: 1em;
	font-weight: 400;
	margin-top: 10px;
	margin-bottom:10px;
}
#footersitemap a{
	color: #756155;
}
#footersitemap a:hover{
	color: #A58264;
}

/* ----- about page -----*/
#about-page-content-1 img{
    height: 100%;
    width: 400px;
    object-fit: cover;
    border-radius: 16px;
}
.about-page h2{
	font-size: 2em;
}
.about-page p{
	font-size: 1em;
	font-weight: 300;
}
#about-page-content-1{
	display: flex;
	justify-content: center;
	flex-wrap:wrap;
	align-items: center;
	margin-bottom: 40px;
}
#about-page-content-1-text{
	width:300px;
	margin-left: 64px;
}
#about-page-content-2{
	padding:120px;
	background-color: #DCCDC4;
}
#about-page-content-2 img{
	height: 100%;
    width: 320px;
    object-fit: cover;
    border-radius: 16px;
	margin: 32px;
}
#about-page-content-2-images{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-evenly;
}
#contact-us-section{
	padding: 40px;
	display:flex;
	justify-content: center;
	align-items: center;
}
#contact-us-section h2{
	margin-right:60px;
}

.article-page .wrapper{
	padding: 120px 0px 40px 0px;
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
}

.article-page h1{
	font-size: 4em;
	font-weight: 500;
}
.article-page .article-metadata p{
	font-size: 1.125em;
	font-weight: 400;
	margin-top: 4px;
	margin-bottom: 4px;
}
.article-page img{
	height: 500px;
    width: 100%;
    object-fit: cover;
    border-radius: 16px;
	margin-top: 32px;
	margin-bottom: 32px;
}

.article-page p{
	font-size: 1.25em;
	font-weight: 300;
}
.article-page .article-tip{
	font-style: italic;
	font-weight: 300;
}

.article-page a{
	font-size: 1.25em;
	font-weight: 300;
	text-decoration: underline;
}

.article-page blockquote{
	font-size: 2.75em;
	font-weight: 500;
	text-align: center;
	margin-bottom: 0px;
}

.article-page .blockquote-metadata{
	display: flex;
	justify-content: center;
	align-items: center;
}

.article-page .blockquote-metadata img{
	width: 64px;
	height:64px;
	margin-right: 16px;
}
.article-page .blockquote-metadata p{
	font-size: 1.25em;
	font-weight: 500;
}

/* ----- media queries ----- */


/* ----- mobile -----*/

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

/* Mobile Navigation Styles */
#nav-toggle {
	display: block;
}

#nav-top-row {
	display: none;
}

#nav-bottom-row {
	display: block;
}

#nav-links-container,
#socials-container {
	display: block;
	width: 100%;
}

#nav {
	display: block;
}

#nav li {
	display: block;
	margin: 0;
	padding: 12px 0;
	border-bottom: 1px solid #B9A497;
}

.navlistitem {
	display: flex;
	justify-content: space-between;
}

#socialsandsub {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding-top: 20px;
}

#socialsandsub li {
	display: block;
	padding: 10px 0;
}

#valuepropbg{
	height: 450px;
}
#valueprop{
	width: 215px;
	position: absolute;
	top: 25%;
	transform: translateY(-50%);
	left: 60px;
}
#valueprop h1{
	font-size: 1.87em;
}
.wrapper{
	padding: 30px 24px;
}
.content-title  h1, h2{
	font-size: 1.25em;
	margin-bottom: 40px;
}
#subscriptioncontainer{
	padding-top: 50px;
	padding-bottom: 50px;
	display: flex;
	justify-content: center;
}
#subscriptionbox{
	display: flex;
	flex-direction: column;
	width: 320px;
	height: 400px;
}
#desktopsubscriptionimage{
	display: none;
}
#subscriptionbox img{
	border-top-left-radius: 16px;
	border-top-right-radius: 16px;
}
#subscriptionformtext h2{
	font-size: 1.25em;
	margin-bottom: 6px;
}
#subscriptionformtext p{
	font-size: 1em;
	margin-bottom: 20px;
}
#subscriptionemailinput{
	height: 120px;
	width: 250px;
	justify-content: flex-start;
	padding-left: 20px;
	padding-right: 0px;
}
#subscriptionemailinput input{
	margin-right: 0px;
	margin-top:8px;
}
#mc_embed_signup_scroll{
	display: flex;
	flex-direction:column;
	justify-content: flex-start;
	align-items: flex-start;	
}
#mc_embed_signup{
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
}
#subscriptionemailinput .inputfield label{
	top: 17px;
}
#subscriptionemailinput .inputfield input:focus + label{
	display: none;
}

.recommendedproduct{
	width: 200px;
	margin: 10px;
}
.recommendedproduct img{
	width: 200px;
	margin: 10px;
}
#footer{
	padding: 64px 24px;
	display:flex;
	flex-direction: column;
	justify-content: center;
}
#footersocials{
	margin-top: 0px;
	display:flex;
	align-items: center;
}
#footerlogo p{
	margin-bottom: 10px;
}
#footersitemap{
	display:flex;
	flex-direction: column;
}
.footersitemapsection{
	margin-left: 0px;
}

#about-page-wrapper{
	padding-left: 60px;
	padding-right: 60px;
}
#about-page-content-1 img{
    width: 200px;
}
.about-page h2{
	font-size: 1.25em;
}
.about-page p{
	font-size: .9em;
}
#about-page-content-1{
	display: flex;
	flex-direction:column;
	justify-content: center;
	flex-wrap:wrap;
	align-items: center;
	margin-bottom: 40px;
}
#about-page-content-1-text{
	width:200px;
	margin-left: 0px;
}
#about-page-content-2{
	padding:40px;
}
#about-page-content-2 img{
    width: 200px;
}
#contact-us-section{
	padding: 40px;
	display:flex;
	flex-direction:column;
	justify-content: center;
	align-items: center;
}
#contact-us-section h2{
	margin-right:0px;
	margin-bottom: 20px;
}
	
.article-page .wrapper{
	padding: 60px 7.5% 30px 7.5%;
}

.article-page h1{
	font-size: 2em;
}
.article-page .article-metadata p{
	font-size: 1.125em;
	font-weight: 400;
	margin-top: 4px;
	margin-bottom: 4px;
}

.article-page img{
    width: 100%;
    object-fit: cover;
    border-radius: 16px;
}

.article-page blockquote{
	font-size: 1.625em;
}

	
}
/* ----- desktop -----*/
@media screen and (min-width: 930px) {
	
.js .nav-collapse {
	position: relative;
}

.js .nav-collapse.closed {
	max-height: none;
}

.nav-toggle {
	display: none;
}

#header-bar{
	display:none;
}

#nav-toggle{
	display:none;
}
	
.nav-collapse,
.js .nav-collapse {
	display: flex;
	flex-direction: column;
	padding: 30px 64px;
	width: 100%;
	box-sizing: border-box;
	position: relative;
	max-height: none;
	clip: auto;
	overflow: visible;
}

#nav-top-row {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	margin-bottom: 20px;
}

#desktop-nav-logo {
	display: flex;
	align-items: center;
}

#desktop-nav-logo img {
	height: 32px;
	width: auto;
}

#desktop-search {
	display: flex;
	align-items: center;
}

#desktop-search form {
	display: flex;
	flex-direction: row;
	align-items: center;
}

#desktop-search .inputfield {
	position: relative;
}

#desktop-search-query {
	min-width: 200px;
	background-color: #FFFCFB;
	border-radius: 10px;
}

#desktop-search .inputfield label {
	top: 17px;
}

#desktop-search .inputfield input:focus + label {
	top: -2px;
}

#desktop-search .inputfield input:not(:placeholder-shown) + label {
	top: -2px;
}

#desktop-searchbutton {
	background-color: transparent;
	border: none;
	cursor: pointer;
	padding: 8px;
}

#desktop-searchbutton img {
	width: 20px;
	height: 20px;
}

#nav-bottom-row {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	width: 100%;
}

#nav-links-container {
	display: flex;
	align-items: center;
}

#socials-container {
	display: flex;
	align-items: center;
}

.nav-collapse ul {
	width: auto;
	display: flex;
	align-items: center;
}

.nav-collapse li {
	width: auto;
	display: inline-flex;
	align-items: center;
}

#nav li:first-child {
	margin-left: 0;
}

#mobilesubscriptionimage {
	display: none;
}


#subscriptioncontainer{
	background-image: url("images/scandipatternbeigerepeating.jpg");
	background-size: 300px;
	background-repeat: repeat;
	padding-top: 50px;
	padding-bottom: 50px;
	display: flex;
	justify-content: center;
}
#subscriptionbox{
	background-color: #FFFCFB;
	display: flex;
	width: 820px;
	height: 200px;
	border-radius: 16px;
}
#subscriptionbox img{
	border-bottom-left-radius: 16px;
	border-top-left-radius: 16px;
}
#subscriptionformtext{
	padding: 24px;
}
#subscriptionformtext h2{
	font-size: 1.5em;
	margin-top: 0px;
	margin-bottom: 10px;
}
#subscriptionformtext p{
	font-weight: 400;
	margin: 0px;
}
#subscriptionemailinput{
	background-color: #DCCDC4;
	height: 62px;
	width: 380px;
	display: flex;
	justify-content: center;
	align-items: center;
}
#subscriptionemailinput input{
	margin:0px;
	border-radius: 6px;
	margin-right: 10px;
}
#mc_embed_signup_scroll{
	display: flex;
	justify-content: center;
	align-items: center;	
}
#mc_embed_signup{
	display: flex;
	justify-content: center;
	align-items: center;
	}
	
}