html, body {
	font-family: "Roboto", sans-serif;
}

body {
	padding-top: 50px;
}

textarea {
	resize: vertical;
}

.navbar {
	min-height: 100px;
	border-bottom-color: #eee;
	border-bottom-width: 2px;
	background-color: #fff;
	color: #333;

}

.navbar-nav {
	margin-top: 25px;
}

.navbar-collapse[aria-expanded=true] .navbar-nav {
	margin-top: 0;
}

.navbar-nav li {
	border-left: 1px #eee solid;
	font-size:  16px;

}

.navbar-nav li:last-child {
	border-right: 1px #eee solid;
}

.navbar-nav li:hover {
	background-color: #eee;
}

.navbar-toggle {
	margin-top: 25px;
}

.navbar-default .navbar-toggle .icon-bar {
	background-color: #333;
}

.page-header {
	border: none;
	font-weight: 500;
	font-size: 48px;
}

.fa-nav>li>a {
	padding: 5px 10px;
}

.fa-nav i {
	line-height: 40px;
	font-size: 40px;
	color: #666;

}

h1 {
	font-weight: 700;
}

h2{
	font-weight:  500;
}

p {
	font-size: 24px;
	font-weight: 500;
}

.modal-body p {
	font-size: 16px;
	font-weight: 400;
}

.btn-dark{
	background-color: #333;
	color: #fff;
	border: 2px solid #333;
}

.btn-dark:hover {
	color: #ccc;
}

.btn-dark:active {
	border: 2px solid #eee;
}


.portfolio-clickable-img {
	margin: 25px 0;
}

.portfolio-clickable-img:hover {
	border: #aaa 2px solid;
	background-color: #eee;
}

.modal-mini-title {
	font-weight: 700;
}

.top-section, .about-me-section, .portfolio, .timeline-section, .contact {
	min-height: 800px;
	padding-top: 100px;
	padding-bottom: 50px; 
}

.top-section, .timeline-section, .contact {
	background-color: #fff ;
	color: #333;
}

.about-me-section, .estimate, .footer {
	background-color: #333;
	color: #fff;
}

.about-me-section h2 a {
	color: #fff;
}

.footer {
	padding-top: 25px;
	padding-bottom: 25px;
}

.footer p {
	font-size: 16px;
}

.likes, .skills {
	font-size: 24px;
}

.about-me-section ul {
	list-style-type: none;
	padding-left: 0;
	margin-left: 0;
}

.scroll-link, .scroll-link:visited {
	color: #333;
}

.scroll-link:hover, .scroll-link:active {
	color: #000;
}

a .fa-inverse:hover {
	color: #fff;
}

.tagline-important {
	font-weight: 900;
}


.panel-body {
	min-height: 450px;
}

/* Credit: https://codepen.io/k-ya/pen/bwPBjY */

.entries:before {
	content: '';
	position: absolute;
	width: 3px;
	top: 0;
	bottom: 0;
	left: 50%;
	background-color: #333;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	height: 100%;
	/*min-height: 200000px;  CHANGE THIS VALUE TO CHANGE HEIGHT OF LINE, NEED TO FINE BETTER SOLUTION */
}

.entries {
	width: calc(100% - 80px);
	max-width: 900px;
	margin: auto;
	display: table;
	position: relative;
}
.entries .entry {
	width: calc(50% - 80px);
	float: left;
	padding: 20px;
	clear: both;
}
.entries .entry:not(:first-child) {
 	margin-top: -60px;
}
.entries .entry .title {
	font-size: 32px;
	margin-bottom: 12px;
	position: relative;
	color: #333;
	font-weight: bold;
	text-align: center;
	font-style: italic;
}
.entries .entry .title:before {
	content: '';
	position: absolute;
	width: 8px;
	height: 8px;
	border: 4px solid #333;
	background-color: #1D1D1D;
	border-radius: 100%;
	top: 50%;
	-webkit-transform: translateY(-50%);
	      transform: translateY(-50%);
	right: -104px;
	z-index: 1000;
}
.entries .entry .title.big:before {
	width: 24px;
	height: 24px;
	-webkit-transform: translate(8px, -50%);
	    transform: translate(8px, -50%);
}
.entries .entry .body {
	color: #333;
}
.entries .entry .body p {
	line-height: 1.4em;
	font-weight: 400;
}

.entries .entry .body h2 {
	font-weight: 900;
	text-align: center;
}
.entries .entry:nth-child(2n) {
	float: right;
}
.entries .entry:nth-child(2n) .title:before {
	left: -104px;
}
.entries .entry:nth-child(2n) .title.big:before {
    -webkit-transform: translate(-8px, -50%);
        transform: translate(-8px, -50%);
}
