@charset "UTF-8";


/* Animation for spinners */
.spinner {
	-moz-animation: spin 2s infinite linear;
	-o-animation: spin 2s infinite linear;
	-webkit-animation: spin 2s infinite linear;
	animation: spin 2s infinite linear;
	display: inline-block;
}

@-moz-keyframes spin {
	0% {-moz-transform: rotate(0deg);-o-transform: rotate(0deg);-webkit-transform: rotate(0deg);transform: rotate(0deg);}
	100% {-moz-transform: rotate(359deg);-o-transform: rotate(359deg);-webkit-transform: rotate(359deg);transform: rotate(359deg);}
}
@-webkit-keyframes spin {
	0% {-moz-transform: rotate(0deg);-o-transform: rotate(0deg);-webkit-transform: rotate(0deg);transform: rotate(0deg);}
	100% {-moz-transform: rotate(359deg);-o-transform: rotate(359deg);-webkit-transform: rotate(359deg);transform: rotate(359deg);}
}
@-o-keyframes spin {
	0% {-moz-transform: rotate(0deg);-o-transform: rotate(0deg);-webkit-transform: rotate(0deg);transform: rotate(0deg);}
	100% {-moz-transform: rotate(359deg);-o-transform: rotate(359deg);-webkit-transform: rotate(359deg);transform: rotate(359deg);}
}
@-ms-keyframes spin {
	0% {-moz-transform: rotate(0deg);-o-transform: rotate(0deg);-webkit-transform: rotate(0deg);transform: rotate(0deg);}
	100% {-moz-transform: rotate(359deg);-o-transform: rotate(359deg);-webkit-transform: rotate(359deg);transform: rotate(359deg);}}
@keyframes spin {
	0% {-moz-transform: rotate(0deg);-o-transform: rotate(0deg);-webkit-transform: rotate(0deg);transform: rotate(0deg);}
	100% {-moz-transform: rotate(359deg);-o-transform: rotate(359deg);-webkit-transform: rotate(359deg);transform: rotate(359deg);}
}

/* vertically center align an element 
   parent el requires static height */
.v-center {
  position: relative;
  top: 50%;
  -webkit-transform: perspective(1px) translateY(-50%);
  -ms-transform: perspective(1px) translateY(-50%);
  transform: perspective(1px) translateY(-50%);
}

.flip {
  -ms-transform: rotate(-180deg); 
  -webkit-transform: rotate(-180deg); 
  transform: rotate(-180deg);
  -webkit-transition: 0.2s ease-in-out; 
  transition: 0.2s ease-in-out;
}


/* =======================================================================================

		Icons & Fonts:

			Custom fonts: https://fonts.google.com/
			Google cdn: https://fonts.googleapis.com/css?family=Bitter|Work+Sans:300

			Icon font library: https://fontawesome.com/icons?d=gallery&m=free
			Fontawesome cdn: https://use.fontawesome.com/releases/v5.4.2/css/all.css
			
		Google Fonts:
			
			
		Simple Animation:
		
			transition: all 0.3s cubic-bezier(0.49, -0.57, 0.58, 1.8) 0s;			
			transition: all 0.2s ease-in-out;
			
			expanding boxes:
			
				-webkit-transition: all 100ms ease-in;
				-webkit-transform: scale(1); 
				transition: all 100ms ease-in;
				transform: scale(1);  
			
		Misc:
		
			https://internetingishard.com/html-and-css/flexbox/
			https://nostrongbeliefs.com/flexbox-vertical-ordering/

		Vertical centering non-flex:
		
			{
				position: relative;
				top: 50%;
				-webkit-transform: perspective(1px) translateY(-50%);
				-ms-transform: perspective(1px) translateY(-50%);
				transform: perspective(1px) translateY(-50%);
			}

colors (also have palettes in @library_template/)
https://htmlcolorcodes.com/color-chart/

qr codes:
https://www.qr-code-generator.com/free-generator/?ut_source=google_c&ut_medium=cpc&ut_campaign=en_top_kw&ut_content=qr_generator_exact&ut_term=make%20a%20qr%20code_e&gclid=EAIaIQobChMIjbSQkLiZ7QIVQ77ACh32pgzZEAAYASAAEgJdwPD_BwE

free photos:
https://unsplash.com/
https://images.superfamous.com/
https://nos.twnsnd.co/
https://htmlcolorcodes.com/resources/ultimate-guide-to-free-stock-photos/

flex set:
----------------------------------
https://css-tricks.com/snippets/css/a-guide-to-flexbox/

  display: -webkit-box;
	display: -moz-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: box;
	display: flex;
	-webkit-flex-direction: column;
	flex-direction: column;
	-webkit-justify-content: center;
	justify-content: center;
	-webkit-align-items: center;
  align-items: center;
  flex-wrap: wrap;


	matching color set:

			71, 99, 25 // green
			71, 25, 99 // purple
			39,67,103 // dk blu
			79,134,207 // lt blu
			228,210,186 // lt tan
			202,165,117 // dk tan
			127,127,127 // gray

BP Colors: 

<div class="swatches-col">
		      <div class="pallete-item">
			      <dl class="palette palette-turquoise">
                <dt>#1abc9c</dt>
                <dd>Turquoise</dd>
              </dl>
              <dl class="palette palette-green-sea">
                <dt>#16a085</dt>
                <dd>Green sea</dd>
              </dl>
		      </div>
		      <div class="pallete-item">
			      <dl class="palette palette-emerald">
              <dt>#2ecc71</dt>
              <dd>Emerald</dd>
            </dl>
            <dl class="palette palette-nephritis">
              <dt>#27ae60</dt>
              <dd>Nephritis</dd>
            </dl>
		      </div>
		      <div class="pallete-item">
			      <dl class="palette palette-peter-river">
              <dt>#3498db</dt>
              <dd>Peter river</dd>
            </dl>
            <dl class="palette palette-belize-hole">
              <dt>#2980b9</dt>
              <dd>Belize hole</dd>
            </dl>
		      </div>
		      <div class="pallete-item">
			      <dl class="palette palette-amethyst">
              <dt>#9b59b6</dt>
              <dd>Amethyst</dd>
            </dl>
            <dl class="palette palette-wisteria">
              <dt>#8e44ad</dt>
              <dd>Wisteria</dd>
            </dl>
		      </div>
		      <div class="pallete-item">
			      <dl class="palette palette-wet-asphalt">
              <dt>#34495e</dt>
              <dd>Wet asphalt</dd>
            </dl>
            <dl class="palette palette-midnight-blue">
              <dt>#2c3e50</dt>
              <dd>Midnight blue</dd>
            </dl>
		      </div>
		      <div class="pallete-item">
			      <dl class="palette palette-sun-flower">
              <dt>#f1c40f</dt>
              <dd>Sun flower</dd>
            </dl>
            <dl class="palette palette-orange">
              <dt>#f39c12</dt>
              <dd>Orange</dd>
            </dl>
		      </div>
		      <div class="pallete-item">
			      <dl class="palette palette-carrot">
              <dt>#e67e22</dt>
              <dd>Carrot</dd>
            </dl>
            <dl class="palette palette-pumpkin">
              <dt>#d35400</dt>
              <dd>Pumpkin</dd>
            </dl>
		      </div>
		      <div class="pallete-item">
			      <dl class="palette palette-alizarin">
              <dt>#A01607</dt>
              <dd>Alizarin</dd>
            </dl>
            <dl class="palette palette-pomegranate">
              <dt>#c0392b</dt>
              <dd>Pomegranate</dd>
            </dl>
		      </div>
		      <div class="pallete-item">
			      <dl class="palette palette-clouds">
              <dt>#ecf0f1</dt>
              <dd>Clouds</dd>
            </dl>
            <dl class="palette palette-silver">
              <dt>#bdc3c7</dt>
              <dd>Silver</dd>
            </dl>
		      </div>
		      <div class="pallete-item">
			      <dl class="palette palette-concrete">
              <dt>#95a5a6</dt>
              <dd>Concrete</dd>
            </dl>
            <dl class="palette palette-asbestos">
              <dt>#7f8c8d</dt>
              <dd>Asbestos</dd>
            </dl>
		      </div>
		      
		      <span class="clearfloats"></span>
	      </div>


				
======================================================================================= */

html {
	scroll-behavior: smooth; 
	transition: all 0.5s ease-in-out;
	-webkit-transition: all 0.5s ease-in-out;
}

body {
	font-family: 'Alef', Tahoma, sans-serif;
 	color: #543C00; /* 615643; 543C00*/
	background: #D5C6AA url(../img/patterns/bg-carta.jpg) 0 0 repeat-y;
    background-size: cover;
    background-attachment: fixed;
}



/* =======================================================================================
		Section Header
		Notes: border color: #A07F53
======================================================================================= */

header {
  padding: 0 0 10px 0;
  text-align: center;
}

hgroup {
	padding: 4px 0;
	border-top: 1px solid #A07F53;
	border-bottom: 1px solid #A07F53;
}

hgroup > div {
	display: -webkit-box;
	display: -moz-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: box;
	display: flex;
	-webkit-flex-direction: row;
	flex-direction: row;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	-webkit-align-items: center;
  align-items: center;
  flex-wrap: wrap;

	padding: 10px;
	line-height: 1em;
	border-top: 1px solid #A01607;
	border-bottom: 1px solid #A01607;
}

h1, h2, h3, h4 {
	font-family: 'Almendra SC', Palatino Linotype, Book Antiqua, Palatino, serif;
}

hgroup > div b {
	font-weight: 300;
}

header h1 {
	font-size: 2.5rem;
	line-height: 1.2;
}

header h1 span {
	font-size: 1.7rem;
	font-style: italic;
}

header #headerimg {
	display: block;
	margin: 0 auto;
	width: 50%;
	height: 44px;
	text-align: center;
}	

header #headerimg img {
	width: 100%;
	height: auto;
}	

.subhdr {
	margin: 10px 0;
	text-align: center;
}

.small {
	font-size: 0.8rem;
	color: #A01607;
}

/* =======================================================================================
		Navigation
		Notes:
======================================================================================= */

.hamburger {
  padding: 15px 15px;
  display: inline-block;
  cursor: pointer;
  transition-property: opacity, filter;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible; }
  .hamburger:hover {
    opacity: 0.7; }

.hamburger-box {
  width: 40px;
  height: 24px;
  display: inline-block;
  position: relative; }

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -2px; }
  .hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
    width: 40px;
    height: 4px;
    background-color: #FCE1A2;
    border-radius: 4px;
    position: absolute;
    transition-property: transform;
    transition-duration: 0.15s;
    transition-timing-function: ease; }
  .hamburger-inner::before, .hamburger-inner::after {
    content: "";
    display: block; }
  .hamburger-inner::before {
    top: -10px; }
  .hamburger-inner::after {
    bottom: -10px; }

		.hamburger--spin .hamburger-inner {
			transition-duration: 0.22s;
			transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
			.hamburger--spin .hamburger-inner::before {
				transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in; }
			.hamburger--spin .hamburger-inner::after {
				transition: bottom 0.1s 0.25s ease-in, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19); }
		
		.hamburger--spin.is-active .hamburger-inner {
			transform: rotate(225deg);
			transition-delay: 0.12s;
			transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
			.hamburger--spin.is-active .hamburger-inner::before {
				top: 0;
				opacity: 0;
				transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out; }
			.hamburger--spin.is-active .hamburger-inner::after {
				bottom: 0;
				transform: rotate(-90deg);
				transition: bottom 0.1s ease-out, transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1); }

#navicon, #navup {
	position: fixed;
	top: 7px;
	right: 7px;
	z-index: 99999;
}

#navup {
	font-size: 32px;
	color: #FCE1A2;
}

body.print #navup {
	display: block;
}

body.print #navicon {
	display: none;
}

body nav {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 999;
	padding: 20px 0;
	height: auto;
	background: rgba(0,0,0,0.8);
	box-shadow: 0 3px 7px rgba(0,0,0,0.7);
}

nav > div {
	padding: 10px 32px;
}

nav h4 {
	font-size: 1.2rem;
	color: #A2792E;
}

.nav {

	/*
	display: -webkit-box;
	display: -moz-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: box;
	display: flex;
	-webkit-flex-direction: column;
	flex-direction: column;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	-webkit-align-items: center;
  align-items: center;
  flex-wrap: wrap;
	*/

	color: #fff;

	height: auto;
	margin: 0 0 32px;
	padding: 0 32px;

	column-count: 2;
}

.list {
	display: block;

	height: auto;
	padding: 0 32px;
}

.list li {
	margin-bottom: 20px;
}

.nav a, #toc h4 a, .list a {
	font-size: 1.1rem;
	color: #FCE1A2;
}

#toc { color: #fff; }



/* =======================================================================================
		Global Typography
		Notes:
======================================================================================= */

a {
  color: #A6432A;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}


.note {
	font-size: 0.8rem;
	font-style: italic;
}

.bold {
	font-weight: 700;
}

ol.decimal li {
	margin-bottom: 20px;
}

blockquote {
	clear: both;
	position: relative;
	margin: 0 auto;
	padding: 10px;
	width: 85%;
	color: #075563;
	border-top: 2px dotted #075563; /* A01607; */
	border-bottom: 2px dotted #075563; /* A01607; */
}

blockquote p {
	position: relative;
	font-style: italic;
	text-indent: 0;
}

blockquote.nosrc {
	margin-bottom: 32px;
}

p.quote-source {
	margin: 0 auto 32px;
	width: 85%;
	text-indent: 0;
	text-align: right;
	font-size: 0.8rem;
	color: #A01607;
}

blockquote p.firstpara:before {
	content: '"'; /* \201C */
	/*
	position: absolute;
  left: -.7em;
	*/
	font-size: 2em;
	line-height: 1em;
	color: #A01607;
}

blockquote p.lastpara:after {
	content: '"'; /* \201D */
	/*
	position: absolute;
	margin-left: 2px;
	margin-top: 4px;
	*/
	font-size: 2em;
	line-height: 0.5em;
	color: #A01607;
}

blockquote.anthony {
	clear: both;
	position: relative;
	margin: 0 auto 20px;
	padding: 10px;
	width: 95%;
	border: 1px solid #A6432A;
	color: #A6432A;
	background: rgba(169,169,169,0.1);
	box-shadow: 0 0 12px rgba(0,0,0,0.4);
}

blockquote p:last-child {
	margin-bottom: 0;
}

.button {
	display: inline-block;
	padding: 10px 20px;
	border: 1px solid #A6432A;
}


/* =======================================================================================
		Global Structure / Pages
		Notes:
======================================================================================= */

#page {
  margin: 0 auto;
	padding: 24px 0 12px;
  max-width: 1040px;
  height: 100%;
	min-height: 100vh;
}

section {
	margin: 0 0 12px;
	padding: 32px 55px;

  border-radius: 3px;
  background: rgba(244,244,244,0.4) url(../img/patterns/retina-background-image.jpg) 0 0 repeat;

	-webkit-box-shadow: 0 0 8px rgba(0,0,0,0.4);
  box-shadow: 0 0 8px rgba(0,0,0,0.4);

	/*
	background: #FFEEC7 url(../img/patterns/natural-paper.png) 0 0 repeat;
  -webkit-box-shadow: inset 0 17px 177px 0 rgba(244,201,134,0.9), 0 0 12px rgba(0,0,0,0.7);
  box-shadow: inset 0 17px 177px 0 rgba(244,201,134,0.9), 0 0 12px rgba(0,0,0,0.7);
	*/ 
}

section > div {
	display: -webkit-box;
	display: -moz-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: box;
	display: flex;
	-webkit-flex-direction: row;
	flex-direction: row;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	-webkit-align-items: stretch;
  align-items: stretch;
  flex-wrap: wrap;

	padding-top: 32px;
}

article {
	position: relative;
	padding: 20px 0;
	width: 100%; /* 72%; 
	border-right: 1px solid #A07F53; */

}

article h2 {
	font-size: 1.7rem;
	text-align: left;
}

article h3 {
	margin-bottom: 4px;
	font-size: 1.3rem;
	text-align: left;
}

article h4 {
	margin-bottom: 4px;
	font-size: 1.1rem;
	text-align: left;
}

h5 {
	font-weight: 700;
}

figcaption {
	font-size: 0.7rem;
	text-align: center;
}

article figure {
	display: block;
	margin: 0 auto;
	padding: 4px;
	width: 100%;
	max-width: 640px;
}

article figure img {
	display: inline-block;
	padding: 4px;
	width: 100%;
	height: auto;
	border: 1px solid #A07F53;
}

article figure img.noborder {
	border: none;
}	

article figure.right {
	display: block;
	float: right;
	margin: 0 0 12px 20px;
	padding: 0;
	width: 100%;
	max-width: 240px;
}

section footer {
	padding-top: 12px;
	margin-bottom: 12px;
	/*
	border-top: 1px solid #A07F53;
	border-bottom: 1px solid #A07F53;
	*/
}

section footer p:last-child {
	margin-bottom: 0;
}

section footer a {
	color: #A6432A;
}

.cover {
	display: -webkit-box;
	display: -moz-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: box;
	display: flex;
	-webkit-flex-direction: row;
	flex-direction: row;
	-webkit-justify-content: center;
	justify-content: center;
	-webkit-align-items: center;
  align-items: center;
  flex-wrap: wrap;

	min-height: 100vh;
}

.cover figure.front img {
	width: 520px;
	height: auto;
}


/* =======================================================================================
		Global Elements
		Notes:
======================================================================================= */

p {
	margin-bottom: 20px;
	text-align: justify;
	text-indent: 2em;
}

p.droppara, #notes p, .noindent {
	text-indent: 0;
}

p.droppara:first-letter {
  padding: 0;
  margin: 0 7px 0 0;
  
	font-family: 'Almendra SC', Palatino Linotype, Book Antiqua, Palatino, serif;

  font-size: 3rem;
  float: left;
  line-height: 1;
	color: #A01607;
}


.endbox {
	display: -webkit-box;
	display: -moz-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: box;
	display: flex;
	-webkit-flex-direction: row;
	flex-direction: row;
	-webkit-justify-content: space-around;
	justify-content: space-around;
	-webkit-align-items: center;
  align-items: center;
  flex-wrap: wrap;
	padding: 0;
	width: 200px;
	line-height: 0.9em;
	border: 2px solid #4D4635;
}

.ent {
	font-size: 3rem;
	line-height: 1em;
}

.right {
	text-align: right;
}

.center {
	text-align: center;
}

.sig {
	font-style: italic;
	font-size: 0.9rem;
}

hr {
	display: block;
	margin: 32px 0;
	border: none;
	border-top: 2px dotted #A07F53;
	background: transparent; 
}

.line {
	display: block;
	margin: 0 auto;
	width: 65%;
	max-width: 580px;
	text-align: center;
}

.line-short {
	width: 65%;
	max-width: 320px;
}

.line img {
	width: 100%;
	height: auto;
}

dl {
	margin: 0 32px;
}

dt {
	font-weight: 700;
}

dd {
	margin-left: 20px;
}



/* =======================================================================================
		Footer
		Notes:
======================================================================================= */

footer {
  padding: 0 0 20px;
  font-size: 0.9rem;
  text-align: center;
}

footer#articlefooter {
	text-align: left;
}

footer a {
  text-decoration: none;
	color: #FCE1A2;
}

footer a i {
	padding: 4px;
	font-size: 1.2rem;
}

footer h3 {
	font-size: 1.1rem;
}




/* =======================================================================================
		Mobile First Media Queries
		Notes: Typically associate MQs with their relative components/styles
======================================================================================= */

/* mobile styles should be the defaults i.e. "mobile first" */

/* mobile 2 - up to 379px */
@media (min-width: 380px) {
  
}

/* tablet - 380px to 599px */
@media (min-width: 600px) {
  
}

/* desktop  - 600px to 819px */
@media (min-width: 820px) {
  
}

/* desktop 2 - 820px to 1039px */
@media (min-width: 1040px) {
  
}


/* =======================================================================================
		Bulletproof Original Colors
======================================================================================= */

.swatches-col {
	width: auto;
}


.pallete-item {
	float: left;
	margin: 0 0 20px 20px;
	width: 140px;
}
.palette {
	color: #ffffff;
	font-size: 14px;
	line-height: 1.214;
	margin: 0;
	padding: 15px;
	text-transform: uppercase;
}
.palette dt, .palette dd {
	line-height: 1.429;
}
.palette dt {
	display: block;
	font-weight: bold;
	opacity: 0.8;
}
.palette dd {
	font-weight: 300;
	margin-left: 0;
	opacity: 0.8;
}
.palette-turquoise {
	background-color: #1abc9c;
}
.palette-green-sea {
	background-color: #16a085;
}
.palette-emerald {
	background-color: #2ecc71;
}
.palette-nephritis {
	background-color: #27ae60;
}
.palette-peter-river {
	background-color: #3498db;
}
.palette-belize-hole {
	background-color: #2980b9;
}
.palette-amethyst {
	background-color: #9b59b6;
}
.palette-wisteria {
	background-color: #8e44ad;
}
.palette-wet-asphalt {
	background-color: #34495e;
}
.palette-midnight-blue {
	background-color: #2c3e50;
}
.palette-sun-flower {
	background-color: #f1c40f;
}
.palette-orange {
	background-color: #f39c12;
}
.palette-carrot {
	background-color: #e67e22;
}
.palette-pumpkin {
	background-color: #d35400;
}
.palette-alizarin {
	background-color: #A01607;
}
.palette-pomegranate {
	background-color: #c0392b;
}
.palette-clouds {
	background-color: #ecf0f1;
}
.palette-silver {
	background-color: #bdc3c7;
}
.palette-concrete {
	background-color: #95a5a6;
}
.palette-asbestos {
	background-color: #7f8c8d;
}
.palette-clouds {
	color: #bdc3c7;
}
.palette-paragraph {
	color: #7f8c8d;
	font-size: 12px;
	line-height: 17px;
}
.palette-paragraph span {
	color: #bdc3c7;
}
.palette-headline {
	color: #7f8c8d;
	font-size: 13px;
	font-weight: 700;
	margin-top: -3px;
}

