/*css for Polymathic Design Website*/

/* css reset */
*{
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
    background-size:cover;
    background-repeat:no-repeat;
    background-position:center;
    font-family: 'Bowlby One SC', cursive;
    list-style: none;	
}

body{
	background:#000;
	overflow-x: hidden;
}

#titleBar{
	position:relative;
	display:block;
	float:left;
	width:100%;
	height:100px;
	background:rgb(0,140,140);
	z-index:100;
	box-shadow: 0 0px 10px rgba(0,0,0,1);
}

#logo{
	position:relative;
	float:left;
	width:250px;
	margin-left:10%;
	margin-top:20px;
}

#menuList{
	position:relative;
	display:block;
	margin-right:100px;
	margin-top:70px;
	float:right;	
	bottom:0px;
}

#menuList li{
	position:relative;
	display:inline-block;
	color:#fff;
	margin:0 10px;
	float:left;	
	font-family: 'Comfortaa', cursive;
	cursor: pointer;
	opacity:1;
	transition:opacity 0.2s ease-in-out;
}

#menuList li:hover{
	opacity:0.7;
}



.section-divide{
	position:relative;
	width:140vw;
	height:10px;
	top:-10px;
	transform:translateX(120vw);
	filter:drop-shadow(0px 0px 10px #000);
	animation: appearRight 1s ease-in-out both;	
}

@keyframes appearRight{
	0%{transform:translateX(120vw);}
	100%{transform:translateX(-15vw);}
}

.s-yellow{
	position:relative;
	height:600px;
	width:100%;
	background-color:rgb(255,230,25);
	/*background-image: linear-gradient(217deg, rgba(255,200,0,.8), rgba(255,230,25,0) 70.71%),
    linear-gradient(127deg, rgba(255,200,10,.8), rgba(200,255,10,0) 70.71%),
    linear-gradient(336deg, rgba(150,0,100,.8), rgba(0,0,200,0) 70.71%);*/
    background-image: linear-gradient(127deg, rgba(255,240,0, 1) 0%, rgba(0,0,0,0) 50%),
    linear-gradient(336deg, rgba(255,240,0, 1) 0%, rgba(255,240,0, 1) 10%, rgba(255,200,0,0.85) 50%), url("../img/hextex.jpg");
}

.vertical-list{
	position:relative;
	float:right;
	text-align:right;
	width:320px;
	font-size:56px;
	font-weight:500;
	line-height: 1em;
	margin:50px 0px 0 0;
	filter:drop-shadow(10px 10px 3px rgba(0,0,0,0.5));
}

.vertical-list li{
	transform:translateX(500px);
}

.vertical-text{
	position:relative;
	font-size:92px;
	font-weight:500;
	float:right;
	text-align:right;
	writing-mode: vertical-rl;
	text-orientation: mixed;
	margin:50px 100px 0 0;
	line-height: 1em;
	filter:drop-shadow(10px 10px 3px rgba(0,0,0,0.5));
}

.s-teal{
	position:relative;
	width:100%;
	/*background-color:rgb(0,140,140);*/
	background:#fff;
	box-shadow: 0 0px 10px rgba(0,0,0,1);
	padding:70px 0px;
}

.portfolio-wrapper{
	position:relative;
	display:flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
}

.portfolio-link{
	position:relative;
	width:450px;
	height:auto;
	border:1px solid #000;
	background:#fff;
	overflow:hidden;
}

.portfolio-link img{
	width:100%;
	height:100%;
	opacity:0.8;
	transition:all 0.7s ease-in-out;
	}

.portfolio-link img:hover{
	opacity:1;
	transform:scale(1.05,1.05);

}