#intro-page {
	background-color: #CCE5E2; /*green*/
	color: #555451; /*gray*/
	z-index: 1000;
	position: relative;
}
#intro-page .links {
	position: absolute;
	right: 10px;
	top: 10px;
}
#intro-page .links a{
	padding: 5px;
}
#intro-page table {
	vertical-align: bottom;
	text-align: center;
	transition: opacity 1s;
	width: 100%;
}
#intro-page.intro table {
	opacity: 0;
}
#intro-page .secondary-row {
	height: 65%;
}
#intro-page .secondary-row td{
	vertical-align: bottom;
}
#intro-page .get-email-row {
	vertical-align: middle;
	/* height: 45%; */
}
#intro-page .chevron-row {
	height: 10%;
}
#intro {
	transition: top 1s;
	position: absolute;
	top: 50%;
	margin-top: -20px;
	width: 100%;
	font-size: 40px;
	opacity: 0;
	text-align: center;
}
#text {
	display: inline-block;
	max-width: 940px;
	width: 100%;
	text-align: left;
}
#text > div {
	display: inline;
}
#intro-page #intro {
	transition: opacity 1s;
}
#intro-page.intro #intro {
	opacity: 1;
}
.cursor {
	display: inline-block;
	color: #555451; /*gray*/
}
.cursor > div {
	width: 0px;
	position: relative;
	left: -3px;
}
.secondary {
	font-size: 40px;
    padding: 1px 1.2em;
    box-sizing: border-box;
}
@media screen and (max-width: 500px){
	.secondary {
		font-size: 7vw;
	}
	.get-email input {
		font-size: 4.8vw;
	}
}
.secondary h3 {
	font-size: 150%;
	font-weight: bold;
}
.secondary i {
	font-style: italic;
	font-weight: inherit;
}
.secondary p {

}
#intro-page > div {
	transition: opacity 1s;
}
.skip {
	transition: opacity .5s;
	padding: 10px;
	font-size: 16px;
	position: absolute;
	right: 0px;
	bottom: 0px;
	opacity: 0;
	z-index: 2000;
	cursor: pointer;
}
#intro-page.intro .skip{
	opacity: 1;
}
@keyframes fade {
	from {opacity: 0;}
	to {opacity: 1;}
}
@-webkit-keyframes fade {
	from {opacity: 0;}
	to {opacity: 1;}
}
.chevron {
	/*position: absolute;*/
	/*bottom: 10px;*/
	/*width: 100%;*/
	text-align: center;
	font-size: 36px;
	-webkit-animation: fade 2s linear 0s infinite alternate both;
	animation: fade 2s linear 0s infinite alternate both;
}
#intro-page.intro .chevron {
	-webkit-animation: none;
	animation: none;
}

.scroller {
	display:inline-block;
	height: 57px;
	overflow: hidden;
	white-space: nowrap;
	position: relative;
	top: -4px;
}
@media screen and (max-width: 640px){
	.scroller { 
		height: calc(7.65625vw + 8px);
	}
	#intro {
		width: 93.75vw;
		margin: 0 3.125vw;
		/*margin-left: -46.875vw;*/
	}
}
.scroller > span {
	display:inline-block;
}
@keyframes scroller {
    0%  {top:0px;}
    10% {top:0px;}
    20% {top:-100%;}
    30% {top:-100%;}
    40% {top:-200%;}
    100% {top:-200%;}
}
@-webkit-keyframes scroller {
    0%  {top:0px;}
    10% {top:0px;}
    20% {top:-100%;}
    30% {top:-100%;}
    40% {top:-200%;}
    100% {top:-200%;}
}
.scroller > span {
	position: relative;
    -webkit-animation: scroller 6s ease 0s both;
    	    animation: scroller 6s ease 0s both;
}
.scroller .item {
	background-color: #E5C411;
	/*height: 49px;*/
	padding: 3px;
	border-radius: 5px;
	margin: 1px;
	float: left;
}
@media screen and (max-width: 940px){
	#text {
		text-align: center;
	}
	#text > div {
		margin-top: 10px;
		display: block;
	}
	.scroller .item {
		float: none;
		display: inline-block;
	}
}
