/* Main */

html {
	height: 100%;
	overflow: auto;
	padding: 0;
	margin: 0;
}

body {
    overflow: hidden;
    height: auto;
	min-width: 500px;
	padding: 0;
	margin: 0;
    background-color: #FFFFFF;
    color: #000000;
	font-family: sans-serif;
	font-size: 0px;
    line-height: 25px;
}

a {
	color: inherit;
	text-decoration: none;
}

/* Wide and Thin Display */

@media (min-width: 1000px) {
	.displayThin {
		display: none !important;
	}
}

@media (max-width: 1000px) {
	.displayWide {
		display: none !important;
	}
}

/* Header */

.header {
	margin: 0 auto;
    width: 100%;
	min-height: 100px;
	background-color: #FFFFFF;
}

@media (min-width: 1000px) {
	.banner__shop {
		position: absolute;
		top: 15px;
		left: 15px;
		font-size: 20px;
	}

	.banner__social {
		position: absolute;
		top: 10px;
		right: 15px;
	}

	.header__logo {
		height: 200px;
		margin-top: 30px;
		margin-bottom: 20px;
	}
}

@media (max-width: 1000px) {
	.banner__shop {
		position: absolute;
		top: 10px;
		left: 10px;
		font-size: 20px;
	}

	.banner__social {
		position: absolute;
		top: 10px;
		right: 10px;
	}

	.header__logo {
		width: 80%;
		margin-top: 80px;
		margin-bottom: 20px;
	}
}

.header__main {
	position: relative;
	width: 90%;
	margin: auto;
	text-align: center;
}

.banner__visit {
	font-weight: bold;
	display: inline-block;
}

.banner__button {
	display: inline-block;
	border: 2px solid #497266;
	margin-right: 6px;
	border-radius: 4px;
	padding: 0px 14px;
	cursor: pointer;
	padding-top: 2px;
	color: #336960;
	background-color: #FFFFFF;
}

.banner__button--etsy:hover {
	background-color: #E26700;
	border: 2px solid #E26700;
	color: #FFFFFF;
}

.banner__button--thortful:hover {
	background-color: #4461E3;
	border: 2px solid #4461E3;
	color: #FFFFFF;
}

.banner__icon {
	height: 50px;
	cursor: pointer;
	margin-left: 10px;
	background-color: #FFFFFF;
}

.banner__navigation {
	width: 90%;
	margin: auto;
	margin-bottom: 30px;
}

.banner__breaker {
	height: 3px;
	width: 100%;
	background-color: #d0e9e6;
}

.banner__links {
	text-align: center;
}

.banner__link {
	display: inline-block;
	color: #336960;
	font-size: 20px;
	margin: 20px;
}

.banner__dot {
	position: absolute;
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background-color: #32c632;
	opacity: 0.6;
}

/* Dot Colours */

.dot--orange {
	background-color: rgb(255, 104, 1);
}

.dot--purple {
	background-color: rgb(155,108,240);
}

.dot--blue {
	background-color: rgb(68,97,227);
}

.dot--red {
	background-color: rgb(254,0,148);
}

.dot--lightblue {
	background-color: rgb(0,223,249);
}

.dot--green {
	background-color: rgb(50,198,50);
}

/* Footer */

.footer {
	width: 100%;
	min-height: 50px;
	padding-top: 20px;
	padding-bottom: 20px;
	background-color: #FFFFFF;
	text-align: center;
}

@media (min-width: 1000px) {
	.footer__banner {
		display: inline-block;
		vertical-align: middle;
		width: 30%;
		margin-left: 3%;
		height: 80px;
		text-align: left;
	}

	.footer__social {
		display: inline-block;
		vertical-align: middle;
		width: 30%;
		margin-left: 1.5%;
		margin-right: 1.5%;
	}

	.footer__contact {
		display: inline-block;
		vertical-align: middle;
		width: 30%;
		margin-right: 3%;
	}

	.footer__contactItem {
		text-align: right;
	}
}

@media (max-width: 1000px) {
	.footer__banner {
		width: 80%;
		margin-left: 10%;
		margin-right: 10%;
		margin-top: 40px;
		margin-bottom: 20px;
	}

	.footer__social {
		width: 80%;
		margin-left: 10%;
		margin-right: 10%;
	}

	.footer__contact {
		width: 80%;
		margin-left: 10%;
		margin-right: 10%;
		margin-bottom: 20px;
	}

	.footer__contactItem {
		text-align: center;
	}
}

.footer__image {
	max-height: 100%;
	max-width: 100%;
}

.footer__icon {
	display: inline-block;
	vertical-align: middle;
	max-width: 16px;
	max-height: 16px;
	margin-right: 6px;
	margin-bottom: 4px;
}

.footer__link {
	display: inline-block;
	vertical-align: middle;
	margin-bottom: 6px;
	font-size: 16px;
	cursor: pointer;
}

.footer__title {
	margin-bottom: 6px;
	font-size: 18px;
}

.footer__text {
	font-size: 12px;
}

.footer__socialImage {
	height: 45px;
	margin-left: 5px;
	margin-right: 5px;
}

/* Content */

.container {
	margin: 0 auto;
    width: 100%;
}

.content {
	width: 100%;
}

.content--nolineheight {
	line-height: 0px;
}

.content__table {
	width: 100%;
	margin: auto;
	background-color: #FFFFFF;
}

.content__table--green {
	background-color: #ebf4f3;
}

.content__table--bordertop {
	border-top: 4px solid #d0e9e6;
}

.content__table--borderbottom {
	border-bottom: 4px solid #d0e9e6;
}

.content__image {
	padding-top: 40px;
    width: 90%;
}

.floatLeft {
	float: left;
}

.floatRight {
	float: right;
}

.relative {
	position: relative;
}

.noOverflow {
	overflow: hidden;
}

.middleAlign {
	vertical-align: middle;
}

.bottomAlign {
	vertical-align: bottom;
}

.hidden {
	display: none;
}

@media (min-width: 1000px) {
	.paddingThick {
		padding-bottom: 40px;
	}
}

@media (max-width: 1000px) {
	.paddingThin {
		padding-bottom: 40px;
	}
}

/* Contact Input Error */

.contact__input--error {
	border: 2px solid red !important;
}

/* Button */

.button {
	display: inline-block;
	border: 2px solid #497266;
	margin-right: 6px;
	border-radius: 4px;
	padding: 0px 14px;
	cursor: pointer;
	padding-top: 2px;
	color: black;
	background-color: #FFFFFF;
}

.button--inline {
	display: inline-block;
}

.button:hover {
	color: #000000;
}

.button--purple {
	border-color: #9b6cf0;
}

.button--purple:hover {
	background-color: #9b6cf0;
	border: 2px solid #9b6cf0;
	color: #FFFFFF;
}

/* Text */

.text {
	font-size: 16px;
}

.text--bold {
	font-size: 16px;
	font-weight: bold;
}

.bold {
	font-weight: bold;
}

.text--link {
	color: #9fad9e;
	cursor: pointer;
	text-decoration: none;
}

.title {
	padding-left: 50px;
	padding-top: 40px;
	padding-bottom: 40px;
}

.title__text {
	font-size: 30px;
    line-height: 25px;
	white-space: nowrap;
}

.title__text--light {
	font-size: 24px;
    line-height: 25px;
	white-space: nowrap;
	color: #FFFFFF;
}

.title__text--underlined {
	padding-bottom: 6px;
	padding-right: 10px;
	border-bottom: 2px solid #9fad9e;
}

/* Hover Animation */

.hover {
	cursor: pointer;
	text-decoration: none;
	position: relative;
}

	.hover:hover {
		color: #336960;
		font-weight: bold;
	}

	.hover:before {
		content: "";
		position: absolute;
		width: 100%;
		height: 8px;
		bottom: -3px;
		left: 0;
		background-color: rgba(255, 104, 1, 0.5);
		visibility: hidden;
		-webkit-transform: scaleY(0);
		transform: scaleY(0);
		-webkit-transition: 0.3s;
		transition: 0.3s;
	}

	.hover--alternate:before {
		background-color: #FFFFFF !important;
	}

	.hover--lower:before {
		bottom: -10px;
	}

	.hover:hover:before {
		visibility: visible;
		-webkit-transform: scaleY(1);
		transform: scaleY(1);
	}

/* Hover Colours */

.hover--orange:before {
	background-color: rgba(255, 104, 1, 0.3);
}

.hover--purple:before {
	background-color: rgba(155, 108, 240, 0.3);
}

.hover--blue:before {
	background-color: rgba(68, 97, 227, 0.3);
}

.hover--red:before {
	background-color: rgba(254, 0, 148, 0.3);
}

.hover--lightblue:before {
	background-color: rgba(0, 223, 249, 0.3);
}

.hover--green:before {
	background-color: rgba(50, 198, 50, 0.3);
}

.hover--yellow:before {
	background-color: rgba(255, 227, 42, 0.3);
}

/* Slide Up Animation */

.slideUp {
	color: #000000;
	background-color: #FFFFFF;
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	transition: all 0.5s ease;
	background-size: 100% 200%;
	background-position: 0 -100%;
	background-image: linear-gradient(to top, transparent 50%, #678098 50%);
}

.slideUp:Hover {
	color: #FFFFFF;
	background-position: 0 0;
}

/* Fade In */

.fadeIn {
	opacity: 0;
	transition: opacity 1s ease-in-out;
	-moz-transition: opacity 1s ease-in-out;
	-webkit-transition: opacity 1s ease-in-out;
}

.fadeIn:hover {
	opacity: 1;
}

/* Divider Header */

.divider {
	text-align: center;
	display: block;
}

.divider:before,
.divider:after {
	background-color: #9fad9e;
	content: "";
	display: inline-block;
	height: 2px;
	position: relative;
	vertical-align: middle;
	width: 25%;
}

.divider:before {
	right: 0.5em;
	margin-left: -50%;
}

.divider:after {
	left: 0.5em;
	margin-right: -50%;
}

/* Navigation */

.navigation__bars {
    display: inline-block;
	vertical-align: bottom;
    cursor: pointer;
	transform: translate(0px, 15%);
}

.navigation__bar {
	width: 24px;
    height: 2px;
	background-color: #212529;
	margin: 6px 4px;
	transition: 0.4s;
	border-radius: 4px;
}

.navigation__animate .navigation__bar--first {
    -webkit-transform: rotate(-45deg) translate(-9px, 6px) ;
    transform: rotate(-45deg) translate(-3px, 6px) ;
}

.navigation__animate .navigation__bar--second {
    opacity: 0;
}

.navigation__animate .navigation__bar--third {
    -webkit-transform: rotate(45deg) translate(-8px, -8px) ;
    transform: rotate(45deg) translate(-5px, -8px) ;
}

/* Dropdown */

@media (min-width: 1000px) {
	.dropdown {
		position: absolute;
		z-index: 1000;
		left: 0px;
		width: 90%;
		padding-left: 5%;
		padding-right: 5%;
		padding-top: 20px;
		background-color: #FFFFFF;
	}

	.dropdown__link {
		display: inline-block;
		color: #000000;
		font-size: 16px;
		line-height: 25px;
		white-space: nowrap;
		cursor: pointer;
		margin-right: 30px;
		margin-top: 15px;
		margin-bottom: 15px;
	}
}

@media (max-width: 1000px) {
	.dropdown {
		position: absolute;
		z-index: 1000;
		left: 0px;
		padding-left: 10%;
		padding-right: 10%;
		padding-top: 20px;
		background-color: #FFFFFF;
	}

	.dropdown__link {
		color: #000000;
		font-size: 16px;
		line-height: 25px;
		white-space: nowrap;
		cursor: pointer;
		margin-right: 30px;
		margin-top: 15px;
		margin-bottom: 15px;
	}
}

.dropdown__divider {
	width: 100%;
	height: 2px;
	background-color: #9fad9e;
}

/* Fonts */

@font-face {
	font-family: "TeXGyreAdventor";
	font-style: normal;
	font-weight: normal;
	src: url(../fnt/texgyreadventor_regular_macroman/texgyreadventor-regular-webfont.eot);
	src: url(../fnt/texgyreadventor_regular_macroman/texgyreadventor-regular-webfont.eot) format("embedded-opentype"), 
	url(../fnt/texgyreadventor_regular_macroman/texgyreadventor-regular-webfont.woff) format("woff"),
	url(../fnt/texgyreadventor_regular_macroman/texgyreadventor-regular-webfont.svg) format("truetype"),
	url(../fnt/texgyreadventor_regular_macroman/texgyreadventor-regular-webfont.eot) format("svg")
}

@font-face {
	font-family: "TeXGyreAdventor";
	font-style: normal;
	font-weight: bold;
	src: url(../fnt/texgyreadventor_bold_macroman/texgyreadventor-bold-webfont.eot);
	src: url(../fnt/texgyreadventor_bold_macroman/texgyreadventor-bold-webfont.eot) format("embedded-opentype"), 
	url(../fnt/texgyreadventor_bold_macroman/texgyreadventor-bold-webfont.woff) format("woff"),
	url(../fnt/texgyreadventor_bold_macroman/texgyreadventor-bold-webfont.svg) format("truetype"),
	url(../fnt/texgyreadventor_bold_macroman/texgyreadventor-bold-webfont.eot) format("svg")
}

.font--texgyreadventor {
	font-family: "TeXGyreAdventor", sans-serif;
}

@font-face {
	font-family: "Caviar Dreams";
	font-style: normal;
	font-weight: normal;
	src: url(../fnt/caviardreams_regular_macroman/CaviarDreams-webfont.eot);
	src: url(../fnt/caviardreams_regular_macroman/CaviarDreams-webfont.eot) format("embedded-opentype"), 
	url(../fnt/caviardreams_regular_macroman/CaviarDreams-webfont.woff) format("woff"),
	url(../fnt/caviardreams_regular_macroman/CaviarDreams-webfont.svg) format("truetype"),
	url(../fnt/caviardreams_regular_macroman/CaviarDreams-webfont.eot) format("svg")
}

.font--caviardreams {
	font-family: "Caviar Dreams", sans-serif;
}

.font--courierprime {
	font-family: 'Courier Prime', monospace;
	font-weight: 400;
	font-style: italic;
}