@import url('https://fonts.googleapis.com/css?family=Open+Sans:300,700');
body {
	color: #eee;
	font-family: 'Open Sans', sans-serif;
	font-weight: 300;
	/*background: #efefef;*/
	background: #afbdc2;
}
h1#logo {
	font-family: 'Times New Roman', serif;
	font-size: 3.5em;
	font-weight: bold;
	color: #caebf2;
	text-shadow: 0 0 5px #5d696d;
}
p a {
	font-weight: 700;
	color: #eee;
}
hr {
	width: 50%;
	margin: 80px auto 60px;
}
#gradient {
	height: 400px;    
	background: -webkit-gradient(linear, left top, left bottom, from(#596569), to(#aac0c7), color-stop(0.75, #afbdc2));
	position: absolute;
	width: 100%;
	top: 0;
}
#wrapper {
	position: relative;
	top: 0;
}
header {
	padding: 30px 0;
}
ul li.nav-item {
	padding-left: 20px;
	padding-right: 20px;
	font-weight: bold;
}
ul li.nav-item a,
footer li a {
	color: #c7d4d9 !important;
}
ul li.nav-item.active a {
	color: #dbe8ed !important;
}
ul li.nav-item.active a:hover {
	color: #dbe8ed;
}
.container {
	max-width: 60em;
}
.portfolio {
	margin-bottom: 30px;
	border: 1px solid #eee;
	padding: 3px;
	/*border-radius: 3px;*/
	background: #fff;
	-webkit-animation: fadein 2s; /* Safari, Chrome and Opera > 12.1 */
	   -moz-animation: fadein 2s; /* Firefox < 16 */
		-ms-animation: fadein 2s; /* Internet Explorer */
		 -o-animation: fadein 2s; /* Opera < 12.1 */
			animation: fadein 2s;
}
.shadow-effect
{
	position: relative;
}
.shadow-effect:before, .shadow-effect:after
{
	z-index: -1;
	position: absolute;
	content: "";
	bottom: 15px;
	left: 10px;
	width: 50%;
	top: 80%;
	max-width:300px;
	background: #777;
	box-shadow: 0 15px 10px #777;
	transform: rotate(-3deg);
}
.shadow-effect:after
{
	transform: rotate(3deg);
	right: 10px;
	left: auto;
}
#portfolio {
	margin-bottom: 50px;
}
#info {
	margin-bottom: 50px;
}
#about-text {
	margin-bottom: 50px;
}
ul.service-list li {
	margin-bottom: 10px;
}
footer {
	padding: 50px 0 0;
	background: #909a9e;
}
footer ul {
	list-style: none;
}
footer ul li a, footer ul li a:hover {
	text-decoration: none;
}
footer ul li, footer ul li a {
	color: #373d3f !important;
	font-weight: bold !important;
}
footer #colophon {
	margin-top: 30px;
	background: #767f83;
}
footer #colophon p {
	margin-top: 15px;
	font-size: .75em;
}
footer #colophon p, footer #colophon p a {
	color: #a8b8bd;
}
footer #colophon p a:hover {
	text-decoration: none;
}
.arrow{
	position: absolute;
	top: 220px;
	transform: translate(-50%,-50%);
	width: 0;
}
.arrow span{
	display: block;
	width: 15px;
	height: 15px;
	border-bottom: 5px solid #caebf2;
	border-right: 5px solid #caebf2;
	transform: rotate(45deg);
	margin: -10px;
	animation: animate 2s infinite;
}
.arrow span:nth-child(2){
	animation-delay: -0.2s;
}
.arrow span:nth-child(3){
	animation-delay: -0.4s;
}
@keyframes animate {
	0%{
		opacity: 0;
		transform: rotate(45deg) translate(-20px,-20px);
	}
	50%{
		opacity: 1;
	}
	100%{
		opacity: 0;
		transform: rotate(45deg) translate(20px,20px);
	}
}
@keyframes fadein {
	from { opacity: 0; }
	to   { opacity: 1; }
}
/* Firefox < 16 */
@-moz-keyframes fadein {
	from { opacity: 0; }
	to   { opacity: 1; }
}
/* Safari, Chrome and Opera > 12.1 */
@-webkit-keyframes fadein {
	from { opacity: 0; }
	to   { opacity: 1; }
}
/* Internet Explorer */
@-ms-keyframes fadein {
	from { opacity: 0; }
	to   { opacity: 1; }
}
/* Opera < 12.1 */
@-o-keyframes fadein {
	from { opacity: 0; }
	to   { opacity: 1; }
}
@media only screen and (min-width: 40.063em) and (max-width: 64em) { /* tablet */
	ul li.nav-item {
		font-size: .7em;
	}
	.bucket {
		padding: 0 50px 20px;
	}
}
@media only screen and (max-width: 40em) { /* mobile */
	h1#logo {
		font-size: 2.5em;
	}
	footer ul {
		padding-left: 0;
	}
	footer ul li {
		text-align: center;
	}
	.arrow{
		top: 360px;
	}
}