* {
	margin: 0;
	padding: 0;
	list-style: none;
	text-decoration: none;
	font-family: 'Raleway', sans-serif;
	font-size: 1rem;
	color: #333;
	scroll-behavior: smooth;
}

html, body {
	width: 100%;
	height: 100%;
}

/********** START header **********/

header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 15;
}

/********** START logo **********/

/********** END logo **********/

/********** START navBox **********/

div#mainNavBox {
    position: absolute;
	top: 20px;
	right: 40px;
	width: 50px;
	height: 50px;
	cursor: pointer;
	z-index: 15;
}

span#navTopLine, span#navCenterLine, span#navBottomLine {
	position: absolute;
    display: block;
    background-color: #555;
}

span.navTopLine {
	top: 7px;
	left: 5px;
	width: 40px;
	height: 5px;
	transform: rotate(0deg);
	transition: all 0.3s linear;
}

span.changeTopLine {
	top: 22.5px;
	left: 5px;
	width: 40px;
	height: 5px;
	transform: rotate(45deg);
	transition: all 0.3s linear;
}

span.navCenterLine {
	width: 40px;
	height: 5px;
	top: 22.5px;
	left: 5px;
	opacity: 1;
	transition: height 0.3s linear, top 0.3s linear, opacity 0.6s linear;
}

span.changeCenterLine {
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	opacity: 0;
	transition: height 0.3s linear, top 0.3s linear, opacity 0.6s linear;
}

span.navBottomLine {
	bottom: 7px;
	left: 5px;
	width: 40px;
	height: 5px;
	transform: rotate(0deg);
	transition: all 0.3s linear;
}

span.changeBottomLine {
	bottom: 22.5px;
	left: 5px;
	width: 40px;
	height: 5px;
	transform: rotate(-45deg);
	transition: all 0.3s linear;
}

@media (min-width: 800px) {

	div#mainNavBox {
		display: none;
	}
}

/********** END navBox **********/

/********** START mainNavMobile **********/

ul#mainNavMobile {
	display: block;
	position: absolute;
	top: 70px;
	right: 0;
	height: 0;
}

ul#mainNavMobile li {
	margin: 5px 20px 5px 0;
	text-align: right;
	background: rgba(0, 0, 0, 0.8);
	position: relative;
	top: 0;
}

ul#mainNavMobile li.hideToRight {
	right: -100%;
	transition: right 0.3s linear;
}

ul#mainNavMobile li.showToLeft {
	right: 0;
	transition: right 0.3s linear;
}

ul#mainNavMobile li a {
	display: block;
	padding: 10px 30px 10px 100px;
	color: #ccc;
	font-size: 1.3rem;
}

@media (min-width: 800px) {

	ul#mainNavMobile {
		display: none;
	}
}

/********** END mainNavMobile **********/

/********** START mainNavDesktop **********/

#mainNavDesktop {
	display: none;
}

@media (min-width: 800px) {

	header {
		height: 0;
		padding-bottom: 100px;
		background: rgba(255, 255, 255, 0);
		transition: all 0.25s linear;
	}

	header.headerScrollOpacity {
		background: rgba(0, 0, 0, 0.75);
		transition: all 0.25s linear;
	}

	header.headerScrollHeight {
		padding-bottom: 50px;
		transition: all 0.25s linear;
	}

	#mainNavDesktop {
		display: block;
		width: 65%;
		float: right;
		margin-top: 0;
		transition: all 0.25s linear;
	}

	#mainNavDesktop.navScrollHeight {
		margin-top: -25px;
		transition: all 0.25s linear;
	}

	#mainNavDesktop li {
		float: left;
		width: 25%;
		text-align: center;
		line-height: 100px;
	}

	#mainNavDesktop a {
		color: #333;
		transition: color 0.5s linear;
	}

	#mainNavDesktop li a.navLinksColor {
		color: #eee;
		transition: color 0.5s linear;
	}
}

@media (min-width: 1100px) {

	#mainNavDesktop {
		margin-right: 100px;
	}
}

@media (min-width: 1400px) {

	#mainNavDesktop {
		width: 60%;
		max-width: 1100px;
		margin-right: 150px;
	}

	#mainNavDesktop li {
		width: 20%;
	}
}

/********** END mainNavDesktop **********/

/********** END header **********/

div.closeButton {
	top: 20px;
	left: 30px;
}

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

	div.closeButton {
		top: 60px;
	}
}

/********** START background images **********/

#bgImg {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0.25;
	z-index: 5;
}

.bgImg01 {
	background: url(../img/background/bgImg01.jpg) no-repeat center;
	background-size: cover;
}

.bgImg02 {
	background: url(../img/background/bgImg02.jpg) no-repeat center;
	background-size: cover;
}

.bgImg03 {
	background: url(../img/background/bgImg03.jpg) no-repeat center;
	background-size: cover;
}

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

	#bgImg {
		height: 100%;
	}
}

/********** END background images **********/

/********** START mainContent **********/

div#mainContent {
	position: relative;
	top: 100px;
	left: 0;
	z-index: 10;
}

span.imgScrollChange {
	display: block;
	width: 100%;
	clear: both;
}

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

	div#mainContent {
		top: 120px;
	}
}

/********** START bio section **********/

article.introductionBox {
	clear: both;
	padding: 25px 0;
	overflow: hidden;
}

article.introductionBox01 {
	padding-top: 0;
}

figure.introductionImg {
	width: 40%;
}

img.imgIndex {
	width: 100%;
	margin-right: 35px;
	float: left;
}

div.introductionText {
	width: 90%;
}

.floatLeft {
	position: relative;
	top: 0;
	left: 0;
}

.floatRight {
	position: relative;
	top: 0;
	right: 0;
}

section#bio {
	background: rgba(255, 255, 255, 0.75);
	/* background: rgba(0, 0, 0, 0.25); */
	padding: 50px 20px;
}

h2.h2Bio, h3.h3Bio {
	text-align: center;
	font-size: 1.1rem;
	font-weight: normal;
	padding-bottom: 20px;
}

h3.h3Bio {
	margin-bottom: 25px;
}

section#bio p {
	line-height: 1.6rem;
	margin-bottom: 15px;
}

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

	div.introductionText {
		width: 50%;
	}

	.floatLeft {
		position: relative;
		top: 0;
		left: 0;
		float: left;
	}

	.hideFloatLeft {
		left: -50%;
		opacity: 0;
		transition: left 0.25s linear, opacity 0.75s linear;
	}

	.showFloatLeft {
		left: 0;
		opacity: 1;
		transition: left 0.25s linear, opacity 0.75s linear;
	}

	.floatRight {
		position: relative;
		top: 0;
		right: 0;
		float: right;
	}

	.hideFloatRight {
		right: -60%;
		opacity: 0;
		transition: right 0.25s linear, opacity 0.75s linear;
	}

	.showFloatRight {
		right: 0;
		opacity: 1;
		transition: right 0.25s linear, opacity 0.75s linear;
	}

	section#bio {
		padding: 75px 50px;
	}

	h2.h2Bio, h3.h3Bio {
		font-size: 1.2rem;
	}

	h2.h2Bio {
		width: 220px;
		margin: 0 auto 20px;
		border-bottom: 1px solid #ccc;
	}

	h3.h3Bio {
		margin-bottom: 40px;
	}

	section#bio p {
		line-height: 1.8rem;
		margin-bottom: 20px;
		font-size: 1.1rem;
	}
}

@media screen and (min-width: 1000px) {

	article.introductionBox {
		padding: 50px 0;
	}
}

@media screen and (min-width: 1300px) {

	div.introductionText {
		width: 50%;
		padding-top: 20px;
	}

	section#bio {
		padding: 75px;
	}
}

@media screen and (min-width: 1400px) {

	div.introductionText {
		padding-top: 40px;
	}
}

/********** END bio section **********/

/********** START contact section **********/

/********** END contact section **********/


/********** END mainContent **********/


/********** START footer **********/

footer {
	position: relative;
	top: 70px;
	left: 0;
	background: #f5f5f5;
}

section#contact {
	text-align: center;
	padding: 50px 0;
}

section#contact address {
	font-style: normal;
}

section#contact p {
	margin: 15px 0;
	font-size: 1.1rem;
}

span.addressName {
	color: #333;
	font-weight: bold;
}

span.addressValue {
	color: black;
}

/********** END footer **********/

/********** START artwork page **********/

div#artworkContent {
	position: relative;
	top: 40px;
	left: 0;
	z-index: 10;
}

#bgImgArtwork {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0.2;
}

article.artworkBox {
	width: 100%;
	margin-top: 70px;
}

figure.showPhotos {
	width: 70%;
	margin: 0 auto;
}

img.boxCover {
	width: 100%;
	border: 1px solid white;
}

figcaption.boxTitle {
	text-align: center;
	margin: 20px 0 70px;
	font-size: 1rem;
}

span.brTitle {
	display: block;
	width: 200px;
	height: 1px;
	margin: 10px auto;
	background-color: #eee;
}

figcaption.showBoxTitle {
	position: relative;
	top: 60px;
	left: 0;
	margin-bottom: 20px;
	padding-top: 100px; 
	z-index: 10;
	font-size: 1.5rem;
}

div.hideImg {
	display: none;
}

div.showImg {
	display: block;
	position: relative;
	z-index: 10;
}

div.showImgMargin {
	padding-top: 50px;
}

img.hiddenImg {
	display: block;
	width: 95%;
	margin: 10px auto;
}

.backgroundBoxMobile {
	position: fixed;
	width: 100%;
	height: 100vh;
	top: 0;
	left: 50%;
	z-index: 10;
	transform: translateX(-50%);
	background: rgba(255, 255, 255, 0.95);
	transition: background 0.5s linear;
}

div.textContent {
	padding: 50px 20px;
	line-height: 1.7rem;
}

h2.textContentTitle {
	margin-bottom: 20px;
	text-align: center;
	font-size: 1.1rem;
	color: #333;
}

div.textContent p {
	margin-bottom: 15px;
	color: #555;
}

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

	div#artworkContent {
		top: 120px;
	}

	section#artworkPage {
		padding-bottom: 50px;
	}

	article.artworkBox {
		display: inline-block;
		width: 40%;
		margin: 25px 4.5%;
	}

	figure.showPhotos {
		position: relative;
		cursor: pointer;
		overflow: hidden;
	}

	span.hoverOnImg {
		position: absolute;
		width: 100%;
		height: 100%;
		background: rgba(0, 0, 0, 0);
		z-index: 5;
		transition: background 0.25s linear;
	}

	figure.showPhotos img {
		transform: scale(1);
		transition: transform 0.25s linear;
	}

	figure.showPhotos:hover img {
		transform: scale(1.1);
		transition: transform 0.25s linear;
	}

	figure.showPhotos:hover span.hoverOnImg {
		background: rgba(0, 0, 0, 0.5);
		transition: background 0.25s linear;
	}

	div.hiddenImgBox i {
		font-size: 2rem;
		color: #555;
	}

	figcaption.boxTitle {
		margin-bottom: 0;
		padding: 0;
		z-index: 1;
	}

	figcaption.showBoxTitle {
		opacity: 0.05;
	}

	span.brTitle {
		width: 150px;
	}

	div.moveArticleToLeft {
		position: relative;
		left: -120%;
	}

	img.hiddenImg {
		width: 100%;
		margin: 10px 0;
	}

	div.showImgMargin {
		margin-top: -30px;
	}

	div.textContent {
		position: absolute;
		width: 110%;
		top: -10px;
		left: 105%;
		padding-bottom: 50px;
	}
}

@media screen and (min-width: 1000px) {

	article.artworkBox {
		margin: 40px 4.5%;
	}

	div.showImgMargin {
		margin-top: 0;
	}

	div.textContent {
		left: 110%;
	}
}

@keyframes imgOpacity {
	0% {
		opacity: 0;
	}
	50% {
		opacity: 0.5;
	}
	100% {
		opacity: 1;
	}
}

/********** END artwork page **********/

/********** START publications page **********/

div#publicationsContent {
	position: relative;
	top: 50px;
}

article.magazineBox {
	margin: 70px 0;
}

article.magazineBox.clickedMagazineBox {
	position: relative;
	z-index: 10;
}

div.hideMagazineBox {
	display: none;
}

div.showMagazineBox {
	display: block;
}

figure.magazineCover {
	width: 70%;
	margin: 0 auto;
	overflow: hidden;
}

figure.reduceMagazineCover {
	width: 100px;
	float: left;
	margin: 0 5% 20px;
}

figure.magazineCover img {
	display: block;
	width: 100%;
	transform: scale(1);
	transition: transform 0.25s linear;
}

article.magazineBox figcaption {
	width: 90%;
	margin: 0 auto 40px;
	padding-top: 20px;
	text-align: center;
}

div.magazineText {
	padding: 0 5%;
}

div.magazineText h2 {
	clear: both;
}

div.magazineText p {
	margin: 10px 0;
	line-height: 1.7rem;
}

figure.magazinePoster {
	width: 75%;
	margin: 80px auto 0;
}

figure.magazinePoster img {
	width: 100%;
}

div.videoBox {
	margin: 50px 0 0;
}

div.videoBox h2 {
	text-align: center;
}

div.videoBox iframe {
	display: block;
	width: 75%;
	height: 300px;
	margin: 50px auto;
}

a.livespeakingLink {
	display: block;
	width: 75%;
	margin: 0 auto;
	text-align: center;
}

a.livespeakingLink span {
	text-decoration: underline;
}

@media screen and (min-width: 500px) {

	figure.reduceMagazineCover {
		width: 150px;
	}
}

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

	figure.reduceMagazineCover {
		width: 200px;
	}

	div.magazineText h2 {
		clear: none;
		margin-bottom: 20px;
	}

	div.videoBox iframe {
		height: 350px;
	}
}

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

	div#publicationsContent {
		top: 200px;
	}

	article.magazineBox {
		float: left;
		width: 40%;
		height: 550px;
		margin: 0 4.5%;
	}

	article.magazineBox.clickedMagazineBox {
		width: 90%;
	}

	figure.magazineCover {
		position: relative;
		cursor: pointer;
	}

	figure.magazineCover:hover img {
		transform: scale(1.1);
		transition: transform 0.25s linear;
	}

	figure.magazineCover:hover span.hoverOnImg {
		background: rgba(0, 0, 0, 0.5);
		transition: background 0.25s linear;
	}

	figure.reduceMagazineCover:hover img {
		transform: scale(1);
	}

	figure.reduceMagazineCover:hover span.hoverOnImg {
		background: rgba(0, 0, 0, 0);
	}

	figure.reduceMagazineCover:hover {
		cursor: default;
	}

	div.magazineHiddenBox i {
		font-size: 2rem;
		color: #555;
	}

	footer {
		clear: both;
	}
}

@media screen and (min-width: 900px) {

	article.magazineBox {
		height: 600px;
	}
}

@media screen and (min-width: 1000px) {

	article.magazineBox {
		height: 650px;
	}
}

@media screen and (min-width: 1100px) {

	article.magazineBox {
		height: 700px;
	}
}

@media screen and (min-width: 1200px) {

	footer {
		top: 150px;
	}

	article.magazineBox {
		height: 750px;
	}
}

@media screen and (min-width: 1400px) {

	div#publicationsContent {
		width: 80%;
		margin: 0 auto;
		max-width: 1400px;
	}

	article.magazineBox {
		min-height: 800px;
		max-width: 600px;
	}

	div.magazineText {
		width: 180%;
	}
}

/********** END publications page **********/