/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
/* ==== END OF RESET ====*/

/* ==== GENERAL STYLING RULES ==== */

* {
	box-sizing: border-box;
}

body {
	max-width: 100%;
	margin: 0 auto;
	background-color: #FFFFFF;
	position: relative;
}

/* ==== MEDIA QUERIES FOR SMALL SCREENS ===== */

@media (max-width: 845px) {


/* ==== LINK STYLING ==== */

nav {
	text-align: center;
	margin: 0 auto;
	font-family: Nunito, 'Nunito Sans', Roboto, Arial, sans-serif;
	font-size: 1.5em;
	background-color: #FFFFFF;
	padding: 1.0em 0;
}

a:link, a:visited {
  color: #3B2621;
  text-decoration: none;
  font-weight: 700;

}
a:hover,  a:active, a:focus{
  color: #F5CE4E;
  font-weight: 700;
}

footer a:hover,  a:active, a:focus {
  color: #F5CE4E;
  font-weight: 700;
}

/* ==== END OF LINK STYLING ==== */

/* ==== HEADER STYLING ==== */

header {
	background-color: #9C9295;
	text-align: center;
	padding-top: 1.0em;
}

.menu li {
	display: inline-block;
	list-style-type: none;
	padding: 0.5em;
}

header p {
	color: #FFFFFF;
	font-family: Nunito, 'Nunito Sans', Roboto, Arial, sans-serif;
	font-size: 1.0em;
	line-height: 1.6em;
}

header p:last-of-type {
	padding-bottom: 2.0em;
}

/* ==== END OF HEADER STYLING ==== */

/* ==== IMAGES STYLING ==== */

picture {
	display: block;
	text-align: center;
	margin-top: 2.0em;
	margin-bottom: 2.0em;
}

.banner {
	display: block;
	width: 100vw;
	height: auto;
	padding: 0;
	background-size: contain;
}


.offerings {
	display: grid;
	grid-template-columns: repeat(1, 1fr);
	padding: 2.0em;
	max-width: 100%;
}

.product-items {
	display: grid;
	grid-template-columns: repeat(1, 1fr);
	padding: 2.0em;
	width: 100%;
}

.offerings figure, .product-items figure{
	border: 3px solid #3B2621;
	background-color: #3B2621;
	max-width: 100%;
	width: 80%;
	max-width: 310px;
	margin: 1.5em auto;
	padding: 1.0em;
	flex-direction: column;
	text-align: center;
	margin-top: 2.0em;
	box-shadow: grey 0px 8px 24px;
}

.offerings img, .product-items img {
	display: flex;
	width: auto;
	margin: auto;
	padding: 0.5em;
	position: relative;
}

.baker-daniel {
	margin-top: 3.0em;
}

.baker-daniel, .baker-julia, .baker-becky {
	display: block;
	text-align: center;
}

.baker-becky {
	margin-top: 3.0em;
}

/* ==== END OF IMAGES STYLING ==== */

/* ==== MAIN STYLING ==== */

.bakery, .story, .products, .help-page {
	position: relative;
	border: 5px solid #406158;
	background: #406158;
	padding-bottom: 3.0em;
}

h1, .help-page h1 {
	text-align: center;
	margin-top: 1.5em;
}


h2 {
	text-align: center;
	margin-top: 2.0em;
}


h2 + p {
	margin-top: 2.0em;
	margin: 2.0em;
}

 section {
	position: relative;
	border: 5px solid #9F8C86;
	background: #9F8C86;
	padding-bottom: 5.0em;
}

section p {
	margin-top: 2.0em;
	margin: 2.0em;
}

figcaption {
	margin-top: 1.0em;
}

.contacts h2 {
	margin-top: 1.0em;
	margin-bottom: 1.0em;
}


h3 {
	text-align: center;
	margin-top: 1.5em;
}

h3.about-page + p {
	margin-top: 1.0em;
	margin-left: 2.0em;
	margin-bottom: 2.0em;
}

.title1 h2, .title2 h2, .title3 h2{
	margin-top: 0.2em;
}

.title1 + ul, .title2 + ul, .title3 + ul {
	margin-top: 1.0em;
}

iframe {
	position: relative;
	width: 100%;
	height: 300px;
}

.address-text {
	display: grid;
	width: 80%;
	margin: 0 auto;
	grid-template-columns: 1fr 1fr 1fr;
	grid-auto-rows: auto;
	grid-gap: 20px;
	padding-bottom: 1.0em;
}

.address {
	grid-column: 1/2;
	grid-row: 1;
}

.open-hours {
	grid-column: 2/3;
	grid-row: 1;
}

.contact-info {
	grid-column: 3/4;
	grid-row: 1;
}

.contacts {
	max-width: 80%;
	margin: 0 auto;
}

/* ==== END OF MAIN STYLING ==== */

/* ==== TEXT STYLING ==== */

h1, h3 {
	font-family: Solitreo, Kalam, Ruluko, Livvic, ABeeZee, Bellota, Bad Script, Arial, sans-serif;
	font-size: 4.0em;
	color: #FFF;
}

h1.about-page {
	font-family: Solitreo, Kalam, Ruluko, Livvic, ABeeZee, Bellota, Bad Script, Arial, sans-serif;
	font-size: 3.0em;
	color: #FFF;
}

h1.about-page + p {
	text-align: left;
	font-family: Nunito, 'Nunito Sans', Roboto, Arial, sans-serif;
	font-size: 1.5em;
	color: #fff;
	line-height: 1.8em;
	margin-top: 2.0em;
	margin: 2.0em;
}

.products h1 {
	font-family: Solitreo, Kalam, Ruluko, Livvic, ABeeZee, Bellota, Bad Script, Arial, sans-serif; 
	text-align: center;
	font-size: 3.0em;
}

h2 {
	font-family: Solitreo, Kalam, Ruluko, Livvic, ABeeZee, Bellota, Bad Script, Arial, sans-serif;
	color: #C99FA7;
	font-size: 2.5em;
	font-weight: bold;
	font-style: italic;
}

h2 + p {
	text-align: left;
	font-family: Nunito, 'Nunito Sans', Roboto, Arial, sans-serif;
	font-size: 1.5em;
	color: #fff;
	line-height: 1.8em;
}

.contacts h2 {
	font-size: 3.0em;
	color: #407058;
}

h3 {
	text-align: center;
}

h3.about-page {
	font-family: Solitreo, Kalam, Ruluko, Livvic, ABeeZee, Bellota, Bad Script, Arial, sans-serif;
	font-size: 2.0em;	
	color: #C99FA7;
}

h3.about-page + p {
	font-family: Nunito, 'Nunito Sans', Roboto, Arial, sans-serif;
	line-height: 1.8;
	font-size: 120%;
	text-align: left;
	margin: 2.0em;
}

section p {
	text-align: left;
	font-family: Nunito, 'Nunito Sans', Roboto, Arial, sans-serif;
	font-size: 1.5em;
	color: #FFF;
	line-height: 1.8em;
}

.help-page p {
	font-size: 1.7em;
	line-height: 1.8;
	text-align: left;
}

.products h2 {
	text-align: center;
	font-size: 2.0em;
}

.title1, .title2, .title3 {
	margin-bottom: 1.0em;
}

figcaption {
	font-size: 1.8em;
}

figcaption.item {
	font-family: Nunito, 'Nunito Sans', Roboto, Arial, sans-serif;;
	line-height: 2.0em;
}

figcaption, .product-items figcaption {
	font-family: Nunito, 'Nunito Sans', Roboto, Arial, sans-serif;
	text-align: center;
	color: #FFF;
}

.contacts p, h3, address {
	line-height: 1.5;
}

.contacts address:last-of-type {
	padding-bottom: 1.5em;
	font-family: Nunito, 'Nunito Sans', Roboto, Arial, sans-serif;
	text-align: left;
}

.contacts h3 {
	font-size: 1.5em;
	color: #C99FA7;
}

.open-hours {
	padding-bottom: 1.5em;
	font-family: Nunito, 'Nunito Sans', Roboto, Arial, sans-serif;
	text-align: left;
}

/* ==== END OF TEXT STYLING ====*/

/* ==== FOOTER STYLING ==== */

footer {
	font-family: Nunito, 'Nunito Sans', Roboto, Arial, sans-serif;
	font-size: 1.0em;
	background-color: #407058;
	color: #FFF;
	text-align: center;
	margin: 0 auto;
	line-height: 1.5;
}

footer nav {
	font-size: 1.3em;
	background-color: #9C9295;
	color: #000;
	text-align: center;
	margin: 0 auto;
	line-height: 1.5;
	background-color: #9C9295;
	font-weight: bold;
}

footer p {
	color: #FFF;
	font-size: 1.0em;
	font-weight: bold;
	margin-top: 1.0em;
	padding: 0 1.0em;
}

footer p:last-of-type {
	padding-bottom: 1.0em;
}

}

/* ==== END OF FOOTER STYLING ==== */

/* ==== END MEDIA QUERIES FOR SMALL SCREENS ==== */

/* ==== MEDIA QUERIES FOR MEDIUM SCREENS ===== */

@media (min-width: 846px) {

/* ==== GENERAL STYLING RULES ==== */

* {
	box-sizing: border-box;
}

body {
	max-width: 100%;
	margin: 0 auto;
	background-color: #FFFFFF;
	position: relative;
}

/* ==== LINK STYLING ==== */

nav {
	text-align: center;
	margin: 0 auto;
	font-family: Nunito, 'Nunito Sans', Roboto, Arial, sans-serif;
	font-size: 1.5em;
	background-color: #FFFFFF;
	padding: 1.0em 0;
}

a:link, a:visited {
  color: #3B2621;
  text-decoration: none;
  font-weight: 700;

}
a:hover,  a:active, a:focus{
  color: #F5CE4E;
  font-weight: 700;
}

footer a:hover,  a:active, a:focus {
  color: #F5CE4E;
  font-weight: 700;
}

/* ==== END OF LINK STYLING ==== */

/* ==== HEADER STYLING ==== */

header {
	background-color: #9C9295;
	text-align: center;
	padding-top: 1.0em;
}

.menu li {
	display: inline-block;
	list-style-type: none;
	padding: 0.5em;
}

header p {
	color: #FFFFFF;
	font-family: Nunito, 'Nunito Sans', Roboto, Arial, sans-serif;
	font-size: 1.0em;
	line-height: 1.6em;
}

header p:last-of-type {
	padding-bottom: 2.0em;
}

/* ==== END OF HEADER STYLING ==== */

/* ==== IMAGES STYLING ==== */

picture {
	display: block;
	text-align: center;
	margin-top: 2.0em;
	margin-bottom: 2.0em;
}

.banner {
	display: block;
	width: 100vw;
	height: auto;
	padding: 0;
	background-size: contain;
}

.offerings {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	padding: 2.0em;
	max-width: 100%;
}

.product-items {
	display: grid;
	display: flex;
	grid-template-columns: repeat(3, 1fr);
	padding: 2.0em;
	width: 100%;
	max-width: 100%;
	margin-bottom: 5.0em;
	margin: 50px auto;
}

.offerings figure, .product-items figure {
	border: 3px solid #3B2621;
	background-color: #3B2621;
	max-width: 310px;
	width: 80%;
	margin: auto;
	padding: 1.0em;
	flex-direction: column;
	text-align: center;
	margin-top: 2.0em;
	box-shadow: grey 0px 8px 24px;
}

.offerings img, .product-items img {
	display: flex;
	width: auto;
	margin: auto;
	padding: 0.5em;
	position: relative;
}

.product-items figcaption {
	color: #FFF;
	font-size: 1.2em;
}

.baker-daniel {
	margin-top: 3.0em;
}

.baker-daniel, .baker-julia, .baker-becky {
	display: block;
	text-align: center;
}

.baker-becky {
	margin-top: 3.0em;
}

/* ==== END OF IMAGE STYLING ==== */

/* ==== MAIN STYLING ==== */

.bakery, .story, .products, .help-page {
	position: relative;
	border: 5px solid #406158;
	background: #406158;
	padding-bottom: 1.0em;
}

h1 {
	text-align: center;
	margin-top: 1.5em;
}


h2 {
	text-align: center;
	margin-top: 2.0em;
}


h2 + p {
	margin-top: 2.0em;
	margin: 2.0em;
}

 section {
	position: relative;
	border: 5px solid #9F8C86;
	background: #9F8C86;
	padding-bottom: 5.0em;
}

section p {
	margin-top: 2.0em;
	margin: 2.0em;
}

figcaption {
	margin-top: 1.0em;
}

.contacts h2 {
	margin-top: 1.0em;
	margin-bottom: 1.0em;

}

h3 {
	text-align: center;
	margin-top: 1.5em;
}

.title1 h2, .title2 h2, .title3 h2{
	margin-top: 0.2em;
}

.title1 + ul, .title2 + ul, .title3 + ul {
	margin-top: 1.0em;
}

iframe {
	position: relative;
	width: 100%;
	height: 300px;
}

.address-text {
	display: grid;
	width: 80%;
	margin: 0 auto;
	grid-template-columns: 1fr 1fr 1fr;
	grid-auto-rows: auto;
	grid-gap: 20px;
	padding-bottom: 1.0em;
}

.address {
	grid-column: 1/2;
	grid-row: 1;
}

.open-hours {
	grid-column: 2/3;
	grid-row: 1;
}

.contact-info {
	grid-column: 3/4;
	grid-row: 1;
}

.contacts {
	max-width: 80%;
	margin: 0 auto;
}

/* ==== END OF MAIN STYLING ==== */

/* ==== TEXT STYLING ==== */

h1, h3 {
	font-family: Solitreo, Kalam, Ruluko, Livvic, ABeeZee, Bellota, Bad Script, Arial, sans-serif;
	font-size: 4.0em;
	color: #FFF;
}

h1.about-page {
	font-family: Solitreo, Kalam, Ruluko, Livvic, ABeeZee, Bellota, Bad Script, Arial, sans-serif;
	font-size: 3.0em;
	color: #FFF;
}

h1.about-page + p {
	text-align: left;
	font-family: Nunito, 'Nunito Sans', Roboto, Arial, sans-serif;
	font-size: 1.5em;
	color: #fff;
	line-height: 1.8em;
	margin-top: 2.0em;
	margin: 2.0em;
}

.products h1 {
	font-family: Solitreo, Kalam, Ruluko, Livvic, ABeeZee, Bellota, Bad Script, Arial, sans-serif; 
	text-align: center;
	font-size: 4.0em;
}

h2 {
	font-family: Solitreo, Kalam, Ruluko, Livvic, ABeeZee, Bellota, Bad Script, Arial, sans-serif;;
	color: #C99FA7;
	font-size: 2.5em;
	font-weight: bold;
	font-style: italic;
}

h2 + p {
	text-align: left;
	font-family: Nunito, 'Nunito Sans', Roboto, Arial, sans-serif;
	font-size: 1.5em;
	color: #fff;
	line-height: 1.8em;
}

.contacts h2 {
	font-size: 3.0em;
	color: #407058;
}

h3 {
	text-align: center;
}

h3.about-page {
	font-family: Solitreo, Kalam, Ruluko, Livvic, ABeeZee, Bellota, Bad Script, Arial, sans-serif;
	font-size: 2.0em;	
	color: #C99FA7;
}

h3.about-page + p {
	font-family: Nunito, 'Nunito Sans', Roboto, Arial, sans-serif;
	line-height: 1.8;
	font-size: 120%;
	text-align: left;
	margin: 2.0em;
}

section p {
	text-align: left;
	font-family: Nunito, 'Nunito Sans', Roboto, Arial, sans-serif;
	font-size: 1.5em;
	color: #FFF;
	line-height: 1.8em;
}

.help-page p {
	font-size: 1.7em;
	line-height: 1.8;
	text-align: center;
}

figcaption {
	font-size: 1.8em;
}

figcaption.item {
	font-family: Nunito, 'Nunito Sans', Roboto, Arial, sans-serif;;
	line-height: 2.0em;
}

figcaption, .product-items figcaption {
	font-family: Nunito, 'Nunito Sans', Roboto, Arial, sans-serif;
	text-align: center;
	color: #FFF;
}

.contacts p, h3, address {
	padding: 0 1.0em;
	line-height: 1.5;
}

.contacts address:last-of-type {
	padding-bottom: 1.5em;
	font-family: Nunito, 'Nunito Sans', Roboto, Arial, sans-serif;
	text-align: left;
}

.contacts h3 {
	font-size: 1.5em;
	color: #C99FA7;
}

.open-hours {
	padding-bottom: 1.5em;
	font-family: Nunito, 'Nunito Sans', Roboto, Arial, sans-serif;
	text-align: left;
}

/* ==== END OF TEXT STYLING ==== */

/* ==== FOOTER STYLING ==== */

footer {
	font-family: Nunito, 'Nunito Sans', Roboto, Arial, sans-serif;
	font-size: 1.0em;
	background-color: #407058;
	color: #FFF;
	text-align: center;
	margin: 0 auto;
	line-height: 1.5;
}

footer nav {
	font-size: 1.3em;
	background-color: #9C9295;
	color: #000;
	text-align: center;
	margin: 0 auto;
	line-height: 1.5;
	background-color: #9C9295;
	font-weight: bold;
}

footer p {
	color: #FFF;
	font-size: 1.0em;
	font-weight: bold;
	margin-top: 1.0em;
	padding: 0 1.0em;
}

footer p:last-of-type {
	padding-bottom: 1.0em;
}

}

/* ==== END OF FOOTER STYLING ==== */

/* ==== END MEDIA QUERIES FOR MEDIUM SCREENS ==== */

/* ==== MEDIA QUERIES FOR LARGE SCREENS ===== */

@media (min-width: 1000px) {

/* ==== GENERAL STYLING RULES ==== */

* {
	box-sizing: border-box;
}

body {
	max-width: 100%;
	margin: 0 auto;
	background-color: #FFFFFF;
	position: relative;
}

/* ==== LINK STYLING ==== */
nav {
	text-align: center;
	margin: 0 auto;
	font-family: Nunito, 'Nunito Sans', Roboto, Arial, sans-serif;
	font-size: 1.5em;
	background-color: #FFFFFF;
	padding: 1.0em 0;
}

a:link, a:visited {
  color: #3B2621;
  text-decoration: none;
  font-weight: 700;

}
a:hover,  a:active, a:focus {
  color: #F5CE4E;
  font-weight: 700;
}

footer a:hover,  a:active, a:focus {
  color: #F5CE4E;
  font-weight: 700;
}

/* ==== END OF LINK STYLING ==== */

/* ==== HEADER STYLING ==== */

header {
	background-color: #9C9295;
	text-align: center;
	padding-top: 1.0em;
}

.menu li {
	display: inline-block;
	list-style-type: none;
	padding: 0.5em;
}

header p {
	color: #FFFFFF;
	font-family: Nunito, 'Nunito Sans', Roboto, Arial, sans-serif;
	font-size: 1.0em;
	line-height: 1.6em;
}

header p:last-of-type {
	padding-bottom: 2.0em;
}

/* ==== END OF HEADER STYLING ==== */

/* ==== IMAGES STYLING ==== */

picture {
	display: block;
	text-align: center;
	margin-top: 2.0em;
	margin-bottom: 2.0em;
}

.banner {
	display: block;
	width: 100vw;
	height: auto;
	padding: 0;
	background-size: contain;
}

.offerings {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	padding: 2.0em;
	max-width: 100%;
}

.offerings figure, .product-items figure {
	border: 3px solid #3B2621;
	background-color: #3B2621;
	max-width: 100%;
	width: 80%;
	max-width: 310px;
	margin: 1.5em auto;
	padding: 1.0em;
	flex-direction: column;
	text-align: center;
	margin-top: 2.0em;
	box-shadow: grey 0px 8px 24px;
}

.offerings img, .product-items img{
	display: flex;
	width: auto;
	margin: auto;
	padding: 0.5em;
	position: relative;
}

.product-items figcaption {
	color: #FFF;
	font-size: 1.2em;
}

.product-items {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	padding: 2.0em;
	max-width: 100%;
}

.baker-daniel {
	margin-top: 3.0em;
}

.baker-daniel, .baker-julia, .baker-becky {
	display: block;
	text-align: center;
}

.baker-becky {
	margin-top: 3.0em;
}

/* ==== END OF IMAGE STYLING ==== */

/* ==== MAIN STYLING ==== */

.bakery, .story, .products, .help-page {
	position: relative;
	border: 5px solid #406158;
	background: #406158;
	padding-bottom: 3.0em;
}

h1 {
	text-align: center;
	margin-top: 1.5em;
}

h2 {
	text-align: center;
	margin-top: 2.0em;
}


h2 + p {
	margin-top: 2.0em;
	margin: 2.0em;
}

 section {
	position: relative;
	border: 5px solid #9F8C86;
	background: #9F8C86;
	padding-bottom: 5.0em;
}

section p {
	margin-top: 2.0em;
	margin: 2.0em;
}

figcaption {
	margin-top: 1.0em;
}

.contacts h2 {
	margin-top: 1.0em;
	margin-bottom: 1.0em;
}
 
h3 {
	text-align: center;
	margin-top: 1.5em;
}

.title1 h2, .title2 h2, .title3 h2{
	margin-top: 0.2em;
}

.title1 + ul, .title2 + ul, .title3 + ul {
	margin-top: 1.0em;
}

iframe {
	position: relative;
	width: 100%;
	height: 300px;
}

.address-text {
	display: grid;
	width: 80%;
	margin: 0 auto;
	grid-template-columns: 1fr 1fr 1fr;
	grid-auto-rows: auto;
	grid-gap: 20px;
	padding-bottom: 1.0em;
}

.address {
	grid-column: 1/2;
	grid-row: 1;
}

.open-hours {
	grid-column: 2/3;
	grid-row: 1;
}

.contact-info {
	grid-column: 3/4;
	grid-row: 1;
}

.contacts {
	max-width: 80%;
	margin: 0 auto;
}

/* ==== END OF MAIN STYLING ==== */

/* ==== TEXT STYLING ==== */

h1, h3 {
	font-family: Solitreo, Kalam, Ruluko, Livvic, ABeeZee, Bellota, Bad Script, Arial, sans-serif;
	font-size: 4.0em;
	color: #FFF;
}

h1.about-page {
	font-family: Solitreo, Kalam, Ruluko, Livvic, ABeeZee, Bellota, Bad Script, Arial, sans-serif;
	font-size: 3.0em;
	color: #FFF;
}

h1.about-page + p {
	text-align: left;
	font-family: Nunito, 'Nunito Sans', Roboto, Arial, sans-serif;
	font-size: 1.5em;
	color: #fff;
	line-height: 1.8em;
	margin-top: 2.0em;
	margin: 2.0em;
}

.products h1 {
	font-family: Solitreo, Kalam, Ruluko, Livvic, ABeeZee, Bellota, Bad Script, Arial, sans-serif; 
	text-align: center;
	font-size: 4.0em;
}

h2 {
	font-family: Solitreo, Kalam, Ruluko, Livvic, ABeeZee, Bellota, Bad Script, Arial, sans-serif;
	color: #C99FA7;
	font-size: 2.5em;
	font-weight: bold;
	font-style: italic;
}

h2 + p {	
	text-align: left;
	font-family: Nunito, 'Nunito Sans', Roboto, Arial, sans-serif;
	font-size: 1.5em;
	color: #fff;
	line-height: 1.8em;
}

h3 {
	text-align: center;
}

.contacts h2 {
	font-size: 3.0em;
	color: #407058;
}

h2.sample {
	font-size: 4.0em;
}

h3.about-page {
	font-family: Solitreo, Kalam, Ruluko, Livvic, ABeeZee, Bellota, Bad Script, Arial, sans-serif;
	font-size: 2.0em;	
	color: #C99FA7;
}

h3.about-page + p {
	font-family: Nunito, 'Nunito Sans', Roboto, Arial, sans-serif;
	line-height: 1.8;
	font-size: 120%;
	text-align: left;
	margin: 2.0em;
}

section p {
	text-align: left;
	font-family: Nunito, 'Nunito Sans', Roboto, Arial, sans-serif;
	font-size: 1.5em;
	color: #FFF;
	line-height: 1.8em;
}

.help-page p {
	font-size: 1.7em;
	text-align: center;
	line-height: 1.8;
}

figcaption {
	font-size: 1.8em;
}

figcaption.item {
	font-family: Nunito, 'Nunito Sans', Roboto, Arial, sans-serif;
	margin-top: 2.0em;
	line-height: 2.0em;
}

figcaption, .product-items figcaption {
	font-family: Nunito, 'Nunito Sans', Roboto, Arial, sans-serif;
	text-align: center;
	color: #FFF;
}

.contacts p, h3, address {
	padding: 0 1.0em;
	line-height: 1.5;
}

.contacts address:last-of-type {
	padding-bottom: 1.5em;
	font-family: Nunito, 'Nunito Sans', Roboto, Arial, sans-serif;
	text-align: left;
}

.contacts h3 {
	font-size: 1.5em;
	color: #C99FA7;
}

.open-hours {
	padding-bottom: 1.5em;
	font-family: Nunito, 'Nunito Sans', Roboto, Arial, sans-serif;
	text-align: left;
}

/* ==== END OF TEXT STYLING ==== */

/* ==== FOOTER STYLING ==== */

footer {
	font-family: Nunito, 'Nunito Sans', Roboto, Arial, sans-serif;
	font-size: 1.0em;
	background-color: #407058;
	color: #FFF;
	text-align: center;
	margin: 0 auto;
	line-height: 1.5;
}

footer nav {
	font-size: 1.3em;
	background-color: #9C9295;
	color: #000;
	text-align: center;
	margin: 0 auto;
	line-height: 1.5;
	background-color: #9C9295;
	font-weight: bold;
}

footer p {
	color: #FFF;
	font-size: 1.0em;
	font-weight: bold;
	margin-top: 1.0em;
	padding: 0 1.0em;
}

footer p:last-of-type {
	padding-bottom: 1.0em;
}

}

/* ==== END OF FOOTER STYLING ====*/