﻿/*--------------------------------------------------------------
>>> 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);
  }
}
/*--------------------------------------------------------------
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 {
    transition: all 0.35s ease 0s;
	-webkit-transition: all 0.35s ease 0s;
	-moz-transition: all 0.35s ease 0s;
}
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: #606060;
  font-family: "Merriweather", serif;
  font-size: 14px;
  line-height: 1.8;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Great Vibes", sans-serif;
  font-weight: 400;
  letter-spacing: 1px;
  line-height: 1.3;
  margin: 20px 0;
}
.mothia-newsletter h4,
#about-author .author-name,
#related-posts .entry-title, #author-posts .entry-title,
.bordered-title, #comments #reply-title,
.widget h1,
.widget h2,
.widget h3,
.widget h4,
.widget h5,
.widget h6 {
	font-family: "Merriweather", sans-serif;
	font-weight: 700;
}
h1 {
  font-size: 32px;
}
h2 {
  font-size: 28px;
}
h3 {
  font-size: 24px;
}
h4 {
  font-size: 20px;
}
h5 {
  font-size: 16px;
}
h6 {
  font-size: 14px;
}
input,
button,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}
p {
  margin: 0;
}
blockquote {
  color: #949494;
  font-size: 16px;
  margin: 40px 0;
  padding-left: 40px;
  position: relative;
}
blockquote:before {
  content: "“";
  font-family: PT Sans;
  position: absolute;
  top: 0;
  left: 0;
  font-size: 90px;
  line-height: 60px;
}
a {
  color: #ff406f;
  text-decoration: none;
  -webkit-transition: color 0.2s ease;
  -o-transition: color 0.2s ease;
  transition: color 0.2s ease;
}
#colophon .fa {
	color: #ff406f;
}
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;
}
.smooth-fonts { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
/*--------------------------------------------------------------
3.0 Grid
--------------------------------------------------------------*/
.container {
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
}
@media (min-width: 768px) {
  .container {
    width: 750px;
  }
}
@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: #ff406f;
  border: 0;
  border-radius: 20px;
  color: #fff;
  display: inline-block;
  font-family: "PT Sans", sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 9px 40px 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: #ff406f;
}
.compact-form .password-submit {
  top: 28px;
}
/*--------------------------------------------------------------
6.0 Social icons
--------------------------------------------------------------*/
.social-icons {
  list-style-type: none;
  margin: 0;
  padding: 0;
  background-color: #fff;
}
.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: #ff406f;
}
.linked-icons {
    display: block;
    text-align: center;
    padding: 30px 0;
}
.sharer-links.linked-icons:before {
    background-color: #e8e8e8;
    content: "";
    position: absolute;
    top: 0;
    left: 0px;
    width: 100%;
    height: 2px;
}
#footer-social-links .social-icons li {
	width: auto;
	background: transparent !important;
	margin: 0 15px;
}
#footer-social-links .social-icons li a:hover {
	color: #606060;
}

/*-----------------------------------------------------------------------------------*/
/*	LOADER
/*-----------------------------------------------------------------------------------*/
.page-loading {
	position: fixed;
	width: 100%;
	height: 100%;
	z-index: 100;
	background-color: #fff;
	text-align: center;
	display: table;
	-moz-transition: all 1.5s ease-in-out;
	-webkit-transition: all 1.5s ease-in-out;
	-ms-transition: all 1.5s ease-in-out;
	-o-transition: all 1.5s ease-in-out;
	transition: all 1.5s ease-in-out;
	z-index: 99999;
}
.page-loader img {
	display: inline-block;
}
.page-loading .page-loading-content {
	display: table-cell;
	vertical-align: middle;
}

.page-loading .page-loader {
	display: block;
}

.page-loading .page-loading-logo,
.page-loading .page-loader {
	-moz-transition: all 1s ease-in-out;
	-webkit-transition: all 1s ease-in-out;
	-ms-transition: all 1s ease-in-out;
	-o-transition: all 1s ease-in-out;
	transition: all 1s ease-in-out;
}

.page-loading-animate {
	-moz-transform: translateY(-150%);
	-webkit-transform: translateY(-150%);
	-ms-transform: translateY(-150%);
	-o-transform: translateY(-150%);
	transform: translateY(-150%);

}

.page-loading-animate .page-loading-logo,
.page-loading-animate .page-loader {
	-moz-transform: scale(0.2, 0.2);
	-webkit-transform: scale(0.2, 0.2);
	-ms-transform: scale(0.2, 0.2);
	-o-transform: scale(0.2, 0.2);
	transform: scale(0.2, 0.2);
}

/*--------------------------------------------------------------
7.0 Brand
--------------------------------------------------------------*/
.clear {clear:both;}
#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;
  position: fixed;
    width: 100%;
	z-index: 9;
	-webkit-box-shadow: 1px 1px 10px rgba(0, 0, 0, .2);
    -moz-box-shadow: 1px 1px 10px rgba(0, 0, 0, .2);
    box-shadow: 1px 1px 10px rgba(0, 0, 0, .2);
}
#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 .current_page_item > a,
#navigation-bar .menu-item > a:hover {
  color: #ff406f;
}
#navigation-bar .menu-item.current-menu-item:not(.menu-item-home) > a {
  color: #ff406f;
}
#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: 350px;
}
#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: #ff406f;
}
#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;
}
#brand {
	padding-top: 50px;
}
/*--------------------------------------------------------------
9.0 Layout
--------------------------------------------------------------*/
.navigation-sticky {
  padding-top: 50px;
}
.bg-pattern {
  background-attachment: fixed;
}
.no-logo #content {
  padding-top: 45px;
}
#content {
  padding-bottom: 45px;
}
#secondary {
  padding-left: 30px;
}
#secondary.left-column {
    padding-left: 0;
}
.left-column #secondary {
  padding-right: 30px;
  padding-left: 0;
}
.mothia-logo {
	margin-top: 0;
}
.mothia-logo a {
	color: inherit;
}
#brand .brand-logo .logo-text {
    display: block;
    text-align: center;
    text-transform: capitalize;
	font-size: 78px;
	font-weight: 600;
	letter-spacing: 5px;
	line-height: 1;
}
#brand .brand-logo .mothia-slogan {
	text-transform: capitalize;
	color: #888888;
	font-size: 14px;
}
/*--------------------------------------------------------------
10.0 Posts
--------------------------------------------------------------*/
.post {
  background-color: #fff;
  margin-bottom: 45px;
  padding: 40px;
  border: 1px solid #ECEAEA;
}
.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: #ff406f;
  /* 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: 38px;
  margin: 20px 0 15px;
  word-wrap: break-word;
}
.post .entry-title a,
.page.type-page .entry-title a {
  color: #000;
  -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;
}
.related-post .entry-meta,
.author-post .entry-meta,
.post .entry-meta {
  color: #727272;
  font-family: "PT Sans", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.related-post .entry-meta,
.author-post .entry-meta {
	letter-spacing: 0
}
.entry-footer ul.entry-meta {
    padding-left: 0;
    list-style: none;
	font-size: 13px;
	margin-top: 30px;
	font-weight: 400;
	float: left;
	color: #909090;
}
body.single .entry-footer ul.entry-meta {
	margin:0
}
.entry-comment {
	float: right;
	margin-top: 30px;
}
ul.entry-meta > li {
	padding-right: 10px;
	display: inline-block;
}
ul.entry-meta li.entry-share {
	position: relative;
}
ul.entry-meta li.entry-share .sharer-links {
    position: absolute;
    width: 280px;
    top: -7px;
    left: 100%;
    margin-left: -15px;
    display: none;
    padding: 0;
}
ul.entry-meta li.entry-share:hover .sharer-links {
    display: block;
}
ul.entry-meta li.entry-share .sharer-links.show {
	display: block;
}
ul.entry-meta li.entry-share .sharer-links i.fa {
	padding: 0
}
ul.entry-meta li.entry-share .sharer-links.linked-icons:before {
	display: none
}
ul.entry-meta li i.fa {
	padding-right: 5px;
}
ul.entry-meta a {
	color: #909090;
}
.entry-comment {
	font-size: 14px;
	color: #909090;
}
.entry-meta .entry-date:before {
    content: "-";
    padding-right: 8px;
	padding-left: 3px;
}
.wrap-like.active .fa {
	color: #ff406f
}
.cat-links {
	color: #ff406f;
}
.entry-single-info.hidden-author .entry-date:before {
	display: none;
}
.related-post .entry-meta a,
.author-post .entry-meta a,
.post .entry-meta a {
  color: #727272;
}
.post .entry-meta a:hover {
  color: #ff406f;
}
.post .entry-meta .separator {
  padding: 0 5px;
}
.post .entry-media,
.page.type-page .entry-media {
  margin: -40px -40px 40px -40px;
}
.post-compact .entry-media {
 margin: -30px -30px 30px -30px;
}
.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;
}
.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 {
  float: right;
}
.post.sticky .entry-title > a:before {
  color: #bfbfbf;
  content: "\f08d";
  font-family: FontAwesome;
  font-size: 18px;
  margin-right: 8px;
  position: relative;
  top: -3px;
}
.mothia-paged {
	margin: 60px 0 0;
	padding: 0;
}
.mothia-paged li {
    display: inline-block;
    line-height: 40px;
	height: 40px;
	vertical-align: top;
    min-width: 40px;
    text-align: center;
    margin-right: 5px;
    border: 1px solid #ECEAEA;
    background-color: #fff;
	transition: all 0.35s ease 0s;
	-webkit-transition: all 0.35s ease 0s;
	-moz-transition: all 0.35s ease 0s;
}
.mothia-paged li .fa {
    line-height: 40px;
}
.mothia-paged li:hover {
	background-color: #ff406f;
}
.mothia-paged li span,
.mothia-paged li a {
	padding: 0 5px;
}
.mothia-paged li:hover span,
.mothia-paged li:hover a {
	color: #fff;
}
.mothia-paged li a {
	color: #909090;
	display: block;
}
.mothia-paged li .current {
	color: #ff406f
}
/*--------------------------------------------------------------
11.0 Blog grid
--------------------------------------------------------------*/
.main-slider {
	margin-top: 60px;
}
.main-slider .posts_info {
	position: absolute;
	width: 100%;
	top: 50%;
	z-index: 10;
	transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
}
.main-slider .posts_info .inner_info {
	max-width: 600px;
	margin: 0 auto;
	background-color: rgba(255,255,255,0.9);
	padding:20px 40px;
	position: relative;
	
	-webkit-transition: all 0.55s ease 0s;
	-moz-transition: all 0.55s ease 0s;
	
	-webkit-transition-delay: 0.5s;
    -moz-transition-delay: 0.5s;
    transition-delay: 0.5s;
	top: 50px;
	opacity: 0;
}
.mothia-columns .posts_info .inner_info {
	-webkit-transition: all 0.2s ease 0s;
	-moz-transition: all 0.2s ease 0s;
	
	-webkit-transition-delay: 0.2s;
    -moz-transition-delay: 0.2s;
    transition-delay: 0.2s;
}
.main-slider .active .posts_info .inner_info {
	opacity: 1;
	top: 0px;
}
.mothia-columns .posts_info .inner_info {
	top: 0;
	opacity: 1;
	margin-left: 0;
}
.main-slider .posts_info .inner_info:before {
	content: "";
	position: absolute;
	top: -15px;
	left: -15px;
	right: -15px;
	bottom: -15px;
	background-color: rgba(255,255,255,0.4);
	z-index: -1;
}
.main-slider.style-2 {
	overflow: hidden;
}
.main-slider.style-2 .owl-carousel .owl-stage-outer,
.main-slider.style-2 .owl-carousel {
	overflow: inherit;
}
.mothia-child-slider .posts_info .inner_info,
.mothia-large-slider .posts_info .inner_info {
	opacity: 1;
	top: 0;
}
.mothia-child-slider .posts_info .inner_info:before,
.mothia-child-slider .posts_info .inner_info,
.mothia-large-slider .posts_info .inner_info:before,
.mothia-large-slider .posts_info .inner_info,
.mothia-columns .posts_info .inner_info:before,
.mothia-columns .posts_info .inner_info {
	background: transparent;
}
.mothia-child-slider.slick-initialized .slick-slide {
	position: relative;
	cursor: pointer;
}
.mothia-large-slider.slick-initialized .slick-slide:after,
.mothia-child-slider.slick-initialized .slick-slide:after {
	position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: "";
	background-color: rgba(0, 0 ,0, 0.3);
	transition: all 0.2s linear 0s;
    -webkit-transition: all 0.2s linear 0s;
    -moz-transition: all 0.2s linear 0s;
}
.mothia-large-slider.slick-initialized .slick-slide:after {
	background-color: rgba(0, 0 ,0, 0.25);
}
.mothia-child-slider.slick-initialized .slick-slide:hover:after {
	background-color: rgba(0, 0 ,0, 0.6);
}
.mothia-child-slider .posts_info .inner_info {
	padding: 0 15px 15px 15px;
}
.mothia-large-slider .posts_info .inner_info {
	max-width: 60%;
	padding: 0
}
.mothia-child-slider .mothia-item.post .entry-title {
	font-size: 24px;
	margin-bottom: 0;
}
.mothia-large-slider .mothia-item.post .entry-title {
    font-size: 38px;
}
.mothia-child-slider.slick-initialized .slick-slide:focus {
    outline: inherit;
}
.main-slider.style-6 .posts_info {
    right: 50px;
    width: 360px;
    left: auto;
}
.main-slider.style-6 .entry-single-info  {
	margin-bottom: 10px
}
.main-slider.style-6 .posts_info .inner_info {
	background: transparent;
	padding: 25px;
	background: #fff;
}
.main-slider.style-6 .posts_info .inner_info:before {
	display:none;
}
.main-slider.style-6 .mothia-item.post .entry-title {
    font-size: 25px;
	margin-top: 10px;
}
.custom-slider .entry-title {
	margin-top: 0;
}
.custom-slider .entry-title:after {
	content : "";
	display: block;
	width: 40px;
	border-top: 1px solid #606060;
	margin-top: 12px;
}
.main-slider .mothia-large-slider .custom-slider .entry-title:after,
.custom-slider .entry-title:after {
	border-color: #fff;
	margin: 0 auto;
	margin-top: 12px;
}
.main-slider .custom-slider .entry-title:after {
	border-color: #606060;
}
.mothia-main-slider-3 .post-excerpt,
.mothia-main-slider-4 .post-excerpt {
	color: #fff;
}
.main-slider.style-6 .mothia-item.post .entry-title a {
	color: #000
}
.main-slider.style-6 .custom-slider .entry-title:after {
	margin: 12px 0 0;
}
.entry-title span,
.mothia-large-slider .posts_info .inner_info .entry-title span,
.main-slider.style-6 .mothia-item.post .entry-title span {
	color: #ff406f
}
.mothia-columns .mothia-item:after {
	content: "";
	position: absolute;
	height: 140px;
	width: 100%;
	bottom: 0px;
	left: 0;
	background-color: rgba(255,255,255,0);
	background-image: -webkit-linear-gradient(bottom, rgba(0,0,0,.85), rgba(0,0,0,0));
	background-image: -moz-linear-gradient(bottom, rgba(0,0,0,.85), rgba(0,0,0,0));
	background-image: -o-linear-gradient(bottom, rgba(0,0,0,.85), rgba(0,0,0,0));
	background-image: -ms-linear-gradient(bottom, rgba(0,0,0,.85), rgba(0,0,0,0));
	background-image: linear-gradient(to top, rgba(0,0,0,.85), rgba(0,0,0,0));
}
.mothia-child-slider .posts_info,
.mothia-columns .posts_info {
	top: auto;
    bottom: 0;
	transform: inherit;
  -webkit-transform: inherit;
}
.mothia-large-slider .post .entry-meta a,
.mothia-large-slider .post .entry-meta,
.mothia-columns .post .entry-meta a,
.mothia-columns .post .entry-meta {
	color: #fff;
}
.mothia-large-slider .post-excerpt,
.mothia-child-slider .posts_info .inner_info .entry-title a,
.mothia-large-slider .posts_info .inner_info .entry-title a,
.mothia-columns .posts_info .inner_info .entry-title a {
	color: #fff;
}
.mothia-large-slider .post-excerpt {
	margin-bottom: 15px;
}
.mothia-item.post {
    background-color: transparent;
    padding: 0;
    margin: 0;
    border: 0;
}
.mothia-item.post .entry-title {
	font-size: 28px;
}
.posts_info .inner_info .entry-title a {
	color: #000;
}
.mothia-newsletter {
	background-color: #fff;
    margin: 0 15px 60px;
    padding: 40px 40px 35px 40px;
	font-size: 14px;
	color: #999;
    border: 1px solid #ECEAEA;
}
.mothia-newsletter.bottom {
    margin-top: 60px;
    margin-bottom: 0;
}
.mothia-newsletter h4 {
	margin: 0;
	color:#606060;
	font-size: 16px;
}
.subscribe-form {
    text-align: right;
}
.mothia-newsletter h4:before {
    font-family: "FontAwesome";
    content: "\f003";
    font-weight: 400;
    font-size: 16px;
    margin-right: 6px;
}
.mc4wp-alert {
	color: #ff406f
}
.mothia-newsletter input[type="email"] {
    width: 60%;
    display: inline-block;
    margin-right: 10px;
}
.mothia-newsletter input[type="submit"] {
    float: right;
	border-radius: 0;
}
.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 {
	    margin-bottom: 30px;
  padding: 30px;
}
.post-compact .entry-header {
  margin-bottom: 15px;
}
.post-compact .entry-title {
  font-size: 28px;
  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;
  position: relative;
}
/*--------------------------------------------------------------
15.0 Page
--------------------------------------------------------------*/
.page.type-page {
  background-color: #fff;
  border: 1px solid #ECEAEA;
  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-title {
  color: #fff;
  font-size: 28px;
  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: #ff406f;
}
.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;
  font-size: 12px;
  margin: 0 26px 0 0;
}
#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: 15px;
  margin: 0 0 10px;
  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: #ff406f;
}
#related-posts .entry-meta,
#author-posts .entry-meta {
  font-family: "PT Sans", sans-serif;
  font-size: 13px;
  font-weight: 700;
  margin-top: 5px;
}
.mothia-sidebar-top {
	padding-left: 15px;
	padding-right: 15px;
	margin-bottom: 60px;
}
.mothia-sidebar-bottom {
	padding-left: 15px;
	padding-right: 15px;
	margin-top: 60px;
}
#next-prev-posts {
    position: fixed;
    bottom: 20%;
	overflow: hidden;
    width: 100%;
    left: 0;
	z-index: 1;
	opacity: 0;
	transition: all 0.55s ease 0s;
	-webkit-transition: all 0.55s ease 0s;
	-moz-transition: all 0.55s ease 0s;
}
#next-prev-posts.show {
	opacity: 1;
}
#next-prev-posts > a {
	border: 2px solid transparent;
	display: block;
	background-color: transparent;
	width: 370px;
    vertical-align: middle;
    height: 79px;
	position: relative;
	transition: all 0.55s ease 0s;
	-webkit-transition: all 0.55s ease 0s;
	-moz-transition: all 0.55s ease 0s;
}
#next-prev-posts > a:hover {
	border-color: #ff406f;
	background-color: #fff;
	margin: 0;
}
#next-prev-posts .entry-title {
    position: relative;
    vertical-align: middle;
    padding: 0 25px;
	color: #333;
	display: block;
	top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
	transition: all 0.35s ease 0s;
	-webkit-transition: all 0.35s ease 0s;
	-moz-transition: all 0.35s ease 0s;
}
#next-prev-posts > a img {
    position: absolute;
	top: 0;
}
#next-prev-posts .nav-previous {
	float: left;
	padding-right: 100px;
	margin-left: -268px;
}
#next-prev-posts .nav-next {
	float: right;
	padding-left: 100px;
	margin-right: -268px;
}
#next-prev-posts .nav-previous img {
	right: 0;
}
#next-prev-posts .nav-next img {
	left: 0;
}
/*--------------------------------------------------------------
21.0 Widgets
--------------------------------------------------------------*/
.widget {
  margin-bottom: 60px;
}
.widget img {
	display:inline;
}
.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: #ff406f;
}
.widget > ul > li:last-child > a {
  padding-bottom: 0 !important;
}
.widget_mothia_categories_widget .category-item > a {
  display: block !important;
}
.widget_mothia_categories_widget .category-item-count {
  background-color: #ff406f;
  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_mothia_about_widget .profile {
  margin-bottom: 15px;
}
.widget ul.social-icons {
    background: none;
    margin-top: 15px;
    text-align: center;
}
.widget_mothia_about_widget .profile-image {
    display: block;
    margin-bottom: 10px;
	margin-left: auto;
    margin-right: auto;
}
.widget_mothia_about_widget .profile-name {
    color: #fff;
    font-weight: 400;
    font-family: Great Vibes;
    font-size: 21px;
    letter-spacing: 2px;
}
.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;
}
.widget .post-widget-list .entry-title {
    display: block;
    font-size: 14px;
    margin: 0;
    text-transform: uppercase;
}
.widget .post-widget-list .entry-title a {
  color: #333;
}
.widget .post-widget-list .entry-title a:hover {
  color: #ff406f;
}
.widget .post-widget-list .entry-meta {
    color: #727272;
    font-family: "PT Sans", sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.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_mothia_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: #ff406f;
  border-color: #ff406f;
  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;
}
.widget_mothia_recent_posts_widget .entry-meta .entry-date:before {
	display: none;
}
/*--------------------------------------------------------------
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);
  position: relative;
    z-index: 9;
}
#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;
  margin-bottom: 30px;
}
#respond .form-submit {
  margin-top: 15px;
}
#respond .comment-author-inputs {
	margin-bottom: 30px;
}
/*--------------------------------------------------------------
23.0 404
--------------------------------------------------------------*/
.not-found .message {
  margin-bottom: 10px;
}
/*--------------------------------------------------------------
24.0 Media feed
--------------------------------------------------------------*/
.inner-footer-top {
	background-color: #fff;
	/* margin-bottom: 60px; */
	border: 1px solid #ECEAEA;
}
#media-feed,
.media-image {
	position: relative;
}
.media-label {
    position: absolute;
    z-index: 9;
    background-color: #fff;
    padding: 10px 25px;
    left: 50%;
	
	opacity: 0;
	top: -20px;
	
	transition: all .3s;
	-webkit-transition: all .3s;
    -moz-transition: all .3s;
	
	text-transform: uppercase;
	transform: translate(-50%,-50%);
  -webkit-transform: translate(-50%,-49%);
  
  -webkit-transition-delay: 6s;
    -moz-transition-delay: 6s;
    transition-delay: 6s;
}
.media-images.loading:before {
    content: "";
    position: absolute;
    background: url("../inc/images/ajax-loader.gif") no-repeat center center rgba(255,255,255,0.4);
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 1;
}
.active .media-label {
	opacity: 1;
	top: 0px;
}
.media-label .fa {
	margin-right: 10px;
}
.image-caption {
	position: absolute;
	top:0;
	left:0;
	right:0;
	bottom:0;
	text-align: center
}
.image-caption:before {
	content: '';
	background-color: rgba(0,0,0,0.65);
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}
.media-image:hover .image-caption:before {
	opacity: 1;
}
.media-image a {
	color: #fff;
}
.image-caption:before,
.image-caption .image-comment,
.image-caption .image-like,
.image-caption .image-description {
	transition: all .3s;
	-webkit-transition: all .3s;
    -moz-transition: all .3s;
	opacity: 0;
}
.image-caption .image-comment,
.image-caption .image-like {
	display:inline-block;
	margin: 0 10px;
}
.image-caption .image-comment {
    transform: translateX(10px);
    -webkit-transform: translateX(10px);
}
.image-caption .image-like {
    transform: translateX(-10px);
    -webkit-transform: translateX(-10px);
}
.image-caption .image-description {
    transform: translateY(10px);
    -webkit-transform: translateY(10px);
	padding: 0 15px;
}
.image-caption-inner {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 100%;
}
.image-caption .image-comment .fa,
.image-caption .image-like .fa {
	padding-right: 4px;
}
.media-image:hover .image-caption .image-like {
	transform: translateX(0);
    -webkit-transform: translateX(0);
	opacity: 1;
}
.media-image:hover .image-caption .image-comment {
	transform: translateX(0);
    -webkit-transform: translateX(0);
	opacity: 1;
}
.media-image:hover .image-caption .image-description {
	transform: translateY(0);
    -webkit-transform: translateY(0);
	opacity: 1;
}
/*--------------------------------------------------------------
25.0 Footer
--------------------------------------------------------------*/
#colophon {
  padding: 40px 0 35px;
  text-align: center;
  position: relative;
  background-color: #f9f9f9;
}
#colophon img {
  display: inline;
}
#colophon:before {
  background-color: #e8e8e8;
  /* content: ""; */
  position: absolute;
  top: 0;
  left: 0px;
  width: 100%;
  height: 2px;
}
/*--------------------------------------------------------------
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: #ff406f;
}
.slick-slide img {
	width: 100%
}
.slick-slider, .owl-carousel {overflow: hidden}
.slick-slider .slick-arrow,
.owl-nav i {
	font-size: 24px;
    color: #606060;
}
.slick-slider .slick-arrow:hover,
.owl-nav >div:hover i {
	color: #ff406f;
}
.owl-next,
.owl-prev {
	position: absolute;
    top: 50%;
    width: 35px;
    height: 60px;
	margin-top: -30px;
    line-height: 66px;
    text-align: center;
    background-color: #fff;
	cursor: pointer;
	z-index: 9;
	-webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.slick-slider .slick-arrow {
	line-height: 60px;
}
.owl-next {right:-35px;}
.owl-prev {left:-35px;}
.slick-slider:hover .owl-next, .owl-carousel:hover .owl-next {right:0px;}
.slick-slider:hover .owl-prev, .owl-carousel:hover .owl-prev {left:0px;}
/*--------------------------------------------------------------
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: #ff406f;
}
.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: #ff406f;
  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: 18px;
  margin: 0 0 25px;
  padding-bottom: 15px;
  position: relative;
}
.bordered-title:after,
#comments #reply-title:after {
  background-color: #ff406f;
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  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: 479px) {
	ul.entry-meta li.entry-share {position: static;}
	ul.entry-meta{position: relative;}
	ul.entry-meta li.entry-share .sharer-links {
		top: 30px;
		left: -25px;
	}
	.main-slider {display:none}
	.post .entry-title {
		font-size: 28px !important;
	}
}
@media (max-width: 480px) {
	.main-slider.style-6 .mothia-item.post .entry-title {
		font-size: 16px
	}
	.main-slider .post .entry-meta {
		font-size: 11px;
	}
}
@media (max-width: 767px) {
	.main-slider.style-6 .posts_info {
		width: auto;
		left: 50px;
		text-align: center;
		right: 50px;
	}
	.main-slider .post-excerpt {
		display:none;
	}
	.main-slider.style-6 .mothia-item.post .entry-title {
		font-size: 22px;
		margin-top: 10px;
		margin-bottom: 10px;
	}
  .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;
  }
  .mothia-newsletter input[type="email"] { 
    width: 100%;
	display: block;
	margin-bottom: 10px;
	margin-top: 10px;
  }
  .mothia-newsletter input[type="submit"] {
	  float:none
  }
  .subscribe-form { text-align: left; }
}
@media (max-width: 767px) {
  .visible-xs-block {
    display: block !important;
  }
}
@media (max-width: 767px) {
  .visible-xs-inline {
    display: inline !important;
  }
}
@media (min-width: 768px) {
#masthead {
	position: relative;
	z-index:999;
}
}
@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 */
  #mothia-media-feed .thumbnails {
    margin-right: -4px;
    margin-bottom: -4px;
  }
  #mothia-media-feed .thumbnail {
    margin: -2px;
  }
  #mothia-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 15px 0 !important;
  }
}
@media (min-width: 768px) {
  /* Blog list */
  .post-list {
    background-color: transparent;
    padding: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
	position: relative;
	border: 0;
  }
  .post-list > a {
    position: absolute;
    margin: 0;
    height: 100%;
    width: 40%;
    overflow: hidden;
  }
  .post-grid .entry-media > .wp-post-image,
  .post-list .entry-media > .wp-post-image {
    height: 100%;
    width: auto;
	display: inline-block;
  }
  .post-grid .entry-media,
  .post-list .entry-media {
	margin: 0;
	text-align: center;
	position: absolute;
	width: 1000px;
	margin-left: -500px;
    left: 50%;
    height: 100%;
	top: 0;
	bottom: 0;
  }
  .post-list .entry-content {
    background-color: #fff;
    margin-left: 40%;
    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.post-list .entry-title {
    font-size: 28px;
    margin: 5px 0 5px;
  }
  .post-list .entry-meta .separator {
    padding: 0 2px;
  }
  .post-column.no-padding {
	padding-left: 0;
	padding-right: 0;
  }
  .post.post-grid {border:0;padding: 30px;position: relative;margin-bottom: 0;}
  .post-grid > a {
	  position: absolute;
	  left: 0;
	  top: 0;
	  overflow: hidden;
	  right: 50%;
	  bottom: 0;
  }
  .post-grid > .entry-content {
	  width:50%;
	  padding-left: 30px;
	  float: right;
	  min-height: 225px;position: relative;
  }
  .grid-reverse .post-grid > a {
	  right: 0;
	  left: 50%;
  }
  .grid-reverse .post-grid > .entry-content {
	  float: none;
	  padding-right: 30px;
	  padding-left: 0;
  }
  .post.post-grid .entry-meta {
	  letter-spacing: 0;
  }
  .post.post-grid .entry-header {
	  text-align: left;
	  position: absolute;
	  top: 50%;
	  transform: translateY(-50%);
	  -webkit-transform: translateY(-50%);
  }
  .grid-reverse .post.post-grid .entry-header {
	  padding-right: 30px
  }
  .post.post-grid .entry-title {font-size: 28px;}
  
	.subscribe-form,
	.subscribe-text {
		float: left;
		width: 50%;
	}
}
@media (min-width: 992px) {
  /* Layout */
  .layout-full-width .container,
  .layout-list .container,
  .layout-mixed .container {
    width: 970px;
  }
}
