body {
  margin: 0;
  padding: 0;

  /* make it look decent enough */
 background:#e1e1e1;
  
  font-family: "Avenir Next", "Avenir", sans-serif;
}

#menuToggle {
  display: block;
  position: relative;
  top: -70px;
  left: 50px;

  z-index: 1;

  -webkit-user-select: none;
  user-select: none;
}

#menuToggle a {
  text-decoration: none;
  color: #fff;

  transition: color 0.3s ease;
}

#menuToggle a:hover {
  color: tomato;
}

#menuToggle input {
  display: block;
  width: 40px;
  height: 32px;
  position: absolute;
  top: -7px;
  left: -5px;

  cursor: pointer;

  opacity: 0; /* hide this */
  z-index: 2; /* and place it over the hamburger */

  -webkit-touch-callout: none;
}

/*
 * Just a quick hamburger
 */
#menuToggle span {
  display: block;
  width: 33px;
  height: 4px;
  margin-bottom: 5px;
  position: relative;

  background: #fff;
  border-radius: 3px;

  z-index: 1;

  transform-origin: 4px 0px;

  transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1),
    background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), opacity 0.55s ease;
}

#menuToggle span:first-child {
  transform-origin: 0% 0%;
}

#menuToggle span:nth-last-child(2) {
  transform-origin: 0% 100%;
}

/* 
 * Transform all the slices of hamburger
 * into a crossmark.
 */
#menuToggle input:checked ~ span {
  opacity: 1;
  transform: rotate(45deg) translate(-2px, -1px);
  background: #fff;
}

/*
 * But let's hide the middle one.
 */
#menuToggle input:checked ~ span:nth-last-child(3) {
  opacity: 0;
  transform: rotate(0deg) scale(0.2, 0.2);
}

/*
 * Ohyeah and the last one should go the other direction
 */
#menuToggle input:checked ~ span:nth-last-child(2) {
  transform: rotate(-45deg) translate(0, -1px);
}

/*
 * Make this absolute positioned
 * at the top left of the screen
 */
#menu {
  position: absolute;
  width: 300px;
  margin: -100px 0 0 -50px;
  padding: 50px;
  padding-top: 125px;

  background: #0D75E8;
  list-style-type: none;
  -webkit-font-smoothing: antialiased;
  /* to stop flickering of text in safari */

  transform-origin: 0% 0%;
  transform: translate(-100%, 0);

  transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
}

#menu li {
  padding: 10px 0;
  font-size: 22px;
}

/*
 * And let's slide it in from the left
 */
#menuToggle input:checked ~ ul {
  transform: none;
}


/*992px*/
@media (min-width: 62em) {
    .header_mobile {
        display: none;
    }
}

/*400px*/
@media (max-width: 25em) {
    .header_desktop{
        display: none;
    }
}

/* 
    Created on : 09/02/2016, 14:13:33
    Author     : robsonvleite
*/

.content{
    width: 100%;
}

/*HEADER*/
.main_header{
    background:#0D75E8;
    padding: 25px 70px;
    background-size: cover;
}

.main_header header{
    float: left;
    text-align: center;
    color: #fff;
}

.main_header header h1{
    font-size: 1.8em;
}

.main_header nav{
    float: right;
}

.main_header nav ul{
    margin-top: 10px;
    display: block;
    width: 100%;
}

.main_header nav li{
    display: inline-block;
    position: relative;
    margin-top: 50px;
}

.main_header nav li a{
    display: inline-block;
    padding: 10px;
    color: #fff;
    text-decoration: none;
}

.main_header nav .login{
/*    background: #035fe4;*/
}

.main_header nav li:hover,
.main_header nav li a:hover{
    background: #035fe4;
}

.main_header nav li:hover .sub,
.main_header nav li a:hover .sub{
    display: block;
}


.main_header nav .sub{
    display: none;
    z-index: 99;
    position: absolute;
    width: 200px;
    background: #fff;
    margin: 0;
}

.main_header nav .sub li,
.main_header nav .sub li a{
    color: #00B494;
    display: block;
    width: 100%;
}

.main_header nav .sub li a:hover{
    background: rgba(0,0,0,0.5);
    color: #fff;
}

/*CONTENT*/
.main_content{
    padding: 50px 0;
    background: #eaeaea;
}

/*HOME*/
.main_blog{
    float: right;
    width: 67%;
}

.main_blog_post{
    background: #fff;
    margin-bottom: 30px;
}

.main_blog_post img{
    width: 100%;
}

.main_blog_post header{
    padding: 30px;
}

.main_blog_post h1{
    font-weight: 400;
    font-size: 2em;
    margin-bottom: 15px;
}

.main_blog_post a{
    color: #ffffff;
    text-decoration: none;
}

.main_blog_post a:hover{
    text-decoration: underline;
}

.main_blog_post .tagline{
    font-size: 0.9em;
    color: #555;
}

.main_sidebar{
    float: left;
    width: 30%;
    padding: 30px;
    background: #fff;
}

.main_sidebar_widget{
    display: block;
    width: 100%;
    margin-bottom: 30px;
}

.main_sidebar_widget > h1{
    font-size: 1.7em;
    font-weight: 300;
    margin-bottom: 25px;
    border-bottom: 1px solid #ccc;
}

.main_sidebar_widget > h1 span{
    border-bottom: 5px solid #ccc;
}

.main_sidebar_widget a{
    color: #00B494;
    text-decoration: none;
}

.main_sidebar_widget a:hover{
    text-decoration: underline;
}

.main_sidebar_widget ul{
    display: block;
    width: 100%;
}

.main_sidebar_widget ul li{
    display: block;
    width: 100%;
    background: #fbfbfb;
    padding: 5px 10px;
    border-bottom: 2px solid #fff;
    text-transform: uppercase;
    font-size: 0.875em;
    font-weight: 300;
}

.main_sidebar_widget_post{
    display: block;
    width: 100%;
    margin-bottom: 25px;
}

.main_sidebar_widget_post h1{
    font-size: 1em;
    font-weight: 600;
    margin: 20px 0 10px 0;
}

.main_sidebar_widget_post .tagline{
    font-size: 0.8em;
    color: #ccc;
}

.search_form{
    width: 100%;
    margin-bottom: 20px;
    padding: 20px;
    background: #fbfbfb;
    text-align: center;
}

.search_form input{
    margin-bottom: 10px;
}

.search_form button{
    text-transform: uppercase;
    font-size: 0.8em;
}

/*PAGINATOR*/
.paginator{
    display: block;
    width: 100%;
    text-align: center;
    padding: 20px;
}

.paginator li{
    display: inline-block;
    font-size: 0.9em;
}

.paginator li a,
.paginator li span{
    padding: 5px 10px;
    margin: 0 5px;
    background: #fff;
    color: #fff;
    text-decoration: none;
}

.paginator li a:hover{
    background: #fff
}

.paginator li span{
    background: #fff;
    font-weight: bold;
}


/*FOOTER*/
.main_footer{
      background:#ffffff;
    padding: 30px;
    color: #0D75E8;
    font-size: 0.95em;
    text-align: center;
   
}

 .main_footer a {
  color: #0D75E8;
  background-color: transparent;
  text-decoration: none;
   font-size: 0.75em !important;
}

/*SINGLE*/
.post_single{
    padding: 50px 0;
    background: #eaeaea;
}

.post_single .cover{width: 100%;}

.post_single .fb-comments{
    display: block;
    width: 100%;
    margin-top: 40px;
}

.post_single .main_sidebar{
    float: right;
}

.post_single .left_content{
    float: left;
    width: 67%;
}

.post_content{
    background: #fff;
}

.post_content > h1{
    padding: 30px;
    font-size: 2em;
    font-weight: 300;
}

.post_content .tagline{
    padding: 30px 30px 0 30px;
    font-size: 1.3em;
    font-weight: 300;
}

.single_post_more{
    float: left;
    width: 100%;
    padding: 25px;
    background: #00B494;
}

.single_post_more header{
    margin-bottom: 20px;
    color: #fff;
}

.single_post_more_post{
    float: left;
    width: 50%;
}

.single_post_more_post:hover{
    border-color: #fff;   
}


/*404*/
.not_found{
    padding: 50px 0;
}

.not_found header{
    width: 800px;
    max-width: 100%;
    text-align: center;
    margin: 0 auto 40px auto;
}

.not_found header h1{
    font-size: 2em;
    font-weight: 400;
}

.not_found header p{
    font-size: 1.1em;
    font-weight: 300;
    margin: 10px 0 0 0;
}

.not_fount_post{
    display: inline-block;
    width: 50%;
    padding: 20px;
    margin-left: -4px;
    vertical-align: top;
}

.not_fount_post h1{
    margin-top: 20px;
    font-weight: 400;
}

.not_fount_post a{
    font-weight: 600;
    color: #00B494;
    text-decoration: none;
}

.not_fount_post a:hover{
    text-decoration: underline;
}

.not_found .search_form{
    display: block;
    padding: 0 20px;
    float: none;
    background: none;    
    text-align: center;
}

.not_found .search_form input{
    width: 400px;
    max-width: 100%;
    padding: 6px;
}

.page_single{
    padding: 5px 0;
    background: #eaeaea;
}

.page_single .content{
    background: #fff;
}

.page_single header{
    padding: 20px;
    text-align: left;
    background: #000;
    color: #fff;
}

.wc_slides{
    margin: 00px auto;
}

@media (max-width: 80em){
    .content{
        width: 90%;
        margin: 0 5%;
    }
    
    .main_blog{
        float: none;
        display: block;
        width: 100%;
    }

    .main_sidebar{
        float: none;
        display: block;
        width: 100%;
    }

    .main_sidebar_widget{
        display: inline-block;
        width: 50%;
        margin-left: -4px;
        vertical-align: top;
        padding: 30px;
    }

    .main_sidebar_widget_most{
        width: 100%;
    }

    .main_sidebar_widget_most .main_sidebar_widget_post{
        display: inline-block;
        width: 50%;
        margin-left: -4px;
        padding: 20px;
        vertical-align: top;
    }

    .left_content{
        float: none;
        display: block;
        width: 100% !important;
        margin-bottom: 30px;
    }
}

@media (max-width: 64em){
    .content{
        width: 94%;
        margin: 0 15%;
    }

    .main_header header{
        float: none;
        display: block;
        width: 100%;
    }

    .main_header nav{
        float: none;
        display: block;
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 50em){
    .main_sidebar_widget,
    .main_sidebar_widget_most .main_sidebar_widget_post{
        padding: 0;
        width: 100%;
        margin-left: 0;
    }

    .not_fount_post{
        width: 100%;
        padding: 20px;
    }
}

