/*
Theme Name: Risdan
Theme URI: http://underscores.me/
Author: forethemes
Author URI: http://automattic.com/
Description: Hi, I'm Risdan. I am an elegant, minimal WordPress theme. My design focuses mainly on the content to make sure your words reach people all around the world. I also have a lot of options for you to make me unique.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: risdan
Tags: one-column, two-columns, three-columns, left-sidebar, right-sidebar, grid-layout, custom-background, custom-colors, custom-header, custom-menu
*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Normalize
# Grid system
# Accessibility
# Header
# Featured Posts
# Sidebar Menu
# Post
    # Quote Post
    # Link post
    # Audio Post
    # Gallery Slider Post
    # Gallery Tiled
# Widget
# List Layout
# Grid Layout
# Image Caption
# Footer
# Related Posts
# Shortcodes
# Responsive embedded video
# 404 page
# Archive page
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Normalize
--------------------------------------------------------------*/
html {
	font-family: sans-serif;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust:     100%;
}

body {
	margin: 0;
    background: #ffffff;
    overflow-x: hidden;
    line-height: 2;
    font-family: 'Open Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    font-style: normal;
    color: #555555;
}

body.sidebar-active {
    overflow: hidden;
}

#page {
    overflow-y: auto;
    overflow-x: hidden;
}

#page.sidebar-active {
    overflow-y: scroll;
}

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],
tremplate {
	display: none;
}

a {
	background-color: transparent;
	text-decoration: none;
	color: #333333;
	transition: .3s all ease-out;
}

a:hover {
	color: #ccc;
}

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

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

b,
strong {
	font-weight: bold;
}

dfn {
	font-style: italic;
}

h1 {
	font-size: 2rem;
	margin: 0.67rem 0;
}

h2 {
    font-size: 1.8rem;
}

h3 {
    font-size: 1.6rem;
}

h4 {
    font-size: 1.4rem;
}

h5 {
    font-size: 1.2rem;
}

h6 {
    font-size: 1rem;
}

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

sub {
	bottom: -0.25rem;
}

img {
	border: 0;
	vertical-align: top;
    height: auto;
    max-width: 100%;
}

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

figure {
	padding: 1rem 40px;
    margin: 0;
}

hr {
	box-sizing: content-box;
	height: 0;
}

pre {
	overflow: auto;
}

code,
kbd,
pre,
samp {
	font-family: monospace, monospace;
	font-size: 1rem;
    max-width: 850px;
}

button,
input,
optgroup,
select,
textarea {
	color: inherit;
	font: inherit;
	margin: 0;
    max-width: 100%;
}

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"] {
	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;
}

input:focus {
    outline: none;
}

fieldset {
	border: 1px solid #c0c0c0;
	margin: 0 2px;
	padding: 0.35rem 0.625rem 0.75rem;
}

legend {
	border: 0;
	padding: 0;
}

textarea {
	overflow: auto;
}

optgroup {
	font-weight: bold;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
    border: 1px solid #aaa;
}

td,
th {
	padding: 10px;
    border: 1px solid #aaa;
}

.float-left {
	float: left;
}

/*--------------------------------------------------------------
# Grid system
--------------------------------------------------------------*/
* {
    box-sizing: border-box;
}
*:after,
*:before {
    box-sizing: border-box;
}
.container {
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}
.container.no-gutters {
    padding-right: 0;
    padding-left: 0;
}
@media (min-width: 768px) {
    .container {
        width: 750px;
    }
}
@media (min-width: 992px) {
    .container {
        width: 970px;
    }
}
@media (min-width: 1200px) {
    .container {
        width: 1170px;
    }
}
.container-fluid {
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}
.row {
    margin-right: -15px;
    margin-left: -15px;
}
.row.no-gutters {
    margin-right: 0;
    margin-left: 0;
}
.container:before,
.container:after,
.container-fluid:before,
.container-fluid:after,
.row:before,
.row:after,
.clearfix:before,
.clearfix:after {
    content: " ";
    display: table;
}
.container:after,
.container-fluid:after,
.row:after,
.clearfix:after {
    clear: both;
}
.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-right: 15px;
    padding-left: 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%;
}
@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%;
    }
}
@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%;
        }
}
@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-center-10 {
        width: 83.33333333%;
        margin: 0 auto;
    }
}

/*--------------------------------------------------------------
# Accessibility
--------------------------------------------------------------*/
/* Text meant only for screen readers. */
.screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	position: absolute !important;
	height: 1px;
	width: 1px;
	overflow: hidden;
}

.screen-reader-text:focus {
	background-color: #f1f1f1;
	border-radius: 3px;
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	clip: auto !important;
	color: #21759b;
	display: block;
	font-size: 14px;
	font-size: 0.875rem;
	font-weight: bold;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000; /* Above WP toolbar. */
}

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

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/

/* Small menu. */
.menu-toggle {
    background: none;
    border: medium none;
    margin: 0 auto;
    transition: .3s all ease-out;
    text-transform: uppercase;
    font-size: 0.8rem;
}

.menu-toggle:hover {
    color: #ccc;
}

.menu-toggle,
.main-navigation.toggled ul {
	display: block;
}

.main-navigation ul {
    display: none;
}

@media screen and (min-width: 992px) {
	.menu-toggle {
		display: none;
	}
	.main-navigation ul {
		display: block;
	}
}

.main-navigation {
    height: 70px;
    line-height: 70px;
    position: relative;
    border-bottom: 1px solid #ececec;
    font-weight: 300;
}

.navigation-logo {
    max-height: 40px;
    left: 30px;
    position: absolute;
    margin: auto;
    top: 0;
    bottom: 0;
}

.ion-android-menu {
    bottom: 0;
    font-size: 1.5rem;
    margin: auto;
    position: absolute;
    right: 20px;
    top: 0;
    cursor: pointer;
}

#primary-menu {
	margin: 0;
    padding: 0;
    text-align: center;
}

.menu-item-has-children {
    position: relative;
}

#primary-menu .menu-item-has-children .sub-menu {
    background: #fff none repeat scroll 0 0;
    border-top: 1px solid #333333;
    border-left: 1px solid #ececec;
    border-right: 1px solid #ececec;
    border-bottom: 1px solid #ececec;
    margin: 0;
    padding: 0;
    position: absolute;
    width: 210px;
    visibility: hidden;
    opacity: 0;
    transition: all 0.2s ease-out;
    z-index: 500;
    line-height: 1.6rem;
}

#primary-menu > .menu-item-has-children > .sub-menu {
    left: 0;
    top: 68px;
}

#primary-menu > .menu-item-has-children > .sub-menu .sub-menu {
    left: 208px;
    top: 0;
}

#primary-menu .menu-item-has-children:hover > .sub-menu {
    transition: all 0.2s ease-out;
    opacity: 1;
    visibility: visible;
}

#primary-menu .menu-item-has-children .sub-menu li {
    text-align: left;
    display: block;
}

.menu-item-has-children .sub-menu a {
    display: block;
    font-size: 0.8rem;
    padding: 15px;
}

#primary-menu .menu-item-has-children .ion-ios-arrow-down {
    margin-left: 10px;
}

#primary-menu .menu-item-has-children .ion-ios-arrow-right {
    float: right;
}

#primary-menu li {
    display: inline-block;
}

#primary-menu > li > a {
    font-family: Montserrat;
    font-size: 0.7rem;
    padding: 25px 20px;
    text-transform: uppercase;
    font-weight: 500;
}

#primary-menu li a {
    color: #000000;
    font-family: "Montserrat";
}

#primary-menu li a:hover {
	color: #ccc;
}

/*--------------------------------------------------------------
# Featured Posts
--------------------------------------------------------------*/
.featured-post {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    margin-bottom: 80px;
}

.widget.forethemes_featured_posts {
    padding: 0;
    margin: 0 0 70px 0;
}

.featured-posts .owl-next, 
.featured-posts .owl-prev {
    background: #fff;
    color: #000;
    border: 1px solid #ececec;
}

.featured-posts .owl-dots {
    opacity: 0;
    transition: .3s all ease-out;
}

.featured-posts:hover .owl-dots {
    opacity: 1;
}

.featured-posts .featured-post {
    width: 100%;
    height: 450px;
    max-height: 450px;
    overflow: hidden;
    margin: 0;
    position: relative;
}

.featured-post-info {
    text-align: center;
    position: absolute;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
}

.featured-post-info .featured-post-title {
    text-align: center;
}

.featured-post-info h2 {
    background: #fff;
    display: inline-block;
    padding: 10px 20px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.2rem;
    margin-left: 0.2rem;
    font-size: 1.2rem;
}

.featured-post-info .continue-reading {
    display: inline-block;
    background: #333;
    color: #fff;
    padding: 5px 10px;
    margin-top: 10px;
    font-size: 0.7rem;
    border: none;
}

.featured-post-info .continue-reading:hover {
    background: #bbb;
    border: none;
    color: #fff;
}

/*--------------------------------------------------------------
# Sidebar Menu
--------------------------------------------------------------*/

#sidebar-primary-menu {
    display: block;
    padding: 0;
    text-align: left;
    padding: 10px 20px;
    line-height: 1.6rem;
}

#sidebar-primary-menu ul {
    padding-left: 0;
}


#sidebar-primary-menu li {
    display: block;
    padding: 15px;
}

#sidebar-primary-menu > li a {
    display: block;
    font-size: 0.8rem;
    font-family: "Montserrat";
}

#sidebar-primary-menu .menu-item-has-children .sub-menu {
    border: none;
    overflow: hidden;
    display: none;
    width: 100%;
    padding-left: 20px;
    padding-top: 10px;
}

#sidebar-primary-menu .menu-item-has-children .sub-menu li {
    padding: 15px 0;
}

#sidebar-primary-menu .menu-item-has-children .ion-chevron-down {
    border: 1px solid #ececec;
    float: right;
    text-align: center;
    width: 30px;
    z-index: 520;
    transition: .3s all ease-out;
    cursor: pointer;
}

#sidebar-primary-menu .menu-item-has-children .ion-chevron-down.rotated {
    transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    color: #fff;
    background: #333;
    border: 1px solid #333;
}

#sidebar-primary-menu .menu-item-has-children .sub-menu a {
    padding: 0;
}

.site-branding {
    text-align: center;
    margin: 50px 0 100px;
}

.site-title {
    margin: 0;
}

@media (max-width: 768px) {
    .site-branding .site-title > a {
        font-size: 2rem;
        letter-spacing: 1rem;
        margin-left: 1rem;
    }

    .site-branding .site-description {
        font-size: 0.8rem;
        letter-spacing: 0.2rem;
        margin-left: 0.2rem;
    }
}

.site-title > a {
    color: #000;
    font-family: "Montserrat";
    font-size: 2.9rem;
    font-weight: 500;
    letter-spacing: 2rem;
    margin-left: 2rem;
    text-transform: uppercase;
    word-wrap: break-word;
}

.site-description {
    color: #333;
    font-family: "Montserrat";
    font-size: 1rem;
    letter-spacing: 0.3rem;
    margin-left: 0.3rem;
    margin-top: 0;
    text-align: center;
    text-transform: uppercase;
}

/*--------------------------------------------------------------
# Post
--------------------------------------------------------------*/

article {
    border: 1px solid #ececec;
    position: relative;
    margin-bottom: 30px;
    overflow: hidden;
    background: #ffffff;
}

article.sticky {
    border-top: 1px solid #333;
}

article.page.type-page {
    padding: 40px 0;
}

.post-password-required .post-password-form input[type="submit"] {
    background: #fff;
    font-size: 0.8rem;
    border: 1px solid #333;
    text-transform: uppercase;
    font-family: "Montserrat";
    letter-spacing: 0.1rem;
    padding: 5px 10px;
    margin-left: 10px;
}

.post-password-required .post-password-form input[type="submit"]:hover {
    background: #333;
    color: #fff;
}

.edit-link {
    bottom: 5px;
    color: #ddd;
    left: 10px;
    position: absolute;
    transition: .3s all ease-out;
}

.edit-link:hover {
    color: #ccc;
}

.post-thumbnail {
    text-align: center;
}

.entry-header {
    margin-bottom: 30px;
}

.entry-title,
.entry-title a {
    color: #000000;
    font-family: "Montserrat";
    font-size: 1.5rem;
    font-weight: 500;
    text-align: center;
    margin: 24px 0 15px;
    text-transform: uppercase;
    letter-spacing: 0.2rem;
    line-height: 1.5;
}



.entry-title a:hover {
	color: #ccc;
}

article .post-time {
    line-height: 1.3;
    text-align: center;
    margin-bottom: 5px;
    padding-top: 40px;
}

article .post-month, 
article .post-date {
    color: #000000;
    display: block;
    font-family: "Montserrat";
    text-transform: uppercase;
    font-weight: 100;
}

.post-month {
    font-size: 0.8rem;
}

article .post-date {
    font-size: 5rem;
}

.ornament-breaker {
    display: block;
    margin: 0 auto;
}

.post-info {
    color: #aaa;
    text-align: center;
    font-family: "Montserrat";
    font-size: 0.8rem;
    font-weight: 100;
}

.post-info a {
	color: #aaa;
}

.post-info a:hover {
	color: #ccc;
}

.post-info .cat-links a,
.post-info .author-link a {
    color: #333;
}

.post-info .cat-links a:hover,
.post-info .author-link a:hover {
    color: #ccc;
}


.comments-link::after,
.cat-links::after,
.list-layout .author-link::after,
.single .author-link::after {
    content: "/";
    margin-left: 5px;
}

.single .post-year

.comments-link,
.cat-links,
.author-link {
    margin-right: 5px;
}

.entry-content {
    margin: 0 auto;
    width: 90%;
    overflow: hidden;
}

.twitter-tweet.twitter-tweet-rendered {
    margin-left: auto;
    margin-right: auto;
}

.entry-content p {
    margin: 20px 0;
    text-align: justify;
}

.single .entry-content {
    margin-top: 30px;
}

@media (min-width: 768px) {
    .entry-content {
        width: 80%;
    }

    .list-layout .entry-content {
        width: 100%;
    }
}

.entry-footer {
    text-align: center;
}

.continue-reading {
    color: #333;
    display: inline-block;
    font-family: "Montserrat";
    font-size: 0.8rem;
    letter-spacing: 0.3rem;
    margin: 20px auto 20px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease-out 0s;
    text-transform: uppercase;
    font-weight: 500;
}

.continue-reading:hover {
	color: #ccc;
}

.post-signature {
    width: 90%;
    padding-top: 30px;
    text-align: right;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .post-signature {
        width: 80%;
    }
}

.social-sharing {
    height: 47px;
    position: relative;
    text-align: right;
}

.social-sharing .ion-android-share-alt {
    color: #ddd;
    font-size: 1.5rem;
    right: 15px;
    cursor: pointer;
    transition: .3s all ease-out;
    position: relative;
}

.social-sharing .ion-android-share-alt:hover,
.social-sharing .ion-android-share-alt.active {
	color: #000;
}

ul.social-sharing-ul {
    position: absolute;
    right: 50px;
    display: inline;
    font-size: 20px;
    bottom: 0;
    padding: 0;
    margin: 0;
    top: 0;
    line-height: 47px;
    visibility: hidden;
    opacity: 0;
    transition: .3s all ease-out;
}

ul.social-sharing-ul.active {
    visibility: visible;
    opacity: 1
}

ul.social-sharing-ul li {
    display: inline;
}

ul.social-sharing-ul li a {
    padding: 0 10px;
}


.post-tags {
    margin-top: 50px;
    padding: 0;
    width: 90%;
    text-align: left;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 768px) {
    .post-tags {
        width: 80%;
    }
}

.post-tags a {
    border: 1px solid #ddd;
    border-radius: 20px;
    color: #aaa;
    cursor: pointer;
    margin: 0;
    padding: 1px 10px;
    margin-right: 5px;
    font-size: 0.8rem;
}

.post-tags a:hover {
	color: #333;
	border-color: #333;
}

.nav-links {
	margin-top: 0;
    margin-bottom: 70px;
	overflow: hidden;
}

.nav-next,
.nav-previous {
    font-family: "Montserrat";
    font-size: 0.8rem;
    letter-spacing: 0.1rem;
    padding: 10px 50px;
    text-transform: uppercase;
    text-align: center;
    width: 100%;
}

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

.nav-previous a,
.nav-next a {
    color: #333;
}

.nav-previous a:hover,
.nav-next a:hover {
    color: #ccc;
}

.both-links .nav-next {
	text-align: left;
	float: right;
}

.both-links .nav-previous {
	text-align: right;
	float: left;
    border-right: 1px solid #ececec;
}

.single-nav-links {
    margin-top: 100px;
}

.single-nav-links span {
    display: block;
    text-transform: uppercase;
    color: #aaa;
}

.single-nav-previous,
.single-nav-next {
    font-family: "Montserrat";
    font-size: 0.8rem;
    letter-spacing: 0.1rem;
    padding: 10px 30px;
    text-transform: uppercase;
}

.single-nav-next a, 
.single-nav-previous a {
    font-weight: 500;
    color: #333;
    font-size: 0.9rem;
}

.single-nav-previous {
    text-align: left;
}

.single-nav-next {
    text-align: right;
}

@media (min-width: 768px) {

    .single-nav-previous {
        text-align: right;
    }

    .single-nav-next {
        text-align: left;
    }

}

.about-author {
    margin: 100px auto 0;
    text-align: center;
    overflow: hidden;
}

.about-author img {
    display: block;
    margin: 0 auto;
    border-radius: 50%;
}

.author-info {
    padding: 15px;
}

.author-name {
    display: block;
    color: #333;
    font-size: 0.9rem;
    letter-spacing: 0.1rem;
    font-family: "Montserrat";
    text-transform: uppercase;
    font-weight: 500;
}

.author-bio {
    margin: 20px auto 0;
    max-width: 600px;
}

.author-bio p {
    margin: 0;
}

.author-profile {
    margin-top: 20px;
}

.author-profile a {
    font-size: 1.1rem;
    padding: 10px;
}

.elrementor-progress-bar {
	font-size: 0.9rem;
}

.breaker {
    background: #333 none repeat scroll 0 0;
    height: 1px;
    margin: 10px auto 30px;
    width: 50px;
}

.widget .breaker {
    margin-bottom: 20px;
}

.ion-ios-minus-empty,
.ion-ios-more-outline {
    font-size: 2rem;
}

.related-posts > h3,
.comments-title,
.comment-reply-title {
    font-family: "Montserrat";
    color: #000000;
    font-size: 0.9rem;
    letter-spacing: 0.1rem;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 0;
    font-weight: 500;
}

.comments-area {
    margin-top: 100px;
}

.comments-area .comment {
    list-style: none; 
    overflow: hidden;
    clear: both;
}

.comments-area ul.children {
    list-style: none;
}

.comment-list {
	list-style: none;
	padding: 0;
	width: 100%;
}

.comment-list .single-comment {
    border-bottom: 1px solid #ececec;
    margin-top: 50px;
    width: 100%;
    overflow: hidden;
}

.comment-avatar {
	float: left;
	width: 10%;
}

.comment-body {
    border-right: 1px solid #ececec;
    padding-left: 25px;
    padding-bottom: 20px;
    padding-right: 25px;
    position: relative;
    float: left;
    width: 77%;
}

.comment-body .author-name {
	font-style: normal;
	font-size: 0.8rem;
}

.bypostauthor .comment-body .author-name {
    background: #333;
    color: #fff;
    display: inline-block;
    padding: 0 5px;
}

.comment-body p {
    margin-top: 10px;
}

.comment-time {
    text-align: center;
    width: 10%;
    float: left;
}

.comment-month,
.comment-year {
    color: #888888;
    font-size: 0.6rem;
}

.comment-month,
.comment-date,
.comment-year {
    display: block;
    font-family: "Montserrat";
    letter-spacing: 0.1rem;
    text-transform: uppercase;
}

.comment-date {
    font-size: 2.5rem;
}

.ion-reply {
    bottom: 0;
    padding: 5px 10px;
    position: absolute;
    right: 0;
}

.comment-edit-link {
	color: #888888;
    font-family: "Montserrat";
    font-size: 0.6rem;
    letter-spacing: 0.1rem;
    position: absolute;
    right: 10px;
    text-transform: uppercase;
    top: 0;
}

.comment-reply-title {
	text-align: center;
}

.comment-form {
    text-align: center;
}

.comment-form label,
.wpcf7-form label {
    color: #333;
    display: block;
    font-family: "Montserrat";
    font-size: 0.7rem;
    letter-spacing: 0.1rem;
    text-transform: uppercase;
}

.comment-notes {
    color: #aaa;
    font-size: 0.8rem;
}

.comment-respond {
    margin-top: 100px;
}

textarea[name="comment"],
input[name="author"],
input[name="email"],
input[name="url"],
.wpcf7-form textarea,
.wpcf7-form input {
    border: 1px solid #ececec;
    max-width: 100%;
    transition: all 0.3s ease-out 0s;
    width: 500px;
    font-size: 0.8rem;
    padding: 4px;
}

textarea[name="comment"]:focus,
input[name="author"]:focus,
input[name="email"]:focus,
input[name="url"]:focus,
.wpcf7-form textarea:focus,
.wpcf7-form input:focus {
	border-color: #333;
    outline: none;
}

.submit,
.wpcf7-submit {
    background: #333;
    color: #ffffff;
    border: none;
    box-shadow: none;
    font-family: "Montserrat";
    font-size: 0.7rem;
    letter-spacing: 0.1rem;
    outline: medium none;
    padding: 10px 20px !important;
    text-transform: uppercase;
    margin-top: 30px;
    transition: .3s all ease-out;
}

input.wpcf7-form-control.wpcf7-submit {
    width: auto;
}

.wpcf7-form {
    text-align: center;
    padding-top: 20px;
}

form.wpcf7-form p {
    text-align: center;
}

.submit:hover,
.wpcf7-submit:hover {
	background-color: #bbb;
}

.page-links {
    text-align: center;
    margin-top: 40px;
    margin-bottom: 5px;
    clear: both;
}

.list-layout .page-links {
    text-align: left;
}

.page-links .page-link-number {
    padding: 5px 10px;
    border: 1px solid #333;
    background: #333;
    color: #fff;
}

.page-links a .page-link-number {
    background: #fff;
    color: #333;
    border: 1px solid #888;
    transition: .3s all ease-out;
}

.page-links a:hover .page-link-number {
    background: #333;
    color: #fff;
    border: 1px solid #333;
}

.gallery {
    overflow: hidden;
    text-align: center;
}

.gallery .gallery-item {
    display: inline-block;
    margin: 1rem 15px;
}

.gallery-item .gallery-caption {
    border: 1px solid #ececec;
    background: #f8f8f8;
    text-align: center;
    font-size: 0.8rem;
    padding: 0 5px;
}

/*--------------------------------------------------------------
# Quote Posts
--------------------------------------------------------------*/

.format-quote {
    box-sizing: border-box;
    color: #333;
    padding: 50px;
    text-align: center;
    margin-bottom: 30px;
}

.format-quote .ion-quote {
    font-size: 2rem;
}

.format-quote blockquote {
    font-size: 1.3rem;
    background: transparent;
    text-align: center;
}

.format-quote blockquote p {
    text-align: center;
}

.format-quote .entry-content {
    color: #333;
    font-size: 1.5rem;
}

.format-quote .author {
    display: block;
    font-family: "Montserrat";
    font-size: 0.8rem;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
}

.format-quote .ornament-breaker {
    margin: 30px auto;
}

blockquote {
    font-style: italic;
    padding: 1px 20px;
    font-family: "Playfair Display", serif;
    font-size: 1rem;
    background: #f8f8f8;
}

/*--------------------------------------------------------------
# Link post
--------------------------------------------------------------*/

.format-link .post-thumbnail {
    position: relative;
}

.format-link .post-thumbnail img {
    transition: .3s all ease-out;
}

.format-link .post-thumbnail:hover .post-link {
    transform: translate(-50%, -50%) scale(1, 1);
    opacity: 1;
}

.format-link .post-thumbnail:hover .link-icon-static {
    padding: 20px 100px;
    font-size: 4rem;
    opacity: 0;
}

.format-link .post-thumbnail:hover img {
    opacity: 0.7;
}

.post-link {
    position: absolute;
    top: 50%;
    left: 50%;
    background: #ffffff;
    text-align: center;
    width: 80%;
    padding: 10px;
    min-height: 200px;
    border: 1px solid #cecece;
    outline: 10px solid #fff;
    color: #333333;
    transform: translate(-50%, -50%) scale(0.3,0.3);
    transition: .3s all ease-out;
    opacity: 0;
    z-index: 500;
}

.grid .post-link {
    min-height: 150px;
    width: 90%;
}

.post-link .link-icon,
.post-link .link-text {
    display: block;
}

.post-link .link-icon {
    font-size: 4rem;
    margin: -40px;
}

.grid .post-link .link-icon {
    font-size: 2.5rem;
    margin: -25px;
}

.post-link .link-text {
    font-size: 1rem;
    color: #888;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    width: 100%;
    margin: 0 auto;
}

.grid .post-link .link-text {
    font-size: 0.9rem;
}

.post-link div {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80%;
    text-align: center;
    transform: translate(-50%, -50%);
}

.link-icon-static {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 15px 35px;
    font-size: 2rem;
    background: #fff;
    color: #333333;
    transition: .3s all ease-out;
    z-index: 499;
}

/*--------------------------------------------------------------
# Audio Post
--------------------------------------------------------------*/

.format-audio .post-thumbnail {
    position: relative;
    cursor: pointer;
}

.format-audio .post-thumbnail.faded img {
    opacity: 0.7;
    transition: .3s all ease-out;
}

.format-audio .post-thumbnail.faded:hover img {
    opacity: 1;
}

.format-audio .post-thumbnail .risdan-audio-play-button,
.format-audio .post-thumbnail .risdan-audio-pause-button {
    display: inline-block;
    position: absolute;
    font-size: 2rem;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: #fff;
    z-index: 500;
}

.format-audio .post-thumbnail .risdan-audio-play-button {
    padding: 6px 27px 6px 33px;
}

.format-audio .post-thumbnail .risdan-audio-pause-button {
    padding: 6px 30px;
}

.format-audio .post-thumbnail .risdan-audio-play-button.show,
.format-audio .post-thumbnail .risdan-audio-pause-button.show {
    visibility: visible;
    opacity: 1;
    transition: all .3s ease-out;
}

.format-audio .post-thumbnail .risdan-audio-play-button.hide,
.format-audio .post-thumbnail .risdan-audio-pause-button.hide {
    visibility: hidden;
    opacity: 0;
    transform: translate(-50%, -50%) scale(2, 2);
    transition: all .5s ease-out;
}

/*--------------------------------------------------------------
# Gallery Slider Post
--------------------------------------------------------------*/
.owl-nav {
    bottom: 35px;
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    text-align: center;
    opacity: 0;
    transition: all 0.3s ease-out 0s;
}

.owl-next, 
.owl-prev {
    border: 1px solid #fff;
    color: #fff;
    display: inline-block;
    margin: 0 5px;
    padding: 4px 15px;
    transition: all 0.3s ease-out 0s;
}

.owl-next:hover, 
.owl-prev:hover {
    background-color: #fff;
    color: #000;
}

.owl-carousel:hover .owl-nav {
    opacity: 1;
}

@media (min-width: 967px) {

    .owl-carousel.small-slideshow .owl-item {
        opacity: 0.5;
        transition: .5s all ease-out;
    }

    .owl-carousel.small-slideshow .owl-item.center {
        opacity: 1;
    }

}

.owl-dots {
    bottom: 5px;
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    text-align: center;
}

.owl-dot {
    background: #fff none repeat scroll 0 0;
    border-radius: 50%;
    color: #fff;
    display: inline-block;
    height: 7px;
    margin: 0 5px;
    opacity: 0.5;
    width: 7px;
}

.owl-dot.active {
    opacity: 1;
}

/*--------------------------------------------------------------
# Gallery Tiled
--------------------------------------------------------------*/
.justified-gallery > a > .caption, 
.justified-gallery > div > .caption {
    display: block;
    opacity: 0;
    color: #333;
    background-color: #fff;
}

.justified-gallery > a > .caption.caption-visible, 
.justified-gallery > div > .caption.caption-visible {
    transition: .3s opacity ease-out;
    opacity: .8;
}

/*--------------------------------------------------------------
# Widget
--------------------------------------------------------------*/

.widget ul {
    list-style: none;
    padding-left: 0;
}

.overlay {
    background: rgba(0, 0, 0, 0);
    height: 100%;
    position: fixed;
    right: 0;
    top: 0;
    width: 100%;
    visibility: hidden;
    transition: .3s all ease-out;
    z-index: 9998;
}

.overlay.active {
    background: rgba(0, 0, 0, 0.5);
    visibility: visible;
}

.sliding-sidebar {
    background: #fff none repeat scroll 0 0;
    position: fixed;
    right: -400px;
    text-align: center;
    top: 0;
    width: 400px;
    z-index: 9999;
    overflow-y: scroll;
    opacity: 0;
    transition: .3s all ease-out;
    height: 100%;
}

.logged-in.admin-bar .sliding-sidebar {
    top: 32px;
}

.sliding-sidebar.active {
    right: 0;
    opacity: 1;
    max-width: 100%;
}

.sliding-sidebar .close-off-canvas-sidebar {
    color: #333;
    cursor: pointer;
    display: inline-block;
    margin-top: 20px;
    padding: 0 10px;
    transition: .3s all ease-out;
    font-size: 2rem;
    line-height: 0;
}

.sliding-sidebar .close-off-canvas-sidebar:hover {
    color: #ccc;
}

.sliding-sidebar .sidebar-logo img {
    padding: 40px 20px;
}

.sliding-sidebar .sidebar-searchform .search-field {
    background: #333;
    border: none;
    color: #fff;
    padding: 8px 10px;
    text-align: center;
    margin: 0;
}

.sliding-sidebar .sidebar-searchform .search-field::-webkit-input-placeholder {
   text-align: center;
   color: #aaa;
}

.sliding-sidebar .sidebar-searchform .search-field:-moz-placeholder { /* Firefox 18- */
   text-align: center;
   color: #aaa;
}

.sliding-sidebar .sidebar-searchform .search-field::-moz-placeholder {  /* Firefox 19+ */
   text-align: center;
   color: #aaa; 
}

.sliding-sidebar .sidebar-searchform .search-field:-ms-input-placeholder {  
   text-align: center;
   color: #aaa;
}

.sliding-sidebar .sidebar-searchform .search-field:focus::-webkit-input-placeholder {
   color: transparent;
}

.sliding-sidebar .sidebar-searchform .search-field:focus:-moz-placeholder { /* Firefox 18- */
   color: transparent;
}

.sliding-sidebar .sidebar-searchform .search-field:focus::-moz-placeholder {  /* Firefox 19+ */
   color: transparent; 
}

.sliding-sidebar .sidebar-searchform .search-field:focus:-ms-input-placeholder {  
   color: transparent;
}

.sliding-sidebar .sidebar-searchform .search-submit {
    display: none;
}

.widget {
    padding: 30px 30px 50px;
    text-align: center;
    margin-bottom: 30px;
}

.sliding-sidebar .widget {
    margin-bottom: 0;
    transition: .3s all ease-out;
    border-top: 1px solid #ececec;
}

.widget-title {
    font-family: 'Montserrat';
    color: #000000;
    font-size: 0.9rem;
    margin-bottom: 0;
    padding-bottom: 10px;
    position: relative;
    text-transform: uppercase;
    font-weight: 500;
}

.search-submit {
    background: #333;
    border: 1px solid #333;
    color: #ffffff;
    display: block;
    font-family: 'Montserrat';
    font-size: 0.7rem;
    text-transform: uppercase;
    width: 100%;
    transition: .3s all ease-out;
    letter-spacing: 0.1rem;
    padding: 10px;
}

.search-submit:hover {
    background: #ffffff;
    color: #333;
}

.search-field {
    border: 1px solid #ececec;
    margin-bottom: 20px;
    padding: 5px 10px;
    width: 100%;
}

.mc4wp-form {
    text-align: center;
}

.mc4wp-form input[type="email"] {
    display: block;
    padding: 10px 10px;
    width: 100%;
    margin-top: 10px;
    border: 1px solid #ddd;
    transition: all .3s ease-out;
}

.mc4wp-form input[type="email"]:focus {
    border: 1px solid #333;
}

.mc4wp-form input[type="submit"] {
    width: 100%;
    background: #333;
    border: none;
    padding: 15px 10px;
    color: #fff;
    text-transform: uppercase;
    font-family: Montserrat;
    font-size: 0.8rem;
    letter-spacing: 0.1rem;
    transition: all .3s ease-out;
    margin-top: 5px;
}

.mc4wp-form input[type="submit"]:hover {
    background: #bbb;
}

.forethemes-custom-recent-posts-widget .first .post-title-date .post-date,
.related-posts .date {
    background: #ececec;
    display: block;
    text-transform: uppercase;
    font-size: 0.65rem;
    letter-spacing: 0.1rem;
}

.forethemes-custom-recent-posts-widget .post-title-date h4 {
    margin: 0;
    padding: 0;
}

.forethemes-custom-recent-posts-widget .post-title-date h4 a,
.related-posts .title a {
    display: block;
    font-family: "Montserrat";
    text-transform: uppercase;
    font-size: 0.65rem;
    letter-spacing: 0.1rem;
    border: 1px solid #f1f1f1;
    padding: 15px 10px 10px 20px;
    font-weight: 500;
}

.forethemes-custom-recent-posts-widget .rest {
    overflow: hidden;
    margin: 20px 0;
    border: 1px solid #f1f1f1;
}

.forethemes-custom-recent-posts-widget .post-thumbnail img {
    vertical-align: bottom;
}

.forethemes-custom-recent-posts-widget .first .post-thumbnail {
    height: 200px;
    line-height: 200px;
    overflow: hidden;
}

.forethemes-custom-recent-posts-widget .rest .post-thumbnail {
    width: 25%;
    height: 80px;
    float: left;
    line-height: 80px;
}

.forethemes-custom-recent-posts-widget .no-thumbnail {
    background: #f8f8f8;
}

.forethemes-custom-recent-posts-widget .rest .no-thumbnail span {
    font-size: 1.2rem;
}

.forethemes-custom-recent-posts-widget .first .no-thumbnail span {
    font-size: 1.5rem;
}

.forethemes-custom-recent-posts-widget .rest .post-title-date {
    width: 75%;
    float: left;
}

.forethemes-custom-recent-posts-widget .rest .post-title-date h4 a {
    text-align: left;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    border: none;
}

.forethemes-custom-recent-posts-widget .rest .post-title-date .post-date {
    text-transform: uppercase;
    font-size: 0.65rem;
    letter-spacing: 0.1rem;
    text-align: left;
    display: block;
    padding-left: 20px;
    padding-top: 5px;
}

.forethemes-custom-recent-posts-widget .rest .post-thumbnail-img {
    width: 100%;
    height: 100%;
    background-position: center center;
    margin: 0;
    background-size: cover;
}

.widget_categories ul {
    padding: 0;
}

.widget_categories li {
    list-style: none;
}

.widget_categories li a {
    margin-bottom: 10px;
    display: block;
    padding: 5px 15px;
    border: 1px solid #ececec;
    text-align: left;
}

.widget_categories li .count {
    float: right;    
}


.widget_categories li a:hover {
    background: #333;
    color: #fff;
    border-color: #333;
}

.widget_calendar table {
    width: 100%;
}

.widget_calendar #today a {
    background: #333;
    color: #fff;
    border: 1px solid #333;
    display: block;
    height: 100%;
    width: 100%;
}

.widget_calendar #today a:hover {
    color: #000;
    background: #fff;
}

.widget_recent_entries ul {
    padding: 0;
    text-align: center;
}

.widget_recent_entries li {
    list-style: outside none none;
    margin-bottom: 10px;
    padding-bottom: 10px;
}

.widget_recent_entries .post-date {
    color: #aaa;
    font-size: 0.8rem;
}

.tagcloud a {
    border: 1px solid #dddddd;
    border-radius: 20px;
    font-size: 0.8rem !important;
    margin: 0 2px;
    padding: 5px 10px;
    line-height: 2.5rem;
}

.tagcloud a:hover {
    background: #333;
    color: #fff;
    border-color: #333;
}

.widget_nav_menu a {
    display: block;
    padding: 10px;
}

.widget_nav_menu .sub-menu {
    display: none;
    background: #f8f8f8;
}

.widget_nav_menu .sub-menu .sub-menu {
    background: #f1f1f1;
}

.widget_nav_menu .ion-chevron-down {
    color: rgba(255,255,255,0);
    font-size: 0.7rem;
    padding-left: 5px;
    padding-right: 5px;
    transition: .3s all ease-out;
}

.widget_nav_menu .arrow-drop-down {
    color: #aaa;
}

.widget_nav_menu .arrow-drop-down:hover {
    color: #333;
}

/*--------------------------------------------------------------
# List Layout
--------------------------------------------------------------*/

#content.list-layout .post {
    padding: 40px 25px;
}

#content.list-layout .post-content {
    padding-left: 25px;
    position: relative;
}

#content.list-layout .entry-title, 
#content.list-layout .entry-title a {
    text-align: left;
    margin-top: 0;
}

#content.list-layout .post-info {
    text-align: left;
}

#content.list-layout .entry-footer {
    text-align: left;
}

#content.list-layout .entry-header {
    margin-bottom: 0;
}

@media (min-width: 768px) {
    #content.list-layout .post-thumbnail {
        margin-bottom: 30px;
    }
}

@media (min-width: 992px) {
    #content.list-layout .post-thumbnail {
        margin-bottom: 0;
    }
}

#content.list-layout .continue-reading {
    padding: 10px 0;
    margin: 0;
}

#content.list-layout  .post .edit-link {
    right: 10px;
    top: 5px;
    bottom: auto;
    left: auto;
}

#content.list-layout .post-thumbnail.no-thumbnail {
    height: 280px;
    text-align: center;
    line-height: 280px;
    background: #ececec;
}

#content.list-layout .ion-image {
    font-size: 2rem;
}

/*--------------------------------------------------------------
# Grid Layout
--------------------------------------------------------------*/
#content.grid-layout .grid-item .entry-header,
#content.grid-layout .grid-item .entry-content {
    padding-left: 20px;
    padding-right: 20px;
}

#content.grid-layout .format-quote {
    padding: 30px;
}

#content.grid-layout .format-quote .entry-content {
    padding-left: 0;
    padding-right: 0;
}

#content.grid-layout .format-quote blockquote {
    margin: 0;
    font-size: 1.1rem;
    padding: 0;
}

#content.grid-layout .entry-title,
#content.grid-layout .entry-title a {
    font-size: 1rem;
    margin: 24px 0 10px;
}

#content.grid-layout .continue-reading {
    margin: 0 auto;
}

#content.grid-layout .entry-footer {
    margin-top: 0;
    padding-bottom: 40px;
}

#content.grid-layout .entry-header {
    margin: 0;
}

#content.grid-layout .entry-content {
    width: 95%;
}

.grid-post-date {
    color: #aaa;
    position: absolute;
    bottom: 10px;
    left: 18px;
    text-align: center;
    width: 100%;
    transition: .3s all ease-out;
}

.grid-post-date .year {
    opacity: 0;
}

.grid-post-date:hover {
    left: 0;
    color: #333;
}

.grid-post-date:hover .year {
    opacity: 1;
}

.grid-layout .link-icon-static {
    padding: 0 30px;
}

.grid-layout .post .edit-link {
    left: 30px;
    bottom: 10px;
    opacity: 0;
    color: #ccc;
}

.grid-layout .post .edit-link:hover {
    color: #ccc;
}

.grid-layout article:hover .edit-link {
    left: 20px;
    opacity: 1;
}

/*--------------------------------------------------------------
# Images in Content
--------------------------------------------------------------*/

.wp-caption .wp-caption-text {
    border: 1px solid #ececec;
    background: #f8f8f8;
    font-size: 0.8rem;
    text-align: center;
}

img.alignright {
    float: right;
    padding: 10px 0 10px 20px;
}

img.alignleft {
    float: left;
    padding: 10px 20px 10px 0;
}

figure {
    max-width: 100%;
}

figure.aligncenter {
    margin: 1rem auto;
}

figure.alignleft {
    padding: 10px 20px 10px 0;
    display: inline-block;
    float: left;
}

figure.alignright {
    padding: 10px 0 10px 20px;
    float: right;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/

footer {
    margin-top: 40px;
}

.list-layout footer {
    margin-top: 0;
}

footer .footer-logo {
    display: block;
    margin: 70px auto 50px;
}

footer .back-to-top {
    margin: 50px auto;
    text-align: center;
}

footer .back-to-top div {
    width: 50px;
    margin: 0 auto;
    cursor: pointer;
    color: #000;
}

footer .back-to-top .ion-chevron-up {
    display: block;
}

.footer-menu {
    margin: 0;
    padding: 0;
    text-align: center;
    border-top: 1px solid #ececec;
}

.footer-menu ul {
    padding: 0;
    margin: 0;
}

.footer-menu li a {
    font-family: "Montserrat";
    font-size: 0.8rem;
    padding: 17px 20px;
    display: inline-block;
}

.footer-menu li {
    display: inline;
}

.footer-menu li a {
    color: #333555;
}

.footer-menu li a:hover {
    color: #ccc;
}

footer .site-info {
    text-align: center;
    font-size: 0.8rem;
    padding: 20px 0;
    margin: 0;
    border-top: 1px solid #ececec;
}

.footer-widgets {
    background: #fbfbfb;
}

/*--------------------------------------------------------------
# Related Posts
--------------------------------------------------------------*/

.snip1577 {
    position: relative;
    height: 250px;
    background-size: cover;
    background-position: center center;
}

.snip1577 figcaption {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: 25px;
    background: #fff;
    overflow: hidden;
    border: 1px solid #cecece;
    outline: 10px solid #fff;
    padding: 0;
    text-align: center;
    opacity: 0;
    transition: .3s all ease-out;
    transform: scale(0.8, 0.8);
}

.snip1577:hover figcaption {
    opacity: 1;
    transform: scale(1, 1);
}

.snip1577 img {
    transition: .3s all ease-out;
}

.snip1577:hover img {
    opacity: 0.7;
}

.snip1577 figcaption p {
    padding: 15px;
    margin: 0;
    text-align: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #333;
}

.related-posts {
    width: 100%;
    text-align: center;
    margin-top: 100px;
}

.related-posts .special-post-type {
    height: 250px;
    background: #f8f8f8;
}

.related-posts .special-post-type span {
    font-size: 3rem;
    line-height: 250px;
}

.related-cat-posts {
    margin-top: 5px;
}

.related-cat-posts .post-thumbnail {
    margin: 0;
}

.related-posts h4 {
    margin: 0;
}

/*--------------------------------------------------------------
# Shortcodes
--------------------------------------------------------------*/

.forethemes-drop-cap {
    float: left;
}

.forethemes-drop-cap.line-3{
    width: 0.8em;
    font-size: 5rem;
    line-height: 100%;
}

.forethemes-drop-cap.line-2{
    width: 0.8em;
    font-size: 3.2rem;
    line-height: 3.5rem;
}

.forethemes-drop-cap.line-4{
    width: 0.8em;
    font-size: 7rem;
    line-height: 100%;
}

/*--------------------------------------------------------------
# Responsive embedded video
--------------------------------------------------------------*/

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 30px;
    height: 0;
    overflow: hidden;
}
.list-layout .video-container {
    padding-bottom: 23.25%;
}

.video-container iframe,  
.video-container object,  
.video-container embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.entry-content img, 
.entry-content iframe, 
.entry-content object, 
.entry-content embed {
    max-width: 100%;
    height: auto;
}

.grid .entry-content img, 
.grid .entry-content iframe, 
.grid .entry-content object, 
.grid .entry-content embed {
    max-width: 100%;
    max-height: 200px;
}

/*--------------------------------------------------------------
# 404 page
--------------------------------------------------------------*/

.error404 .content-area {
    text-align: center;
}

.error404 .page-title {
    font-size: 5rem;
    font-family: "Montserrat";
    color: #000;
    margin-bottom: -10px;
}

.error404 .ornament-breaker {
    margin-bottom: 50px;
}

.error404 .content-area .search-form {
    max-width: 400px;
    width: 90%;
    margin: 50px auto;
}


/*--------------------------------------------------------------
# Archive page
--------------------------------------------------------------*/

.archive .page-header,
.search .page-header {
    text-align: center;
}

.archive .page-title,
.search .page-title {
    font-family: "Montserrat";
}

.archive .archive-title,
.search .search-title {
    display: block;
    text-transform: uppercase;
    color: #aaa;
    font-size: 0.7rem;
    letter-spacing: 0.3rem;
    margin-left: 0.3rem;
}

.archive .archive-name,
.search .search-key {
    display: block;
    text-transform: uppercase;
    color: #000;
    font-size: 1.5rem;
    letter-spacing: 0.5rem;
    margin-left: 0.5rem;
    font-weight: 500;
    margin-top: 10px;
}

.archive .page-header .ornament-breaker,
.search .page-header .ornament-breaker {
    margin-bottom: 50px;
    margin-top: 20px;
}

/*--------------------------------------------------------------
# Not-found page
--------------------------------------------------------------*/

.search-no-results .site-main {
    margin-bottom: 70px;
}

.search-no-results .site-main .search-form {
    max-width: 400px;
    width: 90%;
    margin: 50px auto 0;
}

.no-results {
    text-align: center;
}

.no-results .page-title {
    font-family: "Montserrat";
    text-transform: uppercase;
    color: #000;
    font-size: 1.5rem;
    letter-spacing: 0.2rem;
    margin-left: 0.2rem;
    font-weight: 500;
}

/*--------------------------------------------------------------
# Instagram feed plugin
--------------------------------------------------------------*/

#sb_instagram .sb_instagram_header {
    text-align: center;
}

#sb_instagram .sb_instagram_header a {
    float: none;
    display: inline-block;
}

#sb_instagram #sbi_load .sbi_load_btn, 
#sb_instagram .sbi_follow_btn a {
    font-family: "Montserrat";
    font-size: 0.6rem;
    text-transform: uppercase;
    border-radius: 0;
    letter-spacing: 0.1rem;
}

#sb_instagram #sbi_load .sbi_load_btn {
    padding-top: 9px !important;
    padding-bottom: 8px !important;
}

#sb_instagram .sb_instagram_header h3.sbi_no_bio {
    font-size: 0.9rem;
    font-family: "Montserrat";
}

/*--------------------------------------------------------------
# Infinite Scroll
--------------------------------------------------------------*/

body.infinite-scroll nav.posts-navigation {
    display: none;
}

#infinite-handle {
    text-align: center;
}

.spinner {
    margin: auto;
    left: 0 !important;
}

.sharedaddy {
    display: none;
}

.comment-subscription-form {
    display: none;
}