/*	Blog 1
/*----------------------------------------------------*/

.blog-1 .post {
	text-align: center;
	padding: 10px 0;
}

.blog-1 .post img {
	margin: 30px 0;
}

.fly {
  -webkit-transform: translateX(-200px);
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -o-transition: 0.4s;
  -ms-transition: 0.4s;
  transition: 0.4s;
}

.flyIn {
  -webkit-transform: translateX(0px);
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -o-transition: 0.4s;
  -ms-transition: 0.4s;
  transition: 0.4s;
}

.blogonepage:hover {
  background: #f7f7f7;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -o-transition: 0.4s;
  -ms-transition: 0.4s;
  transition: 0.4s;
  -webkit-transform: translateX(20px);
  -moz-transform: translateX(20px);
  -o-transform: translateX(20px);
  -ms-transform: translateX(20px);
  transform: translateX(20px);
  position: relative;
  z-index: 5000;
}

.post:hover {
  text-decoration: none;
}

.fa {
  margin-right: 5px;
}

.blogonepage {
    height: auto;
    overflow: hidden;
    background: #113a4e;
    position: relative;
    z-index: 0;
}
.blogonepage .inner {
  padding: 20px;
}
.blogonepage .inner .category {
  color: #F26743;
  font: 900 13px Lato;
  text-transform: uppercase;
}
.blogonepage .inner .date {
  font: 900 13px Lato;
  color: #9b9eab;
  margin-left: 5px;
}
.blogonepage .inner h2 {
  font: 900 24px Lato;
  text-transform: uppercase;
  margin-bottom: 18px;
  color: #f2563a;
}
.blogonepage .inner p {
  font: 400 14px Lato;
  line-height: 22px;
  color: #9b9eab;
}
.blogonepage .inner .read-more {
  color: #F26743;
  display: block;
  font: 900 13px Lato;
  position: relative;
  text-transform: uppercase;
}
.blogonepage .inner .read-more:hover {
  text-decoration: none;
}

a:active, a:focus {
  color: #F26743;
  text-decoration: none;
}







/*	Blog 1 MEDIA QUERIES
/*----------------------------------------------------*/

/* Small Devices, Tablets */
@media only screen and (min-width : 768px) {
	
	
	
}

/* Medium Devices, Desktops */
@media only screen and (min-width : 992px) {
	
	
	
}

/* Large Devices, Wide Screens */
@media only screen and (min-width : 1200px) {
	
	
	
}

