
body {
	background-color: #fff;
	margin: 0;
	padding: 0;
}
html, body {
	height: 100%;
	margin: 0;
	padding: 0;
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
	
}

@font-face {
	font-family: 'NewJuneRegular';
	src: url('../fonts/20F59D_1_0.eot');
 	src: url('../fonts/20F59D_1_0.eot?#iefix') format('embedded-opentype'),
		 url('../fonts/20F59D_1_0.woff') format('woff'),
		 url('../fonts/20F59D_1_0.ttf') format('truetype');
	font-weight: normal;
	font-variant: normal;
	font-style: normal;
}
@font-face {
	font-family: 'NewJuneMedium';
	src: url('../fonts/326017_0_0.eot');
	src: url('../fonts/326017_0_0.eot?#iefix') format('embedded-opentype'),
		 url('../fonts/326017_0_0.woff2') format('woff2'),
		 url('../fonts/326017_0_0.woff') format('woff'),
		 url('../fonts/326017_0_0.ttf') format('truetype'),
	font-weight: normal;
	font-variant: normal;
	font-style: normal;
}
@font-face {
	font-family: 'NewJuneSemibold';
	src: url('../fonts/326017_1_0.eot');
	src: url('../fonts/326017_1_0.eot?#iefix') format('embedded-opentype'),
		 url('../fonts/326017_1_0.woff2') format('woff2'),
		 url('../fonts/326017_1_0.woff') format('woff'),
		 url('../fonts/326017_1_0.ttf') format('truetype'),
 	font-weight: normal;
	font-variant: normal;
	font-style: normal;
}
@font-face {
	font-family: 'NewJuneBold';
	src: url('../fonts/20F59D_0_0.eot');
	src: url('../fonts/20F59D_0_0.eot?#iefix') format('embedded-opentype'),
		 url('../fonts/20F59D_0_0.woff') format('woff'),
		 url('../fonts/20F59D_0_0.ttf') format('truetype');
	font-weight: normal;
	font-variant: normal;
	font-style: normal;
}

h1, h2, h3, h4, h5 {
	font-family: NewJuneSemibold;
	letter-spacing: 0;
	text-shadow: none;
	font-weight: normal;
}
h1 {
	color: #c0c0c0; 
	text-align: left;
	font-size: 24pt;
	letter-spacing: 0px;
}
h4 {
	color: #c0c0c0; 
	text-align: left;
	font-size: 14pt;
	letter-spacing: 0px;
}
p {
	font-family: NewJuneRegular;
	font-weight: normal;
	text-shadow: none;
}
a:hover, a:visited, a:link, a:active {
	font-weight: normal;
	font-variant: normal;
	font-style: normal;
	text-shadow: none;
	text-decoration: none !important;	
}

.header {
	position: absolute;
	top: 0;
	z-index: 1000;
	width: 100%;
	background: #f0f0f0;
	height: 75px;
}
.header-renlogo {
	position: absolute;
	top: 16px;
	left: 35px;
	width: 50px;
	height: 44px;
	background: url(../../images/logos/renlogo-50px.svg) no-repeat 0 0;
	cursor: pointer;
}
.header-masthead {
	position: absolute;
	top: 26px;
	right: 34px;
	width: 219px; /* scales up to 230x26 on tablets */
	height: 25px; /* scales up to 230x26 on tablets */
	background: url(../../images/logos/ren-and-company-logo.svg) no-repeat 0px 0px;
}

img {
	max-width: 100%;
}

.lazyload {
	opacity: 0;
}

.lazyloaded {
	opacity: 1;
	transition: all 500ms;
}


/* IMAGE WALL */

.image-wall {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	margin: 0px 0px 0px 0px;
	padding: 95px 0px 0px 0px;
	overflow: auto;
	overflow-y: scroll;
	-webkit-overflow-scrolling: touch;
}
#imagewallcell {
    max-width: 100%;
    margin: 0 20px; /* center aligned */
    padding: 0;
    padding-bottom: 80px;
    font-size: 0; /* keep on zero, or breaks imagewall */
    list-style: none;
    background-color: #fff;
}
#imagewallcell li {
    display: inline-block;
    width: 25%;
    vertical-align: middle;
    box-sizing: border-box;
    margin: 0;
    padding: 15px;
}
        
/* The wrapper for each item */
.imagewallcell-cell {
    display: block;
    position: relative;
    overflow: hidden;
    background-color: #f0f0f0;
}
        
/* If have the image layer */
.imagewallcell-img {
    display: block;
    width: 100%;
    border: none;
    transform: scale(1);
    transition: all 1s;
}
        
/* If have the overlay layer */
.imagewallcell-overlay {
    position: absolute;
    display:block;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    background: #000;
    background-size: 50px 50px;
    opacity: 0;
    filter: alpha(opacity=0);/*For IE6 - IE8*/
    transition: all 0.6s;
}
#imagewallcell li:hover .imagewallcell-overlay {
    opacity: 0.4;
}

/* captions */
.imagewallcell-text {
    display: block;
    display: table-cell;
    vertical-align: bottom;
    padding: 0 30px;
    box-sizing: border-box;
    position: absolute;
    left: 0;
    width: 100%;
    text-align: center;
    font-size: 12pt;
    font-family: 'NewJuneSemibold';
    font-weight: normal !important;
	font-variant: normal;
	font-style: normal;
	text-shadow: none;
	text-decoration: none;
    top: 70%;
    color: white;
    opacity: 0;
    filter: alpha(opacity=0);/*For older IE*/
    transform: translateY(40px);
    transition: all .3s;
}
#imagewallcell li:hover .imagewallcell-text {
    transform: translateY(0px);
    opacity: .99;
}

@media (max-width: 3600px) {
    #imagewallcell li {
        width: 20%;
    }
    .imagewallcell-text {
    font-size: 13pt;
	}
}

@media (max-width: 1600px) {
    #imagewallcell li {
        width: 25%;
    }
    .imagewallcell-text {
    font-size: 11pt;
	}
}

@media (max-width: 1080px) {
    #imagewallcell li {
        width: 33.33%;
    }
    .imagewallcell-text {
    font-size: 11pt;
	}
}

@media (max-width: 800px) {
    #imagewallcell li {
        width: 50%;
    }
    .imagewallcell-text {
    font-size: 11pt;
	}
}

@media (max-width: 550px) {
    #imagewallcell li {
        width: 100%;
    }
    .imagewallcell-text {
    font-size: 12pt;
	}
}




/* TWEAK JQM DEFAULT STYLES */

/* prevents flickering */
.ui-page {
  -webkit-backface-visibility: hidden; 
}
.ui-overlay-a,
.ui-page-theme-a,
.ui-page-theme-a .ui-panel-wrapper {
	background-color: #ffffff /*{a-page-background-color}*/;
	border-color: #ffffff /*{a-page-border}*/;
	color: #333 /*{a-page-color}*/;
	text-shadow: 0 /*{a-page-shadow-x}*/ 1px /*{a-page-shadow-y}*/ 0 /*{a-page-shadow-radius}*/ 	#f3f3f3 /*{a-page-shadow-color}*/;
}


/* iOS - fades instead of slides cuz Apple broke it */
@supports (-webkit-overflow-scrolling: touch) {

.slide.out{
    opacity: 0;
    -webkit-animation-duration: 1000ms !important;
    -webkit-animation-name: fadeout !important;
    -moz-animation-duration: 1000ms !important;
    -moz-animation-name: fadeout !important;
    animation-duration: 1000ms !important;
    animation-name: fadeout !important;
}
.slide.in{
    opacity: 1;
    -webkit-animation-duration: 600ms !important;
    -webkit-animation-name: fadein !important;
    -moz-animation-duration: 600ms !important;
    -moz-animation-name: fadein !important;
    animation-duration: 600ms !important;
    animation-name: fadein !important;
}
}

/* everything else that's NOT iOS - slides like it's supposed to */
@supports not (-webkit-overflow-scrolling: touch) {
  /* CSS for other than iOS devices */ 
 
.slide.out,.slide.in{
	-webkit-animation-timing-function:ease-out;
	-webkit-animation-duration:500ms;
	-moz-animation-timing-function:ease-out;
	-moz-animation-duration:500ms;
	animation-timing-function:ease-out;
	animation-duration:500ms;
}
}


.slideup.out{
	-webkit-animation-name:fadeout;
	-webkit-animation-duration:100ms;
	-moz-animation-name:fadeout;
	-moz-animation-duration:100ms;
	animation-name:fadeout;
	animation-duration:100ms;
}
.slideup.in{
	-webkit-transform:translateY(0);
	-webkit-animation-name:slideinfrombottom;
	-webkit-animation-duration:250ms;
	-moz-transform:translateY(0);
	-moz-animation-name:slideinfrombottom;
	-moz-animation-duration:250ms;
	transform:translateY(0);
	animation-name:slideinfrombottom;
	animation-duration:250ms;
}

.slidedown.out{
	-webkit-animation-name:fadeout;
	-webkit-animation-duration:100ms;
	-moz-animation-name:fadeout;
	-moz-animation-duration:100ms;
	animation-name:fadeout;
	animation-duration:100ms;
}
.slidedown.in{
	-webkit-transform:translateY(0);
	-webkit-animation-name:slideinfromtop;
	-webkit-animation-duration:250ms;
	-moz-transform:translateY(0);
	-moz-animation-name:slideinfromtop;
	-moz-animation-duration:250ms;
	transform:translateY(0);
	animation-name:slideinfromtop;
	animation-duration:250ms;
}
@supports not (-webkit-overflow-scrolling: touch) {
.project-slide.out {
	-webkit-animation-timing-function:ease-out;
	-webkit-animation-duration:1ms;
	-moz-animation-timing-function:ease-out;
	-moz-animation-duration:1ms;
	animation-timing-function:ease-out;
	animation-duration:1ms;
}
}

/* hide the fucking JQM loader */
.ui-icon-loading,
.ui-loading .ui-loader,
.ui-loader,
.ui-loader-default,
.ui-loader-verbose,
.ui-loader-default h1,
.ui-loader-verbose h1,
.ui-loader .ui-icon-loading,
.ui-loader-verbose .ui-icon-loading,
.ui-loader-textonly,
.ui-loader-fakefix {
	display: none;
}



/* header */

.header-nav {
	position: absolute;
	top: 0px;
	left: 105px;
	z-index: 1001;
}
.header-nav a {
	outline: none;
	color: #c0c0c0 !important;
	text-decoration: none;
	font-family: NewJuneSemibold;
	letter-spacing: 0;
	font-size: .8em;
	text-align: right !important;
	display: inline-block;
	height: 50px;
	padding-top: 29px;
}
.header-nav a:hover,
.header-nav a:focus {
	outline: none;
	color: #c0c0c0 !important;
}
.header-nav a::before,
.header-nav a::after {
	color: #c0c0c0 !important;
	display: inline-block;
	opacity: 0;
	-webkit-transition: -webkit-transform 0.3s, opacity 0.2s;
	-moz-transition: -moz-transform 0.3s, opacity 0.2s;
	transition: transform 0.3s, opacity 0.2s;
}
.header-nav a::before {
	color: #c0c0c0 !important;
	font-size: 1.1em;
	margin-right: 10px;
	content: '[';
	-webkit-transform: translateX(20px);
	-moz-transform: translateX(20px);
	transform: translateX(20px);
}
.header-nav a::after {
	font-size: 1.1em;
	color: #c0c0c0 !important;
	margin-left: 10px;
	content: ']';
	-webkit-transform: translateX(-20px);
	-moz-transform: translateX(-20px);
	transform: translateX(-20px);
}
.header-nav a:hover::before,
.header-nav a:hover::after, 
.header-nav a:focus::before,
.header-nav a:focus::after {
	color: #c0c0c0 !important;
	opacity: 1;
	-webkit-transform: translateX(0px);
	-moz-transform: translateX(0px);
	transform: translateX(0px);
}



/* project page container */

.project-block {
	width: 100%;
	margin: 75px auto 55px auto !important;
	position: absolute !important;
	top: 0 !important;
	bottom: 0 !important;
	right: 0 !important;
	left: 0 !important;
	padding: 0 !important;
	overflow: hidden;
	background: #ffffff;
}						
.project-container {
	position: relative;
	top: 50%;
	transform: translateY(-50%);
	max-width: 1600px !important;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	margin-left: auto;
	margin-right: auto;
	padding-bottom: 10vh;
	background: #ffffff;
	width: 100% !important;
	padding-bottom: 5vh;
}

.project-nav {
    width: 100%;
    text-align: center;
    background-color: transparent;
    overflow: auto;
    margin-top: 0px;
    padding-top: 0px;
}
.project-nav a {
	display: inline-block;
	width: 9px;
	height: 9px;
	margin: 0 3px;
	border: solid 10px #fff;
	border-radius: 50%;
	background-color: #e8e8e8;
	cursor: pointer;
	-webkit-transition: opacity 200ms ease;
	transition: opacity 200ms ease;
}
.project-nav a:hover {
    background-color: #c0c0c0;
}
.project-nav .active {
    background-color: #c0c0c0;
}

.project-close {
	position: absolute;
	height: 25px;
	width: 25px;
	top: 30px;
	right: 35px;
	z-index: 2002;
	overflow: hidden;
	animation: XfadeIn .75s;
}
@keyframes XfadeIn {
  0% {opacity:0;}
  85%  {opacity:0;}
  100% {opacity:1;}
}
.project-close a {
	display: block;
	background: transparent url(../../images/icons/closeX_25.svg) no-repeat 0px 0px;
	height: 25px;
	width: 55px;
	overflow: hidden;
}
.project-close a:hover {
	background-position: -30px 0px;
}
.project-footer {
	position: fixed;
	bottom: 0;
	z-index: 4001;
	width: 100%;
	background-color: #f0f0f0;
	height: 60px;
	display: table;
}
.project-info {
	display: table-cell;
	vertical-align: middle;
	padding-left: 35px;
}
.project-info p {
	font-family: NewJuneMedium;
	font-size: 10pt;
	letter-spacing: 0;
	color: #c0c0c0;
	text-align: left;
	text-shadow: none;
	text-decoration: none;
}
.project-info .project-title {
	font-family: NewJuneSemibold;
	font-size: 10pt;
	text-align: left;
}
.project-info .info-nobreaks {
	font-size: 13pt;
	font-family: NewJuneMedium;
}
.project-info .info-breaks {
	display: none;
}

.project-container div.image { 
	pointer-events: none;
}

.image { 
	position: relative; 
	width: 100%; 
	height: 0; 
	padding-top: 60.25%; 
	background: rgba(0, 0, 0, 0); 
	margin: auto;
}
.image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}


/* about page default styles */

.about-ren {
	max-width: 800px;
	margin: 125px auto 0 auto;
	padding: 0 35px;
	background: white;
	color: #c0c0c0; 
}
.about-ren h1 {
	font-size: 27pt;
}
.about-ren h4 {
	font-size: 15.5pt;
	letter-spacing: .3px;
	line-height: 150%;
}
.p-wide {
	display: block;
}
.p-wide p {
	font-size: 15.5pt;
	letter-spacing: .2px;
	line-height: 145%;
}
.p-tablet {
	display: none;
}
.p-mobile {
	display: none;
}


/* contact page and form default styles */

.contact-form {
	max-width: 800px;
	margin: 125px auto 0 auto;
	padding: 0 35px;
	font-family: NewJuneMedium;
	text-shadow: none;
	font-size: 17pt;
}
.contact-form h1 {
	margin-bottom: 1px;
	font-size: 27pt;
}
#form {
	width: 100%;
	margin-top: 14px;
}

/*Error/Success*/
#error,#success {
	font-size: 0.7em;
	display: none;
	background: transparent;
	padding: 1px 3px 1px 3px;
	margin-bottom: 5px;
}
#error {
	color: #ff0000;
}
#success {
	color: #009d00;
}


/*Form*/
#easyform {
	width: 100%;
	margin: auto;
}
#easyform label {
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: 1px;
}
#easyform .input {
	width: 100%;
	float: left;
	margin-bottom: 15px;
}
#easyform .textarea {
	margin-bottom: 15px;
}
#easyform .last {
	margin-bottom: 15px;
}
#easyform input.text, #easyform textarea {
	font-family: NewJuneRegular;
	font-size: 12pt;
	color: #808080; 
	padding: 10px 0 7px 10px;
	background-color: #f6f6f6; 
	border: 1px solid transparent;
	border-radius: 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	width: 100%;
	float: left;
	outline: none;
}
#easyform input[type=text]:focus, #easyform input[type=tel]:focus, #easyform textarea:focus {
	background-color: #ffffff; 
	border: 1px solid #c0c0c0;
	-webkit-transition: all 0.2s ease;
	-moz-transition: all 0.2s ease;
	-o-transition: all 0.2s ease;
	transition: all 0.2s ease;
}
#easyform input:hover, #easyform textarea:hover {
	border: 1px solid #c0c0c0;
	-webkit-transition: all 0.2s ease;
	transition: all 0.2s ease;
}
#easyform textarea {
	height: 200px;
}
#easyform span {
	color:red;
}
#easyform .verification {
	width: 100%;
	float: left;
}
#easyform #verify_image {
	width: 85px;
	height: 35px;
	float: left;
}
#easyform .refresh {
	width: 35px;
	height: 35px;
	display: block;
	float: left;
	margin: 0;
	border: 0;
}
#easyform #verify {
	font-family: NewJuneRegular;
	font-size: 16px;
	width: 100px;
	height: 35px;
	background: #f6f6f6;
	float: left;
	margin: 0;
	padding: 8px;
	color: #808080; 
	text-align: center;
}
#easyform #verify:focus {
	background-color: #ffffff; 
	border: 1px solid #c0c0c0;
}
#easyform button {
	font-family: NewJuneRegular;
	font-size: 16px;
	float: right;
	display: block;
	width: 100px;
	height: 35px;
	background: #f6f6f6;
	padding: 7px 20px 7px 20px !important;
	color: #c0c0c0;
	text-align: center;
	margin: 0;
	border: 0;
	-webkit-transition: all 0.2s ease;
	-moz-transition: all 0.2s ease;
	-o-transition: all 0.2s ease;
	transition: all 0.2s ease;
	cursor: pointer;
}
#easyform button:hover {
	background-color: #c0c0c0;
	color: #ffffff;
}



.videobox {
	position: relative; 
	width: 85%; 
	height: 0; 
	padding-top: 60.25%; 
	background: #ffffff; 
	margin: auto;
}


/* -- MEDIA QUEERS
------------------------------------------------------------- */


/* tweak project size/centering for desktop screen heights */

@media screen and (min-aspect-ratio: 5/4) {
	.project-container {
	width: 100% !important;
	padding-bottom: 4vh;
	}
}
@media screen and (min-aspect-ratio: 4/3) {
	.project-container {
	width: 82% !important;
	padding-bottom: 4vh;
	}
}
@media screen and (min-aspect-ratio: 8/5) {
	.project-container {
	width: 75% !important;
	padding-bottom: 4vh;
	}
}
@media screen and (min-aspect-ratio: 16/9) {
	.project-container {
	width: 58% !important;
	padding-bottom: 4vh;
	}
}


/* mobile & tablet tweaks */


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

	.project-nav a {
	width: 8px;
	height: 8px;
	}
}

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

	.project-nav a {
	width: 8px;
	height: 8px;
	}
}

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

	.header-nav {
	left: 100px;
	}
	.header-nav a::before {
	margin-right: 8px;
	}
	.header-nav a::after {
	margin-left: 8px;
	}
	.project-nav a {
	width: 7px;
	height: 7px;
	}
	.project-info {
	padding-left: 20px;
	}
	.project-info .info-nobreaks {
	display: none;
	}
	.project-info .info-breaks {
	display: inline; 
	}
	.project-close {
	right: 25px;
	height: 20px;
	width: 20px;
	top: 25px;
	}
	.project-close a {
	height: 20px;
	width: 45px;
	}
	.project-close a:hover {
	background-position: -25px 0px;
	}
}

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

	#imagewallcell {
    margin: 0 5px;
	}
	.header {
	width: 100%;
	left: 0;
	}
	.header-renlogo {
		left: 20px;
	}
	.header-masthead {
		display: none;
	}
	.header-nav {
		left: 85px;
	}
	.project-container {
	width: 100% !important;
	padding-bottom: 5vh;
	}
	.project-nav {
	margin-top: 30px;
	}
	.project-nav a {
	display: inline-block;
	width: 7px;
	height: 7px;
	margin: 0 3px;
	}
	.project-footer {
	height: 75px;
	position: absolute;
	bottom: 0;
	}
	.project-info {
	padding-left: 20px;
	}
	.project-info .info-nobreaks {
	display: none;
	}
	.project-info .info-breaks {
	display: inline; 
	}
	.project-close {
	right: 20px;
	height: 20px;
	width: 20px;
	top: 25px;
	}
	.project-close a {
	height: 20px;
	width: 45px;
	}
	.project-close a:hover {
	background-position: -25px 0px;
	}
	.legal-short {
	display: none;
	}
	.about-ren {
	margin: 125px 20px 0 20px;
	padding: 0;
	}
	.contact-form {
	margin: 125px 20px 0 20px;
	padding: 0;
	}
	.contact-form h1 {
	margin-bottom: 1px;
	font-size: 1.25em;
	}
	.contact-form h4 {
	font-size: 12pt;
	}
	.contact-form p {
	font-size: 12pt;
	}
	#error {
	font-size: 10pt;
	display: none;
	background: transparent;
	color: #e74c3c;
	padding: 0;
	margin-bottom: 0;
	}
	#success {
	font-size: 10pt;
	display: none;
	background: transparent;
	color: #2ecc71;
	padding: 0;
	margin-bottom: 0;
	}
	#easy .input {
	margin-bottom: 5px;
	}
	#easy .textarea {
	margin-bottom: 5px; 
	}
	#easy .last {
	margin-bottom: 5px; 
	}
	#easy input.text, 
	#easy textarea {
	font-size: 12pt;
	padding: 8px 0 4px 10px;
	}
	#easy textarea {
	height: 150px; 
	}
	#easy button {
	margin-top: 8px;
	}
}



/* about page - type break control */

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

	.about-ren {
		max-width: 800px;
	}
	.about-ren h1 {
		font-size: 27pt;
	}
	.about-ren h4 {
		font-size: 2.75vw;
	}
	.p-wide {
		display: none;
	}
	.p-tablet {
		display: block;
	}
	.p-mobile {
		display: none;
	}
	.p-tablet p {
		font-size: 2.75vw;
	}
}

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

	.about-ren {
		max-width: 640px;
	}
	.about-ren h1 {
		font-size: 24pt;
	}
	.about-ren h4 {
		font-size: 3vw;
	}
	.p-wide {
		display: none;
	}
	.p-tablet {
		display: block;
	}
	.p-mobile {
		display: none;
	}
	.p-tablet p {
		font-size: 3vw;
	}
	.contact-form h1 {
	font-size: 24pt;
	}
}

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

	.about-ren {
		max-width: 480px;
	}
	.about-ren h1 {
		font-size: 22pt;
	}
	.about-ren h4 {
		font-size: 4vw;
	}
	.p-wide {
		display: none;
	}
	.p-tablet {
		display: none;
	}
	.p-mobile {
		display: block;
	}
	.p-mobile p {
		font-size: 4vw;
	}
	.hide-me {
		display: none;
	}
	.contact-form h1 {
	font-size: 22pt;
	}
}












