@charset "utf-8";
/* CSS Document */

.intro{
	height: 85vh;
	display: flex;
}
.box1{
	grid-column: 2/5;
	grid-row: 1/2;
	margin: auto 0 auto 20%;
}
.box2{
	grid-column: 1/3;
	background-position:center;
	background-size:160%;
	width: 100%;
	height: 40vh;
	grid-row: 1/2;
}
.box1 .main{
	font-size: 2rem;
}
.box1 .main span{
	font-size: 2rem;
	text-decoration: underline;
}
.box1 .main span:hover{
	background-color: yellow;
	transition-duration: 0.25s;
	transition-timing-function: ease-in;
	}
.box1 .mini{
	font-size: 1rem;
	margin-bottom: 0.5rem;
}
.box1 .bold{
	text-align: end;
	margin-top: 2rem;
	font-size: 1.5rem;
}
.bold{
	font-weight: bolder;
}

.learnMore{
	float: right;
	margin-top: 100px;
}
.blackLine{
	grid-column: 2/3;
}

.projects{
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	margin: auto;
	justify-content: space-between;
}
.project{
	width: 48%;
	margin: 2rem 0;
	box-shadow: 0 0 10px 0 rgba(0,0,0,0.32);
}
.project .picture{
	background-position: center;
	background-size: cover;
	height: 400px;
}
.project .details{
	width: 100%;
	height: auto;
	padding: 0 1.5rem 1.5rem;
	box-sizing: border-box;
	
}
.project .details p,.project .details h3{
	color: black;
	display: inline;
} 
/*
.project .details p:hover ,.project .details h3:hover{
	background: #fcf113;
} 
*/
.project .details p{
	font-size: 1rem;
}
.project .details h3{
	font-size: 2rem;
}
.project .details span{
	display: block;
	margin-top: 1rem;
	width: 100%;
}
.project .pdf{
	float: right;
	margin: 1rem;
	font-weight: bold;
}

/*.project .blackBottom{
	display: block;
	height: 5px;
	width: 100%;
	background-color: black;
	margin-top: 1rem;
}*/
.CTA{
	margin: 100px 0;
	width: 100%;
	display: flex;
	align-content: center;
	justify-content: center;
	font-size: 1rem;
}

@media only screen and (max-width:1200px){
	.project{
		width: 100%;
	}
	.box1 .main span{
		background-color: yellow;
	}
}
@media only screen and (max-width:800px){
	.project{
		width: 100%;
		margin-top: 1rem;
	}
	.projects.container{
		margin: auto;
		max-width: 80%;
	}
	.box1{
		font-size: 1rem;
		grid-column: 2/5;
	}
	.learnMore{
		margin-top: 50px;
	}
	.intro{
		
	}
	.CTA{
		margin: 50px auto;
	}
}
@media only screen and (max-width:425px){
	.project .details h3{
	font-size: 1.5rem;
	}
	.box1 .main, .box1 .main span{
		font-weight: bold;
		font-size: 1.5rem;
	}
	
	.box1 .bold{
		font-size: 1rem;
	}
	.project .picture{
		height: 300px;
	}
}