/* @override 
	http://inspiration-multi-site.test/assets/css/styles.css
	http://inspiration-multi-site.test/assets/css/styles.css?*
	http://inspiration-multi-site.test/assets/css/ach.css */

/* RESETS */
/* 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;
}
* {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
}
ul, ol {
	list-style-position: inside;
	font-family: 'Helvetica Neue',Helvetica,sans-serif;
	padding: 4px;
}
ul li,ol li {
	margin: 10px 0px;
}

body {
	background: #EAE3DD;
	background-color: #EAE3DD;
	color: #302D2F;
}

/* TYPOGRAPHY */
@font-face {
 font-family: "WhiteHouseCustomMediumRegular";
 src:  url("../fonts/whitehousecustom-medium-webfont.woff") format("woff");
}

/* HEADINGS */
h1, h2, h3, h4 {
    font-family: 'Inknut Antiqua', serif;
	color: #302D2F;
    font-weight: normal;
}

h5 {
    font-family: 'Helvetica Neue', sans-serif;
    color: #302D2F;
}

h1 {
    font-size: 48px;
    margin-top: 48px;
    margin-bottom: 24px;
		line-height: 1.25;
}
h2 {
    font-size: 36px;
	margin-top: 36px;
	margin-bottom: 18px;
	line-height: 1.3;
}
h3 {
    font-size: 24px;
	margin-top: 48px;
	margin-bottom: 12px;
	line-height: 1.4;
}
h4 {
    font-size: 18px;
	margin-top: 32px;
	margin-bottom: 9px;
	line-height: 1.2;
}
h5 {
    font-size: 18px;
		line-height: 1.3;
/*	font-weight: 300;*/
	margin-top: 14px;
	margin-bottom: 7px;
}
h6 {
		font-family: 'Helvetica Neue', sans-serif;
		font-weight: 500;
    font-size: 14px;
	margin-top: 11px;
	margin-bottom: 5px;
	text-transform: uppercase;
}
h1.title {
  margin-top: 20px;
}

/* PARAGRAPH TEXT */
p, .content-main ol, .content-main li {
    font-family: 'Helvetica Neue', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    margin-top: 8px;
    margin-bottom: 8px;
}

.lead-in {
    font-size: 20px;
}
p.small {
    font-size: 75%;
    color: #aaa;
}

/* TEXT LINKS */
a {
	text-decoration: none;
	font-family: 'WhiteHouseCustomMediumRegular', sans-serif;
	color: #345749;
}
/*a:hover {
	opacity: .8;
}*/
a.link {
	font-family: 'Helvetica Neue', sans-serif;
	font-weight: 300;
	font-size: 14px;
	color: #345749;
	cursor: pointer;
}

/* BUTTONS */
.btn {
	font-family: 'Helvetica Neue',sans-serif;
  padding: 12px 24px;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  -webkit-transition: .2s;
  transition: .2s;
  margin-right: 10px;
  border: none;
	border-radius: 2px;
}
.btn-lg {
  padding: 10px 36px;
  border-radius: 2px;
}
.btn-white {
  color: #345749 !important;
  background: white;
}
.btn-white:hover {
  opacity: .8;
}
.btn-red {
	color: white;
	background: #9C453B;
	transition: opacity .2s;
}
.btn-red:hover {
	opacity: .9;
}

/* FLEXBOX GRID */
.container-fluid {
  margin-right: auto;
  margin-left: auto;
}
.container-whcc {
	max-width: 1000px;
	margin-left: auto;
	margin-right: auto;
	padding-left: 30px;
	padding-right: 30px;
}

.row {
  box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.flex-vertical {
  box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: column;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
	justify-content: center;
}

.row.reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.col.reverse {
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
}

.col-xs,
.col-xs-1,
.col-xs-2,
.col-xs-3,
.col-xs-4,
.col-xs-5,
.col-xs-6,
.col-xs-7,
.col-xs-8,
.col-xs-9,
.col-xs-10,
.col-xs-11,
.col-xs-12,
.col-xs-offset-0,
.col-xs-offset-1,
.col-xs-offset-2,
.col-xs-offset-3,
.col-xs-offset-4,
.col-xs-offset-5,
.col-xs-offset-6,
.col-xs-offset-7,
.col-xs-offset-8,
.col-xs-offset-9,
.col-xs-offset-10,
.col-xs-offset-11,
.col-xs-offset-12 {
  box-sizing: border-box;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

.col-xs {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  max-width: 100%;
}

.col-xs-1 {
  -ms-flex-preferred-size: 8.33333333%;
  flex-basis: 8.33333333%;
  max-width: 8.33333333%;
}

.col-xs-2 {
  -ms-flex-preferred-size: 16.66666667%;
  flex-basis: 16.66666667%;
  max-width: 16.66666667%;
}

.col-xs-3 {
  -ms-flex-preferred-size: 25%;
  flex-basis: 25%;
  max-width: 25%;
}

.col-xs-4 {
  -ms-flex-preferred-size: 33.33333333%;
  flex-basis: 33.33333333%;
  max-width: 33.33333333%;
}

.col-xs-5 {
  -ms-flex-preferred-size: 41.66666667%;
  flex-basis: 41.66666667%;
  max-width: 41.66666667%;
}

.col-xs-6 {
  -ms-flex-preferred-size: 50%;
  flex-basis: 50%;
  max-width: 50%;
	height: 100%;
}

.col-xs-7 {
  -ms-flex-preferred-size: 58.33333333%;
  flex-basis: 58.33333333%;
  max-width: 58.33333333%;
}

.col-xs-8 {
  -ms-flex-preferred-size: 66.66666667%;
  flex-basis: 66.66666667%;
  max-width: 66.66666667%;
}

.col-xs-9 {
  -ms-flex-preferred-size: 75%;
  flex-basis: 75%;
  max-width: 75%;
}

.col-xs-10 {
  -ms-flex-preferred-size: 83.33333333%;
  flex-basis: 83.33333333%;
  max-width: 83.33333333%;
}

.col-xs-11 {
  -ms-flex-preferred-size: 91.66666667%;
  flex-basis: 91.66666667%;
  max-width: 91.66666667%;
}

.col-xs-12 {
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  max-width: 100%;
}

.col-xs-offset-0 {
  margin-left: 0;
}

.col-xs-offset-1 {
  margin-left: 8.33333333%;
}

.col-xs-offset-2 {
  margin-left: 16.66666667%;
}

.col-xs-offset-3 {
  margin-left: 25%;
}

.col-xs-offset-4 {
  margin-left: 33.33333333%;
}

.col-xs-offset-5 {
  margin-left: 41.66666667%;
}

.col-xs-offset-6 {
  margin-left: 50%;
}

.col-xs-offset-7 {
  margin-left: 58.33333333%;
}

.col-xs-offset-8 {
  margin-left: 66.66666667%;
}

.col-xs-offset-9 {
  margin-left: 75%;
}

.col-xs-offset-10 {
  margin-left: 83.33333333%;
}

.col-xs-offset-11 {
  margin-left: 91.66666667%;
}

.start-xs {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  text-align: start;
}

.center-xs {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}

.end-xs {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  text-align: end;
}

.top-xs {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.middle-xs {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.bottom-xs {
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.around-xs {
  -ms-flex-pack: distribute;
  justify-content: space-around;
}

.between-xs {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.first-xs {
  -webkit-box-ordinal-group: 0;
  -ms-flex-order: -1;
  order: -1;
}

.last-xs {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
}

@media only screen and (min-width: 814px) {

  .col-sm,
  .col-sm-1,
  .col-sm-2,
  .col-sm-3,
  .col-sm-4,
  .col-sm-5,
  .col-sm-6,
  .col-sm-7,
  .col-sm-8,
  .col-sm-9,
  .col-sm-10,
  .col-sm-11,
  .col-sm-12,
  .col-sm-offset-0,
  .col-sm-offset-1,
  .col-sm-offset-2,
  .col-sm-offset-3,
  .col-sm-offset-4,
  .col-sm-offset-5,
  .col-sm-offset-6,
  .col-sm-offset-7,
  .col-sm-offset-8,
  .col-sm-offset-9,
  .col-sm-offset-10,
  .col-sm-offset-11,
  .col-sm-offset-12 {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
  }

  .col-sm {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    max-width: 100%;
  }

  .col-sm-1 {
    -ms-flex-preferred-size: 8.33333333%;
    flex-basis: 8.33333333%;
    max-width: 8.33333333%;
  }

  .col-sm-2 {
    -ms-flex-preferred-size: 16.66666667%;
    flex-basis: 16.66666667%;
    max-width: 16.66666667%;
  }

  .col-sm-3 {
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%;
  }

  .col-sm-4 {
    -ms-flex-preferred-size: 33.33333333%;
    flex-basis: 33.33333333%;
    max-width: 33.33333333%;
  }

  .col-sm-5 {
    -ms-flex-preferred-size: 41.66666667%;
    flex-basis: 41.66666667%;
    max-width: 41.66666667%;
  }

  .col-sm-6 {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
  }

  .col-sm-7 {
    -ms-flex-preferred-size: 58.33333333%;
    flex-basis: 58.33333333%;
    max-width: 58.33333333%;
  }

  .col-sm-8 {
    -ms-flex-preferred-size: 66.66666667%;
    flex-basis: 66.66666667%;
    max-width: 66.66666667%;
  }

  .col-sm-9 {
    -ms-flex-preferred-size: 75%;
    flex-basis: 75%;
    max-width: 75%;
  }

  .col-sm-10 {
    -ms-flex-preferred-size: 83.33333333%;
    flex-basis: 83.33333333%;
    max-width: 83.33333333%;
  }

  .col-sm-11 {
    -ms-flex-preferred-size: 91.66666667%;
    flex-basis: 91.66666667%;
    max-width: 91.66666667%;
  }

  .col-sm-12 {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
  }

  .col-sm-offset-0 {
    margin-left: 0;
  }

  .col-sm-offset-1 {
    margin-left: 8.33333333%;
  }

  .col-sm-offset-2 {
    margin-left: 16.66666667%;
  }

  .col-sm-offset-3 {
    margin-left: 25%;
  }

  .col-sm-offset-4 {
    margin-left: 33.33333333%;
  }

  .col-sm-offset-5 {
    margin-left: 41.66666667%;
  }

  .col-sm-offset-6 {
    margin-left: 50%;
  }

  .col-sm-offset-7 {
    margin-left: 58.33333333%;
  }

  .col-sm-offset-8 {
    margin-left: 66.66666667%;
  }

  .col-sm-offset-9 {
    margin-left: 75%;
  }

  .col-sm-offset-10 {
    margin-left: 83.33333333%;
  }

  .col-sm-offset-11 {
    margin-left: 91.66666667%;
  }

  .start-sm {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    text-align: start;
  }

  .center-sm {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
  }

  .end-sm {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    text-align: end;
  }

  .top-sm {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .middle-sm {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .bottom-sm {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
  }

  .around-sm {
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }

  .between-sm {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .first-sm {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
  }

  .last-sm {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
}



#page-container {
	position: relative;
	top: 0;
	left: 0;
	width: 100%;
	height: auto;
}


/* INTERNAL NAVIGATION */
#holiday-nav {
	position: absolute;
	z-index: 100;
	top: 0;
	left: 0;
	width: 100%;
	padding: 0px;
	text-shadow: 0px 1px 10px rgba(0,0,0,.2);
}
.nav {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	border-bottom: 1px solid #fff;
	padding: 30px 8px 24px 8px;
	margin: 0px -8px;
	color: white;
}
.nav h1 {
	font-size: 24px;
	margin: 0px;
	color: white;
}
.nav-right a {
	margin-left: 30px;
	color: white;
	font-size: 18px;
	opacity: .9;
	transition: opacity .3s;
}
.nav-right a.active,.nav-right a:hover {
	opacity: 1;
}



/* ARTICLES STYLES */
.featured-article {
	height: 630px;
	width: 100%;
	background-color: #345749;
	background-size: cover;
	background-position: center;
}

.article-hero {
	height: 450px;
	width: 100%;
	background-position: center;
	background-size: cover;
}
.article-content {
	padding: 30px 0px;
}

.card-image, a.card-image {
	height: 300px;
	background-position: center;
	background-size: cover;
	padding: 30px;
}
.card-description {
	padding: 0px 16px;
}

p.script {
	font-family: 'Covered By Your Grace','Helvetica Neue', Halvetica, sans-serif;
	line-height: 1.3;
}
.aside a {
	color: #345749;
}
.body-content img {
	width: 100%;
	height: auto;
	margin: 20px 0px;
}
img.inline-image {
	width: 100%;
	height: 100%;
}
.caption {
	box-sizing: border-box;
	position: absolute;
	bottom: 60px;
	left: 30px;
	width: 300px;
	height: auto;
	padding: 20px;
	background: #9C453B;
}
.featured-article-info {
	position: absolute;
	left: 0;
	bottom: 30px;
	width: 300px;
	padding: 20px;
	background: #FFFFFF;
}
.caption p,
.caption-top-left p,
.caption-top-right p {
	color: white !important;
	font-size: 20px;
}
.caption-top-right {
	box-sizing: border-box;
	position: absolute;
	top: 30px;
	right: 30px;
	width: 300px;
	height: auto;
	padding: 20px;
	background: #9C453B;
}
.caption-top-left {
	box-sizing: border-box;
	position: absolute;
	top: 30px;
	left: 30px;
	width: 300px;
	height: auto;
	padding: 20px;
	background: #9C453B;
}


/* HOMEPAGE STYLES */

#hero {
	height: calc(100vh - 146px);
	min-height: 600px;
	max-height: 900px;
	background-size: cover;
	background-position: center;
}
#hero .container-whcc {
	position: relative;
	z-index: 2;
	height: 100%;
}
.emblem-wrapper {
	position: absolute;
	z-index: 3;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
#emblem {
	width: 450px;
	height: auto;
}
#hero h4 {
	color: #345749;
	font-size: 1.5em;
}

.line {
	position: absolute;
	z-index: 3;
	left: 50%;
	bottom: -50px;
	transform: translateX(-50%);
	width: 2px;
	height: 28%;
	background: white;
}

section {
	padding: 100px 0px;
	overflow: hidden;
}
section.green {
	background: #345749;
}
section.green * {
	color: #EAE3DD;
}
section.hazelnut {
	background: #D1AF94;
}
section.hazelnut * {
	color: white;
}
section.hazelnut .btn {
	color: #345749;
}
section.sun-kiss {
	background: #EAE3DD;
}
section.sun-kiss * {
	color: #9C453B;
}
section.moss {
	background: #899387;
}
section.moss * {
	color: white;
}
section.cinnabar {
	background: #9C453B;
}
section.cinnabar * {
	color: white;
}
section.snow {
	background: #F4F5FA;
}

.section-intro {
	height: 600px;
	margin-bottom: 40px;
}
.section-intro .intro-text {
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
}
.section-intro .intro-image {
	height: 100%;
	background-position: center;
	background-size: cover;
	position: relative;
	z-index: 2;
}
.section-image {
	background-position: center;
	background-size: cover;
	height: 100%;
	position: relative;
	z-index: 1;
}
.row.section-images {
	margin-left: -20px;
	margin-right: -20px;
	padding-bottom: 40px;
}
.section-images .col-sm-6,
.section-images .col-sm-12,.intro-image col-sm-6 {
	padding-left: 20px;
	padding-right: 20px;
	height: 100%;
}


/* TOOLTIPS */
.orb {
	height: 60px;
	width: 60px;
	background-color: transparent;
	opacity: .9;
	border-radius: 100%;
	transition: .3s;
	position: relative;
}
.orb:hover {
	cursor: pointer;
	opacity: 1;
	transform: scale(1.1);
}
.orb::before {
	content: " ";
	position: absolute;
	width: 50px;
	height: 50px;
	border-radius: 30px;
	top: 5px;
	left: 5px;
	background: rgba(210,210,210,.8);
	background: #345749;
	-webkit-transform: scale(.2);
	opacity: .9;
	z-index: 90;
	-webkit-animation-name: orbBlip;
	-webkit-animation-duration: 2s;
	-webkit-animation-timing-function: ease;
	-webkit-animation-iteration-count: infinite;
	animation-name: orbBlip;
	animation-duration: 2s;
	animation-timing-function: ease;
	animation-iteration-count: infinite;
}
.orb::after {
	content: " ";
	position: absolute;
	top: 21px;
	left: 21px;
	width: 18px;
	height: 18px;
	border-radius: 20px;
	background: #fff;
	z-index: 100;
	opacity: .9;
	-webkit-transform: translateZ(0);
	transform: translateZ(0);
	transition: .25s cubic-bezier(.36,.66,.96,1.28);
	box-shadow: 1px 1px 4px rgba(0,0,0,.4);
}
.section-image:hover .orb::after,
.intro-image:hover .orb::after,
#video-wrapper:hover .orb::after,
.card-section:hover .orb::after {
	top: 18px;
	left: 18px;
	width: 24px;
	height: 24px;
}
@-webkit-keyframes orbBlip {
   0% {
   	-webkit-transform: scale(0);
   	transform: scale(0);
   	opacity: .8;
   }

   100% {
   	-webkit-transform: scale(1);
   	transform: scale(1);
   	opacity: 0;
   }
}
@keyframes orbBlip {
   0% {
   	-webkit-transform: scale(0);
   	transform: scale(0);
   	opacity: .8;
   }

   100% {
   	-webkit-transform: scale(1);
   	transform: scale(1);
   	opacity: 0;
   }
}


.product-tooltip {
	margin-top: -112px;
	padding: 16px;
	opacity: 0;
	pointer-events: none;
	width: 300px;
	height: 100px;
	background: white;
	border-radius: 4px;
	filter: drop-shadow(2px 4px 10px rgba(0,0,0,.2));
	transition: opacity .3s;
}
#cards .product-tooltip {
	margin-top: -132px;
	height: 120px;
}
.product-tooltip h4 {
	margin: 0px;
	color: #302D2F;
}
.product-tooltip p {
	font-size: 14px;
	margin-top: 4px;
	color: #302D2F;
}
.product-tooltip a {
	font-size: 14px;
}
/*.product-tooltip p:last-of-type {
	padding-bottom: 10px;
	margin: 0px;
	opacity: .5;
}*/
.product-tooltip h4 span {
	font-family: 'Helvetica-Neue',sans-serif;
	font-size: 16px;
	color: #302D2F;
	opacity: .5;
	margin-left: 8px;
}
.primary-link {
	font-family: 'Helvetica-Neue',sans-serif;
	font-weight: 600;
	color: #9C453B !important;
	margin-right: 20px;
}
.secondary-link {
	font-family: 'Helvetica-Neue',sans-serif;
	color: #999999 !important;
}
.product-tooltip.visible {
	opacity: 1;
	pointer-events: all;
}



#foil-pressed-card .orb,#foil-pressed-card .product-tooltip {
	position: absolute;
	z-index: 4;
	top: 40%;
	left: 30%;
}
#mini-snapshots-two .orb,#mini-snapshots-two .product-tooltip {
	position: absolute;
	z-index: 4;
	top: 20%;
	left: 50%;
}
#holiday-cards .orb,#holiday-cards .product-tooltip {
	position: absolute;
	z-index: 4;
	top: 80%;
	left: 30%;
}
#mini-snapshots-one .orb,#mini-snapshots-one .product-tooltip {
	position: absolute;
	z-index: 4;
	top: 75%;
	left: 65%;
}
#ornaments-two .orb,#ornaments-two .product-tooltip {
	position: absolute;
	z-index: 4;
	top: 10%;
	left: 85%;
}
#small-frames-two .orb,#small-frames-two .product-tooltip {
	position: absolute;
	z-index: 4;
	top: 52%;
	left: 20%;
}
#image-box .orb,#image-box .product-tooltip {
	position: absolute;
	z-index: 4;
	top: 50%;
	left: 23%;
}
#image-cube .orb,#image-cube .product-tooltip {
	position: absolute;
	z-index: 4;
	top: 37%;
	left: 75%;
}
#small-frames-one .orb,#small-frames-one .product-tooltip {
	position: absolute;
	z-index: 4;
	top: 70%;
	left: 72%;
}
#ornaments-one .orb,#ornaments-one .product-tooltip {
	position: absolute;
	z-index: 4;
	top: 50%;
	left: 65%;
}
#framed-prints .orb,#framed-prints .product-tooltip {
	position: absolute;
	z-index: 6;
	top: 20%;
	left: 50%;
}
#wood-prints .orb,#wood-prints .product-tooltip {
	position: absolute;
	z-index: 6;
	top: 50%;
	left: 63%;
}
#album .orb,#album .product-tooltip {
	position: absolute;
	z-index: 6;
	top: 40%;
	left: 32%;
}
#mini-books .orb,#mini-books .product-tooltip {
	position: absolute;
	z-index: 6;
	top: 37%;
	left: 21%;
}

header {
	height: 80px;
	background-color: white;
	position: relative;
	z-index: 100;
}
header svg {
	position: absolute;
	top: 20px;
	left: 50%;
	transform: translateX(-50%);
}



@media only screen and (max-width: 814px) {
	#emblem {
		width: 100%;
		height: auto;
	}
	.section-intro {
		height: 100%;
	}
	.col-sm-offset-1 .intro-image {
		height: 500px;
		margin-left: 0px !important;
		margin-top: 40px;
	}
	.moss .intro-image {
		height: 500px;
		margin-bottom: 40px;
	}
	.xs-400 {
		height: 400px !important;
	}
	.xs-500 {
		height: 500px !important;
	}
	.xs-800 {
		height: 800px !important;
	}
	.xs-960 {
		height: 960px !important;
	}
	.section-image {
		height: 340px;
	}
	.section-images .col-sm-6 {
		height: 380px;
	}
}

@media only screen and (max-width: 415px) {
	.emblem-wrapper {
		width: 70%;
	}
	.caption-top-left {
		width: calc(100% - 60px) !important;
	}
	.caption-top-right {
		width: calc(100% - 60px) !important;
	}
	.hidden-xs {
		display: none;
	}
	.xs-300 {
		width: 300px !;
	}
}

























