:root {
	--title-width : 180px;
	--content-padding : 60px;
	--section-height : 320px;
}

#view{
  min-height: 100vh;
}

.view-title-wrapper{
  position: relative;
  height: var(--title-width);
}

.view-band{
  position: absolute;
	height: 14px;
	width: 100%;

	bottom: 0px;

  background-color: var(--accent);
}

.view-title{
	position: absolute;
	bottom: 0px;

	margin-left: var(--content-padding);
	margin-right: var(--content-padding);
	padding-bottom: 5px;

	right: 0px;
	left: 0px;

	border-bottom: solid #606060;

	font-size: 60px;
	font-family: Roboto;
  font-weight: normal;
  vertical-align: bottom;
  color: #606060;
}

.view-title-graphic{
	position: absolute;
	bottom: 0px;
	right: var(--content-padding);

	min-width: var(--title-width);
	height: var(--title-width);

	background-color: rgba(255, 255, 255, 0.1);
}

.view-title-graphic object{
	height: 100%;
}

.view-content{
  position: relative;

  padding: var(--content-padding);

  text-align: justify;
}

/*GENERAL PAGE SECTION STYLE ---------------------------------------------- */

.view-section{
	/* background-color: rgba(0, 0, 0, 0.05); */
	height: var(--section-height);
	margin-bottom: 40px;
}

.view-section-image-wrapper{
	float: left;
	/* background-color: rgba(0, 0, 0, 0.05); */
	width: var(--section-height);
	height: 100%;
	overflow: hidden;
}

.view-section-image{
	width: 100%;
	height: 100%;
}

.view-section-text-wrapper{
	float: right;
	height: 100%;
	width: calc(100% - var(--section-height));

	padding-left: 30px;
	padding-right: 0px;
	box-sizing: border-box;
}

.view-section-text{
	position: relative;
	/* height: 100%; */
	overflow: hidden;


	font-size: 20px;
	font-family: OpenSans;
	vertical-align: top;
	text-align: justify;
	  color: #606060;
}

.view-section-text h1{
	font-size: 35px;
	font-family: Roboto;
	font-weight: normal;
  color: #606060;

	-webkit-text-stroke-width: 1px;
	-webkit-text-stroke-color: #606060;
}

.view-section-button{
	position: relative;
	float: right;
	width: 120px;
	height: 40px;

	text-align: center;
	line-height: 40px;
	color: white;

	background-color: var(--dark-color );

	cursor: pointer;
}

.view-gallery{
	position: relative;
	/* padding: 30px; */
  display: flex;
  flex-wrap: wrap;
  justify-content: left;
}

.view-gallery-vignette-wrapper{
	position: relative;
	width: 33%;
}

.view-gallery-vignette-wrapper-helper{
	position: relative;
	margin-top : 100%;
}

.view-gallery-vignette{
	position: absolute;
	overflow: hidden;

	top: 5px;
	bottom: 5px;
	left: 5px;
	right: 5px;

	background-color: rgba(0, 0, 0, 0.1);

	cursor: pointer;
}

.view-gallery-vignette-image{
	position: absolute;

	top: 0px;
	bottom: 0px;
	left: 0px;
	right: 0px;

	background-color: rgba(0, 0, 0, 0.1);

	transition-duration: 0.5s;

	pointer-events:none
}

.view-gallery-vignette:hover .view-gallery-vignette-image{
	top: -20px;
	bottom: -20px;
	left: -20px;
	right: -20px;

}

.view-gallery-vignette-text{
	position: absolute;
	bottom: 0px;
	left: 0px;
	right: 0px;

	padding: 16px;
	padding-top: 5px;

	font-family: Roboto;
	font-size: 18px;
	color: white;
	font-weight: normal;
	text-align: left;

	background-color: rgba(0, 0, 0, 0.5);

	pointer-events:none
}

.view-gallery-vignette-text h1{
	font-size: 26px;
	color: white;
	font-weight: normal;
	line-height: auto;
	font-family: Roboto;

	-webkit-text-stroke-width: 1px;
-webkit-text-stroke-color: white;
}

/*PORTFOLIO PAGE STYLE ---------------------------------------------------- */

.portfolio-gallery{
  padding: 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: left;
}

.portfolio-vignette-wrapper{
	position: relative;
	width: 100%;
	height: 400px;
}

.portfolio-vignette-wrapper-helper{
	position: relative;
	margin-top : 100%;
}

.portfolio-vignette{
	position: absolute;
	overflow: hidden;

	width: 100%;

	top: 5px;
	bottom: 5px;
	left: 5px;
	right: 5px;

	background-color: rgba(0, 0, 0, 0.1);

	cursor: pointer;
}

.portfolio-vignette-image{
	position: absolute;

	width: 100%;
	height: 100%;

	background-color: rgba(0, 0, 0, 0.1);

	transition-duration: 0.5s;

	pointer-events:none
}

.portfolio-vignette-image img{
	width: 100%;
	height: fit-content;
}

.portfolio-vignette:hover .app-vignette-image{
	top: -20px;
	bottom: -20px;
	left: -20px;
	right: -20px;

}

.portfolio-vignette-text{
	position: absolute;
	bottom: 0px;
	left: 0px;
	right: 0px;

	padding: 20px;
	padding-top: 5px;

	font-family: Roboto;
	font-size: 20px;
	color: white;
	font-weight: normal;
	text-align: left;

	background-color: rgba(0, 0, 0, 0.5);

	pointer-events:none
}

.portfolio-vignette-text h1{
	font-size: 50px;
	color: white;
	font-weight: normal;
	line-height: 5px;
	font-family: Roboto;

	-webkit-text-stroke-width: 1px;
-webkit-text-stroke-color: white;
}


/*APPLICATION PAGE STYLE ---------------------------------------------------- */

.app-gallery{
	padding: 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: left;
}

.app-vignette-wrapper{
	position: relative;
	width: 50%;
	/* background-color: rgba(0, 0, 0, 0.1); */
}

.app-vignette-wrapper-helper{
	position: relative;
	margin-top : 100%;
}

.app-vignette{
	position: absolute;
	overflow: hidden;

	top: 5px;
	bottom: 5px;
	left: 5px;
	right: 5px;

	background-color: rgba(0, 0, 0, 0.1);

	cursor: pointer;
}

.app-vignette-image{
	position: absolute;

	top: 0px;
	bottom: 0px;
	left: 0px;
	right: 0px;

	background-color: rgba(0, 0, 0, 0.1);

	transition-duration: 0.5s;

	pointer-events:none
}

.app-vignette:hover .app-vignette-image{
	top: -20px;
	bottom: -20px;
	left: -20px;
	right: -20px;

}

.app-vignette-text{
	position: absolute;
	bottom: 0px;
	left: 0px;
	right: 0px;

	padding: 20px;
	padding-top: 5px;

	font-family: Roboto;
	font-size: 20px;
	color: white;
	font-weight: normal;
	text-align: left;

	background-color: rgba(0, 0, 0, 0.5);

	pointer-events:none
}

.app-vignette-text h1{
	font-size: 50px;
	color: white;
	font-weight: normal;
	line-height: 5px;
	font-family: Roboto;

	-webkit-text-stroke-width: 1px;
-webkit-text-stroke-color: white;
}

.article-list{
	position: relative;
	width: 100%;
	height: auto;
	min-height: 50px;

}

.article-entry-wrapper{
	position: relative;
	height: 180px;
	padding: 0;
	margin-bottom: 10px;
	/* background-color: rgba(0, 0, 0, 0.02); */
}

.article-entry{

}

.article-image{
	float:left;
	width: 180px;
	height: 180px;

	justify-content: center;
	overflow: hidden;

}

.article-text-wrapper{
	float:right;
	width: calc(100% - 180px);
	height: 100%;
	box-sizing: border-box;
	padding: 20px;
	padding-top: 0px;

}

.article-text{
	font-family: Roboto;
}

.article-text h1{
	line-height: auto;
}

.article-button{
	position: absolute;
	width: 120px;
	height: 40px;
	bottom: 10px;
	right: 10px;

	text-align: center;
	line-height: 40px;

	background-color: #f5ce42;

	cursor: pointer;
}

/*PUBLICATION PAGE STYLE ---------------------------------------------------- */

.publication-list{
	position: relative;
	width: 100%;
	height: auto;
	min-height: 50px;

}

.publication-entry-wrapper{
	position: relative;
	height: auto;
	padding: 0;
	background-color: rgba(0, 0, 0, 0.02);
}

.publication-entry{

}

.publication-image{
	float:left;
	width: 180px;
	height: 180px;

	justify-content: center;
	overflow: hidden;

}

.publication-text-wrapper{
	float:right;
	width: calc(100% - 180px);
	height: 100%;
	box-sizing: border-box;
	padding: 20px;
	padding-top: 0px;

}

.publication-text{
	font-family: Roboto;
}

.publication-text h1{
	font-size: 20px;
	text-align: left;
}

.publication-author-wrapper{
	margin-top: 0;
	display: flex;
	flex-wrap: wrap;
}

.publication-author-wrapper b{
	padding: 5px;
	padding-left: 0;

	margin-right: 5px;
	margin-bottom: 5px;

	text-align: center;
	line-height: 5px;
}

.publication-author{
	position: relative;
	width: auto;
	height: auto;

	padding: 5px;

	margin-right: 5px;
	margin-bottom: 5px;

	text-align: center;
	line-height: 5px;
	/* background-color: #f5ce42; */
}

.publication-button{
	position: absolute;
	width: 120px;
	height: 40px;
	right: 0px;

	text-align: center;
	line-height: 40px;

	background-color: #f5ce42;

	cursor: pointer;
}

#pdf-wrapper{
	position: relative;
	width: 100%;
}

#pdf-wrapper-helper{
	position: relative;
	width: 100%;
	padding-bottom: 141%;
}
