/*
	------------------- color scheme --------------------

	red: #b80f0c, rgb(184, 15, 12), rgba(184, 15, 12, 1)
	cyan: #0cb5b8, rgb(12, 181, 184), rgba(12, 181, 184, 1)

	logo background: background-color: rgba(12, 12, 12, .3)
	layover color: rgba(0, 0, 0, .7)
*/


/* ------------------- general css ------------------- */
*{
	display: block;
}

html, body{
	height: 100vh;
	width: 100vw;
	/*overflow: hidden;*/
}

.left-column, .right-column{
	height: 100vh;
}

title{
	display: none;
}

html{
	box-sizing: border-box;
	-ms-text-size-adjust: 100vw;
	-webkit-text-size-adjust: 100vw;
}

.clear{
	clear: both;
}





/* ------------------ background ------------------ */
/*body{

}*/





/* ------------------ columns ------------------ */
.left-column{
	background-color: rgba(0, 0, 0, .9);
	width: 5vw;
	float: left;
}

.right-column{
	/*background-color: blue;*/
	width: 95vw;
	float: right;
}





/* ------------------ left column ------------------ */
.menu-item-container{
	background-color: rgba(0, 0, 0, .3);
	margin: 30% auto 0% auto;
	width: 70%;
	/*overflow: hidden;*/
}

.menu-icon{
	/*background-color: green;*/
	color: white;
	font-size: 3.5vw;
	cursor: pointer;
	text-align: justify;
	transition: color .9s;
}

.menu-icon:hover{
	/*background-color: white;*/
	/*background-color: rgba(255, 255, 255, .5);*/
	color: rgba(184, 15, 12, 1);
}

.hidden-item{
	display: none;
}

.menu-description{
	/*background-color: yellow;*/
	font-size: 4vw;
	margin: 0 0 0 .8vw;
	text-align: center;
}

.list-item-container{
	/*background-color: rgba(0, 0, 0, .3);*/
	margin: 10% auto;
	width: 2.5vw;
	overflow: hidden;
}

.list-item-container:hover{
	/*background-color: white;*/
	/*background-color: rgba(255, 255, 255, .5);*/
	/*color: red;*/
}

.list-item-container > a{
	/*background-color: blue;*/
}

.list-icon{
	/*background-color: green;*/
	color: white;
	font-size: 2.3vw;
	transition: color .9s;
}

.list-icon:hover{
	color: rgba(184, 15, 12, 1);
}

.item-description{
	/*background-color: yellow;*/
	margin: 0 0 0 1.8vw;
	text-align: center;
	font-size: 3vw;
}





/* ------------------ main contents ------------------ */
section.row-container{
	background-color: rgba(0, 0, 0, .7);
	width: 100%;
	overflow: hidden;
	height: 33.33vh;
	/*border-bottom: 1px solid black;*/
}

.img, .portrait-img{
	margin: .5% .5%;
	width: 24%;
	opacity: .5;
	height: 100%;
	float: left;
	object-fit: cover;
	transition: all .6s;
}

.img:hover, .portrait-img:hover{
	width: 25%;
	margin: .5% 0%;
	opacity: 1;
	cursor: pointer;
}

section.row-container:nth-of-type(1) > .img, section.row-container:nth-of-type(1) > .portrait-img{
	margin: 0% .5%;
}

section.row-container:nth-of-type(1) > .img:hover, section.row-container:nth-of-type(1) > .portrait-img:hover{
	margin: 0% 0%;
	cursor: pointer;
}


#modal{
	display: none;
	position: fixed;
	z-index: 1;
	width: 100vw;
	height: 100vh;
	background-color: rgb(0, 0, 0);
	background-color: rgba(0, 0, 0, .9);
}

#modal-img{
	width: 60%;
	margin: 5% auto;
	height: auto;
}

#close{
	position: fixed;
	width: 5vw;
	height: auto;
	right: 5%;
	top: 5%;
	background-color: white;
	border-radius: 100%;
	transition: background-color .4s;
}

#close:hover{
	background-color: rgba(184, 15, 12, 1);
}






/*main.main-info{
	width: 60%;
	margin-top: 23%;
	margin-left: 10%;
	background-color: rgba(12, 12, 12, .45);
}

main.main-info h2.name{
	width: 100%;
	padding-top: 2%;
	padding-bottom: 2%;
	text-align: center;
	font-size: 5.5rem;
	color: rgba(184, 15, 12, 1);
}

main.main-info ul.description-list{
	border-top: .1em dashed red;
	width: 100%;
	overflow: hidden;
}

main.main-info ul.description-list li{
	float: left;
	width: 33.33%;
	padding-top: 2%;
	padding-bottom: 2%;
	text-align: center;
	font-size: 1.5em;
	color: gainsboro;
}*/
