/*
Theme Name: Mallow
Theme URI: http://mallow.thebasicstudio.com
Description: Mallow - Lifestyle Blog & Magazine WordPress Theme
Author: THEBASIC
Author URI: http://thebasicstudio.com
Version: 1.2
Requires at least: 5.0
Tested up to: 5.6
Requires PHP: 5.6.20
License: Themeforest Licence
License URI: http://themeforest.net/licenses
Tags: one-column, two-columns, right-sidebar, flexible-header, custom-background, custom-colors, custom-menu, featured-images, full-width-template, post-formats, sticky-post, theme-options, translation-ready
Text Domain: mallow

*/

/*==============================================================
    TABLE OF CONTENTS:
----------------------------------------------------------------
    01 - Normalize
    02 - Base Styles
    03 - Typography
    04 - Grid
    05 - Header
    06 - Navigation
    07 - Accessibility
    08 - Alignments
    09 - Clearings
    10 - Widgets
    11 - Content
        11.1 - Posts and pages
        11.2 - Comments
    12 - Infinite scroll
    13 - Media
        13.1 - Captions
        13.2 - Galleries
    14 - Footer
    15 - Advertisements
    16 - Media Queries
--------------------------------------------------------------*/

/*--------------------------------------------------------------
    01 - Normalize
--------------------------------------------------------------*/
html {
    letter-spacing: .02rem;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    margin: 0 auto;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
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 {
    text-decoration: none;

    outline: 0 !important;
    background-color: transparent;
}

a:active,
a:hover {
    outline: 0;
}

a:visited{
    color: inherit;
}

abbr[title] {
    border-bottom: 1px dotted;
}

b,
strong {
    font-weight: bold;
}

dfn {
    font-style: italic;
}

h1 {
    font-size: 2em;

    margin: .67em 0;
}

mark {
    color: #000;
    background: #ff0;
}

small {
    font-size: 80%;
}

sub,
sup {
    font-size: 75%;
    line-height: 0;

    position: relative;

    vertical-align: baseline;
}

sup {
    top: -.5em;
}

sub {
    bottom: -.25em;
}

img {
    border: 0;
}

svg:not(:root) {
    overflow: hidden;
}

figure {
    margin: 0;
}

hr {
    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 {
    font: inherit;

    margin: 0;

    color: inherit;
}

button {
    overflow: visible;
}

button,
select {
    text-transform: none;
}

button,
html input[type='button'],
input[type='reset'],
input[type='submit'] {
    font-size: 1.2rem;

    height: 3.8rem;
    padding: 0 30px;

    cursor: pointer;
    letter-spacing: .2rem;

    -webkit-appearance: button;
}

button[disabled],
html input[disabled] {
    cursor: default;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
    padding: 0;

    border: 0;
}

input {
    line-height: normal;
}

input[type='checkbox'],
input[type='radio'] {
    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-search-cancel-button,
input[type='search']::-webkit-search-decoration {
    -webkit-appearance: none;
}

fieldset {
    margin: 0 2px;
    padding: .35em .625em .75em;

    border: 1px solid #c0c0c0;
}

legend {
    padding: 0;

    border: 0;
}

textarea {
    overflow: auto;
}

optgroup {
    font-weight: bold;
}

table {
    border-spacing: 0;
    border-collapse: collapse;
}

td,
th {
    padding: 0;
}

/*--------------------------------------------------------------
    02 - Base Styles
--------------------------------------------------------------*/
html {
    font-size: 62.5%;
}
body {
    font-family: serif;
    font-size: 1.6rem; /* currently ems cause chrome bug misinterpreting rems on body element */
    font-weight: 400;
    line-height: 1.7;

    color: #222;
}

/*--------------------------------------------------------------
    03 - Typography
--------------------------------------------------------------*/
h1,
h2,
h3,
h4,
h5,
h6 {
    margin-top: 0;
    margin-bottom: 2rem;

    letter-spacing: .02rem;
}

h1 {
    font-size: 4.8rem;
    line-height: 1.2;
}

h2 {
    font-size: 4rem;
    line-height: 1.2;
}

h3 {
    font-size: 3.2rem;
    line-height: 1.2;
}
h4 {
    font-size: 2.4rem;
    line-height: 1.2;
}
h5 {
    font-size: 1.8rem;
    line-height: 1.5;
}
h6 {
    font-size: 1.5rem;
    line-height: 1.6;

    letter-spacing: 0;
}

p {
    margin-top: 0;
}

/* Buttons */
.button,
button,
input[type='submit'],
input[type='reset'],
input[type='button'] {
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 38px;

    display: inline-block;

    box-sizing: border-box;
    height: 38px;
    padding: 0 30px;

    cursor: pointer;
    transition: all .4s ease 0s;
    text-align: center;
    text-decoration: none;
    letter-spacing: .2rem;
    text-transform: uppercase;

    color: #555;
    border: none;
    background-color: transparent;
}
.button:hover,
button:hover,
input[type='submit']:hover,
input[type='reset']:hover,
input[type='button']:hover,
.button:focus,
button:focus,
input[type='submit']:focus,
input[type='reset']:focus,
input[type='button']:focus {
    color: #333;
    outline: 0;
}
.button.button-primary,
button.button-primary,
input[type='submit'].button-primary,
input[type='reset'].button-primary,
input[type='button'].button-primary {
    color: #fff;
    border-color: #33c3f0;
    background-color: #33c3f0;
}
.button.button-primary:hover,
button.button-primary:hover,
input[type='submit'].button-primary:hover,
input[type='reset'].button-primary:hover,
input[type='button'].button-primary:hover,
.button.button-primary:focus,
button.button-primary:focus,
input[type='submit'].button-primary:focus,
input[type='reset'].button-primary:focus,
input[type='button'].button-primary:focus {
    color: #fff;
    border-color: #1eaedb;
    background-color: #1eaedb;
}


/* Forms */
input[type='email'],
input[type='number'],
input[type='search'],
input[type='text'],
input[type='tel'],
input[type='url'],
input[type='password'],
textarea,
select {
    font-size: 1.4rem;
    font-style: italic;

    box-sizing: border-box;
    width: 100%;
    height: 38px;
    padding: 6px 10px;

    border: 1px solid #d1d1d1;
    background-color: #fff;
    box-shadow: none;
}

input[type='email'],
input[type='number'],
input[type='search'],
input[type='text'],
input[type='tel'],
input[type='url'],
input[type='password'],
textarea {
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
}
textarea {
    width: 100%;
    min-height: 100px;
    padding-top: 6px;
    padding-bottom: 6px;
}
input[type='email']:focus,
input[type='number']:focus,
input[type='search']:focus,
input[type='text']:focus,
input[type='tel']:focus,
input[type='url']:focus,
input[type='password']:focus,
textarea:focus,
select:focus {
    border: 1px solid #999;
    outline: 0;
}
label,
legend {
    font-weight: 600;

    display: block;

    margin-bottom: .5rem;
}
fieldset {
    padding: 0;

    border-width: 0;
}
input[type='checkbox'],
input[type='radio'] {
    display: inline;
}
label > .label-body {
    font-weight: normal;

    display: inline-block;

    margin-left: .5rem;
}


/* Lists */
ul {
    list-style: circle inside;
}
ol {
    list-style: decimal inside;
}
ol,
ul {
    margin-top: 0;
    padding-left: 0;
}
ul ul,
ul ol,
ol ol,
ol ul {
    font-size: 90%;

    margin: 1.5rem 0 1.5rem 3rem;
}
li {
    margin-bottom: 1rem;
}


/* Code */
code {
    font-size: 90%;

    margin: 0 .2rem;
    padding: .2rem .5rem;

    white-space: nowrap;

    border: 1px solid #e1e1e1;
    border-radius: 4px;
    background: #f1f1f1;
}
pre > code {
    display: block;

    padding: 1rem 1.5rem;

    white-space: pre;
}


/* Tables */
th,
td {
    padding: 12px 15px;

    text-align: left;

    border-bottom: 1px solid #e1e1e1;
}
th:first-child,
td:first-child {
    padding-left: 0;
}
th:last-child,
td:last-child {
    padding-right: 0;
}


/* Spacing */
button,
.button {
    margin-bottom: 1rem;
}
input,
textarea,
select,
fieldset {
    margin-bottom: 1.5rem;
}
pre,
blockquote,
dl,
figure,
table,
p,
ul,
ol,
form {
    margin-bottom: 3rem;
}

hr {
    margin-top: 3rem;
    margin-bottom: 3.5rem;

    border-width: 0;
    border-top: 1px solid #e1e1e1;
}

/*  Elements */

html {
    box-sizing: border-box;
}

*,
*:before,
*:after {
    /* Inherit box-sizing to make it easier to change the property for components that leverage other behavior; see http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
    box-sizing: inherit;
}

body {
    background: #fff; /* Fallback for when there is no custom background color defined. */
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
}

blockquote,
q {
    quotes: '' '';
}

hr {
    height: 1px;
    margin-bottom: 1.5em;

    border: 0;
    background-color: #ccc;
}

ul,
ol {
    margin: 0 0 1.5em 3em;
}

ul {
    list-style: disc;
}

ol {
    list-style: decimal;
}

li > ul,
li > ol {
    margin-bottom: 0;
    margin-left: 1.5em;
}

dt {
    font-weight: bold;
}

dd {
    margin: 0 1.5em 1.5em;
}

img {
    max-width: 100%; /* Adhere to container width. */
    height: auto; /* Make sure images are scaled correctly. */

    vertical-align: top;
}

table {
    width: 100%;
    margin: 0 0 1.5em;
}

/*--------------------------------------------------------------
    04 - Grid
--------------------------------------------------------------*/
.container {
    position: relative;

    box-sizing: border-box;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 ;
}
.column,
.columns {
    float: left;

    box-sizing: border-box;
    width: 100%;
    padding: 0 20px;
}

.row,
.row-m {
    margin: 0 -20px;
}

/* For devices larger than 1024px */
@media (min-width: 1024px) {
    .one.column,
    .one.columns {
        width: 8.33333333333%;
    }
    .two.columns {
        width: 16.6666666667%;
    }
    .three.columns {
        width: 25%;
    }
    .four.columns {
        width: 33.3333333333%;
    }
    .five.columns {
        width: 41.6666666667%;
    }
    .six.columns {
        width: 50%;
    }
    .seven.columns {
        width: 58.3333333333%;
    }
    .eight.columns {
        width: 66.6666666667%;
    }
    .nine.columns {
        width: 75%;
    }
    .ten.columns {
        width: 83.3333333333%;
    }
    .eleven.columns {
        width: 91.6666666667%;
    }
    .twelve.columns {
        float: none;

        width: 100%;
    }

    .row {
        margin: 0 ;
    }
}

/* For devices larger than 960px */
@media (min-width: 768px) {
    .one.column,
    .one.columns {
        width: 8.33333333333%;
    }
    .two-m.columns {
        width: 16.6666666667%;
    }
    .three-m.columns {
        width: 25%;
    }
    .four-m.columns {
        width: 33.3333333333%;
    }
    .five-m.columns {
        width: 41.6666666667%;
    }
    .six-m.columns {
        width: 50%;
    }
    .seven-m.columns {
        width: 58.3333333333%;
    }
    .eight-m.columns {
        width: 66.6666666667%;
    }
    .nine-m.columns {
        width: 75%;
    }
    .ten-m.columns {
        width: 83.3333333333%;
    }
    .eleven-m.columns {
        width: 91.6666666667%;
    }
    .twelve-m.columns {
        float: none;

        width: 100%;
    }

    .row-m {
        margin: 0 ;
    }
}

/* Clearing */
/* Self Clearing Goodness */
.container:before,
.container:after,
.row:before,
.row:after,
.row-m:before,
.row-m:after,
.u-cf,
.clearfix:before,
.clearfix:after {
    display: table;
    clear: both;

    content: '';
}

/*--------------------------------------------------------------
    04 - Header
--------------------------------------------------------------*/

#site-header {
    position: relative;
}

.header-branding{
    display: none;
}

.site-branding {
    text-align: center;
}

.header-navigation {
    position: fixed;
    z-index: 100;
    top: 0;

    width: 100%;
    height: 56px;

    transition: all .1s ease 0s;

    border-top: 1px solid #eaeaea;
    border-bottom: 1px solid #eaeaea;
    background: #fff;
    background-color: #fff;
    box-shadow: 0 1px 5px 0 rgba(102, 102, 102, .06);
}

.is-sticky .header-navigation{
    position: fixed !important;
}

.site-branding.logo {
    display: none;
}

.head-inner-wrap > div {
    position: relative;

    min-height: 54px;
}

.header-layout-3 .header-branding {
    padding: 20px 0;
}

.logo-sticky {
    position: absolute;
    top: 50%;
    left: 20px;

    visibility: visible;

    margin-top: -12px;

    transition: all .1s ease 0s;

    opacity: 1;
}

.is-sticky .logo-sticky {
    visibility: visible;

    transition: all 1s ease 0s;

    opacity: 1;
}

.logo-sticky img {
    height: 20px;
}

.header-layout-4 .header-navigation {
    position: fixed;
    top: 0;

    width: 100%;
}

.full-width-stickyheader .header-navigation > .container {
    width: 100%;
    max-width: 100%;
}

/*--------------------------------------------------------------
    06 - Navigation
--------------------------------------------------------------*/

/* Links */

a {
    color: royalblue;
}

a:visited {
    color: purple;
}

a:hover,
a:focus,
a:active {
    color: midnightblue;
}

a:focus {
    outline: thin dotted;
}

a:hover,
a:active {
    outline: 0;
}

/* Menus */

.nav-icon {
    position: absolute;
    z-index: 10;
    top: 50%;
    right: 20px;

    display: none;

    width: 40px;
    height: 44px;
    margin-top: -22px;
    padding: 10px;

    border: 0 none;
    background: transparent none repeat scroll 0 0 !important;
}
.nav-icon span,
.nav-icon span::before,
.nav-icon span::after {
    display: block;

    transition: all .4s ease 0s;

    border-bottom: 2px solid;
}
.nav-icon span {
    position: relative;
}
.nav-icon span::before,
.nav-icon span::after {
    position: absolute;
    z-index: 1;
    left: 0;

    width: 100%;

    content: '';
}
.nav-icon span::before {
    top: -6px;
}
.nav-icon span::after {
    bottom: -8px;
}
.nav-icon:hover span::before,
.nav-icon.nav-on span::before {
    width: 45%;
}
.nav-icon:hover span::after,
.nav-icon.nav-on span::after {
    width: 80%;
}
.nav-icon-close {
    position: absolute;
    top: 23px;
    right: 35px;
    bottom: 0;

    height: 17px;
    padding: 0;

    cursor: pointer;
    transition: all .4s ease 0s;

    color: #555;
    border: medium none;
    background-color: transparent !important;
}
.nav-icon-close .close-icon {
    width: 15px;
    height: 15px;

    transition: all .4s ease 0s;
}
.nav-icon-close .close-icon > span:first-of-type {
    -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
            transform: rotate(45deg);
}
.nav-icon-close .close-icon > span:last-of-type {
    -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
            transform: rotate(-45deg);
}
.nav-icon-close .close-icon > span {
    position: absolute;
    top: 8px;
    left: -3px;

    width: 21px;
    height: 2px;

    background-color: #000;
}
.nav-icon-close:hover {
    -webkit-transform: scale(.9, .9);
        -ms-transform: scale(.9, .9);
            transform: scale(.9, .9);
}

/* search-wrap */
.social-search-wrap {
    position: relative;
}

.social-connect,
.search-wrap,
.sticky-ss-wrapper {
    display: none;
}

.sticky-ss-wrapper {
    margin-top: -1px;
}

.search-wrap,
.social-connect {
    position: absolute;
    z-index: 2;
    top: auto;
    right: 0;
    left: 0;

    visibility: hidden;

    width: 100%;

    transition: all .4s ease 0s;

    opacity: 0;
    background: rgba(0, 0, 0, .8);
}

.search-wrap .search-form {
    max-width: 1400px;
    margin: 0 auto;
    padding: 15px 30px;
}

.search-wrap .search-form .search-field {
    font-size: 3.2rem;
    font-style: italic;

    width: 100%;
    height: auto;
    padding: 15px;

    text-align: center;

    color: #fff;
    border: none;
    background: transparent;
}

.search-form,
.search-field {
    margin-bottom: 0;
}


.search-wrap.search-active,
.social-connect.social-active {
    visibility: visible;

    opacity: 1;
}

.search-icon i,
.social-toggle i,
.nav-toggle i {
    font-size: 2.1rem;
    line-height: 54px;
}


.buttons-wrap {
    position: absolute;
    top: 0;
    right: 0;

    border-right: 1px solid #eaeaea;
    border-left: 1px solid #eaeaea;
}

.buttons-wrap span {
    line-height: 54px;

    float: left;

    width: 54px;
    height: 54px;

    cursor: pointer;
    transition: all .4s ease 0s;
    text-align: center;
    vertical-align: middle;
}

.buttons-wrap span:hover {
    opacity: .6;
}

.social-toggle {
    border-right: 1px solid #eaeaea;
}

.social-connect {
    text-align: center;
}

.social-links {
    max-width: 1400px;
    margin: 0 auto;
    padding: 15px 30px;
}

.social-connect a {
    font-size: 2.6rem;

    display: inline-block;

    padding: 15px;

    transition: all .4s ease 0s;
    vertical-align: middle;

    opacity: 1;
    color: #999;
}

.social-connect a:hover {
    opacity: .6;
}
.social-toggle,
.search-icon {
    display: none;
}


/* Main Menu */

#site-navigation {
    display: none;
}

.main-menu {
    display: block;
    clear: both;

    width: 100%;

    text-align: center;
}

.main-menu > ul:after,
.main-menu > ul:before {
    display: table;
    clear: both;

    content: '';
}

.main-menu ul,
.mobi-menu ul {
    margin: 0;
    padding-left: 0;

    list-style-type: none;
}

.main-menu ul li,
.mobi-menu ul li {
    position: relative;

    margin-bottom: 0;
}

.main-menu .sub-menu {
    position: absolute;
    z-index: 100;
    left: 0;

    visibility: hidden;

    margin: 0;
    padding-left: 0;

    list-style: none;

    text-align: left;

    opacity: 0;
}

.main-menu > ul > li {
    display: inline-block;
}

.main-menu ul li a,
.mobi-menu ul li a {
    font-size: 1.4rem;
    font-weight: bold;

    display: block;

    padding: 15px 8px;

    text-decoration: none;
    letter-spacing: .1rem;
    text-transform: uppercase;
}

#main-menu ul.sub-menu {
    position: absolute;
    z-index: 10;
    left: 0;

    visibility: hidden;

    width: 200px;
    padding-left: 0;

    transition: all .2s ease 0s;

    opacity: 0;
}

#main-menu li.menu-item-active > ul.sub-menu {
    visibility: visible;

    opacity: 1;
}


#main-menu ul li ul.sub-menu li a {
    font-size: 1.2rem;

    padding: 12px 18px 10px;
}

#main-menu ul.sub-menu li .sub-menu {
    top: 0;
    left: 100%;
}

/* Mobi Menu */

.mobi-wrap {
    position: fixed;
    z-index: 2;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;

    display: block;
    visibility: hidden;
    overflow: auto;

    width: 100%;

    transition: all .4s ease 0s;

    opacity: 0;
    background: #f8f8f8;
}

.mobi-menu-open .mobi-wrap {
    visibility: visible;

    opacity: 1;
}

.mobi-wrap .search-form .search-field {
    font-style: italic;

    width: 100%;
    height: auto;
    padding: 15px 40px;

    color: #fff;
    border: medium none;
    border-radius: 0;
    background: #000;
}

#mobi-navigation {
    padding: 0 40px;
}

.mobi-menu ul li {
    border-bottom: 1px solid;
}

.mobi-menu ul li a {
    font-size: 1.6rem;

    padding: 15px 0;
}

.mobi-wrap .social-links a {
    font-size: 2.4rem;

    display: inline-block;

    padding: 15px;

    transition: all .4s ease 0s;
    vertical-align: middle;

    opacity: 1;
    color: #000;
}

.mobi-wrap .social-links a:hover {
    opacity: .6;
}

.mobi-wrap .social-links {
    text-align: center;
}

#mobi-menu .sub-menu {
    display: none;
}

#mobi-menu .sub-menu li {
    font-size: 90%;

    padding-left: 20px;
}

#mobi-menu .sub-menu li:last-child {
    border-bottom: none;
}

/* Post Navigation */

.mallow-loader-warp {
    position: fixed;
    z-index: 99999;
    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    background: #fff;
}

.mallow-loader {
    position: absolute;
    top: 50%;
    left: 50%;

    width: 40px;
    height: 40px;
    margin: 100px auto;
    margin-top: -20px;
    margin-left: -20px;
}

.cube1,
.cube2 {
    position: absolute;
    top: 0;
    left: 0;

    width: 15px;
    height: 15px;

    -webkit-animation: sk-cubemove 1.8s infinite ease-in-out;
            animation: sk-cubemove 1.8s infinite ease-in-out;

    background-color: #333;
}

.cube2 {
    -webkit-animation-delay: -.9s;
            animation-delay: -.9s;
}

@-webkit-keyframes sk-cubemove {
    25% {
        -webkit-transform: translateX(42px) rotate(-90deg) scale(.5);
    }
    50% {
        -webkit-transform: translateX(42px) translateY(42px) rotate(-180deg);
    }
    75% {
        -webkit-transform: translateX(0px) translateY(42px) rotate(-270deg) scale(.5);
    }
    100% {
        -webkit-transform: rotate(-360deg);
    }
}

@keyframes sk-cubemove {
    25% {
        -webkit-transform: translateX(42px) rotate(-90deg) scale(.5);
                transform: translateX(42px) rotate(-90deg) scale(.5);
    } 50% {
        -webkit-transform: translateX(42px) translateY(42px) rotate(-179deg);
                transform: translateX(42px) translateY(42px) rotate(-179deg);
    } 50.1% {
        -webkit-transform: translateX(42px) translateY(42px) rotate(-180deg);
                transform: translateX(42px) translateY(42px) rotate(-180deg);
    } 75% {
        -webkit-transform: translateX(0px) translateY(42px) rotate(-270deg) scale(.5);
                transform: translateX(0px) translateY(42px) rotate(-270deg) scale(.5);
    } 100% {
        -webkit-transform: rotate(-360deg);
                transform: rotate(-360deg);
    }
}


.load-more-wrap {
    position: relative;

    margin-bottom: 40px;

    text-align: center;
}

.page-links span,
.load-more,
.post-navigation > div a {
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 3.8rem;

    position: relative;
    z-index: 1;

    display: inline-block;

    height: 3.8rem;
    padding: 0 30px;

    cursor: pointer;
    transition: all .4s ease;
    letter-spacing: .2rem;
    text-transform: uppercase;

    color: inherit;
    border: 1px solid;
    background: transparent;
}

.load-more.loading-posts span {
    opacity: 0;
}

@-webkit-keyframes scale {
    0% {
        -webkit-transform: scale(1);
                transform: scale(1);

        opacity: 1;
    }
    45% {
        -webkit-transform: scale(.1);
                transform: scale(.1);

        opacity: .7;
    }
    80% {
        -webkit-transform: scale(1);
                transform: scale(1);

        opacity: 1;
    }
}

@keyframes scale {
    0% {
        -webkit-transform: scale(1);
                transform: scale(1);

        opacity: 1;
    }
    45% {
        -webkit-transform: scale(.1);
                transform: scale(.1);

        opacity: .7;
    }
    80% {
        -webkit-transform: scale(1);
                transform: scale(1);

        opacity: 1;
    }
}

.ajax-loader-circle {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 0;

    width: 100%;
    margin-top: -6px;
}

.ajax-loader-circle > span:first-child {
    -webkit-animation: scale 1s -.24s infinite cubic-bezier(.2, .68, .18, 1.08);
            animation: scale 1s -.24s infinite cubic-bezier(.2, .68, .18, 1.08);
}

.ajax-loader-circle > span:nth-child(2) {
    -webkit-animation: scale 1s -.12s infinite cubic-bezier(.2, .68, .18, 1.08);
            animation: scale 1s -.12s infinite cubic-bezier(.2, .68, .18, 1.08);
}

.ajax-loader-circle > span:last-child {
    -webkit-animation: scale 1s 0s infinite cubic-bezier(.2, .68, .18, 1.08);
            animation: scale 1s 0s infinite cubic-bezier(.2, .68, .18, 1.08);
}

.ajax-loader-circle > span {
    display: inline-block;

    width: 8px;
    height: 8px;
    margin: 2px;

    vertical-align: top;

    border-radius: 100%;
    background-color: #fff;

    -webkit-animation-fill-mode: both;
            animation-fill-mode: both;
}

.navigation {
    margin-bottom: 40px;
    padding: 0 20px;
}

.nav-links {
    padding-top: 40px;

    border-top: 1px solid;
}

.nav-links .prev-nav {
    float: left;

    border-right: 1px solid;
}

.nav-links .prev-nav,
.nav-links .next-nav {
    width: 50%;
}

.nav-thumbnail {
    width: 25%;
}

.nav-links figure {
    position: relative;

    margin-bottom: 0;

    background: #000 none repeat scroll 0 0;
}
.nav-links figure i {
    font-size: 48px;

    position: absolute;
    z-index: 1;
    top: 50%;
    left: 50%;

    margin-top: -24px;
    margin-left: -24px;

    color: #fff;
}
.nav-links a {
    display: table;
    overflow: hidden;
}
.nav-links a > div {
    display: table-cell;

    vertical-align: middle;
}

.nav-title {
    padding: 0 20px;
}

.nav-links .next-nav {
    float: right;

    text-align: right;
}
.nav-links .nav-cat {
    font-size: 10px;

    display: block;

    margin-top: 15px;

    letter-spacing: .15rem;
    text-transform: uppercase;
}

.page-links{
    margin-top: 80px;
}

.page-links span{
    padding: 0;
    text-align: center;
    width: 3.8rem;
}

/*--------------------------------------------------------------
    07 Accessibility
--------------------------------------------------------------*/
/* Text meant only for screen readers. */
.screen-reader-text {
    position: absolute !important;

    overflow: hidden;
    clip: rect(1px, 1px, 1px, 1px);

    width: 1px;
    height: 1px;
}

.screen-reader-text:focus {
    font-size: 14px;
    font-size: .875rem;
    font-weight: bold;
    line-height: normal;

    z-index: 100000; /* Above WP toolbar. */
    top: 5px;
    left: 5px;

    display: block;
    clip: auto !important;

    width: auto;
    height: auto;
    padding: 15px 23px 14px;

    text-decoration: none;

    color: #21759b;
    border-radius: 3px;
    background-color: #f1f1f1;
    box-shadow: 0 0 2px 2px rgba(0, 0, 0, .6);
}


/* Do not show the outline on the skip link target. */
#content[tabindex='-1']:focus {
    outline: 0;
}

/*--------------------------------------------------------------
# Alignments
--------------------------------------------------------------*/
.alignleft {
    display: inline;
    float: left;

    margin-right: 1.5em;
}

.alignright {
    display: inline;
    float: right;

    margin-left: 1.5em;
}

.aligncenter {
    display: block;
    clear: both;

    margin-right: auto;
    margin-left: auto;
}

/*--------------------------------------------------------------
# Clearings
--------------------------------------------------------------*/
.clear:before,
.clear:after,
.entry-content:before,
.entry-content:after,
.comment-content:before,
.comment-content:after,
.site-header:before,
.site-header:after,
.site-content:before,
.site-content:after,
.site-footer:before,
.site-footer:after {
    display: table;

    table-layout: fixed;

    content: '';
}

.clear:after,
.entry-content:after,
.comment-content:after,
.site-header:after,
.site-content:after,
.site-footer:after {
    clear: both;
}

/*--------------------------------------------------------------
    10 - Widgets
--------------------------------------------------------------*/

.widget-area .widget {
    margin: 40px 0;
}

#secondary .widget-area .widget:first-child {
    margin-top: 0;
}

.widget-title {
    font-size: 1.2rem;
    font-weight: bold;

    display: inline-block;

    margin: 0 auto 30px;
    padding: 0 20px 10px 0;

    letter-spacing: .2rem;
    text-transform: uppercase;

    border-bottom: 2px solid;
}

.widget .post-title {
    line-height: 1.2;

    margin-bottom: 0;

    transition: all .4s ease 0s;
}

.widget ul {
    margin-left: 0;

    list-style: none;

    text-align: left;
}

.widget ul li {
    margin-bottom: 0;
    padding: 10px 0;

    border-bottom: 1px solid #ddd;
}


.widget li a {
    line-height: 1;

    transition: all .4s ease 0s;
}

.widget li a:hover {
    opacity: .7;
}

.widget ul li:last-child {
    border-bottom: 0;
}

/* Make sure select elements fit in widgets. */
.widget select {
    max-width: 100%;
}

/* Post widgets */

.widget ul li.widget-post {
    padding: 15px 0;
}

.widget-post .entry-meta {
    padding-bottom: 0;
}

.widget-post-cell:first-child {
    width: 80px;
}

.widget-post-cell:last-child {
    padding-left: 15px;
}

.widget-post-cell {
    display: table-cell;

    vertical-align: top;
}

/* Instagram widget*/

.instagram-pics {
    overflow: hidden;

    margin-bottom: 0;
}

ul.instagram-pics li {
    float: left;

    width: 33.3%;
    padding: 5px !important;

    border-bottom: 0;
}

.instagram-pics li img {
    transition: all .4s ease 0s;
}

.instagram-pics li:hover img {
    opacity: .6;
}

.instagram-pics li a {
    display: block;

    background: #000 ;
}

.null-instagram-feed p {
    font-size: 1.2rem;
    font-style: italic;

    margin-top: 10px;
    margin-bottom: 0;

    text-align: center;
}

.social-links-buttons {
    text-align: center;
}

.widget-social-links li {
    display: inline-block;

    padding: 0;

    border-bottom: 0;
}

.widget-social-links li a {
    line-height: 32px;

    display: block;

    width: 32px;
    height: 32px;

    text-align: center;
}

.widget .mc4wp-form-fields p {
    font-size: 1.4rem;
}

.mc4wp-alert,
.mc4wp-error{
    font-size: 1.4rem;
    font-style: italic;
}

#instagram-footer {
    text-align: center;
    overflow: hidden;
}

#instagram-footer .meks-instagram-widget {
    display: block !important;
    overflow: hidden;
    max-width: 100% !important;
}

#instagram-footer .meks-instagram-widget > * {
    float: left;

    width: 20%;
    padding: 0 !important;
}
#instagram-footer .meks-instagram-widget > .slick-list {
    width: 100%;
}

.instagram-footer {
    position: relative;
}

.instagram-footer .widget-title {
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 50%;

    padding: 10px 20px;

    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);

    border-bottom: none;
    background: rgba(255, 255, 255, .8);
}

.footer-widgets .widget ul li a {
    color: #fff;
}

.footer-widgets .widget input[type='text'],
.footer-widgets .widget input[type='name'],
.footer-widgets .widget input[type='email'],
.footer-widgets .widget input[type='password'] {
    font-size: 1.2rem;

    color: #333;
}

.widget_calendar #wp-calendar {
    width: 100%;
}
.widget_calendar #wp-calendar caption {
    font-size: 2.4rem;
    font-weight: bold;

    padding-bottom: 30px;

    text-align: center;
    text-transform: uppercase;
}
.widget_calendar #wp-calendar th,
.widget_calendar #wp-calendar td {
    padding: 5px 0;

    text-align: center;
    vertical-align: middle;

    border: none;
}
.widget_calendar #wp-calendar #today {
    font-size: 2.1rem;

    background: #e91e63;
}

.widget_recent_comments li,
.widget_recent_entries li,
.widget_archive li {
    border-bottom: 1px solid #eee;
}

.widget_tag_cloud a,
.tags-links a,
.tags a {
    font-size: 1.1rem !important;
    font-weight: bold;

    display: inline-block;

    margin: 4px 2px;
    padding: 5px 15px;

    transition: all .4s ease 0s;
    vertical-align: top;
    letter-spacing: .1rem;
    text-transform: uppercase;
}

.widget_tag_cloud a:hover,
.tags-links a:hover,
.tags a:hover {
    opacity: .6;
}

.tagcloud::before,
.tagcloud::after {
    display: table;
    clear: both;

    content: '';
}
/*--------------------------------------------------------------
    11 - Content
--------------------------------------------------------------*/

/* Posts and pages*/

.site-content {
    position: relative;
    z-index: 1;
}
.sticky {
    display: block;
}

.byline,
.updated:not(.published) {
    display: none;
}

.single .byline,
.group-blog .byline {
    display: inline;
}

.entry-title {
    margin-top: 15px;
}

.page-content,
.entry-content,
.entry-summary {
    margin: 1.5em 0 0;
}


article.post .post-title {
    margin-top: 15px;

    transition: all .4s ease 0s;
}

figure.post-thumbnail,
.mallow-embed-wrap {
    overflow: hidden;

    margin-bottom: 0;

    background: #000;
}

figure.post-thumbnail img {
    width: 100%;
}

.single .content-area figure.post-thumbnail,
.mallow-embed-wrap {
    margin-bottom: 40px;
}

.post-thumbnail a {
    position: relative;

    display: block;
    overflow: hidden;

    background: #000;
}

figure.post-thumbnail > a {
    position: relative;
    z-index: 1;

    width: 100%;

    transition: all .4s ease 0s;
}

.nav-links a .nav-thumbnail img {
    transition: all .4s ease 0s;
}

article.post .post-title:hover,
.widget .post-title:hover,
figure.post-thumbnail:hover > a,
.nav-links a:hover .nav-thumbnail img {
    opacity: .7;
}


.load-more,
.post-navigation,
.comment-reply-link,
#cancel-comment-reply-link,
blockquote p:before,
.comment-navigation a,
.author a,
.btn,
.comment-author .fn,
.widget_calendar #wp-calendar caption,
input[type='submit'],
button,
#site-footer .social-pro a,
.site-info {
    font-family: sans-serif;
}

.post-cat,
.info-cat,
.nav-cat,
.tagcloud,
.tags-links a,
.entry-footer .tags a {
    font-size: 1.2rem;
    line-height: 1;

    letter-spacing: .2rem;
    text-transform: uppercase;
}

.bypostauthor {
    font-style: italic;

    display: block;
}

.author-title * {
    font-size: 1.1rem;
}

.author-title {
    margin-bottom: 10px;

    border-bottom: 1px solid;
}

.entry-meta,
.author-title {
    font-size: 1.1rem;

    display: inline-block;

    padding: 10px 0;

    vertical-align: top;
    letter-spacing: .1rem;
}

.single-post-wrap .content-area .entry-meta {
    display: block !important;
    margin-right: 15px;
}

.bottom-left .entry-meta {
    display: block;
}

.post-header .entry-meta {
    padding-right: 30px;

    border-top: 1px solid;
}

.bottom-center .post-header .entry-meta,
.top-center .post-header .entry-meta {
    padding: 15px 20px 0;
}

.entry-meta .author {
    font-style: normal;

    text-transform: uppercase;
}

.entry-meta span,
.author-title span {
    display: inline-block;
}

.entry-sep {
    padding: 0 10px;
}


.entry-date {
    text-transform: capitalize;
}

/* featured-posts*/

#featured-posts.featured-full {
    max-width: 100%;
}

#featured-posts.featured-full, 
#featured-posts.featured-full > div {
     padding: 0;
}

.fp-wrap {
    position: relative;
}

.slider-separator,
.fp-wrap .slick-dots {
    margin-bottom: 40px;
}

.slider-separator .slick-dots {
    margin-bottom: 0;
}

.fp-wrap span.slick-arrow {
    font-size: 1.1rem;
    line-height: 48px;

    position: absolute;
    z-index: 100;
    top: 50%;

    display: block;

    width: 48px;
    height: 48px;

    cursor: pointer;
    transition: all .4s ease-in-out;
    text-align: center;

    opacity: 0;
    color: #fff;
}

.fp-wrap span.slick-arrow:hover i {
    transition: all .4s ease-in-out;

    opacity: .6;
}

.fp-wrap:hover span.slick-arrow {
    opacity: 1;
}

.fp-wrap span.next-arrow {
    right: 20px;
}

.fp-wrap span.prev-arrow {
    left: 20px;
}

.post-content-wrap {
    position: relative;
    z-index: 1;
}

.top-center .post-header {
    position: relative;

    margin: 0 auto;
}

.fp-post .post-header {
    max-width: 980px;
    padding: 40px 80px;

    background: #fff;
}

.featured-layout-2 .fp-wrap .post-header,
.featured-layout-3 .fp-wrap .post-header {
    border-right: 1px solid;
}

.bottom-center .post-header,
.top-center .post-header,
.bottom-center .post-content,
.top-center .post-content {
    text-align: center;
}

.bottom-left .post-header {
    padding: 20px 0 40px;

    text-align: left;
}

.bottom-center .post-header {
    padding: 35px;
}

.post-block,
.post-block-2 {
    position: relative;
}

.post-navigation {
    font-size: 1.2rem;

    overflow: hidden;

    margin-bottom: 40px;

    letter-spacing: .2rem;
    text-transform: uppercase;
}

/* Blog posts */

.bg-post,
.ar-post {
    margin-bottom: 40px;
}

.bg-post.post-block,
.ar-post.post-block {
    margin-bottom: 20;
}

.bg-post.post-list .post-header,
.ar-post.post-list .post-header {
    padding: 40px;
    padding-bottom: 0;
}

.bg-post.post-list,
.ar-post.post-list {
    padding-bottom: 40px;

    border-bottom: 1px solid;
}

.post-leading {
    border-bottom: 1px solid;
}

.blog-posts-layout-1 .bg-post .post-header {
    margin: 0 auto;
}

.blog-posts-layout-2 .post-block .bottom-center .post-header {
    padding-bottom: 20px;
}

.post-content {
    font-style: italic;
}

.post-content p {
    line-height: 1.6;

    margin-bottom: 20px;
}

.post-block-2 .post-content-wrap {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;

    height: 100%;
}

.post-content-inner {
    display: table;
}

.post-content-inner .post-header {
    display: table-cell;

    vertical-align: middle;
}

/* Popular posts */

#popular-posts,
#related-posts {
    padding: 40px 0;
    /*border-top: 1px solid;*/
}


#popular-posts .post-block-item,
#related-posts .post-block-item {
    margin: 0 20px;
}

.popular-posts-title,
.related-posts-title {
    font-weight: bold;

    margin-bottom: 40px;

    text-align: center;
    letter-spacing: 1rem;
    text-transform: uppercase;
}

#popular-posts .post-header,
#related-posts .post-header {
    padding: 40px 10px 0;
}

#related-posts .post-header h4 {
    margin-top: 0;
}

/* Post Single */

.entry-meta-wrap {
    padding-top: 20px;

    border-top: 1px solid;
}

.entry-meta-wrap > div {
    display: inline-block;

    vertical-align: middle;
}

.social-share {
    font-size: 1.4rem;
}

.social-share-buttons {
    overflow: hidden;

    border: 1px solid #eee;
}

.social-share-buttons > span {
    line-height: 40px;

    float: left;

    width: 40px;
    height: 40px;

    text-align: center;
    vertical-align: middle;

    border-right: 1px solid #eee;
}

.social-share-buttons > span:last-child {
    border-right: none;
}

.social-share-buttons span a {
    font-size: 1.4rem;

    display: block;

    transition: all .4s ease 0s;
    text-align: center;

    color: #000;
}

.social-share-buttons .twitter a {
    color: #00aced;
}
.social-share-buttons .facebook a {
    color: #3b5998;
}
.social-share-buttons .google a {
    color: #dd4b39;
}
.social-share-buttons .tumblr a {
    color: #32506d;
}
.social-share-buttons .pinterest a {
    color: #cb2027;
}
.social-share-buttons .mail a {
    color: #a9181d;
}

.social-share-buttons span:hover a {
    color: #fff;
}

.social-share-buttons .twitter:hover a {
    background: #00aced;
}
.social-share-buttons .facebook:hover a {
    background: #3b5998;
}
.social-share-buttons .google:hover a {
    background: #dd4b39;
}
.social-share-buttons .tumblr:hover a {
    background: #32506d;
}
.social-share-buttons .pinterest:hover a {
    background: #cb2027;
}
.social-share-buttons .mail:hover a {
    background: #a9181d;
}

.post-views {
    font-size: 1.2rem;
    font-style: italic;

    padding: 0 10px;
}

.social-share-buttons span.post-views-wrap {
    width: auto;
}

/* Page headers */

.page-header {
    min-height: 45px;
    margin: 40px 0;
    padding: 0;
}

.page .page-header,
.single .page-header {
    margin-top: 0;
    margin-bottom: 40px;
}

.page-header-inner {
    font-size: 1.4rem;
    font-style: italic;

    padding: 20px 20px 15px;

    text-align: center;

    border: 0 none;
}
.page-header h2 {
    font-weight: 500;
    font-style: normal;

    position: relative;

    margin: 0;

    text-indent: .6rem;
    letter-spacing: .6rem;
    text-transform: uppercase;
}

.page-header h2::before {
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 0;

    display: block;

    width: 100%;
    height: 1px;

    content: '';

    border-top: 1px solid;
}

.page-header h2 span {
    position: relative;
    z-index: 2;

    display: inline-block;

    padding: 0 15px;

    vertical-align: text-top;

    background: #fff none repeat scroll 0 0;
}

.page-title {
    font-weight: normal;

    text-transform: uppercase;
}

.page-title span {
    font-size: 4rem;
    font-weight: 600;

    display: block;

    text-transform: capitalize;
}
.entry-header {
    margin-bottom: 20px;
}

.entry-content {
    margin: 20px 0;
}
.not-found {
    text-align: center;
}
input.wpcf7-form-control {
    height: auto;
    margin-bottom: 0;
    padding: 10px 15px;
}

input.wpcf7-form-control.wpcf7-submit {
    padding: 0 30px;
}

.wpcf7-form-control-wrap {
    display: block;

    margin-top: 5px;
}
div.wpcf7-validation-errors,
div.wpcf7-mail-sent-ok {
    font-size: 14px;
    font-style: italic;

    margin: 15px 0;

    border: 1px solid;
}
div.wpcf7-mail-sent-ok {
    border-color: #5cb85c;
}
div.wpcf7-validation-errors {
    border-color: #d9534f;
}
span.wpcf7-not-valid-tip {
    font-size: 14px;
    font-style: italic;

    padding: 5px 10px;

    color: #d9534f;
}
input.wpcf7-not-valid {
    border: 1px solid #d9534f;
}
.error-404,
.no-results {
    max-width: 860px;
    margin: 0 auto;
    padding: 0 40px 80px;
}
.error-404 .search-field,
.no-results .search-field {
    font-style: italic;

    height: auto;
    padding: 20px;

    text-align: center;
}

.post-format-icon {
    line-height: 40px;

    position: absolute;
    z-index: 1;
    right: 0;
    bottom: 0;

    display: block;

    width: 40px;
    height: 40px;

    text-align: center;
    letter-spacing: 0;

    background: #fff none repeat scroll 0 0;
}

.post-format-icon i {
    font-size: 16px;

    color: #000;
}

.mallow-gallery {
    position: relative;

    margin-bottom: 30px;
}

.gallery-nav {
    position: absolute;
    z-index: 1;
    top: 0;
    right: 0;
}

.gallery-nav span {
    font-size: 1.2rem;

    float: left;

    width: 40px;
    height: 40px;

    list-style: 40px;

    cursor: pointer;
    text-align: center;

    background: #fff;
}

.gallery-nav span:hover i {
    opacity: .6;
}

.gallery-nav span:first-child {
    border-right: 1px solid #f8f8f8;
}

.gallery-nav span i {
    line-height: 40px;

    transition: all .4s ease 0s;
}

.gallery-slide span {
    font-size: 1.2rem;
    font-style: italic;

    display: block;

    padding: 20px;

    opacity: .8;
    border-bottom: 1px solid;
}

.embed_audio iframe {
    width: 100%;
    height: 120px;

    vertical-align: top;
}

.embed_vedio iframe {
    width: 100%;
    max-width: 100%;
    height: 480px;
}

.dropcap {
    font-size: 85px;
    font-weight: bold;
    line-height: 75px;

    display: block;
    float: left;

    margin: 0 10px 0 0;
}

blockquote {
    position: relative;

    margin: 20px 0;
    padding: 20px 40px;

    opacity: .6;
    border: medium none;
}

blockquote p {
    font-style: italic;

    position: relative;
    z-index: 3;

    padding: 0 20px;

    border-left: 2px solid;
}


.full-width-post .entry-header,
.full-width-page .entry-header {
    text-align: center;
}

.full-width-post .entry-header .entry-title {
    max-width: 800px;
    margin: 15px auto 20px;
}

.full-width-post .entry-meta,
.full-width-post .social-share {
    display: inline-block;
    float: none;

    margin: 0 10px;
}

.entry-footer {
    margin-top: 30px;
    padding: 15px 0;

    border-top: 1px solid;
}

.post-edit-link {
    font-style: italic;
}

.entry-footer .tags span {
    font-size: 14px;
    font-style: italic;

    display: inline-block;

    margin-right: 10px;
}

.entry-footer .tags a,
.entry-footer .tags span {
    vertical-align: middle;
}

.entry-footer .tags a {
    transition: all .4s ease 0s;
}

.author-info {
    display: none;
    float: left;

    width: 220px;
    margin-left: -220px;
    padding: 0 40px;
}

.author-title > span {
    display: block;
}

.author-title .entry-sep {
    display: none;
}

.author-info .author > a {
    font-style: normal;
}


.author-bio {
    font-size: 1.2rem;
    font-style: italic;

    margin: 5px 0;
    border-bottom: 1px solid;
    padding-bottom: 10px;
}

.avatar {
    position: relative;

    margin-bottom: 10px;
}

.author-contacts {
    padding: 5px;
}

.author-contacts a {
    font-size: 14px;

    margin-right: 10px;

    transition: all .4s ease 0s;
    vertical-align: middle;

    color: inherit;
}

.author-contacts a:hover,
.entry-footer .tags a:hover {
    text-decoration: none;

    opacity: .6;
}

.comment-author .fn {
    font-size: 85%;
    font-style: normal;

    text-decoration: none;
    letter-spacing: .1rem;
    text-transform: uppercase;
}



/*--------------------------------------------------------------
## Comments
--------------------------------------------------------------*/
.comments-area {
    margin: 30px 0;
    padding-top: 15px;

    border-top: 1px solid;
}
.comment-form,
.comment-reply-title {
    padding: 30px 0;
}
.comments-title {
    margin: 0;
}
.comments-title a {
    display: block;

    text-decoration: none;

    color: inherit !important;
}
.comments-title a,
.comment-reply-title {
    margin: 0;
    padding: 15px 0;
}
.comments-area .panel-heading {
    padding: 0;

    border-bottom: 1px solid;
}
.comment-form {
    margin: 0;

    list-style: outside none none;
}

.comment-form .form-control {
    font-size: 1.4rem;
}

.comment-list {
    margin-bottom: 0;
    margin-left: 0;
    padding-left: 0;

    list-style: outside none none;
}

.comment-list article,
.comment-list .pingback,
.comment-list .trackback {
    padding: 20px 0;
}

.comment-list .children {
    margin-bottom: 0;
    padding-left: 0;

    list-style: outside none none;
}
.comment-list > li,
.comment-list > li > .children > li {
    border-bottom: 1px solid;
}
.comment-list .children {
    border-top: 1px solid;
}
.comment-list > li > .children > li:last-child {
    border-bottom: 0 none;
}
.comment-list .children {
    padding-left: 10px;
    margin-left: 0;
}

.comment-author {
    margin-bottom: 15px;
}

.comment-author .avatar{
    float: left;
    margin-right: 15px;
}

.comment-metadata,
.pingback .edit-link {
    font-size: 1.2rem;
    font-style: italic;
}
.comment-metadata {
    margin-top: -15px;
    margin-bottom: 15px;
}
.comment-metadata a,
.pingback .comment-edit-link {
    color: inherit;
}
.comment-metadata a:hover,
.comment-metadata a:focus,
.pingback .comment-edit-link:hover,
.pingback .comment-edit-link:focus {
    color: inherit;
}
.comment-metadata .edit-link,
.pingback .edit-link {
    display: inline-block;
}
.comment-content ul,
.comment-content ol {
    margin: 0 0 30px 30px;
    
}

.comment-content{
    font-size: 1.4rem;
}

.comment-content li > ul,
.comment-content li > ol {
    margin-bottom: 0;
}
.comment-reply-link,
#cancel-comment-reply-link {
    font-size: 1.2rem;
    font-style: normal;

    display: inline-block;

    margin-top: 10px;
    padding: 2px 15px;

    transition: all .4s ease 0s;
    text-decoration: none !important;
    letter-spacing: .1rem;
    text-transform: uppercase;

    border: 1px solid;
    border-radius: 2px;
}
.comment-reply-link:hover,
.comment-reply-link:focus,
#cancel-comment-reply-link:hover,
#cancel-comment-reply-link:focus {
    color: inherit;
    outline: 0 none;
}
.comment-notes,
.comment-awaiting-moderation,
.logged-in-as,
.form-allowed-tags {
    font-size: 14px;
    font-style: italic;

    margin-bottom: 15px;
}

.logged-in-as .author {
    font-style: normal;
}
.no-comments {
    font-weight: 700;

    margin: 0;
    padding-top: 30px;

    border-top: 1px solid;
}
.comment-navigation + .no-comments {
    padding-top: 0;

    border-top: 0 none;
}
.comment-navigation {
    font-size: 1.2rem;
}
.form-submit {
    margin: 0;
}
input.btn-sm {
    font-size: 1.2rem;
    font-weight: bold;

    transition: all .4s ease 0s;
    letter-spacing: .1rem;
    text-transform: uppercase;

    border-radius: 2px;
}
.comment-reply-title small {
    font-size: 100%;

    color: inherit;
}
.comment-reply-title small a {
    float: right;
    overflow: hidden;

    border: 0 none;
}
.comment-reply-title small a:hover,
.comment-reply-title small a:focus {
    color: inherit;
}
.comment-reply-title small a::before {
    font-size: 32px;

    position: relative;
    top: -5px;
}
a.comments-link:hover {
    color: inherit;
}


/*--------------------------------------------------------------
    12 Infinite scroll
--------------------------------------------------------------*/
/* Globally hidden elements when Infinite Scroll is supported and in use. */
.infinite-scroll .posts-navigation,
/* Older / Newer Posts Navigation (always hidden) */
.infinite-scroll.neverending .site-footer {
    /* Theme Footer (when set to scrolling) */
    display: none;
}

/* When Infinite Scroll has reached its end we need to re-display elements that were hidden (via .neverending) before. */
.infinity-end.neverending .site-footer {
    display: block;
}

/*--------------------------------------------------------------
    13 Media
--------------------------------------------------------------*/
.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
    margin-top: 0;
    margin-bottom: 0;
    padding: 0;

    border: none;
}

/* Make sure embeds and iframes fit their containers. */
embed,
iframe,
object {
    max-width: 100%;
    height: auto;
}

/*--------------------------------------------------------------
## Captions
--------------------------------------------------------------*/
.wp-caption {
    max-width: 100%;
    margin-bottom: 1.5em;
}

.wp-caption img[class*='wp-image-'] {
    display: block;

    margin-right: auto;
    margin-left: auto;
}

.wp-caption .wp-caption-text {
    font-size: 1.2rem;
    font-style: italic;

    margin: 10px;
}

.wp-caption-text {
    text-align: center;
}
/*--------------------------------------------------------------
## Galleries
--------------------------------------------------------------*/
.gallery {
    margin-bottom: 1.5em;
}

.gallery-item {
    display: inline-block;

    width: 100%;

    text-align: center;
    vertical-align: top;
}

.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;
}

/*--------------------------------------------------------------
    14 - Footer
--------------------------------------------------------------*/

.social-profiles {
    padding: 10px 15px;

    text-align: center;
}

.social-pro a {
    font-size: 1.2rem;

    display: inline-block;

    margin-top: 15px;
    padding: 4px;

    transition: all .4s ease 0s;
    vertical-align: middle;

    color: inherit;
}

#site-footer .social-pro a {
    font-size: 2.1rem;

    margin: 0;
    padding: 0 15px;
}

#site-footer .social-pro a span {
    font-size: 1.2rem;

    display: none;

    margin-left: 8px;

    letter-spacing: .1rem;
    text-transform: uppercase;

    opacity: .8;
}

.social-pro a:hover {
    text-decoration: none;

    opacity: .6;
}
.site-info {
    padding: 20px 15px;

    text-align: center;

    border-top: 1px solid;
}
.site-info * {
    font-size: 1.1rem;
    font-weight: normal;

    letter-spacing: .1rem;
    text-transform: uppercase;

    color: #fff;
}
.site-info .copy {
    display: block;

    margin-bottom: 0;
}

.to-top {
    font-size: 1.2rem;
    line-height: 1;
    line-height: 40px;

    position: fixed;
    z-index: 1000;
    right: 20px;
    bottom: 20px;

    visibility: hidden;

    width: 40px;
    height: 40px;

    cursor: pointer;
    transition: all .4s ease 0s;
    -webkit-transform: translate(0px, 100%);
        -ms-transform: translate(0px, 100%);
            transform: translate(0px, 100%);
    text-align: center;

    opacity: 0;
    color: #fff;
    background: #000;
}
.to-top.tt-visible {
    visibility: visible;

    -webkit-transform: translate(0px, 0px);
        -ms-transform: translate(0px, 0px);
            transform: translate(0px, 0px);

    opacity: 1;
}

/*--------------------------------------------------------------
    15 - Advertisements
--------------------------------------------------------------*/

#mrectangle-ad {
    text-align: center;
}

#panorama-ad-wrap {
    margin-bottom: 40px;
    padding: 20px 40px;

    text-align: center;

    background: #f8f8f8;
}

.leaderboard-ad{
    display: none;
}

.mobi-wrap .leaderboard-ad{
    display: block;
    padding: 20px;
}

.leaderboard-ad,
.halfpage-ad {
    text-align: center;
}

/*--------------------------------------------------------------
    16 - Media Queries
--------------------------------------------------------------*/
@media ( min-width: 1400px ) {
}

@media ( min-width: 1024px ) {
    .top-center .post-header {
        margin: -100px auto 0;
    }

    .featured-layout-1 .thumbnail-cover {
        height: 680px;
    }

    .site-branding.logo,
    #site-navigation {
        display: block;
    }

    .leaderboard-ad {
        text-align: right;
    }

    .logo-sticky {
        display: block;
        visibility: hidden;

        opacity: 0;
    }

    .social-toggle,
    .search-icon,
    .search-wrap,
    .social-connect,
    .sticky-ss-wrapper {
        display: block;
    }

    .mobi-wrap,
    .nav-toggle {
        display: none;
    }

    .header-navigation {
        position: relative;
    }

    #site-footer .social-pro a {
        font-size: 1.4rem;
    }

    #site-footer .social-pro a span {
        display: inline-block;
    }

    .leaderboard-ad,
    .header-branding{
        display: block;
    }

    .mobi-wrap .leaderboard-ad{
        display: none;
    }
}

@media ( min-width: 992px ) {
    .single-post-wrap .content-area .entry-meta {
        display: none !important;
    }

    .author-info {
        display: block;
    }

    .single-post-wrap .content-area {
        padding-left: 220px;
    }
}

@media ( min-width: 768px ) {
    .bg-post.post-list .post-header,
    .ar-post.post-list .post-header {
        padding: 0;
    }
}

@media ( min-width: 768px ) and ( max-width: 1024px ){
    h1 {
        font-size: 3.6rem;
        line-height: 1.2;
    }

    h2 {
        font-size: 3rem;
        line-height: 1.2;
    }

    h3 {
        font-size: 2.8rem;
        line-height: 1.2;
    }
}

@media ( max-width: 768px ){
}

@media ( max-width: 600px ) {
    .nav-links .prev-nav,
    .nav-links .next-nav {
        width: 100%;
    }

    .nav-links .prev-nav {
        border-right: none;
        border-bottom: 1px solid;
    }

    .mobi-wrap .social-links a {
        font-size: 2.1rem;

        padding: 0 10px;
    }

    .mobi-wrap .social-links {
        padding: 30px;
    }
}

@media ( max-width: 480px ) {
    h1 {
        font-size: 3.6rem;
        line-height: 1.2;
    }

    h2 {
        font-size: 3rem;
        line-height: 1.2;
    }

    h3 {
        font-size: 2.8rem;
        line-height: 1.2;
    }

    .fp-post .post-header {
        padding: 35px;
    }

    #site-footer .social-pro a {
        font-size: 1.6rem;

        padding: 0 8px;
    }

}

@media ( max-width: 400px ) {
    .post-navigation > div,
    .post-navigation > div a{
        float: none;
        display: block;
        text-align: center;
        margin: 10px 0;
        
    }
}
