html {
	height: 100%;
}

body {
    background: #333;
	margin: 0;
	padding: 0;
	font-family: 'Pangolin', cursive;
	font-size: 14px;
}


h1 {color:#ffc226;
    font-family: 'Titan One', cursive;
	font-size: 2.5rem;
	font-weight: 300;
	line-height: 1;
	padding: 0;
	margin: 0 0 .5em 0;
    margin-bottom: 20px;
}

h2 {
    color: #ededed;
	font-size: 1.6rem;
	font-weight: 300;
	line-height: 1;
	padding: 0;
	margin: 0 0 1em 0;
}

h3 {
    font-family: 'Titan One', cursive;
    color: #ffc226;
	font-size: 1rem;
	font-weight: 300;
	line-height: 1;
	padding: 0;
	margin: 0 0 .5em 0;
}

p {
    color: #ededed;
	font-size: 1rem;
	font-weight: 300;
	line-height: 1.3;
	padding: 0;
	margin: 0 0 0 0;
}


header {
	text-align: center;
	padding: 60px 30px 40px 30px;
}

section {
	max-width: 1200px;
	padding: 0 30px;
	margin: auto;
}

.portfolio_item {
    
    border-radius: 10px;
	display: inline-block;
	box-sizing: border-box;
	padding: 20px 20px 30px 20px;
	margin: 0 10px;
	width: calc(33% - 20px);
			height: 500px;
/*	border: 1px solid #f7f7f7;*/
	transition: all .4s;
	text-decoration: none;
	background-color: #595959;
    
	-webkit-box-shadow: 0px 2px 5px 0px rgba(0,0,0,0.1);
	-moz-box-shadow: 0px 2px 5px 0px rgba(0,0,0,0.1);
	box-shadow: 0px 2px 5px 0px rgba(0,0,0,0.1);
	vertical-align: top;
}

.portfolio_item:hover {
    filter: none;
    background-color:#ffc226;
	-webkit-box-shadow: 0px 0px 0px 8px #ededed, 6px 5px 0px 5px rgba(0,0,0,0); 
box-shadow: 0px 0px 0px 8px #ededed, 6px 5px 0px 5px rgba(0,0,0,0);}


.portfolio_item:hover .portfolio_image {
    filter: none;
}

.portfolio_item:hover h3 {
    color: #333;
}
.portfolio_item:hover p {
    color:#595959;
}

.portfolio_image {
    filter: grayscale(100%);
    border-radius: 5px;
	width: 100%;
	height: 300px;
	background-color: #ededed;
	margin-bottom: 15px;
	background-size: cover;
	background-position: center;
	background-repeat: none;
    
}

footer {
    color: #ededed;
    background-color:#595959;
    margin-top: 50px;
    font-family: 'Pangolin', cursive;
	position: relative;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 10px 10px 10px 10px;
	text-align: center;
	font-size: 1rem;
}

footer a {
	color: #7fc0b7;
	text-decoration: underline;
}

footer a:hover {
	color:#ededed;
}


.social_icons {
	font-size: 1.4rem;
	margin-top: 10px;
}

.fa-facebook-square {
	color: #3b5998;
}

.fa-linkedin-square {
	color: #8cc3e1;
}
.fa-linkedin-square:hover{
	color:#ededed;
}


@media screen and (max-width: 1000px) {
	.portfolio_item {
		width: calc(50% - 20px);
		height: 550px;
		margin-bottom: 20px;
        padding: 20px 20px 100px 20px;
	}

	footer {
		position: relative;
		bottom: auto;
		left: auto;
		right: auto;
		padding: 60px 30px 30px 30px;
	}
}

@media screen and (max-width: 580px) {
	.portfolio_item {
        padding: 20px 20px 100px 20px;
        height: 500px;
		display: block;
		width: 100%;
        margin-left: 0;
        margin-right: 0;
			margin-bottom: 20px;
	}

	h2 {
		line-height: 1.3;
		margin-bottom: .5em;
	}

}
/*
@media screen and (min-height: 780px) {
	footer {
		position: relative;
		bottom: auto;
		left: auto;
		right: auto;
	}

}*/