/*------------------------------------------------------------------
[Main Stylesheet]

    Project:    TheFlow
    Version:    1.0
    Author:     Elite Layers
    URL:        http://elitelayers.net/html/theflow/
-------------------------------------------------------------------*/

/*------------------------------------------------------------------
[Table of contents]
    # - Fonts
    # - Reset CSS
    # - General Styling
    # - Forms
    # - Cross Browser Compatibility
    # - Layout
    # - Topbar
    # - Menu
    # - Dropdown
    # - Search Form
    # - Sidemenu
    # - Header
    # - Featured Slider
    # - Post Metas
    # - Social Icons
    # - Blog
    # - Blog List Layout
    # - Blog Grid Layout
    # - Single Post
        ## - Post Tags
        ## - Author Box
        ## - Related Post
        ## - Comments
    # - Pagination
    # - Sidebar
        ## - Text Widget
        ## - About Author Widget
        ## - Banner Ads Widget
        ## - Popular Posts Widget
        ## - Instagram Feed Widget
        ## - Mailchimp Widget
    # - Pages
    # - Archive Title
    # - Footer Newsletter
    # - Footer Widgets
    # - Footer
[/Table of contents]
-------------------------------------------------------------------*/

/*--------------------------------------------------------------
# Fonts
--------------------------------------------------------------*/
@import url('https://fonts.googleapis.com/css?family=Libre+Baskerville:400,400i,700|Lora:400,400i,700,700i|Montserrat:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i');

/*--------------------------------------------------------------
# Css Reset
# http://meyerweb.com/eric/tools/css/reset/
--------------------------------------------------------------*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/*--------------------------------------------------------------
# General Styling
--------------------------------------------------------------*/
* {
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}
*:before,
*:after {
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}
body,
html{
    overflow-x:hidden;
}
body *{
    outline:none!important;
}

body{
    font-family: 'Lora', serif;
    font-weight: 400;
    color:#222222;
}
a {
    color:#222222;
    text-decoration: none;
}
a:hover,
a:focus {
    color:#ce1717;
}
h1,h2,h3,h4,h5,h6 {
    font-family: cursive;
    line-height: 1.4;
    margin-bottom:15px;
    font-weight: 300;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    -moz-osx-font-smoothing: grayscale;
}
h1 {font-size: 30px;}
h2 {font-size: 24px;}
h3 {font-size: 22px;}
h4 {font-size: 18px;}
h5 {font-size: 16px;}
h6 {font-size: 14px;}
p{
    font-family: 'Lora', serif;
    font-size: 16px;
    line-height: 24px;
    margin-bottom:15px;
    color:#000000;
}
img{
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}
iframe{
    width: 100%;
    height: auto;
}

/*--------------------------------------------------------------
# FORMS
--------------------------------------------------------------*/
form {
    float: left;
    width: 100%;
}
input,
textarea {
    font-family: 'Libre Baskerville', serif;
    width:100%;
    border:1px solid #ebebeb;
    color:#ababab;
    font-size:11px;
    font-style: normal;
    height:40px;
    letter-spacing:0.3px;
    padding:10px 40px 10px 20px;
    border-radius: 0;
    -webkit-appearance: none;
}
textarea {
    float:left;
    padding: 20px;
    height: 120px;
}
button,
input[type=button],
input[type=submit],
input[type=reset] {
    font-family: 'Montserrat', sans-serif;
    background-color:#171717;
    border:0 none;
    color:#fff;
    font-size:11px;
    line-height: 1;
    font-weight:400;
    letter-spacing:1px;
    margin: auto;
    padding:15px 50px;
    display: inline-block;
    text-transform:uppercase;
    width:auto;
    border-radius: 0;
    -webkit-appearance: none;
}
button:hover,
input[type=button]:hover,
input[type=submit]:hover,
input[type=reset]:hover {
    background-color:#ce1717;
}
/*--------------------------------------------------------------
# Cross Browser Compatibility
--------------------------------------------------------------*/
a,
button,
input[type=button],
input[type=submit],
input[type=reset],
.sidemenu,
.featured-carousel .owl-nav{
    -webkit-transition:all 0.35s linear;
    -moz-transition:all 0.35s linear;
    -ms-transition:all 0.35s linear;
    -o-transition:all 0.35s linear;
    transition:all 0.35s linear;
}
.avatar img,
.author-img img,
.share{
    -webkit-border-radius:50%;
    -moz-border-radius:50%;
    -ms-border-radius:50%;
    -o-border-radius:50%;
    border-radius:50%;
}

/*--------------------------------------------------------------
# Layout
--------------------------------------------------------------*/
.wrapper {
    float:left;
    overflow:hidden;
    position:relative;
    width:100%;
}
.wrapper:before{
    position:absolute;
    background:#ffffff none repeat scroll 0 0;
    content:"";
    left:0;
    top:0;
    width:100%;
    height:100%;
    opacity:0;
    visibility:hidden;
    z-index: 9999;
}
.wrapper.stop:before{
    opacity:0.8;
    visibility:visible;
}
.section {
    width: 100%;
    float:left;
    position:relative;
}
.container {
    position:relative;
    padding-right: 20px;
    padding-left: 20px;
    margin-right: auto;
    margin-left: auto;
}
.container-fluid {
    position:relative;
    padding-right: 20px;
    padding-left: 20px;
    margin-right: auto;
    margin-left: auto;
}
.row {
    margin-right: -15px;
    margin-left: -15px;
}
.col3,
.col4,
.col6,
.col8,
.col12 {
    position: relative;
    min-height: 1px;
    float: left;
}
.container:before,
.container:after,
.container-fluid:before,
.container-fluid:after,
.row:before,
.row:after {
    content: " ";
    display: table;
}
.container:after,
.container-fluid:after,
.row:after {
    clear: both;
}
.textcenter {
    text-align: center;
}
.textright {
    text-align: right;
}
.textleft {
    text-align: left;
}
.floatleft {
    float: left;
}
.floatright {
    float: right;
}
.track3{
    margin-right:2px;
    right:0;
    top:0;
    transition:background 250ms linear 0s;
    width:10px;
    z-index:100000;
}
.track3:hover,
.track3.dragging{
    background:#d9d9d9; /* Browsers without rgba support */
    background:rgba(0, 0, 0, 0.15);
}
.handle3{
    width:7px;
    right:0;
    background:#999;
    background:rgba(0, 0, 0, 0.4);
    border-radius:7px;
    -webkit-transition:width 250ms;
    transition:width 250ms;
}
.track3:hover .handle3,
.track3.dragging .handle3{
    width:10px;
}

/*--------------------------------------------------------------
# TOPBAR
--------------------------------------------------------------*/
.navbar{
    background: #fe7206;
    height: 51px;
    z-index: 2;
    position: relative;
	margin-top:45px;
}
.sidemenu-btn{
    position:absolute;
    vertical-align:middle;
    width:40px;
    line-height: 50px;
    top:0;
	width: 13px;
    left:20px;
    z-index: 999;
}
.theflow-menu{
    float:left;
    width:100%;
    height: 50px;
    text-align:center;
    position:relative;
	margin-top: -103px;
}
.header-search{
    position:absolute;
    text-align:right;
    vertical-align:middle;
    width:40px;
    line-height: 50px;
	width: 13px;
    top:0;
    right:20px;
}

/*--------------------------------------------------------------
# MENU
--------------------------------------------------------------*/
.theflow-menu li a {
    font-family: 'Montserrat', sans-serif;
    font-size:10px;
    font-weight:500px;
    text-transform:uppercase;
    color:#fff;
    -o-transition:.25s;
    -ms-transition:.25s;
    -moz-transition:.25s;
    -webkit-transition:.25s;
    transition:.25s;
}
.theflow-menu li a:hover {
    color:#777777;
}
.theflow-menu > ul{
    display:inline-block;
    line-height:1;
    padding:0;
}
.theflow-menu > ul > li{
    display:inline-block;
    line-height: 50px;
    letter-spacing:2px;
    margin:0 17px;
}
.theflow-menu > ul > li > a{
    float:left;
}

/*--------------------------------------------------------------
# DROPDOWN
--------------------------------------------------------------*/
.theflow-menu ul ul{
    background:#000;
    position:absolute;
    visibility:hidden;
    width:auto;
    min-width:160px;
    opacity:0;
    padding:0;
    top:100%;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -ms-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
}
.theflow-menu li:hover > ul{
    opacity:1;
    visibility:visible;
}
.theflow-menu ul ul li{
    border-bottom:1px solid #1A1A1A;
    display:table;
    padding:0 20px;
    letter-spacing:1px;
    line-height:38px;
    position:relative;
    text-align:left;
    width:100%;
}
.theflow-menu ul ul ul{
    left:100%;
    top:0;
}

/*--------------------------------------------------------------
# SEARCH FORM
--------------------------------------------------------------*/
.header-search form{
    margin-top:0;
    position:absolute;
    right:0;
    top:100%;
    width:220px;
    opacity:0;
    visibility:hidden;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -ms-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
}
.header-search.active form{
    opacity:1;
    visibility:visible;
}
.header-search form input{
    float:left;
    margin:0;
}

/*--------------------------------------------------------------
# SIDEMENU
--------------------------------------------------------------*/
.sidemenu{
    background:#161616;
    height:100%;
    padding:20px 30px;
    width:290px!important;
    position:fixed;
    left:-580px;
    top:0;
    opacity:0;
    z-index:99999;
    -webkit-transition:all 0.25s linear;
    -moz-transition:all 0.25s linear;
    -ms-transition:all 0.25s linear;
    -o-transition:all 0.25s linear;
    transition:all 0.25s linear;
}
.sidemenu.slidein{
    left:0;
    opacity:1;
}
.side-logo{
    float:left;
    margin-top:50px;
}
.close-menu{
    color:#ffffff;
    float:right;
}
.close-menu img {
	width: 12px;
}
.sidemenu > ul{
    float:left;
    margin-top:65px;
    width:100%;
}
.sidemenu li{
    border-bottom:1px solid #262626;
    float:left;
    font-size:10px;
    letter-spacing:1px;
    line-height:17px;
    position:relative;
    text-transform:uppercase;
    width:100%;
}
.sidemenu li a{
    font-family: 'Montserrat', sans-serif;
    font-size:10px;
    font-weight:400;
    text-transform:uppercase;
    color:#fff;
    float:left;
    padding:12px 0;
    width:100%;
    -o-transition:.25s;
    -ms-transition:.25s;
    -moz-transition:.25s;
    -webkit-transition:.25s;
    transition:.25s;
}
.sidemenu li:last-child{border:0 none}
.sidemenu li a:hover {
    color:#777777;
}
.sidemenu .socials{
    float:left;
    margin-left:-10px;
    margin-top:20px;
    width:100%;
}
.sidemenu .socials a{
    color:#c3c3c3;
    font-size:16px;
}
.sidemenu ul ul{
    display:none;
    float:left;
    padding-left:20px;
    width:100%;
}
.sidemenu li.menu-item-has-children a{position:relative}
.sidemenu li.menu-item-has-children > a:before{
    color:#ffffff;
    content:"\f107";
    font-family:fontawesome;
    height:10px;
    position:absolute;
    right:0;
    top:9px;
    width:20px;
}
.sidemenu .social-icons {
    text-align: left;
    margin-top:150px;
}
.sidemenu .social-icons a {
    color:#bbbbbb;
    font-size: 14px;
    padding:0 12px 0 0;
}
.sidemenu .social-icons a:hover {
    color:#ffffff;
}

/*--------------------------------------------------------------
# HEADER
--------------------------------------------------------------*/
.theflow-header {
    float:left;
    width: 100%;
    z-index: 1;
	text-align:center;
}
.page .theflow-header,
.single .theflow-header {
    border-bottom:1px solid #eee;
}
.single.fullsingle .theflow-header {
    border:none;
}
.theflow-header .logo {
	padding-top:75px;
	padding-bottom:75px;
}
.theflow-header .logo img {
}

/*--------------------------------------------------------------
# FEATURED SLIDER
--------------------------------------------------------------*/
.featured-carousel {
    float:left;
    width: 100%;
}
.featured-carousel .featured-post{
    text-align:center;
}
.featured-carousel .featured-post img {
    float:left;
    width: 100%;
    margin-bottom: 25px;
}
.featured-carousel .featured-post span{
    margin-bottom: 3px;
    display: block;
}
.featured-carousel .featured-post h3{
    display: block;
    font-size: 14px;
    font-weight: 400;
}
.owl-nav {
    width: 100%;
    float: left;
    position: absolute;
    top: 50%;
    left:0;
    opacity: 0;
}
.featured:hover .owl-nav,
.gallery-format:hover .owl-nav,
.featured-slider:hover .owl-nav {
    opacity: 1;
}
.owl-nav > div{
    background: #000;
    color:rgba(0, 0, 0, 0);
    float:left;
    height:50px;
    position:relative;
    width:36px;
}
.owl-nav > div:before{
    color:#fff;
    font-family:fontawesome;
    font-size:20px;
    height:100%;
    left:0;
    line-height:50px;
    position:absolute;
    text-align:center;
    top:0;
    width:100%;
}
.owl-nav > div.owl-prev{
    float:left;
    margin-left:20px;
}
.owl-nav > div.owl-next{
    float:right;
    margin-right:20px;
}
.owl-nav > div.owl-prev:before{
    content:"\f104";
}
.owl-nav > div.owl-next:before{
    content:"\f105";
}
.f-slider .container-fluid {
    padding-right:0;
    padding-left:0;
}
.featured-slider-item {
	display: table;
	width:100%;
	height:587px;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
}
.featured-slider-overlay {
	height: 100%;
	background:rgba(0,0,0,0.18);
    display: table-cell;
    vertical-align: middle;
	text-align:center;
}
.featured-slider-content {
	max-width:40%;
	margin:0 auto;
}
.featured-slider-overlay h2 {
	margin-bottom:30px;
}
.featured-slider-overlay h2 a {
	color:#fff;
	display:block;
	font-weight:700;
	font-size:38px;
	line-height:1.2em;
}
.featured-slider-overlay .post-date {
	display:block;
	margin-bottom:10px;
    font-weight: 700;
	color:#fff;
}
.more-btn {
    font-family: 'Montserrat', sans-serif;
	color:#fff;
	padding:10px 20px 9px;
	font-size:10px;
	text-transform:uppercase;
	letter-spacing:2px;
	border:1px solid #fff;
	display:inline-block;
	-o-transition:.25s;
	-ms-transition:.25s;
	-moz-transition:.25s;
	-webkit-transition:.25s;
	transition:.25s;
}
.more-btn:hover {
	background:#ce1717;
    border-color:#ce1717;
	color:#fff;
}
.featured-slider.style2 .featured-slider-content {
	max-width:90%;
}
.featured-slider.style2 .owl-item .featured-slider-content{
    display: none;
}
.featured-slider.style2 .owl-item.active.center .featured-slider-content{
    display: block;
}
.featured-slider.style2 .featured-slider-item {
	height:575px;
}

/*--------------------------------------------------------------
# POST METAS
--------------------------------------------------------------*/
.post-date {
    font-family: 'Libre Baskerville', serif;
    font-size: 11px;
    color:#777777;
}

/*--------------------------------------------------------------
# SOCIAL ICONS
--------------------------------------------------------------*/
.social-icons {
    float:left;
    width: 100%;
    color:#404040;
}

.social-icons a {
    padding:0 7px;
    font-size: 13px;
}

/*--------------------------------------------------------------
# THEFLOW BLOG
--------------------------------------------------------------*/
.no-featured .theflow-content {
    margin-top:0;
}
.theflow-content {
    margin-top:100px;
    margin-bottom:1px;
}
.fullsingle .theflow-content {
    margin-top:50px;
    margin-bottom:100px;
}
.theflow-main {}
.post.standard {
    float:left;
    width: 100%;
    margin-bottom:75px;
   
}
.post.standard .post-header {
    text-align: center;
}
.post.standard .post-header .post-date {
    margin-bottom:5px;
    display: block;
}
.post.standard .post-header .post-title {
    font-size: 28px;
}
.post.standard .post-header .divider {
    border-top:1px solid #1a1a1a;
    display: block;
    max-width: 30px;
    margin: 10px auto 30px;
}
.post.standard .post-media {
    float: left;
    width: 100%;
    margin-bottom:35px;
}
.post.standard .post-content {
    float: left;
    width: 100%;
}
.post-excerpt {
    text-align: center;
}
.post-content p {
    margin-bottom:35px;
}
.readmore {
    font-family: 'Montserrat', sans-serif;
    font-size:10px;
    font-weight:400;
    text-transform:uppercase;
    color:#777777;
    margin-bottom:35px;
    text-align: center;
    float:left;
    width: 100%;
    letter-spacing: 2px;
}

/*--------------------------------------------------------------
# POST LIST LAYOUT
--------------------------------------------------------------*/
.post.list{
    float:left;
    width: 100%;
    margin-bottom:45px;
}
.post.list .post-content-wrap{
    padding-left:35px;
    padding-top:25px;
}
.post.list .featured-slider-item {
    height:500px;
}
.post.list .post-media img {
	width: 100%;
}
.post.list .featured-slider-content {
	max-width:70%;
}
.post.list .post-header .post-date {
    margin-bottom:5px;
    display: block;
}
.post.list .post-header .post-title {
    font-size: 22px;
}
.post.list .post-header .divider {
    border-top:1px solid #1a1a1a;
    display: block;
    max-width: 30px;
    margin-top:10px;
    margin-bottom:30px;
}
.post.list .post-content p {
    margin-bottom:25px;
}
.post.list .readmore {
    text-align:left;
}
.list-layout .theflow-pagination{
    margin-top:40px;
}

/*--------------------------------------------------------------
# POST GRID LAYOUT
--------------------------------------------------------------*/
.post.grid {
    margin-bottom: 20px;
}
.post.grid-post {
    padding:0 15px;
}
.post.grid .post-media {
    margin-bottom:30px;
}
.post.grid .post-media img {
	width: 100%;
}
.post.grid .post-header {
    text-align: center;
}
.post.grid .post-header .post-date {
    margin-bottom:5px;
    display: block;
}
.post.grid .post-header .post-title {
    font-size: 22px;
}
.post.grid .post-header .divider {
    border-top:1px solid #1a1a1a;
    display: block;
    margin:18px auto 25px;
    max-width: 30px;
}
.post.grid .post-content p {
    margin-bottom:25px;
}
.post.grid .readmore {
    text-align:left;
}
.post.grid .readmore {
    text-align:center;
}
.post.grid.format-image {
    margin-bottom:55px;
}
.post.grid .format-img{
    height:500px;
}
.post.grid .format-img-content {
	max-width:80%;
}
.grid-layout .theflow-pagination{
    margin-top:30px;
}

/*--------------------------------------------------------------
# SINGLE POST PAGE
--------------------------------------------------------------*/
.single .post {
    border:none;
}
.single .post.standard {
    margin-bottom: 25px;
}
.single .post-content p {
    margin-bottom:20px;
}
.single .post-footer {
    font-family: 'Montserrat', sans-serif;
    border-top:1px solid #ebebeb;
    border-bottom:1px solid #ebebeb;
    float:left;
    width: 100%;
}
.single .post-footer .post-comment{
    color:#404040;
    font-size: 11px;
}
.single .post-footer .post-comment i {
    font-size: 16px;
    padding-right: 3px;
}

.single .post-footer .textcenter {
    font-size: 11px;
    text-transform: uppercase;
    color: #222222;
    letter-spacing: 1px;
}
.single .post-footer > div {
    line-height: 56px;
}
.post-share a{
    color:#404040;
    padding-left:6px;
    font-size: 13px;
}
.post-share a:hover {
    color:#ce1717;
}
/** Full Width Single Post **/
.fullpost-header .container-fluid{
    padding:0;
}
.format-img {
	display: table;
	width:100%;
	height:545px;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
}
.format-img-overlay {
	height: 100%;
	background:rgba(0,0,0,0.18);
    display: table-cell;
    vertical-align: middle;
	text-align:center;
}
.format-img-content {
	max-width:40%;
	margin:0 auto;
}
.format-img-overlay h2 {
	margin-bottom:30px;
}
.format-img-overlay h1,
.format-img-overlay h2 a {
	color:#fff;
	display:block;
	font-weight:700;
	font-size:38px;
	line-height:1.2em;
}
.format-img-overlay .post-date {
	display:block;
	margin-bottom:10px;
    font-weight: 700;
	color:#fff;
}

.format-image .format-img{
    max-height:500px;
}
.format-image .format-img-content {
	max-width:80%;
}
/** Single Post Elements **/
.post-content p a {
    color:#ce1717;
}
.post-content p a:hover {
    text-decoration:underline;
}
.post-content ul{
    float:left;
    list-style:disc;
    margin:0 0 30px;
    padding-left:40px;
    width:100%;
}
.post-content ol{
    float:left;
    list-style-type:decimal;
    margin:0 0 30px;
    padding-left:40px;
    width:100%;
}
.post-content ol li ol,
.post-content ul li ul {
    margin:10px 0 0;
    padding-left:40px;
}
.post-content ol li,
.post-content ul li{
    color:#353535;
    float:left;
    font-size:13px;
    line-height:23px;
    margin-bottom:10px;
    width:100%;
}
.post-content ol li:last-child,
.post-content ul li:last-child{
    margin:0;
}
blockquote {
    display: inline-block;
    float:left;
    width:100%;
    padding: 0;
    margin:10px 0 30px;
    position:relative;
    color:#222222;
}
blockquote p {
    font-family: 'Lora', serif;
    color:#222222;
    font-size: 16px;
    font-style: italic;
    line-height: 26px;
    padding:0 0 0 50px;
    margin: 0;
}
blockquote:before{
    content: "“";
    position: absolute;
    font-family: playfair display;
    left: 0;
    top: -5px;
    font-size: 80px;
    color:#ce1717;
}
cite {
    font-family: 'Montserrat', sans-serif;
    padding-left:50px;
    font-size: 11px;
    color:#aaaaaa;
    text-transform: uppercase;
    display: block;
    float: left;
    width: 100%;
}
.quote-format {
    padding:200px 80px; background-image:url(../images/bac2.jpg);
     
}
.quote-content {
    background: #fff;
    position: relative;
    float: left;
    width: 100%;
    padding:50px 50px 20px;
}
.quote-content blockquote {
    padding: 0;
    margin:10px 0 30px;
}
.quote-content blockquote p {
    padding:0 0 0 50px;
    margin: 0;
}
.quote-format cite {
    margin-top:15px;
}
/*--------------------------------------------------------------
## SINGLE > POST TAGS
--------------------------------------------------------------*/
.tags {
    float:left;
    width: 100%;
    text-align: center;
    margin-top:15px;
    margin-bottom: 45px;
}
.tags a {
    font-family: 'Montserrat', sans-serif;
    color:#ce1717;
    font-size: 11px;
    padding:0 8px;
    text-transform: uppercase;
}

/*--------------------------------------------------------------
## SINGLE > POST AUTHOR BOX
--------------------------------------------------------------*/
.author-box {
    border-bottom:1px solid #ebebeb;
    overflow:hidden;
    float: left;
    padding:50px 0 20px;
}
.author-img {
	float:left;
    width: 100px;
	margin-right:30px;
	margin-bottom:30px;
}
.author-content {
    margin-bottom:30px;
}
.author-content h5 {
	font-size:16px;
	color:#222222;
	margin-bottom:10px;
	display:block;
}
.author-content p {
    width: 100%;
    display: inline;
}
.author-box .social-icons {
    width: auto;
    margin-top:10px;
    float: none;
}
.author-box .social-icons a {
    padding:0 14px 0 0;
    color:#404040;
}
.author-box .social-icons a:hover {
    color:#ce1717;
}

/*--------------------------------------------------------------
## SINGLE > RELATED POSTS
--------------------------------------------------------------*/
.related-posts {
  
    float:left;
    width: 100%;
    padding:50px 0 0;
    text-align: center;
}
.related-posts-title h4 {
    color:#444444;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.related-posts-title .divider {
    border-top:1px solid #d0d0d0;
    display: block;
    margin:10px auto 30px;
    max-width: 30px;
}
.related-posts .col4,
.related-posts .col3 {
    padding:0 17px;
    margin-bottom:20px;
}
.related-post-image {
    float:left;
	width: 100%;
	text-align: center;
    margin-bottom:25px;
}
.related-post-image img {
	text-align: center;
	width: 100%;
}
.related-post-content {
    float:left;
    width: 100%;
}
.related-post-content .post-date{
    margin-bottom:5px;
    float:left;
    width: 100%;
}
.related-post-content h3 {
    font-size: 14px;
}

/*--------------------------------------------------------------
## Single > Comments
--------------------------------------------------------------*/
.theflow-comments{
    float:left;
    margin-top:45px;
    margin-bottom:-45px;
    width:100%;
}
.theflow-comments-title h4 {
    color:#444444;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
}
.theflow-comments-title .divider {
    border-top:1px solid #d0d0d0;
    display: block;
    margin:10px auto 40px;
    max-width: 30px;
}
.comments-list {
	margin:0 0 40px;
    padding: 0;
}
.comment-list-item {
	border-bottom:1px solid #ebebeb;
	padding:0 0 40px;
	margin:0 0 40px;
    display: table;
}
.comments-list li:last-child {
	border:none;
	padding:0;
	margin:0;
}
.comment-list-item .avatar {
    float: left;
    display:table-cell;
    width: 80px;
	margin-right:20px;
}
.comment-list-item .comment-content {
    vertical-align: middle;
    display:table-cell;
    width: 100%;
}
.comment-list-item .comment-content h6.comment-author,
.comment-list-item .comment-content h6.comment-author a {
	display:block;
	font-size:14px;
	margin-bottom:10px;
}
.comment-list-item .comment-content span.comment-author a:hover {
	text-decoration:underline;
}
.comment-text p{
    margin-bottom:15px;
    display: inline-block;
    float: left;
    width: 100%;
}
.comment-list-item .comment-content em {
	font-size:13px;
	display:block;
	color:#ce1717;
	letter-spacing:1px;
}
.comment-list-item span.reply a {
    font-family: 'Montserrat', sans-serif;
    float:left;
    width: 100%;
    font-size:10px;
    line-height:1;
    text-transform: uppercase;
    color:#222222;
    margin-right:10px;
    margin-top:-5px;
}
.comment-list-item span.reply a:hover {
    color:#ce1717;
}
.comment-form{
    float:left;
    width:100%;
    margin-top:50px;
    width:100%;
}
.comment-form .col6,
.comment-form .col12 {
    padding:0 10px;
}
.comment-form h5 {
    color:#777777;
    float:left;
    width:100%;
    font-size:11px;
    font-weight: 400;
    letter-spacing:1px;
    margin-bottom:25px;
    text-transform:uppercase;
}
.comment-form input,
.comment-form textarea {
    margin-bottom: 20px;
}

/*--------------------------------------------------------------
# PAGINATION
--------------------------------------------------------------*/
.theflow-pagination {
    float:left;
    width: 100%;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
}
.theflow-pagination .page-numbers {
    font-size: 12px;
    color:#222222;
    padding:0 8px;
}
.theflow-pagination a:hover,
.theflow-pagination .page-numbers.current {
    color:#ce1717;
}
.next.page-numbers {padding: 0;}
.next.page-numbers img {
	width: 11px;
}

/*--------------------------------------------------------------
# SIDEBAR
--------------------------------------------------------------*/
.theflow-sidebar {}
.theflow-sidebar .sidebar-inner {
    padding-left:60px;
}
.theflow-sidebar.floatleft .sidebar-inner {
    padding-left:0;
    padding-right:60px;
}
.theflow-sidebar .widget {
    float:left;
    width: 100%;
    border:2px solid #b6adad;
    padding:5px 5px;
    margin-bottom: 45px;
    display: inline-block;
}
.theflow-sidebar .widget-title h4,
.footer-widgets  .widget-title h4{
    text-align: center;
    font-size: 15px;
	line-height: 22px;
    color:#fe7206;
	font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}
.theflow-sidebar .widget .divider,
.footer-widgets  .widget .divider {
  border-top:1px solid #d0d0d0;
  display: block;
  max-width: 30px;
  margin: 5px auto 25px;
}
.widget p {
    margin-bottom:25px;
}
.widget ol,
.widget ul{
    float:left;
    list-style:none;
    text-align:left;
    width:100%;
}
.widget ol li,
.widget ul li{
    font-family: 'Montserrat', sans-serif;
    padding:0 0 10px;
    margin: 0 0 10px;
    border-bottom:1px solid #e8e8e8;
    color:#222222;
    font-size:14px;
    line-height:24px;
}
.widget ol li:last-child,
.widget ul li:last-child {
    padding:0;
    margin:0;
    border:0 none;
}

/*--------------------------------------------------------------
## SIDEBAR > WIDGET: TEXT WIDGET
--------------------------------------------------------------*/
.widget-text {
    text-align: center;
}
/*--------------------------------------------------------------
## SIDEBAR > WIDGET: ABOUT AUTHOR
--------------------------------------------------------------*/
.theflow-about-author {
    float:left;
    width: 100%;
    text-align: center;
}
.author-image{
    float:left;
    width: 100%;
    margin-bottom:22px;
}
.author-image img {
    border-radius: 50%;
}
.author-text {
    float:left;
    margin-bottom:20px;
}
.author-text p {
    margin-bottom: 0;
}

/*--------------------------------------------------------------
## SIDEBAR > WIDGET: BANNER ADS
--------------------------------------------------------------*/
.theflow-sidebar .widget.banner-ads {
    padding: 25px;
}
.ad-banner {
    text-align: center;
}

/*--------------------------------------------------------------
## SIDEBAR > WIDGET: POPULAR POSTS
--------------------------------------------------------------*/
.popular-posts-widget ul li {
	list-style-type:none;
	margin-bottom:12px;
	padding-bottom:12px;
    border:none;
	margin-left:0;
}
.popular-posts-widget ul li:last-child {
	margin-bottom:0;
	padding-bottom:0;
}
.popular-posts-widget .popular-post {
	overflow:hidden;
}
.popular-posts-widget .popular-post .post-image {
	float:left;
	margin-right:20px;
}

.popular-posts-widget .post-image img {
	width:100px;
	height:auto;
}
.popular-posts-widget .post-text {
	overflow:hidden;
	margin-top:5px;
}
.popular-posts-widget .post-text h4 {
	margin-bottom:5px;
}
.popular-posts-widget .post-text h4 a {
	display:block;
    font-size: 14px;
}
.popular-posts-widget .post-date {
	font-style: italic;
}

/*--------------------------------------------------------------
## SIDEBAR > WIDGET: INSTAGRAM
--------------------------------------------------------------*/
.instagram-wrap {
    margin-left:-5px;
    margin-right: -5px;
    margin-bottom:-10px;
}
.instagram-img:before,
.instagram-img:after {
    display: table;
    content: " ";
}
.instagram-img:after {
    clear: both;
}
.instagram-img .instagram-item {
    display: block;
    position: relative;
    float: left;
    overflow: hidden;
    padding:0 5px 10px 5px;
}
.instagram-img .instagram-item:before {
    content: " ";
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 100%;
    -webkit-transition: background .3s ease;
    -moz-transition: background .3s ease;
    -ms-transition: background .3s ease;
    -o-transition: background .3s ease;
    transition: background .3s ease;
}
.instagram-img .instagram-item img {
    width: 100%;
    height: auto;
    vertical-align: top;
}
.instagram-img.item-col-1 .instagram-item {width: 100%;}
.instagram-img.item-col-2 .instagram-item {width: 50%;}
.instagram-img.item-col-3 .instagram-item {width: 33.333333333%;}
.instagram-img.item-col-4 .instagram-item {width: 25%;}
.instagram-img.item-col-5 .instagram-item {width: 20%;}
.instagram-img.item-col-6 .instagram-item {width: 16.666666666%;}
.instagram-img.item-col-7 .instagram-item {width: 14.286%;}
.instagram-img.item-col-8 .instagram-item {width: 12.5%;}
.instagram-img.item-col-1 .instagram-item:nth-child(1n+1),
.instagram-img.item-col-2 .instagram-item:nth-child(2n+1),
.instagram-img.item-col-3 .instagram-item:nth-child(3n+1),
.instagram-img.item-col-4 .instagram-item:nth-child(4n+1),
.instagram-img.item-col-5 .instagram-item:nth-child(5n+1),
.instagram-img.item-col-6 .instagram-item:nth-child(6n+1),
.instagram-img.item-col-7 .instagram-item:nth-child(7n+1),
.instagram-img.item-col-8 .instagram-item:nth-child(8n+1){
    clear: both;
}
.instagram-link {
    font-family: 'Libre Baskerville', serif;
    width: 100%;
    float:left;
    text-align: center;
    font-size: 12px;
    margin-top:10px;
}
.instagram-link a {
    color:#ce1717;
}
/*Footer Instagram*/
.footer-instagram {
    margin-bottom: 150px;
}
.footer-instagram .widget-title {
    text-align: center;
    font-size: 24px;
    text-transform: uppercase;
    font-weight: 400;
    margin-bottom: 40px;
    letter-spacing: 2px;
}
.footer-instagram .widget-sub-title {
    float:left;
    width: 100%;
    font-family: 'Libre Baskerville', serif;
    text-align: center;
    font-style: italic;
    color:#777777;
    font-size: 12px;
    line-height: 12px;
    margin-bottom: 10px;
}

/*--------------------------------------------------------------
## SIDEBAR > WIDGET: MAILCHIMP
--------------------------------------------------------------*/
.theflow-sidebar .widget.widget_mc4wp_form_widget{
    background:#f5f5f5;
    padding:35px 25px;
    text-align:center;
    border:none;
}
.mc4wp-form p {
    margin: 0;
    padding: 0;
}
.mc4wp-form label {
    float: left;
    width: 100%;
    margin-bottom:10px;
    line-height: 1.6;
}
.theflow-sidebar .mc4wp-form input{
    font-style: normal;
    margin-bottom:13px;
    padding:5px 20px 4px;
    height:36px;
}
.theflow-sidebar .mc4wp-form button,
.theflow-sidebar .mc4wp-form input[type=submit],
.theflow-sidebar .mc4wp-form input[type=reset]{
    float:left;
    padding:9px;
    width:100%;
}

/*--------------------------------------------------------------
# PAGES
--------------------------------------------------------------*/
.pagefull .theflow-content {
    margin-top:90px;
    margin-bottom:0;
    border-bottom:1px solid #eee;
}
.page .theflow-content {
    margin-top:90px;
    margin-bottom:0;
    padding-bottom:90px;
    border-bottom:1px solid #eee;
}
.page-header {
    margin-bottom:45px;
}
.page-title {
    width: 100%;
    float: left;
    text-align: center;
    font-size: 24px;
    margin-bottom:45px;
    text-transform: uppercase;
}
.pagefull .post .social-icons {
    padding:30px 0 50px;
    text-align: center;
    float:left;
    width: 100%;
}
.page .comment-form{
    margin-top:0;
}

/*--------------------------------------------------------------
# ARCHIVE TITLE
--------------------------------------------------------------*/
.archive-title-wrap {
	background:#ce1717;
    text-align: center;
}
.archive-title-wrap h1 {
	font-size:26px;
    line-height: 1;
	text-transform:uppercase;
	letter-spacing:5px;
	display:inline-block;
	color:#ffffff;
	margin:0;
    padding: 40px 0;
}

/*--------------------------------------------------------------
# FOOTER NEWSLETTER
--------------------------------------------------------------*/
.footer-newsletter {
    background: url('../images/resource/newsletter-bg.jpg') no-repeat center center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}
.footer-newsletter-content {
    float: left;
    width: 100%;
    padding: 110px 30px;
    margin:150px 0;
    background: #fff;
}
.footer-newsletter-content .widget-title {
    text-align: center;
    font-size: 11px;
    color:#1c1c1c;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom:30px;
}
.footer-newsletter-content .widget_mc4wp_form_widget{
    max-width: 650px;
    text-align: center;
    margin: auto;
}
.footer-newsletter-content .mc4wp-form input{
    font-style: normal;
    margin:0 1%;
    padding:5px 20px 4px;
    height:46px;
    width: 33%;
    float:left;
}
.footer-newsletter-content .mc4wp-form button,
.footer-newsletter-content .mc4wp-form input[type=submit],
.footer-newsletter-content .mc4wp-form input[type=reset]{
    float:left;
    padding:14px 9px;
    margin:0 1%;
    width:28%;
}

/*--------------------------------------------------------------
# FOOTER WIDGETS
--------------------------------------------------------------*/
.footer-widgets {
    margin-top:100px;
    margin-bottom: 55px;
}
.footer-widgets .row {
    margin-left:-30px;
    margin-right:-30px;
}
.footer-widgets .widget {
    margin-bottom: 45px;
    display: inline-block;
}
.footer-widgets .widget-inner {
    float: left;
    width: 100%;
    padding:0 30px;
}

/*--------------------------------------------------------------
# FOOTER
--------------------------------------------------------------*/
.theflow-footer .copyright {
    float:left;
    width: 100%;
    background: #fe7206;
    text-align: center;
}
.theflow-footer .copyright p {
    line-height: 50px;
    margin: 0;
    font-size: 12px;
    color:#6d6d6d;
}
