body
{
	margin: 0;
	padding: 0;
	font-family: sans-serif;
}

/*------- Header CSS ------*/
#header
{
	height: 100vh;
	background: linear-gradient(rgba(0,0,0,100), rgba(0,0,0,0.6)), url(img/code_bkgd.jpg);
	background-position: center;
	background-size: cover;
	background-attachment: fixed;
}
.user-box
{
	top: 50%;
	left: 50%;
	transform: translate(-50%,-60%);
	position: absolute;
}
.user-box img
{
	border-radius: 50%;
	width: 300px;
	border: 2px solid #6caed5;
}
.user-box h1
{
	color: #fff;
	font-weight: bold;
	margin: 10px;
}
.user-box p
{
	color: #fff;
}
.scroll-btn
{
	bottom: 30px;
	position: absolute;
	left: 50%;
	transform: translate(-50%, -10%);
	border: 2px 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 ------*/
.col-md-6 h3
{
	font-weight: 800;
}
.about .row
{
	margin: -40px;
}
.about
{
	padding-top: 100px;
	/*padding-bottom: 50px;*/
	margin-bottom: 130px;
}
.profile-img
{
	height: 500px;
	margin-right: 70px;
	border: 2px solid #6caed5;
}
.nav-bar
{
	top: 0;
	position: sticky;
	z-index: 2;
}
.navbar
{
	background-color: #D3D3D3;
}
.nav-bar .fa-bars
{
	font-size: 35px;
	color: #fff;
}
.navbar-toggler
{
	outline: none !important;
}
.skills-bar p
{
	margin-bottom: 6px;
	font-weight: 800;
}
.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;
	margin-bottom: 50px;
	margin-top: -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: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;
}

/*------- Clock ------*/
.ille
{
	display: flex;
	justify-content: center;
	min-height: 70vh;
	/*background: #091921;*/
	background: linear-gradient(rgba(0,0,0,0.8),rgba(0,0,0,0.6)), url(img/macbook_iphone_bkgd.jpg);
	background-position: center;
	background-size: cover;
	background-attachment: fixed;
}
.clock
{
	width: 350px;
	height: 350px;
	display: flex;
	justify-content: center;
	align-items: center;
	background: url(img/clock.png);
	background-size: cover;
	border: 4px solid #fff;
	transform: translateY(10%);
	border-radius: 50%;
	box-shadow: 0 -15px 15px rgba(255,255,255,0.05), 
				inset 0 -15px 15px rgba(255,255,255,0.05), 
				0 -15px 15px rgba(0,0,0,0.3), 
				inset 0 -15px 15px rgba(0,0,0,0.3);
}
.clock:before
{
	content: '';
	position: absolute;
	width: 15px;
	height: 15px;
	background: #fff;
	border-radius: 50%;
	z-index: 10000;
}
.clock .hour,
.clock .min,
.clock .sec
{
	position: absolute;
}
.clock .hour, .hr
{
	width: 160px;
	height: 160px;
}
.clock .min, .mn
{
	width: 190px;
	height: 190px;
}
.clock .sec, .sc
{
	width: 230px;
	height: 230px;
}
.hr, .mn, .sc
{
	display: flex;
	justify-content: center;
	position: absolute;
	border-radius: 50%;
}
.hr:before
{
	content: '';
	position: absolute;
	width: 8px;
	height: 80px;
	background: #ff105e;
	z-index: 10;
	border-radius: 6px 6px 0 0;
}
.mn:before
{
	content: '';
	position: absolute;
	width: 4px;
	height: 90px;
	background: #fff;
	z-index: 11;
	border-radius: 6px 6px 0 0;
}
.sc:before
{
	content: '';
	position: absolute;
	width: 2px;
	height: 150px;
	background: #fff;
	z-index: 12;
	border-radius: 6px 6px 0 0;
}

/*------- Contact Me ------*/
.contact h1
{
	font-weight: 800;
	padding-top: 10px;
	padding-bottom: 0px;
}
.contact
{
	background: linear-gradient(rgba(0,0,0,0.8),rgba(0,0,0,0.6)), url(img/macbook_iphone_bkgd.jpg);
	background-position: center;
	background-size: cover;
	background-attachment: fixed;
	color: #fff;
}
.contact .row
{
	padding: 10px 0;
	font-size: 22px;
}
.contact .col-md-4 .fa
{
	padding: 10px;
	font-size: 40px;
}
.contact .col-md-4 .gtlink
{
	color: #fff;
}
.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 #000 !important;
	background: #000 !important;
	transition: 0.6s;
}	
.footer
{
	background: linear-gradient(rgba(0,0,0,0.8),rgba(0,0,0,0.6)), url(img/macbook_iphone_bkgd.jpg);
	background-position: center;
	background-size: cover;
	background-attachment: fixed;
	color: #fff;
	padding-bottom : 1px;
}