/*
Theme Name: Canary
Theme URI: http://canary.mondotheme.com/
Author: MondoTheme
Author URI: http://themeforest.net/user/mondotheme
Description: Minimal WordPress Blog Theme
Version: 1.2
Tags: two-columns, three-columns, responsive-layout, custom-colors, custom-header, custom-menu, featured-images, post-formats, sticky-post, theme-options, translation-ready
License: ThemeForest Licence
License URI: http://themeforest.net/licenses
*/
/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
1.0 Normalize
2.0 Scaffolding
3.0 Grid
4.0 Button
5.0 Form
6.0 Social icons
7.0 Brand
8.0 Navbar
9.0 Layout
10.0 Posts
11.0 Blog grid
12.0 Blog list
13.0 Blog mixed
14.0 Single post
15.0 Page
16.0 Navigation
17.0 Featured posts
18.0 Author
19.0 Author posts
20.0 Related posts
21.0 Widgets
22.0 Comment
23.0 404
24.0 Media feed
25.0 Footer
26.0 bxSlider
27.0 Comparison
28.0 WPCF7
29.0 Utilities
30.0 Responsive utilities
31.0 Media queries
--------------------------------------------------------------*/
@-webkit-keyframes rotate-forever {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes rotate-forever {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.TK{
display: none;
}
/*--------------------------------------------------------------
1.0 Normalize
--------------------------------------------------------------*/
/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
html {
  font-family: sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}
audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline;
}
audio:not([controls]) {
  display: none;
  height: 0;
}
[hidden],
template {
  display: none;
}
a {
  background-color: transparent;
}
a:active,
a:hover {
  outline: 0;
}
abbr[title] {
  border-bottom: 1px dotted;
}
b,
strong {
  font-weight: bold;
}
dfn {
  font-style: italic;
}
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}
mark {
  background: #ff0;
  color: #000;
}
small {
  font-size: 80%;
}
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sup {
  top: -0.5em;
}
sub {
  bottom: -0.25em;
}
img {
  border: 0;
}
svg:not(:root) {
  overflow: hidden;
}
figure {
  margin: 1em 40px;
}
hr {
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
}
pre {
  overflow: auto;
}
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}
button,
input,
optgroup,
select,
textarea {
  color: inherit;
  font: inherit;
  margin: 0;
}
button {
  overflow: visible;
}
button,
select {
  text-transform: none;
}
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer;
}
button[disabled],
html input[disabled] {
  cursor: default;
}
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}
input {
  line-height: normal;
}
input[type="checkbox"],
input[type="radio"] {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0;
}
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}
input[type="search"] {
  -webkit-appearance: textfield;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}
legend {
  border: 0;
  padding: 0;
}
textarea {
  overflow: auto;
}
optgroup {
  font-weight: bold;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
td,
th {
  padding: 0;
}
/*--------------------------------------------------------------
2.0 Scaffolding
--------------------------------------------------------------*/
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
html {
  font-size: 10px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
body {
  background-color: #f9f9f9;
  color: #333;
  font-family: "PT Serif", serif;
  font-size: 16px;
  line-height: 1.8;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "PT Sans", sans-serif;
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 1.1;
  margin: 20px 0;
  text-transform: uppercase;
}
h1 {
  font-size: 32px;
}
h2 {
  font-size: 28px;
}
h3 {
  font-size: 24px;
}
h4 {
  font-size: 20px;
}
h5 {
  font-size: 16px;
}
h6 {
  font-size: 12px;
}
input,
button,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}
p {
  margin: 0;
}
blockquote {
  color: #bfbfbf;
  font-size: 18px;
  margin: 40px 0;
  padding-left: 40px;
  position: relative;
}
blockquote:before {
  content: "\f10d";
  font-family: FontAwesome;
  position: absolute;
  top: 0;
  left: 0;
}
a {
  color: #bd966b;
  text-decoration: none;
  -webkit-transition: color 0.2s ease;
  -o-transition: color 0.2s ease;
  transition: color 0.2s ease;
}
a:hover {
  color: #333;
  text-decoration: none;
}
a:focus {
  outline: thin dotted;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}
figure {
  margin: 0;
}
img {
  display: block;
  height: auto;
  max-width: 100%;
  vertical-align: middle;
}
iframe,
embed {
  border: 0;
  display: block;
  overflow: hidden;
  width: 100%;
}
table {
  margin-bottom: 20px;
}
th,
td {
  border: 1px solid #e8e8e8;
  padding: 5px 12px;
}
dl,
ul,
ol {
  margin: 20px 0;
  padding-left: 40px;
}
dl dl,
ul ul,
ol ol {
  margin: 0;
}
dl {
  padding-left: 20px;
}
dt {
  font-weight: 700;
}
dd {
  margin: 0 0 20px 0;
}
/* Alignment */
.alignleft {
  display: inline;
  float: left;
  margin-top: 10px;
  margin-right: 20px;
}
.alignright {
  display: inline;
  float: right;
  margin-top: 10px;
  margin-left: 20px;
}
.aligncenter {
  clear: both;
  display: block;
  margin: 20px auto;
}
.alignnone {
  margin: 20px 0;
}
/* Caption */
.wp-caption {
  margin-top: 10px;
  margin-bottom: 10px;
  max-width: 100%;
}
.wp-caption img[class*="wp-image-"] {
  margin: 0 auto;
}
.wp-caption-text {
  font-size: 13px;
  font-style: italic;
  margin-top: 10px;
  text-align: center;
}
/* Gallery */
.gallery {
  margin-top: 30px;
}
.gallery-item {
  display: inline-block;
  margin-bottom: 30px;
  text-align: center;
  vertical-align: top;
  width: 100%;
}
.gallery-item img {
  display: inline-block;
}
.gallery-columns-2 .gallery-item {
  max-width: 50%;
}
.gallery-columns-3 .gallery-item {
  max-width: 33.33%;
}
.gallery-columns-4 .gallery-item {
  max-width: 25%;
}
.gallery-columns-5 .gallery-item {
  max-width: 20%;
}
.gallery-columns-6 .gallery-item {
  max-width: 16.66%;
}
.gallery-columns-7 .gallery-item {
  max-width: 14.28%;
}
.gallery-columns-8 .gallery-item {
  max-width: 12.5%;
}
.gallery-columns-9 .gallery-item {
  max-width: 11.11%;
}
.gallery-caption {
  display: block;
}
.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
[role="button"] {
  cursor: pointer;
}
.advpost {
width:580px;
height:400px;
}
/*--------------------------------------------------------------
3.0 Grid
--------------------------------------------------------------*/
.container {
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
}
@media (min-width: 768px) {
  .container {
    width: 750px;
  }
.advpost {
display:none;
}
}
@media (min-width: 992px) {
  .container {
    width: 970px;
  }

}


@media (min-width: 1200px) {
  .container {
    width: 1170px;
  }
}
.container-fluid {
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
}
.row {
  margin-left: -15px;
  margin-right: -15px;
}
.col-xs-1,
.col-sm-1,
.col-md-1,
.col-lg-1,
.col-xs-2,
.col-sm-2,
.col-md-2,
.col-lg-2,
.col-xs-3,
.col-sm-3,
.col-md-3,
.col-lg-3,
.col-xs-4,
.col-sm-4,
.col-md-4,
.col-lg-4,
.col-xs-5,
.col-sm-5,
.col-md-5,
.col-lg-5,
.col-xs-6,
.col-sm-6,
.col-md-6,
.col-lg-6,
.col-xs-7,
.col-sm-7,
.col-md-7,
.col-lg-7,
.col-xs-8,
.col-sm-8,
.col-md-8,
.col-lg-8,
.col-xs-9,
.col-sm-9,
.col-md-9,
.col-lg-9,
.col-xs-10,
.col-sm-10,
.col-md-10,
.col-lg-10,
.col-xs-11,
.col-sm-11,
.col-md-11,
.col-lg-11,
.col-xs-12,
.col-sm-12,
.col-md-12,
.col-lg-12 {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
}
.col-xs-1,
.col-xs-2,
.col-xs-3,
.col-xs-4,
.col-xs-5,
.col-xs-6,
.col-xs-7,
.col-xs-8,
.col-xs-9,
.col-xs-10,
.col-xs-11,
.col-xs-12 {
  float: left;
}
.col-xs-12 {
  width: 100%;
}
.col-xs-11 {
  width: 91.66666667%;
}
.col-xs-10 {
  width: 83.33333333%;
}
.col-xs-9 {
  width: 75%;
}
.col-xs-8 {
  width: 66.66666667%;
}
.col-xs-7 {
  width: 58.33333333%;
}
.col-xs-6 {
  width: 50%;
}
.col-xs-5 {
  width: 41.66666667%;
}
.col-xs-4 {
  width: 33.33333333%;
}
.col-xs-3 {
  width: 25%;
}
.col-xs-2 {
  width: 16.66666667%;
}
.col-xs-1 {
  width: 8.33333333%;
}
.col-xs-pull-12 {
  right: 100%;
}
.col-xs-pull-11 {
  right: 91.66666667%;
}
.col-xs-pull-10 {
  right: 83.33333333%;
}
.col-xs-pull-9 {
  right: 75%;
}
.col-xs-pull-8 {
  right: 66.66666667%;
}
.col-xs-pull-7 {
  right: 58.33333333%;
}
.col-xs-pull-6 {
  right: 50%;
}
.col-xs-pull-5 {
  right: 41.66666667%;
}
.col-xs-pull-4 {
  right: 33.33333333%;
}
.col-xs-pull-3 {
  right: 25%;
}
.col-xs-pull-2 {
  right: 16.66666667%;
}
.col-xs-pull-1 {
  right: 8.33333333%;
}
.col-xs-pull-0 {
  right: auto;
}
.col-xs-push-12 {
  left: 100%;
}
.col-xs-push-11 {
  left: 91.66666667%;
}
.col-xs-push-10 {
  left: 83.33333333%;
}
.col-xs-push-9 {
  left: 75%;
}
.col-xs-push-8 {
  left: 66.66666667%;
}
.col-xs-push-7 {
  left: 58.33333333%;
}
.col-xs-push-6 {
  left: 50%;
}
.col-xs-push-5 {
  left: 41.66666667%;
}
.col-xs-push-4 {
  left: 33.33333333%;
}
.col-xs-push-3 {
  left: 25%;
}
.col-xs-push-2 {
  left: 16.66666667%;
}
.col-xs-push-1 {
  left: 8.33333333%;
}
.col-xs-push-0 {
  left: auto;
}
.col-xs-offset-12 {
  margin-left: 100%;
}
.col-xs-offset-11 {
  margin-left: 91.66666667%;
}
.col-xs-offset-10 {
  margin-left: 83.33333333%;
}
.col-xs-offset-9 {
  margin-left: 75%;
}
.col-xs-offset-8 {
  margin-left: 66.66666667%;
}
.col-xs-offset-7 {
  margin-left: 58.33333333%;
}
.col-xs-offset-6 {
  margin-left: 50%;
}
.col-xs-offset-5 {
  margin-left: 41.66666667%;
}
.col-xs-offset-4 {
  margin-left: 33.33333333%;
}
.col-xs-offset-3 {
  margin-left: 25%;
}
.col-xs-offset-2 {
  margin-left: 16.66666667%;
}
.col-xs-offset-1 {
  margin-left: 8.33333333%;
}
.col-xs-offset-0 {
  margin-left: 0%;
}
@media (min-width: 768px) {
  .col-sm-1,
  .col-sm-2,
  .col-sm-3,
  .col-sm-4,
  .col-sm-5,
  .col-sm-6,
  .col-sm-7,
  .col-sm-8,
  .col-sm-9,
  .col-sm-10,
  .col-sm-11,
  .col-sm-12 {
    float: left;
  }
  .col-sm-12 {
    width: 100%;
  }
  .col-sm-11 {
    width: 91.66666667%;
  }
  .col-sm-10 {
    width: 83.33333333%;
  }
  .col-sm-9 {
    width: 75%;
  }
  .col-sm-8 {
    width: 66.66666667%;
  }
  .col-sm-7 {
    width: 58.33333333%;
  }
  .col-sm-6 {
    width: 50%;
  }
  .col-sm-5 {
    width: 41.66666667%;
  }
  .col-sm-4 {
    width: 33.33333333%;
  }
  .col-sm-3 {
    width: 25%;
  }
  .col-sm-2 {
    width: 16.66666667%;
  }
  .col-sm-1 {
    width: 8.33333333%;
  }
  .col-sm-pull-12 {
    right: 100%;
  }
  .col-sm-pull-11 {
    right: 91.66666667%;
  }
  .col-sm-pull-10 {
    right: 83.33333333%;
  }
  .col-sm-pull-9 {
    right: 75%;
  }
  .col-sm-pull-8 {
    right: 66.66666667%;
  }
  .col-sm-pull-7 {
    right: 58.33333333%;
  }
  .col-sm-pull-6 {
    right: 50%;
  }
  .col-sm-pull-5 {
    right: 41.66666667%;
  }
  .col-sm-pull-4 {
    right: 33.33333333%;
  }
  .col-sm-pull-3 {
    right: 25%;
  }
  .col-sm-pull-2 {
    right: 16.66666667%;
  }
  .col-sm-pull-1 {
    right: 8.33333333%;
  }
  .col-sm-pull-0 {
    right: auto;
  }
  .col-sm-push-12 {
    left: 100%;
  }
  .col-sm-push-11 {
    left: 91.66666667%;
  }
  .col-sm-push-10 {
    left: 83.33333333%;
  }
  .col-sm-push-9 {
    left: 75%;
  }
  .col-sm-push-8 {
    left: 66.66666667%;
  }
  .col-sm-push-7 {
    left: 58.33333333%;
  }
  .col-sm-push-6 {
    left: 50%;
  }
  .col-sm-push-5 {
    left: 41.66666667%;
  }
  .col-sm-push-4 {
    left: 33.33333333%;
  }
  .col-sm-push-3 {
    left: 25%;
  }
  .col-sm-push-2 {
    left: 16.66666667%;
  }
  .col-sm-push-1 {
    left: 8.33333333%;
  }
  .col-sm-push-0 {
    left: auto;
  }
  .col-sm-offset-12 {
    margin-left: 100%;
  }
  .col-sm-offset-11 {
    margin-left: 91.66666667%;
  }
  .col-sm-offset-10 {
    margin-left: 83.33333333%;
  }
  .col-sm-offset-9 {
    margin-left: 75%;
  }
  .col-sm-offset-8 {
    margin-left: 66.66666667%;
  }
  .col-sm-offset-7 {
    margin-left: 58.33333333%;
  }
  .col-sm-offset-6 {
    margin-left: 50%;
  }
  .col-sm-offset-5 {
    margin-left: 41.66666667%;
  }
  .col-sm-offset-4 {
    margin-left: 33.33333333%;
  }
  .col-sm-offset-3 {
    margin-left: 25%;
  }
  .col-sm-offset-2 {
    margin-left: 16.66666667%;
  }
  .col-sm-offset-1 {
    margin-left: 8.33333333%;
  }
  .col-sm-offset-0 {
    margin-left: 0%;
  }
}
@media (min-width: 992px) {
  .col-md-1,
  .col-md-2,
  .col-md-3,
  .col-md-4,
  .col-md-5,
  .col-md-6,
  .col-md-7,
  .col-md-8,
  .col-md-9,
  .col-md-10,
  .col-md-11,
  .col-md-12 {
    float: left;
  }
  .col-md-12 {
    width: 100%;
  }
  .col-md-11 {
    width: 91.66666667%;
  }
  .col-md-10 {
    width: 83.33333333%;
  }
  .col-md-9 {
    width: 75%;
  }
  .col-md-8 {
    width: 66.66666667%;
  }
  .col-md-7 {
    width: 58.33333333%;
  }
  .col-md-6 {
    width: 50%;
  }
  .col-md-5 {
    width: 41.66666667%;
  }
  .col-md-4 {
    width: 33.33333333%;
  }
  .col-md-3 {
    width: 25%;
  }
  .col-md-2 {
    width: 16.66666667%;
  }
  .col-md-1 {
    width: 8.33333333%;
  }
  .col-md-pull-12 {
    right: 100%;
  }
  .col-md-pull-11 {
    right: 91.66666667%;
  }
  .col-md-pull-10 {
    right: 83.33333333%;
  }
  .col-md-pull-9 {
    right: 75%;
  }
  .col-md-pull-8 {
    right: 66.66666667%;
  }
  .col-md-pull-7 {
    right: 58.33333333%;
  }
  .col-md-pull-6 {
    right: 50%;
  }
  .col-md-pull-5 {
    right: 41.66666667%;
  }
  .col-md-pull-4 {
    right: 33.33333333%;
  }
  .col-md-pull-3 {
    right: 25%;
  }
  .col-md-pull-2 {
    right: 16.66666667%;
  }
  .col-md-pull-1 {
    right: 8.33333333%;
  }
  .col-md-pull-0 {
    right: auto;
  }
  .col-md-push-12 {
    left: 100%;
  }
  .col-md-push-11 {
    left: 91.66666667%;
  }
  .col-md-push-10 {
    left: 83.33333333%;
  }
  .col-md-push-9 {
    left: 75%;
  }
  .col-md-push-8 {
    left: 66.66666667%;
  }
  .col-md-push-7 {
    left: 58.33333333%;
  }
  .col-md-push-6 {
    left: 50%;
  }
  .col-md-push-5 {
    left: 41.66666667%;
  }
  .col-md-push-4 {
    left: 33.33333333%;
  }
  .col-md-push-3 {
    left: 25%;
  }
  .col-md-push-2 {
    left: 16.66666667%;
  }
  .col-md-push-1 {
    left: 8.33333333%;
  }
  .col-md-push-0 {
    left: auto;
  }
  .col-md-offset-12 {
    margin-left: 100%;
  }
  .col-md-offset-11 {
    margin-left: 91.66666667%;
  }
  .col-md-offset-10 {
    margin-left: 83.33333333%;
  }
  .col-md-offset-9 {
    margin-left: 75%;
  }
  .col-md-offset-8 {
    margin-left: 66.66666667%;
  }
  .col-md-offset-7 {
    margin-left: 58.33333333%;
  }
  .col-md-offset-6 {
    margin-left: 50%;
  }
  .col-md-offset-5 {
    margin-left: 41.66666667%;
  }
  .col-md-offset-4 {
    margin-left: 33.33333333%;
  }
  .col-md-offset-3 {
    margin-left: 25%;
  }
  .col-md-offset-2 {
    margin-left: 16.66666667%;
  }
  .col-md-offset-1 {
    margin-left: 8.33333333%;
  }
  .col-md-offset-0 {
    margin-left: 0%;
  }
}
@media (min-width: 1200px) {
  .col-lg-1,
  .col-lg-2,
  .col-lg-3,
  .col-lg-4,
  .col-lg-5,
  .col-lg-6,
  .col-lg-7,
  .col-lg-8,
  .col-lg-9,
  .col-lg-10,
  .col-lg-11,
  .col-lg-12 {
    float: left;
  }
  .col-lg-12 {
    width: 100%;
  }
  .col-lg-11 {
    width: 91.66666667%;
  }
  .col-lg-10 {
    width: 83.33333333%;
  }
  .col-lg-9 {
    width: 75%;
  }
  .col-lg-8 {
    width: 66.66666667%;
  }
  .col-lg-7 {
    width: 58.33333333%;
  }
  .col-lg-6 {
    width: 50%;
  }
  .col-lg-5 {
    width: 41.66666667%;
  }
  .col-lg-4 {
    width: 33.33333333%;
  }
  .col-lg-3 {
    width: 25%;
  }
  .col-lg-2 {
    width: 16.66666667%;
  }
  .col-lg-1 {
    width: 8.33333333%;
  }
  .col-lg-pull-12 {
    right: 100%;
  }
  .col-lg-pull-11 {
    right: 91.66666667%;
  }
  .col-lg-pull-10 {
    right: 83.33333333%;
  }
  .col-lg-pull-9 {
    right: 75%;
  }
  .col-lg-pull-8 {
    right: 66.66666667%;
  }
  .col-lg-pull-7 {
    right: 58.33333333%;
  }
  .col-lg-pull-6 {
    right: 50%;
  }
  .col-lg-pull-5 {
    right: 41.66666667%;
  }
  .col-lg-pull-4 {
    right: 33.33333333%;
  }
  .col-lg-pull-3 {
    right: 25%;
  }
  .col-lg-pull-2 {
    right: 16.66666667%;
  }
  .col-lg-pull-1 {
    right: 8.33333333%;
  }
  .col-lg-pull-0 {
    right: auto;
  }
  .col-lg-push-12 {
    left: 100%;
  }
  .col-lg-push-11 {
    left: 91.66666667%;
  }
  .col-lg-push-10 {
    left: 83.33333333%;
  }
  .col-lg-push-9 {
    left: 75%;
  }
  .col-lg-push-8 {
    left: 66.66666667%;
  }
  .col-lg-push-7 {
    left: 58.33333333%;
  }
  .col-lg-push-6 {
    left: 50%;
  }
  .col-lg-push-5 {
    left: 41.66666667%;
  }
  .col-lg-push-4 {
    left: 33.33333333%;
  }
  .col-lg-push-3 {
    left: 25%;
  }
  .col-lg-push-2 {
    left: 16.66666667%;
  }
  .col-lg-push-1 {
    left: 8.33333333%;
  }
  .col-lg-push-0 {
    left: auto;
  }
  .col-lg-offset-12 {
    margin-left: 100%;
  }
  .col-lg-offset-11 {
    margin-left: 91.66666667%;
  }
  .col-lg-offset-10 {
    margin-left: 83.33333333%;
  }
  .col-lg-offset-9 {
    margin-left: 75%;
  }
  .col-lg-offset-8 {
    margin-left: 66.66666667%;
  }
  .col-lg-offset-7 {
    margin-left: 58.33333333%;
  }
  .col-lg-offset-6 {
    margin-left: 50%;
  }
  .col-lg-offset-5 {
    margin-left: 41.66666667%;
  }
  .col-lg-offset-4 {
    margin-left: 33.33333333%;
  }
  .col-lg-offset-3 {
    margin-left: 25%;
  }
  .col-lg-offset-2 {
    margin-left: 16.66666667%;
  }
  .col-lg-offset-1 {
    margin-left: 8.33333333%;
  }
  .col-lg-offset-0 {
    margin-left: 0%;
  }
}
/*--------------------------------------------------------------
4.0 Button
--------------------------------------------------------------*/
.button,
input[type="submit"] {
  background-color: #bd966b;
  border: 0;
  border-radius: 20px;
  color: #fff;
  display: inline-block;
  font-family: "PT Sans", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 9px 17px 7px;
  text-transform: uppercase;
  -webkit-transition: background-color 0.2s ease;
  -o-transition: background-color 0.2s ease;
  transition: background-color 0.2s ease;
}
.button:hover,
input[type="submit"]:hover {
  background-color: #333;
  color: #fff;
}
/*--------------------------------------------------------------
5.0 Form
--------------------------------------------------------------*/
input[type="text"],
input[type="password"],
input[type="email"],
input[type="search"],
textarea {
  background-color: #fff;
  border: 2px solid #e8e8e8;
  display: block;
  padding: 0 15px;
  width: 100%;
  height: 40px;
  -webkit-appearance: none;
  -moz-appearance: none;
  -webkit-transition: background-color 0.2s ease;
  -o-transition: background-color 0.2s ease;
  transition: background-color 0.2s ease;
}
input[type="text"]:focus,
input[type="password"]:focus,
input[type="email"]:focus,
input[type="search"]:focus,
textarea:focus {
  background-color: #f9f9f9;
  outline: none;
}
textarea {
  height: 100%;
  padding-top: 10px;
  padding-bottom: 10px;
  resize: vertical;
}
select {
  background-color: #fff;
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB4AAAANCAYAAAC+ct6XAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyJpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMC1jMDYwIDYxLjEzNDc3NywgMjAxMC8wMi8xMi0xNzozMjowMCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNSBNYWNpbnRvc2giIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6RjBBRUQ1QTQ1QzkxMTFFMDlDNDdEQzgyNUE1RjI4MTEiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6RjBBRUQ1QTU1QzkxMTFFMDlDNDdEQzgyNUE1RjI4MTEiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDpGMEFFRDVBMjVDOTExMUUwOUM0N0RDODI1QTVGMjgxMSIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDpGMEFFRDVBMzVDOTExMUUwOUM0N0RDODI1QTVGMjgxMSIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/Pk5mU4QAAACUSURBVHjaYmRgYJD6////MwY6AyaGAQIspCieM2cOjKkIxCFA3A0TSElJoZ3FUCANxAeAWA6IOYG4iR5BjWwpCDQCcSnNgxoIVJCDFwnwA/FHWlp8EIpHSKoGgiggLkITewrEcbQO6mVAbAbE+VD+a3IsJTc7FQAxDxD7AbEzEF+jR1DDywtoCr9DbhwzDlRZDRBgACYqHJO9bkklAAAAAElFTkSuQmCC);
  background-position: center right;
  background-repeat: no-repeat;
  border: 2px solid #e8e8e8;
  border-radius: 0;
  outline: none;
  padding: 8px 15px;
  width: 100%;
  -webkit-appearance: none;
  -moz-appearance: none;
}
button:focus,
input[type="submit"]:focus {
  outline: none;
}
input[type="search"] {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.compact-form {
  position: relative;
}
.compact-form .compact-submit {
  background-color: #e8e8e8;
  border: 0;
  color: #fff;
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  height: 40px;
  -webkit-transition: background-color 0.2s ease;
  -o-transition: background-color 0.2s ease;
  transition: background-color 0.2s ease;
}
.compact-form .compact-submit:hover {
  background-color: #bd966b;
}
.compact-form .password-submit {
  top: 28px;
}
/*--------------------------------------------------------------
6.0 Social icons
--------------------------------------------------------------*/
.social-icons {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.social-icons li {
  background-color: #fff;
  border: 2px solid #e8e8e8;
  border-radius: 50%;
  display: inline-block;
  margin-left: 2px;
  position: relative;
  text-align: center;
  width: 40px;
  height: 40px;
  -webkit-transition: background-color 0.2s ease;
  -o-transition: background-color 0.2s ease;
  transition: background-color 0.2s ease;
}
.social-icons li a {
  display: block;
  line-height: 38px;
}
.social-icons li:hover {
  background-color: #e8e8e8;
}
.social-icons li:hover a {
  color: #bd966b;
}
.linked-icons {
  display: block;
  position: relative;
  text-align: center;
}
.linked-icons:before {
  background-color: #e8e8e8;
  content: "";
  position: absolute;
  top: 19px;
  left: 0px;
  width: 100%;
  height: 2px;
}
/*--------------------------------------------------------------
7.0 Brand
--------------------------------------------------------------*/
#brand .brand-logo {
  display: inline-block;
  margin: 60px 0;
  position: relative;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
}
#mobile-nav-toggle {
  background-color: #333;
  cursor: pointer;
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: 50px;
  z-index: 90;
}
#mobile-nav-toggle .icon-bar {
  background-color: #fff;
  display: block;
  margin: 0 auto 3px;
  width: 20px;
  height: 2px;
}
#mobile-nav-toggle .icon-bar:first-child {
  margin-top: 19px;
}
#mobile-nav-toggle .icon-bar:last-child {
  margin-bottom: 0;
}
.navigation-sticky #mobile-nav-toggle {
  position: fixed;
}
/*--------------------------------------------------------------
8.0 Navbar
--------------------------------------------------------------*/
#navigation-bar {
  background-color: #333;
  z-index: 80;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  backface-visibility: hidden;
}
#navigation-bar .nav-list {
  list-style-type: none;
  margin: 0;
  padding: 0;
  text-align: center;
}
#navigation-bar .nav-list > .menu-item {
  display: inline-block;
}
#navigation-bar .nav-list > .menu-item-has-children > a {
  padding-right: 30px;
}
#navigation-bar .nav-list > .menu-item-has-children > a:before,
#navigation-bar .nav-list > .menu-item-has-children > a:after {
  content: "\f107";
  font-family: FontAwesome;
  font-size: 12px;
  margin-left: 8px;
  position: absolute;
}
#navigation-bar .nav-list > .menu-item-has-children > a:before {
  display: none;
  margin-right: 8px;
  margin-left: 0;
}
#navigation-bar .menu-item {
  position: relative;
}
#navigation-bar .menu-item > a {
  color: #fff;
  display: block;
  font-family: "PT Sans", sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 50px;
  padding: 0 15px;
  text-transform: uppercase;
}
#navigation-bar .menu-item > a:hover {
  color: #bd966b;
}
#navigation-bar .menu-item.current-menu-item:not(.menu-item-home) > a {
  color: #bd966b;
}
#navigation-bar .menu-item.menu-item-search.desktop .search-icon .fa {
  width: 20px;
}
#navigation-bar .menu-item.menu-item-search.desktop #search-loader {
  border: 2px solid #bfbfbf;
  border-right-color: transparent;
  font-size: 12px;
  opacity: 0;
  position: absolute;
  top: 76px;
  right: 15px;
  width: 10px;
  height: 10px;
  z-index: 20;
  -webkit-animation: rotate-forever 1s infinite linear;
  -o-animation: rotate-forever 1s infinite linear;
  animation: rotate-forever 1s infinite linear;
  -webkit-transition: opacity 0.2s ease;
  -o-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}
#navigation-bar .menu-item.menu-item-search.desktop #search-loader.open {
  opacity: 1;
}
#navigation-bar .menu-item.menu-item-search.desktop .search-form {
  display: none;
  opacity: 0;
  position: absolute;
  top: 60px;
  right: 0;
  z-index: 10;
}
#navigation-bar .menu-item.menu-item-search.desktop .search-form .search-field {
  background-color: #333;
  border: 0;
  color: #bfbfbf;
  width: 200px;
}
#navigation-bar .menu-item.menu-item-search.desktop .search-form .search-submit {
  display: none;
}
#navigation-bar .menu-item.menu-item-search.desktop #search-result {
  background-color: #333;
  color: #fff;
  display: none;
  max-height: 300px;
  opacity: 0;
  overflow-y: scroll;
  padding: 15px;
  position: absolute;
  top: 100px;
  left: -150px;
  text-align: left;
  width: 200px;
  z-index: 90;
}
#navigation-bar .menu-item.menu-item-search.desktop #search-result .result-section {
  margin-bottom: 20px;
}
#navigation-bar .menu-item.menu-item-search.desktop #search-result .result-section:last-child {
  margin-bottom: 0;
}
#navigation-bar .menu-item.menu-item-search.desktop #search-result .section-label {
  font-size: 14px;
  margin: 0 0 8px;
}
#navigation-bar .menu-item.menu-item-search.desktop #search-result .results {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
#navigation-bar .menu-item.menu-item-search.desktop #search-result .results > li > a {
  color: #bfbfbf;
  display: block;
  padding-top: 10px;
}
#navigation-bar .menu-item.menu-item-search.desktop #search-result .results > li > a:hover {
  color: #fff;
}
#navigation-bar .menu-item.menu-item-search.mobile {
  padding: 10px 0;
}
#navigation-bar .dropdown-toggle {
  color: #fff;
  cursor: pointer;
  position: absolute;
  top: 6px;
  right: 0;
}
#navigation-bar .dropdown-toggle:hover {
  color: #bd966b;
}
#navigation-bar .sub-menu {
  background-color: #333;
  display: none;
  list-style-type: none;
  margin: 0;
  min-width: 200px;
  padding: 0;
  position: absolute;
  text-align: left;
  z-index: 80;
}
#navigation-bar .sub-menu.open {
  display: block;
}
#navigation-bar .sub-menu li a {
  font-size: 12px;
  line-height: 1.5;
  padding: 12px 20px;
}
#navigation-bar .sub-menu .menu-item-has-children > a:before,
#navigation-bar .sub-menu .menu-item-has-children > a:after {
  content: "\f105";
  float: right;
  font-family: FontAwesome;
}
#navigation-bar .sub-menu .menu-item-has-children > a:before {
  content: "\f104";
  display: none;
  float: left;
}
#navigation-bar .sub-menu .sub-menu {
  top: 0;
  left: 100%;
}
.navigation-sticky #navigation-bar {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
}
/*--------------------------------------------------------------
9.0 Layout
--------------------------------------------------------------*/
.navigation-sticky {
  padding-top: 50px;
}
.bg-pattern {
  background-attachment: fixed;
}
.no-logo #content {
  padding-top: 15px;
}
#content {
  padding-bottom: 60px;
}
#secondary {
  padding-left: 30px;
}
.left-column #secondary {
  padding-right: 30px;
  padding-left: 0;
}
/*--------------------------------------------------------------
10.0 Posts
--------------------------------------------------------------*/
.post {
  background-color: #fff;
  margin-bottom: 60px;
  padding: 40px;
  -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.05);
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.05);
}
.post .entry-header {
  margin-bottom: 20px;
  text-align: center;
}
.post .entry-category {
  font-family: "PT Sans", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.post .entry-category .cat-links {
  position: relative;
}
.post .entry-category .cat-links:before,
.post .entry-category .cat-links:after {
  background-color: #bd966b;
  content: "";
  position: absolute;
  top: 7px;
  left: -12px;
  width: 5px;
  height: 2px;
}
.post .entry-category .cat-links:after {
  right: -11px;
  left: auto;
}
.post .entry-title,
.page.type-page .entry-title {
  font-size: 22px;
  margin: 8px 0 8px;
  word-wrap: break-word;
}
.post .entry-title a,
.page.type-page .entry-title a {
  color: #333;
  -webkit-transition: opacity 0.2s ease;
  -o-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}
.post .entry-title a:hover,
.page.type-page .entry-title a:hover {
  opacity: 0.6;
}
.post .entry-meta {
  color: #bfbfbf;
  font-family: "PT Sans", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.post .entry-meta a {
  color: #bfbfbf;
}
.post .entry-meta a:hover {
  color: #333;
}
.post .entry-meta .separator {
  padding: 0 5px;
}
.post .entry-media,
.page.type-page .entry-media {
  margin: -40px -40px 40px -40px;
}
.post .entry-media > .wp-post-image,
.page.type-page .entry-media > .wp-post-image {
  width: 100%;

}
.post .entry-content > h1,
.post .entry-content > h2,
.post .entry-content > h3,
.post .entry-content > h4,
.post .entry-content > h5,
.post .entry-content > h6,
.page.type-page .entry-content > h1,
.page.type-page .entry-content > h2,
.page.type-page .entry-content > h3,
.page.type-page .entry-content > h4,
.page.type-page .entry-content > h5,
.page.type-page .entry-content > h6 {
  margin: 30px 0 10px;
  text-transform: capitalize;
}
.post .entry-content p,
.page.type-page .entry-content p {
  margin: 0 0 20px;
}
.post .entry-content > *:last-child,
.page.type-page .entry-content > *:last-child {
  margin-bottom: 0;
}
.post .entry-readmore {
  margin-top: 30px;
  text-align: center;
}
.post .tags-links {
  display: block;
  margin-top: 30px;
}
.post.sticky .entry-title > a:before {
  color: #bfbfbf;
  content: "\f08d";
  font-family: FontAwesome;
  font-size: 18px;
  margin-right: 8px;
  position: relative;
  top: -3px;
}
/*--------------------------------------------------------------
11.0 Blog grid
--------------------------------------------------------------*/
.layout-grid .post-column:nth-child(3n+1) {
  clear: left;
}
.layout-grid-right-sidebar .post-column:nth-child(2n+1),
.layout-grid-left-sidebar .post-column:nth-child(2n+1) {
  clear: left;
}
.post-compact {
  padding: 40px;
}
.post-compact .entry-header {
  margin-bottom: 15px;
}
.post-compact .entry-title {
  font-size: 18px;
  margin: 5px 0 5px;
}
.post-compact .entry-meta .separator {
  padding: 0 2px;
}
/*--------------------------------------------------------------
12.0 Blog list
--------------------------------------------------------------*/
/*--------------------------------------------------------------
13.0 Blog mixed
--------------------------------------------------------------*/
/*--------------------------------------------------------------
14.0 Single post
--------------------------------------------------------------*/
.single .entry-footer {
  margin-top: 40px;
}
/*--------------------------------------------------------------
15.0 Page
--------------------------------------------------------------*/
.page.type-page {
  background-color: #fff;
  margin-bottom: 60px;
  padding: 40px;
}
.page.type-page .entry-header {
  margin-bottom: 20px;
  text-align: center;
}
.page-header {
  background-color: #333;
  margin-bottom: 60px;
  position: relative;
  text-align: center;
}
.page-header:after {
  border-top: 8px solid #333;
  border-right: 8px solid transparent;
  border-left: 8px solid transparent;
  content: "";
  position: absolute;
  bottom: -8px;
  width: 0;
  height: 0;
}
.page-title {
  color: #fff;
  font-size: 14px;
  margin: 0;
  padding: 15px;
}
.taxonomy-description {
  margin-top: 10px;
}
/*--------------------------------------------------------------
16.0 Navigation
--------------------------------------------------------------*/
.posts-navigation .nav-links:before,
.posts-navigation .nav-links:after {
  content: " ";
  display: table;
}
.posts-navigation .nav-links:after {
  clear: both;
}
.posts-navigation .nav-previous a,
.posts-navigation .nav-next a {
  color: #333;
  font-family: "PT Sans", sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.posts-navigation .nav-previous a:hover,
.posts-navigation .nav-next a:hover {
  color: #bd966b;
}
.posts-navigation .nav-previous {
  float: right;
}
.posts-navigation .nav-next {
  float: left;
}
/*--------------------------------------------------------------
17.0 Featured posts
--------------------------------------------------------------*/
#featured-posts {
  margin-bottom: 90px;
  -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.05);
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.05);
}
#featured-posts .featured-post {
  background-position: center;
  background-size: cover;
  position: relative;
  width: 100%;
  word-break: break-word;
}
#featured-posts .featured-post:before {
  content: "";
  display: block;
  padding-top: 50%;
}
#featured-posts .entry-content {
  opacity: 0;
  position: absolute;
  bottom: 27px;
  left: 35px;
  -webkit-transition: opacity 0.2s ease;
  -o-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
  -webkit-transition-delay: 0.2s;
  transition-delay: 0.2s;
}
#featured-posts .entry-title {
  font-size: 22px;
  margin: 0;
}
#featured-posts .entry-title a {
  color: #fff;
}
#featured-posts .entry-meta {
  color: #fff;
  font-family: "PT Sans", sans-serif;
  font-weight: 700;
  margin-top: 3px;
}
/*--------------------------------------------------------------
18.0 Author
--------------------------------------------------------------*/
#about-author {
  background-color: #fff;
  margin-bottom: 60px;
  padding: 40px 40px 34px;
  -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.05);
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.05);
}
#about-author .author-image {
  float: left;
  margin-right: 20px;
}
#about-author .avatar {
  border-radius: 50%;
}
#about-author .author-info {
  overflow: hidden;
}
#about-author .author-name {
  font-size: 16px;
  margin: 0 0 10px;
}
#about-author .author-name a {
  color: #333;
}
#about-author .author-social-links {
  list-style-type: none;
  margin: 5px 0 0;
  padding: 0;
}
#about-author .author-social-links li {
  display: inline-block;
  margin-right: 5px;
}
#about-author .author-social-links li > a {
  color: #bfbfbf;
}
#about-author .author-social-links li > a:hover {
  color: #333;
}
/*--------------------------------------------------------------
19.0 Author posts
--------------------------------------------------------------*/
/*--------------------------------------------------------------
20.0 Related posts
--------------------------------------------------------------*/
#related-posts,
#author-posts {
  background-color: #fff;
  margin-bottom: 60px;
  padding: 40px;
  -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.05);
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.05);
}
#related-posts .entry-media,
#author-posts .entry-media {
  margin-bottom: 15px;
}
#related-posts .entry-media > .wp-post-image,
#author-posts .entry-media > .wp-post-image {
  width: 100%;
}
#related-posts .entry-title,
#author-posts .entry-title {
  font-size: 16px;
  margin: 0 0 3px;
  word-wrap: break-word;
}
#related-posts .entry-title a,
#author-posts .entry-title a {
  color: #333;
}
#related-posts .entry-title a:hover,
#author-posts .entry-title a:hover {
  color: #bd966b;
}
#related-posts .entry-meta,
#author-posts .entry-meta {
  color: #bfbfbf;
  font-family: "PT Sans", sans-serif;
  font-size: 13px;
  font-weight: 700;
}
/*-21.0 Widgets --*/
.widget {
  margin-bottom: 60px;
}
.widget:last-child {
  margin-bottom: 0;
}
.widget ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.widget ul li > a {
  color: #333;
  display: inline-block !important;
  padding-bottom: 6px;
}
.widget ul li > a:hover {
  color: #bd966b;
}
.widget > ul > li:last-child > a {
  padding-bottom: 0 !important;
}
.widget_mondo_categories_widget .category-item > a {
  display: block !important;
}
.widget_mondo_categories_widget .category-item-count {
  background-color: #bd966b;
  border-radius: 100px;
  color: #fff;
  display: inline-block;
  float: right;
  font-family: "PT Sans", sans-serif;
  font-size: 12px;
  font-weight: 700;
  min-width: 21px;
  padding: 0 7px;
  position: relative;
  top: 4px;
  text-align: center;
}
.widget_mondo_about_widget .profile {
  background-color: #333;
  background-size: cover;
  height: 200px;
  margin-bottom: 15px;
  text-align: center;
}
.widget_mondo_about_widget .profile-content {
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}
.widget_mondo_about_widget .profile-image {
  border: 3px solid #fff;
  display: inline-block;
  margin-bottom: 10px;
  width: 100px;
}
.widget_mondo_about_widget .profile-name {
  color: #fff;
  font-weight: 700;
}
.widget .post-widget-list > li {
  padding: 8px 0;
}
.widget .post-widget-list .thumbnail-link {
  float: left;
  margin-right: 15px;
}
.widget .post-widget-list .thumbnail-container {
  background-color: #e8e8e8;
  color: #fff;
  display: block;
  font-size: 22px;
  line-height: 60px;
  text-align: center;
  width: 60px;
  height: 60px;
}
.widget .post-widget-list .wp-post-image {
  width: 60px;
}
.widget .post-widget-list .entry-content {
  overflow: hidden;
  padding-top: 10px;
}
.widget .post-widget-list .entry-title {
  display: block;
  font-size: 14px;
  margin: 0;
}
.widget .post-widget-list .entry-title a {
  color: #333;
}
.widget .post-widget-list .entry-title a:hover {
  color: #bd966b;
}
.widget .post-widget-list .entry-meta {
  color: #bfbfbf;
  font-family: "PT Sans", sans-serif;
  font-size: 13px;
  font-weight: 700;
}
.widget-with-thumbnails .thumbnails {
  margin: 0 -0.66666667%;
}
.widget-with-thumbnails .thumbnail-link {
  display: inline-block;
  float: left;
  line-height: 0;
  margin: 0.66666667%;
  width: 32%;
}
.widget-with-thumbnails .thumbnail-link .thumbnail {
  width: 100%;
}
.widget-with-thumbnails .thumbnail-link .thumbnail:hover {
  opacity: 0.6;
}
.widget-with-thumbnails.two-columns .thumbnails {
  margin: 0 -1%;
}
.widget-with-thumbnails.two-columns .thumbnails .thumbnail-link {
  margin: 1%;
  width: 48%;
}
.widget_mondo_top_authors_widget .avatar {
  border-radius: 50%;
}
.widget_tag_cloud .tagcloud:before,
.widget_tag_cloud .tagcloud:after,
.post .tags-links:before,
.post .tags-links:after {
  content: " ";
  display: table;
}
.widget_tag_cloud .tagcloud:after,
.post .tags-links:after {
  clear: both;
}
.widget_tag_cloud .tagcloud > a,
.post .tags-links > a {
  background-color: #fff;
  border: 2px solid #e8e8e8;
  color: #bfbfbf;
  float: left;
  font-family: "PT Sans", sans-serif;
  font-size: 10px !important;
  font-weight: 700;
  letter-spacing: 1px;
  margin: 0 4px 4px 0;
  padding: 5px 10px 4px;
  text-transform: uppercase;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.widget_tag_cloud .tagcloud > a:hover,
.post .tags-links > a:hover {
  background-color: #bd966b;
  border-color: #bd966b;
  color: #fff;
}
.widget_rss .rsswidget {
  color: #333;
}
.widget_rss .rsswidget > img {
  display: inline;
  margin-top: -2px;
}
.widget_rss ul li {
  padding-bottom: 15px;
}
.widget_rss ul li a {
  padding-bottom: 0;
}
.widget_rss ul li .rsswidget {
  font-weight: 700;
}
.widget_rss ul li .rss-date {
  color: #bfbfbf;
  display: block;
  margin-bottom: 10px;
}
.widget_rss ul li:last-child {
  padding-bottom: 0;
}
.widget_calendar #wp-calendar {
  width: 100%;
}
.widget_calendar #wp-calendar caption {
  margin-bottom: 5px;
}
.widget_calendar #wp-calendar th,
.widget_calendar #wp-calendar td {
  text-align: center;
}
.widget_recent_comments .recentcomments a {
  padding-bottom: 6px !important;
}
/*--------------------------------------------------------------
22.0 Comment
--------------------------------------------------------------*/
#comments {
  background-color: #fff;
  padding: 40px;
  -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.05);
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.05);
}
#comments .comment-list,
#comments .children {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
#comments .comment-list {
  margin-bottom: 60px;
}
#comments .children {
  padding-left: 40px;
}
#comments .comment-wrapper {
  margin-bottom: 40px;
}
#comments .comment-author-avatar {
  float: left;
}
#comments .comment-author-avatar .avatar {
  border-radius: 50%;
}
#comments .comment-content {
  margin-left: 90px;
  overflow: hidden;
}
#comments .comment-author-name {
  font-family: "PT Sans", sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}
#comments .comment-author-name .fn {
  font-style: normal;
}
#comments .comment-author-name a {
  color: #333;
}
#comments .bypostauthor .comment-author-name > .fn:before {
  color: #bfbfbf;
  content: "\f058";
  font-family: FontAwesome;
  margin-right: 3px;
}
#comments .comment-metadata {
  color: #bfbfbf;
  font-size: 14px;
  margin: -2px 0 10px;
}
#comments .comment-metadata > span:before {
  content: "\2022";
  padding: 0 6px 0 2px;
}
#comments .comment-body > *:first-child {
  margin-top: 0;
}
#respond .comment-author-inputs {
  margin: 0 -5px;
}
#respond .comment-author-inputs > .input {
  padding-right: 5px;
  padding-left: 5px;
}
#respond .comment-form-comment {
  margin-top: 10px;
}
#respond .form-submit {
  margin-top: 15px;
}
/*--------------------------------------------------------------
23.0 404
--------------------------------------------------------------*/
.not-found .message {
  margin-bottom: 10px;
}
/*--------------------------------------------------------------
24.0 Media feed
--------------------------------------------------------------*/
#mondo-media-feed {
  margin-bottom: 90px;
}
#mondo-media-feed .thumbnails {
  margin-right: -10px;
  margin-bottom: -10px;
  position: relative;
}
#mondo-media-feed .thumbnail {
  display: block;
  margin: -5px;
  opacity: .8;
  position: absolute;
  width: 20%;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transition: opacity 0.2s ease;
  -o-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}
#mondo-media-feed .thumbnail:hover {
  opacity: 1;
}
#mondo-media-feed .thumbnail img {
  width: 100%;
}
#mondo-media-feed .thumbnail-3 {
  width: 40%;
  left: 20%;
}
#mondo-media-feed .thumbnail-4,
#mondo-media-feed .thumbnail-5 {
  left: 60%;
}
#mondo-media-feed .thumbnail-6,
#mondo-media-feed .thumbnail-7 {
  left: 80%;
}
#mondo-media-feed .thumbnail-2,
#mondo-media-feed .thumbnail-5,
#mondo-media-feed .thumbnail-7 {
  top: 50%;
}
#mondo-media-feed .thumbnail-inner {
  display: block;
  margin: 5px;
}
/*--------------------------------------------------------------
25.0 Footer
--------------------------------------------------------------*/
#colophon {
  padding: 30px 0 50px;
  text-align: center;
}
#colophon img {
  display: inline;
}
/*--------------------------------------------------------------
26.0 bxSlider
--------------------------------------------------------------*/
/* Reset and layout */
.bx-wrapper {
  position: relative;
  margin: 0 auto 60px;
  padding: 0;
  *zoom: 1;
}
.bx-wrapper img {
  width: 100%;
  display: block;
}
/* Theme */
.bx-wrapper .bx-viewport {
  /* Fix other elements on the page moving (on Chrome) */
  -webkit-transform: translatez(0);
  -moz-transform: translatez(0);
  -ms-transform: translatez(0);
  -o-transform: translatez(0);
  transform: translatez(0);
}
.bx-wrapper .bx-pager,
.bx-wrapper .bx-controls-auto {
  position: absolute;
  bottom: -30px;
  width: 100%;
}
/* Loader */
.bx-wrapper .bx-loading {
  min-height: 50px;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2000;
}
/* Wrapper */
.slides-wrapper {
  position: relative;
}
/* Slider */
.bxslider {
  margin: 0;
  padding: 0;
}
/* Custom controls */
.bx-navigation {
  cursor: pointer;
  margin-top: -20px;
  position: absolute;
  top: 50%;
  left: 30px;
  text-align: center;
  height: 40px;
  -webkit-transition: background-color 0.2s ease;
  -o-transition: background-color 0.2s ease;
  transition: background-color 0.2s ease;
}
.bx-navigation.bx-next {
  right: 30px;
  left: auto;
}
.bx-navigation .fa {
  color: #fff;
  font-size: 24px;
  line-height: 42px;
  -webkit-transition: color 0.2s ease;
  -o-transition: color 0.2s ease;
  transition: color 0.2s ease;
}
.bx-navigation:hover .fa {
  color: #bd966b;
}
/*--------------------------------------------------------------
27.0 Comparison
--------------------------------------------------------------*/
.cd-image-container {
  position: relative;
}
.cd-image-label {
  color: #fff;
  font-family: "PT Sans", sans-serif;
  font-weight: 700;
  opacity: 1;
  padding: 15px 20px;
  position: absolute;
  right: 0;
  bottom: 0;
}
.cd-image-label.is-hidden {
  visibility: hidden;
}
.cd-resize-img {
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
  transform: translateZ(0);
}
.cd-resize-img img {
  max-width: none;
  position: absolute;
  top: 0;
  left: 0;
  width: auto;
  height: 100%;
}
.cd-resize-img .cd-image-label {
  right: auto;
  left: 0;
}
.cd-handle {
  background-color: #333;
  cursor: move;
  margin-top: -22px;
  margin-left: -22px;
  opacity: 1;
  position: absolute;
  top: 50%;
  left: 50%;
  text-align: center;
  width: 44px;
  height: 44px;
  -webkit-box-shadow: 0 0 0 6px rgba(0, 0, 0, 0.2), 0 0 10px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.3);
  box-shadow: 0 0 0 6px rgba(0, 0, 0, 0.2), 0 0 10px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}
.cd-handle.draggable {
  background-color: #bd966b;
}
.cd-handle:before {
  color: #fff;
  content: "\f07e";
  font-family: FontAwesome;
  line-height: 44px;
}
/*--------------------------------------------------------------
28.0 WPCF7
--------------------------------------------------------------*/
div.wpcf7 img.ajax-loader {
  display: inline-block;
  margin-left: 10px;
}
div.wpcf7-response-output {
  background-color: #333;
  border: 0;
  color: #fff;
  margin: 20px 0 0;
  padding: 10px 20px;
}
.wpcf7-text,
.wpcf7-textarea,
span.wpcf7-not-valid-tip {
  margin-top: 5px;
}
span.wpcf7-not-valid-tip {
  color: #bd966b;
  font-size: 14px;
}
/*--------------------------------------------------------------
29.0 Utilities
--------------------------------------------------------------*/
.clearfix:before,
.clearfix:after,
.container:before,
.container:after,
.container-fluid:before,
.container-fluid:after,
.row:before,
.row:after {
  content: " ";
  display: table;
}
.clearfix:after,
.container:after,
.container-fluid:after,
.row:after {
  clear: both;
}
.center-block {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.pull-right {
  float: right !important;
}
.pull-left {
  float: left !important;
}
.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}
.text-center {
  text-align: center;
}
.hide {
  display: none !important;
}
.show {
  display: block !important;
}
.invisible {
  visibility: hidden;
}
.text-hide {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}
.hidden {
  display: none !important;
}
.bordered-title,
#comments #reply-title {
  font-size: 16px;
  margin: 0 0 25px;
  padding-bottom: 15px;
  position: relative;
}
.bordered-title:after,
#comments #reply-title:after {
  background-color: #bfbfbf;
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 20px;
  height: 2px;
}
.circle-border {
  border-radius: 50%;
}
.shadow {
  -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.05);
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.05);
}
/*--------------------------------------------------------------
30.0 Responsive utilities
--------------------------------------------------------------*/
@-ms-viewport {
  width: device-width;
}
.visible-xs,
.visible-sm,
.visible-md,
.visible-lg {
  display: none !important;
}
.visible-xs-block,
.visible-xs-inline,
.visible-xs-inline-block,
.visible-sm-block,
.visible-sm-inline,
.visible-sm-inline-block,
.visible-md-block,
.visible-md-inline,
.visible-md-inline-block,
.visible-lg-block,
.visible-lg-inline,
.visible-lg-inline-block {
  display: none !important;
}
@media (max-width: 767px) {
  .visible-xs {
    display: block !important;
  }
  table.visible-xs {
    display: table !important;
  }
  tr.visible-xs {
    display: table-row !important;
  }
  th.visible-xs,
  td.visible-xs {
    display: table-cell !important;
  }
}
@media (max-width: 767px) {
  .visible-xs-block {
    display: block !important;
  }
}
@media (max-width: 767px) {
  .visible-xs-inline {
    display: inline !important;
  }
}
@media (max-width: 767px) {
  .visible-xs-inline-block {
    display: inline-block !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm {
    display: block !important;
  }
  table.visible-sm {
    display: table !important;
  }
  tr.visible-sm {
    display: table-row !important;
  }
  th.visible-sm,
  td.visible-sm {
    display: table-cell !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm-block {
    display: block !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm-inline {
    display: inline !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm-inline-block {
    display: inline-block !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md {
    display: block !important;
  }
  table.visible-md {
    display: table !important;
  }
  tr.visible-md {
    display: table-row !important;
  }
  th.visible-md,
  td.visible-md {
    display: table-cell !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md-block {
    display: block !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md-inline {
    display: inline !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md-inline-block {
    display: inline-block !important;
  }
}
@media (min-width: 1200px) {
  .visible-lg {
    display: block !important;
  }
  table.visible-lg {
    display: table !important;
  }
  tr.visible-lg {
    display: table-row !important;
  }
  th.visible-lg,
  td.visible-lg {
    display: table-cell !important;
  }
}
@media (min-width: 1200px) {
  .visible-lg-block {
    display: block !important;
  }
}
@media (min-width: 1200px) {
  .visible-lg-inline {
    display: inline !important;
  }
}
@media (min-width: 1200px) {
  .visible-lg-inline-block {
    display: inline-block !important;
  }
}
@media (max-width: 767px) {
  .hidden-xs {
    display: none !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .hidden-sm {
    display: none !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .hidden-md {
    display: none !important;
  }
}
@media (min-width: 1200px) {
  .hidden-lg {
    display: none !important;
  }
}
.visible-print {
  display: none !important;
}
@media print {
  .visible-print {
    display: block !important;
  }
  table.visible-print {
    display: table !important;
  }
  tr.visible-print {
    display: table-row !important;
  }
  th.visible-print,
  td.visible-print {
    display: table-cell !important;
  }
}
.visible-print-block {
  display: none !important;
}
@media print {
  .visible-print-block {
    display: block !important;
  }
}
.visible-print-inline {
  display: none !important;
}
@media print {
  .visible-print-inline {
    display: inline !important;
  }
}
.visible-print-inline-block {
  display: none !important;
}
@media print {
  .visible-print-inline-block {
    display: inline-block !important;
  }
}
@media print {
  .hidden-print {
    display: none !important;
  }
}
/*--------------------------------------------------------------
31.0 Media queries
--------------------------------------------------------------*/
@media (max-width: 767px) {
  /* bxSlider */
  .bx-navigation {
    margin-top: -17px;
    left: 15px;
    height: 34px;
  }
  .bx-navigation.bx-next {
    right: 15px;
  }
  .bx-navigation .fa {
    font-size: 16px;
    line-height: 36px;
  }
  /* Featured posts */
  #featured-posts .entry-content {
    bottom: 10px;
    left: 15px;
  }
  #featured-posts .entry-title {
    font-size: 17px;
  }
  #featured-posts .entry-meta {
    font-size: 13px;
    margin-top: 1px;
  }
  /* Posts */
  .post {
    padding: 20px 20px 40px;
  }
  .post .entry-media,
  .page.type-page .entry-media {
    margin: -20px -20px 40px -20px;
  }
  .post .entry-header {
    margin-bottom: 15px;
  }
  .post .entry-title,
  .page.type-page .entry-title {
    font-size: 20px;
    margin: 5px 0 5px;
  }
  /* Author */
  #about-author {
    padding-top: 80px;
    position: relative;
    text-align: center;
  }
  #about-author .author-image {
    display: inline-block;
    float: none;
    margin-right: 0;
    margin-left: -45px;
    position: absolute;
    top: -45px;
    left: 50%;
  }
  /* Related posts */
  #related-posts .related-post,
  #related-posts .author-post,
  #author-posts .related-post,
  #author-posts .author-post {
    margin-bottom: 30px;
  }
  #related-posts .row > div:last-child > .related-post,
  #related-posts .row > div:last-child > .author-post,
  #author-posts .row > div:last-child > .related-post,
  #author-posts .row > div:last-child > .author-post {
    margin-bottom: 0;
  }
  /* Media feed */
  #mondo-media-feed .thumbnails {
    margin-right: -4px;
    margin-bottom: -4px;
  }
  #mondo-media-feed .thumbnail {
    margin: -2px;
  }
  #mondo-media-feed .thumbnail-inner {
    margin: 2px;
  }
}
@media (max-width: 991px) {
  /* Layout */
  .navigation-sticky {
    padding-top: 0;
  }
  /* Navbar */
  #navigation-bar {
    background-color: #333;
    display: none;
    overflow: scroll;
    padding: 50px 0 20px;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
  }
  #navigation-bar.open {
    display: block;
  }
  #navigation-bar .nav-list {
    padding: 0 20px;
    text-align: left;
  }
  #navigation-bar .nav-list > .menu-item {
    display: block;
  }
  #navigation-bar .nav-list .menu-item-has-children > a:before,
  #navigation-bar .nav-list .menu-item-has-children > a:after {
    display: none !important;
  }
  #navigation-bar .menu-item > a {
    display: inline-block;
    line-height: 1.5;
    padding: 10px 0;
  }
  #navigation-bar .sub-menu {
    background-color: transparent;
    padding-left: 20px;
    position: static;
  }
  #navigation-bar .sub-menu li a {
    font-size: 14px;
    padding: 10px 0;
  }
  #navigation-bar .search-field {
    border: 0;
  }
  #navigation-bar .search-submit {
    display: none;
  }
  /* Blog grid */
  .layout-grid .post-column:nth-child(2n+1) {
    clear: left;
  }
  .layout-grid .post-column:nth-child(3n+1) {
    clear: none;
  }
  /* Comment */
  #respond .comment-author-inputs > .input {
    margin-bottom: 10px;
  }
  #respond .comment-author-inputs > .input:last-child {
    margin-bottom: 0;
  }
  /* Widget */
  #secondary {
    padding: 60px 0 0 !important;
  }
}
@media (min-width: 768px) {
  /* Blog list */
  .post-list {
    background-color: transparent;
    padding: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
  }
  .post-list .entry-media {
    float: left;
    margin: 0;
    width: 250px;
  }
  .post-list .entry-content {
    background-color: #fff;
    margin-left: 270px;
    padding: 32px 40px;
    -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.05);
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.05);
  }
  .post-list .entry-header {
    margin-bottom: 10px;
    text-align: left;
  }
  .post-list .entry-category .cat-links:before,
  .post-list .entry-category .cat-links:after {
    display: none;
  }
  .post-list .entry-title {
    font-size: 18px;
    margin: 5px 0 5px;
  }
  .post-list .entry-meta .separator {
    padding: 0 2px;
  }
}
@media (min-width: 992px) {
  /* Layout */
  .layout-full-width .container,
  .layout-list .container,
  .layout-mixed .container {
    width: 970px;
  }
}

.adslotcontent580 { display:inline-block; width:100%; height:420px }
@media (max-width: 590px) { .adslotcontent580 { display: none; } }
.adslotcontentadaptive { display:inline-block; width:100%; height:260px }
@media (min-width: 591px) { .adslotcontentadaptive { display: none; } }