/*
Theme Name: modi
Theme URI: http://underscores.me/
Author: Underscores.me
Author URI: http://underscores.me/
Description: Description
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: modi
Tags:

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.

modi is based on Underscores http://underscores.me/, (C) 2012-2016 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal http://necolas.github.io/normalize.css/
*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Normalize
# Typography
# Elements
# Forms
# Navigation
	## Links
	## Menus
# Accessibility
# Alignments
# Clearings
# Widgets
# Content
	## Posts and pages
	## Comments
# Infinite scroll
# Media
	## Captions
	## Galleries
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Normalize
--------------------------------------------------------------*/
body {
  font-family: "Open Sans", Helvetica, sans-serif;
}

ol, ul {
  padding-left: 24px;
}

img.alignright {
  display: block;
  height: auto;
  max-width: 100%;
}

@media screen and ( min-width: 992px ) {
  img.alignright {
    float: right;
    margin-left: 18px;
  }
}

.site-branding {
  margin-top: 20px;
  margin-bottom: 20px;
}

@media screen and ( max-width: 768px ) {
  .logo {
    margin-bottom: 30px;
    text-align: center;
  }
}

.site-content {
  margin-bottom: 40px;
}

.site-footer {
  background-color: #cecece;
  padding: 30px;
}

.site-footer .site-info {
  font-weight: 600;
}

.site-footer .site-info .copyright {
  margin-top: 16px;
}

a, a:hover, a:focus {
  text-decoration: none;
}

/*--------------------------------------------------------------
# Navigation
--------------------------------------------------------------*/
.navbar {
  background-color: #ececec;
  border-top: 0;
  border-bottom: 2px solid #ff4f4f;
  border-left: 0;
  border-right: 0;
  border-radius: 0;
  margin-bottom: 0;
}

.navbar-collapse {
  clear: both;
  padding-left: 0;
  padding-right: 0;
}

.navbar-toggle .icon-bar {
  background-color: #222;
}

ul.menu,
ol.menu,
ul.menu ul.sub-menu,
ol.menu ol.sub-menu {
  margin-bottom: 0;
  padding-left: 0;
}

.menu > li > a {
  color: #404040;
  display: block;
  font-weight: 700;
  padding-left: 20px;
  padding-right: 20px;
}

.menu-item:hover .sub-menu {
  display: block;
}

.sub-menu {
  display: none;
  border-top: 2px solid #ff4f4f;
  background-color: #ececec;
  list-style-type: none;
  position: absolute;
  z-index: 9999;
}

@media screen and ( max-width: 768px ) {
  .sub-menu {
    position: relative;
    text-indent: 20px;
  }
}

.sub-menu > li > a {
  color: #404040;
  display: block;
  font-weight: 700;
  padding: 15px 20px;
  white-space: nowrap;
}

.menu li a:hover, .menu li a:focus {
  background-color: #ff4f4f;
  color: #fff;
}

.menu .current-menu-item > a,
.menu .current-menu-parent > a {
  background-color: #ff4f4f;
  color: #fff;
}

/*====================================
# Elements
====================================*/
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
}

.entry-title {
  margin-top: 1.25em;
  margin-bottom: 2em;
  font-size: 28px;
}

.entry-content {
  color: #555;
}

h2 {
  font-size: 20px;
  line-height: 1.34;
  margin-top: 0;
  margin-bottom: 20px;
}

h3 {
  font-size: 18px;
}

.fa-circle {
  color: #777;
}

.edit-link .post-edit-link {
  margin-right: 15px;
}