* {
	padding: 0;
	margin: 0;
	font-family: sans-serif;
}
ul {
	position: fixed;
	width: 100%;
	background-color: rgba(0,0,0,.5);
	text-align: center;
	font-size: 20px;
	font-weight: bold;
	z-index: 9;
}
ul > li {
	display: inline;
	line-height: 70px;
	margin-left: 30px;
	margin-right: 30px;
}
ul > li > a {
	color: white;
	text-decoration: none;
	transition: color .2s;
}
ul > li > a:hover {
	color: #428bca;
	transition: color .2s;
}
header {
	display: table;
	width: 100%;
	height: 100vh;
	background-image: url('../img/background.jpg');
	background-position: center;
	background-size: cover;
	text-align: center;
}
header > div {
	display: table-cell;
	vertical-align: middle;
}
header > div > h2 {
	font-size: 32px;
	color: #BFC0BF;
	margin-bottom: 30px;
}
header > div > h1 {
	font-size: 48px;
	color: white;
}
.services {
	padding: 60px;
	background-color: #111417;
	color: white;
}
.services > h1 {
	font-size: 32px;
	padding-bottom: 20px;
	border-bottom: 3px solid #428bca;
}
.services > p {
	margin-top: 20px;
	font-size: 20px;
	line-height: 24px;
}
.price {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	flex-wrap: wrap;
}
.price > div {
	flex-basis: 31%;
	margin-top: 20px;
	padding: 20px 10px;
	border: 3px solid #428bca;
	border-radius: 5px;
	text-align: center;
}
.price > div > h1 {
	margin-bottom: 10px;
}
.price > div > p {
	font-size: 20px;
	line-height: 24px;
	margin-bottom: 10px;
}
.project {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	flex-wrap: wrap;
	margin-top: 20px;
}
.project > a {
	width: 20%;
	height: 240px;
	flex-basis: 20%;
	font-size: 30px;
	font-weight: bold;
	text-decoration: none;
	color: #428bca;
	text-align: center;
	line-height: 240px;
	text-shadow: 0 0 3px black;
	opacity: .9;
}
.project > a:hover {
	opacity: 1;
}
.project > a > img {
	display: none;
}
.technology {
	padding: 60px;
	background-image: url('../img/technology.jpg');
	background-size: cover;
	color: white;
}
.technology > h1 {
	font-size: 32px;
	padding-bottom: 20px;
	border-bottom: 3px solid #428bca;
}
.technology > p {
	margin-top: 20px;
	font-size: 20px;
	line-height: 24px;
}
.language {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	flex-wrap: wrap;
}
.language > div {
	flex-basis: 20%;
	margin: 1px;
	margin-top: 20px;
}
.language > div > h1 {
	margin-bottom: 10px;
	color: #FDC501;
}
.language > div > p {
	font-size: 20px;
	line-height: 24px;
	margin-bottom: 10px;
	color: #428bca;
}
footer {
	width: 100%;
	height: 20px;
	background-color: #428bca;
	padding: 20px 0;
	text-align: center;
	color: white;
}
.top {
	position: fixed;
	bottom: 20px;
	right: 20px;
	font-size: 24px;
	font-weight: bold;
	color: white;
	background-color: #428bca;
	box-shadow: 0 0 15px white;
	padding: 15px 20px;
	border-radius: 50%;
	text-decoration: none;
	transition: background-color, box-shadow .2s;
	z-index: 9;
}
.top:hover {
	background-color: #428bca;
	box-shadow: 0 0 15px #428bca;
	transition: background-color, box-shadow .2s;
}
body::-webkit-scrollbar {
	width: 5px;
}
body::-webkit-scrollbar-thumb {
	background-color: #428bca;
}
@media (max-width: 1240px) {
	header {
		height: 50vh;
	}
	.price {
		flex-direction: column;
	}
	.project {
		flex-direction: column;
	}
	.project > a {
		width: 100%;
		height: 400px;
		line-height: 400px;
		font-size: 96px;
	}
	.language {
		flex-direction: column;
	}
	.services p {
		font-size: 14px;
	}
	.price > div > p {
		font-size: 16px;
	}
	.technology > p {
		font-size: 14px;
	}
	.language > div > p {
		font-size: 16px;
		line-height: 30px;
	}
}