/*
Theme Name: Roaa
Author: ar-themes.com
Author URI: https://www.ar-themes.com/
Theme URI: https://www.ar-themes.com/wordpress-themes/roaa
Description: An elegant magazine theme for wordpress.
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: roaa

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.

roaa is based on Underscores http://underscores.me/, (C) 2012-2016 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal http://necolas.github.com/normalize.css/
*/
/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
1 Normalize
2 Typography
3 Elements
4 Forms
5 Navigation
	5.1 Links
	5.2 Menus
6 Accessibility
7 Alignments
8 Clearings
9 Header
10 Widgets
11 Content
	11.1 Homepage
	11.2 Posts and pages
	11.3 Comments
12 Footer
13 Infinite scroll
14 Media
	14.1 Captions
	14.2 Galleries
15 Responsive Styling
--------------------------------------------------------------*/

@font-face {
  font-family: 'sky';
  src:  url('fonts/sky.eot'),
        url('fonts/sky.eot?#iefix') format('embedded-opentype'),
        url('fonts/sky.woff') format('woff'),
        url('fonts/sky.woff2') format('woff2'),
        url('fonts/sky.svg#sky') format('svg');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'sky-bold';
  src:  url('fonts/sky-bold.eot'),
        url('fonts/sky-bold.eot?#iefix') format('embedded-opentype'),
        url('fonts/sky-bold.woff') format('woff'),
        url('fonts/sky-bold.woff2') format('woff2'),
        url('fonts/sky-bold.svg#sky-bold') format('svg');
  font-weight: normal;
  font-style: normal;
}


/*--------------------------------------------------------------
1 Normalize
--------------------------------------------------------------*/

html {
    font-family: sans-serif;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}
body {
    margin: 0;
}
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 {
    background-color: transparent;
}
a:active,
a:hover {
    outline: 0;
}
abbr[title] {
    border-bottom: 1px dotted;
}
b,
strong {
    font-weight: bold;
}
dfn {
    font-style: italic;
}
h1 {
    font-size: 2em;
    margin: 0.67em 0;
}
mark {
    background: #ff0;
    color: #000;
}
small {
    font-size: 80%;
}
sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}
sup {
    top: -0.5em;
}
sub {
    bottom: -0.25em;
}
img {
    border: 0;
}
svg:not(:root) {
    overflow: hidden;
}
figure {
    margin: 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 {
    color: inherit;
    font: inherit;
    margin: 0;
}
button {
    overflow: visible;
}
button,
select {
    text-transform: none;
}
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
    -webkit-appearance: button;
    cursor: pointer;
}
button[disabled],
html input[disabled] {
    cursor: default;
}
button::-moz-focus-inner,
input::-moz-focus-inner {
    border: 0;
    padding: 0;
}
input {
    line-height: normal;
}
input[type="checkbox"],
input[type="radio"] {
    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 {
    border: 1px solid #c0c0c0;
    margin: 0 2px;
    padding: 0.35em 0.625em 0.75em;
}
legend {
    border: 0;
    padding: 0;
}
textarea {
    overflow: auto;
}
optgroup {
    font-weight: bold;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
td,
th {
    padding: 0;
}

/*--------------------------------------------------------------
2 Typography
--------------------------------------------------------------*/

body,
button,
input,
select,
textarea {
    color: #464646;
    font-family:"sky", sans-serif;
    font-size: 14px;
    line-height: 1.5;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    clear: both;
    font-weight: normal;
    font-family:"sky-bold", sans-serif;
}

p {
    margin-bottom: 1.5em;
}
dfn,
cite,
em,
i {
    font-style: italic;
}
blockquote {
    margin: 0 1.5em;
}
address {
    margin: 0 0 1.5em;
}
pre {
    background: #eee;
    font-family: "Courier 10 Pitch", Courier, monospace;
    font-size: 15px;
    font-size: 0.9375rem;
    line-height: 1.6;
    margin-bottom: 1.6em;
    max-width: 100%;
    overflow: auto;
    padding: 1.6em;
}
code,
kbd,
tt,
var {
    font-family: Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
    font-size: 15px;
    font-size: 0.9375rem;
}
abbr,
acronym {
    border-bottom: 1px dotted #666;
    cursor: help;
}
mark,
ins {
    background: #fff9c0;
    text-decoration: none;
}
big {
    font-size: 125%;
}

/*--------------------------------------------------------------
3 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: #f8f7f5;
}

hr {
    background-color: #ccc;
    border: 0;
    height: 1px;
    margin-bottom: 1.5em;
}
ul,
ol {
    margin: 0 3em 1.5em 0;
}
ul {
    list-style: disc;
}
ol {
    list-style: decimal;
}
li > ul,
li > ol {
    margin-bottom: 0;
    margin-right: 1.5em;
}
dt {
    font-weight: bold;
}
dd {
    margin: 0 1.5em 1.5em;
}
img {
    height: auto;
    /* Make sure images are scaled correctly. */
    
    max-width: 100%;
    /* Adhere to container width. */
}
table {
    margin: 0 0 1.5em;
    width: 100%;
}

/*--------------------------------------------------------------
4 Forms
--------------------------------------------------------------*/

button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
    border: none;
    border-radius: 0px;
    text-shadow: none;
    color: #fff;
    background: #444;
    cursor: pointer;
    -webkit-appearance: button;
    font-size: 14px;
    padding: 10px 25px;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}
button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
    background: #303780;
}
button:focus,
input[type="button"]:focus,
input[type="reset"]:focus,
input[type="submit"]:focus,
button:active,
input[type="button"]:active,
input[type="reset"]:active,
input[type="submit"]:active {
    background: #303780;
}
input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
textarea {
    width: 100%;
    display: block;
    padding: 20px;
    border: 1px solid #ddd;
    background: #fdfdfd;
    font-size: 0.95em;
    color: #666;
    -webkit-appearance: none;
    border-radius: 0;
}
select {
    border: 1px solid #ccc;
}
input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="range"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="week"]:focus,
input[type="time"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="color"]:focus,
textarea:focus {
    color: #111;
}
textarea {
    width: 100%;
}
/*--------------------------------------------------------------
5 Navigation
--------------------------------------------------------------*/
/*--------------------------------------------------------------
5.1 Links
--------------------------------------------------------------*/

a {
    color: #303780;
    text-decoration: none;
    -webkit-transition: all 250ms ease-in-out;
    -moz-transition: all 250ms ease-in-out;
    -ms-transition: all 250ms ease-in-out;
    -o-transition: all 250ms ease-in-out;
    transition: all 250ms ease-in-out;
}
a:hover,
a:focus,
a:active {
    color: #303780;
    outline: 0;
}

/*--------------------------------------------------------------
5.2 Menus
--------------------------------------------------------------*/
.mobile-navigation {
    display: none;
}
.main-navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.menu-toggle {
    display: none;
}
#main-nav {
    float: left;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    -ms-transition: all 0.3s;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
}
.menu-item {
    vertical-align: top;
    font-size: 14px;
    font-weight: 400;
    line-height: 70px;
    text-decoration: none;
    float: left;
}
.sub-menu-wrapper {
    position: absolute;
    left: 0;
    z-index: 998;
    width: 100%;
    display: none;
    top: 69px;
    background: #FFF;
}
.sub-menu-wrapper:before {
    content: '';
    position: absolute;
    left: 0;
    z-index: 998;
    width: 100%;
    top: 100%;
    background: rgba(0, 0, 0, 0.3);
    height: 100vh;
    pointer-events: none;
}
.sub-menu {
    top: 0;
    position: absolute;
    right: 0;
    z-index: 999;
    display: block;
    background: #f7f7f7;
}
.menu-links.inside-menu .sub-menu {
    display: none;
}
.menu-links.inside-menu .active .sub-menu {
    display: block;
}
.sub-menu-wrapper .menu-links.inside-menu .menu-links.inside-menu {
    display: none;
}
.sub-menu-wrapper .menu-links.inside-menu .sub-meni {
    float: left;
    z-index: 999;
    position: absolute;
    display: none;
    top: 0;
    left: 0;
    width: auto;
    padding-top: 0;
}
.sub-meni .sub-meni,
.fixed-menu .sub-meni .sub-meni {
    top: 0;
}
.sub-meni {
    background: #FFF;
    float: left;
    z-index: 999;
    position: absolute;
    display: none;
    top: 69px;
    width: 218px;
    box-shadow: 0 5px 10px -5px #000;
}
.menu-links.inside-menu .sub-meni {
    left: 218px;
    display: none;
    padding-top: 0;
}
.menu-links.inside-menu .menu-item {
    cursor: pointer;
    padding: 0;
    line-height: normal;
    float: left;
    width: 100%;
    border-bottom: 1px solid #D9D9D9;
}
.sub-menu .menu-links.inside-menu .menu-item.active {
    background: #F4F4F4;
}
#main-nav .sub-meni .menu-links.inside-menu {
    border-bottom: none;
    width: 100%;
    padding: 0;
}
.sub-meni .menu-links.inside-menu li {
    position: relative;
    background: #FFF;
    width: 100%;
    border-bottom: 0;
    border-top: 1px solid rgba(0, 0, 0, 0.15);
}
.sub-meni li {
    width: 164px;
}
#main-nav .menu-links.inside-menu {
    width: 16.1%;
    float: left;
    box-sizing: border-box;
    padding: 20px;
}
.menu-links.inside-menu .menu-link {
    color: #333;
    border: none;
    position: relative;
    padding: 0;
    margin: 10px 24px;
    font-size: 14px;
}
.sub-menu-wrapper .menu-links.inside-menu .menu-link {
    color: #000;
}
.menu-link {
    color: #444;
    padding: 0 14px;
    float: left;
    text-transform: uppercase;
}
.menu-link:hover,
.menu-links.inside-menu .menu-link:hover { color: #303780; }
.sub-menu-wrapper .six-menu {
    width: 100%;
}
.sub-menu-wrapper .five-menu {
    width: 83.9%;
}
.sub-menu-wrapper .six-menu li {
    width: 16.65%;
    float: left;
}
.sub-menu-wrapper .five-menu li {
    width: 20%;
    float: left;
}
.sub-menu-wrapper .small-category {
    width: 100%;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    padding: 0 10px;
    float: none;
    margin: 0 auto;
}
.sub-menu-wrapper .small-category li:nth-child(even) {
    -webkit-animation-delay: .2s;
    animation-delay: .2s;
    -moz-animation-delay: .2s;
}
.sub-menu-wrapper .small-category li {
    -webkit-animation: menu-in-up 1s ease both;
    animation: menu-in-up 1s ease both;
    -moz-animation: menu-in-up 1s ease both;
    box-sizing: border-box;
    padding: 20px 10px;
}
.sub-menu-wrapper li img {
    width: 100%;
}
.sub-menu-wrapper .small-category .small-text {
    position: relative;
    float: left;
    padding: 0;
    position: static;
    margin: 10px 0;
    text-shadow: none;
    font-size: 16px;
}
.sub-menu-wrapper .small-category .small-text a {
    color: #000;
    font-size: 14px;
}

@-webkit-keyframes menu-in-up
{0%{-webkit-transform: translateY(20px);opacity:0;}100%{-webkit-transform: translateY(0);}}
@-moz-keyframes menu-in-up
{0%{-moz-transform: translateY(20px);opacity:0;}100%{-moz-transform: translateY(0);}}
@keyframes menu-in-up
{0%{-webkit-transform: translateY(20px);-moz-transform: translateY(20px);-ms-transform: translateY(20px);-o-transform: translateY(20px);transform: translateY(20px);opacity:0;}100%{-webkit-transform: translateY(0);-moz-transform: translateY(0);-ms-transform: translateY(0);-o-transform: translateY(0);transform: translateY(0);}}

.sub-menu-wrapper .small-category .small-text h2 { 
    margin: 0;
    line-height: 22px; 
}
.small-image {
    position: relative;
    overflow: hidden;
    height: 120px;
    line-height: 0;
    background-position: center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}
.small-image:before {
    z-index: -1;
    background-color: #efefef;
    pointer-events: none;
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    vertical-align: top;
}
.sub-menu-wrapper .small-category li:hover .small-title a {
    color: #303780;
}
.site-main .comment-navigation,
.site-main .posts-navigation,
.site-main .post-navigation {
    margin: 0 0 1.5em;
    overflow: hidden;
}
.comment-navigation .nav-previous,
.posts-navigation .nav-previous,
.post-navigation .nav-previous {
    float: right;
    width: 50%;
}
.comment-navigation .nav-next,
.posts-navigation .nav-next,
.post-navigation .nav-next {
    float: left;
    text-align: left;
    width: 50%;
}

/* Numbered pagination */

.site-content .pagination {
    width: 100%;
    text-align: center;
    margin-bottom: 50px;
}
.site-content .pagination .page-numbers {
    padding: 5px 17px;
    margin: 4px;
    text-decoration: none;
    background: #fff;
    color: #888;
    display: inline-block;
    border: 1px solid #ebebeb;
}
.site-content .pagination .page-numbers:hover {
    background: #303780;
    color: #FFFFFF;
}
.site-content .pagination .page-numbers.dots:hover {
    background: #fff;
    color: #666;
}
.site-content .pagination .page-numbers.current,
.site-content .pagination .page-numbers.current:hover {
    background: #444;
    border-color: #444;
    color: #fff;
}

/*--------------------------------------------------------------
6 Accessibility
--------------------------------------------------------------*/
/* Text meant only for screen readers. */

.screen-reader-text,
.says {
    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;
}

/*--------------------------------------------------------------
7 Alignments
--------------------------------------------------------------*/

.alignleft {
    display: inline;
    float: left;
    margin-right: 1.5em;
}
.alignright {
    display: inline;
    float: right;
    margin-left: 1.5em;
}
.aligncenter {
    clear: both;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/*--------------------------------------------------------------
8 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,
.widget_tag_cloud:before,
.widget_tag_cloud:after {
    content: "";
    display: table;
    table-layout: fixed;
}
.clear:after,
.entry-content:after,
.comment-content:after,
.site-header:after,
.site-content:after,
.site-footer:after,
.widget_tag_cloud:after {
    clear: both;
}

/*--------------------------------------------------------------
9 Header
--------------------------------------------------------------*/

.site-header {
    background: #fff;
    height: 70px;
    position: relative;
    box-shadow: 0 0 24px rgba(0, 0, 0, 0.10);
    z-index: 99999;
}
.site-branding {
    float: left;
    margin-right: 5px;
    margin-left: 20px;
}
.site-title {
    font-size: 24px;
    line-height: 70px;
    margin: 0;
}
.menu-toggle {
    position: absolute;
    left: 0;
    width: 70px;
    height: 70px;
    background: transparent;
    text-align: center;
}
.menu-toggle:hover {
    background: transparent !important;
}
.menu-toggle .icon-bar {
    width: 15px;
    height: 2px;
    background: #303780 ;
    position: absolute;
    left: 20px;
    top: 29px;
    -webkit-transition: all .4s ease-in-out;
    -moz-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
}
.menu-toggle .icon-bar:nth-child(3) {
    top: 33px;
}
.menu-toggle .icon-bar:nth-child(4) {
    top: 37px;
}
.site-title a {
    text-decoration: none;
}
.site-description {
    display: none;
}
.custom-logo-link {
    display: block;
    margin: 10px 0;
}
.custom-logo-link img {
    width: auto;
    height: 50px;
}
.toggle-search {
    position: absolute;
    right: 0;
    top: 0;
}
.toggle-search .search-button {
    color: #444;
    font-size: 18px;
    cursor: pointer;
    width: 70px;
    height: 70px;
    line-height: 70px;
    text-align: center;
}
.search-wrapper ::-webkit-input-placeholder {
    color: #fff;
    font-size: 14px;
}
.search-wrapper :-moz-placeholder,
.search-wrapper ::-moz-placeholder,
.search-wrapper :-ms-input-placeholder {
    opacity: 1;
    color: #fff;
    font-size: 14px;
}

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

.widget {
    margin: 0 0 1.5em;
}
#secondary .widget-title {
    margin: 0;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
    margin-bottom: 15px;
    font-size: 22px;
}
.no-js #secondary .widget {
    visibility: visible;
}
#secondary .widget ul,
.error404 ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
#secondary .widget li {
    margin-bottom: 5px;
}
#secondary .widget li:last-child {
    margin-bottom: 0;
}
/* Make sure select elements fit in widgets. */

.widget select {
    max-width: 100%;
}
#secondary {
    float: right;
    width: 32%;
}

#secondary .widget {
    padding: 20px;
    margin: 0;
}

/* Social profiles widget */

#social {
    margin-top: 30px;
    display: table;
    width: 100%;
}
#social ul {
    display: table-row;
    margin: 0;
    padding: 0;
    list-style: none;
}
#social li {
    display: table-cell;
}
#social li:first-child a {
    margin-left: 0;
}
#social li:last-child a {
    margin-right: 0;
}
#social a.fb {
    background-color: #4c7dbb;
}
#social a.ggl {
    background-color: #db2e35;
}
#social a.twt {
    background-color: #00abf0;
}
#social a.instagram {
    background-color: #548bb6;
}
#social a.ytb {
    background-color: #98200e;
}
#social a.linkedin {
    background-color: #127ab4;
}
#social a {
    color: #fff;
    padding: 0 15px;
    text-decoration: none;
    display: block;
    text-align: center;
    font-size: 14px;
    height: 120px;
    opacity: .9;
    position: relative;
    -webkit-transition: all 250ms ease-in-out;
    -moz-transition: all 250ms ease-in-out;
    -ms-transition: all 250ms ease-in-out;
    -o-transition: all 250ms ease-in-out;
    transition: all 250ms ease-in-out;
    line-height: 120px;
    margin: 0 2%;
}
#social span {
    display: inline-block;
    vertical-align: middle;
    line-height: normal;
}
#social a:before {
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: absolute;
    font-size: 125px;
    color: #fff;
    opacity: 0.15;
    top: 2px;
    right: 0;
    margin: 0;
    z-index: 1;
}
#social a.fb:before {
    content: "\f09a";
}
#social a.ggl:before {
    content: "\f0d5";
}
#social a.twt:before {
    content: "\f099";
}
#social a.instagram:before{
    content: "\f16d";
}
#social a.ytb:before {
    content: "\f167";
    font-size: 115px;
}
#social a.linkedin:before {
    content: "\f0e1";
}
#social a:hover {
    opacity: 1;
}
.widget-area #social {
    margin-top: 0;
}
.widget-area #social li {
    display: block;
    width: 100%;
    float: none;
    height: 40px;
    margin-bottom: 10px;
    box-shadow: none;
    opacity: 0.95;
}
.widget-area #social a {
    line-height: 40px;
    height: 40px;
    font-size: 13px;
    padding: 0 0 0 15px;
    margin: 0;
    text-align: left;
    color: #fff !important;
}
.widget-area #social a:before,
.widget-area #social a.ytb:before {
    font-size: 18px;
    line-height: 40px;
    bottom: 0;
    top: auto;
    opacity: 1;
    right: 7px;
}
.widget-area #social li:hover {
    margin-top: 0;
    box-shadow: none;
    opacity: 1;
}

/* Homepage Slider Widget */

section.widget_widget_posts_slider {
    margin-top: 30px;
    height: 75vh;
    max-height: 560px;
}
#featured-posts {
    overflow: hidden;
    display: block;
    position: relative;
    height: 100%;
}
.featured-posts-single-slide {
    height: 100%;
}
#featured-posts .featured-post {
    float: left;
    position: relative;
    overflow: hidden;
}
#featured-posts .featured-post-inner {
    height: 100%;
    position: relative;
    line-height: 0;
    color: #FFF;
    background-position: center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}
.featured-cover {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    -webkit-transition: all .2s linear;
    -moz-transition: all .2s linear;
    -ms-transition: all .2s linear;
    -o-transition: all .2s linear;
    transition: all .2s linear;
    background: -moz-linear-gradient(top, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 89%, rgba(0,0,0,1) 97%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top, rgba(0,0,0,0) 0%,rgba(0,0,0,1) 89%,rgba(0,0,0,1) 97%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, rgba(0,0,0,0) 0%,rgba(0,0,0,1) 89%,rgba(0,0,0,1) 97%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#000000',GradientType=0 ); /* IE6-9 */
    opacity: 0.9;
}
.featured-cover a {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.featured-title a {
    color: #FFF !important;
    font-weight: normal;
    font-size: 30px;
    line-height: 1.2;
    text-align: center;
}
.featured-cover a span {
    display: none;
}
.featured-title {
    position: absolute;
    width: 100%;
    bottom: 0px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
    line-height: 20px;
    padding: 20px 20px 10px;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}
.featured-title .post-cat,
.featured-title .post-meta {
    color: #fff;
}
#featured-posts .featured-post-inner:hover .featured-cover {
    opacity: 1;
}

.featured-post-1 {
    height: 100%;
    width: 66.66666%;
    padding-right: 1px;
}
.featured-post-2 {
    padding-bottom: 1px;
}
.featured-post-2,
.featured-post-3 {
    height: 50%;
    width: 33.33333%;
}
#featured-posts .flex-control-nav {
    width: 100%;
    position: absolute;
    bottom: -40px;
    text-align: center;
}
#featured-posts ol,
#featured-posts ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
#featured-posts .flex-control-nav li {
    margin: 0 6px;
    display: inline-block;
    zoom: 1;
}
#featured-posts .flex-control-paging li a {
    width: 11px;
    height: 11px;
    display: block;
    background: #666;
    background: rgba(0, 0, 0, 0.5);
    cursor: pointer;
    text-indent: -9999px;
    -webkit-box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
    -o-box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
    box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
}
#featured-posts .flex-direction-nav a {
    text-decoration: none;
    display: block;
    width: 40px;
    height: 40px;
    margin: 0;
    position: absolute;
    top: 5px;
    z-index: 10;
    opacity: 0;
    overflow: hidden;
    cursor: pointer;
    background: #222;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
#featured-posts .flex-prev {
    left: 50px;
}
#featured-posts .flex-next {
    left: 5px;
    text-align: right;
}
#featured-posts .flex-direction-nav a:before {
    display: inline-block;
    font-family: FontAwesome;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: #fff;
    width: 40px;
    display: block;
    text-align: center;
    font-size: 30px;
    line-height: 40px;
}
#featured-posts a.flex-prev:before {
    content: "\f105";
}
#featured-posts a.flex-next:before {
    content: "\f104";
}
#featured-posts:hover .flex-next,
#featured-posts:hover .flex-prev {
    opacity: 0.8;
}
#featured-posts .flex-next:hover,
#featured-posts .flex-prev:hover {
    opacity: 1;
}
#featured-posts .flex-next:hover,
#featured-posts .flex-prev:hover {
    background-color: #303780;
}

/* Cats List Widget */

.cats-list section {
    float: left;
    width: 33.33%;
    padding-left: 20px;
}
.cats-list section:nth-child(3n+1) {
    padding-left: 0;
    clear: left;
}
.cats-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.feat-post {
    height: 250px;
    position: relative;
    line-height: 0;
    color: #FFF;
    background-position: center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}
.feat-cover {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    opacity: 0.9;
    -webkit-transition: all .2s linear;
    -moz-transition: all .2s linear;
    -ms-transition: all .2s linear;
    -o-transition: all .2s linear;
    transition: all .2s linear;
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#000000+0,000000+97&0+0,1+54 */
    background: -moz-linear-gradient(top, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 85%, rgba(0,0,0,1) 97%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top, rgba(0,0,0,0) 0%,rgba(0,0,0,1) 85%,rgba(0,0,0,1) 97%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, rgba(0,0,0,0) 0%,rgba(0,0,0,1) 85%,rgba(0,0,0,1) 97%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#000000',GradientType=0 ); /* IE6-9 */
}
.feat-info {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
}
.feat-info .feat-title,
.feat-info .post-meta {
    margin: 0;
}
.feat-title a {
    color: #fff !important;
    font-size: 26px;
    line-height: 38px;
}
.feat-info .post-meta { 
    padding-top: 10px; 
}
.list-post-title {
    position:  relative;   
    display: block;
    padding: 10px 0 10px 14px;
    color: #444;
    font-size: 14px;
    border-bottom: 1px solid #EEE;
    line-height: 1.6;
}
.list-post-title::before {
    background-color: #303780;
    border-radius: 50%;
    content: '';
    display: block;
    height: 4px;
    left: 0;
    position: absolute;
    top: 19px;
    width: 4px;
}
.cats-list li:last-child a {
    border-bottom: 0;
}

/* Posts List Homepage Widget*/

.posts-list .single-post {
    float: left;
    position: relative;
    padding-left: 20px;
    margin-bottom: 3%;
    width: 25%;
}
.posts-list .single-post:nth-child(4n+1) {
    padding-left: 0;
    clear: left;
}
.widget_posts_list {
    margin-top: 50px;
}
.post-inner a.link-box {
    display: block;
}
.post-inner a:hover .post-title {
     color: #303780;   
}
.widget_posts_list .widget-title,
.cats-list h2 a,
.recent-posts-title {
    font-size: 32px;
    color: #000;
}
.post-title {
    display: block;
    font-size: 18px;
    line-height: 26px;
    color: #000;
    margin: 0;
    margin-top: 10px;
    -webkit-transition: all 250ms ease-in-out;
    -moz-transition: all 250ms ease-in-out;
    -ms-transition: all 250ms ease-in-out;
    -o-transition: all 250ms ease-in-out;
    transition: all 250ms ease-in-out;
}

/* Sidebar Widgets */

.widget-area .widget a {
    color: #666;
}
.widget_archive li a,
.widget_categories li a,
.widget_meta li a {
    font-size: 15px;
    text-decoration: none;
    display: inline-block;
    vertical-align: top;
    position: relative;
    padding-left: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f7f5f5;
    width: 100%;
}
.widget_archive li a:before,
.widget_categories li a:before,
.widget_meta li a:before {
    content: "\f105";
    font-family: "FontAwesome";
    position: absolute;
    left: 0;
    top: 50%;
    line-height: 1;
    margin-top: -13px;
    -webkit-transition: all 250ms ease-in-out;
    -moz-transition: all 250ms ease-in-out;
    -ms-transition: all 250ms ease-in-out;
    -o-transition: all 250ms ease-in-out;
    transition: all 250ms ease-in-out;
}
.widget_archive ul li:last-child a,
.widget_categories ul li:last-child a,
.widget_meta ul li:last-child a {
    border: none;
}
.widget_archive li:hover a,
.widget_categories li:hover a,
.widget_meta li:hover a {
    color: #303780;
    padding-left: 22px;
}
.widget_archive li:hover a:before,
.widget_categories li:hover a:before,
.widget_meta li:hover a:before {
    color: #303780;
    left: 7px;
}
/* Search Sidebar Widget */
.widget_search .search-form {
    position: relative;
}
.widget_search input[type="search"] {
    position: relative;
    width: 100%;
    display: block;
    padding: 15px 20px;
    border: 1px solid #ddd;
    background: #fdfdfd;
    font-size: 0.95em;
    color: #888;
    -webkit-appearance: none;
    border-radius: 0;
}
.widget_search .search-form::before {
    position: absolute;
    top: 50%;
    right: 6px;
    color: #dddddd;
    z-index: 1;
    margin-top: -8px;
    content: "\f002";
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: 18px;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
}
.widget_search .search-submit {
    display: none;
}

/*  Posts list Sidebar widget */

#entries-list .single-entry {
    margin-bottom: 30px;
}
#entries-list .single-entry:last-child {
    margin-bottom: 0;
}
#entries-list .post-info {
    float: left;
    width: 70%;
    padding-left: 10px;

}
#entries-list a {
    display: block;
}
#entries-list .post-cat,
#entries-list span {
    font-size: 12px;
    margin: 0;
    padding: 0;
}

#entries-list .post-image {
    float: left;
    height: 60px;
    width: 30%;
}

#entries-list .post-title {
    color: #666;
    font-size: 12px;
    line-height: 18px;
    margin: 0;
}
#entries-list span {
    display: block;
    color: #999;
}
#entries-list .post-title,
#entries-list img {
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    transition: all 1s ease;
}
#entries-list a:hover img {
    opacity: .75;
}
#entries-list a:hover .post-title {
    color: #303780;
}

/* Comments Sidebar Widget */

.comments_list li {
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid #f7f5f5;
}
.comments_list li:last-child {
    border: none;
    margin-bottom: 0;
}
.comments_list a {
    display: block;
    min-height: 55px;
    position: relative;
}
.comments_list .post-icon {
    display: block;
    width: 54px;
    height: 54px;
    padding: 3px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 99px;
    position: absolute;
    top: 0;
    left: 0;
}
.comments_list .post-icon img {
    display: block;
    border-radius: 99px;
}
.comments_list .inner {
    padding-left: 65px;
}
.comments_list .title {
    margin-bottom: 10px;
    font-style: italic;
}
.comments_list .excerpt {
    margin-top: 3px;
    color: #666;
    font-size: 14px;
}
.comments_list a:hover .title {
    text-decoration: underline;
}

/* Ads Widgets */

.widget_block_728x90 {
    margin: 40px auto 0;
    text-align: center;
    width: 100%;
    max-width: 100%;
}
.block-728x90 {
    text-align: center;
    margin: 0;
    line-height: 0;
}
.block-728x90-title {
    display: none;
}
.block_728x90-content {
    text-align: center;
}


/*--------------------------------------------------------------
11 Content
--------------------------------------------------------------*/
/*--------------------------------------------------------------
11.1 Homepage
--------------------------------------------------------------*/

/*--------------------------------------------------------------
11.2 Posts and pages
--------------------------------------------------------------*/

.post-image {
    position: relative;
    height: 150px;
    line-height: 0;
    background-color: #f5f5f5;
    background-position: center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}
.home-blog .post-image {
    height: 200px;
}
.home  .format-video .post-image:before,
.home  .format-audio .post-image:before,
.archive   .format-video .post-image:before,
.archive   .format-audio .post-image:before  {
    background: #000;
    opacity: 0.3;
    pointer-events: none;
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    vertical-align: top;
}
.thumb-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -14px;
    margin-left: -24px;
}
.thumb-icon .fa  {
    font-size: 14px;
    border: 2px solid #fff;
    padding: 3px 15px;
    line-height: 18px;
    color: #fff;
}
.post-cat {
    color: #303780;
    font-size: 12px;
    margin: 0;
    margin-top: 10px;
    text-transform: uppercase;
    line-height: 12px;
}
.post-meta {
    margin: 5px 0 0;
    color: #aaa;
    font-size: 13px;
    text-transform: uppercase;
}
.single-post .post-inner .post-meta span:nth-child(2):before,
.feat-info .post-meta span:nth-child(2):before,
.featured-title .post-meta span:nth-child(2):before {
    content: "";
    width: 1px;
    height: 10px;
    background: #DEDEDE;
    margin: 0 7px 0 4px;
    display: inline-block;
}
.post-excerpt {
    margin: 5px 0 0;
    font-size: 13px;
    color: #888;
    line-height: 25px;
}
.home-blog .post-excerpt {
    font-size: 14px;
    color: #888;
    line-height: 28px;
}
.post-content-wrapper {
    padding-bottom: 30px;
    margin-bottom: 35px;
    border-bottom: 1px solid #ebebeb;
}
.archive .site-main,
.search .page-header {
    padding-top: 30px;
}
.archive .page-header,
.search .page-title {
    margin: 0;
    padding: 20px;
    margin-bottom: 20px;
    background: #fafafa;
    border: 1px solid #eee;
}
.error-404 {
    text-align: center;
}
.error-404 .page-header:before {
    content: "404";
    font-size: 10rem;
    text-align: center;
    width: 100%;
    display: block;
    color: #e4e4e4;
}
.wow {
    visibility: hidden;
}
.no-js .wow {
    visibility: visible !important;
}
.sticky {
    display: block;
}
.byline,
.updated:not(.published) {
    display: none;
}
.single .byline,
.group-blog .byline {
    display: inline;
}
.page-content,
.entry-content,
.entry-summary {
    font-size: 16px;
    line-height: 40px;
}
.entry-content blockquote,
.entry-content q {
    background-color: #fafafa;
    padding: 30px 35px 20px;
    margin: 40px 0px 30px;
    position: relative;
    text-align: center;
    font-weight: bold;
    clear: both;
    border: 1px solid #eee;
}
.entry-content blockquote:before,
.entry-content q:before {
    content: '\f10e';
    position: absolute;
    top: 0;
    left: 50%;
    margin-top: -40px;
    margin-left: -40px;
    font-size: 30px;
    font-family: FontAwesome;
    color: #575858;
    display: block;
    width: 80px;
    height: 80px;
    background: #fff;
    line-height: 82px;
    border-radius: 50%;
    text-align: center;
    border: 1px solid #eee;
}
.page-links {
    clear: both;
    margin: 0 0 1.5em;
}
.site-content {
    max-width: 1280px;
    width: 100%;
    margin-top: 40px;
    margin-bottom: 0;
    margin-right: auto;
    margin-left: auto;
    background: #fff;
    padding: 0 30px;
}
.page .content-area,
.single .content-area {
    width: 100%;
    float: left;
    margin-top: 30px;
}
.single .site-main,
.page .hentry {
    max-width: 1000px;
    margin: 0 auto;
}
.article-content-wrapper,
#primary.home-blog {
    max-width: 1000px;
    position: relative;
    z-index: 0;
    margin: 0 auto;
}
.article-content-wrapper:after,
#primary.home-blog:after {
    content: "";
    display: block;
    width: 32%;
    background: #fafafa;
    border: 1px solid #eee;
    position: absolute;
    z-index: -1;
    top: 0;
    right: 0;
    bottom: 0;
}
#primary.home-blog {
    margin-top: 70px;
}
.article-content,
.home-blog .site-main {
    max-width: 610px;
    width: 100%;
    float: left;
}
.page .entry-header {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.4;
    color: #000;
}
.page .hentry {
    margin-bottom: 50px;
}
.error404 .content-area,
.search-no-results .content-area {
    margin-top: 25px;
    padding: 20px;
    background: #fff;
    box-shadow: rgba(0, 0, 0, 0.05) 0 1px 1px 0;
}
.error404 .search-form {
    width: 450px;
    text-align: center;
    margin: 0 auto;
}
.error404 .search-submit {
    margin-top: 10px;
}
.single .entry-title {
    margin: 0;
    font-size: 3.5rem;
    font-weight: 600;
    line-height: 1.4;
    color: #000;
}
.entry-title a {
    font-size: 2rem;
    font-weight: 600;
    line-height: 1.5;
    color: #000;
}
.entry-title a:hover {
    color: #303780;
}
.single .post-cat {
    color: #aaa;
    font-size: 14px;
    padding: 20px;
    margin: 0;
}
.single .post-meta {
    margin-top: 30px;
    margin-bottom: 20px;
}
.post-author-image {
    width: 32px;
    height: 32px;
    background-color: #f7f7f7;
    border-radius: 50%;
    margin-top: -9px;
    margin-right: 7px;
    float: left;
}
.post-author-image img {
    border-radius: 50%;
}
.post-author-image,
.post-author-name,
.post-cats {
    display: inline-block;
}
.post-tags {
    margin-bottom: 35px;
}
.post-tags,
.tagcloud {
    line-height: 1;
}
.post-tags a,
.tagcloud a {
    display: block;
    float:  left;   
    padding: 5px 6px 6px;
    margin: 2px;
    font-size: 0.75rem !important;
    line-height: 1;
    color: #888;
    position: relative;
    border: 1px solid #ccc;
}
.tagcloud a {
    background: #eee;
}
.post-tags a:hover,
.tagcloud a:hover {
    background-color: #333;
    color: #fff !important;
    border-color: #333;
}

/* Post Sharing Buttons */

.entry-sharing {
    width: 100%;
    max-width: 610px;
    border-top: 1px solid #ebebeb;
    padding-top: 25px;
    margin-bottom: 30px;
    width: 100%;
}
.entry-sharing a {
    display: inline-block;
    vertical-align: middle;
    font-size: 15px;
    color: #fff;
    padding: 0 13px;
    margin-right: 10px;
    height: 35px;
    min-width: 40px;
    line-height: 35px;
    text-align: center;
    float: left;
}
.entry-sharing .social-facebook {
    background-color: #516eab;
}
.entry-sharing .social-twitter {
    background-color: #29c5f6;
}
.entry-sharing .social-google {
    background-color: #eb4026;
    width: 40px;
}
.entry-sharing .social-whatsapp {
    display: none !important;
    background-color: #7bbf6a;
    margin-right: 0;
}
.social-but-text {
    display: inline-block;
    position: relative;
    top: -1px;
    line-height: 16px;
    padding-left: 10px;
    margin-left: 12px;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}
.entry-sharing .fa-facebook,
.entry-sharing .fa-twitter {
    float: left;
    line-height: 35px;
}
.entry-sharing  a:hover {
    opacity: 0.8;
    color: #fff !important;
}

/* Single Post Breadcrumbs */

#roaa-breadcrumbs {
    margin-bottom: 40px;
    border-bottom: 1px solid #ebebeb;
    padding-bottom: 30px;
}
#roaa-breadcrumbs span {
    font-size: 12px;
    line-height: 18px;
    color: #444;
    padding-right: 10px;
    text-transform: uppercase;
}
#roaa-breadcrumbs a {
    color: #444;
}
#roaa-breadcrumbs a:hover {
    color: #303780;
}
#roaa-breadcrumbs span.current {
    color: #777;
}


/* Random Posts */


.random-posts {
    margin-bottom: 40px;
    border-bottom: 1px solid #ebebeb;
    padding-bottom: 20px;
}
.random-posts a {
    color: #464646;
}
.random-post-inner {
    width: 25%;
    float: left;
}
.random-post-cover {
    background-position: center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    background-color: #efefef;
    height: 55px;
    width: 25%;
    float: left;
}
.random-post-title {
    font-size: 12px;
    line-height: 18px;
    margin: 0;
    width: 75%;
    padding: 0 10px;
    float: right;
}


/* Single post navigation */

.post-nav {
    padding: 25px 0;
    border-top: 1px solid #ebebeb;
}
.post-nav-older,
.post-nav-newer {
    width: 50%;
    float: left;
    text-align: center;
}
.post-nav-older {
    border-right: 1px solid #f5f7f7;
    padding-right: 10px;
}
.post-nav-newer {
    padding-right: 10px;
}
.post-nav span {
    font-size: 13px;
    display: block;
    margin-bottom: 10px;
}
.post-nav .fa {
    font-size: 15px;
    margin: 0 7px;
}
.post-nav h5 {
    font-size: 15px;
    color: #444;
    margin: 0;
    -webkit-transition: all 250ms ease-in-out;
    -moz-transition: all 250ms ease-in-out;
    -ms-transition: all 250ms ease-in-out;
    -o-transition: all 250ms ease-in-out;
    transition: all 250ms ease-in-out;
}
.post-nav a:hover h5 {
    color: #303780;
}

/* Related Posts */
.related-posts .related-posts-title, .site-title {
    font-family:"sky-bold", sans-serif;
}
.related-posts {
    margin-bottom: 20px;
    border-top: 1px solid #ebebeb;
}
.related-posts-title {
    font-size: 22px;
    color: #464646;
}
.related-post-inner {
    width: 50%;
    float: left;
    margin-bottom: 25px;
}
.related-post-inner:nth-child(2n) {
    clear:  left;   
}
.related-post-cover {
    background-position: center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    background-color: #fafafa;
    height: 85px;
    width: 40%;
    float: left;
}
.related-post-title {
    font-size: 14px;
    line-height: 22px;
    margin: 0;
    width: 60%;
    padding: 0 10px 0 15px;
    float: right;
}
.related-post-inner a {
    color: rgb(102, 102, 102);
}

/* Author box */


.author-info {
    padding: 25px 20px;
    margin-bottom: 30px;
    background: #fafafa;
    border: 1px solid #eee;
}
.author-info .author-avatar {
    float: left;
    width: 15%;
    margin-right: 3%;
}
.author-info .author-bio  {
    position: relative;
    width: 100%;
}

.author-info img {
    border-radius: 50px;
    float: left;
    overflow: hidden;
    width: 100px;
}

.author-info .author-name {
    font-size: 18px;
    margin: 0;
}

.author-name a { color: #444; }

.author-info .author-description { 
    float: left;
    width: 82%;
    padding-top: 10px;
}

.author-desc {
    color: #999;
    font-size: 14px;
    margin: 10px 0;
}

/*--------------------------------------------------------------
11.3 Comments
--------------------------------------------------------------*/

#comments-header {
    margin: 30px 0 50px;
    padding-top: 20px;
    border-top: 1px solid #ebebeb;
}
.bypostauthor {
    display: block;
}
.comment-list {
    list-style: none;
    margin: 0;
    padding: 0;
    margin-bottom: 20px;
}
.comment-list .children {
    list-style: none;
    margin: 0;
}
.comments-title {
    float: left;
    text-align: left;
    color: #464646;
    font-size: 22px;
    clear: none;
    margin: 0;
}
.comments-title .fa {
    margin-left: 5px;
}
.comments-subtitle {
    float: right;
    font-size: 20px;
    clear: none;
    margin: 0;
}
.comment-meta {
    display: block;
    color: #999;
    font-size: 12px;
    margin-left: 75px;
}
.comment-author {
    display: inline-block;
    position: relative;
    padding-left: 75px;
    padding-top: 5px;
}
cite.fn {
    font-style: normal;
}
.comment-content-wrap {
    margin-top: 20px;
    padding: 20px;
    border: 1px solid #eee;
    border-radius: 3px;
}
.comment-body .comment-content {
    display: inline-block;
    font-size: 15px;
    line-height: 35px;
    width: 100%;
}
.comment-body .comment-content > p:first-of-type,
.pingback p,
.trackback p {
    clear: none;
    display: inline;
    margin-bottom: 1.5em;
}
.comment-author,
.comment-author a {
    color: #464646;
    font-size: 18px;
}
.comment-author .avatar {
    margin-left: -75px;
    position: absolute;
    top: 0;
    width: 60px;
    height: 60px;
    border-radius: 50%;
}
a.comment-reply-link {
    display: block;
    color: #999;
    font-size: 14px;
    text-decoration: none;
}
a.comment-reply-link:after {
    display: inline-block;
    font: normal normal normal 12px/1 FontAwesome;
    text-rendering: auto;
    margin: 3px 7px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transform: translate(0, 0);
    content: "\f112";
}
a.comment-reply-link:hover {
    color: #303780;
}
#cancel-comment-reply-link {
    display: block;
    padding-top: 10px;
    float: left;
    text-decoration: none;
    color: #999;
}
.comment-body {
    margin: 0 0 2em;
}
.no-comments {
    text-align: center;
}
.comment-content a {
    word-wrap: break-word;
}
#respond {
    margin-top: 30px;
}
#reply-title {
    font-size: 22px;
    margin: 0 0 20px;
    color: #464646;
}
.comment-awaiting-moderation {
    color: red;
    font-size: 14px;
    float: left;
    text-decoration: underline;
}
a.comment-edit-link {
    color: #999;
    width: 100%;
    font-size: 14px;
}
a.comment-edit-link:before {
    content: "/";
    margin: 0 7px;
}
#commentform p {
    margin-bottom: 1.5em;
}
.comment-form-author {
    width: 100%;
    float: none;
    margin-left: 0;
}
.comment-form-email {
    width: 100%;
    float: none;
    margin-right: 0;
}
.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
    width: 100%;
    display: block;
    padding: 20px;
    border: 1px solid #ddd;
    background: #fdfdfd;
    font-size: 0.95em;
    color: #666;
    -webkit-appearance: none;
    border-radius: 0;
}
.comment-form .form-submit {
    text-align: center;
}
.comment-form input[type="submit"] {
    width: 300px;
    padding: 2.5%;
}
.comment-form-author {
    width: 48%;
    float: right;
    margin-left: 2%;
}
.comment-form-email {
    width: 48%;
    float: left;
    margin-right: 2%;
}


/*--------------------------------------------------------------
12 Footer
--------------------------------------------------------------*/

.site-footer {
    background: #131313;
}

.footer-widgets {
    padding: 100px 0;
}

/* Footer Social Profile */

.social-icons {
    text-align: center;
}
.social-icons ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.social-icons li {
    display: inline-block;
    margin: 0 5px;
}
.social-icons a {
    display: inline-block;
    height: 45px;
    width: 45px;
    line-height: 45px;
    color: #fff !important;
    text-align: center;
    border-radius: 50%;
    margin: 0 5px;
    background-color: #333;
    font-size: 16px;
}
.social-facebook:hover a {
    background-color: #5d82d1;
}
.social-twitter:hover a {
    background-color: #40bff5;
}
.social-google:hover a {
    background-color: #eb5e4c;
}
.social-instagram:hover a {
    background-color: #548bb6;
}
.social-youtube:hover a {
    background-color: #ef4e41;
}
.social-linkedin:hover a {
    background-color: #0077b5;
}
.site-info {
    position:   relative;   
    padding: 40px 0;
    background: #000;
    color: #aaa;
    text-align: center;
}

/* Footer Menu */

#footer-navigation {
    margin: 20px auto 0;
    width: 100%;
    text-align: center;
}
#footer-menu {
    margin: 0;
    padding: 0;
    list-style: none;
    text-align: center;
}
#footer-menu li {
    display: inline-block;
    line-height: initial;
    margin: 0 5px;
    float: none;
}
#footer-menu a,
#footer-menu a:visited {
    color: #999;
    font-size: 14px;
}
#footer-menu a:hover {
    color: #303780;
}
#footer-menu ul ul {
    display: none;
}
#smoothup {
    display: none;
    overflow: hidden;
    z-index: 999;
    padding: 0px;
    text-align: center;
    height: 43px;
    width: 43px;
    padding-top: 4px;
    font-size: 30px;    
    position: fixed;
    bottom: 14px;
    right: 14px;
    color: #303780;
    border: 2px solid transparent;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    border-radius: 50%;
}
#smoothup:hover {
    border-color: #e86741;
    -moz-transition: all .5s ease;
    -o-transition: all .5s ease;
    -ms-transition: all .5s ease;
    transition: all .5s ease;
}
#smoothup svg {
    display: inline-block;
    fill: currentColor;
    width: 1em;
    height: 1em;
    overflow: hidden;
}

#designed-by {
    position: absolute;
    color: #666;
    font-size: 14px;
    right: 60px;
    right:  4%;
    bottom: 5px;
    opacity: .4;
}
#designed-by:hover {
    opacity: 1;
}
#designed-by a {
    margin-top: 6px;
    padding: 0 6px;
    line-height: 0;
    float: right;
}
#designed-by img {
    width: 19px;
    height: 22px;
}
/*--------------------------------------------------------------
13. 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;
}

/*--------------------------------------------------------------
14. Media
--------------------------------------------------------------*/

.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
    border: none;
    margin-bottom: 0;
    margin-top: 0;
    padding: 0;
}
/* Make sure embeds and iframes fit their containers. */

embed,
iframe,
object {
    max-width: 100%;
}

/*--------------------------------------------------------------
14.1 Captions
--------------------------------------------------------------*/

.wp-caption {
    margin-bottom: 1.5em;
    max-width: 100%;
    background: #fafafa;
    padding: 10px 10px 5px;
    border: 1px solid #eee;
}
.wp-caption img[class*="wp-image-"] {
    display: block;
    margin-left: auto;
    margin-right: auto;
    border: 1px solid #d5dede;
}
.wp-caption .wp-caption-text {
    margin: 0.8075em 0;
}
.wp-caption-text {
    text-align: center;
}
/*--------------------------------------------------------------
14.2 Galleries
--------------------------------------------------------------*/

.gallery {
    margin-bottom: 1.5em;
}
.gallery-item {
    display: inline-block;
    text-align: center;
    vertical-align: top;
    width: 100%;
}
.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;
}

/*--------------------------------------------------------------
15 Responsive Styling
--------------------------------------------------------------*/

@media screen and (max-width: 1350px) { 
    .site-content {
        max-width: 94%;
        margin-top: 3%;
        margin-bottom: 3%;
        width: 100%;
    }
    #smoothup {
        right: 1%;
        bottom: 1%;
    }
    .widget_block_728x90{
        max-width: 94%;
        margin-top: 3%;
    }
}

@media screen and (max-width: 1239px) {
    .site-content {
        width: 100%;
    }
    #primary.home-blog {
        margin-top: 40px;
    }
    #social {
        margin-top: 20px;
    }
    #social a {
        padding: 0 10px;
        font-size: 13px;
    }
    #social li {
        height: 95px;
    }
    #social a:before,
    #social li.ytb a:before {
        font-size: 100px;
    }

}

@media screen and (max-width: 1080px) {
    .article-content, 
    .home-blog .site-main {
        max-width: 65%;
    }
    .cats-list section {
        width: 50%;
    }
    .cats-list section:nth-child(2n+1) {
        padding-left: 0;
        clear: left;
    }
    .cats-list section:nth-child(4n) {
        clear: none;
        padding-left: 20px;
    }
    .featured-title h2 {
        margin: 10px 0;
    }
    .featured-title .post-meta,
    .featured-title .post-cat {
        margin: 5px 0;
    }
    .featured-title a {
        font-size: 26px;
    }
    .posts-list .single-post {
        width: 50%;
    }
    .posts-list .single-post:nth-child(2n+1) {
        margin-left: 0;
        padding-left: 0;
        clear: left;
    }
    #main-nav .menu-links.inside-menu {
        width: 25%;
    }
    .sub-menu-wrapper .five-menu {
        width: 75%;
    }
    .sub-menu-wrapper .five-menu li {
        width: 33%;
    }
    .sub-menu-wrapper .five-menu li:nth-child(5),
    .sub-menu-wrapper .five-menu li:nth-child(4) {
        display: none;
    }
    .sub-menu-wrapper .six-menu li {
        width: 25%;
    }
    .sub-menu-wrapper .six-menu li:nth-child(5),
    .sub-menu-wrapper .six-menu li:nth-child(6) { display: none; }
 
}

@media screen and (max-width: 900px) {
    .article-content-wrapper:after, 
    #primary.home-blog:after {
        display: none;
    }
    .article-content, 
    .home-blog .site-main,
    #secondary {
        max-width: 100%;
        width: 100%;
    }
    #secondary {
        background: #fafafa;
        margin-bottom: 30px;
        padding: 10px;
    }
    .widget_block_300x250 {
        text-align: center;
        margin: 0  auto;
    }
    #entries-list .post-image {
        width: 15%;
    }
    .random-post-inner:nth-child(4) {
        display: none;
    }
    .random-post-inner {
        width: 33.33%;
    }
    .mobile-navigation {
        display: block;
    }
    .featured-title {
        padding: 10px;
    }

    .menu-toggle {
        display: block;
    }
    .toggle-search .search-button {
        color: #303780;
    }
    .sub-menu { display: none !important; }

    .site-branding {
        float: none;
        text-align: center;
        margin-right: 50px;
        margin-left: 50px;
    }
    .main-navigation {
        display: none;
    }
    .toggle-search .search-button {
        font-size: 16px;
    }
    .related-post-inner .post-title {
        padding: 5px;
    }
    .related-post-inner .post-title a {
        line-height: 18px;
    }
}
@media screen and (max-width: 768px) {
    .single .entry-title {
        font-size: 2.5rem;
    }
    .cats-list section {
        width: 100%;
        padding: 0 !important;
    }
    .posts-list .single-post {
        width: 100%;
        margin: 0 0 4% 0 !important;
        padding-left: 0;
    }
    .entry-sharing .social-whatsapp {
        display: inline-block !important;
    }
    .random-post-inner:nth-child(3) {
        display: none;
    }
    .random-post-inner {
        width: 50%;
    }
    section.widget_widget_posts_slider {
        height: 100vh;
        max-height: 100vh;
    }
    .featured-post-1,
    .featured-post-2, 
    .featured-post-3 {
        height: 30vh;
        padding: 0 0 20px;
        width: 100%;
    }
    
    .single .post-cat,
    .entry-title {
        margin: 10px;
    }

    .single .entry-thumbnail {
        text-align: center;
    }
    .page-content,
    .entry-content,
    .entry-summary {
        font-size: 15px;
        line-height: 35px;
    }
    .entry-content blockquote,
    .entry-content q {
        margin: 0;
        padding: 15px;
    }
    .entry-content blockquote:before, .entry-content q:before {
        width: 50px;
        height: 50px;
        line-height: 50px;
        margin-top: -25px;
        margin-left: -25px;
        font-size: 22px;
    }
    #social a {
        height: 90px;
        line-height: 90px;
        font-size: 12px;
        overflow: hidden;
        padding: 0;
    }
    #social a:before,
    #social a.ytb:before {
        font-size: 75px;
        bottom: -4px;
        top: auto;
    }

    .social-icons {
        float: none;
        width: 100%;
        border: none;
    }
    .social-icons ul {
        text-align: center;
    }

    #copyright {
        float: none;
        text-align: center;
    }
    #footer-navigation {
        float: none;
        margin-top: 20px;
        text-align: center;
    }
    #footer-menu {
        float: none;
        display: inline-block;
    }
    #footer-menu li {
        float: none;
        display: inline-block;
    }
    #footer-menu li:last-child:after {
        content: ''
    }
    .post-nav {
        padding: 15px;
    }
    .post-nav-older,
    .post-nav-newer {
        width: 100%;
        float: none;
    }

}

@media screen and (max-width: 650px) {
    .social-but-text {
        display: none;
    }
    .related-post-inner {
        width: 100%;
        margin-bottom: 20px;
    }
    .related-post-cover {
        width: 30%;
    }
    .related-post-title {
        width: 70%;
    }

}
@media screen and (max-width: 568px) {
    .entry-title {
        margin: 0;
    }
    .entry-title a {
        display: block;
        font-size: 1.3rem;
        padding: 12px 0;
    }
    #entries-list .post-image {
        width: 30%;
    }
    .social-icons a {
        height: 35px;
        width: 35px;
        line-height: 35px;
        margin: 0;
    }
    .author-info .author-avatar {
        float: none;
        width: 100%;
        text-align: center;
        margin: 0;
    }
    .author-info img {
        float: none;
    }
    .author-info .author-description {
        width: 100%;
        float: none;
        text-align: center;
    }
    .random-post-inner:nth-child(2) {
        display: none;
    }
    .random-post-inner {
        width: 100%;
    }
    .post-nav-older,
    .post-nav-newer {
        width: 100%;
        padding-left: 0;
        border-left: none;
    }

    #social li {
        display: block;
        height: 40px;
        margin-bottom: 15px;
        padding: 0;
        margin: 0 0 7px 0;
    }
    #social a {
        line-height: 40px;
        height: 40px;
        font-size: 13px;
        padding: 0 0 0 15px;
        margin: 0;
        text-align: left;
    }
    #social a:before,
    #social a.ytb:before {
        font-size: 25px;
        line-height: 40px;
        top: 0;
        bottom: 0;
        right: 7px;
        opacity: 1;
    }
    
}
@media screen and (max-width: 450px) {
    .site-content {
        max-width: 100%;
        margin-top: 0;
        margin-bottom: 0;
        padding: 0;
    }
    .home-container {
        padding: 15px;
    }
    .featured-post-3 {
        padding: 0;
    }
    section.widget_widget_posts_slider {
        margin-top: 5px;
        margin-bottom: 0;
    }
    .widget_posts_list {
        margin-top: 0;
    }
    .posts-list .single-post {
        margin: 0 0 25px 0 !important;
    }
    .featured-title a {
        font-size: 18px;
        line-height: 24px;
    }
    .site-main {
        padding: 0 15px;
    }
    .single .site-main {
        padding: 0;
    }
    .page .content-area, .single .content-area {
        margin: 0;
    }
    #secondary {
        padding: 0;
        margin: 0;
    }
    #secondary .widget {
        padding: 20px 15px;
    }
    #roaa-breadcrumbs {
        margin: 15px;
        padding-bottom: 15px;
    }
    .single .entry-header {
        padding: 15px;
    }
    .single .entry-title {
        font-size: 1.4rem;
    }
    .single .post-meta {
        margin: 15px 0 0;
    }
    .entry-sharing {
        margin: 15px;
        width: auto;
    }
    .random-posts {
        margin: 15px;
    }
    .author-info {
        padding: 15px;
        margin: 15px;
    }
    #comments-header {
        margin: 20px 15px; 
    }
    .related-posts,
    .comment-list,
    #respond {
        margin: 15px;
    }
    .post-nav {
        padding: 0;
        margin: 15px;
    }
    .widget_block_728x90 {
        margin-bottom: 3%;
    }
    .featured-title .post-cat { 
        display: none;
    }
    .social-icons li a {
        margin-bottom: 5px;
    }
    
    #smoothup {
        bottom: 15px;
        right: 0;
        height: 35px;
        width: 35px;
        font-size: 24px;
    }
    #entries-list .single-entry {
        height: auto;
        width: 100%;
        padding-right: 0;
    }
    .single .entry-content {
        margin: 0 10px;
    }

}
