/*
Theme Name: Totomo
Theme URI: http://wpthemes9.com/totomo
Author: GretaThemes
Author URI: http://gretathemes.com
Description: Totomo is a free and responsive blog theme for WordPress and based on Bootstrap. It makes you stand out of the crowd.
Version: 1.0.3
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: totomo
Tags: black, green, white, one-column, responsive-layout, featured-images, post-formats, translation-ready

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.

totomo is based on Underscores http://underscores.me/, (C) 2012-2015 Automattic, Inc.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal http://necolas.github.com/normalize.css/
*/
/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
1.0 Typography
2.0 Repeatable Patterns
3.0 Basic Structure
4.0 Header
5.0 Navigation
	5.1 Navigation
	5.2 Pagination
6.0 Content
	6.1 Main Content
	6.2 Post Format Quote
	6.3 Audio
	6.4 Single
	6.5 Related Article
	6.6 Author Area
	6.7 Contact Form 7
7.0 Comments
8.0 Footer
9.0 Media Queries
--------------------------------------------------------------*/
/*--------------------------------------------------------------
1.0 Typography
--------------------------------------------------------------*/
body {
  background: #f2f2f2;
  font: 300 16px/26px 'Varela Round', sans-serif;
  color: #333333;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  color: #3c3c3c;
  font-family: 'Varela Round', sans-serif;
  font-weight: 600;
  text-decoration: none;
  padding: 0px;
  margin-top: 0px;
  line-height: 100%;
}
h1 {
  font-size: 34px;
}
h2 {
  font-size: 24px;
}
h3 {
  font-size: 18px;
}
h4 {
  font-size: 16px;
}
h5 {
  font-size: 13px;
}
h6 {
  font-size: 12px;
}
:focus,
a:focus {
  outline: 0;
}
a {
  color: #74c86e;
  -webkit-transition: 0.3s ease;
  -moz-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  transition: 0.3s ease;
  transition: .4s ease 0;
}
a:hover,
a:focus {
  color: #74c86e;
  text-decoration: none;
}
blockquote {
  background: #f5f5f5;
  border-left: 5px solid #74c86e;
  padding: 30px;
}
blockquote cite {
  font-size: 75%;
  font-style: italic;
  display: block;
  margin-top: 1em;
}
p {
  margin-bottom: 2em;
}
table {
  border-bottom: 1px solid #333333;
  border-collapse: collapse;
  border-spacing: 0;
  font-size: 14px;
  line-height: 2;
  margin: 0 0 20px;
  width: 100%;
}
input,
select,
textarea {
  border: 1px solid #333333;
  padding: 10px;
  max-width: 100%;
}
input.full-width,
select.full-width,
textarea.full-width {
  width: 100%;
}
img {
  max-width: 100%;
  height: auto;
}
/*--------------------------------------------------------------
2.0 Repeatable Patterns
--------------------------------------------------------------*/
.left {
  float: left;
}
.right {
  float: right;
}
.alignnone {
  margin: 0;
}
.aligncenter,
div.aligncenter,
.aligncenter img {
  display: block;
  margin: 1em auto;
}
.alignleft,
.entry-thumbnail.thumbnail {
  display: inline;
  float: left;
  margin-right: 10px;
  margin-right: 1rem;
}
.alignright {
  display: inline;
  float: right;
  margin-left: 10px;
  margin-left: 1rem;
}
.aligncenter {
  display: block;
  clear: both;
  margin: 0 auto;
}
.wp-caption,
.wp-caption-text {
  font-style: italic;
  text-align: left;
  max-width: 100%;
}
.gallery {
  margin: 0 0 15px;
  display: block;
  clear: both;
  overflow: hidden;
  margin: 0 auto;
}
.gallery .gallery-item {
  margin: 0 0 10px;
}
.gallery .gallery-icon img {
  padding: 10px;
}
.gallery .gallery-caption {
  margin: 5px 0 0;
  font-size: 14px;
  display: block;
}
.gallery .gallery-row {
  display: block;
  clear: both;
  overflow: hidden;
  margin: 0;
}
.gallery .gallery-item {
  overflow: hidden;
  float: left;
  margin: 0;
  padding: 0;
  text-align: center;
  list-style: none;
  border: none;
  background: transparent;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
/* Gallery item sizes depending on the number of columns */
.gallery-columns-0 .gallery-item {
  width: 100%;
}
.gallery-columns-1 .gallery-item {
  width: 100%;
}
.gallery-columns-2 .gallery-item {
  width: 50%;
}
.gallery-columns-3 .gallery-item {
  width: 33.33%;
}
.gallery-columns-4 .gallery-item {
  width: 25%;
}
.gallery-columns-5 .gallery-item {
  width: 20%;
}
.gallery-columns-6 .gallery-item {
  width: 16.66%;
}
.gallery-columns-7 .gallery-item {
  width: 14.28%;
}
.gallery-columns-8 .gallery-item {
  width: 12.5%;
}
.gallery-columns-9 .gallery-item {
  width: 11.11%;
}
.bypostauthor {
  display: block;
}
.sticky {
  display: block;
}
.wp-playlist-item .wp-playlist-caption,
.wp-playlist-item .wp-playlist-item-length {
  line-height: 2.5;
}
/*--------------------------------------------------------------
3.0 Basic Structure
--------------------------------------------------------------*/
.entry-content .wp-playlist,
.entry-summary .wp-playlist {
  padding-bottom: 0px;
}
.main img,
.footer img {
  max-width: 100%;
  height: auto;
}
.main {
  padding-top: 60px;
  padding-bottom: 40px;
}
#wrapper {
  position: relative;
}
/*--------------------------------------------------------------
4.0 Header
--------------------------------------------------------------*/
.site-header {
  background: #fff;
  width: 100%;
  border-bottom: 1px solid #E9E9E9;
  padding-top: 28px;
  padding-bottom: 28px;
  position: relative;
}
.site-branding {
  float: left;
}
.home h1 {
  margin: 0;
}
#logo {
  padding-top: 10px;
}
#logo a {
  font-size: 35px;
  font-weight: 700;
  text-transform: uppercase;
}
.header-search {
  position: relative;
  margin: 15px 0 0 15px;
}
.header-search i {
  color: #c1c0c0;
  font-size: 16px;
  font-weight: 400;
  padding: 7px 10px 6px;
}
.header-search i:hover {
  color: #74c86e;
}
.header-search .search-form {
  -webkit-transition: all 0.3s ease-in;
  -moz-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  border-radius: 5px;
  border: 5px solid #74c86e;
  background: #ffffff;
  position: absolute;
  top: 35px;
  right: 0;
  z-index: 999;
  display: none;
}
.header-search .search-form:before {
  font-family: 'FontAwesome';
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  content: "\f0d8";
  position: absolute;
  top: -18px;
  right: 8px;
  font-size: 20px;
  color: #74c86e;
}
.header-search .search-form input {
  border-radius: 3px;
  background: transparent;
  width: 200px;
  padding: 4px 8px;
  border: none;
}
.active-search  i {
  border-radius: 6px;
}
.active-search  .search-form {
  display: block;
  z-index: 2;
}
.container .navbar-header {
  float: right;
  margin-left: 20px;
  margin-right: 0;
}
.navbar-toggle {
  margin: 18px 0 0;
  padding: 0;
  width: 32px;
  height: 26px;
  position: relative;
}
.navbar-toggle .icon-bars {
  transition: all 0.3s;
  font-size: 0;
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -1px;
  width: 30px;
  height: 2px;
  display: block;
  background-color: transparent;
}
.navbar-toggle .icon-bars:before,
.navbar-toggle .icon-bars:after {
  transition: transform 0.3s;
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  background: #74c86e;
  content: '';
}
.navbar-toggle .icon-bars:before {
  transform: translateY(0) rotate(45deg);
}
.navbar-toggle .icon-bars:after {
  transform: translateY(0) rotate(-45deg);
}
.navbar-toggle .icon-bar-3 {
  bottom: 0;
  transform: translateY(0) rotate(-45deg);
}
.navbar-toggle.collapsed .icon-bars {
  background: #74c86e;
}
.navbar-toggle.collapsed .icon-bars:before {
  transform: translateY(-400%);
}
.navbar-toggle.collapsed .icon-bars:after {
  transform: translateY(400%);
}
/*--------------------------------------------------------------
5.0 Header
--------------------------------------------------------------*/
/*--------------------------------------------------------------
5.1 Navigation
--------------------------------------------------------------*/
.nav a {
  -webkit-transition: 0.3s ease;
  -moz-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  transition: 0.3s ease;
  font-weight: 300;
}
.nav > li > a {
  color: #c1c0c0;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 700;
  padding: 20px 15px;
}
.nav > li:hover > a,
.nav > li > a:focus,
.nav > .active > a,
.nav > .active > a:hover,
.nav > .active > a:active,
.nav > .active > a:focus,
.nav .open > a,
.nav .open > a:hover,
.nav .open > a:focus {
  background: none;
  color: #74c86e;
}
.nav .dropdown-menu {
  left: 0;
  right: auto;
  background: transparent;
  box-shadow: none;
  border: 0;
  padding: 0;
  margin: 0;
  z-index: 9999;
}
.nav .dropdown-menu:before {
  content: '';
  display: block;
  position: absolute;
  top: -6px;
  left: 20px;
  border-bottom: 6px solid #c1c0c0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
}
.nav .dropdown-menu li {
  background: #c1c0c0;
  border-top: 1px solid #fff;
}
.nav .dropdown-menu li:first-child {
  border-top: none;
}
.nav .dropdown-menu > li > a {
  font-size: 14px;
  font-weight: 400;
  line-height: 40px;
  padding: 0 15px;
  color: #fff;
}
.nav .dropdown-menu > li:hover > a,
.nav .dropdown-menu > .active > a,
.nav .dropdown-menu > .active > a:hover {
  color: #fff;
  background: #74c86e;
}
.nav .dropdown-menu .dropdown-menu {
  left: 110%;
  top: 0;
  padding-left: 6px;
}
.nav .dropdown-menu .dropdown-menu:before {
  top: 13px;
  left: 0;
  border-right: 6px solid #c1c0c0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 0;
}
.dropdown-menu {
  display: block;
  visibility: hidden;
  top: 115px;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
/*--------------------------------------------------------------
5.2 Pagination
--------------------------------------------------------------*/
.blog-pagination {
  padding-bottom: 45px;
  border-bottom: 2px solid #e9e9e9;
  overflow: hidden;
  width: 100%;
  margin: 100px auto 45px;
  text-align: center;
}
.blog-pagination .page-numbers {
  background-color: #74c86e;
  border-bottom: 2px solid #51ba49;
  border-radius: 3px;
  display: block;
  text-align: center;
  text-transform: uppercase;
  font-weight: 700;
  color: #fff;
  padding: 7px 15px;
  display: inline-block;
  margin: 0 10px 0 0;
  font-size: 16px;
}
.blog-pagination .page-numbers:hover {
  background-color: #dadada;
  border-color: #c1c0c0;
}
.blog-pagination .page-numbers.current {
  background-color: #dadada;
  border-color: #c1c0c0;
}
.blog-pagination .next:before,
.blog-pagination .prev:before {
  font-family: 'FontAwesome';
}
.blog-pagination .next {
  float: right;
}
.blog-pagination .next:before {
  content: "\f054";
}
.blog-pagination .prev {
  float: left;
}
.blog-pagination .prev:before {
  content: "\f053";
}
.post-navigation {
  width: 100%;
  margin-bottom: 30px;
  overflow: hidden;
}
.post-navigation .nav-links {
  float: right;
}
.post-navigation .screen-reader-text {
  display: none;
}
.post-navigation .nav-previous,
.post-navigation .nav-next {
  float: left;
}
.post-navigation .nav-previous a,
.post-navigation .nav-next a {
  background-color: #74c86e;
  border-bottom: 2px solid #51ba49;
  text-align: center;
  text-transform: uppercase;
  font-weight: 700;
  width: 40px;
  height: 40px;
  border-radius: 3px;
  padding: 7px 15px;
  margin: 0 10px 0 0;
  color: #fff;
  font-weight: 400;
  font-size: 16px;
  display: block;
}
.post-navigation .nav-previous a:hover,
.post-navigation .nav-next a:hover {
  background-color: #dadada;
  border-color: #c1c0c0;
}
.post-navigation .nav-previous a.current,
.post-navigation .nav-next a.current,
.post-navigation .nav-previous a:hover,
.post-navigation .nav-next a:hover {
  background-color: #dadada;
  border-color: #c1c0c0;
}
.post-navigation .nav-previous a:before,
.post-navigation .nav-next a:before {
  font-family: 'FontAwesome';
}
.post-navigation .nav-previous a:before {
  content: "\f053";
}
.post-navigation .nav-next a:before {
  content: "\f054";
}
/*--------------------------------------------------------------
6.0 Content
--------------------------------------------------------------*/
/*--------------------------------------------------------------
6.1 Main content
--------------------------------------------------------------*/
.site-main article.post {
  background: #fff;
  border-radius: 6px 6px 6px 6px;
  margin-bottom: 100px;
  border: 1px solid #E9E9E9;
}
.site-main article.page .entry-content,
.site-main article.page .entry-footer {
  padding-left: 0;
  padding-right: 0;
}
.site-main .post-format-meta {
  position: relative;
  overflow: hidden;
  display: block;
}
.site-main .post-format-meta .thumb_audio {
  position: absolute;
  bottom: 50px;
  left: 12%;
  z-index: 1;
  width: 76%;
}
.site-main .post-format-meta .post-image {
  display: block;
}
.site-main .post-format-meta img {
  width: 100%;
  max-height: 500px;
}
.site-main .post-format-meta .link-wrapper {
  background: url(img/link_bg.png) no-repeat center -40px #ffffff;
  display: block;
  padding: 45px 0;
  border-radius: 6px;
  text-align: center;
  position: relative;
}
.site-main .post-format-meta .link-wrapper a {
  display: block;
  font-size: 20px;
  margin-top: 20px;
  color: #c1c0c0;
}
.site-main .post-format-meta .link-wrapper a:hover {
  color: #74c86e;
}
.site-main .entry-title {
  margin-bottom: 26px;
  text-align: center;
  padding: 45px 70px 0;
}
.site-main .entry-title a {
  color: #3c3c3c;
}
.site-main .entry-content {
  padding: 0 70px 45px;
}
.site-main .entry-content .carousel-indicators li.active {
  margin-right: 5px;
}
.site-main .entry-content .more-link {
  background-color: #74c86e;
  border-bottom: 2px solid #51ba49;
  border-radius: 3px;
  display: block;
  text-align: center;
  text-transform: uppercase;
  font-weight: 700;
  color: #fff;
  -webkit-transition: all 0.5s ease-in;
  -moz-transition: all 0.5s ease-in;
  -o-transition: all 0.5s ease-in;
  transition: all 0.5s ease-in;
  width: 128px;
  margin: 35px auto 0;
  font-size: 14px;
  padding: 20px 20px;
  line-height: 1;
}
.site-main .entry-content .more-link:hover {
  background-color: #dadada;
  border-color: #c1c0c0;
}
.site-main .entry-content .post-meta {
  margin-bottom: 26px;
  padding: 0;
  list-style: none;
  text-align: center;
}
.site-main .entry-content .post-meta li {
  color: #c1c0c0;
  margin-right: 30px;
  font-size: 14px;
  display: inline-block;
  text-transform: capitalize;
}
.site-main .entry-content .post-meta li a {
  color: #c1c0c0;
}
.site-main .entry-content .post-meta li a:hover {
  color: #74c86e;
}
.site-main .entry-content .post-meta li .date,
.site-main .entry-content .post-meta li .comments-link,
.site-main .entry-content .post-meta li.fa-tags a {
  font-family: 'Varela Round', sans-serif;
}
.site-main .entry-content .post-meta .fa:before {
  font-family: 'FontAwesome';
  padding-right: 5px;
  font-size: 18px;
}
.site-main .entry-footer {
  padding-left: 70px;
  padding-right: 70px;
}
/*--------------------------------------------------------------
6.2 Post Format Quote
--------------------------------------------------------------*/
.format-quote .post-format-meta {
  background-color: #74c86e;
  border-radius: 6px;
}
.format-quote .post-format-meta img {
  opacity: 0.3;
  filter: alpha(opacity=30);
  max-width: none;
  position: absolute;
  z-index: 0;
  left: 0;
  top: 0;
}
.format-quote .post-format-meta blockquote {
  background: transparent;
  border-color: transparent;
  width: 100%;
  color: #fff;
  padding: 100px;
  font-size: 20px;
  line-height: 36px;
  position: relative;
  z-index: 1;
}
.format-quote .post-format-meta blockquote a {
  color: #fff;
}
.format-quote .post-format-meta cite {
  margin-top: 10px;
  font-weight: 400;
  font-style: italic;
  font-size: 24px;
  line-height: 36px;
  color: #fff;
}
/*--------------------------------------------------------------
6.3 Audio
--------------------------------------------------------------*/
.site-content .mejs-audio {
  width: 100%;
  float: left;
  clear: both;
  position: relative;
  background: #303337;
  border-radius: 4px;
  height: 50px !important;
  opacity: 0.9;
  box-shadow: inset 1px 1px 1px #515151;
}
.site-content .mejs-audio .mejs-controls {
  position: absolute;
  list-style-type: none;
  top: 11px;
  width: 96%;
  margin-left: 2.5%;
  float: left;
  background: #303337;
}
.home .site-content {
  margin-top: 100px;
}
/*--------------------------------------------------------------
6.4 Single
--------------------------------------------------------------*/
.single .site-content {
  padding-top: 30px;
  padding-bottom: 45px;
}
.single article.post {
  margin-bottom: 0;
}
.single .tags-links {
  margin-top: 35px;
  padding-top: 35px;
  border-top: 2px solid #e9e9e9;
  display: block;
  overflow: hidden;
  color: #c1c0c0;
}
.single .tags-links a {
  color: #c1c0c0;
  font-size: 16px;
  margin-right: 10px;
  margin-bottom: 10px;
}
.single .tags-links a:hover {
  color: #74c86e;
}
/*--------------------------------------------------------------
6.5 Related Article
--------------------------------------------------------------*/
.related-article {
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  background: #fff;
  padding: 45px 70px 45px;
  margin-top: 50px;
  border: 1px solid #E9E9E9;
}
.related-article ul {
  margin: 0;
  padding: 0;
}
.related-article li {
  list-style: none;
  margin-bottom: 30px;
  padding-left: 0;
  overflow: hidden;
  height: 73px;
  padding-right: 0;
}
.related-article h2 {
  margin-bottom: 40px;
}
.related-article .related-post-title {
  font-weight: 400px;
  font-size: 16px;
  color: #c1c0c0;
}
.related-article .related-post-title:hover {
  color: #74c86e;
}
.related-article .date {
  font-size: 14px;
  font-weight: 600;
  color: #636467 ;
}
.related-article .post-thumbnail {
  border-radius: 4px;
  width: 60px;
  height: 60px;
  display: block;
  float: left;
  background-color: #74c86e;
  overflow: hidden;
  position: relative;
}
.related-article .post-thumbnail img {
  width: 60px;
  height: 60px;
  border-radius: 4px;
}
.related-article .post-thumbnail:before {
  font-family: 'FontAwesome';
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 20px;
  color: #ffffff;
}
.related-article .related-post-content {
  margin-left: 80px;
}
.related-article .fa-format-:before {
  content: "\f044";
}
.related-article .fa-format-standard {
  content: "\f044";
}
.related-article .fa-format-gallery:before {
  content: "\f03e";
}
.related-article .fa-format-audio:before {
  content: "\f025";
}
.related-article .fa-format-image:before {
  content: "\f030";
}
.related-article .fa-format-video:before {
  content: "\f03d";
}
.related-article .fa-format-link:before {
  content: "\f0c1";
}
.related-article .fa-format-quote:before {
  content: "\f10d";
}
.related-article .fa-format-aside:before {
  content: "\f044";
}
/*--------------------------------------------------------------
6.6 Author Area
--------------------------------------------------------------*/
.post-author-area {
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  background: #fff;
  padding: 45px 70px 45px;
  margin-top: 50px;
  border: 1px solid #E9E9E9;
  overflow: hidden;
}
.post-author-area .avatar {
  float: left;
}
.post-author-area .info {
  margin-left: 135px;
}
.post-author-area .author-desc p {
  line-height: 26px;
}
/*--------------------------------------------------------------
6.7 Contact Form 7
--------------------------------------------------------------*/
.wpcf7 input,
.wpcf7 select,
.wpcf7 textarea {
  background: #ffffff;
  border: 1px solid #dddddd;
  width: 100%;
  padding: 10px;
  font-size: 15px;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  margin-bottom: 30px;
}
.wpcf7 input[type="submit"] {
  background-color: #74c86e;
  border-bottom: 2px solid #51ba49;
  border-radius: 3px;
  display: block;
  text-align: center;
  text-transform: uppercase;
  font-weight: 700;
  color: #fff;
  border: 0;
  padding: 18px 18px;
}
.wpcf7 input[type="submit"]:hover {
  background-color: #dadada;
  border-color: #c1c0c0;
}
/*--------------------------------------------------------------
7.0 Comments
--------------------------------------------------------------*/
.comments.content-box {
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  background: #fff;
  padding: 45px 70px 45px;
  margin-top: 50px;
  border: 1px solid #E9E9E9;
}
.comment-reply-title,
.comments-title {
  font-size: 24px;
  text-transform: inherit;
  font-weight: 700px;
  margin-bottom: 40px;
}
.comment-list,
.comment-meta {
  margin: 0;
  padding: 0;
  list-style: none;
}
.comment {
  min-height: 60px;
  margin-bottom: 20px;
}
.comment .children {
  list-style: none;
  margin-left: 45px;
  border-left: 1px solid #ddd;
  padding: 20px 0 0 50px;
}
.comment .avatar {
  width: 90px;
  height: 90px;
  margin-right: 15px;
  float: left;
}
.author-img {
  float: left;
}
.comment-meta {
  font-size: 16px;
  margin-bottom: 10px;
  margin-left: 107px;
}
.comment-meta .author {
  font-weight: 700;
}
.comments .comment-list .comment .comment-meta li {
  padding-right: 5px;
  display: inline-block;
}
.reply-link {
  float: right;
}
.reply-link .comment-reply-link {
  float: right;
  font-size: 14px;
}
.reply-link .comment-reply-link:before {
  font-family: 'FontAwesome';
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  content: "\f0e2";
  margin-right: 5px;
}
.comment-meta a {
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  color: #777;
}
.comment-author,
.comment-author a {
  font: bold 13px;
  color: #444;
  display: inline-block;
  float: left;
}
.comment-author {
  margin-right: 10px;
}
.comment .comment-body {
  border-radius: 3px;
  background: #ffffff;
  margin-left: 35px;
  padding: 5px 0;
}
.comment-waiting {
  padding-top: 10px;
  font-style: italic;
}
.comment-respond {
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  background: #fff;
  padding: 45px 70px 45px;
  margin-top: 50px;
  border: 1px solid #E9E9E9;
  overflow: hidden;
  padding-top: 45px;
  padding-bottom: 45px;
}
#respond form input[type=text],
#respond form input[type=email],
#respond form textarea {
  float: left;
  clear: both;
  width: 100%;
  margin-bottom: 20px;
  padding: 15px 3%;
  border: none;
  background: #f2f2f2;
  border-radius: 3px;
}
#respond form input[type="submit"] {
  background-color: #74c86e;
  border-bottom: 2px solid #51ba49;
  border-radius: 3px;
  display: block;
  text-align: center;
  text-transform: uppercase;
  font-weight: 700;
  color: #fff;
  border: 0;
  padding: 18px 18px;
}
#respond form input[type="submit"]:hover {
  background-color: #dadada;
  border-color: #c1c0c0;
}
/*--------------------------------------------------------------
8.0 Footer
--------------------------------------------------------------*/
.site-footer {
  text-align: center;
}
.site-footer .credit {
  margin-bottom: 45px;
  font-weight: 400;
  font-size: 16px;
  color: #c1c0c0;
}
.site-footer .social-icons {
  margin: 45px auto 35px;
}
.site-footer .icon-social {
  -webkit-transition: all 0.3s ease-in;
  -moz-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  background-color: #dadada;
  width: 40px;
  height: 40px;
  border-radius: 3px;
  font-size: 18px;
  line-height: 40px;
  margin: 0 10px 10px 0;
  font-weight: 400;
  color: #ffffff;
  text-decoration: none;
}
.site-footer .fa-facebook:hover {
  background-color: #4265b9;
}
.site-footer .fa-twitter:hover {
  background-color: #9ae4e8;
}
.site-footer .fa-linkedin:hover {
  background-color: #005987;
}
.site-footer .fa-flickr:hover {
  background-color: #ff0084;
}
.site-footer .fa-skype:hover {
  background-color: #0bbff2;
}
.site-footer .fa-pinterest:hover {
  background-color: #c31e26;
}
.site-footer .fa-vimeo:hover {
  background-color: #1bb6ec;
}
.site-footer .fa-tumblr:hover {
  background-color: #35506b;
}
.site-footer .fa-youtube:hover {
  background-color: #df3333;
}
.site-footer .fa-soundcloud:hover {
  background-color: #fe9700;
}
.site-footer .fa-google:hover {
  background-color: #d62408;
}
.site-footer .fa-instagram:hover {
  background-color: #F95B60;
}
.site-footer .fa-dribbble:hover {
  background-color: #ea4c89;
}
.site-footer .fa-github:hover {
  background-color: #4183c4;
}
.site-footer .fa-vimeo:before {
  content: "\f194";
}
.site-footer .fa-google:before {
  content: "\f0d4";
}
.divider-half {
  margin-left: 40%;
  clear: both;
  width: 20%;
  background: #e9e9e9;
  height: 2px;
}
/*--------------------------------------------------------------
9.0 Media Queries
--------------------------------------------------------------*/
@media (min-width: 1200px) {
  .container {
    max-width: 940px;
  }
}
@media (min-width: 768px) {
  .dropdown:hover > .dropdown-menu {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }
  .dropdown .dropdown:hover > .dropdown-menu {
    top: 0;
    left: 100%;
  }
}
@media (max-width: 767px) {
  .nav > li > a {
    line-height: 1.8;
    height: auto;
  }
  .nav .caret {
    display: none;
  }
  .nav .dropdown-menu {
    display: none;
  }
  .nav .dropdown-menu:before {
    display: none;
  }
  .nav .dropdown-menu li {
    background: transparent;
  }
  .nav .open > .dropdown-menu {
    visibility: visible;
    opacity: 1;
  }
  .dropdown:hover > .dropdown-menu {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }
  .dropdown .dropdown:hover > .dropdown-menu {
    top: 0;
    left: 100%;
  }
  #site-navigation {
    -webkit-transition: 0.3s ease-in;
    -moz-transition: 0.3s ease-in;
    -o-transition: 0.3s ease-in;
    transition: 0.3s ease-in;
    background-color: #343434;
    border-radius: 3px;
    margin: 25px 0 0;
    width: 100%;
    padding: 20px 20px 10px;
    display: none;
  }
  #site-navigation .navbar-collapse {
    border-top: 0;
  }
  #site-navigation.collapse.in {
    display: block;
  }
  #site-navigation .navbar-nav {
    margin: 0;
  }
  #site-navigation ul {
    overflow: hidden;
  }
  #site-navigation a {
    margin-bottom: 10px;
    padding: 10px 20px;
    position: relative;
    text-align: left;
    background-color: #2b2b2b;
  }
  .site-main .entry-title,
  .site-main .entry-content {
    padding-left: 20px;
    padding-right: 20px;
  }
  .post-author-area,
  .related-article,
  .comment-respond,
  .comments.content-box {
    padding: 15px 20px;
  }
  .box-social-share {
    clear: both;
  }
}
@media (max-width: 640px) {
  .header-search {
    display: none;
  }
  .site-main .entry-content .post-meta li {
    float: left;
  }
  .site-main .post-format-meta .link-wrapper a {
    word-break: break-all;
    font-size: 18px;
  }
  .format-quote .post-format-meta blockquote {
    padding: 20px;
  }
  .navbar-collapse {
    box-shadow: none;
  }
  .post-author-area {
    text-align: center;
  }
  .post-author-area .avatar {
    float: none;
    margin-bottom: 10px;
  }
  .post-author-area .info {
    margin-left: 0;
  }
}
