* {
	  position: relative;
	  z-index: 1;
	  box-sizing: border-box;
	  text-rendering: optimizeLegibility;
	  
	  font-family: Lato, Arial, Sans Serif;
	  font-weight: 400;
}

a {
   outline: 0;
   text-decoration: none;
   
   -o-transition: .2s ease-in-out;
    -ms-transition: .2s ease-in-out;
    -moz-transition: .2s ease-in-out;
    -webkit-transition: .2s ease-in-out;
    transition: .2s ease-in-out;
}

p a {
	color: #ffcc00;
}

p a:hover {
	color: #ffffff;
}

img {
	border: 0;	
}

html, body {
	margin: 0;
	padding: 0;	
	overflow-x: hidden;
}

body {
	background: #000000;
}

main {
	display: flex;
	flex-flow: column nowrap;
}

h1, h2, h3, h4, h5 {
	font-family: 'Noto Serif', Times, Serif;
	font-style: italic;
}

.contentbox {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
}

.contentbox.wide {
	max-width: 1350px;
}

.contentbox.extrawide {
	max-width: 1800px;
}

a.button {
	display: inline-block;
	background: #ffcc00;
	color: #000000;
	text-transform: uppercase;
	letter-spacing: .1em;
	font-size: 13px;
	padding: 0 25px;
	line-height: 25px;
	font-weight: 700;
}

a.button:hover {
	background: #ffffff;
}

/* Misc */

.contactoptions {
	display: flex;
	flex-flow: row wrap;
	justify-content: center;
	align-items: center;
	width: 100%;
}

.contactoptions > * {
	width: 33%;
	padding: 15px 0;
}

.contactoptions .wp-block-image {
	margin: 0;
}

.contactoptions > * img {
	width: 100%;
	height: auto;
	border: 1px solid #ffffff;
	margin: 0;
}

.contactoptions h4,
#pageintro h4 {
	color: #ffffff;
	font-size: 24px;
	margin: 10px 0;
}

#pageintro .inline > * {
	display: inline;
}

#pageintro .contactoptions p {
	margin: 5px 0;
}

/* End Misc */


/* Header */
header {
	display: flex;
	flex-flow: column nowrap;
	justify-content: center;
	align-items: center;
	z-index: 1000;
}

header > div {
	display: block;
	width: 100%;
	text-align: center;
}

header .upper {
	background: #1a1a1c;
	padding: 10px 25px 15px 25px;
}

header .lower {
	display: flex;
	flex-flow: row nowrap;
	justify-content: center;
	align-items: flex-start;
}

header #mobilenav,
header #mobiledrop {
	display: none;
}

header #mobilenav {
	position: absolute;
	top: 15px;
	left: 25px;
	width: 75px;
}

header #mobiledrop {
	background: #ffffff;
	padding: 0 25px;
	overflow: hidden;
	
	display: flex;
	flex-flow: column nowrap;
	justify-content: center;
	align-items: center;
	
	height: 0;
}

header #mobiledrop ul,
header #mobiledrop ul li ul {
	display: block;
	margin: 0;
	padding: 0 0 15px 0;
}

header #mobiledrop ul {
	margin: 15px 0 0 0;
}

header #mobiledrop ul li,
header #mobiledrop ul li ul li {
	display: block;
	padding: 15px 25px 0 25px;
	margin: 0;
}

header #mobiledrop ul li a {
	font-size: 18px;
	color: #000000;
	font-family: Lato, Arial, sans serif;
	font-weight: 700;
	text-transform: uppercase;
}

header #mobiledrop ul li ul li a {
	font-size: 16px;
	color: #000000;
	font-family: Lato, Arial, sans serif;
	font-style: italic;
	text-transform: none;
	font-weight: 400;
}

header .nav ul {
	display: inline-block;
	padding: 10px 0 0 0;
	margin: 0;
}

header .nav ul li {
	position: relative;
	display: inline-block;
	padding: 0 15px 10px 15px;
	margin: 0;
	color: #ffffff;
}

header .nav ul li.divider {
	color: #999999;
	padding: 0;
}

header .nav ul li a {
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: .1em;
	font-weight: 300;
	font-size: 13px;
	color: #ffffff;
}

header .nav ul li a:hover,
header .nav ul li a.active {
	color: #ffcc00;
}

header .contact {
	font-size: 11px;
	letter-spacing: .15em;
	color: #ffffff;
	text-transform: uppercase;
	text-align: left;
	margin-left: 25px;
}

header .contact .sup {
	margin-top: -15px;
	margin-bottom: 9px;
	font-weight: 300;
	letter-spacing: .1em;
}

header .contact .darker {
	font-size: 11px;
	color: #999999;
}

header a.button {
	display: inline-block;
	background: #ffcc00;
	color: #000000;
	text-transform: uppercase;
	letter-spacing: .1em;
	font-size: 13px;
	padding: 0 25px;
	line-height: 25px;
	font-weight: 700;
}

header a.button:hover {
	background: #ffffff;
}

header .nav .dropdown {
	position: absolute;
	top: 30px;
	left: 0;
	width: auto;
	background: #ffffff;
	border-bottom: 7px solid #cccccc;
	padding: 25px 15px;
	opacity: 0;
	
	display: none;
	flex-flow: row nowrap;
	justify-content: center;
	align-items: stretch;
}

header .nav .dropdown .item {
	min-width: 330px;
	padding: 0 15px;
	border-right: 1px solid #cccccc;
	cursor: pointer;
}

header .nav .dropdown .item:last-child {
	border: 0;
}

header .nav .dropdown h2 {
	color: #000000;
	margin: 0 0 5px 0;
	padding: 0;
	font-size: 21px;
}

header .nav .dropdown p {
	color: #000000;
	margin: 0;
	padding: 0;
	font-size: 13px;
	text-transform: uppercase;
}

/* End Header */


/* Footer */
footer {
	background: #232323; 
	padding: 35px 0;
	color: #ffffff;
}

footer .intro p {
	font-size: 13px;
	line-height: 1.5em;
	max-width: 750px;
	text-align: left;
}

footer .contentbox {
	display: flex;
	flex-flow: column nowrap;
	justify-content: center;
	align-items: flex-start;
	
	background: transparent url('../images/footer-bg-coin.webp') no-repeat 90% 25px;
	padding: 0 25px;
}

footer .socials {
	text-transform: uppercase;
	font-size: 12px;
	letter-spacing: .1em;
	font-weight: 400;
}

footer .socials i {
	display: inline-block;
	background: #ffffff;
	border: 20px;
	border-radius: 50%;
	font-size: 20px;
	height: 40px;
	width: 40px;
	line-height: 40px;
	text-align: center;
	
	-o-transition: .2s ease-in-out;
    -ms-transition: .2s ease-in-out;
    -moz-transition: .2s ease-in-out;
    -webkit-transition: .2s ease-in-out;
    transition: .2s ease-in-out;
}

footer .socials a {
	display: inline-block;
	color: #000000;
	margin: 10px 5px 0 0;
}

footer .socials a:hover i {
	background: #ffcc00;
}

footer .nav {
	display: flex;
	flex-flow: row wrap;
	justify-content: center;
	align-items: flex-start;
	
	width: 100%;
	max-width: 750px;
	margin-bottom: 25px;
}

footer .nav ul {
	width: 100%;
	margin: 0;
	padding: 0;
}

footer .nav ul li {
	display: inline-block;
	margin: 0 3% 25px 0;
	padding: 0;
	width: 30%;
	min-width: 225px;
}

footer .nav ul li a {
	color: #ffffff;
	text-transform: uppercase;
	font-size: 12px;
	letter-spacing: .1em;
}

footer .nav ul li a.header {
	display: block;
	background: #000000;
	padding: 5px 10px;
	font-weight: 700;
	margin-left: -10px;
}

footer .nav ul li ul {
	display: flex;
	flex-flow: column nowrap;
	justify-content: center;
	align-items: flex-start;
}

footer .nav ul li ul li {
	width: 100%;
	margin: 5px 0 0 0;
}

footer .nav ul li ul li a:hover {
	color: #ffcc00;
}

footer .twocol {
	display: flex;
	flex-flow: row nowrap;
	justify-content: space-between;
	align-items: flex-end;
	
	width: 100%;
	border-bottom: 1px solid #999999;
	padding-bottom: 10px;
}

footer .copyright,
footer .subfooter {
	font-size: 12px;
	color: #999999;
	padding-top: 25px;
}

footer .copyright a {
	text-transform: uppercase;
	color: #999999;
	margin: 0 0 0 15px;
}

footer .copyright a:hover {
	color: #ffffff;
}

footer .copyright .links { display: inline-flex; }
footer .copyright .links #your-privacy-choices { display: inline-block; }
footer .copyright .links #your-privacy-choices img { margin-right: 5px; vertical-align: middle; }

/* End Footer */

/* Slider */

#slider {
	display: block;
	position: relative;
	overflow: hidden;
	width: 100%;
	height: auto;
	background: #000000;
	z-index: 50;
	margin: 0 auto;
	border-bottom: 1px solid #ffffff;
}

#slider .slide {
	display: block;
	height: auto;
	max-height: none;
	width: 100%;
	max-width: none;
	position: absolute;
	top: 0px;
	left: -5000px;
}

#slider .slide:first-child {
	position: relative;
	top: 0px;
	left: 0px;
}

#slider .slide img {
	display: block;
	width: 100%;
	height: auto;
}

#slider .slidenav {
    display: block;
    position: absolute;
    top: 50%;
    margin-top: -34px;
}

#slider #slidetrack {
	display: block;
	position: absolute;
	bottom: 15px;
	left: 0;
	text-align: center;
	width: 100%;
}

#slider .slidespot {
	display: inline-block;
	height: 12px;
	width: 12px;
	border-radius: 50%;
	border: 1px solid #ffffff;
	margin: 0 2px;
}

#slider .slidespot.on {
	background: #cccccc;
}

#slider.products .slide img {
	display: block;
	width: auto;
	max-width: 100%;
	height: auto;
	margin: 0 auto;
}

#slider.products {
	border: 0;
	background: #000000 url('../images/products-slider-bg.jpg') repeat-x bottom left;
}

/* End Slider */

/* Home */

#productsegments .segment {
	height: auto;
	width: 100%;
	overflow: hidden;
	background: #000000 url('../images/bg-tile-dark.png') repeat-x;
	background-size: contain;
}

#productsegments .segment > * {
	display: flex;
	flex-flow: row wrap;
	justify-content: center;
	align-items: center;
}

#productsegments .segment .imagebox {
	width: 60%;
}

#productsegments .segment .copybox {
	width: 40%;
	color: #ffffff;
	padding: 25px;
}

#productsegments .segment .imagebox img {
	width: 100%;
	height: auto;
}

#productsegments .segment .copybox h2 {
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: .1em;
	font-family: Lato, Arial, sans serif;
	font-style: normal;
}

#productsegments .segment .copybox h3 {
	font-size: 40px;
	font-family: 'Noto Serif', Times, serif;
	font-style: italic;
	line-height: 1em;
	margin-top: 0;
}

#productsegments .segment .copybox p {
	font-size: 16px;
	font-family: Lato, Arial, sans serif;
	line-height: 1.25em;
}

/* global subfeatures */

#subfeatures .facilities,
#subfeatures .history {
	border-top: 1px solid #ffffff;
}

#subfeatures .facilities img,
#subfeatures .history img {
	display: block;
	width: 100%;
	height: auto;
}

#subfeatures .facilities .copybox,
#subfeatures .history .copybox {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 10;
	text-align: center;
}

#subfeatures .copybox h3 {
	font-size: 50px;
	font-family: 'Noto Serif', Times, serif;
	font-style: italic;
	line-height: 1em;
	margin: 15px 0;
}

#subfeatures .copybox p {
	font-size: 16px;
	font-family: Lato, Arial, sans serif;
	line-height: 1.25em;
}

#subfeatures .facilities .copybox > * {
	max-width: 750px;
}

#subfeatures .facilities .copybox {
	width: 50%;
	height: 100%;
	margin-left: 50%;
	padding: 25px;
	
	display: flex;
	flex-flow: column nowrap;
	justify-content: center;
	align-items: center;
}

#subfeatures .facilities .copybox .divider {
	display: block;
	background: transparent url('../images/divider-tile.png') repeat-x;
	height: 14px;
	width: 80%;
	max-width: 500px;
}

#subfeatures .copybox a {
	color: #000000;
	font-size: 13px;
	text-transform: uppercase;
	font-weight: 700;
	margin-top: 25px;
}

#subfeatures .facilities .copybox a:hover {
	text-decoration: underline;
}

#subfeatures .history .copybox {
	top: unset;
	bottom: 0;
	width: 100%;
	height: 45%;
	padding: 25px;
	
	display: flex;
	flex-flow: column nowrap;
	justify-content: center;
	align-items: center;
}

#subfeatures .history .copybox p {
	max-width: 500px;
}

#subfeatures .history .copybox h3 {
	margin: 0;
}

#subfeatures .custom-minting {
	background: #ffffff url('../images/bg-tile-light.png') repeat-x bottom right;
}

#subfeatures .custom-minting .contentbox {
	display: flex;
	flex-flow: row nowrap;
	justify-content: center;
	align-items: center;
	
	padding: 60px 25px;
}

#subfeatures .custom-minting img {
	width: 100%;
	height: auto;
}

#subfeatures .custom-minting .imagebox {
	width: 60%;
}

#subfeatures .custom-minting .copybox {
	width: 40%;
	padding-left: 60px;
}

#subfeatures .custom-minting .copybox > * {
	max-width: 525px;
}

#subfeatures .custom-minting .copybox h1 {
	font-family: Lato, Arial, sans serif;
	font-size: 13px;
	font-style: normal;
	text-transform: uppercase;
	font-weight: 700;
	letter-spacing: .1em;
}

#subfeatures .custom-minting .copybox h2 {
	font-size: 50px;
	font-style: normal;
	margin: 0;
	line-height: 50px;
}

#subfeatures .custom-minting .copybox p {
	font-family: Lato, Arial, sans serif;
	font-size: 16px;
	font-style: normal;
}

#subfeatures .custom-minting .copybox a.button:hover {
	background: #000000;
	color: #ffffff;
}

#subfeatures .capabilities .contentbox {
	display: flex;
	flex-flow: row nowrap;
	justify-content: center;
	align-items: center;
	
	padding: 60px 25px;
	color: #ffffff;
}

#subfeatures .capabilities .copybox h2 {
	font-size: 40px;
	font-style: normal;
	margin: 0;
	line-height: 40px;
}

#subfeatures .capabilities .copybox > * {
	max-width: 525px;
}

#subfeatures .capabilities .copybox ul li {
	padding: 2px 0;
}

#subfeatures .capabilities .contentbox > * {
	width: 50%;
}

#subfeatures .capabilities .copybox,
#subfeatures .capabilities .imagebox {
	display: flex;
	flex-flow: column nowrap;
	justify-content: center;
	align-items: center;
}

#subfeatures .capabilities .imagebox img {
	width: auto;
	height: auto;
	max-width: 100%;
}

/* end global subfeatures */

/* berder */
	
#nav-berder {
	width: 35px;
	height: 35px;
	position: relative;
	margin: 25px;
	-webkit-transform: rotate(0deg);
	-moz-transform: rotate(0deg);
	-o-transform: rotate(0deg);
	transform: rotate(0deg);
	-webkit-transition: .5s ease-in-out;
	-moz-transition: .5s ease-in-out;
	-o-transition: .5s ease-in-out;
	transition: .5s ease-in-out;
	cursor: pointer;
}

#nav-berder span {
	display: block;
	position: absolute;
	height: 2px;
	width: 100%;
	background: #ffffff;
	opacity: 1;
	left: 0;
	-webkit-transform: rotate(0deg);
	-moz-transform: rotate(0deg);
	-o-transform: rotate(0deg);
	transform: rotate(0deg);
	-webkit-transition: .25s ease-in-out;
	-moz-transition: .25s ease-in-out;
	-o-transition: .25s ease-in-out;
	transition: .25s ease-in-out;
}

#nav-berder span:nth-child(1) {
	top: 0px;
}

#nav-berder span:nth-child(2),
#nav-berder span:nth-child(3) {
	top: 10px;
}

#nav-berder span:nth-child(4) {
	top: 20px;
}

#nav-berder.open span:nth-child(1) {
	top: 10px;
	width: 0%;
	left: 50%;
}

#nav-berder.open span:nth-child(2) {
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	transform: rotate(45deg);
}

#nav-berder.open span:nth-child(3) {
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

#nav-berder.open span:nth-child(4) {
	top: 10px;
	width: 0%;
	left: 50%;
}

/* berder */

/* Interior Page */

#hero {
	background-color: #cccccc;
	height: 620px;
	background-position: center; 
	background-repeat: no-repeat; 
	background-size: cover; 
	
	display: flex;
	flex-flow: column nowrap;
	justify-content: center;
	align-items: center;
	text-align: center;
}

#hero.bottom {
	padding-bottom: 15px;
	justify-content: flex-end;
}

#hero h1 {
	display: inline-block;
	font-family: Lato, Arial, sans serif;
	font-size: 13px;
	font-weight: 700;
	background: #ffffff;
	text-transform: uppercase;
	padding: 5px 15px;
	letter-spacing: .1em;
	font-style: normal;
	margin: 5px 25px;
}

#hero h2 {
	display: block;
	font-family: 'Noto Serif', Times, serif;
	font-size: 64px;
	line-height: 64px;
	color: #ffffff;
	margin: 5px 25px;
}

#hero h3 {
	display: block;
	font-family: Lato, Arial, sans serif;
	font-size: 26px;
	line-height: 26px;
	font-weight: 300;
	color: #ffffff;
	font-style: normal;
	margin: 15px 25px;
}

#hero .panel.dark h2,
#hero .panel.dark h3 {
	color: #000000;
}

#pageintro {
	padding: 50px 25px;
	/*text-align: center;*/
	width: 100%;
	max-width: 900px;
}

#pageintro h2,
#faq h2 {
	display: block;
	font-family: 'Noto Serif', Times, serif;
	font-size: 40px;
	line-height: 40px;
	color: #ffffff;
	margin: 5px 0;
}

#pageintro h3 {
	display: inline-block;
	background: #ffffff;
	color: #000000;
	text-transform: uppercase;
	font-size: 13
	px;
	letter-spacing: 0.1em;
	font-family: Lato, Arial, sans serif;
	font-weight: 700;
	font-style: normal;
	padding: 5px 25px;
}

#pageintro p,
#pageintro li {
	display: block;
	font-family: Lato, Arial, sans serif;
	font-size: 16px;
	font-weight: 400;
	color: #ffffff;
	font-style: normal;
	margin: 15px 0;
}

#pageintro p strong,
#pageintro li strong {
	font-weight: 700;
}

#pageintro .divider {
	display: block;
	background: transparent url('../images/divider-tile-v2.png') repeat-x;
	height: 14px;
	width: 80%;
	max-width: 500px;
	margin: 50px auto;
}

body.interior #productsegments .segment {
	height: auto;
	width: 100%;
	overflow: hidden;
	background-image: none;
	margin-bottom: 30px;
}

body.interior #productsegments .segment .imagebox,
body.interior #productsegments .segment .copybox {
	width: 50%;
	padding: 30px;
}

body.interior #productsegments .segment .copybox > * {
	max-width: 650px;
	margin: 0 auto;
}

body.interior #productsegments .segment .copybox h3 {
	margin-bottom: 10px;
}

body.interior #productsegments .segment .copybox p {
	line-height: 1.5em !important;
}

/* End interior page */

/* video */

#modalblind {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	height: 0;
	width: 100%;
	z-index: 1000;
	background-color: #000;
	opacity: 0.80;
	z-index: 1001;
}

#videoPopup {
	display: none;
	position: absolute;
	opacity: 0;
	z-index: 1002;
}

#videoPopup, #playervideo {
	width: 100%;
	height: auto;
	max-width: 980px;
}

#videoPopup #player {
	display: table-cell;
	vertical-align: middle;
	text-align: center;
}

#videoPopup #player #frame {
	display: block;
	background-color: #000;
}

#videoPopup .closeme {
	display: block;
	position: absolute;
	top: 15px;
	right: 15px;
}

/* end video */

/* FAQ */

#faq {
	padding: 0 25px 100px 25px;
}

#faq h2 {
	margin: 50px 0 25px 0;
}

#faq {
	color: #ffffff;
}

#faq .qapair .answer {
	padding-right: 50px;
	max-width: 900px;
	overflow: hidden;
	height: 0;
}

#faq .qapair .question {
	color: #ffcc00;
	cursor: pointer;
	border-top: 1px solid #333333;
	padding: 25px 35px 25px 0;
}

#faq .qapair .opener {
	display: inline-block;
	background: transparent url('../images/faq-arrow.png') no-repeat center center;
	cursor: pointer;
	height: 28px;
	width: 28px;
	transition: all 0.2s linear;			
	-webkit-transition: all 0.2s linear;
	-moz-transition: all 0.2s linear;
	-o-transition: all 0.2s linear;
    position: absolute;
    top: 25px;
    right: 0;
}

.opener.flip { 
	transform: rotate(-180deg);
}

/* end FAQ */
	
/* 404 Page */
#notfound {
    color: white;
    padding: 50px 25px 100px;
    width: 100%;

}

@media screen and (max-width: 1062px) {
	
	header .upper {
		padding: 15px 25px;
	}
	
	header .lower {
		padding: 15px 25px;
	}
	
	header .contact {
		text-align: center;
		margin: 0 25px;
	}
	
	header .contact .sup {
		margin-top: 0;
	}

	header .nav {
		display: none;
	}
	
	header #mobilenav {
		display: block;
	}
	
	header #mobiledrop {
		display: block;
	}
	
	#productsegments .segment .copybox h3 {
		font-size: 32px;
	}
	
	#subfeatures .copybox h3 {
		font-size: 32px;
	}
	
	#subfeatures .history .copybox {
		height: 45%;
	}
	
	#subfeatures .history .copybox a {
		margin-top: 0;
	}
	
	#subfeatures .history .copybox p {
		max-width: 750px;
	}
	
	#subfeatures .history .copybox h3 br {
		display: none;
	}

} /* 1062 */

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

	footer .twocol {
		flex-flow: column nowrap;
		justify-content: center;
		align-items: center;
	}
	
	footer .copyright {
		text-align: center;
	}
	
	footer .copyright .links {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		margin-top: 5px;
	}
} /* 950 */

@media screen and (max-width: 900px) {
	
	#pageintro h2 {
		font-size: 34px;
		line-height: 34px;
	}
	
	#subfeatures .capabilities .copybox h2 {
		font-size: 34px;
		line-height: 34px;
	}
	
	#subfeatures .custom-minting .copybox h2 {
		font-size: 28px;
		line-height: 28px;
	}
	
} /* 900 */

@media screen and (max-width: 768px) {
	
	#productsegments .segment > * {
		flex-flow: column wrap;
	}
	
	#productsegments .segment .imagebox,
	#productsegments .segment .copybox	{
		width: 100%;
	}
	
	#productsegments .segment .imagebox {
		order: 1;
	}
	
	#productsegments .segment .copybox	{
		order: 2;
		max-width: 650px;
	}
	
	#subfeatures .copybox h3 {
		font-size: 26px;
	}
	
	#subfeatures .copybox p,
	#subfeatures .copybox a	{
		font-size: 14px;
		margin-top: 15px;
	}
	
	/*footer .twocol {
		flex-flow: column nowrap;
		justify-content: center;
		align-items: center;
	}*/
	
	body.interior #productsegments .segment .imagebox,
	body.interior #productsegments .segment .copybox {
		width: 100%;
	}
	
	body.interior #productsegments .segment .imagebox {
		padding: 0;
	}
	
	#subfeatures .capabilities .contentbox > *,
	#subfeatures .custom-minting .contentbox > *	{
		width: 100%;
		padding-top: 25px;
	}
	
	#subfeatures .capabilities .contentbox,
	#subfeatures .custom-minting .contentbox {
		flex-flow: column nowrap;
	}
	
	#subfeatures .capabilities .contentbox .imagebox,
	#subfeatures .custom-minting .contentbox .imagebox {
		order: 1;
	}
	
	#subfeatures .capabilities .contentbox .copybox,
	#subfeatures .custom-minting .contentbox .copybox {
		order: 2;
		display: flex;
		flex-flow: column nowrap;
		justify-content: center;
		align-items: center;
		padding: 0;
	}
	
	#subfeatures .capabilities .contentbox .copybox a {
		font-size: 11px;
	}
	
} /* 768 */

@media screen and (max-width: 640px) {
	
	
	#hero h2 {
		font-size: 48px;
		line-height: 48px;
	}

	footer .nav ul li {
		display: block;
		margin: 15px auto;
		padding: 0;
		width: 100%;
		max-width: 250px;
	}
	
	footer .links {
		display: block;
		margin-top: 5px;
	}
	
	footer .copyright {
		margin: 0;
		text-align: center;
	}
	
	footer .copyright a {
		margin: 0 5px;
	}
	
	#subfeatures .facilities .copybox,
	#subfeatures .history .copybox	{
		position: relative;
		width: 100%;
		background: #ffffff;
		margin: 0;
	}
	
	#subfeatures .facilities,
	#subfeatures .history {
		overflow: hidden;
	}
	
	#subfeatures .facilities img {
		width: 180%;
	}
	
	#subfeatures .history img {
		display: block;
		margin-left: auto;
		margin-right: auto;
		width: 200%;
		margin-left: -50%;
	}
	
	#subfeatures .history .copybox	{
		margin-top: -35%;
	}

} /* 640 */

@media screen and (max-width: 480px) {
	
	#slider #slidetrack {
		display: none;
	}
	
	header #mobilenav {
		top: 5px;
		left: 5px;
	}
	
	#nav-berder {
		margin: 25px 15px;
	}
	
	header .upper img {
		width: 65%;
		height: auto;
	}
	
	header .lower .sup,
	header .lower .phonehours {
		display: none;
	}
	
	header .lower {
		padding: 5px 25px 5px 25px;
	}
	
	header .upper {
		padding: 5px 25px 5px 25px;
	}
	
	#subfeatures .capabilities .copybox h2 {
		font-size: 28px;
		line-height: 28px;
	}
	
	#subfeatures .custom-minting .copybox h2 {
		font-size: 32px;
		line-height: 32px;
	}
	
	#pageintro h2 {
		font-size: 28px;
		line-height: 28px;
	}
	
	footer .copyright a {
		margin: 3px 5px;
	}

} /* 480 */
