html, body {
	float: left;
	width: 100%;
	height: 100%;
	padding: 0;
	margin: 0 auto;
	font-family: 'Lato', sans-serif;
	color: #fff;
	background: #03a9f4;
}

h1, h2, h3, h4, h5, h6, p, ul, li, ol {
	padding: 0;
	margin: 0 auto;
}

h2 {
	margin: 50px 0px 20px 0px;
	font-size: 18px;
	font-weight: 400;
	color: #ccc;
}

h3 {
	float: left;
	width: 100%;
	margin: 50px 0px 20px 0px;
	font-size: 16px;
	font-weight: 400;
	color: #fff;
	margin-top: 20px;
	margin-bottom: 100px;
}

.container-fluid, .row {
	padding: 0;
}

main {
	float: left;
	width: 100%;
	height: 100%;
}

.full-screen {
	float: left;
	width: 100%;
	height: 100%;
}

.half-width-fixed {
	position: fixed;
	float: left;
	width: 50%;
}

.half-width {
	overflow: auto;
	float: right;
	width: 50%;
	height: 100%;
}

.profile-pic {
	float: left;
	width: 100%;
	height: 100%;
}

.profile-pic img {
	position: absolute;
	float: left;
	width: 100%;
}

.main-heading {
	width: 100%;
	max-width: 640px;
	height: 100%;
	text-align: center;
	display: block;
	margin: 0 auto;
}

p {
	width: 100%;
	text-align: center;
	font-size: 32px;
}

span {
	font-weight: 300;
	color: #ccc;
}

.main-heading h1 {
	width: 100%;
	text-align: center;
	font-size: 48px;
	margin-top: 100px;
	margin-bottom: 50px;
}

h1 span {
	text-align: center;
	font-size: 32px;
	font-weight: 300;
	color: #ccc;
}

.typewrite {
	width: 100%;
	font-weight: 400;
	text-align: center;
	font-size: 38px;
	color: #ffeb3b;
}

.typewrite span {
	color: #ffeb3b;
}

.social-icon {
    text-align: center;
    margin: 100px 0px;
}

.social-icon ul {
	display: inline-block;
	margin: 0;
	padding: 0;
    zoom:1;
	*display: inline;
	list-style: none;
}

.social-icon li {
	float: left;
	padding: 2px 5px;
}

.social-icon img {
	width: 24px;
	filter: brightness(0) invert(1);
}

.clients-logo {
	float: left;
	width: 100%;
}

.clients-logo .img {
	position: relative;
	float: left;
	width: 150px;
	height: 60px;
	background: #fff;
	padding: 5px;
	margin: 10px 0px 0px 10px;
	box-sizing: border-box;
	border-radius: 4px;
}

.clients-logo .img img {
    max-width: 90%;
    max-height: 50px;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    right: 0;
    left: 0;
}

.about-me {
	float: right;
	width: 100%;
	height: 100%;
	background: #009688;
}

.content {
	padding: 10%;
}

.content h2 {
	font-size: 32px;
}

.content p {
	margin: 80px 0px;
	font-size: 18px;
	font-weight: 300;
	color: #d4d4d4;
	text-align: justify;
}

.content a {
	color: #fff;
	font-weight: 700;
	text-decoration: none;
}

.number {
	width: 242px;
	height: 100px;
	float: left;
	border:2px solid #e0e0e0;
	border-radius: 5px;
	margin: 5px;
}

.number p {
	margin: 0 auto;
	padding: 0;
	float: left;
	width: 100%;
	color: #fff;
	font-size: 48px;
	font-weight: 700;
	text-align: center;
	line-height: 80px;
}

.number p span {
	float: left;
	width: 100%;
	font-weight: 400;
	color: #fff;
	font-size: 10px;
	text-transform: uppercase;
	text-align: center;
	line-height: 10px;
}

.scroll-down {
	position: relative;
	width: 20px;
	height: 40px;
	margin-left: 48%;
	border:2px solid #ececec;
	border-radius: 100px;
	-webkit-animation: mover 1s infinite  alternate;
    animation: mover 1s infinite  alternate;
}

.scroll-down .border {
	width: 0px;
	height: 10px;
	border:1px solid #fff;
	margin-left:9px;
	margin-top: 20px;
	-webkit-animation: mover 1s infinite  alternate;
    animation: mover 1s infinite  alternate;
    border-radius: 100px;
}

@-webkit-keyframes mover {
    0% { transform: translateY(0); }
    100% { transform: translateY(-10px); }
}
@keyframes mover {
    0% { transform: translateY(0); }
    100% { transform: translateY(-10px); }
}

@media only screen and (max-width: 600px) {

	.full-screen {
		position: absolute;
		float: left;
		width: 100%;
		height: 100%;
		overflow: auto;
	}

	.half-width-fixed {
		position: relative;
		float: left;
		width: 100%;
	}

	.half-width {
		overflow: hidden;
		float: left;
		width: 100%;
		height: auto;
		text-align: center;
	}

	.half-width img {
		height: 100;
	}

	.main-heading {
		position: relative;
		float: left;
	}

	.main-heading h1 {
		font-size: 32px;
		padding: 50px 0px 50px 0px;
		margin: 0 auto;
	}

	h1 span {
		color: #ccc;
	}

	.content h2 {
		float: left;
	}

	.content h2 span {
		color: #ccc;
	}

	span {
		font-size: 24px;
		color: #ffeb3b;
	}

	.number {
		width: 46%;
		margin: 0px 1% 20px 1%;
	}

	.scroll-down {
		position: absolute;
		top: 0px;
		margin-top: 50px;
		z-index: 9999;
		border:2px solid #333;
	}

	.clients-logo .img {
		width: 45%;
	}

}