html {
	font-size: 100%;
	box-sizing: border-box;
}
*,
*:before, 
*:after {
	box-sizing: inherit;
	-webkit-font-smoothing: antialiased;
}
body {
	position: relative;
	font-size: 1em;
	line-height: 1.5625;
	-webkit-text-size-adjust: none;
}
a {
	text-decoration: none;
	outline: none;
}
a:hover,
a:focus {
	text-decoration: none;
	outline: none;
}
ul {
	list-style: none;
}
img {
	max-width: 100%; 
}
img:not(.no-auto-height) {
	height: auto;
}
body, button {
	font-family: 'Roboto', sans-serif;
}
h1, h2, h3, h4, h5, h6, button, .button{
	font-family: 'Montserrat', sans-serif;
}
h1, h2, h3, h4, h5, h6 { 
	line-height: 1.4;
	font-weight: 700;
	margin: 0.5em 0 0.8em 0;
}
h1:first-child, h2:first-child, h3:first-child, h4:first-child, h5:first-child, h6:first-child { 
	margin-top: 0; 
}
h1 {
	font-size: 1.5em;
	margin: 0.8em 0 0.8em 0;
	line-height: 1.2;
}
h2 {
	font-size: 1.2em;
	line-height: 1.3;
}
h3 {
	font-size: 1.1em;
}
h4 {
	font-size: 1.0em;
}
h5 {
	font-size: 1.0em;
}
h6 {
	font-size: 1.0em;
}
p {
	margin: 0 0 1.1em 0;
	font-size: .9375em;
}
.home-landing body {
	position: static;
}
.home-landing .home-wrap {
	text-align: center;
	position: static;
}
.home-landing .ri-grid {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	margin: 0;
	max-height: none;
}
.home-landing .home-wrap .intro {
	top: 22%; 
	padding: 0 2em;
}
.home-landing .button {
	margin-top: 2em;
	border: 3px solid #fff;
	color: #fff;
	background: none;
	padding: 0.7em 2em;
	font-size:20px;
}
.home-landing .button:active {
	border: 3px solid #fff;
}
.home-landing .button:hover {
	background: #fff; color: #333;
}
.home-wrap { 
	position: relative; 
}	
.home-wrap .intro { 
	position: absolute;
	top: 0;
	padding-top: 16%;
	width: 100%;
	z-index: 100;
	color: #fff; 
}
.home-wrap .ri-grid:after { 
	content: "";
	position: absolute;
	z-index: 10;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(17, 17, 17, 0.8);
}
.home-wrap .intro + * {
	margin: 2.2em auto 0 auto;
	max-width: 1060px;
}
.ri-grid{
	margin: 0 auto;
	position: relative;
	height: auto;
	width: 100%;
	background: #111;
}
.ri-grid ul {
	list-style: none;
	display: block;
	width: 100%;
	margin: 0;
	padding: 0;
}
.ri-grid ul:before,
.ri-grid ul:after{
	content: '';
	display: table;
}
.ri-grid ul:after {
    clear: both;
}
.ri-grid ul li {
	margin: 0;
	padding: 0;
	float: left;
	position: relative;
	display: block;
	overflow: hidden;
	-webkit-perspective: 400px;
	-ms-perspective: 400px;
	perspective: 400px;	
}
.ri-grid ul li a {
	display: block;
	outline: none;
	position: absolute;
	left: 0;
	top: 0; 
	width: 100%;
	height: 100%;
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility: hidden;
	-o-backface-visibility: hidden;
	-ms-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-transform-style: preserve-3d;
	-moz-transform-style: preserve-3d;
	-o-transform-style: preserve-3d;
	-ms-transform-style: preserve-3d;
	transform-style: preserve-3d;
	-webkit-background-size: 100% 100%;
	-moz-background-size: 100% 100%;
	background-size: 100% 100%;
	background-position: center center;
	background-repeat: no-repeat;
	background-color: #fff;
	-webkit-box-sizing: content-box;
	-moz-box-sizing: content-box;
	box-sizing: content-box;
}
.ri-grid-loading:after, .ri-grid-loading:before{
	display: none;
}
.ri-loading-image{
	display: none;
}
.ri-grid-loading {
	background-color: #fff;
	min-height: 120px;
	background: url(../images/bckg/loading.gif) 50% 50% no-repeat;
	background-size: 88px 8px;
}
.ri-grid-loading + .intro {
	display: none;
}
.intro {
	text-align: center;
}
.intro h2 {
	font-weight: 100;
	font-size: 1.2em;
	line-height: 1.4;
}
.intro h2 strong {
	font-weight: 700;
	letter-spacing: -1px;
}
.rotate-words {
	display: inline-block;
	min-width: 100px;
	min-height: 19px; 
	text-align: left;
}
.rotate-words span {
	position: absolute;
	opacity: 0;
	font-weight: 700;
	letter-spacing: -1px;
}
.rotate-words span.rotate-in {
	animation: rotateInWord .5s linear forwards;
	-webkit-animation: rotateInWord .5s linear forwards;
}
.rotate-words span.rotate-out {
	animation: rotateOutWord .5s linear forwards;
	-webkit-animation: rotateOutWord .5s linear forwards;
}
.rotate-words span:first-child {
	opacity: 1; 
}
.no-csstransforms3d .rotate-words span {
	display: none;
	opacity: 1;
}
@-webkit-keyframes rotateInWord {
	0% { opacity: 0; -webkit-transform: translateY(-30px); }
	100% { opacity: 1; -webkit-transform: translateY(0px); }
}
@-webkit-keyframes rotateOutWord {
	0% { opacity: 1; -webkit-transform: translateY(0px); }
	100% { opacity: 0; -webkit-transform: translateY(30px); }
}
@keyframes rotateInWord {
	0% { opacity: 0; transform: translateY(-30px); }
	100% { opacity: 1; transform: translateY(0px); }
}
@keyframes rotateOutWord {
	0% { opacity: 1; transform: translateY(0px); }
	100% { opacity: 0; transform: translateY(30px); }
}
@media screen and (min-width: 768px) {
	h1 {
		font-size: 2.40em;
	}
	h2 {
		font-size: 1.50em;
	}
	h3 {
		font-size: 1.20em;
	}
	h4 {
		font-size: 1.00em;
	}
	p {
		margin: 0 0 1.4em 0;
	}
	.home-wrap .intro { 
		padding-top: 12%;
	}
    .intro h2 {
         font-size: 2em;
	}
    .intro h2 strong, .rotate-words span {
        letter-spacing: -2px;
	}
    .rotate-words {
		min-width: 160px;
		min-height: 35px;
	}
}	
@media screen and (min-width: 992px) {
	/* INTRO */
	.home-wrap .intro { 
		padding-top: 5%;
		}
	.intro h2 { 
		font-size: 2.4em;
		}
		
	/* ROTATE WORDS */
    .rotate-words {
        min-width: 188px; min-height: 42px;
        }
	/* HOME LANDING */
	.home-landing .home-wrap .intro {
		top: 21%;
		}
}
/* DESKTOPS > 1400px */
@media screen and (min-width: 1400px) {
	
	/* INTRO */
	.home-wrap .intro { 
		padding-top: 6.2%;
		}
	.intro h2 { 
		font-size: 2.9em;
		}
		
	/* HOME LANDING */
	.home-landing .home-wrap .intro {
		top: 25%; 
		}	
		
	/* ROTATE WORDS */
    .rotate-words {
        min-width: 206px; min-height: 51px;
        }
}
/* DESKTOPS > 1560 */
@media screen and (min-width: 1560px) { 

		
	/* INTRO */
	.home-wrap .intro { 
		padding-top: 8.2%;
		}
	.home-landing .intro h2 { 
		font-size: 3.3em; letter-spacing: -1px;
		}
		
	/* ROTATE WORDS */
    .home-landing .rotate-words {
        min-width: 310px; min-height: 58px;
        }
		
}