/* CSS Document */

* {
  box-sizing: border-box;
}

/* Style the body */
body {
  font-family: Arial, Helvetica, sans-serif;
  margin: 0;
}

/* Increase the font size of the heading */
.header h1 {
  font-size: 40px;
}

/* Sticky navbar - toggles between relative and fixed, depending on the scroll position. It is positioned relative until a given offset position is met in the viewport - then it "sticks" in place (like position:fixed). The sticky value is not supported in IE or Edge 15 and earlier versions. However, for these versions the navbar will inherit default position */

.topnav {
  z-index: 1;
  overflow: hidden;
  background-color: #0283d7;
  position: sticky;
  position: -webkit-sticky;
  top: 0;
  
}

.topnav a {
  float: left;
  display: block;
  color: #f2f2f2;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
}

.topnav a:hover {
  background-color: #ddd;
  color: black;
}

.topnav a.active {
  background-color: #4CAF50;
  color: white;
}

.topnav .icon {
  display: none;
}

.menunav {
margin-left: 20px;
}

@media screen and (max-width: 600px) {
  .topnav a:not(:first-child) {display: none;}
  .topnav a.icon {
    float: right;
    display: block;
  }
}

@media screen and (max-width: 600px) {
  .topnav.responsive {position: sticky;}
  .topnav.responsive .icon {
    position: absolute;
    right: 0;
    top: 0;
  }
  .topnav.responsive a {
    float: none;
    display: block;
    text-align: left;
  }
  .topnav a {
  margin-left: 0;
  }
  .menunav {
  margin-left: 0;
}
}

/* Column container */
.row {  
  display: -ms-flexbox; /* IE10 */
  display: flex;
  -ms-flex-wrap: wrap; /* IE10 */
  flex-wrap: wrap;
}

/* Create two unequal columns that sits next to each other */
/* Sidebar/left column */
.side {
  -ms-flex: 30%; /* IE10 */
  flex: 30%;
  background-color: #f1f1f1;
  padding: 20px;
}

/* Main column */
.main {   
  -ms-flex: 70%; /* IE10 */
  flex: 70%;
  background-color: white;
  padding: 20px;
}

/* Fake image, just for this example */
.fake img {
  background-color: #0283d7;
  width: 100%;
  padding: 2px;
  object-fit: cover;
  object-position: center right;
}

.post img {
    border: 2px solid;
	width: 50%;
	float: left;
	margin-right: 10px;
	object-fit: cover;
    object-position: center right;
}
@media (max-width: 600px) {
.post img {
    border: 2px solid;
	width: 100%;
	object-fit: cover;
    object-position: center right;
	margin-bottom:10px;
   }
.fake img {
  background-color: #0283d7;
  width: 320px;
  padding: 2px;
  object-fit: cover;
  object-position: center right;
  }
}

.responsive {
  width: 100%;
  height: auto;
}

.read-more-btn{
background:#666666;
border-radius: 10px;
color: white;
padding: 10px;
}

/* Footer */
.footer {
  padding: 20px;
  text-align: center;
  background: #fff;
}
.site-footer
{
  padding:5px 0 20px;
  font-size:15px;
  line-height:24px;
  color:#737373;
}
.site-footer hr
{
  border-top-color:#bbb;
  opacity:0.5
}

.copyright-text
{
  margin:0
}
@media (max-width:991px)
{
  .site-footer [class^=col-]
  {
    margin-bottom:30px
  }
}
@media (max-width:767px)
{
  .site-footer
  {
    padding-bottom:0
  }
  .site-footer .copyright-text,.site-footer .social-icons
  {
    text-align:center
  }
}