body {
	margin: 0;
	padding: 0;
	font-family: sans-serif;
}



			/* Header CSS */

#header {
	height: 100vh;
	background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url(img/bg3.jpg);
	background-position: center;
	background-size: cover;
	background-attachment: fixed;
}

.user-box {
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	position: absolute;
}

.user-box img {
	border-radius: 50%;
	height: 150px;
	width: 160px;
	border: 2px solid #fff;
}

.user-box h1 {
	color: #fff;
	font-weight: bold;
	margin: 10px;
}

.user-box p {
	color: #fff;
}

.social-icons{
	position: absolute;
	top: 68%;
	left: 50%;
	transform: translate(-50%, 50%);
	margin: 0;
	padding: 0;
	display: flex;
	position: absolute;
}

.social-icons li{
	list-style: none;
}

.social-icons a{
	display: block;
	position: relative;
	width: 50px;
	height: 50px;
	line-height: 50px;
	font-size: 20px;
	text-align: center;
	background: transparent;
	text-decoration: none;
	color: #fff;
	margin: 0 10px;
	transition: .5s;
}

.social-icons a span{
	position: absolute;
	transition: transform .5s;
}

.social-icons a span:nth-child(1),
.social-icons a span:nth-child(3){
	width: 100%;
	height: 1px;
	background: #fff;
}

.social-icons a span:nth-child(1){
	top: 0;
	left: 0;
	transform-origin: right;
}

.social-icons a:hover span:nth-child(1){
	transform: scaleX(0);
	transform-origin: left;
	transition: transform .5s;
}

.social-icons a span:nth-child(3){
	bottom: 0;
	left: 0;
	transform-origin: left;
}

.social-icons a:hover span:nth-child(3){
	transform: scaleX(0);
	transform-origin: right;
	transition: transform .5s;
}

.social-icons a span:nth-child(2),
.social-icons a span:nth-child(4){
	width: 1px;
	height: 100%;
	background: #fff;
}

.social-icons a span:nth-child(2){
	top: 0;
	left: 0;
	transform: scaleY(0);
	transform-origin: bottom;
}

.social-icons a:hover span:nth-child(2){
	transform: scaleY(1);
	transform-origin: top;
	transition: transform .5s;
}

.social-icons a span:nth-child(4){
	top: 0;
	right: 0;
	transform: scaleY(0);
	transform-origin: top;
}

.social-icons a:hover span:nth-child(4){
	transform: scaleY(1);
	transform-origin: bottom;
	transition: transform .5s;
}



.scroll-btn {
	bottom: 30px;
	position: absolute;
	left: 50%;
	transform: translateX(-50);
	border: 1px solid #fff;
	padding: 10px 10px 20px;
	border-radius: 30px;
}

.scroll-bar span {
	border: 2px solid #fff;
	font-size: 10px;
	border-radius: 30px;
}

.scroll-bar {
	animation: mover 1s infinite alternate;
}

@keyframes mover {
	0% {transform: translateY(0);}
	100% {transform: translateY(10px);}
}





				/* About */

.about {
	padding-top: 100px;
	margin-bottom: 50px;

}

.profile-img {
	height: 100%;
	width: 100%;
}

.nav-bar {
	top: 0;
	position: sticky;
	z-index: 2;
}

.navbar {
	background-color: #000;
}

.navbar-brand img {
	height: 50px;
}

.nav-bar .fa-bars {
	font-size: 35px;
	color: #fff;
}

.navbar-toggler {
	outline: none !important;
}

.navbar-nav {
	float: right;
	text-align: right;
}

.nav-link {
	color: #fff !important;
}

/* Skills */

.skills-bar p {
	margin-bottom: 6px;
	font-weight: 600;
}

.progress {
	border-radius: 16px !important;
	margin-bottom: 10px;
}

.progress-bar {
	border-radius: 16px;
	background: #000 !important;
}




			/* Resume */

.resume {

	padding-top: 50px;
	padding-bottom: 30px;
	background: #f9f9f9;
}

.resume h3 {
	margin-bottom: 50px;
}

.timeline {
	list-style-type: none;
	position: relative; 
}

.timeline:before {
	content: '';
	background: #555;
	display: inline-block;
	position: absolute;
	left: 29px;
	width: 2px;
	height: 100%;
	z-index: 1;
}

.timeline li {
	margin-top: 20px;
	margin-bottom: 20px;
	margin-left: 20px;
	background: #fff;
}

.timeline li h4{
	background-color: #000;
	padding: 5px 0 5px 20px;
	color: #fff;
	font-size: 15px;
}

.timeline li h4 span {
	font-weight: bold;
	color: #ccc;
}

.timeline li:before {
	content: '';
	background: #fff;
	display: inline-block;
	position: absolute;
	border-radius: 50%;
	border: 3px solid #000;
	left: 20px;
	width: 20px;
	height: 20px;
	z-index: 1;
}

/* Services */

.services {
	padding-top: 50px;
	padding-bottom: 50px;
}

.services h1 {
	margin-bottom: 15px;
}

.services-box {
	background: #f9f9f9;
	padding: 10px;
	margin-top: 20px;
	border-top-right-radius: 50px;
	border-bottom-left-radius: 50px;
}

.services-box .fa {
	margin: 0 10px;
	font-size: 20px;
}

.services-box span {
	margin: 3px;
	font-size: 20px;
	font-weight: bold;
}

.services-box p {
	font-size: 15px;
	margin-top: 20px;
	color: #777;
}

.services-box:hover {
	background: #000;
	color: #fff;
	border-top-right-radius: 0;
	border-bottom-left-radius: 0;
	border-bottom-right-radius: 50px;
	border-top-left-radius: 50px;
	transition: 1s;
}

/* Contact */

.contact {
	padding-top: 50px;
	background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), url(img/bg1.jpg);
	background-position: center;
	background-size: cover;
	background-attachment: fixed;
	color: #fff;
}

.contact .row {
	padding: 30px 0;
	font-size: 22px;
}

.contact .col-md-4 .fa {
	padding: 10px;
	font-size: 40px;
}

.contact .btn {
	padding: 10px 25px 10px 25px;
	margin: 5px;
	border-radius: 30px;
	border: 2px solid #fff;
	background: transparent;
}

.contact .btn:focus{
	box-shadow: none !important;
}

.contact .btn:hover{
	border: 2px solid #777 !important;
	background: #777 !important;
	transition: 0.06s;
}

.contact .btn .fa{
	margin-right: 10px;
}

.footer {
	background: #000;
	height: 50px;
	margin-top: 50px;
	color: #fff;
	padding-top: 10px;
}

.fa-heart {
	color: red;
}