html ,body {
	margin: 0;
}

body a {
	text-decoration: none;
}

body a:hover {
    color: #0697ae;
}

.sidebar {
	right: 0;
	position: absolute;
	height: 100%;
	width: 100px;
}


.content{
	width: calc(100% - 100px);
	margin-right: 100px;
	position: relative;
}


#article-wrapper {
	width: 50%;
	float: right;
}

.article-holder {
	padding-top: 100px;
	padding-bottom: 85px;
	max-width: 480px;
}

.article-item-holder .article-content .article-title {
	font-family: montserrat,sans-serif,Arial;
}

.article-title {
	margin-top: 0px;
	font-size: 48px;
	line-height: 50px;
}

.featured-image-holder {
	width: 50%;
	float: left;
}

.profile-image{
	position: fixed;
	height: 100%;
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	
}

.monserrat, .job-title {
	font-family: montserrat,sans-serif,Arial;
}
 
.center-relative {
	margin-right: auto;
	margin-left: auto;
}

.relative {
	position: relative;
}

.excerpt { 
	font-family: libre baskerville,sans-serif,Arial;
	font-size: 20px; 
	line-height: 28px;
	color: #5d5d5d;
}

.upper-case {
	text-transform: uppercase;
}

.social-list {
	text-align: center;
	color: #5b5b5b;
	font-size: 30px;
}

.social-list a {
	color: #5b5b5b;
}

.svg-inline {
	color: #5b5b5b;
	height: 50px;
	width: 50px;
	margin: 20px;
}

.profile-image-small{
	display: none;
}



/* 
  ##Device = Desktops
  ##Screen = 1281px to higher resolution desktops
*/
@media (min-width: 1281px) {
  }
  
  /* 
	##Device = Laptops, Desktops
	##Screen = B/w 1025px to 1280px
  */ 
  @media (min-width: 1025px) and (max-width: 1280px) {
  }
  
  /* 
	##Device = Tablets, Ipads (portrait)
	##Screen = B/w 768px to 1024px
  */  
  @media (min-width: 768px) and (max-width: 1024px) {
  }
  
  /* 
	##Device = Tablets, Ipads (landscape)
	##Screen = B/w 768px to 1024px
  */
  @media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
  }
  
  /* 
	##Device = Low Resolution Tablets, Mobiles (Landscape)
	##Screen = B/w 481px to 767px
  */
  @media (min-width: 481px) and (max-width: 767px) {

    }

  /* 
	##Device = Most of the Smartphones Mobiles (Portrait)
	##Screen = B/w 320px to 479px
  */
    @media (min-width: 320px) and (max-width: 480px) {
		.profile-image-small{
			display: block;
			position: fixed;
			height: 140px;
			background-size: cover;
			background-position: center center;
			background-repeat: no-repeat;
		}

		.profile-image {
			display: none;
		}

}

