@media (max-width: 500px) {
  .blogentry h2 {
  	padding: 0;
  	margin: 0;
  	font-family: "SourceSansPro";
  	font-weight: 100;
  	font-size: 14px;
  	color: #FFF;
  	text-transform: uppercase;
    word-wrap:break-word;
  }

  .blogentrydescription h2 p {
  	display: block;
  	margin-left: 5px;
    margin-top: 0;
    padding-top: 3px;
  	font-size: 12px;
  }
}

@media (min-width: 500px) and (max-width: 900px) {
  .blogentry h2 {
  	padding: 0;
  	margin: 0;
  	font-family: "SourceSansPro";
  	font-weight: 100;
  	font-size: 22pt;
  	color: #FFF;
  	text-transform: uppercase;
  }

  .blogentrydescription h2 p {
  	display: block;
  	margin-left: 5px;
    margin-top: 0;
    padding-top: 3px;
  	font-size: 18px;
  }
}

.blogentry {
	width: 100%;
	height: 250px;
	margin: 0;
	padding: 0;
	position: relative;
}


.loadingentry {
	width: 100%;
	height: 150px;
	margin: 0;
	padding: 0;
	background: #424242;
	position: relative;
}

.loadingentry h2 {
	font-family: "SourceSansPro";
	font-size: 22px;
	color: #fff;
	font-weight: 100;
	text-transform: uppercase;
	text-align: center;
	margin: 0;
	padding: 0;
	position: absolute;
	top: 20px;
	left: 5px;
	right: 5px;
}

.loadingentry i {
	color: #fff;
	text-align: center;
	margin: 0;
	padding: 0;
	position: absolute;
	top: 70px;
	left: calc(50% - 30px);
}

.blogentryimage1 {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	width: 50%;
	background: rgba(0, 0, 0, 0.15);
}

.blogentryimage2 {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	width: 50%;
	background: rgba(0, 0, 0, 0.15);
}

.blogentry img {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	max-width: 100%;
	max-height: 100%;
}

.blogentrycontent1 {
	position: absolute;
	top: 0;
	left: 50%;
	right: 0;
	bottom: 0;
}

.blogentrycontent2 {
	position: absolute;
	top: 0;
	left: 0;
	right: 50%;
	bottom: 0;
}

.blogentrydescription {
	position: absolute;
	top: 10px;
	left: 5px;
	right: 5px;
	bottom: 40px;
}

.blogentryreadmore {
	position: absolute;
	bottom: 10px;
	left: 10px;
	right: 10px;
	height: 20px;
  display: none;
}

.blogentryreadmore p {
	margin: 0;
	padding: 0;
	font-family: "SourceSansPro";
	font-size: 18px;
	color: #cccccc;
	cursor: pointer;
}

.blogentrydescription p {
  margin: 0;
  margin-top: 5px;
  padding: 0;
  font-family: "SourceSansPro";
  font-size: 18px;
  color: #FFF;
  display: none;
}

#maintextblog {
	background: #3b526a;
	position: absolute;
	top: 12.5%;
	left: 100%;
	width: 100%;
	bottom: 0;
	overflow-x: auto;
	padding: 0;
	margin: 0;
	font-family: "SourceSansPro";
	font-size: 18px;
	color: #FFF;
}

#maintextblog a {
  text-decoration: none;
  color: #bbbbbb;
}

#maintextblog h1 {
	padding: 0;
  padding-top: 10px;
  padding-left: 10px;
  padding-right: 10px;
	margin: 0;
	font-family: "SourceSansPro";
	font-size: 36px;
	color: #FFF;
	text-transform: uppercase;
}

#maintextblog p {
	margin: 0;
	margin-top: 5px;
	padding: 10px;
	font-family: "SourceSansPro";
	font-size: 18px;
	color: #FFF;
  text-align: left !important;
  line-height: 1.2 !important;
}

.articleblogin {
	animation-name: blogin;
	animation-duration: 1s;
	animation-fill-mode: forwards;
}

.articleblogout {
	animation-name: blogout;
	animation-duration: 1s;
	animation-fill-mode: forwards;
}

@keyframes blogin {
	from {
		left: 100%;
	}
	to {
		left: 0;
	}
}

@keyframes blogout {
	from {
		left: 0;
	}
	to {
		left: 100%;
	}
}
