@charset "UTF-8";
/* living pixels  web site CSS document developed by Gardenia Gonzalez Gil */

/* global styles */

* {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	box-sizing: border-box;
	overflow-x: hidden;
}
html {
	min-height: 100%;
}

body {
	font-family: 'Source Sans Pro', sans-serif;
	font-weight: 400;
	color: #16284C;
	background-color: #d4d7df;
}

ul {
	list-style: none;
}

a {
	text-decoration: none;
}

.hiddenup {
	position: absolute;
	top: -10000px;
}

.hiddenleft {
	text-indent: -10000px;
}

.wrapper {
	margin: 0px auto;
	max-width: 1200px;
}

.grid {
	display: grid;
	grid-gap: 10px;
	grid-template-columns: 1fr 1fr;
	align-content: center;
	justify-content: center;
	margin: 30px 0px;
}

/* header */

#mainHeader {
	height: 111px;
	width: 100%;
	border-bottom: #eeedef 1px solid;
    position: relative;
	background-color: #16284C;
}

/* main navigation */

#mainNav ul {
	height: 110px;
    margin: 0 50px;
    display: grid;
	grid-template-columns: 250px 1fr repeat(4, 74px);
	grid-template-rows: 100px;
	align-content: center;
	text-align: center;
  }

#mainNav ul li {
	height: 100px;
	line-height: 100px;
	overflow: hidden;
  }

  #mainNav ul li#logo {
    background: url(../_images/logo.png) no-repeat center center;
  }

#mainNav li a {
	display: block;
	color: #f5f5f6;
	transition: all .1s ease-in-out;
}

#mainNav li a:hover {
	margin-top: 10px;
}

#mainNav li a.current, #mainNav li a.currentm {
	color: #F64040;
}

#mainNav li a.current:hover {
	margin-top: 0;
	cursor: default;
}

/* hamburger navigation */

#hamburger {
	position: absolute;
	right: 20px;
	top: 42px;
}

#hamburgerMenu{
	height:100%;
	width:0;
	position:fixed;
	z-index:1;
	top:0;
	right:0;
	background: linear-gradient(#16284C 110px, rgba(33,62,117,0.9) 110px 100%);
	padding-top:110px;
	transition:0.5s;
	overflow: hidden;
}
  
#hamburgerMenu li {
	border-bottom: 1px solid rgb(158, 188, 228);
}

#hamburgerMenu a{
	padding:25px 25px 25px 50px;
	text-decoration:none;
	font-size: 1.2rem;
	color:#f5f5f6;
	display:block;
	transition:0.3s;
}

#hamburgerMenu a#hamburgerClose:hover {
	background-color: transparent;
}
  
#hamburgerMenu a:hover{
	color:#16284C;
	background-color: rgb(158, 188, 228);
}
  
#hamburgerMenu #hamburgerClose{
	position:absolute;
	top:32px;
	right:20px;
}

#hamburgerMenu h2 {
	color: #f5f5f6;
	font-size: 1rem;
	font-weight: 300;
	line-height: 1.5;
	padding: 30px;
}

/* scroll navigation */

.imagesNav {
	margin: 50px auto 50px auto;
	display: flex;
	justify-content: center;
}

.imagesNav li {
	margin-right: 5px;
	text-align: center;
	overflow: hidden;
}
.imagesNav li:first-child {
	padding: 12px 0 0 0;
}

.imagesNav a {
	display: inline-block;
	height: 100%;
	outline: none;
	color: #fff;
	padding: 7px;
	border: 1px solid #97a1b4;
	background-color: #97a1b4;
	border-radius: 6px;
	transition: all 0.4s ease-in-out;
}

.imagesNav a:hover {
	color: #16284C;
	background-color:#f5f5f6;
}

/* home content */

section#homeSlides {
	position: relative;
	height: 90vh;
	max-width: 1200px;
	background: linear-gradient(#eeedef 250px, #737c8e 100%);
}
  
.slide {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	transition: opacity 0.4s ease-in-out;
	text-align: center;
}
  
.shown {
	opacity: 1;
}

.homeTitle {
	padding-top: 5px;
	font-size: 4.8rem;
	font-weight: 300;
	color: #eeedef;
	letter-spacing: 0.02em;
}

.homeText {
	padding: 40px 55px;
	text-align: left;
	color: #eeedef;
}
.homeText h2 {
	font-size: 1.2rem;
	font-weight: 400;
}

.homeFigs {
	position: absolute;
	left: 55px;
	bottom: 5em;
	font-size: 1.1rem;
	color: #eeedef;
	font-weight: 300;
}
.homeFigsDevices {
	position: absolute;
	left: 20px;
	bottom: 5em;
	font-size: 0.9rem;
	color: #eeedef;
	font-weight: 300;
}

/* Background Images */
 
.slide:first-child {
	background: url(../_images/macrophageHome.jpg) no-repeat center center/cover;
}

.slide:nth-child(2) {
	background: url(../_images/neutrophilHome.jpg) no-repeat center center/cover;
}

.slide:nth-child(3) > .homeTitle {
	background-color: rgba(0, 0, 0, .5);
}

.slide:nth-child(3) {
	background: url(../_images/neuronHome.jpg) no-repeat center center/cover;
}

.slide:nth-child(4) {
	background: url(../_images/microglyaHome1.jpg) no-repeat center center/cover;
}

.buttons button#next {
	position: absolute;
	top: 50%;
	right: 15px;
}
  
.buttons button#prev {
	position: absolute;
	top: 50%;
	left: 15px;
}
  
.buttons button {
	border: 2px solid #fff;
	background-color: transparent;
	color: #fff;
	cursor: pointer;
	padding: 13px 16px;
	border-radius: 50%;
	outline: none;
	font-size: 1rem;
  }
  
  .buttons button:hover {
	background-color: #fff;
	color: #16284C;
  }

/* info content */

#infoPage {
	max-width: 1150px;;
	background: url(../_images/vesicleInfo1.jpg) no-repeat;
	background-position: center -20px;
	background-size: initial;
	position: relative;
 	display: flex;
	justify-content: flex-end;
}

#info {
	width: 70%;
	padding: 1% 4% 40% 4%;
	font-size: 1.1rem;
	font-weight: 400;
	line-height: 1.5;
	background-color: rgba(255, 255, 255, .3);
}

#info h1 {
	font-size: 4.4rem;
	font-weight: 300;
	color: rgba(46, 87, 161, 0.7);
	letter-spacing: 0.02em;
}

#info h2 {
	font-size: 1.4rem;
	font-weight: 700;
	padding-bottom: 10px;
	letter-spacing: 0.02em;
}

#info p {
	padding-bottom: 10px;
}


/* work content */

#workCards {
	position: relative;
	max-width: 1200px;
	padding-bottom: 80px;
}

#workCards h2 {
	margin: 50px 0px 20px 50px;
	font-size: 1.5rem;
	font-weight: 600;
}

#workCards h3 {
	font-size: 1.3rem;
	font-weight: 600;
	text-align: center;
	margin-top: 10px;
}

#workCards p {
	text-align: center;
	margin-top: 5px;
}

.workGrid {
	max-width: 1200px;
	display: grid;
	grid-template-columns: repeat(3, 320px);
	grid-gap: 20px;
	justify-content: center;
	padding: 5px 0px 15px 0px;
}

.card {
	height: 260px;
	width: 320px;
	border: 1px solid #97a1b4;
	background-color:#f5f5f6;
	transition: all .2s ease-in-out;
}

.card:hover {
	box-shadow: 0px 3px 6px 0px #7f7f8a;
	transform: translateY(5px);
}

.workGrid .card a {
	display: block;
	height: 174px;
	width: 310px;
	margin: 4px;
}

#asthmaThumb {
	background: url(../_images/asthmaThumb.jpg) no-repeat center;
}

#msThumb {
	background: url(../_images/msThumb.jpg) no-repeat center;
}

#crohnThumb {
	background: url(../_images/crohnThumb.jpg) no-repeat center;
}

#afffThumb {
	background: url(../_images/afffThumb.png) no-repeat center;
	border: 1px solid #97a1b4;
}

#tftmThumb {
	background: url(../_images/tftmThumb.jpg) no-repeat center;
}

#ccr1Thumb {
	background: url(../_images/ccr1Thumb.jpg) no-repeat center;
}

#eThumb {
	background: url(../_images/emergenceThumb.jpg) no-repeat center;
}

#dubsThumb {
	background: url(../_images/dubsThumb.jpg) no-repeat center;
	border: 1px solid #97a1b4;
}

#zfpThumb {
	background: url(../_images/ZFPthumb.png) no-repeat center;
	border: 1px solid #97a1b4;
}

#cornThumb {
	background: url(../_images/cornThumb.png) no-repeat center;
	border: 1px solid #97a1b4;
}

#stThumb {
	background: url(../_images/st400Thumb.png) no-repeat center;
}

#emm1Thumb {
	background: url(../_images/emm1Thumb.png) no-repeat center;
	border: 1px solid #97a1b4;
}

#emm2Thumb {
	background: url(../_images/emm2Thumb.png) no-repeat center;
	border: 1px solid #97a1b4;
}

#tem10Thumb {
	background: url(../_images/tem2010Thumb.png) no-repeat center;
}

#tem9Thumb {
	background: url(../_images/tem2009Thumb.jpg) no-repeat center;
}

#gaudiThumb {
	background: url(../_images/gaudiThumb.jpg) no-repeat center;
}

#tpThumb {
	background: url(../_images/typeThumb.png) no-repeat center;
	border: 1px solid #97a1b4;
}

/*  movies */

section#showcase {
	padding-bottom: 100px;
	max-width: 1200px;
	display: flex;
	flex-direction: column;
}

#showContainer {
	margin: 0 auto;
	padding-left: 2px;
}

#video_1 {
	margin: 30px 0px;
}
.video-js {
	background-color: #fff;
}

#projecttitle {
	margin-top: 50px;
	max-width: 720px;
}

#projectinfo720 {
	max-width: 720px;
	border: #97a1b4 1px solid;
	border-radius: 15px;
	padding: 20px 30px;
	background-color: #f5f5f6;
}

#projectinfo640 {
	max-width: 660px;
	border: #97a1b4 1px solid;
	border-radius: 15px;
	padding: 20px 30px;
	background-color: #f5f5f6;
}

#projectinfo880 {
	max-width: 880px;
	border: #97a1b4 1px solid;
	border-radius: 15px;
	padding: 20px 30px;
	background-color: #f5f5f6;
}

#projectinfo900 {
	max-width: 900px;
	border: #97a1b4 1px solid;
	border-radius: 15px;
	padding: 20px 30px;
	background-color: #f5f5f6;
}

#projectinfo600 {
	max-width: 600px;
	border: #97a1b4 1px solid;
	border-radius: 15px;
	padding: 20px 30px;
	background-color: #f5f5f6;
}

#projectinfo700 {
	max-width: 700px;
	border: #97a1b4 1px solid;
	border-radius: 15px;
	padding: 20px 30px;
	background-color: #f5f5f6;
}

#projectinfo800 {
	max-width: 800px;
	border: #97a1b4 1px solid;
	border-radius: 15px;
	padding: 20px 30px;
	background-color: #f5f5f6;
}

#projecttitle h1 {
	font-weight: 600;
	font-size: 1.8rem;
}

#projectinfo720 h2, #projectinfo640 h2, #projectinfo600 h2, #projectinfo700 h2, #projectinfo800 h2, #projectinfo880 h2, #projectinfo900 h2{
	font-size: 1.2rem;
	font-weight: 600;
	padding-bottom: 10px;
}

#showContainer p{
	line-height: 1.4;
}

#video_1.ccr1 {
	border: #97a1b4 1px solid;
}

#prevP {
	margin: 30px 0px 50px 0px;
}

#prevP a {
	display: inline-block;
	border: 1px solid #97a1b4;
	background-color: #97a1b4;
	color: #fff;
	padding: 14px 16px;
	border-radius: 10px;
	outline: none;
	transition:  all 0.4s ease-in-out;
}

#prevP a:hover {
	color: #16284C;
	background-color: #f5f5f6;
}
span.buttonword {
	display: inline-block;
	margin-left: 8px;
}

/* illustrations */

div.illustration {
	margin: 30px 0px;
	border: #97a1b4 1px solid;
	border-radius: 15px;
}

div.illustrationgrid {
	border: #97a1b4 1px solid;
	border-radius: 15px;
}

div#dubs {
	background: #f5f5f6 url(../_images/dubsLarge.png) no-repeat center center/cover;
	width: 100%;
	height: 0em;
	padding-bottom: 75%;
}

div#zfp3 {
	background: url(../_images/ZFP3Dlarge.png) no-repeat center center/cover;
	width: 100%;
	height: 0em;
	padding-bottom: 85%;
}

div#zfp2 {
	background: url(../_images/ZFP2Dlarge.png) no-repeat center center/cover;
	width: 100%;
	height: 0em;
	padding-bottom: 85%;
}

div#st400 {
	background: url(../_images/st400Large.png) no-repeat center center/cover;
	width: 100%;
	height: 0em;
	padding-bottom: 85%;
}

div#corn {
	background: #f5f5f6 url(../_images/cornLarge.png) no-repeat center center/cover;
	width: 100%;
	height: 0em;
	padding-bottom: 100%;
}

div#emm1 {
	background: url(../_images/emm1Large.png) no-repeat center center/cover;
	width: 100%;
	height: 0em;
	padding-bottom: 60%;
}

div#emm2 {
	background: url(../_images/emm2Large.png) no-repeat center center/cover;
	width: 100%;
	height: 0em;
	padding-bottom: 60%;
}

.illustration.tem {
	width: 100%;
	height: 0em;
	padding-bottom: 75%;	
	position: relative;
}

.illustration.tem h2 {
	font-size: 1.8rem;
	font-weight: 400;
}

div#tem09-1 {
	background: #f5f5f6 url(../_images/TEM09poster.png) no-repeat center center/cover;
}

div#tem10-1 {
	background: #f5f5f6 url(../_images/TEM10poster.png) no-repeat center center/cover;
}

#tem09-1 h2, #tem10-1 h2 {
	position: absolute;
	top: 7.5%;
	left: 44%;
}

div#tem09-2 {
	background: #f5f5f6 url(../_images/TEM09flyer.png) no-repeat center center/cover;
}

div#tem10-2 {
	background: #f5f5f6 url(../_images/TEM10flyer.png) no-repeat center center/cover;
}

#tem09-2 .topt, #tem10-2 .topt{
	position: absolute;
	top: 5%;
	left: 5%;
}

#tem09-2 .bottomt, #tem1-10-2 .bottomt {
	position: absolute;
	top: 53%;
	left: 5%;
}

div#tem09-3 {
	background: #f5f5f6 url(../_images/TEM09prospectus.png) no-repeat center center/cover;
}

div#tem10-3 {
	background: #f5f5f6 url(../_images/TEM10prospectus.png) no-repeat center center/cover;
}

#tem09-3 h2, #tem09-4 h2, #tem09-5 h2, #tem09-6 h2, #tem10-3 h2, #tem10-5 h2, #tem10-6 h2 {
	position: absolute;
	top: 7.5%;
	left: 5%;
}

div#tem09-4 {
	background: #f5f5f6 url(../_images/TEM09program.png) no-repeat center center/cover;
}

div#tem09-5 {
	background: #f5f5f6 url(../_images/TEM09ads.png) no-repeat center center/cover;
}

div#tem10-5 {
	background: #f5f5f6 url(../_images/TEM10ads.png) no-repeat center center/cover;
}

div#tem09-6 {
	background: #f5f5f6 url(../_images/TEM09web.png) no-repeat center center/cover;
}

div#tem10-6 {
	background: #f5f5f6 url(../_images/TEM10web.png) no-repeat center center/cover;
}

div#gaudi1 {
	background: url(../_images/gaudiL1.jpg) no-repeat center center/cover;
	width: 100%;
	height: 0em;
	padding-bottom: 78.5%;
}

div#gaudi2 {
	background: url(../_images/gaudiL2.jpg) no-repeat center center/cover;
	width: 100%;
	height: 0em;
	padding-bottom: 78.5%;
}

div#gaudi3 {
	background: url(../_images/gaudiL3.jpg) no-repeat center center/cover;
	width: 100%;
	height: 0em;
	padding-bottom: 78.5%;
}

div#gaudi4 {
	background: url(../_images/gaudiL4.jpg) no-repeat center center/cover;
	width: 100%;
	height: 0em;
	padding-bottom: 78.5%;
}

div#type1 {
	background: url(../_images/typeL1.gif) no-repeat center center/cover;
	width: 100%;
	height: 0em;
	padding-bottom: 66.7%;
}

div#type2 {
	background: url(../_images/typeL2.gif) no-repeat center center/cover;
	width: 100%;
	height: 0em;
	padding-bottom: 66.7%;
}

div#type3 {
	background: url(../_images/typeL3.gif) no-repeat center center/cover;
	width: 100%;
	height: 0em;
	padding-bottom: 66.7%;
}

div#type4 {
	background: url(../_images/typeL4.gif) no-repeat center center/cover;
	width: 100%;
	height: 0em;
	padding-bottom: 66.7%;
}

/* footer */
#pageFooter {
	position: fixed;
	left: 0px;
	bottom: 0px;
	background-color: #eeedef;
	line-height: 1.8;
	width: 100%;
}

p.footer {
	text-align: center;
	font-size: .9rem;
}

#pageFooter a {
	color: #16284C;
	text-decoration: none;
}

#pageFooter a:hover {
	text-decoration: none;
	color: #770c0c;
	cursor: pointer;
}

#copyhidden{
	background: rgba(33,62,117,0.9);
	width: 100%;
	height: 0;
	position: fixed;
	bottom: 0;
	left: 0;
	z-index: 1;
	transition: 0.5s;
	overflow: hidden;
}

#copyhidden div.close {
    position: absolute;
	top: 20px;
	right: 20px;
    cursor: pointer;
}

#copyright h3, #copyright p{
	padding-left: 3.5em;
	padding-right: 3.5em;
	font-size: 1.1rem;
	line-height: 1.5;
	font-weight: 300;
	color: #f5f5f6;
}

#copyright h3 {
	padding-top: 25px;
	padding-bottom: 25px;
	font-weight: 600;
	letter-spacing: 0.1em;
}

/* media queries for phones */

@media (max-width:1000px) {

	.workGrid {
		grid-template-columns: repeat(2, 320px);
	}

	#showContainer {
		padding: 0px 5px;
	}

	#info h1 {font-size: 3rem;}
}

@media (max-width:660px) {
	.workGrid {
		grid-template-columns: 320px;
	}
}

@media (max-width:825px) {
	#infoPage {
		background-position: -10px top;
	}
}

@media(max-width:680px){

	#mainNav ul {margin:0px 20px;}

	#workCards h2 {margin-left: 20px;}

	#info {
		width: 100%;
		padding-top: 20px;
	}

	#info h1 {display: none;}

	#infoPage {
		background-position: -550px -5px;
	}
}

@media(max-width:620px){

	#mainNav ul li.hide {display: none;}

	#mainNav ul li#logo {
		background-size: 80%;
		background-position: left center;
	}

	.homeTitle {
		font-size: 3rem;
		letter-spacing: normal;
		background-color: rgba(0, 0, 0, .5);
	}

	.homeText {display: none;}

	.slide:first-child {
		background: url(../_images/macrophageHomeS1.jpg) no-repeat center center/cover;
	}

	.slide:nth-child(2) {
		background: url(../_images/neutrophilHomeS1.jpg) no-repeat center center/cover;
	}

	.slide:nth-child(3) {
		background: url(../_images/neuronHomeS1.jpg) no-repeat center center/cover;
	}

	.slide:nth-child(4) {
		background: url(../_images/microglyaHomeS1.png) no-repeat center center/cover;
	}

	.homeFigs {display: none;}

	.homeFigsDevices{
		display: block;
		z-index: 1;
	}

	#copyright h3, #copyright p{
		padding-left: 20px;
		padding-right: 20px;
		font-size: .9rem;
	}

	#copyright h3 {padding-bottom: 20px;}

	#projecttitle {margin-top: 20px;}

	#projecttitle h1 {font-size: 1.6rem;}

	#projectinfo h2, #projectinfo640 h2, #projectinfo600 h2, #projectinfo800 h2 {
		padding-bottom: 3px;
		font-size: 1.1rem;
	}

	div.illustration {margin: 20px 0px;}

	div.illustration.tem h2 {font-size: 1.3rem;}

	ul.imagesNav {display: none;}

	#tem09-1 h2, #tem10-1 h2 {top: 5%;}

	#tem09-2 .topt, #tem09-2 .bottomt {
		left: 3%;
		max-width: 15%;
	}

	#tem09-2 .topt p, #tem09-2 .bottomt p {
		font-size: 0.9rem;
		line-height: 1.1;
		overflow: hidden;
	}

	#tem09-3 h2, #tem10-3 h2 {
		top: 1%;
	}

	#tem09-5 h2, #tem09-6 h2, #tem10-5 h2, #tem10-6 h2 {
		top: 5%;
	}

	#t9-1 {margin-bottom: 20px;}

	.grid {grid-template-columns: 1fr;}

}
  
  @media(min-width:620px){

	#hamburger {display: none}

	.homeFigs {display: block;}

	.homeFigsDevices{display: none;}
  }