/* 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 Reset */

/* Font */
@font-face { /* Gellix Bold, Performance */
    font-family: 'Gellix';
    src: url('../type/gellix_performance_01.woff') format('woff');
    font-weight: 600;
    font-style: normal;
}
@font-face { /* Gellix Medium */
    font-family: 'Gellix';
    src: url('../type/gellix_medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
}
@font-face { /* Gellix Medium Italic */
    font-family: 'Gellix Italic';
    src: url('../type/gellix_medium_italic.woff') format('woff');
    font-weight: 500;
    font-style: italic;
}
@font-face {
    font-family: 'svb';
    src: url('../type/svb.woff2') format('woff2'),
        url('../type/svb.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}


/* Variables */
:root {
	--bg_color: white;
	--primary_color: black;
	--hover_color: #ccc;
	--hover_opacity: 0.3;
}

/* Selection */
::selection {
  background: yellow;
}
::-moz-selection {
  background: yellow;
}

body{
	background-color: var(--bg_color);
	font-family: 'Gellix', Arial, sans-serif;
	font-weight: 500;
	font-size: 17px;
	line-height: 1.4;
	overflow-wrap: break-word;
	margin-left: auto;
	margin-right: auto;
}

/* Type */
.lhb{
	line-height: 1.6;
}
h1{
	font-size: 22px;
	font-weight: 600;
}
p{
	margin-bottom: 1em;
}
i, em{
	font-family: 'Gellix Italic';
	font-style: italic;
}
b, strong{
	font-weight: 600;
}
.arrow-list ul{
	list-style: disc;
	list-style-type: '→ ';
	list-style-position: outside;
	margin-left: 1em;
}
ol{
	list-style-type: decimal;
	list-style-position: outside;
	margin-left: 3em;
	margin-bottom: 1em;
}

/* Links */
a{
	text-decoration: none;
	color: var(--primary_color);
	transition: opacity 0.1s linear;
}
a:hover{
	opacity: var(--hover_opacity);
}
.underline_link a{
	text-decoration: underline;
	opacity: 1;
}
.underline_link a:hover{
	text-decoration: none;
	opacity: 1;
}
.arrow_hover_link a:after{
	content: ' ↗';
	opacity: 0;
}
.arrow_hover_link a:hover:after{
	opacity: 1;
}
.active{
	opacity: 1;
}
a.anchor {
    display: block;
    position: relative;
    top: -2em;
    visibility: hidden;
}

/* Header */
.header{
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	margin: 1em 5vw 1em 5vw;
}
header a{
	text-decoration: none;
	opacity: var(--hover_opacity);
	transition: opacity 0.1s linear;
}
header a:hover{
	text-decoration: none;
	opacity: 1;
}

/* Logo */
.logo{
	width: 50%;
}
.logo a{
	text-decoration: none;
	opacity: 1;
	transition: opacity 0.1s linear;
}
.logo a:hover{
	text-decoration: none;
	opacity: var(--hover_opacity);
}

/* Navigation */
.navigation{
	width: 50%;
	margin-left: 1em;
}
.nav_primary{}
.nav_secondary{}
nav li{
	display: inline-block;
}
nav li:after{
	content: ", ";
	opacity: var(--hover_opacity);
}
nav li:last-child:after{
	content: "";
}

/* Mobile Navigation */
#myLinks {
	display: block;
}
#mobile_menu{
	display: none;
	font-size: 22px;
}
input[type=button] {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	font-weight: 600;
	vertical-align: baseline;
	background: none;
	outline: none;
	color: var(--primary_color);
	opacity: var(--hover_opacity);
	transition: opacity 0.1s linear;
}
input[type=button]:hover {
	cursor: pointer;
	opacity: 1;
}

input{
	outline: none;
	border: none;
	font-size: unset;
	font-family: unset;
	font-weight: unset;
	border-bottom: 0.1em solid var(--primary_color);
	border-radius: 0;
	-webkit-appearance: none;
}

button{
	outline: none;
	border: none;
	font-size: unset;
	font-family: unset;
	font-weight: unset;
	background-color: white;
	padding: 0;
	display: inline-block;
}

button:hover{
	opacity: var(--hover_opacity);
	cursor: pointer;
}

.js-cm-form{
	padding-top: 2em;
	display:flex;
	justify-content: center;
	flex-wrap: wrap;
	width: 100%;
}

.js-cm-form label{
	margin-right: 0.5em;
}
.js-cm-form input{
	width: 8em;
	margin-right: 1em;
}

/* About / Outside Contributions */
#outside_contributions a{
	border-top:0.1em solid var(--primary_color);
	display: block;
}
#outside_contributions a:hover{
	opacity: 1;
}
#outside_contributions a:last-of-type{
	border-bottom:0.1em solid var(--primary_color);
}
.accordion-title{
	display: flex;
	justify-content: space-between;
	width: 100%;
	padding: 0.5em 0;
}
.accordion-item-content{
	opacity: var(--hover_opacity);
}
.accordion:hover .accordion-item:hover .accordion-item-content,
.accordion .accordion-item--default .accordion-item-content {
    height: 4em;
}
.accordion-item-content,
.accordion:hover .accordion-item-content {
    height: 0;
    overflow: hidden;
    transition: height .3s;
}

/* About / Ensemble Multi-column */
.multi-column {
   -moz-column-count: 2;
   -moz-column-gap: 1.6;
   -moz-column-fill: auto;
   -webkit-column-count: 2;
   -webkit-column-gap: 1.6;
   -webkit-column-fill: auto;
   column-count: 2;
   column-gap: 1.6;
   column-fill: auto;
}

/* Primary Content */
.primary{
	margin: 1em 5vw 1em 5vw;
}
.section{
	margin: 6em 0;
}
.section-2{
	margin: 3em 0;
}

section {
	clear: both;
	padding: 0px;
	margin: 0px;
}

/* Ticker Tape */
@-webkit-keyframes horizontal-scroll-left{
	from{
		-webkit-transform:translateX(-30%);
		transform:translateX(-30%)
	}to{
		-webkit-transform:translateX(0);
		transform:translateX(0)
	}
}
@keyframes horizontal-scroll-left{
	from{
		-webkit-transform:translateX(-30%);
		transform:translateX(-30%)
	}to{
		-webkit-transform:translateX(0);
		transform:translateX(0)
	}
}
@-webkit-keyframes horizontal-scroll-right{
	from{
		-webkit-transform:translateX(0);
		transform:translateX(0)
	}to{
		-webkit-transform:translateX(30%);
		transform:translateX(30%)
	}
}
@keyframes horizontal-scroll-right{
	from{
		-webkit-transform:translateX(0);
		transform:translateX(0)
	}to{
		-webkit-transform:translateX(30%);
		transform:translateX(30%)
	}
}
.products-banner{
	text-align:center;
	display:flex;
	justify-content:center;
	overflow:hidden;
	margin-top: -0.5em;
	margin-bottom: 0.5em;
}
.products-banner div{
	-webkit-animation-name:horizontal-scroll-right;
	animation-name:horizontal-scroll-right;
	-webkit-animation-duration:60s;
	animation-duration:60s;
	-webkit-animation-iteration-count:infinite;
	animation-iteration-count:infinite;
	-webkit-animation-timing-function:linear;
	animation-timing-function:linear;
	-webkit-animation-direction:normal;
	animation-direction:normal
}
.products-banner div h1{
	white-space:nowrap;
	margin: 0;
}


.primary_ticker{
	grid-column: 1 / span 2;
}
.secondary_ticker{
	grid-column: 4;
}


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

}

/* ---------- GRIDS AD NAUSEAM ---------- */

/* Grid containers */
.grid-container {
	display: grid;
	grid-gap: 1em;
}
.two-columns{
	grid-template-columns: repeat(2, 1fr);
}
.tiny-grid{
	grid-template-columns: repeat(2, 1fr);
	grid-template-rows: repeat(3, 1fr);
	height: 75%;
	width: 100%;
	position: absolute;
}
.three-columns{
	grid-template-columns: repeat(3, 1fr);
}
.four-columns{
	grid-template-columns: repeat(4, 1fr);
}

/* Grid items */
.grid-item{
	position: relative;
	width: 100%;
}



.grid-t, .home-grid-t{
	padding-bottom: 66.66%;
}
.grid-s{
	padding-bottom: 75%;
}
.grid-m, .home-grid-m{
	padding-bottom: 100%;
}
.grid-l{
	padding-bottom: 133.3%;
}

.performance-item{
	display: block;
	position: relative;
}
.performance-item:after,
.performance-item.single-column-xs:after,
.performance-item.single-column-s:after,
.performance-item.single-column-m:after,
.performance-item.single-column-l:after {
	padding-top: 133.33%;
 	display: block;
 	content: '';
}

.xl{
	grid-column: 1 / span 2;
	display: block;
	position: relative;
	width: 100%;
}

.xl .performance-item:after {
	padding-top: calc(133% / 2);
}

.grid_image_container{
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
}
.grid_image{
	position: absolute;
	width: 100%;
	background-repeat: no-repeat;
	background-size: cover;
}
.tiny_grid_image{
	width: 100%;
	background-repeat: no-repeat;
	background-size: cover;
}

/* Image Sizes */
.xs, .tiny{
	width: calc(50% - 0.5em);
	height: 25%;
}
.s, .small{
	width: 100%;
	height: 56.25%;
}
.m, .medium{
	width: 100%;
	height: 75%;
}
.l, .large{
	width: 100%;
	height: 100%;
}

.grid-item .tiny.center{
	width: calc(50% - 0.5em);
	margin-left: calc(25% + 0.25em);
}

.single-column-xs:after{
	display: none;
}
.single-column-s:after{
	display: none;
}
.single-column-m:after{
	display: none;
}
.single-column-l:after{
	display: none;
}

.blank_grid_cell{
	display: inherit;
}

/* ---------- TEXT CURSOR NIGHTMARE ---------- */

 .grid-item .product-item__image {
	 display: block;
	 background-size: cover;
	 background-repeat: no-repeat;
	 background-position: center center;
	 position: absolute;
	 width: 100%;
	 height: 100%;
}
 .grid-item .product-item__title {
	 text-align: center;
}
 .grid-item .product-item__title a {
	 text-decoration: none;
	 cursor: none;
}
@media (max-width: 1200px){
 .grid-item .product-item__title a {
	 cursor: pointer;
}
}
 .grid-item .product-item__title a:before {
	 content: '';
	 position: absolute;
	 top: 0;
	 left: 0;
	 width: 100%;
	 height: 100%;
}
 .grid-item .product-item__price {
	 text-align: center;
}



.grid-item .product-item__inner {
    position: absolute;
    height: 100%;
    width: 100%;
}

.tiny.product-item__inner {
    width: calc(50% - 0.5em);
	height: 25%;
}

.small.product-item__inner {
    width: 100%;
	height: 56.25%;
}

.medium.product-item__inner{
	width: 100%;
	height: 75%;
}

.large.product-item__inner{
	width: 100%;
	height: 100%;
}

.xs, .tiny{
	width: calc(50% - 0.5em);
	height: 25%;
}
.s, .small{
	width: 100%;
	height: 56.25%;
}
.m, .medium{
	width: 100%;
	height: 75%;
}
.l, .large{
	width: 100%;
	height: 100%;
}



.home-grid-m .product-item__inner{
	height: 75%;
}

.home-grid-t .product-item__inner{
	width: calc(50% - 1em);
	height: 50%;
}

 .grid-item .product-item__body {
	 text-align: center;
	 position: absolute;
	 top: 0;
	 width: 100%;
	 height: 100%;
	 display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -webkit-box-align: center;
            -webkit-box-pack: center;
	 flex-flow: row wrap;
	 align-items: center;
	 justify-content: center;
	 opacity: 0;
	 transition: all 0.3s;
}
@media (max-width: 1200px){
.grid-item .product-item__body {
	position: relative;
    opacity: 0;
    outline: none;
}
.grid-item .product-item__body:focus {
    outline: none;
}}

 .products-info {
	position: fixed;
	z-index: 1;
	text-align: center;
	width: calc(45vw);
	opacity: 0;
	pointer-events: none;
	margin-top: 2em;
}
@media (max-width: 1200px){
.products-info {
    display: none !important;
}}

@media (max-width: 1200px){
.grid-item .product-item__link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}}

@media (max-width: 1200px){
.grid-item .product-item__image {
    margin-bottom: 18px;
}}

.pis{
	width: calc(22.5vw);
}

 .products-info .products-info--alt {
	 display: inline-block;
	 width: auto;
	 transform: translateX(-50%);
	 white-space: nowrap;
}
 .products-info.visible {
	 opacity: 1;
}
 .products-info .product-item__title {
	 text-align: center;
}
 .products-info .product-item__title a {
	 text-decoration: none;
}
 .products-info .product-item__price {
	 text-align: center;
}

.disappear_on_mobile{
	display: inherit;
}
.appear_on_mobile{
	display: none;
}

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



.disappear_on_mobile{
	display: none;
}

.appear_on_mobile{
	display: block;
}

.performance-item.single-column-blank:after{
	display: none;
}

.performance-item.single-column-xs:after{
	padding-top:100%;
}
.performance-item.single-column-tiny:after{
	padding-top: 33%;
}
.tiny.product-item__inner{
	height: 100%;
}

.performance-item.single-column-xs .grid_image_container .xs,
.performance-item.single-column-xs .grid_image_container .tiny-grid
{
	height: 100%;
}

.performance-item.single-column-s:after,
.performance-item.single-column-small:after{
	padding-top:75%;

}
.performance-item.single-column-s .grid_image_container .s{
	height: 100%;
}

.performance-item.single-column-m:after,
.performance-item.single-column-medium:after{
	padding-top:100%;

}
.performance-item.single-column-m .grid_image_container .m{
	height: 100%;
}

.performance-item.single-column-l:after,
.performance-item.single-column-large:after{
	padding-top:133.33%;
}

.small.product-item__inner,
.medium.product-item__inner{
	height: 100%;
}

.video_title{
	display: none;
}

	.xl{
	grid-column: 1 / span 1;
}

	.grid_image_container{
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
}
.grid_image{
	position: absolute;
	width: 100%;
}
		.xs{
		width: calc(50% - 0.5em);
		height: 20.5%;

	}
	.s{
		width: 100%;
		height: 56.25%;

	}
	.m{
		width: 100%;
		height: 75%;

	}
	.l{
		width: 100%;
		height: 100%;

	}


}

/* Image Alignments */
.top{
	top: 0;
}
.center{
	top: 50%;
  	transform: translateY(-50%);
}
.bottom{
	bottom: 0;
}
.left{
	left: 0;
}
.right{
	right: 0;
}

/* Newsletter */
.news-item{
	height: 100%;
	display: flex;
	background-color: var(--hover_color);
	color: var(--bg_color);
}
.news-item a{
	color: var(--bg_color);
}
.news-item:hover a{
	opacity: 1;
}
.news-item:after {
	padding-top: 133.33%;
	display: block;
	content: '';
}
.newsletter_cover{
	display: flex;
	width: 100%;
	height: 100%;
	padding: 0 1em;
	text-align: center;
	flex-direction: column;
	justify-content: space-around;
}
.newsletter_number_and_date{
	display: flex;
	flex-direction: row;
	justify-content: space-around;
	width: 100%;
}

/* Round Corners on hover */
.rounding{
	border-radius: 0;
	transition: all 0.1s linear;
}
.rounding:hover{
	border-radius: 3em;
}


/* Article */
.article_meta{
	width: 100%;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
}
.article_meta_condensed{
	display: none;
}
@media (max-width: 1200px){
.article_meta{
	display: none;
}
.article_meta_condensed{
	display: flex;
	flex-direction: column;
	align-items: center;
}
}

audio:focus {
    outline: none;
}



.article_body p, .article_body ol{
	margin-left: 15%;
	margin-right: 15%;
}

.article_body p:nth-last-child(2):after{
  display: inline-block;
  margin-left: 0.25em;
  content: ' ';
  background-image: url('../type/signoff.svg');
  background-size: 17px 17px;
  height: 17px;
  width: 17px;
}

.article_body h2{
	font-size: 22px;
	font-weight: 600;
}

.article_body h1, 
.article_body h2, 
.article_body h3{
	margin-left: 15%;
	margin-right: 15%;
	margin-bottom: 1em;
}
.article_body blockquote{
	font-family: 'svb';
	margin-left: 20%;
	margin-right: 15%;
	margin-top: 2em;
	margin-bottom: 2em;
}
.article_body img{
	width: 100%;
}
.article_body figure figcaption{
	font-family: 'svb';
	text-align: center;
}
.article_body figure{
	margin: 2em;
}

.article_body figure ul{
	display: flex;
	width: 100%;
	flex-direction: row;
	align-items: center;
}

.article_body figure ul li{
	margin: 1em;
	flex-grow: 1;
	flex-basis: 0;
}

@media (max-width: 600px){
.article_body p{
	margin-left: 5%;
	margin-right: 5%;
}
.article_body h1, 
.article_body h2, 
.article_body h3{
	margin-left: 5%;
	margin-right: 5%;
	margin-bottom: 1em;
}
.article_body blockquote{
	margin-left: 12%;
	margin-right: 5%;
	margin-top: 2em;
	margin-bottom: 2em;
}
.article_body figure ul{
	flex-direction: column;
}
}



.video_container iframe{
position:absolute;top:0;left:0;width:100%;height:100%;
}

.subsection{
	margin-bottom: 3em;
}

/* Column Setup */

.col {
	display: block;
	float:left;
	margin: 0 0 0 1.6%;
}
.col:first-child { margin-left: 0; }

/* Grouping */
.group:before,
.group:after {
	content:"";
	display:table;
}
.group:after {
	clear:both;
}
.group {
    zoom:1; /* For IE 6/7 */
}

/* Grid of Twelve */
.span_12_of_12 {
	width: 100%;
}
.span_11_of_12 {
	width: 91.53%;
}
.span_10_of_12 {
	width: 83.06%;
}
.span_9_of_12 {
	width: 74.6%;
}
.span_8_of_12 {
	width: 66.13%;
}
.span_7_of_12 {
	width: 57.66%; 
}
.span_6_of_12 {
	width: 49.2%; 
}
.span_6_of_12_2 {
	width: 49.2%; 
}
.span_5_of_12 {
	width: 40.73%; 
}
.span_4_of_12 {
	width: 32.26%; 
}
.span_3_of_12 {
	width: 23.8%;
}
.span_3_of_12_2 {
	width: 23.8%;
}
.span_2_of_12 {
	width: 15.33%; 
}
.span_1_of_12 {
	width: 6.86%; 
}

.col.about{
	margin-top: 1em;
}
.col blockquote{
	margin-left: 2em;
}



/* Smaller than 1000px wide */
@media only screen and (max-width: 1000px){
.four-columns {
		grid-template-columns: repeat(3, 1fr);
	}
	.four-columns.home {
		grid-template-columns: repeat(4, 1fr);
	}
.four-columns .newsletter_number_and_date{
	flex-direction: column;
}

/* Smaller than 750px wide */
@media only screen and (max-width: 750px){
	.js-cm-form{
	flex-direction: column;
}
.js-cm-form label{
	margin:auto;
}
.js-cm-form input{
	width: 75%;
	text-align: center;
	margin: auto;
	margin-bottom: 1em;
	border-bottom: 0.15em solid var(--primary_color);
}
	body{
	}

	h1, #mobile_menu{
		font-size: 17px;
	}
	.header{
		flex-direction: row;
		flex-wrap: wrap;
	}
	.logo{
		width: auto;
	}
	.navigation{
		width: 100%;
	}
	nav{
		text-align: center;
	}
	#myLinks {
		display: none;
	}
	#mobile_menu{
		display: block;
	}
	.accordion,
	.accordion-item-content,
	.accordion:hover .accordion-item-content {
    	height: 7em;
    	overflow: visible;
    	transition: none;
	}
	.three-columns .newsletter_number_and_date{
	flex-direction: column;
}
	.three-columns {
		grid-template-columns: repeat(2, 1fr);
	}
	.header, .primary{
		margin: 1em;
	}

}

/* Smaller than 600px wide, .cols go full width */
@media only screen and (max-width: 600px){
	.col { margin: 0 0 0 0}
	.span_12_of_12 {
		width: 100%; 
	}
	.span_11_of_12 {
		width: 100%; 
	}
	.span_10_of_12 {
		width: 100%; 
	}
	.span_9_of_12 {
		width: 100%; 
	}
	.span_8_of_12 {
		width: 100%; 
	}
	.span_7_of_12 {
		width: 100%; 
	}
	.span_6_of_12 {
		width: 60%;
	}
	.span_5_of_12 {
		width: 100%; 
	}
	.span_4_of_12 {
		width: 60%;
	}
	.span_3_of_12 {
		width: 40%; 
	}
	.span_2_of_12 {
		width: 40%; 
	}
	.span_1_of_12 {
		width: 100%; 
	}
	.two-columns{
		grid-template-columns: repeat(1, 1fr);
	}
	.four-columns {
		grid-template-columns: repeat(1, 1fr);
	}
	.four-columns.home {
		grid-template-columns: repeat(1, 1fr);
	}
	.four-columns .newsletter_number_and_date{

	flex-direction: column;
}
	 .products-info {

	width: calc(90vw);

}

.section{
	margin: 0 0;
}


.article.section{
	margin: 6em 0;
}


.col{
	margin: 0 0 6em 0 ;
}


.col.about{
	margin-top: 3em;
}

.col.mobile_collapse{
	margin:1em 0;
}

.section.quadrants{
	margin-top: 5em;
}

	.pis{
		width: calc(45vw);
	}



}

@media only screen and (max-width: 550px){
	.multi-column {
   -moz-column-count: 1;
   -moz-column-gap: 1.6;
   -moz-column-fill: auto;
   -webkit-column-count: 1;
   -webkit-column-gap: 1.6;
   -webkit-column-fill: auto;
   column-count: 1;
   column-gap: 1.6;
   column-fill: auto;
}
.three-columns {
		grid-template-columns: repeat(1, 1fr);
	}
}

@media only screen and (min-width: 1400px){
	.section {
		margin: 10em 0;
	}
}
@media only screen and (min-width: 1500px){
	body{
		width: 80%;
	}
}
@media only screen and (min-width: 1800px){
	body{
		width: 70%;
	}
}
@media only screen and (min-width: 2400px){
	body{
		width: 60%;
	}
}
@media only screen and (min-width: 3000px){
	body{
		width: 50%;
	}
}
